diff --git a/README.md b/README.md index 4bcee7cc27..8dd663230f 100644 --- a/README.md +++ b/README.md @@ -100,9 +100,6 @@ The [deployment guide](https://docs.flyte.org/en/latest/deployment/index.html) p Join the likes of LinkedIn, Spotify, Freenome, Pachama, Gojek, and Woven Planet in adopting Flyte. For a full list of adopters and information on how to add your organization or project, please visit our [ADOPTERS](https://github.com/flyteorg/community/blob/main/ADOPTERS.md) page. -## Roadmap - -Stay up to date with the latest project roadmap by checking out our live [roadmap](https://github.com/orgs/flyteorg/projects/3) on GitHub. ## Resources diff --git a/charts/flyte-binary/eks-production.yaml b/charts/flyte-binary/eks-production.yaml index 727b9b10fa..2db827b804 100644 --- a/charts/flyte-binary/eks-production.yaml +++ b/charts/flyte-binary/eks-production.yaml @@ -132,7 +132,7 @@ ingress: nginx.ingress.kubernetes.io/app-root: /console grpcAnnotations: nginx.ingress.kubernetes.io/backend-protocol: GRPC - host: development.uniondemo.run + host: # change for the URL you'll use to connect to Flyte rbac: extraRules: - apiGroups: diff --git a/flyteadmin/go.mod b/flyteadmin/go.mod index fd41dcc1e2..72806a06af 100644 --- a/flyteadmin/go.mod +++ b/flyteadmin/go.mod @@ -165,14 +165,14 @@ require ( github.com/stretchr/objx v0.5.0 // indirect github.com/subosito/gotenv v1.2.0 // indirect go.opencensus.io v0.24.0 // indirect - golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect - golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect - golang.org/x/net v0.9.0 // indirect - golang.org/x/sync v0.1.0 // indirect - golang.org/x/sys v0.7.0 // indirect - golang.org/x/term v0.7.0 // indirect - golang.org/x/text v0.9.0 // indirect - golang.org/x/tools v0.6.0 // indirect + golang.org/x/crypto v0.13.0 // indirect + golang.org/x/exp v0.0.0-20231005195138-3e424a577f31 // indirect + golang.org/x/net v0.15.0 // indirect + golang.org/x/sync v0.3.0 // indirect + golang.org/x/sys v0.12.0 // indirect + golang.org/x/term v0.12.0 // indirect + golang.org/x/text v0.13.0 // indirect + golang.org/x/tools v0.13.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect google.golang.org/appengine v1.6.7 // indirect gopkg.in/inf.v0 v0.9.1 // indirect diff --git a/flyteadmin/go.sum b/flyteadmin/go.sum index 2aecc452e4..7604bb29ec 100644 --- a/flyteadmin/go.sum +++ b/flyteadmin/go.sum @@ -1570,8 +1570,9 @@ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5y golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa h1:zuSxTR4o9y82ebqCUJYNGJbGPo6sKVl54f/TVDObg1c= golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck= +golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1586,8 +1587,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e h1:+WEEuIdZHnUeJJmEUjyYC2gfUMj69yZXw17EnHg/otA= -golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e/go.mod h1:Kr81I6Kryrl9sr8s2FK3vxD90NdsKWRuOIl2O4CvYbA= +golang.org/x/exp v0.0.0-20231005195138-3e424a577f31 h1:9k5exFQKQglLo+RoP+4zMjOFE14P6+vyR0baDAi0Rcs= +golang.org/x/exp v0.0.0-20231005195138-3e424a577f31/go.mod h1:S2oDrQGGwySpoQPVqRShND87VCbxmc6bL1Yd2oYrm6k= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= @@ -1615,7 +1616,7 @@ golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= -golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= +golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc= golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180816102801-aaf60122140d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1683,8 +1684,8 @@ golang.org/x/net v0.0.0-20210825183410-e898025ed96a/go.mod h1:9nx3DQGgdP8bBQD5qx golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.9.0 h1:aWJ/m6xSmxWBx+V0XRHTlrYrPG56jKsLdTFmsSsCzOM= -golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= +golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8= +golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20181003184128-c57b0facaced/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1713,8 +1714,8 @@ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= -golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E= +golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= golang.org/x/sys v0.0.0-20180816055513-1c9583448a9c/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -1815,13 +1816,13 @@ golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU= -golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.7.0 h1:BEvjmm5fURWqcfbSKTdpkDXYBrUS1c0m8agp14W48vQ= -golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= +golang.org/x/term v0.12.0 h1:/ZfYdc3zq+q02Rv9vGqTeSItdzZTSNDmfTi0mBAuidU= +golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1831,8 +1832,8 @@ golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= -golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= +golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -1948,8 +1949,8 @@ golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.10-0.20220218145154-897bd77cd717/go.mod h1:Uh6Zz+xoGYZom868N8YTex3t7RhtHDBrE8Gzo9bV56E= -golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= -golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= +golang.org/x/tools v0.13.0 h1:Iey4qkscZuv0VvIt8E0neZjtPVQFSc870HQ448QgEmQ= +golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= diff --git a/flyteadmin/pkg/repositories/transformers/node_execution.go b/flyteadmin/pkg/repositories/transformers/node_execution.go index 2b2100004a..b419ce9c83 100644 --- a/flyteadmin/pkg/repositories/transformers/node_execution.go +++ b/flyteadmin/pkg/repositories/transformers/node_execution.go @@ -131,6 +131,7 @@ func CreateNodeExecutionModel(ctx context.Context, input ToNodeExecutionModelInp SpecNodeId: input.Request.Event.SpecNodeId, IsParentNode: input.Request.Event.IsParent, IsDynamic: input.Request.Event.IsDynamic, + IsArray: input.Request.Event.IsArray, } err := handleNodeExecutionInputs(ctx, nodeExecution, input.Request, input.StorageClient) if err != nil { @@ -304,6 +305,9 @@ func UpdateNodeExecutionModel( if request.Event.IsDynamic { nodeExecutionMetadata.IsDynamic = true } + if request.Event.IsArray { + nodeExecutionMetadata.IsArray = true + } nodeExecMetadataBytes, err := proto.Marshal(&nodeExecutionMetadata) if err != nil { return errors.NewFlyteAdminErrorf(codes.Internal, diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc index c35075a7a4..88da69ad52 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.cc @@ -349,6 +349,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fadmin_2fnode_5fexecution PROTOBUF_FIELD_OFFSET(::flyteidl::admin::NodeExecutionMetaData, is_parent_node_), PROTOBUF_FIELD_OFFSET(::flyteidl::admin::NodeExecutionMetaData, spec_node_id_), PROTOBUF_FIELD_OFFSET(::flyteidl::admin::NodeExecutionMetaData, is_dynamic_), + PROTOBUF_FIELD_OFFSET(::flyteidl::admin::NodeExecutionMetaData, is_array_), ~0u, // no _has_bits_ PROTOBUF_FIELD_OFFSET(::flyteidl::admin::NodeExecutionList, _internal_metadata_), ~0u, // no _extensions_ @@ -421,13 +422,13 @@ static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SE { 17, -1, sizeof(::flyteidl::admin::NodeExecutionForTaskListRequest)}, { 27, -1, sizeof(::flyteidl::admin::NodeExecution)}, { 36, -1, sizeof(::flyteidl::admin::NodeExecutionMetaData)}, - { 45, -1, sizeof(::flyteidl::admin::NodeExecutionList)}, - { 52, -1, sizeof(::flyteidl::admin::NodeExecutionClosure)}, - { 71, -1, sizeof(::flyteidl::admin::WorkflowNodeMetadata)}, - { 77, -1, sizeof(::flyteidl::admin::TaskNodeMetadata)}, - { 85, -1, sizeof(::flyteidl::admin::DynamicWorkflowNodeMetadata)}, - { 93, -1, sizeof(::flyteidl::admin::NodeExecutionGetDataRequest)}, - { 99, -1, sizeof(::flyteidl::admin::NodeExecutionGetDataResponse)}, + { 46, -1, sizeof(::flyteidl::admin::NodeExecutionList)}, + { 53, -1, sizeof(::flyteidl::admin::NodeExecutionClosure)}, + { 72, -1, sizeof(::flyteidl::admin::WorkflowNodeMetadata)}, + { 78, -1, sizeof(::flyteidl::admin::TaskNodeMetadata)}, + { 86, -1, sizeof(::flyteidl::admin::DynamicWorkflowNodeMetadata)}, + { 94, -1, sizeof(::flyteidl::admin::NodeExecutionGetDataRequest)}, + { 100, -1, sizeof(::flyteidl::admin::NodeExecutionGetDataResponse)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -476,55 +477,56 @@ const char descriptor_table_protodef_flyteidl_2fadmin_2fnode_5fexecution_2eproto "ionIdentifier\022\021\n\tinput_uri\030\002 \001(\t\0225\n\007clos" "ure\030\003 \001(\0132$.flyteidl.admin.NodeExecution" "Closure\0227\n\010metadata\030\004 \001(\0132%.flyteidl.adm" - "in.NodeExecutionMetaData\"n\n\025NodeExecutio" - "nMetaData\022\023\n\013retry_group\030\001 \001(\t\022\026\n\016is_par" - "ent_node\030\002 \001(\010\022\024\n\014spec_node_id\030\003 \001(\t\022\022\n\n" - "is_dynamic\030\004 \001(\010\"Z\n\021NodeExecutionList\0226\n" - "\017node_executions\030\001 \003(\0132\035.flyteidl.admin." - "NodeExecution\022\r\n\005token\030\002 \001(\t\"\342\004\n\024NodeExe" - "cutionClosure\022\030\n\noutput_uri\030\001 \001(\tB\002\030\001H\000\022" - ".\n\005error\030\002 \001(\0132\035.flyteidl.core.Execution" - "ErrorH\000\0224\n\013output_data\030\n \001(\0132\031.flyteidl." - "core.LiteralMapB\002\030\001H\000\0221\n\005phase\030\003 \001(\0162\".f" - "lyteidl.core.NodeExecution.Phase\022.\n\nstar" - "ted_at\030\004 \001(\0132\032.google.protobuf.Timestamp" - "\022+\n\010duration\030\005 \001(\0132\031.google.protobuf.Dur" - "ation\022.\n\ncreated_at\030\006 \001(\0132\032.google.proto" - "buf.Timestamp\022.\n\nupdated_at\030\007 \001(\0132\032.goog" - "le.protobuf.Timestamp\022F\n\026workflow_node_m" - "etadata\030\010 \001(\0132$.flyteidl.admin.WorkflowN" - "odeMetadataH\001\022>\n\022task_node_metadata\030\t \001(" - "\0132 .flyteidl.admin.TaskNodeMetadataH\001\022\020\n" - "\010deck_uri\030\013 \001(\t\022\034\n\024dynamic_job_spec_uri\030" - "\014 \001(\tB\017\n\routput_resultB\021\n\017target_metadat" - "a\"W\n\024WorkflowNodeMetadata\022\?\n\013executionId" - "\030\001 \001(\0132*.flyteidl.core.WorkflowExecution" - "Identifier\"\230\001\n\020TaskNodeMetadata\0227\n\014cache" - "_status\030\001 \001(\0162!.flyteidl.core.CatalogCac" - "heStatus\0223\n\013catalog_key\030\002 \001(\0132\036.flyteidl" - ".core.CatalogMetadata\022\026\n\016checkpoint_uri\030" - "\004 \001(\t\"\245\001\n\033DynamicWorkflowNodeMetadata\022%\n" - "\002id\030\001 \001(\0132\031.flyteidl.core.Identifier\022A\n\021" - "compiled_workflow\030\002 \001(\0132&.flyteidl.core." - "CompiledWorkflowClosure\022\034\n\024dynamic_job_s" - "pec_uri\030\003 \001(\t\"Q\n\033NodeExecutionGetDataReq" - "uest\0222\n\002id\030\001 \001(\0132&.flyteidl.core.NodeExe" - "cutionIdentifier\"\320\002\n\034NodeExecutionGetDat" - "aResponse\022+\n\006inputs\030\001 \001(\0132\027.flyteidl.adm" - "in.UrlBlobB\002\030\001\022,\n\007outputs\030\002 \001(\0132\027.flytei" - "dl.admin.UrlBlobB\002\030\001\022.\n\013full_inputs\030\003 \001(" - "\0132\031.flyteidl.core.LiteralMap\022/\n\014full_out" - "puts\030\004 \001(\0132\031.flyteidl.core.LiteralMap\022E\n" - "\020dynamic_workflow\030\020 \001(\0132+.flyteidl.admin" - ".DynamicWorkflowNodeMetadata\022-\n\nflyte_ur" - "ls\030\021 \001(\0132\031.flyteidl.admin.FlyteURLsB=Z;g" - "ithub.com/flyteorg/flyte/flyteidl/gen/pb" - "-go/flyteidl/adminb\006proto3" + "in.NodeExecutionMetaData\"\200\001\n\025NodeExecuti" + "onMetaData\022\023\n\013retry_group\030\001 \001(\t\022\026\n\016is_pa" + "rent_node\030\002 \001(\010\022\024\n\014spec_node_id\030\003 \001(\t\022\022\n" + "\nis_dynamic\030\004 \001(\010\022\020\n\010is_array\030\005 \001(\010\"Z\n\021N" + "odeExecutionList\0226\n\017node_executions\030\001 \003(" + "\0132\035.flyteidl.admin.NodeExecution\022\r\n\005toke" + "n\030\002 \001(\t\"\342\004\n\024NodeExecutionClosure\022\030\n\noutp" + "ut_uri\030\001 \001(\tB\002\030\001H\000\022.\n\005error\030\002 \001(\0132\035.flyt" + "eidl.core.ExecutionErrorH\000\0224\n\013output_dat" + "a\030\n \001(\0132\031.flyteidl.core.LiteralMapB\002\030\001H\000" + "\0221\n\005phase\030\003 \001(\0162\".flyteidl.core.NodeExec" + "ution.Phase\022.\n\nstarted_at\030\004 \001(\0132\032.google" + ".protobuf.Timestamp\022+\n\010duration\030\005 \001(\0132\031." + "google.protobuf.Duration\022.\n\ncreated_at\030\006" + " \001(\0132\032.google.protobuf.Timestamp\022.\n\nupda" + "ted_at\030\007 \001(\0132\032.google.protobuf.Timestamp" + "\022F\n\026workflow_node_metadata\030\010 \001(\0132$.flyte" + "idl.admin.WorkflowNodeMetadataH\001\022>\n\022task" + "_node_metadata\030\t \001(\0132 .flyteidl.admin.Ta" + "skNodeMetadataH\001\022\020\n\010deck_uri\030\013 \001(\t\022\034\n\024dy" + "namic_job_spec_uri\030\014 \001(\tB\017\n\routput_resul" + "tB\021\n\017target_metadata\"W\n\024WorkflowNodeMeta" + "data\022\?\n\013executionId\030\001 \001(\0132*.flyteidl.cor" + "e.WorkflowExecutionIdentifier\"\230\001\n\020TaskNo" + "deMetadata\0227\n\014cache_status\030\001 \001(\0162!.flyte" + "idl.core.CatalogCacheStatus\0223\n\013catalog_k" + "ey\030\002 \001(\0132\036.flyteidl.core.CatalogMetadata" + "\022\026\n\016checkpoint_uri\030\004 \001(\t\"\245\001\n\033DynamicWork" + "flowNodeMetadata\022%\n\002id\030\001 \001(\0132\031.flyteidl." + "core.Identifier\022A\n\021compiled_workflow\030\002 \001" + "(\0132&.flyteidl.core.CompiledWorkflowClosu" + "re\022\034\n\024dynamic_job_spec_uri\030\003 \001(\t\"Q\n\033Node" + "ExecutionGetDataRequest\0222\n\002id\030\001 \001(\0132&.fl" + "yteidl.core.NodeExecutionIdentifier\"\320\002\n\034" + "NodeExecutionGetDataResponse\022+\n\006inputs\030\001" + " \001(\0132\027.flyteidl.admin.UrlBlobB\002\030\001\022,\n\007out" + "puts\030\002 \001(\0132\027.flyteidl.admin.UrlBlobB\002\030\001\022" + ".\n\013full_inputs\030\003 \001(\0132\031.flyteidl.core.Lit" + "eralMap\022/\n\014full_outputs\030\004 \001(\0132\031.flyteidl" + ".core.LiteralMap\022E\n\020dynamic_workflow\030\020 \001" + "(\0132+.flyteidl.admin.DynamicWorkflowNodeM" + "etadata\022-\n\nflyte_urls\030\021 \001(\0132\031.flyteidl.a" + "dmin.FlyteURLsB=Z;github.com/flyteorg/fl" + "yte/flyteidl/gen/pb-go/flyteidl/adminb\006p" + "roto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fadmin_2fnode_5fexecution_2eproto = { false, InitDefaults_flyteidl_2fadmin_2fnode_5fexecution_2eproto, descriptor_table_protodef_flyteidl_2fadmin_2fnode_5fexecution_2eproto, - "flyteidl/admin/node_execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2fnode_5fexecution_2eproto, 2706, + "flyteidl/admin/node_execution.proto", &assign_descriptors_table_flyteidl_2fadmin_2fnode_5fexecution_2eproto, 2725, }; void AddDescriptors_flyteidl_2fadmin_2fnode_5fexecution_2eproto() { @@ -2552,6 +2554,7 @@ const int NodeExecutionMetaData::kRetryGroupFieldNumber; const int NodeExecutionMetaData::kIsParentNodeFieldNumber; const int NodeExecutionMetaData::kSpecNodeIdFieldNumber; const int NodeExecutionMetaData::kIsDynamicFieldNumber; +const int NodeExecutionMetaData::kIsArrayFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 NodeExecutionMetaData::NodeExecutionMetaData() @@ -2572,8 +2575,8 @@ NodeExecutionMetaData::NodeExecutionMetaData(const NodeExecutionMetaData& from) spec_node_id_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.spec_node_id_); } ::memcpy(&is_parent_node_, &from.is_parent_node_, - static_cast(reinterpret_cast(&is_dynamic_) - - reinterpret_cast(&is_parent_node_)) + sizeof(is_dynamic_)); + static_cast(reinterpret_cast(&is_array_) - + reinterpret_cast(&is_parent_node_)) + sizeof(is_array_)); // @@protoc_insertion_point(copy_constructor:flyteidl.admin.NodeExecutionMetaData) } @@ -2583,8 +2586,8 @@ void NodeExecutionMetaData::SharedCtor() { retry_group_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); spec_node_id_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); ::memset(&is_parent_node_, 0, static_cast( - reinterpret_cast(&is_dynamic_) - - reinterpret_cast(&is_parent_node_)) + sizeof(is_dynamic_)); + reinterpret_cast(&is_array_) - + reinterpret_cast(&is_parent_node_)) + sizeof(is_array_)); } NodeExecutionMetaData::~NodeExecutionMetaData() { @@ -2615,8 +2618,8 @@ void NodeExecutionMetaData::Clear() { retry_group_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); spec_node_id_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); ::memset(&is_parent_node_, 0, static_cast( - reinterpret_cast(&is_dynamic_) - - reinterpret_cast(&is_parent_node_)) + sizeof(is_dynamic_)); + reinterpret_cast(&is_array_) - + reinterpret_cast(&is_parent_node_)) + sizeof(is_array_)); _internal_metadata_.Clear(); } @@ -2679,6 +2682,13 @@ const char* NodeExecutionMetaData::_InternalParse(const char* begin, const char* GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); break; } + // bool is_array = 5; + case 5: { + if (static_cast<::google::protobuf::uint8>(tag) != 40) goto handle_unusual; + msg->set_is_array(::google::protobuf::internal::ReadVarint(&ptr)); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -2769,6 +2779,19 @@ bool NodeExecutionMetaData::MergePartialFromCodedStream( break; } + // bool is_array = 5; + case 5: { + if (static_cast< ::google::protobuf::uint8>(tag) == (40 & 0xFF)) { + + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( + input, &is_array_))); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -2826,6 +2849,11 @@ void NodeExecutionMetaData::SerializeWithCachedSizes( ::google::protobuf::internal::WireFormatLite::WriteBool(4, this->is_dynamic(), output); } + // bool is_array = 5; + if (this->is_array() != 0) { + ::google::protobuf::internal::WireFormatLite::WriteBool(5, this->is_array(), output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -2871,6 +2899,11 @@ ::google::protobuf::uint8* NodeExecutionMetaData::InternalSerializeWithCachedSiz target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(4, this->is_dynamic(), target); } + // bool is_array = 5; + if (this->is_array() != 0) { + target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(5, this->is_array(), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -2916,6 +2949,11 @@ size_t NodeExecutionMetaData::ByteSizeLong() const { total_size += 1 + 1; } + // bool is_array = 5; + if (this->is_array() != 0) { + total_size += 1 + 1; + } + int cached_size = ::google::protobuf::internal::ToCachedSize(total_size); SetCachedSize(cached_size); return total_size; @@ -2957,6 +2995,9 @@ void NodeExecutionMetaData::MergeFrom(const NodeExecutionMetaData& from) { if (from.is_dynamic() != 0) { set_is_dynamic(from.is_dynamic()); } + if (from.is_array() != 0) { + set_is_array(from.is_array()); + } } void NodeExecutionMetaData::CopyFrom(const ::google::protobuf::Message& from) { @@ -2990,6 +3031,7 @@ void NodeExecutionMetaData::InternalSwap(NodeExecutionMetaData* other) { GetArenaNoVirtual()); swap(is_parent_node_, other->is_parent_node_); swap(is_dynamic_, other->is_dynamic_); + swap(is_array_, other->is_array_); } ::google::protobuf::Metadata NodeExecutionMetaData::GetMetadata() const { diff --git a/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.h b/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.h index f3646427ec..88da7e3612 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.h +++ b/flyteidl/gen/pb-cpp/flyteidl/admin/node_execution.pb.h @@ -856,6 +856,12 @@ class NodeExecutionMetaData final : bool is_dynamic() const; void set_is_dynamic(bool value); + // bool is_array = 5; + void clear_is_array(); + static const int kIsArrayFieldNumber = 5; + bool is_array() const; + void set_is_array(bool value); + // @@protoc_insertion_point(class_scope:flyteidl.admin.NodeExecutionMetaData) private: class HasBitSetters; @@ -865,6 +871,7 @@ class NodeExecutionMetaData final : ::google::protobuf::internal::ArenaStringPtr spec_node_id_; bool is_parent_node_; bool is_dynamic_; + bool is_array_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::TableStruct_flyteidl_2fadmin_2fnode_5fexecution_2eproto; }; @@ -2828,6 +2835,20 @@ inline void NodeExecutionMetaData::set_is_dynamic(bool value) { // @@protoc_insertion_point(field_set:flyteidl.admin.NodeExecutionMetaData.is_dynamic) } +// bool is_array = 5; +inline void NodeExecutionMetaData::clear_is_array() { + is_array_ = false; +} +inline bool NodeExecutionMetaData::is_array() const { + // @@protoc_insertion_point(field_get:flyteidl.admin.NodeExecutionMetaData.is_array) + return is_array_; +} +inline void NodeExecutionMetaData::set_is_array(bool value) { + + is_array_ = value; + // @@protoc_insertion_point(field_set:flyteidl.admin.NodeExecutionMetaData.is_array) +} + // ------------------------------------------------------------------- // NodeExecutionList diff --git a/flyteidl/gen/pb-cpp/flyteidl/event/event.pb.cc b/flyteidl/gen/pb-cpp/flyteidl/event/event.pb.cc index 2fef4c0584..5d705b5b46 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/event/event.pb.cc +++ b/flyteidl/gen/pb-cpp/flyteidl/event/event.pb.cc @@ -361,6 +361,7 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fevent_2fevent_2eproto::o PROTOBUF_FIELD_OFFSET(::flyteidl::event::NodeExecutionEvent, is_dynamic_), PROTOBUF_FIELD_OFFSET(::flyteidl::event::NodeExecutionEvent, deck_uri_), PROTOBUF_FIELD_OFFSET(::flyteidl::event::NodeExecutionEvent, reported_at_), + PROTOBUF_FIELD_OFFSET(::flyteidl::event::NodeExecutionEvent, is_array_), PROTOBUF_FIELD_OFFSET(::flyteidl::event::NodeExecutionEvent, input_value_), PROTOBUF_FIELD_OFFSET(::flyteidl::event::NodeExecutionEvent, output_result_), PROTOBUF_FIELD_OFFSET(::flyteidl::event::NodeExecutionEvent, target_metadata_), @@ -466,16 +467,16 @@ const ::google::protobuf::uint32 TableStruct_flyteidl_2fevent_2fevent_2eproto::o static const ::google::protobuf::internal::MigrationSchema schemas[] PROTOBUF_SECTION_VARIABLE(protodesc_cold) = { { 0, -1, sizeof(::flyteidl::event::WorkflowExecutionEvent)}, { 13, -1, sizeof(::flyteidl::event::NodeExecutionEvent)}, - { 42, -1, sizeof(::flyteidl::event::WorkflowNodeMetadata)}, - { 48, -1, sizeof(::flyteidl::event::TaskNodeMetadata)}, - { 58, -1, sizeof(::flyteidl::event::DynamicWorkflowNodeMetadata)}, - { 66, -1, sizeof(::flyteidl::event::ParentTaskExecutionMetadata)}, - { 72, -1, sizeof(::flyteidl::event::ParentNodeExecutionMetadata)}, - { 78, -1, sizeof(::flyteidl::event::EventReason)}, - { 85, -1, sizeof(::flyteidl::event::TaskExecutionEvent)}, - { 112, -1, sizeof(::flyteidl::event::ExternalResourceInfo)}, - { 123, -1, sizeof(::flyteidl::event::ResourcePoolInfo)}, - { 130, -1, sizeof(::flyteidl::event::TaskExecutionMetadata)}, + { 43, -1, sizeof(::flyteidl::event::WorkflowNodeMetadata)}, + { 49, -1, sizeof(::flyteidl::event::TaskNodeMetadata)}, + { 59, -1, sizeof(::flyteidl::event::DynamicWorkflowNodeMetadata)}, + { 67, -1, sizeof(::flyteidl::event::ParentTaskExecutionMetadata)}, + { 73, -1, sizeof(::flyteidl::event::ParentNodeExecutionMetadata)}, + { 79, -1, sizeof(::flyteidl::event::EventReason)}, + { 86, -1, sizeof(::flyteidl::event::TaskExecutionEvent)}, + { 113, -1, sizeof(::flyteidl::event::ExternalResourceInfo)}, + { 124, -1, sizeof(::flyteidl::event::ResourcePoolInfo)}, + { 131, -1, sizeof(::flyteidl::event::TaskExecutionMetadata)}, }; static ::google::protobuf::Message const * const file_default_instances[] = { @@ -515,7 +516,7 @@ const char descriptor_table_protodef_flyteidl_2fevent_2fevent_2eproto[] = "\noutput_uri\030\005 \001(\tH\000\022.\n\005error\030\006 \001(\0132\035.fly" "teidl.core.ExecutionErrorH\000\0220\n\013output_da" "ta\030\007 \001(\0132\031.flyteidl.core.LiteralMapH\000B\017\n" - "\routput_result\"\217\007\n\022NodeExecutionEvent\0222\n" + "\routput_result\"\241\007\n\022NodeExecutionEvent\0222\n" "\002id\030\001 \001(\0132&.flyteidl.core.NodeExecutionI" "dentifier\022\023\n\013producer_id\030\002 \001(\t\0221\n\005phase\030" "\003 \001(\0162\".flyteidl.core.NodeExecution.Phas" @@ -536,71 +537,71 @@ const char descriptor_table_protodef_flyteidl_2fevent_2fevent_2eproto[] = "_id\030\014 \001(\t\022\021\n\tnode_name\030\r \001(\t\022\025\n\revent_ve" "rsion\030\020 \001(\005\022\021\n\tis_parent\030\021 \001(\010\022\022\n\nis_dyn" "amic\030\022 \001(\010\022\020\n\010deck_uri\030\023 \001(\t\022/\n\013reported" - "_at\030\025 \001(\0132\032.google.protobuf.TimestampB\r\n" - "\013input_valueB\017\n\routput_resultB\021\n\017target_" - "metadata\"X\n\024WorkflowNodeMetadata\022@\n\014exec" - "ution_id\030\001 \001(\0132*.flyteidl.core.WorkflowE" - "xecutionIdentifier\"\245\002\n\020TaskNodeMetadata\022" - "7\n\014cache_status\030\001 \001(\0162!.flyteidl.core.Ca" - "talogCacheStatus\0223\n\013catalog_key\030\002 \001(\0132\036." - "flyteidl.core.CatalogMetadata\022D\n\022reserva" - "tion_status\030\003 \001(\0162(.flyteidl.core.Catalo" - "gReservation.Status\022\026\n\016checkpoint_uri\030\004 " - "\001(\t\022E\n\020dynamic_workflow\030\020 \001(\0132+.flyteidl" - ".event.DynamicWorkflowNodeMetadata\"\245\001\n\033D" - "ynamicWorkflowNodeMetadata\022%\n\002id\030\001 \001(\0132\031" - ".flyteidl.core.Identifier\022A\n\021compiled_wo" - "rkflow\030\002 \001(\0132&.flyteidl.core.CompiledWor" - "kflowClosure\022\034\n\024dynamic_job_spec_uri\030\003 \001" - "(\t\"Q\n\033ParentTaskExecutionMetadata\0222\n\002id\030" - "\001 \001(\0132&.flyteidl.core.TaskExecutionIdent" - "ifier\".\n\033ParentNodeExecutionMetadata\022\017\n\007" - "node_id\030\001 \001(\t\"N\n\013EventReason\022\016\n\006reason\030\001" - " \001(\t\022/\n\013occurred_at\030\002 \001(\0132\032.google.proto" - "buf.Timestamp\"\271\006\n\022TaskExecutionEvent\022*\n\007" - "task_id\030\001 \001(\0132\031.flyteidl.core.Identifier" - "\022H\n\030parent_node_execution_id\030\002 \001(\0132&.fly" - "teidl.core.NodeExecutionIdentifier\022\025\n\rre" - "try_attempt\030\003 \001(\r\0221\n\005phase\030\004 \001(\0162\".flyte" - "idl.core.TaskExecution.Phase\022\023\n\013producer" - "_id\030\005 \001(\t\022$\n\004logs\030\006 \003(\0132\026.flyteidl.core." - "TaskLog\022/\n\013occurred_at\030\007 \001(\0132\032.google.pr" - "otobuf.Timestamp\022\023\n\tinput_uri\030\010 \001(\tH\000\022/\n" - "\ninput_data\030\023 \001(\0132\031.flyteidl.core.Litera" - "lMapH\000\022\024\n\noutput_uri\030\t \001(\tH\001\022.\n\005error\030\n " - "\001(\0132\035.flyteidl.core.ExecutionErrorH\001\0220\n\013" - "output_data\030\021 \001(\0132\031.flyteidl.core.Litera" - "lMapH\001\022,\n\013custom_info\030\013 \001(\0132\027.google.pro" - "tobuf.Struct\022\025\n\rphase_version\030\014 \001(\r\022\022\n\006r" - "eason\030\r \001(\tB\002\030\001\022,\n\007reasons\030\025 \003(\0132\033.flyte" - "idl.event.EventReason\022\021\n\ttask_type\030\016 \001(\t" - "\0227\n\010metadata\030\020 \001(\0132%.flyteidl.event.Task" - "ExecutionMetadata\022\025\n\revent_version\030\022 \001(\005" - "\022/\n\013reported_at\030\024 \001(\0132\032.google.protobuf." - "TimestampB\r\n\013input_valueB\017\n\routput_resul" - "t\"\343\001\n\024ExternalResourceInfo\022\023\n\013external_i" - "d\030\001 \001(\t\022\r\n\005index\030\002 \001(\r\022\025\n\rretry_attempt\030" - "\003 \001(\r\0221\n\005phase\030\004 \001(\0162\".flyteidl.core.Tas" - "kExecution.Phase\0227\n\014cache_status\030\005 \001(\0162!" - ".flyteidl.core.CatalogCacheStatus\022$\n\004log" - "s\030\006 \003(\0132\026.flyteidl.core.TaskLog\"\?\n\020Resou" - "rcePoolInfo\022\030\n\020allocation_token\030\001 \001(\t\022\021\n" - "\tnamespace\030\002 \001(\t\"\310\002\n\025TaskExecutionMetada" - "ta\022\026\n\016generated_name\030\001 \001(\t\022@\n\022external_r" - "esources\030\002 \003(\0132$.flyteidl.event.External" - "ResourceInfo\022<\n\022resource_pool_info\030\003 \003(\013" - "2 .flyteidl.event.ResourcePoolInfo\022\031\n\021pl" - "ugin_identifier\030\004 \001(\t\022K\n\016instance_class\030" - "\020 \001(\01623.flyteidl.event.TaskExecutionMeta" - "data.InstanceClass\"/\n\rInstanceClass\022\013\n\007D" - "EFAULT\020\000\022\021\n\rINTERRUPTIBLE\020\001B=Z;github.co" - "m/flyteorg/flyte/flyteidl/gen/pb-go/flyt" - "eidl/eventb\006proto3" + "_at\030\025 \001(\0132\032.google.protobuf.Timestamp\022\020\n" + "\010is_array\030\026 \001(\010B\r\n\013input_valueB\017\n\routput" + "_resultB\021\n\017target_metadata\"X\n\024WorkflowNo" + "deMetadata\022@\n\014execution_id\030\001 \001(\0132*.flyte" + "idl.core.WorkflowExecutionIdentifier\"\245\002\n" + "\020TaskNodeMetadata\0227\n\014cache_status\030\001 \001(\0162" + "!.flyteidl.core.CatalogCacheStatus\0223\n\013ca" + "talog_key\030\002 \001(\0132\036.flyteidl.core.CatalogM" + "etadata\022D\n\022reservation_status\030\003 \001(\0162(.fl" + "yteidl.core.CatalogReservation.Status\022\026\n" + "\016checkpoint_uri\030\004 \001(\t\022E\n\020dynamic_workflo" + "w\030\020 \001(\0132+.flyteidl.event.DynamicWorkflow" + "NodeMetadata\"\245\001\n\033DynamicWorkflowNodeMeta" + "data\022%\n\002id\030\001 \001(\0132\031.flyteidl.core.Identif" + "ier\022A\n\021compiled_workflow\030\002 \001(\0132&.flyteid" + "l.core.CompiledWorkflowClosure\022\034\n\024dynami" + "c_job_spec_uri\030\003 \001(\t\"Q\n\033ParentTaskExecut" + "ionMetadata\0222\n\002id\030\001 \001(\0132&.flyteidl.core." + "TaskExecutionIdentifier\".\n\033ParentNodeExe" + "cutionMetadata\022\017\n\007node_id\030\001 \001(\t\"N\n\013Event" + "Reason\022\016\n\006reason\030\001 \001(\t\022/\n\013occurred_at\030\002 " + "\001(\0132\032.google.protobuf.Timestamp\"\271\006\n\022Task" + "ExecutionEvent\022*\n\007task_id\030\001 \001(\0132\031.flytei" + "dl.core.Identifier\022H\n\030parent_node_execut" + "ion_id\030\002 \001(\0132&.flyteidl.core.NodeExecuti" + "onIdentifier\022\025\n\rretry_attempt\030\003 \001(\r\0221\n\005p" + "hase\030\004 \001(\0162\".flyteidl.core.TaskExecution" + ".Phase\022\023\n\013producer_id\030\005 \001(\t\022$\n\004logs\030\006 \003(" + "\0132\026.flyteidl.core.TaskLog\022/\n\013occurred_at" + "\030\007 \001(\0132\032.google.protobuf.Timestamp\022\023\n\tin" + "put_uri\030\010 \001(\tH\000\022/\n\ninput_data\030\023 \001(\0132\031.fl" + "yteidl.core.LiteralMapH\000\022\024\n\noutput_uri\030\t" + " \001(\tH\001\022.\n\005error\030\n \001(\0132\035.flyteidl.core.Ex" + "ecutionErrorH\001\0220\n\013output_data\030\021 \001(\0132\031.fl" + "yteidl.core.LiteralMapH\001\022,\n\013custom_info\030" + "\013 \001(\0132\027.google.protobuf.Struct\022\025\n\rphase_" + "version\030\014 \001(\r\022\022\n\006reason\030\r \001(\tB\002\030\001\022,\n\007rea" + "sons\030\025 \003(\0132\033.flyteidl.event.EventReason\022" + "\021\n\ttask_type\030\016 \001(\t\0227\n\010metadata\030\020 \001(\0132%.f" + "lyteidl.event.TaskExecutionMetadata\022\025\n\re" + "vent_version\030\022 \001(\005\022/\n\013reported_at\030\024 \001(\0132" + "\032.google.protobuf.TimestampB\r\n\013input_val" + "ueB\017\n\routput_result\"\343\001\n\024ExternalResource" + "Info\022\023\n\013external_id\030\001 \001(\t\022\r\n\005index\030\002 \001(\r" + "\022\025\n\rretry_attempt\030\003 \001(\r\0221\n\005phase\030\004 \001(\0162\"" + ".flyteidl.core.TaskExecution.Phase\0227\n\014ca" + "che_status\030\005 \001(\0162!.flyteidl.core.Catalog" + "CacheStatus\022$\n\004logs\030\006 \003(\0132\026.flyteidl.cor" + "e.TaskLog\"\?\n\020ResourcePoolInfo\022\030\n\020allocat" + "ion_token\030\001 \001(\t\022\021\n\tnamespace\030\002 \001(\t\"\310\002\n\025T" + "askExecutionMetadata\022\026\n\016generated_name\030\001" + " \001(\t\022@\n\022external_resources\030\002 \003(\0132$.flyte" + "idl.event.ExternalResourceInfo\022<\n\022resour" + "ce_pool_info\030\003 \003(\0132 .flyteidl.event.Reso" + "urcePoolInfo\022\031\n\021plugin_identifier\030\004 \001(\t\022" + "K\n\016instance_class\030\020 \001(\01623.flyteidl.event" + ".TaskExecutionMetadata.InstanceClass\"/\n\r" + "InstanceClass\022\013\n\007DEFAULT\020\000\022\021\n\rINTERRUPTI" + "BLE\020\001B=Z;github.com/flyteorg/flyte/flyte" + "idl/gen/pb-go/flyteidl/eventb\006proto3" ; ::google::protobuf::internal::DescriptorTable descriptor_table_flyteidl_2fevent_2fevent_2eproto = { false, InitDefaults_flyteidl_2fevent_2fevent_2eproto, descriptor_table_protodef_flyteidl_2fevent_2fevent_2eproto, - "flyteidl/event/event.proto", &assign_descriptors_table_flyteidl_2fevent_2fevent_2eproto, 3818, + "flyteidl/event/event.proto", &assign_descriptors_table_flyteidl_2fevent_2fevent_2eproto, 3836, }; void AddDescriptors_flyteidl_2fevent_2fevent_2eproto() { @@ -1620,6 +1621,7 @@ const int NodeExecutionEvent::kIsParentFieldNumber; const int NodeExecutionEvent::kIsDynamicFieldNumber; const int NodeExecutionEvent::kDeckUriFieldNumber; const int NodeExecutionEvent::kReportedAtFieldNumber; +const int NodeExecutionEvent::kIsArrayFieldNumber; #endif // !defined(_MSC_VER) || _MSC_VER >= 1900 NodeExecutionEvent::NodeExecutionEvent() @@ -1677,8 +1679,8 @@ NodeExecutionEvent::NodeExecutionEvent(const NodeExecutionEvent& from) reported_at_ = nullptr; } ::memcpy(&phase_, &from.phase_, - static_cast(reinterpret_cast(&is_dynamic_) - - reinterpret_cast(&phase_)) + sizeof(is_dynamic_)); + static_cast(reinterpret_cast(&is_array_) - + reinterpret_cast(&phase_)) + sizeof(is_array_)); clear_has_input_value(); switch (from.input_value_case()) { case kInputUri: { @@ -1737,8 +1739,8 @@ void NodeExecutionEvent::SharedCtor() { node_name_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); deck_uri_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); ::memset(&id_, 0, static_cast( - reinterpret_cast(&is_dynamic_) - - reinterpret_cast(&id_)) + sizeof(is_dynamic_)); + reinterpret_cast(&is_array_) - + reinterpret_cast(&id_)) + sizeof(is_array_)); clear_has_input_value(); clear_has_output_result(); clear_has_target_metadata(); @@ -1871,8 +1873,8 @@ void NodeExecutionEvent::Clear() { } reported_at_ = nullptr; ::memset(&phase_, 0, static_cast( - reinterpret_cast(&is_dynamic_) - - reinterpret_cast(&phase_)) + sizeof(is_dynamic_)); + reinterpret_cast(&is_array_) - + reinterpret_cast(&phase_)) + sizeof(is_array_)); clear_input_value(); clear_output_result(); clear_target_metadata(); @@ -2163,6 +2165,13 @@ const char* NodeExecutionEvent::_InternalParse(const char* begin, const char* en {parser_till_end, object}, ptr - size, ptr)); break; } + // bool is_array = 22; + case 22: { + if (static_cast<::google::protobuf::uint8>(tag) != 176) goto handle_unusual; + msg->set_is_array(::google::protobuf::internal::ReadVarint(&ptr)); + GOOGLE_PROTOBUF_PARSER_ASSERT(ptr); + break; + } default: { handle_unusual: if ((tag & 7) == 4 || tag == 0) { @@ -2465,6 +2474,19 @@ bool NodeExecutionEvent::MergePartialFromCodedStream( break; } + // bool is_array = 22; + case 22: { + if (static_cast< ::google::protobuf::uint8>(tag) == (176 & 0xFF)) { + + DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive< + bool, ::google::protobuf::internal::WireFormatLite::TYPE_BOOL>( + input, &is_array_))); + } else { + goto handle_unusual; + } + break; + } + default: { handle_unusual: if (tag == 0) { @@ -2643,6 +2665,11 @@ void NodeExecutionEvent::SerializeWithCachedSizes( 21, HasBitSetters::reported_at(this), output); } + // bool is_array = 22; + if (this->is_array() != 0) { + ::google::protobuf::internal::WireFormatLite::WriteBool(22, this->is_array(), output); + } + if (_internal_metadata_.have_unknown_fields()) { ::google::protobuf::internal::WireFormat::SerializeUnknownFields( _internal_metadata_.unknown_fields(), output); @@ -2824,6 +2851,11 @@ ::google::protobuf::uint8* NodeExecutionEvent::InternalSerializeWithCachedSizesT 21, HasBitSetters::reported_at(this), target); } + // bool is_array = 22; + if (this->is_array() != 0) { + target = ::google::protobuf::internal::WireFormatLite::WriteBoolToArray(22, this->is_array(), target); + } + if (_internal_metadata_.have_unknown_fields()) { target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray( _internal_metadata_.unknown_fields(), target); @@ -2938,6 +2970,11 @@ size_t NodeExecutionEvent::ByteSizeLong() const { total_size += 2 + 1; } + // bool is_array = 22; + if (this->is_array() != 0) { + total_size += 2 + 1; + } + switch (input_value_case()) { // string input_uri = 5; case kInputUri: { @@ -3076,6 +3113,9 @@ void NodeExecutionEvent::MergeFrom(const NodeExecutionEvent& from) { if (from.is_dynamic() != 0) { set_is_dynamic(from.is_dynamic()); } + if (from.is_array() != 0) { + set_is_array(from.is_array()); + } switch (from.input_value_case()) { case kInputUri: { set_input_uri(from.input_uri()); @@ -3165,6 +3205,7 @@ void NodeExecutionEvent::InternalSwap(NodeExecutionEvent* other) { swap(event_version_, other->event_version_); swap(is_parent_, other->is_parent_); swap(is_dynamic_, other->is_dynamic_); + swap(is_array_, other->is_array_); swap(input_value_, other->input_value_); swap(output_result_, other->output_result_); swap(target_metadata_, other->target_metadata_); diff --git a/flyteidl/gen/pb-cpp/flyteidl/event/event.pb.h b/flyteidl/gen/pb-cpp/flyteidl/event/event.pb.h index eace42fee0..bca21d5c6d 100644 --- a/flyteidl/gen/pb-cpp/flyteidl/event/event.pb.h +++ b/flyteidl/gen/pb-cpp/flyteidl/event/event.pb.h @@ -596,6 +596,12 @@ class NodeExecutionEvent final : bool is_dynamic() const; void set_is_dynamic(bool value); + // bool is_array = 22; + void clear_is_array(); + static const int kIsArrayFieldNumber = 22; + bool is_array() const; + void set_is_array(bool value); + // string input_uri = 5; private: bool has_input_uri() const; @@ -716,6 +722,7 @@ class NodeExecutionEvent final : ::google::protobuf::int32 event_version_; bool is_parent_; bool is_dynamic_; + bool is_array_; union InputValueUnion { InputValueUnion() {} ::google::protobuf::internal::ArenaStringPtr input_uri_; @@ -3642,6 +3649,20 @@ inline void NodeExecutionEvent::set_allocated_reported_at(::google::protobuf::Ti // @@protoc_insertion_point(field_set_allocated:flyteidl.event.NodeExecutionEvent.reported_at) } +// bool is_array = 22; +inline void NodeExecutionEvent::clear_is_array() { + is_array_ = false; +} +inline bool NodeExecutionEvent::is_array() const { + // @@protoc_insertion_point(field_get:flyteidl.event.NodeExecutionEvent.is_array) + return is_array_; +} +inline void NodeExecutionEvent::set_is_array(bool value) { + + is_array_ = value; + // @@protoc_insertion_point(field_set:flyteidl.event.NodeExecutionEvent.is_array) +} + inline bool NodeExecutionEvent::has_input_value() const { return input_value_case() != INPUT_VALUE_NOT_SET; } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.go b/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.go index 9061872366..f1e7505a38 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.go @@ -328,7 +328,10 @@ type NodeExecutionMetaData struct { SpecNodeId string `protobuf:"bytes,3,opt,name=spec_node_id,json=specNodeId,proto3" json:"spec_node_id,omitempty"` // Boolean flag indicating if the node has contains a dynamic workflow which then produces child nodes. // This is to distinguish between subworkflows and dynamic workflows which can both have is_parent_node as true. - IsDynamic bool `protobuf:"varint,4,opt,name=is_dynamic,json=isDynamic,proto3" json:"is_dynamic,omitempty"` + IsDynamic bool `protobuf:"varint,4,opt,name=is_dynamic,json=isDynamic,proto3" json:"is_dynamic,omitempty"` + // Boolean flag indicating if the node is an array node. This is intended to uniquely identify + // array nodes from other nodes which can have is_parent_node as true. + IsArray bool `protobuf:"varint,5,opt,name=is_array,json=isArray,proto3" json:"is_array,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -387,6 +390,13 @@ func (m *NodeExecutionMetaData) GetIsDynamic() bool { return false } +func (m *NodeExecutionMetaData) GetIsArray() bool { + if m != nil { + return m.IsArray + } + return false +} + // Request structure to retrieve a list of node execution entities. // See :ref:`ref_flyteidl.admin.NodeExecution` for more details type NodeExecutionList struct { @@ -960,80 +970,81 @@ func init() { } var fileDescriptor_f73b3eae493fd736 = []byte{ - // 1191 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xdd, 0x6e, 0x1b, 0xc5, - 0x17, 0xef, 0x26, 0x4d, 0x62, 0x1f, 0x27, 0x4e, 0x32, 0x7f, 0xf7, 0x5f, 0xb7, 0xe9, 0x87, 0xd9, - 0xb6, 0x28, 0x80, 0x6a, 0x4b, 0xae, 0x8a, 0xca, 0x37, 0x71, 0xd2, 0x8f, 0x40, 0x0a, 0x65, 0x52, - 0x83, 0x84, 0x10, 0xab, 0xf1, 0xee, 0xd8, 0x19, 0xbc, 0xde, 0xd9, 0xce, 0xcc, 0x2a, 0xf8, 0x45, - 0x90, 0xb8, 0xe2, 0x55, 0x78, 0x02, 0x5e, 0x03, 0x89, 0x07, 0xe0, 0x1a, 0xcd, 0xec, 0xec, 0xda, - 0xbb, 0x71, 0x13, 0xa9, 0x5c, 0x70, 0xe7, 0x39, 0xe7, 0x77, 0x3e, 0xe7, 0x77, 0xce, 0xac, 0xe1, - 0xce, 0x30, 0x9c, 0x2a, 0xca, 0x82, 0xb0, 0x43, 0x82, 0x09, 0x8b, 0x3a, 0x11, 0x0f, 0xa8, 0x47, - 0x7f, 0xa6, 0x7e, 0xa2, 0x18, 0x8f, 0xda, 0xb1, 0xe0, 0x8a, 0xa3, 0x7a, 0x06, 0x6a, 0x1b, 0xd0, - 0xf5, 0x9d, 0x92, 0x91, 0xcf, 0x27, 0x93, 0x0c, 0x7c, 0xfd, 0x66, 0xae, 0xf4, 0xb9, 0xa0, 0x9d, - 0x92, 0xaf, 0x39, 0x5b, 0xa3, 0xf6, 0x89, 0x22, 0x21, 0x1f, 0x59, 0xe5, 0x8d, 0x92, 0x92, 0x4f, - 0x62, 0x16, 0x52, 0x61, 0xb5, 0xb7, 0x8a, 0x5a, 0x16, 0xd0, 0x48, 0xb1, 0x21, 0xcb, 0xf5, 0x25, - 0xeb, 0x90, 0x29, 0x2a, 0x48, 0x28, 0xad, 0xf6, 0xf6, 0x88, 0xf3, 0x51, 0x48, 0x3b, 0xe6, 0x34, - 0x48, 0x86, 0x1d, 0xc5, 0x26, 0x54, 0x2a, 0x32, 0x89, 0x33, 0xf7, 0x65, 0x40, 0x90, 0x08, 0x32, - 0xcb, 0xdc, 0xfd, 0x06, 0xae, 0x7e, 0xc5, 0x03, 0xfa, 0x38, 0x2b, 0xe8, 0x29, 0x55, 0x98, 0xbe, - 0x4a, 0xa8, 0x54, 0xe8, 0x7d, 0x58, 0x62, 0x41, 0xd3, 0x69, 0x39, 0xbb, 0xb5, 0xee, 0xdb, 0xed, - 0xbc, 0x5b, 0x3a, 0x8d, 0x76, 0xc1, 0xe6, 0x30, 0xcf, 0x19, 0x2f, 0xb1, 0xc0, 0xfd, 0x75, 0x09, - 0x9a, 0x05, 0xfd, 0x11, 0x93, 0xb9, 0xd3, 0x1f, 0xe1, 0xca, 0x29, 0x17, 0xe3, 0x61, 0xc8, 0x4f, - 0x67, 0x37, 0xe2, 0xe5, 0x71, 0xde, 0x2d, 0xc5, 0xf9, 0xce, 0x62, 0x17, 0xc5, 0xfa, 0xdf, 0xe9, - 0x59, 0x25, 0x6a, 0xc0, 0x4a, 0xc8, 0x26, 0x4c, 0x35, 0x97, 0x5a, 0xce, 0xee, 0x06, 0x4e, 0x0f, - 0x5a, 0xaa, 0xf8, 0x98, 0x46, 0xcd, 0xe5, 0x96, 0xb3, 0x5b, 0xc5, 0xe9, 0x01, 0x35, 0x61, 0x6d, - 0xc8, 0x42, 0x45, 0x85, 0x6c, 0x5e, 0x36, 0xf2, 0xec, 0x88, 0xee, 0xc3, 0x9a, 0xe4, 0x42, 0x79, - 0x83, 0x69, 0x73, 0xc5, 0xe4, 0xd5, 0x68, 0x17, 0xd9, 0xd2, 0x3e, 0xe6, 0x42, 0xe1, 0x55, 0x0d, - 0xea, 0x4d, 0xd1, 0x2e, 0x6c, 0x25, 0x11, 0x7b, 0x95, 0x50, 0x2f, 0x26, 0x82, 0x46, 0x4a, 0xd7, - 0xb3, 0x6a, 0x3c, 0xd6, 0x53, 0xf9, 0x0b, 0x23, 0x3e, 0x0c, 0xdc, 0xbf, 0x1c, 0xb8, 0x5d, 0xe8, - 0xcd, 0x13, 0x2e, 0x5e, 0x12, 0x39, 0x9e, 0x6f, 0x11, 0x86, 0x6d, 0x45, 0xe4, 0x78, 0x51, 0x7b, - 0xca, 0xd7, 0xa0, 0x4d, 0x17, 0xb5, 0x66, 0x53, 0x15, 0x15, 0xff, 0x49, 0x5b, 0xdc, 0x3f, 0x1d, - 0xd8, 0x28, 0x14, 0xfb, 0xa6, 0x94, 0x42, 0x3b, 0x50, 0x65, 0x51, 0x9c, 0x28, 0x2f, 0x11, 0xcc, - 0x94, 0x50, 0xc5, 0x15, 0x23, 0xe8, 0x0b, 0x86, 0x3e, 0x85, 0x35, 0x3f, 0xe4, 0x32, 0x11, 0xd4, - 0xd4, 0x51, 0xeb, 0xde, 0x2d, 0x67, 0x55, 0x70, 0xbd, 0x9f, 0x62, 0x71, 0x66, 0x84, 0xf6, 0xa0, - 0x32, 0xa1, 0x8a, 0x04, 0x44, 0x11, 0x53, 0x70, 0xad, 0x7b, 0xef, 0x5c, 0x07, 0xcf, 0xa9, 0x22, - 0x07, 0x44, 0x11, 0x9c, 0x9b, 0xb9, 0xbf, 0x39, 0x70, 0x65, 0x21, 0x06, 0xdd, 0x86, 0x9a, 0xa0, - 0x4a, 0x4c, 0xbd, 0x91, 0xe0, 0x49, 0x6c, 0x4a, 0xaf, 0x62, 0x30, 0xa2, 0xa7, 0x5a, 0x82, 0xee, - 0x42, 0x9d, 0xc9, 0x8c, 0x37, 0x7a, 0x51, 0x99, 0xfa, 0x2a, 0x78, 0x9d, 0xc9, 0x94, 0x35, 0xda, - 0x2f, 0x6a, 0xc1, 0xba, 0x8c, 0xa9, 0x6f, 0x00, 0x9a, 0x0e, 0xe9, 0x85, 0x81, 0x96, 0x69, 0xfd, - 0x61, 0x80, 0x6e, 0x02, 0x30, 0xe9, 0x05, 0xd3, 0x88, 0x4c, 0x98, 0x6f, 0xea, 0xa8, 0xe0, 0x2a, - 0x93, 0x07, 0xa9, 0xc0, 0x7d, 0x05, 0xdb, 0x67, 0x66, 0x12, 0x3d, 0x81, 0xcd, 0xe2, 0x6a, 0x94, - 0x4d, 0xa7, 0xb5, 0xbc, 0x5b, 0xeb, 0xde, 0x3c, 0xb7, 0x01, 0xb8, 0x1e, 0xcd, 0x1f, 0xe5, 0x8c, - 0x47, 0x4b, 0x73, 0x3c, 0x72, 0xff, 0x5e, 0x81, 0xc6, 0xa2, 0xce, 0xa3, 0x3b, 0x00, 0x3c, 0x51, - 0xd9, 0x75, 0x9a, 0x96, 0xf4, 0x96, 0x9a, 0xce, 0xb3, 0x4b, 0xb8, 0x9a, 0xca, 0xf5, 0xad, 0x3e, - 0x84, 0x15, 0x2a, 0x04, 0x17, 0xc6, 0x67, 0x21, 0x23, 0xc3, 0x96, 0xdc, 0xe9, 0x63, 0x0d, 0x7a, - 0x76, 0x09, 0xa7, 0x68, 0xf4, 0x39, 0xd4, 0xac, 0x6f, 0x73, 0x9f, 0x60, 0x8c, 0xaf, 0x95, 0x8c, - 0x8f, 0xd2, 0x25, 0xfa, 0x9c, 0xc4, 0x36, 0xae, 0xcd, 0xc7, 0xdc, 0xd8, 0x23, 0x58, 0x89, 0x4f, - 0x88, 0x4c, 0xc9, 0x54, 0xef, 0xba, 0xe7, 0xd1, 0xb4, 0xfd, 0x42, 0x23, 0x71, 0x6a, 0x80, 0x3e, - 0x00, 0x90, 0x8a, 0x08, 0x45, 0x03, 0x8f, 0x28, 0x4b, 0xa5, 0xeb, 0xed, 0x74, 0x01, 0xb7, 0xb3, - 0x05, 0xdc, 0x7e, 0x99, 0x6d, 0x68, 0x5c, 0xb5, 0xe8, 0x3d, 0x85, 0x1e, 0x42, 0x25, 0x5b, 0xcc, - 0x76, 0xb4, 0xae, 0x9d, 0x31, 0x3c, 0xb0, 0x00, 0x9c, 0x43, 0x75, 0x44, 0x5f, 0x50, 0x62, 0x23, - 0xae, 0x5e, 0x1c, 0xd1, 0xa2, 0xf7, 0x94, 0x36, 0x4d, 0xe2, 0x20, 0x33, 0x5d, 0xbb, 0xd8, 0xd4, - 0xa2, 0xf7, 0x14, 0xfa, 0x01, 0xfe, 0x9f, 0xef, 0x70, 0xc3, 0x9f, 0x7c, 0x7c, 0x2a, 0x8b, 0xe7, - 0x2f, 0xdb, 0xe2, 0xba, 0x77, 0xcf, 0x2d, 0xf6, 0x99, 0x83, 0x1b, 0xa7, 0x0b, 0xe4, 0xe8, 0x05, - 0x20, 0xb3, 0xfe, 0x8a, 0x9e, 0xab, 0xc6, 0x73, 0xab, 0xec, 0x59, 0x2f, 0xc0, 0x92, 0xd7, 0x2d, - 0x55, 0x92, 0xa1, 0x6b, 0x50, 0x09, 0xa8, 0x3f, 0x36, 0x6c, 0xab, 0xa5, 0x1b, 0x4d, 0x9f, 0x35, - 0xcb, 0x3a, 0xd0, 0xb0, 0x23, 0xe3, 0xfd, 0xc4, 0x07, 0x9e, 0x99, 0x31, 0x0d, 0x5b, 0x37, 0xb0, - 0x6d, 0xab, 0xfb, 0x82, 0x0f, 0x8e, 0x63, 0xea, 0xf7, 0x05, 0xeb, 0x6d, 0xc2, 0x86, 0xe5, 0x97, - 0xa0, 0x32, 0x09, 0x55, 0x6f, 0x1b, 0x36, 0x15, 0x11, 0x23, 0xaa, 0xf2, 0x5c, 0xdd, 0x00, 0x1a, - 0x8b, 0x2a, 0x46, 0x47, 0x50, 0xa3, 0xb3, 0x05, 0xf7, 0x06, 0x2f, 0xde, 0xbc, 0xb9, 0xfb, 0xbb, - 0x03, 0x5b, 0xe5, 0xf2, 0xd1, 0x01, 0xac, 0xfb, 0xc4, 0x3f, 0xa1, 0x9e, 0x54, 0x44, 0x25, 0xd2, - 0xc4, 0xa8, 0x77, 0xdf, 0x2a, 0xc5, 0xd8, 0x4f, 0xbf, 0x4f, 0xf6, 0x35, 0xf2, 0xd8, 0x00, 0x71, - 0xcd, 0x9f, 0x1d, 0xd0, 0x67, 0x50, 0xb3, 0x9f, 0x30, 0xde, 0x98, 0x4e, 0xed, 0x04, 0xde, 0x5a, - 0xec, 0x24, 0x0b, 0x8d, 0xc1, 0x9a, 0x7c, 0x49, 0xa7, 0xe8, 0x1e, 0xd4, 0xfd, 0x13, 0xea, 0x8f, - 0x63, 0xce, 0xa2, 0x74, 0xca, 0xd3, 0x97, 0x64, 0x63, 0x26, 0xed, 0x0b, 0xe6, 0xfe, 0xe1, 0xc0, - 0x8e, 0x5d, 0x50, 0x0b, 0x1b, 0xf6, 0xce, 0xdc, 0x73, 0x51, 0x9e, 0xe1, 0xd2, 0x0b, 0x71, 0x0c, - 0xdb, 0xf6, 0xc3, 0x2a, 0xf0, 0x32, 0x5a, 0xd9, 0xc4, 0xcb, 0x0f, 0xcd, 0xbe, 0xc5, 0x65, 0x21, - 0xb3, 0x07, 0x61, 0xcb, 0x2f, 0x29, 0x5e, 0xcb, 0x8e, 0xe5, 0xd7, 0xb0, 0xc3, 0xed, 0xc3, 0x4e, - 0xf9, 0x6b, 0xca, 0xbc, 0x14, 0xff, 0xf2, 0x8b, 0xea, 0x97, 0x65, 0xb8, 0xb1, 0xd8, 0xaf, 0x8c, - 0x79, 0x24, 0x29, 0x7a, 0x00, 0xab, 0xe6, 0x39, 0x94, 0xd6, 0xf9, 0xd5, 0xf2, 0x9c, 0xf4, 0x45, - 0xd8, 0x0b, 0xf9, 0x40, 0xaf, 0x3b, 0x6c, 0xa1, 0xe8, 0x21, 0xac, 0xa5, 0x54, 0x96, 0xb6, 0x51, - 0xe7, 0x5a, 0x65, 0x58, 0xf4, 0x21, 0xd4, 0x86, 0x49, 0x18, 0x7a, 0x36, 0xe0, 0xf2, 0x05, 0x1b, - 0x16, 0x83, 0x46, 0x1f, 0xa6, 0x21, 0x3f, 0x86, 0x75, 0x63, 0x9b, 0xc5, 0xbd, 0x7c, 0x91, 0xb1, - 0x09, 0xf5, 0xb5, 0x8d, 0xfc, 0x2d, 0x6c, 0x65, 0xd7, 0x91, 0x5f, 0xf1, 0x96, 0xf1, 0xf0, 0x5e, - 0x39, 0xf3, 0x73, 0x58, 0x85, 0x37, 0x83, 0xa2, 0x12, 0x3d, 0x02, 0x30, 0xe6, 0x5e, 0x22, 0x42, - 0xd9, 0xdc, 0x2e, 0xe7, 0x94, 0x7a, 0x7c, 0xa2, 0x8f, 0x7d, 0x7c, 0x24, 0x71, 0xd5, 0x68, 0xfa, - 0x22, 0x94, 0xbd, 0x4f, 0xbe, 0xff, 0x68, 0xc4, 0xd4, 0x49, 0x32, 0x68, 0xfb, 0x7c, 0xd2, 0x31, - 0x72, 0x2e, 0x46, 0xe9, 0x8f, 0x4e, 0xfe, 0xe1, 0x3e, 0xa2, 0x51, 0x27, 0x1e, 0xdc, 0x1f, 0xf1, - 0x4e, 0xf1, 0x2f, 0xc6, 0x60, 0xd5, 0xec, 0xd9, 0x07, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xc7, - 0x28, 0x8a, 0x7c, 0xb0, 0x0c, 0x00, 0x00, + // 1208 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0x6d, 0x6f, 0x1b, 0xc5, + 0x13, 0xef, 0x25, 0x4d, 0x62, 0x8f, 0x13, 0x27, 0xd9, 0xbf, 0xfb, 0xaf, 0xdb, 0xf4, 0xc1, 0x5c, + 0x5b, 0x14, 0x40, 0xb5, 0x25, 0x57, 0x45, 0xe5, 0x99, 0x38, 0xe9, 0x43, 0x20, 0x85, 0xb2, 0xa9, + 0x41, 0x42, 0x88, 0xd3, 0xfa, 0x6e, 0xed, 0x2c, 0x3e, 0xdf, 0x5e, 0x77, 0xf7, 0x14, 0xfc, 0x45, + 0x90, 0xf8, 0x2a, 0xbc, 0xe2, 0x13, 0xf0, 0x35, 0x90, 0xf8, 0x00, 0xbc, 0x46, 0xbb, 0xb7, 0x77, + 0xf6, 0x5d, 0xdc, 0x44, 0x2a, 0x2f, 0x78, 0xe7, 0x9d, 0xf9, 0xcd, 0xcc, 0xce, 0xcc, 0x6f, 0x66, + 0xcf, 0x70, 0x67, 0x18, 0x4e, 0x15, 0x65, 0x41, 0xd8, 0x21, 0xc1, 0x84, 0x45, 0x9d, 0x88, 0x07, + 0xd4, 0xa3, 0x3f, 0x53, 0x3f, 0x51, 0x8c, 0x47, 0xed, 0x58, 0x70, 0xc5, 0x51, 0x3d, 0x03, 0xb5, + 0x0d, 0xe8, 0xfa, 0x4e, 0xc9, 0xc8, 0xe7, 0x93, 0x49, 0x06, 0xbe, 0x7e, 0x33, 0x57, 0xfa, 0x5c, + 0xd0, 0x4e, 0xc9, 0xd7, 0x9c, 0xad, 0x51, 0xfb, 0x44, 0x91, 0x90, 0x8f, 0xac, 0xf2, 0x46, 0x49, + 0xc9, 0x27, 0x31, 0x0b, 0xa9, 0xb0, 0xda, 0x5b, 0x45, 0x2d, 0x0b, 0x68, 0xa4, 0xd8, 0x90, 0xe5, + 0xfa, 0x92, 0x75, 0xc8, 0x14, 0x15, 0x24, 0x94, 0x56, 0x7b, 0x7b, 0xc4, 0xf9, 0x28, 0xa4, 0x1d, + 0x73, 0x1a, 0x24, 0xc3, 0x8e, 0x62, 0x13, 0x2a, 0x15, 0x99, 0xc4, 0x99, 0xfb, 0x32, 0x20, 0x48, + 0x04, 0x99, 0xdd, 0xdc, 0xfd, 0x06, 0xae, 0x7e, 0xc5, 0x03, 0xfa, 0x38, 0x4b, 0xe8, 0x29, 0x55, + 0x98, 0xbe, 0x4a, 0xa8, 0x54, 0xe8, 0x7d, 0x58, 0x62, 0x41, 0xd3, 0x69, 0x39, 0xbb, 0xb5, 0xee, + 0xdb, 0xed, 0xbc, 0x5a, 0xfa, 0x1a, 0xed, 0x82, 0xcd, 0x61, 0x7e, 0x67, 0xbc, 0xc4, 0x02, 0xf7, + 0xd7, 0x25, 0x68, 0x16, 0xf4, 0x47, 0x4c, 0xe6, 0x4e, 0x7f, 0x84, 0x2b, 0xa7, 0x5c, 0x8c, 0x87, + 0x21, 0x3f, 0x9d, 0x75, 0xc4, 0xcb, 0xe3, 0xbc, 0x5b, 0x8a, 0xf3, 0x9d, 0xc5, 0x2e, 0x8a, 0xf5, + 0xbf, 0xd3, 0xb3, 0x4a, 0xd4, 0x80, 0x95, 0x90, 0x4d, 0x98, 0x6a, 0x2e, 0xb5, 0x9c, 0xdd, 0x0d, + 0x9c, 0x1e, 0xb4, 0x54, 0xf1, 0x31, 0x8d, 0x9a, 0xcb, 0x2d, 0x67, 0xb7, 0x8a, 0xd3, 0x03, 0x6a, + 0xc2, 0xda, 0x90, 0x85, 0x8a, 0x0a, 0xd9, 0xbc, 0x6c, 0xe4, 0xd9, 0x11, 0xdd, 0x87, 0x35, 0xc9, + 0x85, 0xf2, 0x06, 0xd3, 0xe6, 0x8a, 0xb9, 0x57, 0xa3, 0x5d, 0x64, 0x4b, 0xfb, 0x98, 0x0b, 0x85, + 0x57, 0x35, 0xa8, 0x37, 0x45, 0xbb, 0xb0, 0x95, 0x44, 0xec, 0x55, 0x42, 0xbd, 0x98, 0x08, 0x1a, + 0x29, 0x9d, 0xcf, 0xaa, 0xf1, 0x58, 0x4f, 0xe5, 0x2f, 0x8c, 0xf8, 0x30, 0x70, 0xff, 0x72, 0xe0, + 0x76, 0xa1, 0x36, 0x4f, 0xb8, 0x78, 0x49, 0xe4, 0x78, 0xbe, 0x44, 0x18, 0xb6, 0x15, 0x91, 0xe3, + 0x45, 0xe5, 0x29, 0xb7, 0x41, 0x9b, 0x2e, 0x2a, 0xcd, 0xa6, 0x2a, 0x2a, 0xfe, 0x93, 0xb2, 0xb8, + 0x7f, 0x3a, 0xb0, 0x51, 0x48, 0xf6, 0x4d, 0x29, 0x85, 0x76, 0xa0, 0xca, 0xa2, 0x38, 0x51, 0x5e, + 0x22, 0x98, 0x49, 0xa1, 0x8a, 0x2b, 0x46, 0xd0, 0x17, 0x0c, 0x7d, 0x0a, 0x6b, 0x7e, 0xc8, 0x65, + 0x22, 0xa8, 0xc9, 0xa3, 0xd6, 0xbd, 0x5b, 0xbe, 0x55, 0xc1, 0xf5, 0x7e, 0x8a, 0xc5, 0x99, 0x11, + 0xda, 0x83, 0xca, 0x84, 0x2a, 0x12, 0x10, 0x45, 0x4c, 0xc2, 0xb5, 0xee, 0xbd, 0x73, 0x1d, 0x3c, + 0xa7, 0x8a, 0x1c, 0x10, 0x45, 0x70, 0x6e, 0xe6, 0xfe, 0xe6, 0xc0, 0x95, 0x85, 0x18, 0x74, 0x1b, + 0x6a, 0x82, 0x2a, 0x31, 0xf5, 0x46, 0x82, 0x27, 0xb1, 0x49, 0xbd, 0x8a, 0xc1, 0x88, 0x9e, 0x6a, + 0x09, 0xba, 0x0b, 0x75, 0x26, 0x33, 0xde, 0xe8, 0x45, 0x65, 0xf2, 0xab, 0xe0, 0x75, 0x26, 0x53, + 0xd6, 0x68, 0xbf, 0xa8, 0x05, 0xeb, 0x32, 0xa6, 0xbe, 0x01, 0x68, 0x3a, 0xa4, 0x0d, 0x03, 0x2d, + 0xd3, 0xfa, 0xc3, 0x00, 0xdd, 0x04, 0x60, 0xd2, 0x0b, 0xa6, 0x11, 0x99, 0x30, 0xdf, 0xe4, 0x51, + 0xc1, 0x55, 0x26, 0x0f, 0x52, 0x01, 0xba, 0x06, 0x15, 0x26, 0x3d, 0x22, 0x04, 0x49, 0x7b, 0x57, + 0xc1, 0x6b, 0x4c, 0xee, 0xe9, 0xa3, 0xfb, 0x0a, 0xb6, 0xcf, 0x8c, 0x2b, 0x7a, 0x02, 0x9b, 0xc5, + 0xad, 0x29, 0x9b, 0x4e, 0x6b, 0x79, 0xb7, 0xd6, 0xbd, 0x79, 0x6e, 0x6d, 0x70, 0x3d, 0x9a, 0x3f, + 0xca, 0x19, 0xc5, 0x96, 0xe6, 0x28, 0xe6, 0xfe, 0xbd, 0x02, 0x8d, 0x45, 0x4d, 0x41, 0x77, 0x00, + 0x78, 0xa2, 0xb2, 0x4e, 0x9b, 0x6a, 0xf5, 0x96, 0x9a, 0xce, 0xb3, 0x4b, 0xb8, 0x9a, 0xca, 0x75, + 0xc3, 0x1f, 0xc2, 0x0a, 0x15, 0x82, 0x0b, 0xe3, 0xb3, 0x70, 0x23, 0x43, 0xa4, 0xdc, 0xe9, 0x63, + 0x0d, 0x7a, 0x76, 0x09, 0xa7, 0x68, 0xf4, 0x39, 0xd4, 0xac, 0x6f, 0xd3, 0x6a, 0x30, 0xc6, 0xd7, + 0x4a, 0xc6, 0x47, 0xe9, 0x7e, 0x7d, 0x4e, 0x62, 0x1b, 0xd7, 0xde, 0xc7, 0x34, 0xf3, 0x11, 0xac, + 0xc4, 0x27, 0x44, 0xa6, 0x3c, 0xab, 0x77, 0xdd, 0xf3, 0x18, 0xdc, 0x7e, 0xa1, 0x91, 0x38, 0x35, + 0x40, 0x1f, 0x00, 0x48, 0x45, 0x84, 0xa2, 0x81, 0x47, 0x94, 0x65, 0xd9, 0xf5, 0x76, 0xba, 0x9b, + 0xdb, 0xd9, 0x6e, 0x6e, 0xbf, 0xcc, 0x96, 0x37, 0xae, 0x5a, 0xf4, 0x9e, 0x42, 0x0f, 0xa1, 0x92, + 0xed, 0x6c, 0x3b, 0x75, 0xd7, 0xce, 0x18, 0x1e, 0x58, 0x00, 0xce, 0xa1, 0x3a, 0xa2, 0x2f, 0x28, + 0xb1, 0x11, 0x57, 0x2f, 0x8e, 0x68, 0xd1, 0x7b, 0x4a, 0x9b, 0x26, 0x71, 0x90, 0x99, 0xae, 0x5d, + 0x6c, 0x6a, 0xd1, 0x7b, 0x0a, 0xfd, 0x00, 0xff, 0xcf, 0xd7, 0xbb, 0xe1, 0x4f, 0x3e, 0x59, 0x95, + 0xc5, 0xa3, 0x99, 0x2d, 0x78, 0x5d, 0xbb, 0xe7, 0x16, 0xfb, 0xcc, 0xc1, 0x8d, 0xd3, 0x05, 0x72, + 0xf4, 0x02, 0x90, 0xd9, 0x8c, 0x45, 0xcf, 0x55, 0xe3, 0xb9, 0x55, 0xf6, 0xac, 0x77, 0x63, 0xc9, + 0xeb, 0x96, 0x2a, 0xc9, 0xf4, 0x58, 0x04, 0xd4, 0x1f, 0x1b, 0xb6, 0xd5, 0xd2, 0x65, 0xa7, 0xcf, + 0x9a, 0x65, 0x1d, 0x68, 0xd8, 0x69, 0xf2, 0x7e, 0xe2, 0x03, 0xcf, 0x8c, 0x9f, 0x86, 0xad, 0x1b, + 0xd8, 0xb6, 0xd5, 0x7d, 0xc1, 0x07, 0xc7, 0x31, 0xf5, 0xfb, 0x82, 0xf5, 0x36, 0x61, 0xc3, 0xf2, + 0x4b, 0x50, 0x99, 0x84, 0xaa, 0xb7, 0x0d, 0x9b, 0x8a, 0x88, 0x11, 0x55, 0xf9, 0x5d, 0xdd, 0x00, + 0x1a, 0x8b, 0x32, 0x46, 0x47, 0x50, 0xa3, 0xb3, 0xdd, 0xf7, 0x06, 0x8f, 0xe1, 0xbc, 0xb9, 0xfb, + 0xbb, 0x03, 0x5b, 0xe5, 0xf4, 0xd1, 0x01, 0xac, 0xfb, 0xc4, 0x3f, 0xa1, 0x9e, 0x54, 0x44, 0x25, + 0xd2, 0xc4, 0xa8, 0x77, 0xdf, 0x2a, 0xc5, 0xd8, 0x4f, 0x3f, 0x5d, 0xf6, 0x35, 0xf2, 0xd8, 0x00, + 0x71, 0xcd, 0x9f, 0x1d, 0xd0, 0x67, 0x50, 0xb3, 0x5f, 0x37, 0xde, 0x98, 0x4e, 0xed, 0x04, 0xde, + 0x5a, 0xec, 0x24, 0x0b, 0x8d, 0xc1, 0x9a, 0x7c, 0x49, 0xa7, 0xe8, 0x1e, 0xd4, 0xfd, 0x13, 0xea, + 0x8f, 0x63, 0xce, 0xa2, 0x74, 0xca, 0xd3, 0x47, 0x66, 0x63, 0x26, 0xed, 0x0b, 0xe6, 0xfe, 0xe1, + 0xc0, 0x8e, 0xdd, 0x5d, 0x0b, 0x0b, 0xf6, 0xce, 0xdc, 0x4b, 0x52, 0x9e, 0xe1, 0xd2, 0xe3, 0x71, + 0x0c, 0xdb, 0xf6, 0x9b, 0x2b, 0xf0, 0x32, 0x5a, 0xd9, 0x8b, 0x97, 0xdf, 0xa0, 0x7d, 0x8b, 0xcb, + 0x42, 0x66, 0x6f, 0xc5, 0x96, 0x5f, 0x52, 0xbc, 0x96, 0x1d, 0xcb, 0xaf, 0x61, 0x87, 0xdb, 0x87, + 0x9d, 0xf2, 0x87, 0x96, 0x79, 0x44, 0xfe, 0xe5, 0xc7, 0xd6, 0x2f, 0xcb, 0x70, 0x63, 0xb1, 0x5f, + 0x19, 0xf3, 0x48, 0x52, 0xf4, 0x00, 0x56, 0xcd, 0x4b, 0x29, 0xad, 0xf3, 0xab, 0xe5, 0x39, 0xe9, + 0x8b, 0xb0, 0x17, 0xf2, 0x81, 0x5e, 0x77, 0xd8, 0x42, 0xd1, 0x43, 0x58, 0x4b, 0xa9, 0x2c, 0x6d, + 0xa1, 0xce, 0xb5, 0xca, 0xb0, 0xe8, 0x43, 0xa8, 0x0d, 0x93, 0x30, 0xf4, 0x6c, 0xc0, 0xe5, 0x0b, + 0x36, 0x2c, 0x06, 0x8d, 0x3e, 0x4c, 0x43, 0x7e, 0x0c, 0xeb, 0xc6, 0x36, 0x8b, 0x7b, 0xf9, 0x22, + 0x63, 0x13, 0xea, 0x6b, 0x1b, 0xf9, 0x5b, 0xd8, 0xca, 0xda, 0x91, 0xb7, 0x78, 0xcb, 0x78, 0x78, + 0xaf, 0x7c, 0xf3, 0x73, 0x58, 0x85, 0x37, 0x83, 0xa2, 0x12, 0x3d, 0x02, 0x30, 0xe6, 0x5e, 0x22, + 0x42, 0xd9, 0xdc, 0x2e, 0xdf, 0x29, 0xf5, 0xf8, 0x44, 0x1f, 0xfb, 0xf8, 0x48, 0xe2, 0xaa, 0xd1, + 0xf4, 0x45, 0x28, 0x7b, 0x9f, 0x7c, 0xff, 0xd1, 0x88, 0xa9, 0x93, 0x64, 0xd0, 0xf6, 0xf9, 0xa4, + 0x63, 0xe4, 0x5c, 0x8c, 0xd2, 0x1f, 0x9d, 0xfc, 0x9b, 0x7e, 0x44, 0xa3, 0x4e, 0x3c, 0xb8, 0x3f, + 0xe2, 0x9d, 0xe2, 0xbf, 0x8f, 0xc1, 0xaa, 0xd9, 0xb3, 0x0f, 0xfe, 0x09, 0x00, 0x00, 0xff, 0xff, + 0xe3, 0xde, 0x8f, 0xda, 0xcb, 0x0c, 0x00, 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go b/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go index 86602d7ee1..191b551497 100644 --- a/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go +++ b/flyteidl/gen/pb-go/flyteidl/admin/node_execution.pb.validate.go @@ -421,6 +421,8 @@ func (m *NodeExecutionMetaData) Validate() error { // no validation rules for IsDynamic + // no validation rules for IsArray + return nil } diff --git a/flyteidl/gen/pb-go/flyteidl/event/event.pb.go b/flyteidl/gen/pb-go/flyteidl/event/event.pb.go index fdf5c08c6e..204d000a99 100644 --- a/flyteidl/gen/pb-go/flyteidl/event/event.pb.go +++ b/flyteidl/gen/pb-go/flyteidl/event/event.pb.go @@ -230,10 +230,12 @@ type NodeExecutionEvent struct { // when first processing a node the `occurred_at` timestamp should be the instant propeller makes progress, so when // literal inputs are initially copied. The event however will not be sent until after the copy completes. // Extracting both of these timestamps facilitates a more accurate portrayal of the evaluation time-series. - ReportedAt *timestamp.Timestamp `protobuf:"bytes,21,opt,name=reported_at,json=reportedAt,proto3" json:"reported_at,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + ReportedAt *timestamp.Timestamp `protobuf:"bytes,21,opt,name=reported_at,json=reportedAt,proto3" json:"reported_at,omitempty"` + // Indicates if this node is an ArrayNode. + IsArray bool `protobuf:"varint,22,opt,name=is_array,json=isArray,proto3" json:"is_array,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *NodeExecutionEvent) Reset() { *m = NodeExecutionEvent{} } @@ -483,6 +485,13 @@ func (m *NodeExecutionEvent) GetReportedAt() *timestamp.Timestamp { return nil } +func (m *NodeExecutionEvent) GetIsArray() bool { + if m != nil { + return m.IsArray + } + return false +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*NodeExecutionEvent) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -1328,102 +1337,103 @@ func init() { func init() { proto.RegisterFile("flyteidl/event/event.proto", fileDescriptor_4b035d24120b1b12) } var fileDescriptor_4b035d24120b1b12 = []byte{ - // 1538 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xeb, 0x6e, 0xdb, 0xc6, - 0x12, 0xb6, 0xe4, 0x8b, 0xa4, 0xa1, 0x25, 0x4b, 0x1b, 0xd9, 0x61, 0xec, 0x38, 0xd6, 0xd1, 0x39, - 0x39, 0x70, 0x12, 0x54, 0x02, 0x14, 0x24, 0x08, 0x9a, 0x14, 0x85, 0x6f, 0xad, 0xd5, 0x3a, 0x86, - 0x41, 0xdb, 0x09, 0x90, 0xb6, 0x20, 0xd6, 0xe4, 0x5a, 0x66, 0x4d, 0x71, 0x89, 0xe5, 0xd2, 0x89, - 0x9f, 0xa2, 0x3f, 0xfb, 0xab, 0x7d, 0x80, 0x3e, 0x4c, 0xdf, 0xa5, 0x6f, 0x50, 0xec, 0x2e, 0x49, - 0x89, 0x14, 0xeb, 0x4b, 0x92, 0xfe, 0x31, 0xc4, 0x99, 0xd9, 0x8f, 0xb3, 0xf3, 0xcd, 0x8d, 0x86, - 0xe5, 0x53, 0xf7, 0x92, 0x13, 0xc7, 0x76, 0xbb, 0xe4, 0x82, 0x78, 0x5c, 0xfd, 0xed, 0xf8, 0x8c, - 0x72, 0x8a, 0x6a, 0xb1, 0xae, 0x23, 0xa5, 0xcb, 0xf7, 0x13, 0x5b, 0x8b, 0x32, 0xd2, 0x75, 0x1d, - 0x4e, 0x18, 0x76, 0x03, 0x65, 0x9d, 0xd5, 0x5a, 0x74, 0xe8, 0x3b, 0x2e, 0x61, 0x91, 0x76, 0x35, - 0xad, 0x25, 0x1f, 0x88, 0x15, 0x72, 0x87, 0x7a, 0x91, 0xfa, 0x41, 0x5a, 0xed, 0xd8, 0xc4, 0xe3, - 0xce, 0xa9, 0x93, 0x1c, 0x5f, 0xc9, 0x80, 0x63, 0x8e, 0x5d, 0x3a, 0x88, 0x94, 0x6b, 0x03, 0x4a, - 0x07, 0x2e, 0xe9, 0xca, 0xa7, 0x93, 0xf0, 0xb4, 0xcb, 0x9d, 0x21, 0x09, 0x38, 0x1e, 0xfa, 0xb1, - 0x6b, 0x59, 0x83, 0x80, 0xb3, 0xd0, 0x8a, 0xae, 0xd9, 0xfe, 0x63, 0x1a, 0x96, 0xde, 0x52, 0x76, - 0x7e, 0xea, 0xd2, 0xf7, 0x3b, 0xb1, 0x5f, 0x3b, 0xe2, 0xc6, 0xe8, 0x35, 0xcc, 0x27, 0x9e, 0x9a, - 0x8e, 0xad, 0x17, 0x5a, 0x85, 0x75, 0xad, 0xf7, 0xb8, 0x93, 0x04, 0x46, 0x78, 0xd3, 0x99, 0x38, - 0xdc, 0x4f, 0xdc, 0x37, 0x34, 0x32, 0x12, 0xa2, 0x35, 0xd0, 0x7c, 0x46, 0xed, 0xd0, 0x22, 0x4c, - 0xa0, 0x15, 0x5b, 0x85, 0xf5, 0x8a, 0x01, 0xb1, 0xa8, 0x6f, 0xa3, 0x57, 0x30, 0xeb, 0x9f, 0xe1, - 0x80, 0xe8, 0xd3, 0xad, 0xc2, 0x7a, 0xad, 0xf7, 0xff, 0xeb, 0x5e, 0xd4, 0x39, 0x10, 0xd6, 0x86, - 0x3a, 0x84, 0x5e, 0x82, 0x46, 0x2d, 0x2b, 0x64, 0x8c, 0xd8, 0x26, 0xe6, 0xfa, 0x8c, 0x74, 0x76, - 0xb9, 0xa3, 0x2e, 0xdf, 0x89, 0x2f, 0xdf, 0x39, 0x8a, 0xa3, 0x63, 0x40, 0x6c, 0xbe, 0xc1, 0xd1, - 0x1a, 0x00, 0x0d, 0xb9, 0x1f, 0x72, 0x33, 0x64, 0x8e, 0x3e, 0x2b, 0x5c, 0xdb, 0x9d, 0x32, 0x2a, - 0x4a, 0x76, 0xcc, 0x1c, 0xf4, 0x0c, 0x66, 0x09, 0x63, 0x94, 0xe9, 0x73, 0x12, 0x77, 0x35, 0xe3, - 0xdb, 0x28, 0x72, 0xc2, 0x68, 0x77, 0xca, 0x50, 0xd6, 0xe8, 0x15, 0x68, 0x11, 0xae, 0x8d, 0x39, - 0xd6, 0x4b, 0xf2, 0xf0, 0xbd, 0xcc, 0xe1, 0x3d, 0x95, 0x4a, 0xaf, 0xb1, 0xbf, 0x3b, 0x65, 0x44, - 0x7e, 0x6c, 0x63, 0x8e, 0x37, 0x17, 0xa0, 0x1a, 0x9d, 0x66, 0x24, 0x08, 0x5d, 0xde, 0xfe, 0xa5, - 0x02, 0x68, 0x9f, 0xda, 0x24, 0x43, 0xd4, 0x73, 0x28, 0x26, 0xf4, 0x64, 0xa3, 0x96, 0x32, 0x1f, - 0xa3, 0xa6, 0xe8, 0xdc, 0x80, 0x91, 0x17, 0x69, 0x46, 0xda, 0x57, 0x61, 0x7f, 0x46, 0x36, 0x56, - 0xa1, 0xe2, 0x78, 0x59, 0x32, 0xca, 0x52, 0x24, 0xb8, 0xf8, 0x12, 0x40, 0xa9, 0x65, 0x4c, 0x9b, - 0xd7, 0xc7, 0x54, 0xa1, 0x89, 0x90, 0x66, 0x88, 0x9e, 0x93, 0xd8, 0x85, 0x5c, 0xa2, 0x4b, 0x37, - 0x21, 0xba, 0xf0, 0x0f, 0x44, 0x2f, 0x5c, 0xe7, 0x54, 0x61, 0x9c, 0x68, 0xf4, 0x23, 0x2c, 0xbd, - 0x8f, 0xb2, 0xdb, 0xf4, 0xa8, 0x4d, 0xcc, 0x21, 0xe1, 0x58, 0x02, 0x95, 0x25, 0xd0, 0xff, 0x3a, - 0xe9, 0x66, 0x94, 0xd4, 0x82, 0x60, 0xe0, 0x75, 0x64, 0xbb, 0x5b, 0x34, 0x9a, 0xef, 0x73, 0xe4, - 0xe8, 0x00, 0x10, 0xc7, 0xc1, 0x79, 0x06, 0xb9, 0x26, 0x91, 0x5b, 0x59, 0xe4, 0x23, 0x1c, 0x9c, - 0x67, 0x50, 0xeb, 0x3c, 0x23, 0x43, 0x3f, 0x41, 0xd3, 0xc7, 0x8c, 0x78, 0xdc, 0x94, 0xc0, 0x09, - 0x66, 0x45, 0x62, 0x3e, 0xc9, 0x62, 0x1e, 0x48, 0x5b, 0x81, 0x9c, 0x84, 0x2f, 0x86, 0x32, 0x90, - 0x9f, 0x28, 0x73, 0xe0, 0xd3, 0x2e, 0xc3, 0x55, 0xf0, 0xa9, 0x64, 0xcc, 0xc2, 0xa7, 0xbc, 0x5f, - 0x03, 0x8d, 0x11, 0xce, 0x2e, 0xcd, 0x01, 0xa3, 0xa1, 0xaf, 0x6b, 0x2a, 0xed, 0xa5, 0xe8, 0x5b, - 0x21, 0x41, 0x2d, 0x98, 0x0f, 0x7c, 0x62, 0xa9, 0xb7, 0x3b, 0xb6, 0x3e, 0xaf, 0x2c, 0x84, 0x4c, - 0x00, 0xf5, 0x6d, 0xb4, 0x02, 0x15, 0xa9, 0xf4, 0xf0, 0x90, 0xe8, 0x55, 0xa9, 0x2e, 0x0b, 0xc1, - 0x3e, 0x1e, 0x12, 0xf4, 0x5f, 0xa8, 0x4a, 0xc7, 0xcc, 0x0b, 0xc2, 0x02, 0x87, 0x7a, 0x7a, 0xbd, - 0x55, 0x58, 0x9f, 0x35, 0xe6, 0xa5, 0xf0, 0x8d, 0x92, 0x09, 0x04, 0x27, 0x30, 0x95, 0x77, 0x7a, - 0xa3, 0x55, 0x58, 0x2f, 0x1b, 0x65, 0x27, 0x50, 0x57, 0x41, 0xab, 0x00, 0x4e, 0x60, 0xda, 0x97, - 0x1e, 0x1e, 0x3a, 0x96, 0x8e, 0xa4, 0xb6, 0xe2, 0x04, 0xdb, 0x4a, 0x80, 0xee, 0x41, 0xd9, 0x26, - 0xd6, 0xb9, 0x4c, 0xe1, 0x3b, 0xf2, 0xe5, 0x25, 0xf1, 0x2c, 0xd2, 0xf7, 0xa5, 0xb8, 0x9b, 0x4f, - 0x19, 0x57, 0x75, 0xb7, 0x78, 0x7d, 0xdd, 0xc5, 0xe6, 0x1b, 0x7c, 0xb3, 0x0a, 0x9a, 0x2a, 0xac, - 0x0b, 0xec, 0x86, 0x64, 0xa2, 0xfd, 0x6c, 0x36, 0x60, 0x81, 0x63, 0x36, 0x20, 0x3c, 0xa1, 0xa4, - 0x4d, 0xa0, 0x99, 0x97, 0x8b, 0x9f, 0x79, 0x76, 0xb4, 0xff, 0x2a, 0x42, 0x3d, 0x9b, 0x99, 0x68, - 0x1b, 0xe6, 0x2d, 0x6c, 0x9d, 0x11, 0x33, 0xe0, 0x98, 0x87, 0x81, 0x7c, 0x47, 0xad, 0xf7, 0x9f, - 0xcc, 0x3b, 0xb6, 0xd4, 0xb4, 0xdc, 0x12, 0x96, 0x87, 0xd2, 0xd0, 0xd0, 0xac, 0xd1, 0x03, 0xfa, - 0x1a, 0xb4, 0x68, 0xa0, 0x9a, 0xe7, 0xe4, 0x52, 0x36, 0x41, 0xad, 0xf7, 0x20, 0x1f, 0x24, 0x49, - 0x2b, 0x88, 0x8e, 0x7c, 0x4f, 0x2e, 0xd1, 0x5b, 0x40, 0x8c, 0x04, 0x84, 0x5d, 0x60, 0x79, 0xd9, - 0xc8, 0x19, 0xd5, 0x31, 0xd7, 0xf3, 0x71, 0x8c, 0x91, 0x7d, 0x27, 0xf2, 0xa9, 0x31, 0x86, 0x11, - 0x79, 0xf6, 0x10, 0x6a, 0xd6, 0x19, 0xb1, 0xce, 0x7d, 0xea, 0x78, 0xaa, 0x5f, 0xcd, 0x48, 0xb2, - 0xab, 0x23, 0xa9, 0xa0, 0xfc, 0x0d, 0xd4, 0xa3, 0x4c, 0x31, 0xe3, 0xf2, 0x97, 0x19, 0x97, 0x53, - 0x29, 0x51, 0x02, 0xe5, 0x31, 0x66, 0x2c, 0xd8, 0x69, 0x65, 0xfb, 0xcf, 0x02, 0xac, 0x5c, 0x71, - 0x00, 0x3d, 0x1a, 0x9b, 0x3a, 0xd9, 0x4e, 0x97, 0x19, 0x34, 0x87, 0xd0, 0x88, 0x36, 0x22, 0x7b, - 0xe4, 0x63, 0x31, 0x77, 0x5e, 0x6d, 0x45, 0x76, 0xf1, 0x2b, 0xb7, 0x5c, 0x1a, 0x84, 0x8c, 0x18, - 0x75, 0x2b, 0xa3, 0x40, 0x5d, 0x68, 0xc6, 0xf7, 0xfe, 0x99, 0x9e, 0x98, 0xb2, 0x62, 0x45, 0x90, - 0xa6, 0x65, 0x90, 0x1a, 0x91, 0xee, 0x3b, 0x7a, 0x72, 0xe8, 0x13, 0xeb, 0x98, 0x39, 0xed, 0x63, - 0x58, 0xb9, 0xa2, 0x13, 0x5d, 0x39, 0x45, 0x53, 0x27, 0xd2, 0x97, 0x6b, 0x3f, 0x8f, 0x61, 0x73, - 0x3b, 0x10, 0xba, 0x0b, 0xa5, 0xb8, 0x8f, 0x14, 0xa4, 0x67, 0x73, 0x9e, 0xec, 0x21, 0xed, 0x13, - 0xd0, 0xe4, 0xf8, 0x36, 0x08, 0x0e, 0xa8, 0x87, 0x96, 0x60, 0x8e, 0xc9, 0x5f, 0xb1, 0x99, 0x7a, - 0xca, 0x4e, 0xd2, 0xe2, 0x6d, 0x26, 0x69, 0xfb, 0xd7, 0x32, 0xa0, 0x94, 0xef, 0x6a, 0x61, 0xe8, - 0x41, 0x49, 0x36, 0xee, 0x9b, 0xf0, 0x37, 0x27, 0x2c, 0xfb, 0x36, 0x32, 0x41, 0x1f, 0x6f, 0xca, - 0xa9, 0xea, 0x2e, 0xde, 0x6a, 0xf5, 0x58, 0xf4, 0x27, 0xc3, 0xd5, 0xb7, 0x45, 0xdb, 0x54, 0x6d, - 0x19, 0x73, 0x4e, 0x86, 0x3e, 0x97, 0x44, 0x56, 0x8d, 0x79, 0x29, 0xdc, 0x50, 0xb2, 0xd1, 0x46, - 0x32, 0x93, 0xbb, 0x91, 0xa4, 0xee, 0x9a, 0xde, 0x48, 0x32, 0xcb, 0xce, 0xec, 0xc4, 0xb2, 0xf3, - 0x18, 0x66, 0x5c, 0x3a, 0x08, 0xf4, 0xb9, 0xd6, 0xf4, 0xba, 0xd6, 0x5b, 0xca, 0x41, 0xde, 0xa3, - 0x03, 0x43, 0xda, 0x64, 0x49, 0x29, 0x7d, 0xfc, 0x7a, 0x53, 0xbe, 0x66, 0xbd, 0xb9, 0xf3, 0x09, - 0xeb, 0x4d, 0xe5, 0x8a, 0xf5, 0x06, 0x3e, 0x65, 0xbd, 0x69, 0xdc, 0x6e, 0xbd, 0x79, 0x01, 0x9a, - 0x15, 0x06, 0x9c, 0x0e, 0x4d, 0xc7, 0x3b, 0xa5, 0x72, 0xe0, 0x6a, 0xbd, 0xbb, 0x13, 0xd1, 0x3a, - 0x94, 0xdf, 0x25, 0x06, 0x28, 0xdb, 0xbe, 0x77, 0x4a, 0x45, 0x4e, 0x48, 0xf6, 0x92, 0x51, 0x3a, - 0xaf, 0x72, 0x42, 0x0a, 0xe3, 0x51, 0xba, 0x9c, 0x54, 0x8e, 0x9c, 0xc4, 0x9b, 0x45, 0xbd, 0x90, - 0x54, 0xcf, 0x33, 0x28, 0xa9, 0x5f, 0x81, 0xbe, 0x28, 0x79, 0x5d, 0xc9, 0xf6, 0xc4, 0xb1, 0x1a, - 0x34, 0x62, 0x5b, 0x31, 0x9d, 0x65, 0x81, 0xf0, 0x4b, 0x9f, 0xc8, 0x4d, 0xa9, 0x62, 0x94, 0x85, - 0xe0, 0xe8, 0xd2, 0x27, 0x68, 0x03, 0xca, 0xc9, 0x4a, 0xa2, 0x1a, 0xed, 0xc3, 0xbc, 0x2d, 0x6a, - 0x72, 0x19, 0x49, 0x8e, 0x4d, 0xae, 0x08, 0x28, 0x67, 0x45, 0xc8, 0xcc, 0xf2, 0xe6, 0xe7, 0x9c, - 0xe5, 0xed, 0xdf, 0x8b, 0xd0, 0xdc, 0xf9, 0xc0, 0x09, 0xf3, 0xb0, 0x6b, 0x90, 0x80, 0x86, 0xcc, - 0x22, 0x32, 0xe4, 0x6b, 0xa0, 0x91, 0x48, 0x3e, 0xea, 0x59, 0x10, 0x8b, 0xfa, 0x36, 0x6a, 0xc2, - 0xac, 0xe3, 0xd9, 0xe4, 0x83, 0xac, 0xfa, 0xaa, 0xa1, 0x1e, 0xfe, 0xed, 0xea, 0xcd, 0xce, 0xfa, - 0xd9, 0x8f, 0x9a, 0xf5, 0xb7, 0x28, 0xf1, 0xf6, 0x0f, 0x50, 0x8f, 0xe3, 0x72, 0x40, 0xa9, 0x2b, - 0x63, 0xf3, 0x08, 0xea, 0xd8, 0x75, 0xa9, 0xa5, 0x26, 0x3d, 0xa7, 0xe7, 0x24, 0xee, 0xd6, 0x0b, - 0x23, 0xf9, 0x91, 0x10, 0xa3, 0xfb, 0x50, 0x11, 0xcb, 0x61, 0xe0, 0x63, 0x8b, 0x44, 0x5f, 0x56, - 0x23, 0x41, 0xfb, 0xb7, 0x69, 0x58, 0xcc, 0x9f, 0x42, 0x0f, 0xa1, 0x36, 0x20, 0x1e, 0x61, 0x58, - 0xb0, 0x2e, 0xd7, 0x4b, 0xf5, 0x82, 0x6a, 0x22, 0x95, 0x3b, 0xe6, 0x21, 0xa0, 0x84, 0x25, 0x16, - 0xb9, 0x19, 0xe8, 0x45, 0x79, 0xaf, 0x89, 0xaf, 0x85, 0x3c, 0x9e, 0x8d, 0x06, 0xc9, 0x48, 0x03, - 0xb4, 0x2f, 0x37, 0x19, 0xf9, 0x60, 0xfa, 0x94, 0xba, 0xaa, 0x5c, 0xa7, 0x25, 0xe8, 0xc4, 0x87, - 0x42, 0x36, 0x38, 0x46, 0x9d, 0x65, 0xc3, 0xf5, 0x04, 0x1a, 0xbe, 0x1b, 0x0e, 0x1c, 0x31, 0x23, - 0xe2, 0xee, 0x1f, 0xed, 0x30, 0x75, 0xa5, 0x18, 0x4d, 0x05, 0xf4, 0x0e, 0x6a, 0x8e, 0x17, 0x70, - 0xec, 0x59, 0xc4, 0xb4, 0x5c, 0x1c, 0x04, 0xb2, 0xb6, 0x6a, 0xbd, 0xa7, 0x37, 0xaa, 0xad, 0x4e, - 0x3f, 0x3a, 0xbb, 0x25, 0x8e, 0x1a, 0x55, 0x67, 0xfc, 0xb1, 0xdd, 0x85, 0x6a, 0x4a, 0x8f, 0x34, - 0x28, 0x6d, 0xef, 0x7c, 0xb3, 0x71, 0xbc, 0x77, 0x54, 0x9f, 0x42, 0x0d, 0xa8, 0xf6, 0xf7, 0x8f, - 0x76, 0x0c, 0xe3, 0xf8, 0xe0, 0xa8, 0xbf, 0xb9, 0xb7, 0x53, 0x2f, 0x6c, 0x7e, 0xf5, 0xee, 0xe5, - 0xc0, 0xe1, 0x67, 0xe1, 0x49, 0xc7, 0xa2, 0xc3, 0xae, 0x74, 0x80, 0xb2, 0x81, 0xfa, 0xd1, 0x4d, - 0xfe, 0x1b, 0x33, 0x20, 0x5e, 0xd7, 0x3f, 0xf9, 0x62, 0x40, 0xbb, 0xe9, 0xff, 0x23, 0x9d, 0xcc, - 0xc9, 0xe2, 0x7c, 0xfa, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6c, 0x7c, 0xc8, 0xd1, 0x60, 0x12, - 0x00, 0x00, + // 1553 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0xfb, 0x6e, 0xdb, 0xb6, + 0x1a, 0x8f, 0x9d, 0x8b, 0xed, 0x4f, 0xb1, 0x63, 0xb3, 0x4e, 0xaa, 0x26, 0x4d, 0xe3, 0xe3, 0x73, + 0x7a, 0x90, 0xb6, 0x98, 0x0d, 0xb8, 0x68, 0x51, 0xac, 0x1d, 0x86, 0xdc, 0xb6, 0x78, 0x4b, 0x83, + 0x40, 0x49, 0x5a, 0xa0, 0xdb, 0x20, 0x30, 0x12, 0xe3, 0x68, 0x91, 0x45, 0x81, 0xa2, 0xd2, 0xfa, + 0x49, 0xf6, 0xd7, 0xf6, 0x00, 0x7d, 0x98, 0xbd, 0xcb, 0xde, 0x60, 0x20, 0x29, 0xc9, 0x91, 0xac, + 0xe5, 0xd2, 0x76, 0xff, 0x04, 0xe6, 0x77, 0xf9, 0xf1, 0xe3, 0x77, 0x57, 0x60, 0xf9, 0xd4, 0x1d, + 0x71, 0xe2, 0xd8, 0x6e, 0x97, 0x5c, 0x10, 0x8f, 0xab, 0xbf, 0x1d, 0x9f, 0x51, 0x4e, 0x51, 0x2d, + 0xe6, 0x75, 0x24, 0x75, 0xf9, 0x7e, 0x22, 0x6b, 0x51, 0x46, 0xba, 0xae, 0xc3, 0x09, 0xc3, 0x6e, + 0xa0, 0xa4, 0xb3, 0x5c, 0x8b, 0x0e, 0x7d, 0xc7, 0x25, 0x2c, 0xe2, 0xae, 0xa6, 0xb9, 0xe4, 0x03, + 0xb1, 0x42, 0xee, 0x50, 0x2f, 0x62, 0x3f, 0x48, 0xb3, 0x1d, 0x9b, 0x78, 0xdc, 0x39, 0x75, 0x12, + 0xf5, 0x95, 0x0c, 0x38, 0xe6, 0xd8, 0xa5, 0x83, 0x88, 0xb9, 0x36, 0xa0, 0x74, 0xe0, 0x92, 0xae, + 0x3c, 0x9d, 0x84, 0xa7, 0x5d, 0xee, 0x0c, 0x49, 0xc0, 0xf1, 0xd0, 0x8f, 0x4d, 0xcb, 0x0a, 0x04, + 0x9c, 0x85, 0x56, 0xf4, 0xcc, 0xf6, 0xc7, 0x69, 0x58, 0x7a, 0x4b, 0xd9, 0xf9, 0xa9, 0x4b, 0xdf, + 0xef, 0xc4, 0x76, 0xed, 0x88, 0x17, 0xa3, 0xd7, 0x30, 0x9f, 0x58, 0x6a, 0x3a, 0xb6, 0x5e, 0x68, + 0x15, 0xd6, 0xb5, 0xde, 0xe3, 0x4e, 0xe2, 0x18, 0x61, 0x4d, 0x67, 0x42, 0xb9, 0x9f, 0x98, 0x6f, + 0x68, 0x64, 0x4c, 0x44, 0x6b, 0xa0, 0xf9, 0x8c, 0xda, 0xa1, 0x45, 0x98, 0x40, 0x2b, 0xb6, 0x0a, + 0xeb, 0x15, 0x03, 0x62, 0x52, 0xdf, 0x46, 0xaf, 0x60, 0xd6, 0x3f, 0xc3, 0x01, 0xd1, 0xa7, 0x5b, + 0x85, 0xf5, 0x5a, 0xef, 0xff, 0xd7, 0x5d, 0xd4, 0x39, 0x10, 0xd2, 0x86, 0x52, 0x42, 0x2f, 0x41, + 0xa3, 0x96, 0x15, 0x32, 0x46, 0x6c, 0x13, 0x73, 0x7d, 0x46, 0x1a, 0xbb, 0xdc, 0x51, 0x8f, 0xef, + 0xc4, 0x8f, 0xef, 0x1c, 0xc5, 0xde, 0x31, 0x20, 0x16, 0xdf, 0xe0, 0x68, 0x0d, 0x80, 0x86, 0xdc, + 0x0f, 0xb9, 0x19, 0x32, 0x47, 0x9f, 0x15, 0xa6, 0xed, 0x4e, 0x19, 0x15, 0x45, 0x3b, 0x66, 0x0e, + 0x7a, 0x06, 0xb3, 0x84, 0x31, 0xca, 0xf4, 0x39, 0x89, 0xbb, 0x9a, 0xb1, 0x6d, 0xec, 0x39, 0x21, + 0xb4, 0x3b, 0x65, 0x28, 0x69, 0xf4, 0x0a, 0xb4, 0x08, 0xd7, 0xc6, 0x1c, 0xeb, 0x25, 0xa9, 0x7c, + 0x2f, 0xa3, 0xbc, 0xa7, 0x52, 0xe9, 0x35, 0xf6, 0x77, 0xa7, 0x8c, 0xc8, 0x8e, 0x6d, 0xcc, 0xf1, + 0xe6, 0x02, 0x54, 0x23, 0x6d, 0x46, 0x82, 0xd0, 0xe5, 0xed, 0x8f, 0x15, 0x40, 0xfb, 0xd4, 0x26, + 0x99, 0x40, 0x3d, 0x87, 0x62, 0x12, 0x9e, 0xac, 0xd7, 0x52, 0xe2, 0x97, 0x42, 0x53, 0x74, 0x6e, + 0x10, 0x91, 0x17, 0xe9, 0x88, 0xb4, 0xaf, 0xc2, 0xfe, 0x82, 0xd1, 0x58, 0x85, 0x8a, 0xe3, 0x65, + 0x83, 0x51, 0x96, 0x24, 0x11, 0x8b, 0xaf, 0x01, 0x14, 0x5b, 0xfa, 0xb4, 0x79, 0xbd, 0x4f, 0x15, + 0x9a, 0x70, 0x69, 0x26, 0xd0, 0x73, 0x12, 0xbb, 0x90, 0x1b, 0xe8, 0xd2, 0x4d, 0x02, 0x5d, 0xf8, + 0x87, 0x40, 0x2f, 0x5c, 0x67, 0x54, 0xe1, 0x72, 0xa0, 0xd1, 0xcf, 0xb0, 0xf4, 0x3e, 0xca, 0x6e, + 0xd3, 0xa3, 0x36, 0x31, 0x87, 0x84, 0x63, 0x09, 0x54, 0x96, 0x40, 0xff, 0xeb, 0xa4, 0x9b, 0x51, + 0x52, 0x0b, 0x22, 0x02, 0xaf, 0x23, 0xd9, 0xdd, 0xa2, 0xd1, 0x7c, 0x9f, 0x43, 0x47, 0x07, 0x80, + 0x38, 0x0e, 0xce, 0x33, 0xc8, 0x35, 0x89, 0xdc, 0xca, 0x22, 0x1f, 0xe1, 0xe0, 0x3c, 0x83, 0x5a, + 0xe7, 0x19, 0x1a, 0xfa, 0x05, 0x9a, 0x3e, 0x66, 0xc4, 0xe3, 0xa6, 0x04, 0x4e, 0x30, 0x2b, 0x12, + 0xf3, 0x49, 0x16, 0xf3, 0x40, 0xca, 0x0a, 0xe4, 0xc4, 0x7d, 0x31, 0x94, 0x81, 0xfc, 0x84, 0x99, + 0x03, 0x9f, 0x36, 0x19, 0xae, 0x82, 0x4f, 0x25, 0x63, 0x16, 0x3e, 0x65, 0xfd, 0x1a, 0x68, 0x8c, + 0x70, 0x36, 0x32, 0x07, 0x8c, 0x86, 0xbe, 0xae, 0xa9, 0xb4, 0x97, 0xa4, 0xef, 0x05, 0x05, 0xb5, + 0x60, 0x3e, 0xf0, 0x89, 0xa5, 0x6e, 0x77, 0x6c, 0x7d, 0x5e, 0x49, 0x08, 0x9a, 0x00, 0xea, 0xdb, + 0x68, 0x05, 0x2a, 0x92, 0xe9, 0xe1, 0x21, 0xd1, 0xab, 0x92, 0x5d, 0x16, 0x84, 0x7d, 0x3c, 0x24, + 0xe8, 0xbf, 0x50, 0x95, 0x86, 0x99, 0x17, 0x84, 0x05, 0x0e, 0xf5, 0xf4, 0x7a, 0xab, 0xb0, 0x3e, + 0x6b, 0xcc, 0x4b, 0xe2, 0x1b, 0x45, 0x13, 0x08, 0x4e, 0x60, 0x2a, 0xeb, 0xf4, 0x46, 0xab, 0xb0, + 0x5e, 0x36, 0xca, 0x4e, 0xa0, 0x9e, 0x82, 0x56, 0x01, 0x9c, 0xc0, 0xb4, 0x47, 0x1e, 0x1e, 0x3a, + 0x96, 0x8e, 0x24, 0xb7, 0xe2, 0x04, 0xdb, 0x8a, 0x80, 0xee, 0x41, 0xd9, 0x26, 0xd6, 0xb9, 0x4c, + 0xe1, 0x3b, 0xf2, 0xf2, 0x92, 0x38, 0x8b, 0xf4, 0x7d, 0x29, 0xde, 0xe6, 0x53, 0xc6, 0x55, 0xdd, + 0x2d, 0x5e, 0x5f, 0x77, 0xb1, 0xf8, 0x06, 0x17, 0xb8, 0x4e, 0x60, 0x62, 0xc6, 0xf0, 0x48, 0x5f, + 0x92, 0x97, 0x96, 0x9c, 0x60, 0x43, 0x1c, 0x37, 0xab, 0xa0, 0xa9, 0x9a, 0xbb, 0xc0, 0x6e, 0x48, + 0x26, 0x3a, 0xd3, 0x66, 0x03, 0x16, 0x38, 0x66, 0x03, 0xc2, 0x93, 0x68, 0xb5, 0x09, 0x34, 0xf3, + 0xd2, 0xf4, 0x0b, 0x8f, 0x95, 0xf6, 0x5f, 0x45, 0xa8, 0x67, 0x93, 0x16, 0x6d, 0xc3, 0xbc, 0x85, + 0xad, 0x33, 0x62, 0x06, 0x1c, 0xf3, 0x30, 0x90, 0x77, 0xd4, 0x7a, 0xff, 0xc9, 0xdc, 0xb1, 0xa5, + 0x06, 0xe9, 0x96, 0x90, 0x3c, 0x94, 0x82, 0x86, 0x66, 0x8d, 0x0f, 0xe8, 0x5b, 0xd0, 0xa2, 0x59, + 0x6b, 0x9e, 0x93, 0x91, 0xec, 0x8f, 0x5a, 0xef, 0x41, 0x3e, 0x48, 0x92, 0x71, 0x10, 0xa9, 0xfc, + 0x48, 0x46, 0xe8, 0x2d, 0x20, 0x46, 0x02, 0xc2, 0x2e, 0xb0, 0x7c, 0x6c, 0x64, 0x8c, 0x6a, 0xa6, + 0xeb, 0xf9, 0x38, 0xc6, 0x58, 0xbe, 0x13, 0xd9, 0xd4, 0xb8, 0x84, 0x11, 0x59, 0xf6, 0x10, 0x6a, + 0xd6, 0x19, 0xb1, 0xce, 0x7d, 0xea, 0x78, 0xaa, 0x95, 0xcd, 0xc8, 0x3c, 0xa8, 0x8e, 0xa9, 0x22, + 0x1b, 0xde, 0x40, 0x3d, 0x4a, 0x22, 0x33, 0xee, 0x0c, 0x32, 0x19, 0x73, 0x8a, 0x28, 0xca, 0xad, + 0xbc, 0x88, 0x19, 0x0b, 0x76, 0x9a, 0xd9, 0xfe, 0xb3, 0x00, 0x2b, 0x57, 0x28, 0xa0, 0x47, 0x97, + 0x06, 0x52, 0xb6, 0x09, 0x66, 0x66, 0xd0, 0x21, 0x34, 0xa2, 0x65, 0xc9, 0x1e, 0xdb, 0x58, 0xcc, + 0x1d, 0x65, 0x5b, 0x91, 0x5c, 0x7c, 0xe5, 0x96, 0x4b, 0x83, 0x90, 0x11, 0xa3, 0x6e, 0x65, 0x18, + 0xa8, 0x0b, 0xcd, 0xf8, 0xdd, 0xbf, 0xd2, 0x13, 0x53, 0x16, 0xb3, 0x70, 0xd2, 0xb4, 0x74, 0x52, + 0x23, 0xe2, 0xfd, 0x40, 0x4f, 0x0e, 0x7d, 0x62, 0x1d, 0x33, 0xa7, 0x7d, 0x0c, 0x2b, 0x57, 0x34, + 0xa9, 0x2b, 0x07, 0x6c, 0x4a, 0x23, 0xfd, 0xb8, 0xf6, 0xf3, 0x18, 0x36, 0xb7, 0x39, 0xa1, 0xbb, + 0x50, 0x8a, 0x5b, 0x4c, 0x41, 0x5a, 0x36, 0xe7, 0xc9, 0xf6, 0xd2, 0x3e, 0x01, 0x4d, 0x4e, 0x76, + 0x83, 0xe0, 0x80, 0x7a, 0x68, 0x09, 0xe6, 0x98, 0xfc, 0x15, 0x8b, 0xa9, 0x53, 0x76, 0xc8, 0x16, + 0x6f, 0x33, 0x64, 0xdb, 0xbf, 0x95, 0x01, 0xa5, 0x6c, 0x57, 0xbb, 0x44, 0x0f, 0x4a, 0xb2, 0xa7, + 0xdf, 0x24, 0x7e, 0x73, 0x42, 0xb2, 0x6f, 0x23, 0x13, 0xf4, 0xcb, 0xfd, 0x3a, 0x55, 0xdd, 0xc5, + 0x5b, 0x6d, 0x25, 0x8b, 0xfe, 0xa4, 0xbb, 0xfa, 0xb6, 0xe8, 0xa8, 0xaa, 0x63, 0x63, 0xce, 0xc9, + 0xd0, 0xe7, 0x32, 0x90, 0x55, 0x63, 0x5e, 0x12, 0x37, 0x14, 0x6d, 0xbc, 0xac, 0xcc, 0xe4, 0x2e, + 0x2b, 0xa9, 0xb7, 0xa6, 0x97, 0x95, 0xcc, 0x1e, 0x34, 0x3b, 0xb1, 0x07, 0x3d, 0x86, 0x19, 0x97, + 0x0e, 0x02, 0x7d, 0xae, 0x35, 0xbd, 0xae, 0xf5, 0x96, 0x72, 0x90, 0xf7, 0xe8, 0xc0, 0x90, 0x32, + 0xd9, 0xa0, 0x94, 0x3e, 0x7d, 0xf3, 0x29, 0x5f, 0xb3, 0xf9, 0xdc, 0xf9, 0x8c, 0xcd, 0xa7, 0x72, + 0xc5, 0xe6, 0x03, 0x9f, 0xb3, 0xf9, 0x34, 0x6e, 0xb7, 0xf9, 0xbc, 0x00, 0xcd, 0x0a, 0x03, 0x4e, + 0x87, 0xa6, 0xe3, 0x9d, 0x52, 0x39, 0x8b, 0xb5, 0xde, 0xdd, 0x09, 0x6f, 0x1d, 0xca, 0x4f, 0x16, + 0x03, 0x94, 0x6c, 0xdf, 0x3b, 0xa5, 0x22, 0x27, 0x64, 0xf4, 0x92, 0x29, 0x3b, 0xaf, 0x72, 0x42, + 0x12, 0xe3, 0x29, 0xbb, 0x9c, 0x54, 0x8e, 0x1c, 0xd2, 0x9b, 0x45, 0xbd, 0x90, 0x54, 0xcf, 0x33, + 0x28, 0xa9, 0x5f, 0x81, 0xbe, 0x28, 0xe3, 0xba, 0x92, 0xed, 0x89, 0x97, 0x6a, 0xd0, 0x88, 0x65, + 0xc5, 0xe0, 0x96, 0x05, 0xc2, 0x47, 0x3e, 0x91, 0x4b, 0x54, 0xc5, 0x28, 0x0b, 0xc2, 0xd1, 0xc8, + 0x27, 0x68, 0x03, 0xca, 0xc9, 0xb6, 0xa2, 0x1a, 0xed, 0xc3, 0xbc, 0x05, 0x6b, 0x72, 0x4f, 0x49, + 0xd4, 0x26, 0xb7, 0x07, 0x94, 0xb3, 0x3d, 0x64, 0xc6, 0x7c, 0xf3, 0x36, 0x63, 0xfe, 0xba, 0x59, + 0xde, 0xfe, 0xa3, 0x08, 0xcd, 0x9d, 0x0f, 0x9c, 0x30, 0x0f, 0xbb, 0x06, 0x09, 0x68, 0xc8, 0x2c, + 0x22, 0x5d, 0xbe, 0x06, 0x1a, 0x89, 0xe8, 0xe3, 0x9e, 0x05, 0x31, 0xa9, 0x6f, 0xa3, 0x26, 0xcc, + 0x3a, 0x9e, 0x4d, 0x3e, 0xc8, 0xaa, 0xaf, 0x1a, 0xea, 0xf0, 0x6f, 0x57, 0x6f, 0x76, 0xd6, 0xcf, + 0x7e, 0xd2, 0xac, 0xbf, 0x45, 0x89, 0xb7, 0x7f, 0x82, 0x7a, 0xec, 0x97, 0x03, 0x4a, 0x5d, 0xe9, + 0x9b, 0x47, 0x50, 0xc7, 0xae, 0x4b, 0x2d, 0x35, 0xe9, 0x39, 0x3d, 0x27, 0x71, 0xb7, 0x5e, 0x18, + 0xd3, 0x8f, 0x04, 0x19, 0xdd, 0x87, 0x8a, 0xd8, 0x1b, 0x03, 0x1f, 0x5b, 0x24, 0xfa, 0xe8, 0x1a, + 0x13, 0xda, 0xbf, 0x4f, 0xc3, 0x62, 0xfe, 0x14, 0x7a, 0x08, 0xb5, 0x01, 0xf1, 0x08, 0xc3, 0x22, + 0xea, 0x72, 0xf3, 0x54, 0x17, 0x54, 0x13, 0xaa, 0x5c, 0x3f, 0x0f, 0x01, 0x25, 0x51, 0x62, 0x91, + 0x99, 0x81, 0x5e, 0x94, 0xef, 0x9a, 0xf8, 0x90, 0xc8, 0x8b, 0xb3, 0xd1, 0x20, 0x19, 0x6a, 0x80, + 0xf6, 0xe5, 0x26, 0x23, 0x0f, 0xa6, 0x4f, 0xa9, 0xab, 0xca, 0x75, 0x5a, 0x82, 0x4e, 0x7c, 0x43, + 0x64, 0x9d, 0x63, 0xd4, 0x59, 0xd6, 0x5d, 0x4f, 0xa0, 0xe1, 0xbb, 0xe1, 0xc0, 0x11, 0x33, 0x22, + 0xee, 0xfe, 0xd1, 0x0e, 0x53, 0x57, 0x8c, 0xf1, 0x54, 0x40, 0xef, 0xa0, 0xe6, 0x78, 0x01, 0xc7, + 0x9e, 0x45, 0x4c, 0xcb, 0xc5, 0x41, 0x20, 0x6b, 0xab, 0xd6, 0x7b, 0x7a, 0xa3, 0xda, 0xea, 0xf4, + 0x23, 0xdd, 0x2d, 0xa1, 0x6a, 0x54, 0x9d, 0xcb, 0xc7, 0x76, 0x17, 0xaa, 0x29, 0x3e, 0xd2, 0xa0, + 0xb4, 0xbd, 0xf3, 0xdd, 0xc6, 0xf1, 0xde, 0x51, 0x7d, 0x0a, 0x35, 0xa0, 0xda, 0xdf, 0x3f, 0xda, + 0x31, 0x8c, 0xe3, 0x83, 0xa3, 0xfe, 0xe6, 0xde, 0x4e, 0xbd, 0xb0, 0xf9, 0xcd, 0xbb, 0x97, 0x03, + 0x87, 0x9f, 0x85, 0x27, 0x1d, 0x8b, 0x0e, 0xbb, 0xd2, 0x00, 0xca, 0x06, 0xea, 0x47, 0x37, 0xf9, + 0x47, 0xcd, 0x80, 0x78, 0x5d, 0xff, 0xe4, 0xab, 0x01, 0xed, 0xa6, 0xff, 0xc5, 0x74, 0x32, 0x27, + 0x8b, 0xf3, 0xe9, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xe7, 0x7d, 0x76, 0xa2, 0x7b, 0x12, 0x00, + 0x00, } diff --git a/flyteidl/gen/pb-go/flyteidl/event/event.pb.validate.go b/flyteidl/gen/pb-go/flyteidl/event/event.pb.validate.go index 0c2db5d921..fe19b7b989 100644 --- a/flyteidl/gen/pb-go/flyteidl/event/event.pb.validate.go +++ b/flyteidl/gen/pb-go/flyteidl/event/event.pb.validate.go @@ -250,6 +250,8 @@ func (m *NodeExecutionEvent) Validate() error { } } + // no validation rules for IsArray + switch m.InputValue.(type) { case *NodeExecutionEvent_InputUri: diff --git a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json index c6c6eb3ae2..655512db16 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json +++ b/flyteidl/gen/pb-go/flyteidl/service/admin.swagger.json @@ -4693,6 +4693,11 @@ "type": "boolean", "format": "boolean", "description": "Boolean flag indicating if the node has contains a dynamic workflow which then produces child nodes.\nThis is to distinguish between subworkflows and dynamic workflows which can both have is_parent_node as true." + }, + "is_array": { + "type": "boolean", + "format": "boolean", + "description": "Boolean flag indicating if the node is an array node. This is intended to uniquely identify\narray nodes from other nodes which can have is_parent_node as true." } }, "title": "Represents additional attributes related to a Node Execution" @@ -7451,6 +7456,11 @@ "type": "string", "format": "date-time", "description": "This timestamp represents the instant when the event was reported by the executing framework. For example,\nwhen first processing a node the `occurred_at` timestamp should be the instant propeller makes progress, so when\nliteral inputs are initially copied. The event however will not be sent until after the copy completes.\nExtracting both of these timestamps facilitates a more accurate portrayal of the evaluation time-series." + }, + "is_array": { + "type": "boolean", + "format": "boolean", + "description": "Indicates if this node is an ArrayNode." } } }, 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 c95e97e634..53e03d1e83 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/api/swagger.yaml @@ -20087,6 +20087,7 @@ definitions: - metadata: retry_group: "retry_group" is_parent_node: true + is_array: true spec_node_id: "spec_node_id" is_dynamic: true input_uri: "input_uri" @@ -20147,6 +20148,7 @@ definitions: - metadata: retry_group: "retry_group" is_parent_node: true + is_array: true spec_node_id: "spec_node_id" is_dynamic: true input_uri: "input_uri" @@ -20228,10 +20230,17 @@ definitions: description: "Boolean flag indicating if the node has contains a dynamic workflow\ \ which then produces child nodes.\nThis is to distinguish between subworkflows\ \ and dynamic workflows which can both have is_parent_node as true." + is_array: + type: "boolean" + format: "boolean" + description: "Boolean flag indicating if the node is an array node. This is\ + \ intended to uniquely identify\narray nodes from other nodes which can\ + \ have is_parent_node as true." title: "Represents additional attributes related to a Node Execution" example: retry_group: "retry_group" is_parent_node: true + is_array: true spec_node_id: "spec_node_id" is_dynamic: true adminNotification: @@ -99956,6 +99965,10 @@ definitions: \ so when\nliteral inputs are initially copied. The event however will not\ \ be sent until after the copy completes.\nExtracting both of these timestamps\ \ facilitates a more accurate portrayal of the evaluation time-series." + is_array: + type: "boolean" + format: "boolean" + description: "Indicates if this node is an ArrayNode." eventParentNodeExecutionMetadata: type: "object" properties: @@ -112440,6 +112453,7 @@ definitions: metadata: retry_group: "retry_group" is_parent_node: true + is_array: true spec_node_id: "spec_node_id" is_dynamic: true input_uri: "input_uri" diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_meta_data.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_meta_data.go index 08ad839a7e..fea13f6ade 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_meta_data.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_admin_node_execution_meta_data.go @@ -17,4 +17,6 @@ type AdminNodeExecutionMetaData struct { SpecNodeId string `json:"spec_node_id,omitempty"` // Boolean flag indicating if the node has contains a dynamic workflow which then produces child nodes. This is to distinguish between subworkflows and dynamic workflows which can both have is_parent_node as true. IsDynamic bool `json:"is_dynamic,omitempty"` + // Boolean flag indicating if the node is an array node. This is intended to uniquely identify array nodes from other nodes which can have is_parent_node as true. + IsArray bool `json:"is_array,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_node_execution_event.go b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_node_execution_event.go index 8d80e2a1e5..4edc5d3692 100644 --- a/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_node_execution_event.go +++ b/flyteidl/gen/pb-go/flyteidl/service/flyteadmin/model_event_node_execution_event.go @@ -44,4 +44,6 @@ type EventNodeExecutionEvent struct { DeckUri string `json:"deck_uri,omitempty"` // This timestamp represents the instant when the event was reported by the executing framework. For example, when first processing a node the `occurred_at` timestamp should be the instant propeller makes progress, so when literal inputs are initially copied. The event however will not be sent until after the copy completes. Extracting both of these timestamps facilitates a more accurate portrayal of the evaluation time-series. ReportedAt time.Time `json:"reported_at,omitempty"` + // Indicates if this node is an ArrayNode. + IsArray bool `json:"is_array,omitempty"` } diff --git a/flyteidl/gen/pb-go/flyteidl/service/openapi.go b/flyteidl/gen/pb-go/flyteidl/service/openapi.go index 8f438a0e03..a19d4ff07b 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\xeb\xb8\x95\x2f\x0c\xff\x3f\x9f\x02\x67\xcf\xa9\xea\xee\x44\xb6\x3b\xc9\x4c\xde\x94\xa7\x4e\xbd\x8f\xda\xd6\xde\xad\xd3\xbe\xc5\x97\xee\xe9\x67\x94\x52\x43\x24\x24\x21\x26\x01\x06\x00\xed\xad\x4e\xe5\xbb\x3f\x85\x85\x0b\x41\x8a\x94\xa8\x8b\x6d\x79\x37\x67\xaa\xd2\xde\x22\x89\xeb\xc2\xc2\xba\xfe\xd6\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x45\x1f\xfe\x78\xfc\xed\x87\x9e\xfe\x8d\xb2\x29\xff\x70\x8a\xf4\x73\x84\x3e\x28\xaa\x12\xa2\x9f\x4f\x93\x85\x22\x34\x4e\x4e\x24\x11\x4f\x34\x22\x27\x38\x4e\x29\x3b\xce\x04\x57\x1c\x3e\x44\xe8\xc3\x13\x11\x92\x72\xa6\x5f\xb7\x7f\x22\xc6\x15\x92\x44\x7d\xf8\x37\x84\xfe\x05\xcd\xcb\x68\x4e\x52\x22\x3f\x9c\xa2\xff\x31\x1f\xcd\x95\xca\x5c\x03\xfa\x6f\xa9\xdf\xfd\x1b\xbc\x1b\x71\x26\xf3\xd2\xcb\x38\xcb\x12\x1a\x61\x45\x39\x3b\xf9\xbb\xe4\xac\x78\x37\x13\x3c\xce\xa3\x96\xef\x62\x35\x97\xc5\x1c\x4f\x70\x46\x4f\x9e\xfe\x70\x82\x23\x45\x9f\xc8\x38\xc1\x39\x8b\xe6\xe3\x2c\xc1\x4c\x9e\xfc\x93\xc6\x7a\x8e\x7f\x27\x91\xfa\x17\xfc\x23\xe6\x29\xa6\xcc\xfc\xcd\x70\x4a\xfe\xe5\xdb\x41\xe8\xc3\x8c\xa8\xe0\x9f\x7a\xb6\x79\x9a\x62\xb1\xd0\x2b\xf2\x91\xa8\x68\x8e\xd4\x9c\x20\xd3\x0f\x72\x4b\xc4\xa7\x08\xa3\x53\x41\xa6\xa7\xbf\x08\x32\x1d\xbb\x85\x3e\x36\x0b\x7c\x01\xa3\xb9\x49\x30\xfb\xe5\xd8\x2e\x13\xb4\xcc\x33\x22\x60\x6e\xc3\x58\xb7\xfe\x89\xa8\x3e\x34\x5b\xbc\x1f\xbe\x2d\x88\xcc\x38\x93\x44\x96\x86\x87\xd0\x87\x3f\x7e\xfb\x6d\xe5\x27\x84\x3e\xc4\x44\x46\x82\x66\xca\xee\x65\x1f\xc9\x3c\x8a\x88\x94\xd3\x3c\x41\xae\xa5\x70\x30\x66\xaa\x7a\x63\xf1\x52\x63\x08\x7d\xf8\xdf\x82\x4c\x75\x3b\xff\x7e\x12\x93\x29\x65\x54\xb7\x2b\x0d\xfd\x04\xa3\x2d\x7d\xf5\xaf\x7f\xab\xfb\xfb\x5f\xc1\x8c\x32\x2c\x70\x4a\x14\x11\xc5\x8e\x9b\xff\xab\xcc\x45\xef\x91\xee\xbc\xd8\xc7\xea\xc0\x2b\xb3\xbd\xc2\x29\xd1\x7b\xa2\x77\xca\x7e\x01\x7f\x0b\x22\x79\x2e\x22\x82\x26\x24\xe1\x6c\x26\x91\xe2\x4b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\x57\xaf\xd5\xd4\x0c\x55\x6e\x30\x33\xf3\x41\xe3\xc4\x46\xac\xef\x5e\x89\x30\x43\x13\x82\xf4\x59\xa4\x31\x11\x24\x46\x58\x22\x8c\x64\x3e\x91\x44\xa1\x67\xaa\xe6\x94\xe9\x7f\x67\x24\xa2\x53\x1a\xb9\x35\x3b\x9c\xb5\x81\x3f\x57\xaf\xcc\x83\x24\x42\x0f\xfc\x89\xc6\x24\x46\x4f\x38\xc9\x09\x9a\x72\x51\x5a\x9e\xe3\x11\xbb\x9f\xeb\x75\x48\x27\x94\xc1\xc9\xd3\x6b\xe9\x28\xe4\xf7\x6e\xb9\x7e\x8f\x74\x7f\x28\x67\xf4\x1f\x39\x49\x16\x88\xc6\x84\x29\x3a\xa5\x44\x56\x5b\xfb\x3d\x87\xfe\x71\x82\x8e\x90\x5e\x67\x22\x14\xac\x37\x67\x8a\x7c\x56\x12\x1d\xa1\x84\x3e\x12\xf4\xd5\x05\x95\x0a\xf5\x6f\x86\x5f\xf5\xd0\x57\xe6\xbc\x20\xe0\x4d\x5f\xbd\xc2\x0a\xfb\xbf\xff\x16\x1c\x3d\x85\x67\xd5\x43\xf7\xa1\xaf\x4f\xf3\x9d\xb9\x1a\x8a\x16\xfe\xf6\x6f\x61\x3b\x76\xbf\x56\xf3\xdb\x82\xd9\x5a\x4e\xdb\x96\xbf\xc2\x32\x95\x59\xab\xd4\x3b\xb4\x2b\x67\xd5\xed\x56\x59\xab\x7c\x5f\xbc\x55\x4f\xe1\xa5\xf9\xeb\x2e\xcc\x15\x2b\xa0\x7a\x4c\x99\x39\x24\xfe\xcc\x08\xa9\xcf\x89\xa3\xde\x03\x61\x29\xbb\xf0\xda\x60\x66\x01\xbb\x75\x5c\x34\x58\x95\x03\x9c\x77\x42\x53\xba\x6e\x7f\x87\x2c\xd6\x22\x97\x65\x76\x2c\x4f\x27\x44\xe8\x65\x70\x6c\x0f\x66\x3b\xd1\x6c\x50\xe5\x82\x91\xb8\xc5\x34\xff\x91\x13\xb1\x58\x31\xcf\x29\x4e\x64\xd3\x44\x29\x53\x44\xcb\xb7\x95\xc7\x53\x2e\x52\xac\xec\x0b\x7f\xfe\x8f\x4d\x17\x42\xf1\x47\xb2\x6e\xff\x87\x66\x37\x23\x2c\x81\x0c\xd2\x3c\x51\x34\x4b\x08\xca\xf0\x8c\x48\xbb\x22\x79\xa2\x64\x0f\x5e\xd3\x32\x35\x11\x47\xfe\x06\x82\x1e\xdc\xcd\x9b\x4b\xf8\x05\x4d\xbd\x00\xc9\xc8\x67\x05\x2d\x8d\x18\xdc\xbd\xb0\x44\xe1\x8d\xf2\x02\x4b\xb9\x1d\xcd\x48\x2e\xd4\x78\xb2\x38\x7e\x24\x4b\xfd\x36\x52\x0e\x66\x08\x2b\x25\xe8\x24\x57\x44\xcf\x5b\xb7\xe1\xee\x4e\x60\x8f\xe6\x82\x6e\xc3\x1a\xde\x6e\xc2\x31\x15\x24\x82\xb9\x6d\x72\x60\xfc\x57\x7a\xde\x5a\x7f\x59\x98\xd9\x3f\x92\x05\xc8\x23\x35\x2b\xe0\xb7\x7c\xc4\x46\x0c\x1d\xa1\xf3\xc1\xdd\xd9\xe0\xea\x7c\x78\xf5\xe9\x14\x7d\xb7\x40\x31\x99\xe2\x3c\x51\x3d\x34\xa5\x24\x89\x25\xc2\x82\x40\x93\x24\xd6\x32\x87\x1e\x0c\x61\x31\x65\x33\xc4\x45\x4c\xc4\xcb\x2d\x63\xe5\x29\x61\x79\x5a\xb9\x57\xe0\xf7\x62\xf4\x95\x2f\xb4\x88\xe1\x1f\x95\x9e\xfc\x6d\x69\x81\x61\xc6\xba\xef\xa0\xb5\x57\x13\x6a\xa2\x39\x4d\x62\x41\xd8\x89\xc2\xf2\x71\x4c\x3e\x93\x28\x37\x77\xf2\x3f\xcb\x3f\x8c\xb5\x64\xca\x63\x52\xfe\xa5\xf4\x8f\x42\x14\xda\xf8\x53\xaf\xa5\x6e\xfc\x25\xe8\xb4\xed\xbe\x83\x5f\x68\x5c\xfb\x36\xfc\xb2\x66\x0e\xee\x9d\x15\x83\x75\xaf\x34\x8e\xca\xbd\x60\x25\xbe\xda\x77\x04\x51\x62\x31\xc6\x4a\x91\x34\x53\x1b\xea\xeb\x18\x25\x5a\xae\x5c\x25\x47\x5e\xf1\x98\x0c\x5c\x7f\xbf\x20\x23\xce\x92\x18\x4d\x16\x96\x6b\x4d\x89\x20\x2c\x22\xcd\x2d\xdc\x63\xf9\x58\xb4\xb0\x4e\x18\x2d\xf5\x27\x3f\x72\xa1\x3f\x7f\x0f\x02\x69\x69\xe0\xaf\x21\x93\x6e\x7b\xe2\xbe\x38\x0b\xc1\x96\xfc\xa3\xb3\x27\xec\xbe\x92\x6d\xad\x0f\x5c\x20\xb9\x90\x8a\xa4\x6b\xed\x10\xef\x67\x21\xec\x05\x71\xa8\x03\xae\xdc\x51\xbf\x81\x53\x5f\xbe\x71\xbb\xe3\xbd\xc1\x92\xed\xcb\x8a\x78\xe8\xf3\x74\x3e\x9c\xd5\x53\xbd\x73\xdb\x17\x38\x31\xde\xc5\x34\x4b\xb2\xe0\xbe\x07\xf9\x42\xe6\x86\xc6\xbd\x72\xab\x3d\x86\x01\xac\x51\x34\xcb\x76\x68\x7f\xfe\xf4\xa7\xa1\x85\xc6\x98\xe3\xd4\x9c\xca\xc0\x58\x85\x22\x2e\x8c\x2c\x18\xdb\xf3\x6e\x74\xcd\xfe\x7d\xff\x6e\x70\x7f\x8a\xfa\x28\xc6\x0a\xeb\x03\x2e\x48\x26\x88\x24\x4c\x81\x1e\xaf\xbf\x57\x0b\x94\xf2\x98\x24\x46\xe3\xfc\xa8\x25\x5f\x74\x8e\x15\x3e\xc3\x0a\x27\x7c\x76\x8c\xfa\xf0\x4f\xfd\x31\x95\x08\x27\x92\x23\xec\xc8\x8a\xc4\xae\x09\xcc\x62\xc7\x5a\x30\x8a\x78\x9a\xd1\xc4\xdb\xe0\xbd\x71\x85\xb2\x98\x3e\xd1\x38\xc7\x09\xe2\x13\xcd\x55\xb4\x86\x3c\x78\x22\x4c\xe5\x38\x49\x16\x08\x27\x09\xb2\xdd\xba\x17\x90\x9c\xf3\x3c\x89\x75\xbb\x6e\x94\x92\xa6\x34\xc1\x42\xab\xe0\x66\xb4\xd7\xb6\x2d\x74\x3f\x27\x7e\xac\x30\x2e\xbd\x9a\x29\x7e\x24\x12\x51\x85\x32\x2e\x25\x9d\x24\xc5\x99\x7f\x18\x22\x18\xf7\xd9\xc5\x10\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9c\x0d\x3f\x0e\x07\xe7\xcb\xba\xf9\x7d\xff\xee\x87\xe5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xcb\x4f\x2e\xfa\x0f\x57\x67\xdf\x8f\x6f\x2e\xfa\x57\xcb\x0f\x2d\x59\xb5\x56\xf3\xc3\x91\x6d\x78\xb6\x3a\x9b\xe6\x4b\xd9\x34\x7b\x5f\xae\x51\x73\x4a\x13\xd0\x41\x5b\x1b\x34\xbd\x0d\xc1\x7e\x89\x32\x2c\xa5\x91\x8c\xcc\x08\x8e\x47\xec\x92\x0b\xcd\xc0\xa6\x5c\xf3\x08\x2d\x3d\x29\x91\x47\x8a\xb2\x99\xff\xe8\x14\x8d\xf2\x6f\xbf\xfd\x53\x74\x41\xd9\x23\xfc\x45\x0e\x71\x71\x3a\x8b\x6f\x67\xf1\xfd\x6d\x59\x7c\xb5\xe8\x73\x12\x1a\x7a\xf7\x1b\x32\xa4\x85\x0b\x96\xe5\x0a\x44\x09\x9e\x2b\xfd\xa7\xee\x12\xc8\x63\x45\xe0\x50\x3b\x83\xe2\x27\xa2\xfc\x8b\x5a\xb4\x79\x0f\x76\xc4\x9f\xb8\x78\x9c\x26\xfc\xd9\x0f\xfc\x13\x51\x7a\xec\xb7\xb6\x97\x2e\x94\xa8\x0b\x25\x7a\xdb\x50\xa2\x83\x32\xe6\xbd\x3c\xf3\x2b\x5b\xfe\x0c\x07\x6c\xf0\x64\x35\x3a\xaa\x1a\xfc\x50\x81\x9b\xe9\x55\xb8\x66\xd9\x99\xb3\x86\x73\x96\x5e\x7e\x2f\xdc\xb3\x34\xe8\xd7\xe7\x9c\xbf\x09\x7f\x4b\xe7\x4e\xd9\x72\xa1\xde\x25\x83\x6d\x79\x77\xbc\x9a\x33\xe4\xe5\x19\xfe\x52\x6c\xc3\x26\xc1\x0c\x1b\x44\x2f\xb4\x0e\x57\x58\x13\x9f\x50\x1b\x90\x50\x17\x81\xb0\x1c\x72\x50\x1b\x63\xb0\x5b\x50\xc1\xb6\x77\x53\xfb\x30\x81\x4f\x44\x95\x5e\x7e\x2f\x77\x53\x69\xd0\xaf\x7f\x37\xfd\x46\xa3\x03\xba\x70\x80\x17\x5c\xba\x2f\xfd\x46\x3b\x5c\x87\xff\x6f\xc0\xc3\xdf\xb9\xf4\x37\x5a\xa3\x2f\xcb\x87\xff\xa5\x3a\xed\xdf\xa7\x97\xbe\x73\xcb\x77\x6e\xf9\xb7\xf0\x9f\xbc\x3f\xb7\xfc\xcb\xaa\xa7\xc5\xf1\x1a\x3b\x5a\xb0\xfa\x5a\x70\x28\xff\xd5\xc2\x49\x03\x7f\x39\x95\x6f\xd3\xa0\xf1\x46\x1d\xee\xbc\x18\xdf\x00\x8e\xd0\x2f\x96\x90\xd6\xa8\x73\x4b\xdf\xbd\x07\x75\x6e\x79\xd0\x2f\xaf\xc3\xbd\x19\xf3\x7d\xa1\xcb\xf3\x9d\xb0\x81\xcd\x6f\xcb\x2f\x58\x26\xef\x64\xf1\x97\xcf\xc6\x3f\x98\x09\xbd\x1f\xd9\xfb\x0d\x2e\xde\x96\xb7\xee\xde\x73\xb2\x6a\xae\xd9\xe0\x76\x5a\x97\x61\x55\xfd\x9a\x12\xf9\xc7\x77\x79\xdf\xbe\x46\x92\x55\x77\xe1\x76\x17\xae\x6d\xaa\xbb\x70\xbf\xe0\x0b\xf7\xe0\xe0\x6f\x0e\x26\x02\xb4\x0b\x22\xef\x80\x31\xba\x18\xf2\x3d\x2e\x4e\x17\x43\xde\xc5\x90\xff\xc6\x62\xc8\x77\xd1\x9e\xb6\xc5\xa2\x7c\x0b\x3d\xaa\x53\xa3\x3a\x35\x2a\xfc\xbd\x53\xa3\x3a\x35\xaa\x53\xa3\xbe\x70\x14\xd1\x4e\x87\x6a\xbf\x10\x9d\x0e\xd5\x7a\xa9\x3a\x1d\x6a\xc5\xe2\x74\x3a\x54\xa7\x43\xfd\xb6\x74\x28\xf2\x44\x98\x92\x90\x8c\x16\x6a\x14\x1f\x32\x2e\x9b\x35\xa1\x90\x3b\xd4\x68\x41\xd0\x66\x39\x29\x0c\x02\x97\x7e\x41\x73\x2c\x11\x8f\xa2\x5c\x54\xce\x40\x55\x0f\x3a\x13\x04\x2b\x02\x2d\xe8\x0f\xdf\x83\xfe\xb3\x3c\xdd\xd7\x8a\xc1\x9f\xf0\x78\x89\xda\xcd\x41\xa8\x7b\xb2\x5a\x1e\xd9\xdb\xd4\xff\x91\x93\x76\xea\xdf\x0b\x12\xb5\xc2\xf2\x71\xcf\x44\x5d\xca\xb5\xd8\x8a\xa8\xa1\x85\xf7\x42\xd4\xcb\xd3\xfd\xcd\x10\x75\xdd\xd4\x0f\x81\xa8\x9f\x6d\x1e\xff\x9e\x09\x7b\x09\x1e\x60\x2b\xe2\xf6\xad\xbc\x17\x02\xaf\x9f\xf6\x6f\x86\xc8\x9b\xa6\xff\xb6\x84\xee\x53\x24\x5b\x93\xf8\xbd\xa0\xb3\x99\x56\x33\x40\xc3\xd3\xa4\xb8\xbe\x46\x50\x91\x14\xb8\x96\xac\xfd\xab\xef\x81\xa4\xfd\x60\xcd\xd8\x7f\x33\xb4\xbc\x34\xef\x03\x21\xe2\x13\x41\x22\xfe\x04\xf5\xc2\xda\x11\xf3\x2d\x01\x0a\x06\x7e\x9d\x09\xf2\x44\x79\x2e\x93\xc5\x91\xc8\x19\x72\xcc\x1f\xf9\xe6\x8d\xb5\xfa\x99\x26\x09\xe2\x4c\xeb\x5f\x0a\x0b\xe5\x1e\x6b\xfd\x5b\xf0\x14\x4e\x45\x82\xa5\x42\x8f\x8c\x3f\x33\x34\xc5\x34\xc9\x05\x41\x19\xa7\x4c\x1d\x8f\xd8\x90\xa1\x5b\x33\x46\xc8\x1b\xe8\xa1\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x84\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\xe8\xa1\x49\x3e\x93\x5a\x53\xcc\x12\xac\xa6\x5c\xa4\x7a\x84\x94\x49\x85\x27\x34\xa1\x6a\xd1\x43\x29\x8e\xe6\xa6\x2d\x58\x03\xd9\x1b\xb1\x98\x3f\x33\xa9\x04\xc1\xbe\x77\xf7\x10\x7d\x1d\x3e\x33\x04\x20\xbf\xe9\x41\xda\x21\x4d\xb5\xba\x1b\x0c\xbf\xd8\x71\xb3\x27\xba\x11\x12\xa3\x09\x89\x70\x2e\xad\x87\x41\x89\x05\x22\x9f\xe7\x38\x97\xb0\x77\x7a\x7a\x36\x67\x23\xe2\x69\x96\x10\x45\x10\x9d\x22\x25\x28\x89\x11\x9e\x61\xaa\x97\xee\x8e\xac\x00\x41\xf7\x44\x6f\x37\xd0\x52\xfd\x2f\xa0\x7e\xa7\x5c\x10\x14\x13\x85\x69\xb2\xd2\xeb\x64\xbf\xed\xb8\xdc\x7b\xe2\x72\xe5\x0d\x3f\x08\x36\x67\x40\xfc\xf7\x70\x69\x33\x6b\xba\x8f\x70\xb2\xe3\xfd\x7d\x6b\x07\xd5\xd1\xf6\xfb\xa2\x6d\xb3\x6b\x87\x43\xdc\xaf\x16\x83\xdd\xbe\xa2\x45\x51\xcd\xe2\x5d\xd1\xf4\x6b\x84\x05\x74\x0e\xe7\xce\xe1\xdc\xb8\x32\xef\xd3\xe1\x7c\x30\x1e\xa3\xce\xe7\xfc\x42\x3e\x67\x2a\x3b\xa7\x73\xe7\x74\x6e\xbb\x40\x9d\xd3\xb9\x73\x3a\xbf\x5f\xa7\xf3\x4b\xe2\x3e\xef\x15\xdd\xf9\x5d\x89\xd6\x9d\x58\xdd\x89\xd5\x1d\x84\xb3\x9f\xda\xbe\x58\x98\xfb\xfa\x43\x4c\x12\xa2\x48\xb3\x3d\x8b\x88\x54\x6b\x0b\xe6\x7a\xa6\x4c\xcb\x71\x33\x41\xa4\xdc\x95\x21\xf9\x86\xdf\x27\x5b\xf2\xc3\xef\xa0\xe6\x3b\x3e\xd5\xf1\xa9\x6d\xa6\x76\x38\xa6\xd9\xe0\x30\xbf\x96\x6d\xd6\xf3\xdf\x2c\x6f\x96\xfe\x1e\x8c\x1b\xb2\xf0\x8b\x1a\x0a\xd7\x52\xbb\xe2\xfe\x70\x5b\x3a\xdf\x91\x1f\x9b\xbe\xde\x27\x33\x36\x63\xef\x38\x71\xc7\x89\x3b\x4e\xfc\xbe\x39\xb1\x3b\xc9\x6f\xea\x22\x33\x7e\xba\x71\x96\x60\x36\xa6\xb1\x3c\xf9\x67\xa1\xcb\xbf\x94\x87\x4c\x1f\xa8\xd8\xa4\x98\xfa\x94\x4e\xf1\x8b\xfe\x24\x29\x0c\xe6\x1e\x33\x73\x8d\x13\xcd\xd8\xd8\x6f\x12\xcc\x86\xf1\xbb\xf0\xa3\xd5\xce\xfe\x35\x7c\x6a\xbb\xf0\x71\xac\xc0\xd3\x81\x29\x33\x26\xbc\x22\xaf\xb6\x64\xa0\x3c\x8c\x13\xbe\x0b\x57\x0f\x26\x16\x30\x76\xc7\xaf\x83\x45\x39\xbc\x69\x77\x7e\x9d\x2e\x97\xb0\xf3\x5c\xb4\x9c\x70\xe7\xb9\x38\x5c\xcf\xc5\x5b\xb9\x23\x5f\xf9\x78\xbe\x96\x58\xd7\x3e\x08\xdf\x44\xab\x41\x50\x6b\x9e\x25\x1c\xc7\xab\x5c\x31\x85\xe0\x15\x82\xa3\xac\x8d\xc4\x2f\x3e\x7b\x0f\xc2\x5a\x31\xda\xdf\x58\x24\xdf\xf2\xc4\x0f\x45\x4b\x79\xc5\x50\xbe\x7a\x12\xdf\x40\x25\x79\x1f\xf8\xa9\xc5\x78\xbb\xd0\xbe\xce\xa2\xf4\xf6\x16\xa5\x2e\xb4\xaf\x53\x01\x0f\x4c\x05\xec\x42\xfb\xba\xd0\xbe\x4e\x41\x5e\x3d\xed\x4e\x41\xfe\x22\x42\xfb\x5a\x89\xda\x2f\x88\xbd\xb9\xbb\xd0\xdd\xc9\xdc\xee\xbd\x4e\xe6\xee\x64\xee\x2f\x54\xe6\x3e\x8c\x15\xee\x04\xee\x4e\xe0\xee\x04\xee\x4e\xe0\xee\x04\xee\xbd\x2f\x63\x27\x70\xbf\x66\x81\xce\x7a\xa9\x7b\x4d\x92\xcd\x7b\xf5\xe5\x74\xe2\x76\x27\x6e\x1f\xb6\xb8\x7d\x30\x13\x7a\x3f\x65\x1e\xdb\xcd\xa7\x2b\x52\xde\x15\x29\xef\x8a\x94\xbf\x78\x91\x72\xf7\x75\x8b\x8c\x0f\x7b\xb8\x14\x56\xb9\x34\x80\x8f\x82\xcc\xa8\x54\xc0\xfe\xdb\xc8\x2b\xeb\x13\x3d\xde\xab\x9c\xd2\xa5\x7a\xf8\xa7\x9d\xd4\xd2\x49\x2d\xbf\x51\xa9\xe5\x80\x62\xc1\x0e\x22\x63\x25\xc5\x2a\x9a\xe3\x49\x42\xc6\xde\xe8\x23\xdb\xea\xc1\x17\x54\x2a\x89\xa2\x5c\x2a\x9e\x36\x5f\x2e\x97\xae\x87\xbe\xef\xe0\x8c\xb3\x29\x9d\xe5\xe6\x6e\x31\xe0\x9c\xc1\x89\x2e\x24\xc1\x45\x46\xd6\x79\xaa\x6a\x5a\x7f\x17\xd7\x52\xfd\xd0\x5f\xeb\x76\xda\x44\x70\x2f\x8c\x7c\x56\xea\xd6\xb2\xd6\xf8\x76\x70\x77\xfd\x70\x7b\x36\x38\x45\xfd\x2c\x4b\xa8\xb1\xbb\x1b\x52\xa0\xbf\xea\x49\x21\x85\xe5\x63\xb1\x97\xc2\x90\xb9\xc1\xb0\x05\x43\xbf\x96\x8d\xd1\x11\x3a\xbb\x78\xb8\xbb\x1f\xdc\x36\x34\x68\x09\x05\xf2\x56\x49\x9a\x25\x58\x91\x18\x3d\xe6\x13\x22\x18\xd1\xd2\x8e\x45\xba\x2d\xcc\xff\xa6\xd1\xc1\x7f\x0f\xce\x1e\xee\x87\xd7\x57\xe3\xbf\x3e\x0c\x1e\x06\xa7\xc8\x51\x9c\x6e\x56\x8f\x4b\x8f\x22\x5e\x30\x9c\x6a\x0d\x44\xff\x50\x64\xca\xfe\x23\x27\x39\x41\x58\x4a\x3a\x63\x29\x01\x44\xe0\x52\x8b\x6e\xc0\x17\xfd\xef\x06\x17\xe5\x96\xe7\x24\x84\xdf\x45\x09\x9e\x90\xc4\xfa\x23\xc0\xc4\xae\x09\x3d\x80\x2a\x36\x8e\x8a\xdc\xac\xea\x5f\x1f\xfa\x17\xc3\xfb\x9f\xc7\xd7\x1f\xc7\x77\x83\xdb\x1f\x87\x67\x83\xb1\x95\x2a\xcf\xfa\xba\xdf\x52\x4f\x56\xf8\x44\xff\xc8\x71\xa2\xb5\x13\x3e\x75\x78\xbc\xe8\x79\x4e\x18\xca\x19\x50\x9c\x51\x79\xb4\x1e\xe4\x3b\xd5\xa7\xcc\xcc\xe8\xe6\xe2\xe1\xd3\xf0\x6a\x7c\xfd\xe3\xe0\xf6\x76\x78\x3e\x38\x45\x77\x24\x01\xa5\xc0\x2d\x3a\xec\x62\x96\xe4\x33\xca\x10\x4d\xb3\x84\xe8\xd5\xc0\x36\x9b\x78\x8e\x9f\x28\x17\xf6\xe8\xce\xe8\x13\x61\x66\x1d\xe1\xcc\x42\xfb\x4e\xf8\x1e\x07\x4b\x77\x7d\xf5\x71\xf8\xe9\x14\xf5\xe3\xd8\xcf\x41\x42\x1b\x25\xca\x71\xb0\xce\x47\xe5\x61\x6b\xe6\x00\xdd\x1b\x22\xe2\x4f\x44\x08\x1a\x93\x0a\x1d\xf5\xef\xee\x86\x9f\xae\x2e\x07\x57\xf7\xb0\x62\x4a\xf0\x44\xa2\x39\x7f\x06\x53\x36\xcc\x10\x2c\xdc\x4f\x98\x26\xd0\x99\xdb\x2c\xce\xd0\xf3\x9c\x82\xfb\x03\x80\x99\x7d\xcf\x46\x3f\x13\x39\x7b\x73\xeb\x6c\xe9\xe0\x2d\xab\x2d\xd5\x93\xb4\xfc\x46\xe5\x58\xac\x7a\xa1\x44\xe5\xcb\x2f\xae\xa3\xd6\xe5\x2f\x2a\xe4\xd6\xac\xac\x2d\xd1\x4b\xf3\x4c\x8b\xbd\x6e\xad\xab\x95\xd7\xf0\xf5\xae\x59\xa2\x04\x8d\xe4\xcb\x42\x3d\x89\x9c\x29\x9a\x12\x64\x3b\xb3\x87\x73\x8f\xf0\x4f\x97\xa6\xe1\xf7\x70\xc1\x2e\x95\x72\xf8\x44\x94\x1d\x7e\xa7\x02\x76\x2a\xe0\x61\xa8\x80\xef\x2d\xdb\x3f\x26\xd9\x72\x87\x95\x89\xc1\x3b\xc6\xeb\xb5\x14\xa4\x61\xec\x89\xd6\xa2\x9a\x90\x27\x92\x80\x94\xa7\x04\xd6\x4a\xa3\x95\x5d\x26\x82\xe0\x47\x2d\xf0\xc5\xfc\x39\x94\x5c\x6a\x90\xfb\xd1\x7e\x6e\xe1\x36\x41\x1c\x7f\xfa\xe3\xeb\x5d\x16\x7a\xb9\xe3\xd7\x28\xe1\x7d\x0b\x41\x32\x2b\x31\x02\x83\x04\xfb\x5f\xac\x25\x78\xcd\x6d\x11\x7c\xf1\x1e\x2e\x8a\x70\xb8\x07\xa4\x75\xdd\x86\x4a\xb0\x63\xa1\x29\x51\x38\xc6\x0a\xeb\x43\x33\x23\xea\x18\x5d\x33\x78\x76\x8f\xe5\x63\x0f\xb9\x2b\x4f\xb3\x95\xc2\xca\xf0\x0a\xa9\xf5\xef\xc4\x80\xbf\x39\x1f\xef\xae\xef\xee\xfa\xae\x5f\x99\x2e\xcc\xb3\x61\x85\xf7\x75\x31\x6e\xe4\xf3\xda\xdf\xfd\x65\x5a\x7c\xbf\x57\xd8\xeb\x3a\xb9\xf6\x7a\xa1\x99\xca\x59\xdd\x6d\x65\xfe\xaf\xbb\xad\xba\xdb\xaa\xbb\xad\x0e\x60\x85\xdf\xdc\x61\x58\xc3\xdd\xdf\xd4\x63\xb8\x4e\x3b\xdd\x1a\xf2\xae\xd0\x46\x37\x01\xbd\xfb\xa5\x2d\xb6\x5d\xf1\x0d\x7d\x1f\x3e\xc2\x60\x92\xaf\x91\xd6\xb6\xd7\xcb\xdc\xe4\x8b\x74\xfa\xe9\x0b\xde\xf8\x1d\x02\xe1\x5e\x11\x08\x0f\x63\xae\x2f\x92\x02\xf7\x36\x16\xd3\xb7\x4f\x7b\xeb\xa0\x06\xbb\xc4\xae\x2e\xb1\x0b\x7e\xef\xa0\x06\xf7\x47\xad\x2f\x2b\x5d\xf3\x98\x8c\x2b\x51\x02\xfe\x9f\xe3\xaa\xe7\xa7\xf4\x24\x74\x03\x95\x1e\x14\x99\x6e\xd0\x3a\x8d\xf7\x59\x44\xea\x8a\xc7\xa4\x75\x24\x41\xe9\xe5\x03\x97\xc1\xdd\x3c\x8d\x2c\x5e\x1a\xf8\x0b\x4b\xe2\x0d\x5b\xfe\x25\x1a\x76\x6a\x08\xb8\xb3\xf2\xac\x5d\xa8\x2f\x35\xbe\xa0\xe0\x50\xef\xc8\x53\xd1\x8e\x8d\xbb\x98\xc6\x71\x03\x33\xaf\x7f\xee\x59\x7a\xfd\xe3\x97\xc1\x0c\x6a\xcf\xd1\xc1\xac\x12\xbe\xfd\x3e\xec\x2a\xe1\x88\x5f\xc3\xb2\xb2\x72\xef\xbf\x38\xae\xbe\x8a\x92\x3b\xde\xde\x72\xb9\xbe\x54\x0e\xdf\x41\xfc\xac\xb2\x75\x74\x18\x3a\x9d\xa9\xe5\x70\x26\xdc\x99\x5a\xde\xb5\xa9\xc5\xb8\x68\xc7\x19\x16\x84\xa9\x1a\x91\xba\x7a\x9d\xc0\xeb\x21\xe6\x82\x93\x3a\xa0\x01\xa4\x25\x5a\x64\x2f\x64\x7f\x55\x7d\x59\xb6\x17\x2b\x18\x04\x99\x90\x27\xff\x2c\xfe\xf6\xc2\x7a\xa9\x02\xc4\x8a\xe8\x24\x83\xf5\x2f\xf5\x1d\x9d\xdb\x40\xa5\xdd\x73\x25\xb1\x2a\x89\x82\x10\x44\xbd\x36\x9e\xe9\xc6\xbc\xfd\xbe\x52\x24\x97\x06\xfd\xba\xb1\x4d\xcb\x1b\xdf\xee\x00\xb9\x9d\xa1\x26\xdd\x2f\xc8\x29\xd3\xd2\x28\x9f\x16\x17\x83\x44\xcf\x34\x49\x00\x51\x04\x32\x1e\x9b\x6e\x80\xdf\x5c\xc4\x43\xe3\xce\xbf\x69\xdc\x43\x1d\x77\xa8\x63\x09\x6d\xec\xa9\xfb\xca\x99\x76\xc4\x06\xe9\xac\xa0\x0d\xad\x31\xc0\x7e\x19\x9c\xe0\x13\x51\xaf\xc5\x06\xb6\x3d\xfb\x2b\xcf\xbd\x20\x53\x22\x08\x8b\xc8\x01\x7a\xdb\x37\x09\x03\xf9\xc9\x4c\xd2\xc6\x80\x78\x28\x81\x70\xaa\x8a\x5b\x3d\xad\x24\xea\x76\x99\xe4\x5d\x26\x79\x97\x49\x5e\x3d\xea\x5d\x26\x79\x97\x49\x5e\x9b\x03\x11\x93\x84\x28\xd2\x28\x55\x9c\xc3\xe3\xb7\x92\x2a\x4c\xef\x5f\x86\x60\x61\xe6\xd2\xc9\x16\xbf\x19\xcd\xc2\x6d\xf8\x41\x68\x16\xe6\xac\xad\x33\x3f\x94\x7e\xac\x09\xb1\x7e\x75\x93\xc4\x36\x4c\xa3\x64\x97\x38\x87\xd7\xdf\x25\xeb\xa8\x0e\xbd\xb3\x51\xa0\x60\xeb\x5e\x8e\x93\x2c\x1d\x81\x76\x13\xb7\x1e\xc3\xf7\x3b\xef\x43\xe1\xa0\x4d\x74\x7f\xa8\x7c\x74\xeb\xa4\x94\x43\xb1\xd8\x7c\x41\x3c\xb2\xb3\xde\xbc\x71\xae\xc4\x12\x33\x7c\xb7\xd3\xed\x8c\x55\x9d\xb1\xaa\x33\x56\x75\xc6\xaa\xce\x58\x85\x3a\x63\xd5\xc6\xc6\xaa\x2f\x48\xa6\xea\x0c\x57\x9d\x58\xb5\xbf\xe9\x1e\xaa\x96\x79\x48\xd6\xba\xd6\x28\xe9\x45\x0e\xd5\xda\xc8\x7b\x3b\xed\x5f\xd6\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\xed\x12\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4a\x87\xd6\xae\x55\x17\xf6\xbc\x62\x71\xba\xb0\xe7\x2e\xec\xf9\xe0\xc2\x9e\xf7\xae\xac\x64\x5c\xae\x02\x24\x32\xa5\xb3\x56\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe2\x3a\x77\x5d\xdc\x2c\x49\xd4\x87\x7e\xa3\xbb\x91\xbf\x96\xce\x71\x28\x32\x69\x31\xef\x83\x90\x42\x4f\xfe\x59\x49\xe7\x6f\x85\x97\xc9\x10\xf9\x4c\x25\xdc\x4a\xeb\x09\x7b\xc4\xea\x9f\x04\xa5\x0b\xed\x3d\x38\xc9\x55\x90\xbb\x27\xb5\x60\x95\x11\xa1\x16\xc1\x9b\x24\xcd\xd4\xe2\xbf\x46\x8c\x2a\xef\x61\xa3\x33\xc6\x85\xe1\x6a\xfa\xe3\x39\x66\x71\x42\x84\xbe\x54\x5d\x3b\x11\x66\x8c\x2b\x10\x37\x60\x06\x31\x7a\xa2\xd8\x08\x27\xfd\x9b\x61\x6b\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xcd\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xe7\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x09\x25\xb2\xe6\xdd\x12\xc6\xfc\xea\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x7d\x62\x9c\xdc\x63\xf9\xd8\x1a\xe3\xa4\xf4\xf2\x81\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x5a\x52\xe7\x1a\xce\xf4\xfe\xf2\xe3\xdb\x9e\xb5\x0d\x26\xfe\x5b\xc9\x95\x6f\xc7\x7b\xd6\x99\x69\xdf\x63\xde\xfc\x2a\x66\x7a\x30\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xee\x88\xae\x5a\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x33\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7b\x54\x2f\x63\xe6\x0e\x76\x63\x93\x18\xa0\x61\x19\xad\xdc\x9f\x21\x17\x15\x54\x94\x9e\x9d\x43\xa2\x35\x95\x61\x42\x7c\xc4\x85\x91\xbc\x62\x7b\x66\x8d\xd9\xce\x80\xf9\x9e\xa2\x3e\x8a\x6d\x6d\x7e\x41\x32\x41\x24\x61\xca\xa8\xda\xa6\xde\x95\x2b\xef\x4f\x99\xb5\x10\x9d\x63\x85\xcf\xb0\xc2\x09\x9f\x1d\xa3\xbe\x2f\xec\x4f\x25\xc2\x89\xe4\x08\x3b\xc2\x21\xb1\x6b\x02\xb3\xd8\xb1\x07\x8c\x22\x9e\x66\x34\xf1\x48\xed\xde\x8a\x4f\x59\x4c\x9f\x68\x9c\xe3\xc4\x23\x63\x8f\xd8\xe0\x89\x30\x95\x83\x0a\x87\x93\x04\xd9\x6e\xdd\x0b\x81\x7e\xee\x46\x29\x69\x4a\x13\x2c\x90\xe2\x76\xb4\xd7\xb6\x2d\x74\x3f\x27\x7e\xac\x0e\x05\x1c\xa5\xf8\x91\x48\x44\x15\xca\xb8\x94\x74\x92\x14\xc7\xf8\x61\x88\x60\xdc\x67\x17\x43\x30\x8d\x46\x0a\x71\xc3\x07\x5d\xe7\xd6\x4f\xe0\x7a\x4c\x31\x63\x04\x3a\xe6\x6a\x4e\x84\xed\xde\xbe\xfc\xd6\x56\xce\xb7\xc6\x88\x6e\xb6\x98\x86\x23\x7b\x3b\xa5\xb3\xb5\xc6\xd9\x56\xdd\x6c\xa7\x6b\x36\x2b\x9a\x2f\xe0\xa5\x6d\xaf\x0d\x5e\x50\x59\x56\x07\xdf\x85\xcb\xb6\x34\xe2\xd7\xc0\x47\xfb\x8d\x2a\x82\x9d\x16\xf8\x22\xeb\xf6\xa5\xaa\x80\x07\xae\xff\x75\xc8\x6e\x1d\x8a\x7d\x17\x80\xb1\xc7\xc5\xe9\x02\x30\xba\x00\x8c\x2f\x36\x00\xa3\x59\x9b\xa0\xf1\xce\xe9\x7a\x1b\x56\x90\xf2\x46\x01\xf1\x0b\x88\x52\x58\x3e\xb6\xad\x29\xa5\x45\xe5\x61\xfc\x2e\xa4\xfa\xda\x09\xbf\x86\x74\xdf\xd5\x29\xda\x6b\x9d\xa2\x83\x9b\x76\x27\xf8\x75\x82\x5f\x27\xdb\xb4\x9c\x70\x27\xdb\x1c\xae\x6c\xf3\x56\x0a\xcb\x97\x04\xa1\xab\x85\xa7\x52\x66\xcc\xca\x00\x5b\x03\x47\x03\xee\x81\x3c\x4b\x38\x8e\xd7\x05\xe1\xfc\x82\x0a\xb9\x66\x85\x68\x66\xda\xd5\x1f\x1c\xb8\x64\xb6\x14\x7f\x63\x46\xfe\x5b\x88\xa9\x6d\x9c\xfa\x9b\x86\xd5\x02\xfd\x42\x30\x59\x29\x28\xed\xa5\xb4\x90\x2a\x4d\xb7\x52\x38\xe4\x1f\x0f\x9c\xaa\xfd\x96\xbe\x86\x7a\xf1\x05\x3b\x08\x3a\x27\xc0\x6f\xb3\xf0\xf9\xc1\x48\xad\x9d\x6a\xd7\x65\x55\x76\x46\xfd\x4e\xf1\xed\x14\xdf\xbd\x2f\xe3\x21\x29\xbe\x6f\x28\x51\x9b\x34\x91\x17\x29\x63\xb8\x9d\x6c\xdd\x89\xd6\x9d\x68\xdd\x89\xd6\x5f\xac\x68\x7d\x18\x2b\xdc\xc9\xd5\x9d\x5c\xdd\xc9\xd5\x9d\x5c\xdd\xc9\xd5\x7b\x5f\xc6\x4e\xae\xae\xc8\xd5\xf0\x97\x4b\x93\xde\x54\xc8\x6e\x2d\x5c\xb7\xc8\x89\x7e\x2f\x92\x75\x27\x55\x77\x52\xf5\x61\x4b\xd5\x07\x33\xa1\x2f\x2f\x11\xb2\x4b\x25\xec\x52\x09\xbb\x54\xc2\xb7\x48\x25\x74\xbc\x64\x95\x84\xb2\x2c\x58\xfc\xb8\xc4\x81\x0e\x56\xb6\x28\x46\xbb\x6d\x78\xc7\xbe\x96\xda\x01\xcd\x6f\x53\x69\xaa\xf4\x9b\x6b\xe8\x80\xea\x4f\xf5\x9c\xb4\xa0\x19\x85\x1b\xdf\x7a\x84\xb0\x9f\xec\x9b\xef\x0b\x0c\x7c\x79\xd4\x5d\xfd\x29\x14\xec\x5a\x57\x7f\xea\x05\xe7\xed\x0e\xd7\x9a\x99\x3b\x1a\x35\x36\xde\x77\x3a\xed\x37\x07\x97\x6b\x3e\xe9\x6f\x1a\x2e\x57\x7b\x93\x2c\x25\xef\x9c\xfc\xb3\xf6\xa2\x78\x83\xb2\x5b\x1b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xae\xec\x56\x57\x1f\x62\x4f\xd3\xdd\x8a\xf5\xbf\xdb\xd9\x76\x45\xc6\xba\x22\x63\x5d\x91\xb1\xae\xc8\x58\x57\x64\x0c\xfd\xc6\x8b\x8c\x6d\x2c\x3e\x9a\x71\x7c\x29\x12\x64\x57\x64\xac\x13\x22\xf7\x37\xdd\xdf\x96\x10\x79\x80\x16\x84\x83\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x16\xfb\xc3\x2d\x68\x87\xff\x61\xff\xaf\xc3\xff\xe8\xf0\x3f\x1a\x66\xdd\x05\xb3\x76\xf8\x1f\xa8\x0b\xd7\xec\xc2\x35\x0f\x39\x5c\xb3\xc5\x36\x76\xf8\x1f\x2d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x46\x38\x20\x3f\x2d\x2b\x1a\x07\x2b\xa5\xb9\xb1\xfe\x76\x70\x40\x6a\xa7\x7d\x10\x2a\xc9\x2b\xe2\x80\xd4\xd1\x75\x6b\x05\xe4\x7d\xe0\x81\xb8\xd1\x76\x89\x8b\x5d\x88\xf5\xe1\x87\x58\x1f\x5c\xe2\xe2\xc1\x48\xb2\x9d\xba\xd7\xe5\x2e\x76\xb9\x8b\x9d\x32\xdc\x29\xc3\x7b\x5f\xc6\x43\x52\x86\xdf\x58\xc2\x7e\x41\x5c\x90\xdd\x64\xed\x4e\xd4\x36\xef\x75\xa2\x76\x27\x6a\x7f\xa1\xa2\xf6\x61\xac\x70\x27\x67\x77\x72\x76\x27\x67\x77\x72\x76\x27\x67\xef\x7d\x19\x3b\x39\xfb\xd5\x70\x42\xea\x84\xed\x96\xf9\x36\xef\x49\xd2\xee\xa4\xec\x4e\xca\x3e\x6c\x29\xfb\x60\x26\xd4\x61\x86\x74\x98\x21\x1d\x66\x48\x87\x19\xb2\x95\x7c\xf3\x6f\xf6\x58\x7e\x08\x6e\x62\x7f\x65\x7f\xf8\x2e\xe1\x93\xfb\x45\x46\xf4\x7f\xcf\x69\x4a\x98\x04\x69\x94\xaa\x45\x28\xcf\x34\xac\xfc\xf2\x9a\x7f\xb8\x1b\x5e\x7d\xba\x08\xb3\x69\x3e\x5c\x3e\x5c\xdc\x0f\x6f\xfa\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6e\x64\xb7\x83\xbb\xc1\xed\x8f\x90\x0d\x34\x3e\x1f\xde\xf5\xbf\xbb\x28\x11\x44\xe9\x79\xff\xec\xaf\x0f\xc3\xdb\xe6\xe7\x83\xff\x1e\xde\xdd\xdf\x35\x3d\xbd\x1d\x5c\x0c\xfa\x77\xcd\x5f\x7f\xec\x0f\x2f\x1e\x6e\x07\x2b\xd7\x63\xe5\x68\x57\x2b\x21\x12\x16\x09\xe2\xfc\x51\x64\xb9\x86\x28\xd6\x10\x79\xf1\xd1\xb1\xc3\xba\xbe\x4e\xd1\x83\xd5\xe9\xa9\x6d\xdc\x30\xd8\xa0\x21\xa3\x8c\xc4\x54\xe2\x49\x42\xe2\xa5\x96\xdc\x1a\x36\xb5\x84\x4b\x83\x7a\xd6\xda\xb3\x17\x39\x35\xcf\x8b\x0c\x2f\x40\x90\xa3\xa8\x08\x8b\x6b\xfa\x30\xfb\xd0\xd8\x03\xd3\xbc\x8b\x3e\x91\x52\x4f\x51\x2e\x04\x61\x2a\x59\x20\xf2\x99\x4a\x25\x97\x1a\x75\xdb\xd7\xd4\xac\xbd\x53\x7d\x83\x73\x2c\xd1\x84\x10\x56\x1e\xbf\x20\x09\xc1\xb2\x66\xcc\x76\xf7\xdb\x2d\x8b\xdf\x2b\x6b\x8d\x31\x97\xd1\x14\xd3\x24\x17\xa4\x72\x5a\x78\x9a\x61\x41\x25\x67\x83\xcf\xfa\x2e\xd3\x07\xf9\x1a\x3e\xe7\x62\xbb\x13\x33\xf8\x6b\x48\xc1\x57\xe5\x7f\x7e\xba\x2f\xff\xab\x74\xe6\x2f\xee\xcb\xff\x5a\x4d\xeb\x41\xc3\x55\xca\x3e\x42\x9f\xee\x4f\xd1\x27\x08\x71\x12\xe8\x7e\x8e\x0d\xc5\x5e\xdc\x9f\xa2\x0b\x22\x25\xfc\x52\x7c\xac\xa8\x4a\x60\x6e\xdf\x51\x86\xc5\x02\xb9\xe9\x9b\x44\x57\x1c\xcd\x11\xf1\x4b\x53\x5d\x3c\xf6\xf7\x9c\x81\xea\x5e\xac\xde\x05\x9f\xd1\x08\x27\xbb\x2d\x62\xff\xaa\xc4\x07\xae\x6f\x57\x2e\x45\xf8\xf6\xf2\x5a\xf4\xaf\xce\x21\x89\xd4\x0d\xb5\x66\xe6\x57\x44\x6a\x22\x89\x38\x8b\xad\x97\x46\xdf\xfe\x8b\x40\xa8\xff\x3b\x87\x44\xdc\x5c\x52\x36\xd3\x2d\xa2\x13\x74\x7d\x3b\x62\xd7\x22\x36\x86\x50\xa2\xa5\x61\x43\x73\x54\x22\xc6\x15\xa2\x69\xc6\x85\xc2\x4c\x69\x45\x00\xc4\x00\xbb\x22\x86\x03\x9c\xf1\x34\xcd\x15\xd6\x07\x6d\x69\x51\x99\x31\x87\xdc\x11\x35\x8c\xc1\xb5\x52\xb3\x86\x46\x4e\x28\xe6\x92\x09\xdd\xbe\x96\x51\xca\x3a\x34\x8d\x97\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xcb\x20\xcf\x7f\xd5\x1a\x08\xce\x4c\x52\x05\x11\x7d\x11\xcd\xa9\x22\x91\xd2\x47\x70\x2b\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\xd0\xbf\x3c\xff\xf3\x7f\x94\x7e\xb8\xbd\x5c\xfa\x61\xfc\xe3\x9f\x97\x7e\xf9\xff\xad\xa4\xa7\x6a\x4f\x4b\x7a\x7e\x30\x97\x23\x10\xa9\xc1\x26\xec\xa6\x8a\x68\x8a\x67\x04\xc9\x3c\xd3\x14\x20\x8f\xcb\xfb\xab\x45\xca\x0b\x8e\x63\xca\x66\x26\x03\xf4\x82\x2a\x22\x70\x72\x89\xb3\x8f\xce\x7e\xbd\xc5\xea\xfc\xdf\xbb\x52\xbe\xee\x87\x9f\xfb\x97\x61\xc6\xef\x87\x9b\xdb\xeb\xfb\xeb\x95\xb3\x2e\xb5\xb0\x7c\x8c\xf4\xe3\x53\xf8\x5f\x74\x82\x74\xeb\x5e\xf2\x4d\x89\xc2\x5a\x23\x40\x5f\x9b\xa4\x39\x9f\x48\x43\x59\x02\xa7\x26\x13\x34\xa5\x70\xa5\x18\x0b\xde\x37\x46\xb8\xf6\xda\x83\x3f\x37\xe6\x03\xd0\x96\xdd\xa5\xcc\x62\x2c\x62\xf4\x77\x59\x4d\x1f\x07\xc3\xb1\xf9\x81\xc4\xe8\x08\xcd\x95\xca\xe4\xe9\xc9\xc9\xf3\xf3\xf3\xb1\x7e\xfb\x98\x8b\xd9\x89\xfe\xe3\x88\xb0\xe3\xb9\x4a\x13\x93\x2e\xaf\x57\xe1\x14\xdd\x08\xae\xaf\x10\x50\xd0\x89\xa0\x38\xa1\xbf\x92\x18\x4d\x0c\xff\xe3\x53\xf4\x4b\xc4\x05\x39\x2e\x36\xc6\x1a\x95\xec\x3d\x62\x0d\x4f\x27\xfa\xa5\x1a\x66\x52\xdd\x4f\x14\x93\x88\xc6\x56\xcc\x20\x2c\xe2\x60\x79\x34\xbe\x0a\xdd\x9e\xcb\x34\xd4\x1a\x4d\x96\xab\x62\x39\x03\x65\x05\xc7\x24\xc8\x76\x57\xbc\x4c\x70\x5a\xf1\x19\x1a\xb5\x35\xd7\x2a\xba\xbe\x5b\x31\xdc\xaa\xee\xd5\x4c\x4f\x38\xe2\x09\x9a\xe4\xd3\x29\x11\xa1\x43\xba\xa7\xb5\x19\x2a\x91\x20\x11\x4f\x53\x90\x18\xf4\x57\xb9\x34\x54\x0d\x2b\x66\x47\x7b\x3c\x62\xb0\xff\x5a\xcd\x01\x0a\x88\x39\xb0\x3a\x46\x48\x8c\x30\x5b\x98\x6e\x26\xf9\x34\x6c\xdf\xc0\x50\xe0\x18\x51\x35\x62\xfd\x24\x41\x82\xa4\x5c\x91\x20\x87\x12\x9c\x67\xe5\x05\x07\x16\x29\x48\x96\xe0\x88\xc4\x86\x1e\x12\x1e\xe1\x04\x4d\x69\x42\xe4\x42\x2a\x92\x86\x0d\x7c\x0d\xb6\x1a\xbd\x66\x54\xa2\x98\x3f\xb3\x84\x63\x3b\x8f\xea\x67\xdf\x94\x4f\xe3\xc0\x41\x04\x0c\x84\xe0\x02\xfe\xe7\x07\xca\xe2\xbd\x71\xa8\x87\xbb\xc1\x6d\xf8\xef\xbb\x9f\xef\xee\x07\x97\x9b\x71\x1f\x4f\x59\x30\x3c\xd0\xe1\x4f\xd1\x9d\x59\x04\x2e\xb4\x44\x24\x1a\x26\x75\x69\x49\xa9\xf8\x81\xc7\x5b\x72\xdf\xcb\xfe\xd5\x43\xbf\xc4\x51\xee\xce\xbe\x1f\x9c\x3f\x54\xf4\x01\x3b\xbf\x92\x0c\x6f\xd4\xbf\xf0\xb7\xb3\xef\x87\x17\xe7\xe3\x1a\x85\xf1\xc3\xed\xe0\xec\xfa\xc7\xc1\x6d\xa1\xdb\xd5\x2e\x51\x65\x30\x55\x66\x75\x6f\x98\xd2\x9c\xc7\x68\xb2\xa8\x07\x84\xd0\x92\x73\x02\xbe\xd8\x02\x12\xc5\xb4\x7a\x0a\xbc\xc9\x61\x73\x14\x5f\xa4\x3c\x26\x3d\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\xeb\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x53\xd4\x47\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x9a\xa1\xb9\xcd\xd2\x8b\xd0\xb8\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\xd7\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\x51\xdb\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa6\x8d\xf2\x31\x19\x5e\xdf\x29\x81\x15\x99\x2d\xce\x2d\xcb\xd8\xfe\x78\x9c\x5f\xff\x74\x75\x71\xdd\x3f\x1f\x0f\xfa\x9f\xca\x27\xde\x3f\xb9\xbb\xbf\x1d\xf4\x2f\xcb\x8f\xc6\x57\xd7\xf7\x63\xf7\xc6\x4a\x92\x6f\xe8\x60\xf9\x9e\x2e\xbf\x78\x8a\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x53\xb0\x8c\xd5\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb0\xf8\xe8\x7a\x7a\x74\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x63\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd1\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x1a\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\xcb\x54\xf5\x90\xed\x46\x53\x0f\x37\xb0\xe2\x46\x63\x2f\xe9\x86\xf6\x49\x0d\xad\xc1\xc4\xcd\xe3\xd5\x97\x4c\x7d\xdb\xcb\xe4\x54\x7e\xb1\x86\x9c\x4c\x2e\x95\xde\xf9\xa9\xd6\x36\x6b\x68\x89\x7c\xa6\xd6\x60\x10\x8e\xbb\x42\x42\x45\x33\x60\x5e\xc5\x59\x46\xb0\x90\x75\xbb\x5d\x16\x03\x1b\xf6\xde\xf4\x14\xf6\x61\x37\xd9\xf5\xd3\x43\x9c\x81\xc1\xc1\x0b\x11\x15\x8a\x6c\x41\x03\xa6\xad\x25\x0a\xb8\x01\xb4\xa5\x6b\x8b\x6c\x74\x49\xa5\x56\x1a\xcd\x8f\xdf\x59\xc8\xa5\xed\x08\xe2\x63\x7f\x78\x51\x11\x2e\xc6\xe7\x83\x8f\xfd\x87\x8b\xd5\x66\xc2\xd2\x77\xd5\x2d\x46\x47\x48\x3f\x2f\xfb\xcd\xe9\xd4\xdc\x19\x0e\x38\xca\xa8\xb4\x84\x81\xd1\xca\x42\xd5\x18\x7b\x75\x4c\xb2\x84\x2f\x52\xc2\xc0\xc4\x53\xba\x09\xf5\x7a\x4e\x31\xb5\x57\x4b\x30\x58\xb0\xe2\x58\xb3\x1b\x5c\x63\x47\x0e\xad\x8a\xc4\xfe\xe6\x2d\x83\x55\x55\x58\xf7\x8d\xf1\x9e\xd9\xff\xdc\x29\xac\xb6\x3c\x63\xfd\xb3\xfb\xe1\x8f\x83\xb2\x7e\x78\xf6\xfd\xf0\xc7\x3a\xa9\x66\xfc\x69\x70\x35\xb8\xed\xdf\xaf\x11\x4e\x2a\x4d\xd6\x09\x27\x52\x0f\xb8\xea\x3d\xa5\xd2\x47\x04\x45\x06\xf2\x0a\x51\x25\xd1\x13\x95\x74\x42\x01\x20\xcc\x7a\x22\x1f\x86\xc0\x59\x9f\x70\x42\x63\xaa\x16\x4e\x7c\x31\xfd\x96\xf7\x51\x73\x52\xdb\xbe\x31\x3b\x84\xfe\x49\xb0\xf2\x99\xcd\x71\x93\x3e\x45\xa0\xdb\x3e\x81\xd2\x16\x7c\xc6\xb4\x20\xcd\x66\x44\x98\xe1\x80\xf7\x25\x1c\x4b\xf0\x5c\x8f\x2a\x14\x56\x8a\x55\xf3\x42\xeb\x8c\x30\x22\x00\x04\xce\x77\x62\x04\x29\x41\xd8\x57\x5a\xe6\xca\x12\x1a\x51\x95\x2c\x50\x04\x36\x2c\x30\x67\xa6\x98\xe1\x99\x15\x0e\x40\xcd\xa9\x90\xc4\x5f\x0d\x8a\xda\xf5\xd4\x9a\xf6\xef\x29\xd9\xf2\x98\x3d\x5c\x9d\x0f\x3e\x0e\xaf\xca\x24\xf0\xfd\xf0\x53\x49\x84\xbd\x1c\x9c\x0f\x1f\x4a\xb7\xb9\x96\x64\x57\xcb\xf5\xd5\x66\x6b\x8e\xa2\x7f\xe9\x14\x9d\x9b\x4f\x4f\xf5\xe2\xd6\x40\xc4\x79\xe5\xb7\xb2\x0e\xb7\x2e\x24\xcf\xfd\x31\x60\x4a\xd4\xfa\x25\xda\x9a\x90\xac\x0f\xb2\x64\x43\xaa\x0f\x55\x58\xea\xfb\xaa\xea\x54\xae\x4e\xd9\xbd\x08\x41\x97\xc7\x85\x65\x29\x8c\x61\x00\xa3\x41\x93\x11\xab\xc6\xad\x55\x30\xec\x1f\xc1\x45\x9d\xe6\x52\x19\x57\x22\x10\x27\x7a\xfc\x8b\xd4\x0b\x0a\xae\xc6\x63\x74\x47\xc8\x88\x39\xeb\xc1\x8c\xaa\x79\x3e\x39\x8e\x78\x7a\x52\xe0\x13\x9e\xe0\x8c\xa6\x58\x4b\xd2\x44\x2c\x4e\x26\x09\x9f\x9c\xa4\x58\x2a\x22\x4e\xb2\xc7\x19\x44\xc0\x38\x77\xea\x89\x6f\x76\xc6\xff\xfd\xe2\x4f\xdf\x1e\x5d\xfc\xe5\xdb\x0f\xcb\x16\xb2\xa6\xfd\x1f\xb0\x08\x67\x32\x4f\x6c\xc4\x9c\x08\xd7\xc6\x1d\xf9\x9c\xac\xdb\xef\xab\xf2\x76\xed\xa6\xbf\x9e\xdd\x3c\x94\x2c\xd6\xe5\x7f\x5e\x0e\x2e\xaf\x6f\x7f\x2e\x71\xca\xfb\xeb\xdb\xfe\xa7\x12\x43\x1d\xdc\x7c\x3f\xb8\x1c\xdc\xf6\x2f\xc6\xee\xe1\x2e\xb6\xb7\x1f\x18\x7f\x66\xe5\xa5\x91\x8e\x03\x2e\xf5\x74\x8a\x3e\x72\x81\x7e\xf0\x3b\x79\x34\xc1\x12\xae\x18\x77\x67\xc9\x1e\xca\x78\x0c\x8c\x17\x91\x6c\x4e\x52\x22\x70\x62\x6d\x06\x52\x71\x81\x67\xe6\xa6\x97\x91\xc0\x2a\x9a\x23\x99\xe1\x88\xf4\x50\x04\xd4\x30\xeb\xc1\xa6\x80\xaa\xc5\x67\x55\x3b\xdf\x6d\xce\x14\x4d\x89\x53\xc1\xed\x3f\xef\xcd\x66\x6c\xb1\x39\xd7\xf7\xdf\x97\x85\xbd\x8f\x17\x3f\xdf\x0f\xc6\x77\xe7\x3f\xac\x5c\x4f\xf3\x59\x69\x64\x77\x10\x80\x74\xc6\x93\x3c\x65\xe1\xdf\xdb\x8f\x6d\x78\x75\x3f\xf8\x54\x1d\xdd\x75\xff\xbe\x4c\x19\xb7\xe5\x00\xb7\x0f\xdf\x5d\x5f\x5f\x0c\x4a\x2e\xe1\x0f\xe7\xfd\xfb\xc1\xfd\xf0\xb2\x44\x3f\xe7\x0f\xb7\x06\x8d\x70\xd5\x34\xdd\x08\x6a\x26\xaa\xa7\x15\x4e\x73\xdf\xac\xb0\x15\x27\xea\xdb\x80\x72\x73\x96\x8f\x02\xb8\x1d\x13\x0e\x06\x56\x9d\x23\x6f\x52\x8d\xcc\x48\x6b\xd9\xa1\x2a\x6f\x13\x6a\x66\xc7\x2b\x37\x7a\x15\x57\xbe\xf7\x43\x30\x50\xa0\x46\xd9\xc6\x49\xc2\x9f\x4d\x28\x6f\x4a\xf5\xad\x6c\x81\xd1\xf4\x2b\xb2\xf0\x10\x1e\xd7\x70\xbc\xf2\xb6\x90\x48\x10\x75\xc9\x73\xa6\xb6\x27\xb9\xfe\x55\x89\xef\x0c\xae\x7e\x1c\xff\xd8\x2f\x53\xe0\xf0\x62\x35\xab\x09\x9b\xa8\xb9\x8a\xfb\x57\x3f\xfb\x4b\x18\x02\xbe\x7b\x5e\x43\x35\xb2\x6b\x94\x50\x2d\xf6\x46\x58\x6b\xaf\x09\x48\x34\x88\x50\x30\x39\xa4\x7a\x72\x10\x60\x9a\x19\x7f\x92\xe1\x4f\x66\x90\xa7\xee\x8f\x4a\x7b\x12\xd6\x05\xac\xa9\x2e\x9e\x1e\xda\xb1\x5a\x35\x43\x84\x3d\x51\xc1\x01\xcf\x16\x3d\x61\x41\xb5\x34\x6e\x5a\xd6\x73\x3d\x85\xff\xdd\xac\x4d\x30\x8c\x56\x18\xd7\x1d\x17\xea\xdc\x07\xf2\x6e\x67\x0d\xa9\x0b\x68\x5d\x0e\x65\xad\x37\x74\x2c\x7f\x5b\xb3\x39\x3b\x06\xfc\x96\x27\xfc\x8f\xe4\x9c\xe2\x44\x33\x80\xfd\xc9\x8b\xfd\xab\xbb\x61\x59\x7e\x2c\xab\x19\x01\x5f\xde\x5a\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd1\x70\x0a\x2c\x41\xbf\xce\x50\xce\xac\x03\x4c\x5f\xb8\x66\x90\x3d\x2d\xca\xda\x21\x78\x0d\x11\x0c\x2f\x8c\xb8\x60\xa9\x62\xf0\x23\xf6\x93\x77\xa2\xc1\xa3\x29\xd7\x0c\x48\xef\xa2\x6d\xef\x14\x61\x26\x69\x0f\x69\x85\xa5\xba\xa7\x90\x3a\xa0\x15\x4a\x1b\xc2\xa5\x39\x8d\xfd\xf3\xf5\xaf\x81\xa5\x38\xe1\xf0\x32\xa8\xbf\x0b\x2a\x57\x41\x83\x68\x9c\x18\x8f\xc9\xb8\xfd\x9d\x10\x71\x41\xac\x9f\x65\xe3\x6b\x60\x1d\x63\xbf\xc7\xf2\x71\xc9\xf7\x30\x64\x52\x61\x16\x91\xb3\x04\xcb\x2d\x83\x90\x9c\x8d\xa3\x57\x96\x38\x6e\x6f\x1f\x6e\xee\x87\xdf\xad\xe1\xf2\xd5\x8f\x97\xc3\x80\xa2\x24\x77\xee\xb9\x89\xe0\x38\x46\x9a\x7d\xce\xb8\x71\x05\x5a\xc1\xbf\x80\xfe\x36\x79\x3d\x3e\xa0\xb2\x04\x3b\x5e\xa4\x23\x58\x3b\x47\xe8\x4a\xa0\x76\x21\x50\xa4\x57\x02\x05\x26\x0f\xb7\xd5\xe0\x59\x34\x05\x49\xac\x75\x2b\x4b\xb0\x9a\x72\x91\x1a\x2e\x5f\x9a\xb4\x69\x7c\x75\xa3\x94\x29\x22\x44\x9e\x29\xea\xb0\xdc\xab\x52\x2a\x54\x78\xe7\xb3\x4b\x22\x25\x9e\x91\x5d\x1c\xd0\x75\xca\xc3\xdd\x8f\xe1\x3f\xc1\xc1\xdc\x46\xf6\x2f\x8d\xd0\x45\xbe\x3b\x7a\xba\x66\x1f\x4d\x20\xcf\x0d\x4f\x68\xb4\x65\xc0\xdd\xc7\xfe\xf0\x62\x3c\xbc\xd4\x4a\x7c\xff\x7e\x70\x51\x12\x25\xe0\x59\xff\xe3\xfd\xe0\xd6\x82\x58\xf7\xbf\xbb\x18\x8c\xaf\xae\xcf\x07\x77\xe3\xb3\xeb\xcb\x9b\x8b\xc1\x9a\xc8\x9c\xc6\xc6\x97\xad\xab\xd5\x57\x4f\x97\x7e\x81\x1d\xd6\xbc\x2c\xb4\x97\x41\xd6\x18\xa6\x09\x38\xc1\xb9\x71\x86\x63\xc4\x78\x4c\xe0\x67\xe9\xac\x33\x1e\x39\x1a\x0d\xd5\x57\x49\x82\x70\xae\x78\x8a\xc1\x6b\x93\x2c\x46\x0c\x4f\x34\x6b\xc5\x49\x12\x84\x77\x89\x9c\x31\xcd\x62\x75\x63\x06\xa2\x3d\x4a\x88\x66\xe7\x59\x90\xec\x67\xfd\x06\x53\xca\x20\xd2\x36\xc5\xe2\xd1\xb8\x99\x8a\x2e\x8b\x43\x21\x11\x96\x23\xa6\xc7\x45\xac\x61\xa8\xcd\x0a\x9f\xb6\x7a\xab\x71\x75\x52\xfc\x48\xf4\xaa\xa4\x79\x34\x47\x99\xe0\x33\x41\xa4\xb4\xb6\xe5\x08\x33\x13\x80\x60\x5f\xd7\xd7\xd0\x88\x31\xae\x97\xc2\x99\xb0\x63\x92\x11\x16\x13\x16\x51\x93\xd6\x07\xbe\x7b\x6f\xda\x9c\x09\x9c\xcd\x91\xe4\xe0\xf4\x86\x65\x07\xfb\x95\xf9\xc8\xdd\x64\x66\xc6\xe6\x71\x68\x81\x16\xb9\xe6\x13\xd7\x20\x27\x9a\x55\x86\x8f\xdd\x65\xe8\xdc\x2e\xc6\x0e\x98\x66\x09\x51\x06\xac\x1f\x96\x1c\x36\x43\xaf\x75\x69\x3f\xf4\x36\xd5\x6d\x82\xbe\xb0\xdd\x98\xb1\xb4\x23\x3a\xae\xb1\x6c\xdb\x23\x85\xbe\xc7\x2c\x4e\x74\x2b\xce\x87\x51\x3e\x8b\x90\x8a\xd2\xd7\x54\xe3\x4e\xe3\x2e\xb7\x68\x84\x73\xb9\xcb\x35\x5a\xc9\xc5\x34\x56\xc1\xa3\x22\x28\x04\xc8\xdb\x26\x62\xc2\xea\x66\x9a\x45\xe2\x84\xdb\x55\x32\xaf\xe7\xa6\xfe\x13\x82\xd1\x34\x5c\xb3\x99\xa0\x2c\xa2\x19\x4e\xb6\xd2\xfd\x2a\xc1\xf8\x36\xc6\xfd\x6b\x3a\xd5\xe4\xf3\xcd\x92\xdb\x56\x11\x91\x42\x82\xb2\x1d\xa6\xdf\xc2\x0d\x2c\x49\x36\xab\x81\xc8\x22\x9a\x04\x0b\x9e\x1b\x7f\x1c\xac\x0b\x89\x6b\x8e\xea\x71\xdd\x76\xeb\x93\x81\xcb\x01\xd0\x5b\x6c\xb6\x89\xfc\x69\x5a\xbf\x4a\x2b\xb6\x77\x13\x8c\x87\x93\x9b\xfa\x36\xeb\x76\x20\x78\xf8\xaf\x55\xb4\x73\x89\x33\x4d\x33\x16\xb6\x1f\x17\x73\xb4\x4a\x92\xad\x0a\xe6\xe2\x67\x02\xdf\xb9\xcf\x0b\x69\xbf\x1b\xc5\x12\xda\x00\xa8\xe5\x4e\x4a\x31\x04\x41\x8e\xb9\xa5\xf1\x69\xae\x65\x59\x84\x21\x0a\x01\x7d\x4d\x8e\x67\xc7\xc8\x15\x61\xe8\xa1\xfe\xcd\xcd\xe0\xea\xbc\x87\x88\x8a\xbe\x71\x31\x8b\x36\x60\x69\xc4\x14\xb7\xd2\xca\xc2\x15\xd0\x48\x89\x98\x91\xd2\x9c\x5d\x74\x13\x84\x2a\xcf\xa8\x54\x36\x7c\x56\xf3\x95\xa0\xd4\x09\x4d\xab\x62\xb6\xa1\x90\x5c\xcd\x77\x21\x0d\x2c\x65\x9e\x6a\x5d\x76\x4c\x71\x3a\x16\x3c\xd9\x85\x29\x9c\xc3\x54\x40\x5d\xf6\xe9\xf9\x14\xa7\x48\x37\x6b\x43\x41\xbc\xcb\xd1\x8b\x74\x5a\x30\xd2\x7c\x59\xdf\x9b\xc1\xbd\xe5\xbc\x0f\x36\x1e\x8d\xba\x10\x08\x48\xdf\x6f\x60\x15\x85\xd9\x78\x6c\x2d\xf5\x63\x1c\x45\x5a\xe5\xde\xf3\xa4\x82\xfa\x39\xce\x25\x60\x3b\x7a\xb1\x69\xae\xa3\x73\x37\xcc\x4c\x73\x30\x08\x06\xd6\x57\xae\xe4\x11\x2d\xda\xaf\xe9\x77\xb2\x58\xea\xd5\x55\xb8\x79\x90\xde\xa4\x62\x2e\x61\x49\x60\x27\xa5\xa9\x90\xa3\xe6\x64\x81\xe6\xf8\x89\x94\xba\x74\x09\x31\xba\xe1\x05\xcf\x45\x1d\xa3\x1b\xb1\x73\x92\x09\xa2\x25\xfd\xaa\x03\xc5\xd3\xf4\x6d\x99\x12\x3b\xba\xee\xe8\xfa\xdd\xd3\xf5\x99\x29\x94\xd4\xf7\x85\xb1\x76\x12\xe0\x4c\x63\xe3\x8c\xf3\x64\xdc\xc2\x26\xd2\x7e\xc5\x4b\x9e\xb0\x4a\xd9\x28\x80\x04\xe0\x39\xc8\x47\xa5\x6b\x93\xeb\xbb\x2e\x48\xb1\xb5\xc3\x5b\xb1\x0c\xce\x65\x16\xd4\xcb\xd9\xe5\xbc\xd7\xb5\xb2\xaa\x25\xf4\xe2\x62\xce\x99\x91\x6f\xbc\xbb\x2c\xac\x7f\x5a\x3a\x4c\x4e\x14\xa1\x6c\xa9\x1a\x9b\xa1\x67\xbd\xc0\x46\xee\xf8\x47\xce\x15\x96\xdf\x1c\x8f\x98\x16\xa2\x1e\xc9\xc2\x98\x5b\xb5\x98\xf2\x3b\x2d\x8b\x1f\x49\xc2\x24\x84\x7b\xff\xce\xb8\xe7\x34\x89\x3b\x73\xb5\x51\x4d\x4d\x11\x38\x08\xba\xf6\xbd\x40\x88\xae\x6d\xd4\x4a\x49\x45\x00\x34\xc8\xf9\x66\x2e\xf6\x99\x19\xfe\x8c\x28\x48\xb1\x56\x54\x81\xce\x14\x9b\x2a\x73\x4b\x43\x5f\x6b\xba\x32\x54\x21\x38\xf8\x49\xe2\x7c\x37\xc6\x2f\x97\xdb\x58\xcb\x19\xbd\xb6\x70\x67\x63\xde\x4f\x9c\xdd\x28\x12\x7c\xa9\x74\x1b\x96\xc8\xec\xf4\xc4\xb0\x03\xe7\xbf\x26\xec\xf8\x99\x3e\xd2\x8c\xc4\x14\x43\x04\xbc\xfe\xd7\x89\x9e\xd7\xbf\x9f\xdd\x5e\x5f\x8d\x8b\x4c\x9e\xff\x1a\xb1\x7e\x22\xb9\xcf\x52\x40\x8c\x33\x1f\x6e\x9f\x09\xe2\x44\x42\x3b\x17\xb0\xba\x16\x66\xc4\x11\x6b\x1a\x41\xcc\x23\x79\x8c\x9f\xe5\x31\x4e\xf1\xaf\x9c\x81\x2b\xbd\x0f\x7f\x9e\x25\x3c\x8f\x7f\xc2\x2a\x9a\x9f\xc0\xb9\x56\x27\xe4\x89\x30\x65\xdc\x54\x7a\xb9\x62\x48\xde\x95\x10\xad\xff\xef\x7a\xcc\x45\x52\x91\xd4\x9a\x6c\x44\x32\x85\xfe\x1f\x41\x26\x9c\xab\xfa\x4b\x8a\x4f\xa7\x92\x6c\x74\x21\x15\x4a\xda\xdd\x35\xfa\xcb\x9f\xbf\xfd\x83\x26\xa1\x6d\xd6\x78\x78\x77\x3d\xd6\xdf\xff\xfb\xb9\xfd\x5e\x6e\xc0\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x75\xdc\xed\xbc\xd4\xfa\x6e\x2a\xdb\x56\x8b\x09\x2a\x76\x30\x47\x74\x84\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\xd5\x6f\x60\x2e\xe8\x56\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\x48\xcf\x40\x7d\xdd\xfd\xc9\xc5\x56\xc3\x34\xe1\x91\x4b\x6a\xb1\x26\xb9\x78\x52\x3f\xf3\x69\xd5\xf4\x8a\x9a\x6d\xf8\xd5\x4d\xb6\x66\xdb\xfa\xa5\xb1\x49\x28\xd6\x86\x55\xdd\x99\xfa\xc1\xd0\x88\xb3\x71\x42\xd9\xe3\x56\x9b\x71\xed\x44\x39\xdd\x82\x5d\x33\xdd\xa2\xb7\x73\x1b\x0b\xc8\x06\xe7\xe3\x63\x9e\x24\x26\xb5\x25\xdc\x1e\x90\xbb\xcc\xba\x81\x30\x90\x99\x1c\x50\x12\x5b\xbf\x97\xd5\x84\x05\x61\x10\xf0\x36\x62\x93\x85\xf5\xd9\xca\x1e\x92\x79\x34\x77\x99\x79\x11\x67\x52\x8b\xd1\x5c\xa0\x88\xa7\xa9\x29\x6e\xca\x08\x52\x9c\x27\xd2\x46\xbb\xb3\x23\x85\x23\x35\x62\x45\x7f\x6b\x4e\x9e\xa9\x80\xb4\x5b\xea\x5e\x7b\x97\x4e\x51\x69\x69\xa5\xc0\x4d\xe3\x10\xb3\x01\x8c\x60\xc6\x13\x15\xa0\x3f\xf0\xe5\xb3\x64\x36\xac\x41\x33\x90\x73\x2e\xd4\x38\xae\xe5\x39\x6b\x89\xa6\xca\x08\x19\x39\x4a\x20\x68\x98\x3f\x69\xe1\x9f\x3c\x7b\xe3\xeb\xaa\x21\x68\xaa\x5e\x35\x82\x76\xc7\x68\xe5\xc8\x36\x25\xc1\x86\xb5\x32\x08\x1e\x51\x39\x26\x7c\xdd\x18\xef\xe0\xab\x33\xfd\xd1\xca\xc5\xab\x9e\x3b\x27\x04\xf1\xb8\x00\x9b\x33\xf7\xba\xcd\x08\x59\xb5\xa6\x16\x3a\xe1\xe5\x32\x47\x57\x4d\xe5\xa1\x6c\xc9\xd5\x63\x01\x93\xbd\x24\x20\x6b\x62\x31\xa1\x4a\x60\x51\x42\x0a\xf1\xfa\xa0\x24\x58\x40\x7c\xd6\x88\x19\xdc\x38\xa3\x29\xc4\x28\xa6\x12\x12\x44\xe0\x2e\x0d\x9c\x61\xa8\x9d\x12\x58\x39\xda\x45\x9e\xa3\x89\x3f\x87\xc0\xb2\x82\x34\x1c\xb3\xd3\x1d\x79\x7c\x2c\xad\x9f\xf1\x28\x2f\x04\xb9\x08\x24\x5c\x8b\xa9\x83\x28\x93\x74\x36\x57\x88\x32\x6b\x77\xc4\xc9\x8c\x0b\xaa\xe6\xa9\xec\xa1\x49\x2e\xb5\x16\x6a\x82\xd5\x4c\x3c\x0a\x51\x51\x2b\x2e\xb4\x6b\x12\x71\x5c\x69\x70\x59\x45\xd9\x82\x34\xda\x1d\xca\x41\xe5\xae\x58\x43\x38\x7d\x8f\x33\x58\x6d\x83\x42\xdd\x46\x03\x4f\x89\x4c\x1c\x20\x77\xc8\x4e\x50\x05\xa4\xe9\x1c\x00\x2a\xe4\xde\xbc\x14\xaf\x51\x88\x0b\x99\x64\x50\x41\x5c\xec\x36\x48\x5e\x65\x64\x4a\x83\xde\xe4\x9d\x4e\x69\xa6\x6a\x03\xb7\x96\x5d\x45\xb7\x01\xe6\x4f\xbb\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\x9a\x81\xdc\x96\xf6\xde\x94\xc6\x85\x29\xd8\x44\x8f\xd5\x24\xbf\x8b\x13\xfb\x7c\x70\x77\x76\x3b\xbc\x31\x90\x13\xd7\xb7\x97\xfd\xfb\x71\x8d\x5f\xbb\xe6\xad\xcb\xfe\xed\x0f\xe7\xeb\x5f\xfb\xfe\xbe\x9c\x95\x5d\xf3\xca\xed\xdd\xea\x64\x8e\x16\x43\xac\x49\x0a\xab\xed\xe7\x14\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x84\x4c\x46\xb0\x82\x10\x22\x21\x55\x8d\xe3\xf0\x1e\xe2\x72\xd6\x4b\x98\xe5\xcd\x32\x30\x6c\x7b\x15\x8d\x36\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x22\x02\x7d\xc7\x78\x9f\x73\x2a\xb3\x04\x2f\x96\x7a\x58\x77\xe5\x5c\xe1\x94\x40\xc4\x71\x81\x1f\xe7\x92\x45\xf4\xce\x40\x02\x93\xbf\xd7\xe9\x14\x32\x99\x14\xc5\x8a\xa0\x09\x51\xcf\x90\x37\xe7\x7e\xf5\xb6\x54\x17\x30\x22\x8f\x47\x0c\xcc\x39\x23\xbd\xc8\x71\x0e\xd1\x7e\xa3\x0f\x3d\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe1\x92\x19\xa4\x98\x26\x57\x5c\x79\xcb\xdc\x2e\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\x9b\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x6b\x77\x80\x3d\xbd\xa0\x4b\x76\xd7\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\xb6\x74\xcd\xd6\xc5\xbc\xbe\x88\x93\x76\x50\xd3\xd1\x01\xb9\x6b\xeb\xd7\x61\x37\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x5b\xaa\xad\x0f\x4d\x4a\x6a\x63\x08\x03\xaa\x2a\x5e\x19\x89\x36\xd0\xb8\xfc\x00\xef\xf4\x77\x6b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x6b\x47\x1c\x25\x5c\x96\xb1\x72\x5a\x0f\xfa\xcc\x7e\xba\x6a\xdc\x83\x90\x7c\xb5\x5c\xb8\x51\x40\x43\xcd\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\xdd\x43\x14\xa2\x2d\x41\x21\x4b\x0a\xe4\x00\x16\xa3\xc2\x0d\x32\x62\x45\xcc\x8a\x44\xcf\x24\x81\x30\xb7\x88\xa7\x19\x98\xf8\xed\x70\x6d\x4b\x24\x36\x11\xc3\x3d\xc4\x73\xa5\x1b\x33\x39\x39\xce\x88\x6b\x13\x7e\x0a\xb7\x87\xf1\xbd\xd9\xe0\x77\x0f\x2c\x6d\x68\xdd\xdc\xa5\x94\xa1\x4f\x44\x41\x2b\x00\xdc\x1f\x4e\x10\xf4\x84\x6a\x08\x65\xfd\xda\xef\x70\xa2\xec\x4c\x36\xd8\xf9\x02\x38\xe5\xbb\x84\x4f\x56\x1b\x09\xa0\x71\xf4\x70\x3b\x74\x16\xc9\x22\x7e\x2a\x40\x2f\x2e\x79\x14\x07\x37\xb7\x83\xb3\xfe\xfd\xe0\xfc\x18\x3d\x48\xa2\x97\xc7\x4f\x17\xf2\xab\xbd\x4a\x62\x46\x6e\x91\x58\x98\x54\x04\x37\x19\x42\x88\x10\xa5\x2c\xe8\x35\x8c\xa3\x0c\xd3\xb2\x9a\xb0\x01\x24\x85\x5a\x43\x1d\x00\x0b\x55\xe7\x69\x23\xf3\xd6\x9d\x40\x88\x93\x1a\xbf\x9f\x28\x35\x33\xde\x74\x39\x32\x6f\x1d\xf9\x94\x23\xfa\x5e\x7a\x32\x70\xb4\xd4\x9c\x50\x81\x5a\x4d\xcb\x10\xd5\xb8\xfd\x9c\x82\x10\xf7\x4b\x9c\xad\x4e\x3f\xc5\xcf\x25\xa2\x35\xa2\x70\xe0\xbb\x7f\xe9\x73\xe0\xd8\xda\xd8\xb0\xc2\xdd\x27\x58\x38\xb4\x0c\x6f\xf5\x7c\xd3\x64\x7c\x48\x67\x24\x0b\x27\x56\x19\x84\x8d\x63\x95\x08\xce\x0e\xfc\x42\x19\x2a\x5d\x89\x3d\x34\xa5\x9f\x6d\xa3\x45\x7c\xbb\x7b\x35\x08\x78\x68\x88\xa7\x9c\xe3\xe5\x33\xb5\x81\xd8\x70\x03\xdf\xaf\x14\x22\xb9\xd4\x22\x51\xa4\xc5\x25\x41\x22\x2e\xf4\x4d\x01\xdd\x16\x5e\x88\x75\x22\x83\xc2\x42\x2f\xca\xb2\x57\x66\xd5\xe9\x2f\x6a\x90\xc4\x58\x91\x23\x2d\x7a\xad\x49\x80\xb6\x39\x32\x90\x4d\x83\x55\x00\x07\x56\xdc\x3c\x13\x32\xc3\xcc\x85\x66\x37\x0c\xd7\x5d\x79\x3b\xb0\x2a\xad\x02\x61\x48\x0f\x03\xf9\x0a\x52\x7f\x4a\xe3\x90\x19\xac\xe7\xca\x71\xd8\xe8\x97\x43\x58\xb6\x67\xec\x83\x71\x1a\x06\x9b\x67\xf1\x21\x0d\x36\xc1\x52\x21\x3b\xa6\x26\x53\x44\xa0\x22\xbe\xac\x11\xb6\xa4\xdb\xb7\x55\xde\x34\x09\x95\xb5\x58\x02\x9e\x11\xe9\x70\x53\x0c\x4a\x8c\xd6\x69\x9c\x20\x6c\x4a\x31\xfb\xb3\x6d\x6b\x32\xbb\x5b\x22\x64\x26\x10\xa4\xbf\xdc\xf4\x31\xea\xb3\x25\xbc\x2c\x17\x97\x55\x5a\x2f\x73\x27\xe1\xe4\x19\x2f\x24\xca\x84\x81\x96\x31\x91\xfb\x6e\xf2\xa0\x81\x95\x3f\xf2\xa1\x10\xca\xa5\x4e\x20\xb0\xc5\xac\x0f\x9a\x73\x72\xef\xf8\x05\x5c\x79\x95\xa8\x72\x2f\x90\x17\xcd\x15\xb6\x8a\x16\xac\x4e\x91\x71\x34\xc7\x6c\x46\xc6\xce\xc8\xba\x8d\xb6\xa4\xdb\x39\x83\x66\xce\x6d\x2b\xf5\x97\xd3\x8d\x51\x98\x6c\xfd\x17\xf3\xaa\x37\x20\xea\x43\x20\x15\x9e\x11\x64\x46\xd4\xca\x2c\x5d\x8a\x18\xb3\x60\xc3\xa0\x27\xd8\x56\x07\xe5\x28\xfa\x26\xe1\x1d\x42\x9f\x2e\xf0\x84\x24\x6f\x13\x39\x01\x5d\x5b\xe3\x3c\x78\xeb\x4c\x36\x00\x41\xcf\x60\xcf\xaf\xb0\x0c\x6b\xbd\x17\x79\x5d\x6e\xc0\xaa\x79\x96\xaa\x9f\xef\x30\x51\x57\x2b\x64\x9b\xa9\x36\x55\x10\x09\xaf\xbd\xa0\xd2\x46\x9d\x81\x2d\xbc\xfe\xaa\x36\xe5\xed\x06\x12\x14\xfc\x68\x18\xc7\xce\x15\x3f\xd6\x4e\x65\x6b\x90\x81\x96\x55\xf0\x86\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xda\x71\xee\x5d\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\xec\x39\x41\x5c\x9a\x1a\x5a\x0d\x2b\xb0\xce\xb4\xe3\xae\xdf\x62\x5d\xcb\xf0\x96\x0e\x9a\x77\x46\x9f\x08\x73\x34\xdd\x73\x67\x42\x0f\xca\x75\x9a\x2c\x8e\x30\x84\x19\x93\x38\xf4\x7c\xac\xe6\x48\xc6\x20\x73\x08\xf6\xc8\xf6\x4b\x76\x5f\x1b\x46\x63\x40\xd2\x4a\xe8\xf6\x2e\x30\x3c\xa4\x52\x8b\xdb\x6b\x32\xc1\xb1\x44\xbf\x63\x5c\xfd\x2e\x40\x36\x76\xc6\x0b\xf8\xd4\x99\xa0\x7a\x4b\x25\x5b\xe0\xd0\x5a\xc2\x41\x38\x40\xd8\x5a\xbb\xf2\xbb\xc6\x06\x14\x81\xef\x2f\x2a\x8d\x0e\x96\xb3\xe0\x9a\x6a\x5e\x75\x1e\x7b\x54\xbd\x16\xaa\x06\x4f\x53\x56\xaf\x38\xe9\x25\x43\xa7\x5c\xe7\xa2\xf7\x7b\xd1\xca\x35\xbf\x84\x08\xb0\x0b\xb5\xa5\xad\x23\xa7\xd6\x80\x20\xd7\xdb\x25\xb6\xc9\xf3\x6c\x92\xcb\x45\x39\x74\xcd\x96\xc1\x68\x40\xf9\x3d\x1e\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x11\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x49\xd5\x24\x52\xeb\x57\x4d\x6b\x51\x57\x84\x75\xa9\x04\xeb\xea\x73\x56\x2a\x2a\x0b\x35\x18\x20\xc0\x89\x4f\x97\x57\x67\xe8\xac\x8d\x4e\xbf\xd3\xf4\xbc\xec\x85\xe8\x59\x8d\xc2\x98\xa4\xec\x0c\xb4\xa4\xf3\xad\xe3\xb5\x25\xd4\xe0\x69\x2e\x20\x5c\xb7\xae\xcd\xaf\xa3\x39\x4d\x0a\xdf\xc5\x37\x3d\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x76\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x4d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x1a\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x96\xb2\x38\xc2\x53\x8b\x05\x61\x6a\xcc\x78\x4c\xc6\xa4\xc6\xa5\xb9\x82\x49\x68\x21\xe0\x8a\xc7\x64\xad\x43\xd2\x33\xd3\x9f\xc0\x74\x23\xf3\x89\xdf\x0e\x48\xf0\xf7\xd9\xdc\xde\xfa\x50\xa6\xb4\xfa\x91\x7b\xf4\xd9\x6d\xc6\xbd\xad\x33\xd5\x85\x89\xf6\xe0\x42\xb0\x03\xa8\x77\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x7b\x87\x2d\x70\xc2\x6d\xbc\x19\x06\x64\xb4\x95\x3b\xa3\x58\x0a\x07\xb4\x72\xe4\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xfe\xd9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\x8d\x19\x4a\xcd\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\xa9\xd3\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x4a\x01\xf4\xaf\x39\xc9\xf7\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x91\x45\xe7\xd6\x40\xdf\xef\xc1\xa4\xf3\x1a\xf1\x1c\xcb\x32\x52\x0d\xfb\xb1\xe4\xf7\xe4\x33\x38\xab\x2c\xe2\x85\xec\x24\xae\x86\x40\x45\xfa\x78\x41\x93\xc9\x16\x4c\x6e\x59\xa8\x5e\x19\x15\x5d\x18\x50\x3c\x5b\xab\x49\xa6\x56\x1c\xd2\x2e\x9e\x05\x05\x84\xb8\x45\xf1\xb2\xaf\x81\xeb\xae\x8b\x90\xc7\x68\x29\xc5\x88\xb5\x10\xd7\xe1\x96\x70\x51\xcf\xe3\x37\x30\x40\xd8\x86\xca\x5d\x2f\xfb\xed\x9b\x4e\x84\x61\x49\x87\x7a\x24\x96\xe1\x61\xd6\x1e\x06\x5f\x09\xe4\x6d\x0c\x88\x5e\xb4\x79\xbd\x93\xe1\xc9\x71\x1c\xe1\x68\xde\x38\xa9\x09\xe7\x09\xc1\xac\x49\x7a\xad\x7d\x5c\x3d\x22\x06\xdc\x14\x58\x77\x92\x00\xc2\xaf\x5b\x02\x5b\x15\xb2\x10\xdf\x59\x0c\xc8\xec\x86\x87\x9b\xd8\x40\x37\x50\x45\x98\xb3\xfc\x50\x36\x4b\x48\x75\xad\x2c\x84\x7e\xcf\x76\x92\x44\x79\x12\x94\x85\xcc\x88\xd0\xa3\xd6\x4b\xfc\x44\x98\xd6\x19\xec\x38\x9c\x33\xe3\xd9\x25\x44\xfb\x62\x50\x3d\xdf\xb5\xf3\xa7\x41\xd6\x61\x3c\x62\x70\x70\x79\xf9\xb0\x6a\x5a\x95\x5a\xcd\x08\xed\x52\x5b\x9f\xce\x40\x88\xd8\xf8\x78\xde\x95\xcd\xc4\x1b\x9f\x49\xd3\xf7\x18\x62\x0c\x76\x76\xad\x05\xee\x97\x02\xaa\xc1\x6c\xac\x83\xe3\x7a\x25\x23\x32\x44\x6d\x94\xc3\x4e\x83\xa0\x8d\x26\x38\xa8\x17\xbd\x4b\x8a\xf2\x17\xee\x36\x68\x39\x94\x95\xae\xea\x96\x8e\x67\xb0\x4e\xae\x3a\xb7\x17\x36\x64\xbb\xec\xb2\xf5\xf9\x3d\x45\x98\xa3\x2d\xf0\xaa\x04\x06\x74\x02\xc8\x29\xff\xc9\x68\xd8\x54\x1a\x0b\x98\x2b\x73\x91\x66\x6a\x61\xab\xa2\xc1\xbd\x18\xe6\xf4\x1a\xc4\xb7\x3a\xf7\x70\xf5\x8e\x8c\x4b\x0e\xe2\xba\xce\xa0\x23\x6b\x56\xa8\x6d\xd2\x2d\x74\x88\x20\x52\x41\x6c\x68\x8a\x06\x31\x05\x66\xc7\x38\x69\xb4\x65\xed\x81\x69\x42\x9a\x6d\x81\xd2\x60\xc1\x5f\x95\xc8\x89\xe6\x5d\x38\x49\x2a\xf3\xc2\x90\x0e\xad\x7c\x91\xb9\x49\x51\x09\xb7\xbd\xb3\x3a\xc1\x13\xb2\x91\x7b\xfa\xc2\x7c\xb0\x92\x8a\xe0\x15\x88\xec\xce\xb2\x64\xd1\x2e\xa2\x3c\x0c\xbd\xab\x05\x49\x5b\x37\xb0\x10\x5a\x6d\xe5\xdd\x54\x86\x27\xdb\x6e\x88\x92\x44\xb9\xa0\x6a\x31\xb6\x46\xbf\xf6\x4c\xeb\xce\x7e\x79\x66\x3f\x6c\xa3\x51\x9f\x22\xd7\x9f\x33\x32\xc2\x3d\x25\xa8\xa9\xa0\x63\xa7\xd0\x66\xbb\xb5\x96\x5c\x0b\x9e\xb4\x6a\x61\x1d\x7a\x53\xbb\xa1\xea\x2e\xb6\x1d\x9e\xad\xcc\x31\xe6\x53\x87\x8b\xd4\x7e\x61\xab\x25\x4b\x36\xb0\x96\x3a\xf8\xe5\x4c\x50\x2e\x6c\x65\x90\x36\x41\x6d\x29\xfe\x3c\xce\xb0\xc0\x49\x42\x12\x2a\xd3\xed\x6d\xbb\x7f\xfa\xe3\xca\xd1\x9e\x99\x0a\x36\xd2\xd6\x83\xfa\x4c\xd3\x3c\x45\x2c\x4f\x27\x56\xca\xc5\xf2\x31\x04\xbf\x74\xa9\xfa\x06\xc3\xc9\x0d\xb0\x04\x18\x20\x02\x38\xd3\x11\x0b\x80\xad\xad\xa9\x02\x47\x73\x4a\x9e\x00\x76\x53\x30\x22\xe5\x31\xba\xe2\x8a\x9c\xa2\x4b\x9c\xdd\x83\xa0\x66\x4a\x4a\xce\x8c\x75\x1c\x4b\xa4\xa5\xd6\x9c\x51\xd5\x1b\x31\x8b\x86\xed\x56\xe5\x24\xe2\xcc\x20\xa2\x46\xb0\xb0\xbe\x09\x30\xf7\x3a\x68\x50\xe5\x12\x1b\xa9\x6c\x58\x6c\x81\x9f\xc7\x41\xf4\xea\xd8\x64\x07\x6c\x40\xc7\xb7\xf8\xd9\xc4\x6b\x9f\x63\x85\x4d\xb5\xd8\x55\x92\xbb\x0d\x88\xb2\x15\x84\x0c\x10\xb0\x0b\x1c\xe1\x16\x8d\xc2\xd7\x3e\x33\xd1\xa9\x5f\xd3\x63\x72\x8c\xbe\x4b\xf8\x44\xf6\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x7b\xc6\x41\x05\xff\x36\xa9\x60\xdf\xb8\xd5\x2f\xf8\x3e\x94\xfd\x9b\xd2\xcf\x06\x04\x43\xfe\xe9\xf4\xe4\x24\x5d\x1c\x4d\xf2\xe8\x91\x28\xfd\x17\xc8\x14\xb5\x2b\xe4\x10\xa4\x70\x1d\x1e\xd5\xba\xd5\x59\xc6\xb2\x6a\x45\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\xab\xaf\x1a\x69\xa7\x2c\xf2\xa6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x0d\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x78\xc4\xfa\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xa4\xa7\x1b\x06\x48\x34\x17\x48\x88\x9e\x05\xce\x32\x22\x46\xcc\x42\x9b\x02\x80\x37\xe7\x36\x48\xa4\x29\x9a\xbc\xd3\x28\x5f\x57\xa3\x0c\x93\x3e\xca\x09\x8b\xeb\xce\x37\xe4\x37\xae\x4c\xf5\x58\x91\x1b\xa8\x65\xd1\xb6\x91\xde\x6f\x6f\x36\x6e\x39\xe6\x75\xda\x79\xbf\x12\xa6\x0f\xe5\xa6\x53\x50\x20\x65\x51\x55\xd3\xd9\xfa\xbc\xfa\x5e\x12\x73\x00\x19\x1b\x3e\x8e\x39\x91\x81\x11\x1f\x79\x5b\x5c\x42\xa7\x44\x4b\x1f\x23\xa6\xc9\x38\x74\x38\x18\x80\x6d\x87\xb7\xad\x3b\x8d\x04\x97\xd2\x46\xde\x9b\x76\x56\xe7\x4f\xed\x50\xcb\xcf\xa0\x84\x0f\xaf\xaf\xc6\xcb\x55\xfd\x82\x67\xae\xbe\x9f\x7d\x58\x9b\x64\xdf\xd8\xd4\xda\x6a\x7e\xc5\x5a\x6c\x50\xcf\xef\xe4\xec\x62\xe8\x8b\x58\x55\xba\x5e\x2e\xe8\x17\x22\xab\x37\x97\xf4\x5b\x9e\x71\x50\xdc\xaf\xd2\xc4\x8a\xf2\x7e\xeb\x37\xab\x1c\xef\xbb\x0b\x6c\x5e\x65\xeb\xd7\xf2\x87\x32\xcd\xac\x0b\x4b\xdf\xd3\x36\x35\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x74\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\x4b\x5b\xb1\x99\xc7\xeb\xde\xc2\xa4\xef\x23\x8c\xf9\xf5\x72\x98\x93\x45\x11\xb5\x27\xad\xec\xe6\x4a\x70\x37\xd8\xfd\x27\xc4\x43\xc2\x37\x6e\xe8\xae\x49\x8a\x1e\x3a\x4a\x10\x2c\x6d\x38\x06\xe4\xf2\x55\xf2\x7c\x36\x30\x0f\xfb\x31\x9b\x6c\xe0\x23\x5f\x84\x21\xb8\x6a\x6c\x5d\xb1\xc8\x1d\x44\x2a\x04\x79\x22\x02\x68\xc7\xc6\xfc\xb0\xf2\x51\xc5\x89\x20\x38\x5e\x04\x2b\xe2\x03\x0e\x4c\xcf\x60\x1e\x93\x34\xd5\x0a\x3c\xa8\x26\x8c\x1f\xf1\xcc\xe9\x2c\xa5\xb7\xa0\x82\x06\x9d\xea\x1b\x2b\x08\x57\xd0\x5f\xb0\x23\xf2\x99\x4a\xa5\xe5\x8a\x9a\x58\x4d\xd7\x08\x48\x3c\x50\x57\x6b\x4e\xec\x0d\x37\xfa\xd0\xff\xee\xfa\xf6\x7e\x70\x3e\xfa\x50\x44\xe7\xbb\xf4\x33\x8f\x08\xe5\x00\xfe\x39\x1b\x31\x1f\x50\xeb\x01\x90\x61\x2f\x11\x8e\xe3\x02\xd9\xc0\x2a\x91\x46\x66\x5b\xc9\x91\x83\x53\xb1\x36\x94\x76\x45\x33\x0f\x90\x83\x74\xa8\x27\x6b\x85\xeb\xac\x74\x72\x4c\x26\xd5\x8a\x94\x97\x3d\x5d\x36\x21\x76\xab\x32\xba\x36\x51\x0e\x5c\x90\x91\x67\xa7\x2b\xc1\xed\x7c\x82\xcd\x25\xbc\x19\xb7\x73\x1b\xb2\xc5\xa6\x7e\xa4\x9f\x49\x7c\xdb\x20\x55\xed\x25\xa3\xa5\x55\x24\x60\xed\x2e\xe4\x8c\x6e\xa2\xf1\xfb\xa9\x3c\xe8\xef\xda\xb3\xa5\xeb\x02\x92\xad\x80\x57\x05\x6c\x55\x85\x30\x8a\x88\x50\x98\x32\x34\x85\x83\xcd\xa2\x05\x02\xc0\x0e\x02\x3e\xec\x3f\xa2\x94\x32\x40\x0e\x58\xb5\xb4\x0f\xe5\x79\x6c\x20\xb4\x5e\x0e\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\xfd\x9f\x57\xca\xaa\x95\x16\x56\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xda\x89\x26\x0b\x45\x1e\x6e\x2f\x76\x92\xef\xea\x9d\x65\x8d\x18\xe1\xa1\x74\x55\x8f\x88\xd0\xe6\xd3\x98\x44\xeb\x50\x4c\xdb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x2a\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\xf6\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x83\x93\x66\x87\xb2\x22\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\xc7\xa6\x42\x7c\x5f\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x12\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\xfa\x37\xc3\x9a\xb5\xbe\xa8\xba\x90\xbe\xac\x72\x36\x89\xf7\x66\xed\x1b\x24\x29\x48\x4f\x3c\x08\x54\x24\x3b\xd3\xdd\x60\x90\x8c\xd3\xff\xa6\x1c\x49\x70\x08\x68\xbd\x75\x2a\x43\x29\xed\x78\x0d\x30\xef\x66\x99\x78\xc5\x32\x6c\x08\x7a\x14\x0e\xc8\xa6\x81\x84\x40\x3f\xcb\x31\xc6\xbd\x10\xf8\x87\x9b\x82\xb9\x36\xb6\x60\x6f\x60\x48\xc5\x6c\xda\xa0\x21\xfd\x68\x28\xda\x83\x65\x00\xfc\x87\x2b\xc8\xe8\x62\x83\x6d\xee\x7a\x38\xdd\x90\xda\x36\x03\x50\x2a\xc6\xe7\xcc\xdf\x16\x8b\x1a\x67\xd8\xda\x1d\x40\x89\x72\x95\x12\xea\x0a\xeb\x1d\x8f\x58\x10\xb0\x22\x8d\xda\xa3\xcf\x88\x2b\x4e\x02\x15\x6f\x19\x00\x5b\x43\x92\x8e\x17\x7e\x4a\x3b\x50\x4d\x91\x57\xf3\x72\x79\x91\xa5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x57\x1f\xf0\x3d\xa0\x33\x6d\xaa\x38\x04\xc7\x6a\xad\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xc9\xaa\xfe\x39\x23\xd1\x36\x10\x32\x37\x58\xe0\x94\x28\x22\x56\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x3a\x48\x18\x3f\x8b\x8d\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x0d\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x5d\xe7\xf4\x3a\x50\x28\xf7\x4b\xa0\x22\xa5\x70\xa1\x03\xc1\x40\x59\x3f\xca\x26\xf0\x93\x75\xbc\x74\x2f\xbc\xdb\x65\x38\xb8\x14\xda\xca\xa1\x2a\xe5\x4e\x00\x95\x80\x4a\x65\x70\x40\xea\x01\x4c\x40\x68\xa9\x8b\x90\x0c\xdc\x7e\x16\xde\xae\x30\xe8\x5a\xc9\xaa\x5a\x5c\xaa\xb2\x5c\x6b\x78\xdc\xbe\xc0\x1d\x3a\x89\x66\xdf\x12\xcd\x3a\x52\x2e\x45\xd7\x6a\xea\x24\xa2\x82\x33\x63\x8b\x3e\x5b\x80\x80\xf2\x04\x21\xf7\xc8\x5e\x91\xb6\x72\x2c\x5c\xfd\x94\xf9\x7f\x95\x39\xb8\x23\xea\x90\x54\xeb\x92\x2a\x8f\x03\x17\x14\x78\xa0\x92\x50\x1a\xb0\x71\x35\x30\x5a\x13\x06\x69\xac\xfc\xc3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x3d\x78\x0b\x60\x10\x64\x3e\x49\xa9\x42\x38\x98\x61\xc9\x24\xd9\xb3\xe7\x59\x7f\x00\x33\xae\xcd\xb3\xaf\x83\xe8\x59\x73\x68\xb6\xb0\xaf\x15\x8d\xec\x9a\x4a\x1f\xc4\x34\xbf\x6c\x32\x7d\xa0\xf1\x84\x1a\x66\xed\x99\xeb\xb2\xe9\x51\xbd\xb5\xc1\x82\x86\x02\xb2\x2b\x95\xaa\x72\xb7\x58\x43\xcf\x9a\x4c\xfa\x62\x23\x5a\xa5\xd2\x17\xaf\xef\x23\x97\xbe\xa9\x4c\xd9\xaa\xdc\x4a\xf7\x49\x83\xfd\xdb\xe5\xec\x2a\xee\x02\xe7\x43\x49\xe9\xa6\x51\x52\x3a\x34\x54\xb3\x22\x21\x60\xfb\xf0\xf2\x4d\xd4\xc1\x22\x3f\x2b\xa4\xa2\x20\xdd\xb2\x8c\x09\x43\xaa\x9c\x9f\x71\x05\x39\x35\x11\x94\x70\x5f\xca\xf3\x1c\xb1\x7a\x09\x64\x35\x4f\xdc\x35\x45\x63\xaf\xe8\x67\xc1\xf9\x73\xb3\xb0\x16\xad\x9f\x7c\x90\x9b\x51\x96\x6d\x31\xf6\xaa\x88\x59\xb8\xf8\x9a\x82\x93\xb4\xe0\xb1\x4d\xc2\x71\xcd\xa9\xac\x1f\xfa\x52\x02\xc5\xda\x73\x61\x2f\xdd\x3d\xaa\x76\x4b\xdc\xb9\x75\xbe\x89\x97\x91\x2d\x37\xb6\x01\xd3\xb1\xd7\xe3\x2b\xae\xda\x6d\xaa\xcc\x02\xaa\xe8\xde\xb0\x50\xab\xf0\x04\xba\xf1\x1e\xb8\x77\xed\xd8\xb1\x09\x75\xf1\x08\xdd\x95\x3d\x29\xcd\xd8\x56\xef\x7f\x89\x59\x6f\x5a\x1a\x38\xf0\x37\x0a\x1b\xef\x4b\x43\xcb\x01\xd4\x04\xb6\x61\x92\x15\x4e\xec\x85\xbb\x9c\xc5\x44\x30\x82\xd5\xfc\xf5\xb2\x2c\xce\x76\x35\x4f\x07\xe3\x7b\xd9\x8c\x8b\xb3\xbd\xd4\x85\x0f\x87\x5b\xae\x91\xbe\x76\x9c\xfa\xf5\x36\x96\x22\x1b\x7c\xe0\xab\x04\x2f\xa9\x8e\x35\x66\xc3\x00\x84\x66\x13\x2a\xdd\x29\x11\xa3\x5e\x9d\x7b\x99\x94\x94\x1a\xbb\xcf\x52\x32\x8a\x3e\xed\x61\x6d\xe5\x35\x4b\xf2\x45\xe4\x7e\xbc\x7c\x3a\xc2\xaa\x2a\xce\x79\x90\xa1\x00\xa5\xb4\x15\xa6\xcc\x72\xaf\x55\x49\x09\x5a\xa6\x4c\x71\x5d\x1e\xc2\xc1\x67\xb8\x7c\xf1\x09\x2e\x5d\xba\x43\x97\xee\x50\xb3\x47\x5d\xba\x03\x42\x87\x96\xee\xb0\x4e\x05\x5d\x65\x00\xf5\x3e\x39\xa8\xb6\x59\x2a\x71\x63\xf6\x77\x8d\x1e\xb9\x7d\x48\xbf\xb3\x21\x86\xf1\x50\xf6\x17\xfb\x43\x6d\x48\xd4\xd2\x67\xd5\xd9\x86\xf6\x4c\xb6\xa8\xba\x05\xb0\x88\x13\x8b\x43\x67\x03\x96\xcb\xf6\xa7\x55\xa6\xd2\x11\xfb\x9e\x3f\x93\x27\x22\x7a\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xf8\x18\x38\x08\x25\x48\x73\x13\x07\x81\xd1\x15\x4e\x49\x6c\x2a\x1e\x06\x61\x8d\xd6\x60\x6b\x5d\xad\x75\x70\xab\x80\x1c\x6a\xb6\xc1\xc5\x4d\x8c\x98\x09\x35\x34\xe1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x47\xf0\xef\x8e\xd1\xbd\xbe\x9f\xa8\x2c\x8f\x37\x40\x5f\x6b\x1a\xdb\x88\xcd\x04\xcf\x33\x6f\x43\xe3\x13\x53\xfa\xd6\x44\x3f\x2d\x3b\x82\x61\x30\xce\x0b\x1c\xe1\x58\xeb\xe2\xab\x09\xe7\x4d\xa2\x50\xb7\x82\x30\x0a\x09\x48\x1f\x43\x1f\x5a\x67\x43\xdd\x8d\xff\x36\x00\x6e\x59\x05\xc4\xfe\x42\xce\xe5\x73\x22\xc1\x2a\xe4\xad\xee\xa5\x3c\xf2\x32\x56\x41\xed\x38\x57\xd9\x44\xbd\xdf\xc2\xd9\xf6\xeb\x61\x10\x8a\xce\x6d\xcc\x97\x49\x52\xb5\xf7\xc4\x8b\x59\x4b\x5b\x47\xcf\x36\xf1\x8b\x9b\x5c\x64\x1c\x24\xb1\x64\xe1\x60\x1b\x2c\xd2\x5b\xc6\xb3\xdc\xc4\xb5\xd1\x30\xcc\xa9\x96\xb2\xa9\x54\x97\x58\x45\x73\xcd\xb9\x0b\xc4\xb3\x3d\xc5\xfb\x15\x5c\xf9\x65\x2d\xa8\x35\x33\x38\x0b\x7b\x6f\x70\x29\xb4\xb0\xa8\x9b\x7b\xdf\x85\xd7\x3b\x49\x22\xd5\xfd\x19\xb7\x9b\x2d\x68\x1d\xd8\x45\xdd\x27\xf6\x89\x9e\xe8\x3a\x2a\x5a\x37\xfe\x76\xb4\x55\xae\xb8\xb5\xf7\x48\xc2\x1d\x20\x64\xce\x2d\x60\x57\xf1\xa2\xad\xd0\xda\xe0\xfe\x17\x74\xbb\x2c\x20\x8b\x92\xff\xa4\xc5\x11\x6f\x71\x4d\x71\xa6\x95\x08\xc5\xf5\x2d\x29\x66\x46\x8e\x35\x71\xb2\x08\xa3\x5c\x50\x77\xf6\x2b\x39\xe1\xcd\xd4\x01\x16\xca\x93\xb0\xa2\x52\x84\x83\x62\x73\xc6\xe1\x8f\x23\x95\x63\x1f\x98\x08\x34\xe1\x8a\xa0\x9b\xfc\x77\xe7\x58\x17\x4e\xbc\xab\xd9\xd3\xb5\x84\xbd\xc3\x2e\xe3\x3a\x7c\xc3\x56\x27\x8d\xb2\x59\x00\x8e\x58\x6f\x25\x6e\x53\xfb\xa0\xf6\xcb\x76\xf5\x1b\x6a\x3f\x75\xb2\xcf\x36\xdf\xae\x00\x6f\xda\x3a\x36\xbb\x14\xe7\x6e\x03\x61\xad\xf4\x14\xc2\x56\x5a\xfb\x1d\xa0\xcf\x52\x70\xd4\x63\x2b\x4d\xfd\x97\xff\xcb\xd4\xca\x32\x4b\xf3\x5f\x88\x8b\x11\x33\xbf\xf7\x7c\x9d\x0a\xfd\x42\x01\x00\x8b\x53\x52\x40\x64\x8a\x32\x98\x1e\x40\x8a\x58\x30\x34\x03\xf6\xeb\x61\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xf0\x01\xcf\xcc\x52\xcc\xf0\x0c\xa0\x85\x7b\x10\x19\x07\xe2\x6a\xa1\x8a\x18\x92\x36\xf5\x0e\x81\x5b\x69\x66\x69\xf3\x6d\x8b\xba\xbf\xd0\xa7\x11\x65\x2d\xb2\x69\x11\x5e\x51\x4f\xfd\xb7\xb6\xff\xed\x24\xf6\xfb\xfe\xdd\x0f\xe3\xdb\xc1\xdd\xf5\xc3\xed\x59\x49\x6c\x3f\xbb\x78\xb8\xbb\x1f\xdc\xd6\x3e\x2b\x72\x55\xff\xfa\x30\x78\x68\x78\xe4\x1a\xb8\xe8\x7f\x37\x28\x15\xd1\xfe\xeb\x43\xff\x62\x78\xff\xf3\xf8\xfa\xe3\xf8\x6e\x70\xfb\xe3\xf0\x6c\x30\xbe\xbb\x19\x9c\x0d\x3f\x0e\xcf\xfa\xfa\xcb\xf0\xdd\x9b\x8b\x87\x4f\xc3\xab\xb1\x0b\x3b\x0e\x1f\xfd\x74\x7d\xfb\xc3\xc7\x8b\xeb\x9f\xc6\x41\x97\xd7\x57\x1f\x87\x9f\xea\x66\xd1\xbf\xbb\x1b\x7e\xba\xba\x1c\x5c\xad\x2e\xd6\x5d\xbf\x1a\x8d\x75\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xbe\x8b\x1b\x43\x8f\x47\x3d\xf7\x97\x29\xad\x7d\xa4\x59\xa0\xf3\x8b\x15\xdc\x63\xc4\xbc\xe3\xd2\x5f\xaa\x0a\xcf\xa4\x4b\x3d\x2e\x8d\xf6\x14\xf5\xe1\xac\x80\xc2\x50\xea\x14\x32\x1b\xfc\x48\x9d\xab\x1b\xe8\x30\xa1\x29\x05\xaf\x37\x3a\x42\xd5\x0d\x2f\x37\x68\xe7\x04\x43\xb0\x7e\xbb\x78\xd5\x69\x90\xd5\xac\x66\xa0\x94\x53\xe4\x38\x34\x31\xe6\x04\x83\x3d\xbb\x60\x38\xa5\x51\x35\x05\x03\xe0\x57\x51\x01\x35\x52\x6d\xb1\x44\x60\xe5\x96\xe7\x04\xfd\xf0\x97\x62\x50\xe0\xc1\xb0\x9a\x77\xbe\x54\x51\xcf\x3e\x10\xb9\x59\xd5\x75\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\x2b\x77\x83\xbb\x29\x67\x01\xdc\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd1\x1d\x40\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xcd\xf7\x09\x99\xe3\x27\xca\x5d\xf9\x0a\x53\xe5\x03\xd6\xd1\x8a\x56\xe8\x08\x35\x1e\x94\x53\xd4\x8f\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xa8\x3c\xec\x10\x21\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xfb\x07\x73\x59\x66\x87\xe5\xbb\x77\x87\xeb\x5f\xaf\xe0\xd8\x91\xf2\x78\x2b\x61\xe0\x1e\xcb\x47\xc7\x9a\xd7\x09\x04\x0e\x56\x67\xb7\x1e\x2d\xbe\x4e\xdb\x4e\xfd\xca\x8e\xe1\xa0\x6d\xd7\x67\x23\x2a\xf4\x9a\x2e\xdd\x8c\x93\x4a\xe9\xae\xd6\xfd\x95\x4a\x7f\xd5\x76\xb6\x57\x6f\x4f\xbd\x34\x06\x47\x72\xec\xe9\x7f\x83\x79\xdc\xc0\xa7\xd7\xfe\xcb\x95\x22\xdb\x38\x58\xb7\x4d\x7d\x40\x4b\x49\xba\xd6\x0f\xb4\x92\x0e\xf7\x04\xef\xd4\x5e\x18\x84\xc2\x0b\x34\x02\x77\x1f\xa6\xcc\x96\xe3\x21\xde\x1f\xe5\x0a\x50\xeb\x73\xec\x4b\xc4\xe1\x09\x7f\x2a\x29\x97\x29\x91\x12\x37\x00\x96\x04\x26\xb1\x5d\x18\x83\x3f\xa1\xf6\xc3\x96\xf4\xe4\xce\xe4\xbd\xfe\x6a\x95\xd1\xe7\x36\xd4\x8c\xdd\x44\xb5\xc0\x1a\xbb\x48\x5b\x74\x6d\xf2\xed\x34\x7f\xe9\x15\xc1\x34\x5c\x04\x31\x46\x4d\xee\x9f\x96\x66\xb5\xea\x82\xd5\x56\x59\x0a\x5d\x78\x9b\xc7\xe0\x04\xad\x6f\x8d\x88\x6d\xfd\x2a\xb8\xbc\x3e\x1b\x50\x5d\xc9\xdf\x19\x56\xa0\x8e\x78\x9a\x1a\xb9\xa0\x64\x4b\xed\x21\x6c\xd2\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\xd1\x1b\xb1\xe7\x60\x43\x4a\x81\xc0\xfd\xb0\x25\x40\x13\xfd\xac\x8f\x1b\x7d\x2a\x85\x57\x83\xc8\x48\x21\xd6\x37\x20\x04\xe3\x10\x2c\xca\x47\xad\x21\xf0\x60\xbf\x76\x20\xf5\x2d\x6a\x05\x56\xd6\xb7\xa9\x62\xa0\x9f\x5b\x50\xa8\x6f\x07\x4d\xb9\xed\x10\x82\x5a\x81\x75\x23\xd8\x43\xa9\xc0\x57\x85\xf7\xf6\xe9\x9a\x26\xbb\x37\x9d\x58\x8c\x0a\x3d\x5d\xb7\xda\xbf\x77\x33\xfa\xbd\xf1\x3b\xe4\x0d\xa0\x26\x41\x6b\x1e\xe1\x1b\x1d\x69\x99\xd5\x25\xdb\xdb\x40\x0c\x89\x8e\x0c\x6a\xe0\x57\x10\x69\xd9\xbf\x19\x7e\xd5\x43\x5f\x85\xd9\x66\x5f\x6d\x75\x00\xed\xb8\x6d\xb9\x40\xd0\xa6\x4a\x29\x07\xe5\x63\x07\x7b\x55\x39\x89\x76\xcf\xec\x41\x44\x4d\xe7\x50\x7f\x59\xfa\x06\x9c\xd3\x50\xfe\xce\xf8\x6f\x7d\xc0\xb3\x75\x01\x19\x19\x97\xca\x9a\xb5\x8b\x47\x6c\xb2\xa8\x3a\x79\x7a\xde\xcb\xd3\xfa\x94\xee\x5c\xd2\x4d\xb7\xb7\x9c\x9e\xbc\xe7\x40\xdc\xd5\xf7\xc1\x9a\x84\xe7\xbe\x89\xb9\xe6\xd3\x80\x8b\x35\x45\x29\x74\x11\xec\x75\xb3\x2a\xd9\xcb\xdc\x62\xd6\x6e\xca\x3a\xf9\xe7\xbd\x91\x5b\x8b\xb0\xef\x7e\xdd\x8a\xd8\x88\xff\x06\xe1\xba\xa3\xb2\x97\xa5\xb2\x7d\x64\x3c\x94\x07\xb7\xf9\x05\x7a\x66\xe4\xb8\xa0\x19\x67\x70\xd5\xca\x84\x67\xf0\xa5\xba\x7f\xeb\x0b\xe6\x6e\xe8\xf3\x0d\xd6\x64\xbd\xd3\xf7\xce\x04\x0e\x18\xb7\xeb\xf2\x58\xab\x43\xed\x2b\x5b\x84\x88\x53\x93\xdd\xa8\x68\x4a\x7a\x88\xb3\x64\x11\x04\x3b\xd8\xf3\x0a\xe4\x66\x62\x94\xe6\x84\x0a\xd7\x89\xc5\x18\xdc\x28\x1d\x7e\x43\x69\xbc\x89\x46\x76\x88\x34\xb9\xea\x5f\x0e\xce\xc7\x83\xab\xfb\xe1\xfd\xcf\x35\xf8\x91\xe5\xc7\x0e\x42\x32\x78\xe1\xee\xe7\xbb\xfb\xc1\xe5\xf8\xd3\xe0\x6a\x70\xdb\xbf\x5f\x03\x2f\xb9\xaa\xb3\x26\xe8\xc2\x5c\xd6\xa9\x6f\x9b\xc0\x17\x3a\x33\x6f\x4d\xef\xcb\x20\x93\x41\x27\x94\x34\x00\x4d\x9a\xd4\x7f\x16\x13\x81\x62\xf2\x44\x12\x9e\x15\x66\xd5\xda\x05\x0b\x10\x28\x6b\xda\x5f\x85\x42\x09\x6d\x56\xd7\xf8\x14\x99\x5a\x6f\x41\xb9\x5b\xdf\x20\x88\x7c\x58\x10\xf6\x95\x42\xe4\x73\x96\xd0\x88\xaa\x20\x35\x90\x0b\xeb\x5e\x31\xee\x43\x88\x4e\x5d\x43\x5c\x7b\x8b\x46\xd9\xbb\xce\x1f\x7a\xd2\x97\xb5\x7d\x7f\xa2\x3c\x22\xda\xda\x02\x42\x7b\x50\xec\x1b\x9c\xc6\x4b\x80\x6d\x5b\x8c\xee\x25\xcc\x03\xcb\x39\x3a\x36\xbd\xaf\x01\xcc\xad\x7e\x90\xeb\x6f\xc3\x55\x71\x32\xa5\x73\xbd\x3a\x50\xa6\x1d\xa5\xbe\x71\xb8\x4b\xa9\xb0\xe6\x1e\x90\x37\x6c\xec\xfa\x86\x01\x0b\x4b\xf5\x62\x98\x89\x39\xc5\x48\x90\x94\x2b\xad\x80\x99\x88\x80\x9e\x16\xaa\x28\x4e\xe8\xaf\x80\x51\x25\xc8\x71\x10\x41\xe1\x90\xbd\x0a\xf7\x81\xc5\x8f\x38\x1e\xb1\xf3\xc1\xcd\xed\xe0\x4c\x33\xa4\x63\xf4\x20\x01\x7e\xaa\x34\xf5\x73\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xa6\x60\x30\x22\x04\x17\xed\xf9\x83\xef\x6f\x00\xdf\xd5\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb1\x2a\x72\x90\x33\xb0\xf7\x9c\xac\x5b\xfc\x5c\x5a\x91\x10\x7e\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x80\x67\xfb\xf9\x95\xfa\xbc\x81\x6f\x57\xcd\xf3\x1e\x42\xec\xa4\x2a\xd0\x40\x0d\x60\xa8\xaf\x7a\x53\x99\x67\xa3\xa8\x28\xde\x02\xaa\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x3c\x6c\x68\x69\x5b\x0e\x9a\xd9\xf4\xa8\xea\x35\xc3\x29\xcf\x19\x28\x0d\x10\xc6\x5a\x33\x18\x99\x11\xa6\xd6\x0c\xe6\xad\x80\x58\x2a\x43\x3d\x5c\x2c\x96\x9a\x81\x36\xc1\xb1\xd4\xf9\x93\xa0\xf4\xf2\x66\xd7\xb2\x0b\xca\x2b\x39\x95\xf4\xa1\xf2\xf7\x73\xbd\x96\x8d\xe5\xe3\xce\xdd\xdd\x63\xf9\xb8\xbe\xab\x98\x44\x8f\x9b\x5e\x36\xd5\xcc\xcc\xc4\x56\xae\x5e\x32\xf6\x2d\xf4\x53\x5b\x9a\x05\x0a\x96\x47\x8f\xe8\xfb\xfb\xcb\x0b\x34\xa5\x5a\xee\xd5\xd7\xca\x15\xd6\x32\xf6\x83\x48\x9c\x5d\xd8\xda\x56\x73\x91\xf8\xbb\x17\x36\xde\x89\x52\x81\x94\xa0\x6f\x34\x3c\x23\xce\xd8\x2b\x2c\xda\x5e\xa5\x34\x8b\xc0\x2c\xe6\xa9\x99\xc7\x89\xcc\xa7\x53\xfa\xf9\x58\x61\xf1\x4d\xc3\x7a\x98\xa8\x8a\xf1\xdf\xf9\x64\xac\x47\xb4\xe3\x45\x5c\xd7\x1c\xb2\x05\x95\xfd\xb2\xd9\x99\x9d\x9b\x77\xff\x2f\x9f\x40\xb6\x7b\x26\x38\x20\x00\x82\x77\xce\x46\x2a\xd8\x57\x1c\x25\x1d\x23\x97\x40\x55\x02\x39\x89\xb8\x10\xc4\x26\xc9\x9b\xda\xa2\x19\x16\x8a\x82\xb5\xd6\x81\xa4\x94\xd0\xf1\x8b\x2d\x0a\x4b\x7e\xcf\x71\x81\x44\x3d\x21\x04\x1c\x3c\x19\x4d\x36\x53\x7a\xcf\x4a\xbe\xc9\xca\x09\xb4\x91\xa7\x16\x37\x13\x0c\x32\x6b\x45\xac\xc1\x13\x61\x6a\x2f\xfa\x09\x34\x51\x93\xb6\xdf\xce\xcb\x60\x4a\x7c\x0e\xcf\x8b\xcb\xcd\x85\xf4\x86\x51\x4d\x4a\x60\xb8\xe7\x6d\xa2\x94\x75\xa9\x37\x39\xfa\x9f\x5a\xfb\x8e\xe1\xd5\xe5\x75\x59\x13\x1a\x6f\x57\xbb\x28\xf5\x5d\x84\xb5\x3a\x68\xff\x2d\x81\x7c\x24\x31\x56\x8c\x00\x40\xc2\x2a\xa7\xd5\x3d\x37\x7d\x6a\xda\xaa\x74\xb9\x76\xcb\xb7\x40\xad\x29\x35\xf3\x89\x40\x4a\xe7\x3e\x02\xd1\x37\xc9\xdd\x87\x81\x3c\x88\x04\x42\xa8\x57\x5a\xb1\x4c\x99\x71\xcd\xf9\xbc\x64\x87\x5b\xc8\xe8\x66\x30\x5a\x68\x24\x99\x20\x91\xbe\xca\x4e\xd1\x4d\x42\xb4\xe4\x95\x6b\xe9\x2b\x4f\x12\x87\xf0\xb5\x5a\x3a\xdc\x08\x95\xee\xc5\xe7\x15\xe8\x1e\x2b\x26\xe6\x10\xee\x56\xcf\x2c\x58\x83\xfd\x23\x2e\x04\xeb\x0b\x26\x64\x30\x24\x96\xb5\x48\xe0\xf0\x0b\x13\x37\x0b\xa6\x24\x5c\xba\xc8\xe8\xaf\x9a\xfd\x0a\x22\xe7\xbc\x31\xc9\x31\x9c\xed\xcb\xcc\xc1\x2d\xe5\x0b\x4e\xc2\xdd\x87\x4d\x71\xd5\x2d\xe4\x9a\xca\x1d\x58\x12\x71\x56\x4d\xd1\x57\x7f\xf0\xd1\x1f\x16\x6f\xd5\xde\xad\x76\x68\x70\x4b\x16\xa6\xb6\x10\xfb\xac\x70\x5d\x14\xca\xcc\xc2\xf8\x5e\xfd\xe7\x85\x01\xb9\x48\x09\xa0\x4a\x16\x55\xe7\x90\xbe\x6b\x9b\xb6\x58\xcf\x73\x9c\x8b\x8d\x20\x29\x0a\xd4\xf2\x4d\x38\xb7\x4d\x46\x29\x86\xa5\x17\xa1\x9e\x5d\xda\x62\x12\x20\x46\xdb\x50\x23\x59\x42\x82\xb3\x64\x63\x96\xb1\x56\xc5\x6b\x66\xca\xbb\xba\xd5\x40\x4a\x2e\x44\x99\x97\xf2\xae\x95\x28\xb0\x34\x81\x0e\x5b\x6c\x73\x6c\x31\x5b\x59\xc4\xd3\x1e\x20\x01\x2a\x01\x89\xff\x85\x03\xad\x2a\x38\x58\xa3\xf7\xba\xcc\xa7\xd2\xee\xb4\x4a\x73\x2a\x7d\xa1\x79\xc9\xf9\x8e\x1e\x38\x3d\x99\xc5\x18\x12\x47\x77\x89\xc2\x29\xcd\xdf\x78\x0f\xa0\x4d\x12\x23\x83\x5e\x60\x90\x8f\xed\xda\x79\xcf\x49\x86\x05\x61\x6a\xc4\x6e\xf5\x28\xcc\x17\x45\x24\x86\x8b\xc3\x71\x68\xf4\x50\xb3\x76\x8a\xb0\xfd\x0a\x16\xbd\x29\x10\x4e\x8e\xcd\x4b\xa0\x9a\xbe\x60\x92\xfd\x77\xe6\x1d\x83\x79\x60\x31\x7f\xf4\x54\xe9\xb4\x50\xe3\xb5\x00\x19\xcd\x29\x40\x0e\xc4\x44\xda\x0b\x89\x2a\x8b\x29\xe1\xc5\xef\x9c\x38\xfc\x65\xf8\xcc\xf3\xaf\x3a\x86\xed\x0c\x05\xcc\x19\xe8\xe4\x88\x05\x7d\xac\x80\xeb\x34\xca\xfa\x96\xaa\x04\xec\x33\x8d\xbd\xe3\x0b\xfe\x69\x76\x88\x0b\x3a\xa3\x2c\x28\x9a\x64\xa7\x97\xe2\x0c\xcc\xbb\xe6\x0c\xf2\xa9\xbf\xd3\xee\x6d\x96\xc1\x31\x8c\xf8\x7f\xfe\xfb\x6f\xc7\xb4\xc9\xfb\x21\xc7\x76\x05\x0e\x61\x27\x37\xdb\x96\x70\xe7\x03\x14\x91\x06\x74\x8a\x40\xa7\x95\xa5\xcc\x89\xe2\x57\x7b\xb9\x69\xa2\xe1\x6a\x6e\xdc\xbd\x65\x72\x07\xdf\x88\xc8\x57\xd7\x11\x08\x58\x5c\x11\x10\x50\x78\x7d\x83\xa0\x5b\x57\x25\xc2\x04\x4b\xea\xf6\x2b\x17\x4a\x85\x41\x05\x70\x7e\xbb\x04\x27\xce\xb1\x7c\xb9\x08\x94\xda\xea\x46\xc6\x68\x1c\xde\x91\xeb\x62\x51\xcc\x20\x4d\x52\xa3\xde\x95\x5c\x12\x61\x0e\xb4\x47\x7d\xb2\xc4\x13\x82\x15\x42\x28\xe2\x1a\x97\x1a\x49\x31\xdd\x28\x6c\x5e\xbf\x5f\x0f\xa5\x58\xb2\xa9\xe3\x19\x11\xe3\x38\x2f\xc5\x48\xaf\x6b\xfb\x46\x7f\x74\x9e\xab\xc5\xfa\xf6\x65\x82\x97\xab\xbb\xac\x82\xaf\xd4\xef\x37\x34\xbb\x5e\x30\x0c\x22\x59\xca\xc2\x61\x03\x38\x24\xa9\x80\x43\xda\xd0\xca\x92\x25\x00\x2e\x1a\xa6\x00\x39\xae\x50\x18\xec\x4d\x64\x20\xac\x61\xe4\x68\x92\x17\x96\x13\x5f\x14\x20\x3e\x1e\xb1\x8f\xa6\xaa\x06\x28\x33\x66\x00\x11\xe4\xb5\x90\xcf\x19\x97\xa4\x94\x68\x55\x03\xf4\x6f\x13\x25\xed\x30\xea\x65\xd2\xe2\xa3\xdd\x45\xd2\x37\x87\xf9\x5c\xde\xf0\xe5\x29\xd7\x53\xe0\x4e\x52\x4f\x44\x33\xaa\x69\x67\x5c\x7b\xd2\x5e\xae\xd8\x6c\x11\xba\x04\x70\x4f\x2a\x59\xf4\x90\x9f\x5e\x85\x20\x12\xf2\x44\xc0\x6a\x0c\x63\x0c\xcb\x39\x94\xcd\x57\x0d\xec\x64\xdd\x01\x2a\xb2\x1c\x81\x2d\xa0\xb8\x3a\x82\x72\x2e\x58\x1d\x2d\x96\xb3\x5c\x76\x4e\xc8\xaa\x8b\xbf\xd8\x40\x0a\xed\x87\x65\x2d\x16\x44\x21\xf2\x59\x11\x5b\xf8\xf2\xde\xa5\xcc\x2d\x47\xd9\xa3\xfa\xac\x9f\x66\x11\xe9\xc5\x4b\x10\xf7\x5d\xa2\xb4\xcb\x09\x8c\xdd\xbd\x6f\x73\xe4\xe6\x98\xc5\x36\xf1\xd3\xca\xd2\x5a\xa6\x80\xd9\x19\xdb\x92\x0f\x89\xb7\xe9\x8b\x01\x1e\xb8\x69\xd3\x00\x97\xc3\x45\xe6\xf4\x22\x2d\x99\x43\x14\x01\x17\x5a\x40\xcd\x99\xa2\x89\x26\x0e\x3b\x06\xad\x35\xe7\xcc\xe3\xf1\x41\x00\x77\x13\xe4\x1b\x95\x92\xb2\xd9\xd8\xae\xa4\xcb\x61\x6c\x77\x31\x94\x69\xea\xd2\x34\x65\x7e\xfc\xce\x35\xb4\xda\x76\x6c\xc8\x1a\xe0\xb8\x5c\xf6\x24\x08\xd6\x8c\xbb\xc9\x58\x1c\x35\x97\x74\x39\xa6\xb1\x59\x0a\x6a\xea\x2b\xc3\x44\x37\x31\x2f\x83\x58\xb7\x0c\x57\x50\x5c\x21\xd2\x66\x44\x9a\x3c\x27\x08\x48\x57\x0d\x29\x9f\xb2\x31\xd5\x73\xc8\xbc\x88\x66\xab\x3b\xf9\x84\xf6\x4a\xd6\x28\x76\xdd\xd9\xa8\x7b\x9c\x24\x13\x1c\x3d\x7a\x65\xc3\xab\xdc\x5c\x38\x74\x7c\x2d\xa0\x42\xf9\x2f\x43\x5c\x7a\xa0\x11\x48\x37\xa1\x53\xcc\x00\xd6\xd8\x61\x17\x9d\x9b\x55\xb3\x48\x60\x06\xa1\xc8\x8c\xde\x84\xf0\xc7\x24\x4b\xf8\x22\x6d\xb8\xcf\xaa\x99\x72\xbb\x04\xa4\x34\x25\xea\xed\xf5\x2a\xab\x30\xbd\x8d\x2f\xb3\xa5\xb4\x9b\x3d\xc0\x27\x6d\xc0\x25\x3f\x25\x7c\x02\x96\x43\xab\x65\xbb\x54\x92\x20\xa3\xa1\x7a\x9e\x37\x4d\x70\xa9\x9e\x48\x2a\xb3\x04\x2f\x56\xf5\x60\x52\x2b\x5e\x76\xdf\x4c\x2a\xfe\x7a\x23\x58\xfb\xa0\xe4\xda\xcf\x5f\x02\xa8\xf7\xc2\x49\x02\xe6\x5d\xc3\xbf\x2a\xc6\x24\x93\xd3\x76\x6c\x7c\xb1\x8a\x8f\x98\xc2\x33\xb7\xb9\x56\xb8\xe4\xcf\x8c\x08\x39\xa7\x59\xa9\x2c\xe0\xce\x51\xd0\x96\xa2\xed\x7f\x4c\xcc\xef\x06\xbc\x93\x67\x47\x06\x88\x43\xd3\x87\xcc\x70\x54\x18\xff\xa2\x04\x4b\x49\xa7\x8b\x00\x3f\xc3\x07\x94\x42\x96\x52\x59\x5b\x0e\x2a\x71\xd5\x31\x1a\x33\xbe\xfd\x24\x90\xef\x9e\x3c\xf7\x50\x3e\x7e\x34\x0e\x81\xca\xf4\x7d\xb2\x0c\x96\xe2\x6e\x6a\x0b\x9a\xd2\x08\xb8\x6a\x32\xe5\xb7\x4b\xf8\x5e\x89\x71\xd3\x6c\x46\x28\x84\x49\x3b\x6c\xab\xc8\x78\x5c\x8b\x10\xf3\x45\x95\x32\x06\x61\xf3\xb5\xe2\xe4\xcc\x9f\x9a\x38\x3d\x26\x06\x40\x07\x14\x1f\xf7\x90\xdc\x09\x4b\xaa\x0d\x5d\x9c\x93\x84\xec\x25\xb0\x78\x0b\x22\xa9\x7a\xed\x03\xf2\x58\x49\x1a\x05\x9a\xfe\x7a\xe3\xc2\x16\xf1\xce\x0d\x88\x34\xf5\x43\xff\xc9\x0c\xd4\x86\x3c\xd7\xed\x22\xd8\xbf\x60\x95\xdb\xea\x2e\x75\xd0\x76\xa6\x05\x4b\x72\x45\x37\x25\xba\x2a\x3a\xf5\xf2\xca\x21\x92\xda\x1b\x47\x06\x2f\x8d\xeb\x13\x69\x13\xc5\xb0\xf6\x00\x6c\xc5\x81\x96\xf9\x74\x3b\xba\xb0\x7e\x42\xc5\xd1\x8c\x28\x53\xe4\xde\x57\xf2\x7f\x4f\x34\xb1\xb7\xbc\x86\x3d\xad\x7e\xfd\x21\xdf\xec\xd4\xde\x11\x25\xdd\x95\xb0\x84\x16\x68\x37\xe7\x00\xb7\xe0\x30\x8e\xa5\x11\x5c\xbf\x78\xb9\x65\x67\x2c\x00\x3b\x32\x9b\x11\xff\x1b\x12\xa8\xcc\x1c\x63\xfb\x85\xcf\x7e\x2f\xe1\x3e\xe1\x12\x56\x9e\x59\xa3\xb7\xe7\x7a\x55\xd2\xfe\xd2\x45\xaf\xcd\x69\xbc\x3a\xaa\x82\xba\x3b\x79\x70\x33\x79\xd0\x61\x49\x1e\xe0\xe5\xdf\x74\x0c\x0e\xf3\xfe\x39\x00\xe1\x70\xe9\x4a\xdc\x9f\x88\xf8\x8e\xc8\xe4\x20\x24\xc5\xa5\xad\x78\x2d\x79\xf1\xc8\x81\xf9\x14\xd0\x38\x87\xbb\x45\x87\x71\x92\x6f\xad\x1b\xe8\xe5\x2e\xd8\xf5\xf4\xb2\x17\xfa\x00\x5c\x4b\x0c\xe9\xbf\xb9\x2d\x94\x01\x87\x37\x08\x19\x5b\xf2\x3d\xac\x09\xc6\xb3\xc3\x6b\x15\x86\xb7\xb4\x9c\x2f\xb1\xbd\x36\xd7\xab\xf5\xe6\xbe\x24\xa9\x6d\x3a\x96\x7d\xe8\x28\x2f\xec\xc5\xb1\xd4\x18\x7c\xd0\xc5\xc4\xb6\xbb\x45\x6b\x10\x64\xdc\x96\xed\xf3\x90\xd5\x55\x37\xdb\x3d\x5b\xdd\xa5\xb2\x8d\x33\x41\xa6\xf4\xf3\x56\xa2\xf8\x0d\x7c\x6a\xd5\x4b\xbd\xcc\x95\x7a\x69\xe0\x9e\x81\xfa\x6a\x41\xdc\x9e\x5d\x69\x5b\x53\x69\xc4\x8a\x04\x40\x9b\xfd\xf7\x48\x16\x88\x8b\xd2\x4f\xdb\x62\x1d\xee\xbf\xb6\x9b\xd9\xd7\xb9\x52\x99\x3c\x3d\x39\x99\x51\x35\xcf\x27\xc7\x11\x4f\x4d\xb8\x39\x17\x33\xf3\xc7\x09\x95\x32\x27\xf2\xe4\x8f\x7f\xf8\x43\xb1\xc5\x13\x1c\x3d\xce\x0c\x7a\xcc\xb2\xdf\xa9\xbc\xe5\x04\xcb\xdd\x22\x7b\x5c\xa6\xd6\x0b\x67\xec\x06\xdd\xb8\x1c\x49\xfd\x8d\x54\x38\xcd\xc2\xe8\x51\x53\x1d\x4d\x2a\x5c\xd4\x64\x80\xf4\x3b\x3d\x4d\x34\xc7\x59\x46\x58\xb3\xd9\xc1\xe4\x53\xee\xc0\x7a\x5c\x46\xa6\x1d\x21\xf9\x9c\x25\x98\x95\x51\x06\xa0\xc0\x90\x20\x11\x61\xca\x66\xc0\x17\x15\x93\x81\x1a\x0d\xd2\x8d\xe1\xff\x9b\x65\xdc\xc1\x1c\xa9\x2c\x2a\x87\xb9\xe1\xd8\x2a\x9e\xae\xb6\x23\x0e\x96\xae\x5a\x39\xb5\x58\x3b\xe2\x56\x6d\x55\x2e\xde\xdd\x72\x05\xed\xcd\x2b\xb7\x08\xce\xc6\xe4\xb3\x66\x72\x72\x5b\x5c\xaa\x07\x49\x24\xea\xff\x74\x87\xe4\x82\x29\xfc\xf9\x14\x5d\x52\x06\x02\xec\xf7\x3c\x17\x12\x9d\xe3\xc5\x11\x9f\x1e\xa5\x9c\xa9\x39\xba\x84\xff\xb5\x3f\x3d\x13\xf2\x88\x7e\x26\x58\x58\xfe\x60\x2b\xaf\xf9\x32\xde\x9a\x84\x44\xce\x24\x22\x4f\xfa\x84\xfe\xe1\x3f\x51\x6a\x5a\x3e\x45\xdf\x9e\xfc\xe1\x3f\xd1\xef\xe0\xff\xff\xff\xe8\x77\x0d\x9a\xfe\x66\xc8\x56\x50\xa0\xf7\xb6\xec\xce\xed\x55\x56\x6a\x8b\xa2\xe5\x67\x82\x17\x3b\x55\xdb\xf2\x23\x8d\x1e\xf9\x74\x3a\xd6\x84\x61\xf2\xd5\xc6\x58\x2c\xa1\x22\x6f\x09\x13\x4a\x6d\x89\x65\x53\xb0\xad\x28\x95\x62\x3b\x35\xc0\x06\x8e\x5d\xcb\xbc\x28\x30\x0b\x41\x44\xa5\xa2\xbd\x54\xc2\x57\x24\xd6\x5c\x75\x93\xd3\xe1\xac\x7b\x2e\xc7\xd9\x59\x70\x42\x20\x90\xb0\x6c\xb8\x0f\xfc\x0b\xa3\x58\x4d\xa0\x8f\x5d\xc8\xda\xe3\xb0\x14\x5e\xfb\xc5\xc4\x4c\xc2\xd4\xde\x2a\x5e\x52\x2e\x75\xbe\x3e\x54\xf2\x8e\x8b\x9d\xf4\xad\x47\xb2\x14\xb3\xdd\xb2\x2c\x90\x2b\x55\x1b\x16\xb0\x87\x44\x68\x2e\x3c\x5c\xaf\xb1\x8b\xd8\xe2\x81\xeb\xad\x98\x54\x98\xe0\xb2\x76\x87\x5e\x4f\xfd\xdc\x7f\xb2\x6e\x98\x10\x69\xe6\xde\x2e\xca\xa2\xc1\x68\xb5\x88\xa4\x59\x62\xcd\x88\x6b\x30\xfd\xd6\x6d\xe8\x9d\x87\x71\x80\xc6\x21\xec\x11\x52\x3e\x98\x93\x6c\x6d\x9e\x7c\xfd\x7e\xe6\x22\x22\x67\x7c\xb7\xb0\xd7\x84\xb2\xa5\x78\xf9\xf6\x15\x77\xfc\xea\x5d\xd8\xda\x4a\x0e\xf6\x96\xc7\x85\xb2\x60\xdc\x02\xb6\xd8\x42\x80\xb7\x59\x9e\x0d\xe0\xb6\xed\x03\xd2\x71\xa9\x04\xc0\x0e\x5c\xdb\x18\x8e\x0b\x86\xe7\x2a\x48\x54\x0a\x47\x08\xac\x79\xe1\x8a\xd8\x35\x08\x2a\xda\x79\x1c\x41\x31\x94\x22\x52\xa9\x52\x74\x1c\x9b\x8a\x20\x62\x4b\x48\x4e\x53\x97\xa8\x87\x04\x86\xa0\x4c\x35\xd7\xed\x49\x22\x8e\xa6\x38\xa2\x6c\xd6\x0b\xd0\x18\x01\x19\x21\xbc\x0e\xea\x88\xf4\x1e\xcb\xc7\xfd\x06\x1a\xee\x5c\xa7\x91\xc6\x45\xad\x30\x8b\x9f\x62\x1c\x1b\x74\x09\x8a\x4e\x61\xf9\xd8\x04\x20\xb4\x84\x5e\xb6\x62\x74\x7e\x29\x1c\xe6\xd9\xaa\xf1\xb9\x4c\x6b\x12\xea\x53\x50\x9a\xc0\x55\x0e\xb6\x58\x86\x2e\xb1\x0d\x7b\xb0\x91\x2a\x88\xe7\x8a\xf1\xcb\x39\x17\x6a\xbc\x25\xfc\x69\x35\x5b\x9c\x91\xa3\x04\x70\x4b\xf8\x13\x11\x4f\x94\x3c\x97\x51\x44\x37\xa1\x45\x63\x34\x0b\xa2\xea\x00\x66\x32\xcd\x38\xa4\xd0\x4c\x51\x8a\xd9\xc2\x30\x4a\xcd\x5c\xb0\x7c\x94\xbe\x5e\x29\x92\x29\x4e\x92\x1e\x12\x24\x97\xa6\x8e\xaf\x24\xc9\xf4\xc8\x55\x7c\x88\x51\xc2\x67\x34\xc2\x09\x9a\x24\x3c\x7a\x94\x23\xa6\x05\x05\x36\x33\x4c\x2a\x13\x3c\x22\x52\x06\x92\x55\x91\xb4\x6d\x53\xe9\xa0\x58\xa9\x22\x22\xa5\x8c\x4a\x45\x23\x27\x32\x15\xd8\x0b\xa6\x64\x76\x84\xc1\x24\x0c\x89\x89\x30\x5c\x2d\xe9\x11\x83\x41\x99\x33\x5b\x1b\x08\xae\x6b\x0b\x2d\xe7\x82\xc4\x9b\x0e\xd0\x1e\x90\xf2\x1c\x85\x8c\x55\xf9\x40\xae\x39\x52\x67\xf6\x33\x38\xc6\xab\x48\xe0\xb6\x7c\xa2\x3c\x41\xfa\x93\x56\x42\xef\x81\x98\x72\x1f\x02\x5f\x92\x5c\x7c\x64\xf8\x81\x01\x77\xc1\x90\x1b\xe0\xba\xd6\xd1\xb4\x5e\x45\x10\x79\xa0\x1c\x55\xd5\x6b\x4e\x59\x94\xe4\xb1\x2f\x48\xa8\x45\x80\x27\x4d\x24\x6e\x79\xf4\xda\x6b\x41\xa1\x87\xb0\x44\xcf\x24\x49\xf4\x7f\x4d\x04\xfc\x91\xaf\x0f\xa0\x59\xb2\xa9\xe1\x00\x9d\x38\x2e\xdd\x44\x51\x07\x07\xc2\x78\x83\xd5\xdc\xa4\xb6\xa7\x5c\x99\x5a\x90\x06\x84\xd1\xd9\xb7\x0c\x6a\xdf\x24\xe1\x13\x38\xe9\x80\xcf\xe8\x52\x63\x83\xb4\xba\x3c\x8a\x08\x89\x49\x8c\xbe\x0e\x0e\xae\x87\x5d\xf8\xa6\x1e\x2d\xb0\xb4\x22\x07\x80\xcd\x58\x35\xac\x35\x22\x34\x96\xcb\x99\x1d\xa3\x9b\x0a\xfe\x48\x58\xa6\x1c\x57\xd1\xa8\x7a\x4b\x5b\xf8\x36\x78\x8e\x95\x49\xbc\xdc\x0e\x6d\x88\xe7\x58\xea\x73\x0f\x78\x8e\x95\x79\x36\xc4\xee\xf3\xd9\x8b\xe6\x1c\xeb\x49\x5d\xf0\xf6\x89\x60\x06\x07\xcb\xdc\x9d\x25\x12\x74\x07\x72\x51\x47\x88\x87\x85\x55\x59\x29\xfa\xf7\xb6\x58\x95\x95\xc1\x1c\x32\x56\x65\x65\xa8\x87\x8b\x55\x59\x33\xd0\x16\x58\x95\xc6\xb9\x3f\xd6\x44\xdd\x8e\x29\x40\x62\xcb\x24\x9f\xde\x41\xaa\xf7\xca\x31\x9e\x99\xc0\x01\x73\x8d\xb9\x3b\xda\x42\x37\xc3\x68\x6d\x0e\x64\x53\x38\x54\xc5\x09\xb1\x29\xed\x79\xef\x1b\x95\x46\x43\xdb\xcc\xec\xde\x0b\xad\xdd\x60\x87\x8c\x70\x66\x73\xca\x9b\x2a\xaa\x1c\x4e\xf6\xec\x76\x30\xa0\x00\xb5\x57\x62\xf9\xad\x80\xb2\x2e\x2b\xc5\x09\xe6\xfc\xd9\x16\x08\x02\x32\x34\x44\xd9\x48\x82\xd0\xe9\xd8\x2a\x6d\x4d\x2b\x47\x99\x22\xb3\xaa\x4e\x5b\x1c\x1a\xca\xd4\x9f\xfe\xb8\x96\x13\x19\x24\x41\xa7\x1e\x06\x25\x02\xbc\xb3\xc3\x3e\x23\x31\x8a\xe6\x5a\x2b\x92\x5a\x7d\xd1\xd3\x31\x37\xab\x44\x29\xa6\x4e\x91\xca\xa5\x71\x2d\x51\x39\x62\x25\xe8\xcd\x63\xf4\x11\xea\x9e\xe2\x34\xd3\xfa\x97\x9f\x1f\xd5\x94\x34\xca\xbf\xfd\xf6\x4f\x04\x7d\x8b\x52\x82\x59\x49\x87\x05\xb5\x49\x5f\x7d\x00\x55\xa7\xe6\x64\xc4\x6a\xb7\x02\x0d\x3e\x9b\x52\x4a\x2e\xde\x6f\xc8\xa6\xdc\xe9\xc4\x50\xcf\x0f\x47\x73\x24\xf3\x89\x29\x48\x1b\xd8\x30\x9c\x20\x7d\xc1\x67\xe0\xa8\x86\x1b\xd9\x0d\x7a\xd5\x29\x7c\xd9\x18\x00\xeb\x6e\x6c\x7b\x1b\xf7\xe1\x1e\x39\x92\xa4\x04\x61\x54\xe3\x34\x33\x9c\x2f\x3c\xf8\xd2\xe0\x9f\xf6\x8c\x0f\x41\xeb\x67\xd8\x5a\xf6\xb5\x2c\x0d\xe1\xbc\xe0\x25\xcb\x13\x2c\xec\xd1\x1f\x31\xad\x68\x08\xf2\x44\x79\x2e\x93\x05\x8a\x39\x23\x3d\xa0\x84\x3c\x9a\x1b\xc7\xaa\xd6\x59\xb0\xad\xcb\xf0\x44\x65\xae\x15\x5a\x68\xcb\x95\x81\x90\x0a\x1b\xe8\xa5\x39\x85\x7e\xb4\xfa\x4d\xe0\xab\x30\x4b\x0e\xb5\xd3\xa2\x42\x74\xd4\x0a\xcf\x6f\x89\x8e\x5a\xa2\xaa\x0e\x1d\xd5\xa3\xa3\x2e\xaf\xcb\x21\xa2\xa3\x56\xf6\xbc\x1d\x3a\x6a\xdd\x96\x6f\x81\x8e\x5a\x6a\xe6\x8b\x41\x47\xad\xac\xe8\x17\x83\x8e\x5a\x99\x57\x87\x8e\xfa\xe5\xa1\xa3\xee\x88\xff\x59\xcf\x8b\x0d\xbe\x92\xa2\x6c\xb1\x31\x91\x7d\x25\xd1\xf0\x5a\x13\x58\xf4\x58\x0e\x6a\xf3\xd7\xd5\xee\x98\xa3\xf5\x4c\x68\x33\xcc\xd1\x5a\x55\xbd\x99\xd5\xed\x0a\xf0\x04\x8a\xc1\x2b\x63\x8e\x96\x26\xd0\xc5\x57\x6e\x1e\x5f\x59\x4b\x7c\xb6\x6f\x3d\x3c\x17\x74\x59\xbd\x90\x5b\xa2\x8e\x96\xf6\xa7\x55\x24\x26\x88\xee\x7b\xa0\xc4\x97\x95\xe6\xef\x4b\x87\x7c\xad\x2c\x1f\xae\xa2\xb4\xf8\xc7\x5a\xc2\x73\x68\x71\x46\x09\x0f\xfd\xff\x1d\xe5\x6e\x11\x19\x5c\x59\x5e\xef\x57\x31\xb4\xd8\x82\x54\x5b\x53\xa8\xd3\x4a\xf7\x93\x28\xeb\x92\x27\x37\x74\x31\xbb\x41\xdc\x65\x24\x6a\xb0\x31\xd3\x94\xee\xab\xd9\x75\x17\x99\xc7\xc2\x02\x85\x7c\x29\x2f\x54\x5f\x4f\x66\x38\x46\xc6\xaf\xa4\xc3\x02\x50\x87\xf9\x72\x46\xa5\x12\x8d\xb1\x4d\x4b\x23\xdc\xc5\x55\x9a\xe5\xad\x03\x62\x82\x55\x9d\x6d\xf7\x59\x4a\x52\x2e\xd6\x05\x56\xd5\x7e\x69\x2b\xba\x6c\xf3\x29\xc9\xe6\x24\xd5\x92\xcc\x78\xd3\x46\xda\xee\xb7\x4f\x1a\xb6\xb9\x6b\x26\xd0\xb1\x44\x04\x81\x23\x54\xbf\x1b\x1b\x44\xca\xd6\xdb\xbd\xeb\x36\x5b\xcc\xcc\x0d\x1d\x42\x0e\x33\x78\xb5\xc1\xcd\xbe\x54\x72\x77\x03\x7d\xd7\xc6\x74\xf8\x90\x9a\xf5\x51\x1b\x2b\xe2\x35\x56\xe1\x4e\x15\x5f\xd9\x7a\xc7\x1b\xb8\xf2\xcb\xde\x79\xcd\x09\xc3\x62\xb7\x9b\x07\x78\x34\xa0\xa6\x2e\x2f\x0f\x44\xe6\x48\x22\x8e\x42\xcd\xa0\x34\x98\xe5\xf5\x2a\x51\x89\xd3\x28\x77\x20\x92\x5c\x34\x46\x99\xb6\x31\x68\x47\x2a\xc7\x09\x68\x12\x61\x91\xc6\xea\xa6\x4e\x16\x35\x69\x8f\xed\x3c\x26\x94\xa9\x3f\xff\xc7\x46\xbb\xa9\x55\x2b\xbb\x6e\x50\x58\x0a\x47\x11\x91\xc6\xc6\x6e\xa3\x90\xf1\x84\x3f\x41\x4d\xa9\x5d\x76\x55\x1f\x65\x3d\x6f\xcd\xe0\x3d\x14\x71\x5c\x90\xba\x11\x17\xe6\x82\xe7\xb3\xb9\xb3\x21\xe9\x33\xa3\xa7\x56\xb7\x97\x3f\x2e\xd9\xc8\x37\xde\xcb\xef\x72\x9a\x6c\x67\xa1\xbb\x2b\x55\xdb\xfa\x34\xbc\x47\x72\xee\x4f\xeb\x04\x9a\xad\xdd\xd8\xe5\x41\xb7\xef\xd3\x7e\xeb\xfd\x35\xd0\x4d\xcf\xc1\x6f\x4e\x79\x92\x80\xa7\x41\x92\xf4\x29\x2c\x92\x1f\x76\x0f\x13\xbe\xa7\x9b\x21\xe7\xf9\x01\xc0\xd7\x45\x62\x44\x2b\xf9\xeb\xc6\x88\x86\x12\xb9\xd1\x57\x83\x16\x4c\xa8\x1a\x67\x84\xd5\xd9\xd8\x7e\x5a\x2e\x74\xf2\xce\x02\x06\x5d\xf4\xd8\xde\x82\x06\xdd\x92\xbc\x72\xe0\xe0\x9a\x79\x1c\x6a\xf0\x60\x85\xd9\xf9\x58\xbe\xe2\x9a\x71\x81\x43\x46\xf1\xe9\xeb\x25\x1e\xb1\x7e\x29\x9f\xc2\x15\x84\x9e\x2c\x8a\x80\x6c\xa3\x43\x84\xcc\x0c\xca\x49\x58\xc3\x0a\xb8\xd1\xf4\x5f\xa0\xe9\x18\xf0\x5a\x13\x52\xe8\xc2\x06\x21\x9a\x9c\xc4\x47\x38\x5a\x44\x09\x8d\x02\x9d\x79\x26\x70\x36\xaf\xe3\x78\x6e\xe7\x3b\xd4\x9d\xb7\x42\xdd\x69\xaa\xbb\xb4\x49\xdc\xb6\xa3\x2b\x86\x53\xd2\xa1\x01\xd5\xa1\x01\xf5\x3c\xde\x05\x2b\x2a\x48\xbd\x21\x8c\xc2\xf2\xb9\xeb\x20\x81\xde\x00\x12\x68\x9b\xc3\x57\xe0\xfd\x94\x8e\x5d\x07\x53\xf4\xa1\x15\x4c\x91\xbf\x04\x0f\x0a\x79\xa6\xf9\x3c\xbe\x31\xa2\xc9\xf2\xc0\xde\x12\x96\xa8\x46\x5c\xd8\x44\x6e\x5a\x85\x4b\xb4\x8a\x2e\x5a\xad\xcb\xdb\xa2\x04\x6d\xb6\x32\x1b\x01\x00\xd5\xde\x5d\x07\x02\x07\xd4\xbc\x0d\x07\x72\x6e\xf6\x99\xd5\xb2\x59\x89\xcc\x30\xb3\x65\x13\x05\x6b\xb3\x24\x17\x4f\x0f\xef\x2b\xd1\xa5\xa8\x25\xb6\x5d\xb2\x4b\xdf\xf9\xa0\x89\x40\x73\x9e\xc4\x0e\x84\xc2\xaf\x96\xef\xc0\x67\x02\xf8\x05\x72\x9b\x01\x35\xbd\x41\xdb\x2a\x0a\x82\xad\x4a\x69\xf1\x9b\x08\xc3\xdd\x03\xa3\xd9\x87\x15\xc1\x73\x92\x6d\xec\x07\x6b\x65\x11\x59\x36\x7f\xaf\x18\x63\x69\x85\xc0\x6a\x5e\x3f\xcc\xb5\x76\xdf\x35\x83\x5b\x25\x7a\x04\xc6\x41\x51\x57\xd1\xd2\xd0\x19\x3c\x7d\xa2\xce\x10\x81\xc3\x1e\x57\x7a\xe9\xdc\xec\x5a\x79\xea\xaa\xc4\xb2\x45\x30\xd8\x52\xe5\xb6\xdd\xc1\x81\x52\xfc\x79\x9c\x61\x81\x93\x84\x24\x54\xa6\x2f\x16\x0c\x7c\x56\x76\xd7\xea\xb3\x2a\xb8\x31\x11\xb1\x3c\x9d\x18\x52\x74\x03\xb1\xf5\x22\x15\x47\x22\x67\x21\xb4\xd9\xf3\x52\x51\xfd\x1c\xee\x05\xb0\x2a\x45\x73\x28\x4e\x3a\xc5\x54\x30\x22\x1b\x4b\x41\x92\x28\x17\x54\x2d\xc6\xb6\xb2\x66\xfb\x03\x77\x67\xbf\x3c\xb3\x1f\xae\xf6\x70\xbb\xac\x7e\xd7\x9f\xaf\xe4\x99\x11\x01\x65\x82\x5c\xc1\x9b\xa0\x7a\xa8\x45\x6d\x20\xbe\xd6\x10\x84\x3f\x2f\x5d\xdb\x4d\x81\xc3\xf8\x79\x1c\x64\x54\x8d\xa3\x2a\x71\xac\x3b\xac\x75\xb8\x53\xab\x26\xf9\xc2\xc8\x4b\x0d\x5e\xe4\x17\xa8\x32\x62\xd3\x26\x4c\xd3\x7a\xc0\x81\x2b\x18\xec\x95\xc5\xc6\x04\x29\xef\x56\xa9\x6a\x18\xa7\xc5\xfa\xa9\x0b\x3e\x5a\x31\xd8\x7e\xf0\x55\x8b\x11\x07\x9d\xec\x69\xd8\xfa\xa0\x0b\x91\x67\x8a\x4e\x96\xa1\x6d\xd4\xfe\xaa\x8e\xf6\x13\x48\xb3\x76\x6e\x86\x52\xb7\xa6\x14\x69\x89\x13\xdb\xd9\x69\xf9\xdf\xe2\x88\x39\x84\x20\x83\xb0\x14\xe6\xf1\x5d\xa7\x54\x29\x97\x28\x60\x0c\xd0\x9a\x3a\xcb\xb6\xd9\xaf\x5c\xb8\x07\x86\x82\xa6\xc6\x44\x74\x3c\x62\x7d\x89\x9e\x09\x62\xc4\x42\x48\xd4\x94\x2a\xf5\x56\x6d\xa8\xfd\x34\x21\xba\x27\x1f\x9b\xa2\x85\x07\xaa\xa4\x2f\x3f\x66\xfa\x98\xe2\x44\x92\x9e\x6e\x18\xaa\x96\x2a\x0e\xc1\x9f\x18\x3d\x0b\x9c\x65\x44\x8c\x98\xcd\xe2\x00\x87\x0b\xe7\x89\x69\xbf\x29\xc4\xd5\xae\x01\x19\x47\x38\x9a\xbf\xd2\x1e\x61\x48\xc6\x89\xe6\x24\x76\xf9\xc2\xe5\xed\x71\xf3\x36\x06\xeb\x0d\x36\x6b\x38\x75\xe5\xb3\x7a\xb6\x93\x24\xd2\x1c\xc5\x57\x53\xce\x88\xd0\xa3\xd6\x34\xfc\x44\x18\xa2\x53\x37\x0e\x1b\xbb\x83\x9e\xc1\x33\xa5\x49\xff\x09\xd3\xc4\x24\xe0\xbb\xae\x9d\x10\x68\xcc\xef\x23\x66\xdc\xdd\x2c\x2a\x65\xa8\x52\x46\xe5\x5c\x73\xea\x1c\x7c\x92\xa0\x66\x34\x25\xce\xb0\xa7\x4d\x4e\xf3\x40\xbf\xbe\x9a\x83\x3e\x51\xc1\x59\x0a\x49\x32\x16\x97\xc9\x2d\x9f\x24\xca\x1f\x8f\xda\x14\xc7\xb5\x12\x71\x1c\xcb\xb2\xf1\xd3\xa8\x95\xf4\xd7\x92\xd9\xe5\xa8\x94\x15\x18\x05\xb0\x42\x10\xc4\xe9\x2a\x8b\xad\x92\x7f\xbb\xd4\x86\xe5\xd4\x86\xfa\xb5\x39\xc4\xf4\x06\x7f\x88\x37\x4d\x71\x68\xda\xfe\x7d\x48\xb6\x7b\x4c\x75\x78\xe3\x9c\x80\x97\x49\x07\x78\xdb\xfc\x8d\x97\x48\xdd\xe8\x12\x1c\xde\x30\xc1\xa1\xb5\xa5\xb6\x1c\x9b\xdd\x7c\x6c\x37\x4a\x0e\x58\x03\xe6\x54\xd7\xcb\x25\x51\x82\x46\x72\x1f\xfc\x41\x66\xb8\x65\x54\x1b\x68\x81\xd9\x1a\xa9\x49\xbf\xe0\x9d\x90\x10\x27\xe6\xeb\xfc\x4d\x04\xc1\x8f\x31\x7f\x5e\xb2\xd5\xc9\x10\x4d\xe3\x92\x6b\xb1\x47\x90\x88\x4a\x52\x8a\x64\xa1\x12\x31\x22\xad\xb1\x13\x8f\xd8\x9c\x12\x81\x45\x34\x87\xec\xc6\x62\x63\x4c\x96\xac\x01\x34\x32\xb1\x0c\xa1\xb7\x69\x83\x4d\x6f\xb1\xee\x55\x0b\x93\xc7\xa7\xb3\x7b\xae\x47\x92\x9a\x4f\xbc\x30\x63\xa5\x8c\xd0\x24\xd7\x6a\xfb\x77\x0d\xc4\xf7\x8b\xfd\xa2\xc1\xf8\x3e\x98\x28\xf8\xa2\x65\x40\x7e\x41\x0d\x5d\x50\xfe\x0b\x05\xe5\xd7\x2c\xf1\x66\x81\xf9\x5b\x99\xfc\x5e\x3f\x66\xd8\xf5\xfc\x1a\x71\xc3\xeb\x82\xb6\xf2\xc9\xf8\xc5\x8f\x5e\xed\x9c\xdb\x9e\xc0\x9f\x3c\x51\x18\x89\x58\x68\x3a\x9b\x90\x38\x06\x4e\xab\xb8\xad\x14\x5d\xd0\x8e\x33\x0f\xe8\xbb\x17\x4b\x4d\xec\x38\xe1\x6c\x26\x69\x6c\xc0\x56\x32\x0c\x15\x5b\x43\xe3\x05\x80\x0b\xc0\xfe\x26\x09\x11\xce\x2b\x21\xd0\xd7\x92\x32\x8b\xa6\xe8\x7f\x8b\x39\x91\xec\x2b\x65\x8c\x05\x98\x2d\xd0\x23\xe3\xcf\x09\x89\x67\xb0\x43\xd5\xc1\x1c\x21\x4a\x7a\x88\x2a\xff\x99\x00\x34\x02\x9e\xab\x91\x1e\x3b\xc4\x9a\x19\x0d\x80\xd8\x6f\x83\x9a\xe8\xbe\x99\x6f\x8e\x11\x1a\x32\x34\xc5\x91\xea\x21\x99\x4f\x8a\xf6\x63\x6e\x8a\x5c\x6b\xed\x3b\x98\x78\xd1\x48\x17\x33\x5e\xd3\x79\xfd\xd9\x70\xdc\x41\x93\x6b\x3f\xa1\x78\xa7\xd8\xba\x27\xbc\x0b\xc4\xe8\x65\x2e\x6d\x10\x06\xe2\xcc\x1f\x7d\x0b\xaf\xe4\x31\xa2\x01\xef\xd3\xe0\x2d\x33\x1e\x37\xda\x3a\x2b\x53\xd9\x74\x2c\x45\x20\xa4\x15\x94\xac\xa3\x0a\xda\x35\xcb\xad\xa5\x26\xa9\x04\xc1\xa9\x75\x0e\xe8\xab\x06\xc4\x1a\x13\x06\xa9\x47\x4f\x85\x91\x30\x37\xd9\xe2\x0b\xca\x1e\xf5\xee\x16\xa8\xd8\x50\x5f\x1e\x7a\xae\xdb\xb4\x4c\xdf\x78\xe4\x8c\x33\xe3\x20\xdc\x49\xee\xa4\x33\x86\x93\x0d\x6d\x1c\x4b\x2b\xb7\xec\xd3\x73\x72\x96\x15\x17\xb4\x14\x61\x8c\x7d\xc8\xf4\xb8\x91\x0d\xa9\x32\xdf\x50\xde\xc3\x28\x26\x19\x61\x31\x61\xd1\x02\x48\x84\x01\x72\x8e\x60\x38\x41\x18\xbe\xc3\xc9\x31\x3a\x37\xf9\x35\x5e\xc2\xb3\xd7\x3a\x5c\xe8\x29\x66\x74\xaa\xf5\x04\x30\xc2\xda\x51\x8e\x98\x19\xa6\xf3\x81\x04\x45\xfb\xfd\x8a\xd5\xed\x8c\xbe\x41\xae\x76\x44\x25\x66\xe5\xef\xd1\xea\x0b\x07\x7a\x5b\xb5\x3b\xba\x39\x57\x83\x40\xe6\x93\x23\xf8\x77\x29\xe1\xcc\x01\xf5\x14\x28\x32\x24\x21\x60\x0e\xb4\x1e\x2f\xb8\x18\x9b\x80\xe5\xf6\xe1\xb7\x5b\x93\xc7\x11\xf4\x51\x52\x6a\x52\xca\x68\x9a\xa7\x81\xf3\xce\x54\x2c\x88\xac\xfd\xd2\x64\x62\x64\x5a\x0f\x88\x1c\x78\x39\xd2\x97\x2b\x5b\xa0\x19\x7d\x22\x6c\xc4\x32\x4e\x99\x3a\x46\x57\x5c\x91\xa0\x44\x84\x81\x8e\xe2\x99\xa2\xa9\x41\x3b\x15\x44\x9f\x03\x03\x8a\x0d\x40\x93\x73\xac\x7a\x28\xce\xe1\xa8\x32\xa2\x34\xeb\xd0\x37\xae\x82\x9d\x81\xf8\x68\x31\x62\xe6\xa6\x9b\x62\x9a\xe4\x82\x58\x99\x15\x9b\xbc\x98\x62\xc8\xc5\xc8\x2c\x12\x5a\x30\x89\x94\xce\xe6\x4a\x6f\x91\x96\xf1\xac\xbf\x71\xae\xb9\x11\x1f\xb1\x09\x41\x18\x65\x5c\x52\x45\x9f\xbc\xff\x92\x4e\x11\x96\x12\x2c\x28\xc7\xe8\xbc\x64\xff\xa7\x12\x54\xef\xa6\xb8\x5a\xca\xc6\xd6\xf6\xdc\x9c\x8f\xb3\xf3\x46\x96\x7a\xb1\xab\x8c\x27\x92\x27\xb9\x0a\x5d\xb0\xf5\x7b\x5b\x98\xc6\x1d\x70\x3f\x18\x88\xf9\x74\xc4\x1c\x5d\xcb\x63\xd4\x97\x48\x72\xbd\x4b\xd2\x6c\x65\x24\xa8\x22\x82\x1a\x14\x27\xa2\xcc\x26\xf8\x73\xea\xcf\x40\x8a\xc5\xa3\x16\xa1\x42\x0b\xbc\xc1\x14\x2d\x59\x3b\x26\x46\x42\x02\x58\xab\x70\x3b\xc0\xf4\x8f\x18\x67\x47\x8c\xcc\xf0\xba\x1d\x19\xb1\xd2\x96\xa0\xaf\xe9\xb4\x50\x48\x9b\x7c\x8e\xc1\xda\x8d\x21\xf2\xa9\x69\x97\x4c\xc7\x4d\x9b\x34\x4d\x38\x5e\xe3\x36\x9e\x16\x87\x1e\xfd\x9d\x4f\xcc\x18\xb5\xde\xcf\x15\x48\x81\x5a\xbd\x9a\x72\x41\xe6\x98\xc5\x3d\xb7\x59\xe5\xb1\xc1\xcd\x68\x4d\x6d\x4e\x19\x03\x49\xd0\x81\x08\x13\x83\xc5\x84\x59\xb0\x17\x56\x71\xb3\x5b\x51\xec\xc3\x46\x77\x85\x6f\x0d\x6a\x9f\x18\x03\x84\x61\x79\x8b\xcc\x1e\x71\x49\xd3\x2c\x29\x72\x9a\x02\xdb\xe8\x54\x8b\x58\x8e\x47\xf2\x27\x30\x5d\x39\xad\x0d\x6e\x75\xbb\x73\x9a\xce\x6a\x46\xee\x19\x29\xdc\x1a\xce\xe6\x65\xca\x60\x06\x2c\xec\x6b\x49\xf4\x3f\x15\x29\xd4\x3e\x23\xac\x8f\x98\x13\x41\xbe\x01\x2e\x63\x9b\x0d\x8c\x67\x5a\x84\x36\x30\xaf\x76\xfd\x50\x64\x9c\xdc\xa5\x73\x62\x0f\x83\x7b\xb5\xe6\xa2\xfa\x8e\x32\x5c\xca\xbc\xdd\x42\xf0\x4b\xf2\x8d\x92\xab\x02\xb7\xdf\xa2\xa9\xa6\x89\xc2\xeb\xca\x8c\x6c\x40\x09\x66\x9f\x09\xd2\xdd\x59\x6a\x76\x15\x6f\x30\x44\x04\xcc\x49\x92\xa1\x98\x4e\xc1\x2c\xa5\x80\x7d\x7b\x60\x31\x83\x05\xaf\x0f\x7b\x9a\x33\x03\x12\x67\x3c\x22\xcf\x16\x6f\xdb\x5e\x8d\x45\xe3\xc7\x23\x36\x54\x5f\x49\x2d\xa2\x73\x36\xd3\x17\x4d\xfc\x44\x65\x51\xe4\x24\xe2\x4c\xe6\x29\x11\xb6\x0b\x7d\x23\x6b\x8a\xb4\x05\x02\xb0\x93\xa1\xf4\xd8\xf4\xde\x3f\xe1\x84\xc6\xae\x10\x8f\xfe\xd1\x9c\x39\x3d\x4a\xe9\x3c\x8a\x35\x21\x61\x76\x73\x63\xbd\x56\x6f\x26\xd6\xff\x18\x4a\xee\x28\x2d\x84\x7c\x6c\x6d\xf5\x27\x55\x11\xdf\xae\xfa\x0a\xf1\x7e\xb2\x34\x29\xb4\x5a\x30\xb2\xab\x70\xbe\x0e\xc5\xd0\x21\xea\xe6\x26\x04\x58\xf7\xe3\x8c\x3e\x66\x70\x1b\xb1\x9f\xca\x04\xed\xa8\x0d\x67\x09\xc5\x7b\x42\x41\x36\x90\x0a\x6b\xf1\xc2\x5c\x07\x5c\x58\x0d\xc7\xde\x39\xcd\x5b\x7b\xbe\x63\x99\x08\x19\xe1\x64\x79\x87\x57\xd8\x9b\xcd\xfb\xab\x95\x00\x7b\xdc\x4c\xdb\x2b\x93\x7e\x23\x9e\x24\x9b\x94\x30\xa9\xcc\xfc\xac\xf8\x7c\xf5\x88\x8a\x7e\xf4\x06\xb8\xbd\x80\x53\x63\x2e\x6f\x9c\x58\x53\x8a\x54\x76\x97\xc2\x97\x8c\x1a\xb6\xb0\xac\x75\xc4\xf8\x14\x8a\xdc\x24\x4d\x51\x5d\x99\xe0\x29\xdd\x04\x65\xd9\x04\x3a\xdd\x3a\xbb\xf8\x1a\x2b\x83\xb3\x9e\x83\x68\x6a\xc8\xcb\xf6\x08\xf9\x7a\xd8\x8a\x9b\x2b\xce\x50\x8a\xb3\xad\x16\x7c\x9d\x57\xa8\x8f\x52\xe3\x92\xb3\xab\x07\x78\x8b\x04\xea\xc5\xc0\x22\x3f\xe3\x45\x91\x1a\xdd\x84\x9f\xcb\x36\x22\x87\x07\xfd\xfa\x90\x4d\xf9\x06\x87\xb3\x48\x65\xb6\xa7\x0f\x3b\x9a\x0d\xce\x9f\xf7\x52\x98\xdd\x37\x6b\xda\xe6\x3c\x9e\xd5\x11\xf5\xc6\x27\xd3\xad\xe0\x4b\xda\x28\x43\x26\x12\x9a\x27\x37\xb9\x5b\xcb\x47\x2b\x68\x11\xc1\x70\x56\x2f\xd5\x65\x89\x0e\xf7\xbe\x46\x95\x76\x90\x31\x85\xbb\x60\xea\x9b\xfa\x56\x5f\x61\xcd\xec\x21\x69\xb5\x58\x3b\x62\x37\x6c\x86\x03\xec\x7a\xf4\xa8\xbf\xf5\x27\x74\x6d\x91\x83\xf6\x8b\x01\xdc\x4c\x5a\x3b\x57\x11\x99\x69\x53\xd4\xa6\x34\xd1\x22\xf6\xb0\xc6\xc0\xe9\x12\xc4\x7c\x40\x95\x09\x95\x77\xd2\x53\x2e\x68\x50\x18\xd4\xc9\x48\x88\x42\x81\x92\xd0\xc9\x13\x28\xf4\x60\x5a\x9c\xf3\x67\x13\x9d\x2e\xa8\xe6\x59\x46\x58\x55\x60\xee\xd1\xbc\x80\x5a\x6b\x89\x31\x36\xf9\x0f\xb8\x89\x19\xc4\xb6\xf6\x71\x31\xaa\x86\x2d\xdd\x47\x89\xa7\xf6\xf9\x77\xae\xd7\x7b\xfd\xc5\xf2\xde\xd4\x8e\xf0\xbe\xdc\xfa\xc6\xa3\xf3\x52\xfe\xe6\x01\x53\x1f\xe1\x53\xa7\xf4\x60\x34\x15\x04\x1c\xfc\xa9\xc7\xd4\x30\xa0\xba\x9c\xc3\x7d\x77\x77\xfe\xc3\xc9\xc3\x10\x11\x15\xa1\x84\x3e\x92\x11\x8b\xe4\x53\x4f\x8b\xc7\xff\xc8\x89\xd2\x3f\x37\x78\x04\x68\x4a\x98\x04\x4e\x40\xd5\x12\xf6\x50\xfd\x42\xba\x85\xd1\xff\x3d\x2f\x7f\xbf\x82\xe4\x97\xd2\x87\x81\x76\x5d\xbd\x1b\x20\x53\x28\xe9\x61\x96\x56\xd6\x50\x8c\xb1\x45\x0e\xea\xaa\x61\x6e\x91\x2e\xc4\xfe\x9e\xb3\x0d\x85\xae\xb3\xe2\xa3\x60\x14\x0d\x32\x5d\x9a\x61\xc0\xba\xde\x2c\x0f\xc9\x7c\x53\xdb\xfa\x3a\x26\x52\xa4\x65\x3b\xdb\x72\x51\x38\x14\x29\x41\x08\xb0\x10\x4f\x4f\xf6\xae\xb7\x48\x1c\x7e\x62\xc1\x47\xc7\x23\x76\xe9\x3c\xce\xc5\xaf\xb2\xd0\xc3\xd3\x49\x00\x01\x5e\x6e\x05\x9a\x8d\xa9\xf4\x3f\x40\x41\x17\x99\x27\xca\x54\xb4\x9b\x52\x86\x13\x3f\x50\xf3\xa4\x8e\x4b\x08\xcc\xa2\xf9\xae\x26\x64\x3a\x1d\x93\x64\x13\x49\x74\x38\x1d\x24\x52\xd3\x77\xf4\xd8\x70\x3a\xb7\xa9\xd9\x58\x4c\xc6\x56\xa2\x35\x75\x9f\x50\x61\x82\xc6\x89\xa9\x28\x47\x10\xf8\x28\xab\xd9\x63\x06\x20\x42\xef\xa2\x95\xd4\x8d\x8b\xd2\xa4\x6d\xf8\x90\x6c\xe8\x05\x61\x35\x62\x22\x67\x50\x6c\xc2\x47\x2c\x60\x54\xe0\x85\x47\xce\x7f\x60\xbd\x39\x33\xcd\x26\x0c\x1c\xb7\x79\x59\xeb\x67\x3c\x97\x60\xab\x49\x89\xd2\x17\xd4\xd7\x50\x07\xd6\x84\x0c\xf5\x50\x26\x68\x0a\xe6\x56\xf9\x4d\xcd\xd6\x9d\x61\x85\x13\x3e\xeb\x0b\x45\xa7\x38\x52\xf7\x78\x27\x0d\x1c\xdb\x66\xb6\x0d\x3f\x75\xc3\x40\xc3\x73\xbd\xf8\x33\xc2\x88\x80\x89\x6a\x9d\xbc\xfe\x08\xc3\x93\xad\x38\x37\x58\xd9\xac\x61\x54\x7a\x8b\x05\xce\x15\x4f\xb5\x7e\x8b\x93\x64\xd1\x33\x16\x59\x82\xe6\x58\xce\xdd\x46\x1b\x63\x5a\x9b\xbb\xc9\x2e\xee\x19\x8e\xe6\xe4\x0e\xaa\x22\xd7\x2d\x6e\x65\x94\x1f\x08\xcb\xd3\x0f\xa7\xe8\x7f\x8a\x39\x9e\xf5\xcf\xbe\x1f\x8c\xcf\x87\x77\xfd\xef\x2e\x06\xe7\xc1\x7c\xec\x93\xcb\xe1\xdd\xdd\xf2\xaf\xdf\x0f\xef\x97\x7f\xbc\xb9\xbe\x79\xb8\xe8\xdf\xd7\xb5\x72\x71\x7d\xfd\xc3\xc3\xcd\xf8\x63\x7f\x78\xf1\x70\x3b\xa8\xf9\xf4\xe1\xbe\xf9\xe1\xdd\x0f\xc3\x9b\x9b\xc1\xb9\x5b\x95\xbf\x05\xa7\x0b\xac\xc7\x90\x7a\x51\x3f\x8d\xea\x01\x3c\x42\xe5\x17\x4f\xd1\x43\xb5\xf4\x81\x8d\x45\x36\x38\x16\xcf\x58\x6a\x1e\x06\xa1\xf0\x23\x86\xdc\xe7\x7a\x51\x9a\x3e\x35\xe1\x3a\xd1\x9c\xa0\x84\xf3\xc7\x3c\xb3\xac\xcd\xc4\x87\x31\x6e\x0c\x3f\x44\x06\xad\x7d\x3f\xbc\x3f\x5d\x2e\xc1\xe0\x1b\x0b\x10\xb3\xdc\x19\x80\x71\x61\xc7\x4e\xc1\x96\xe2\xa0\xf9\x0b\xeb\x6d\xd0\x83\xdf\x99\x55\xfd\x98\xd6\x30\x53\x95\x6e\xe2\xd8\x16\xfd\x75\x13\x0b\x1a\x2e\xef\xeb\xaa\xd5\xf4\xcb\x61\x6a\x4f\xa1\x09\x89\x70\x6e\x82\x9a\xf4\x3d\x25\x04\x17\xe1\x80\x0b\x7a\xd8\x5f\xa3\x96\x8e\x6a\x1b\xac\xec\x99\x9e\xb8\x7c\xa4\x59\x46\xe2\x0f\xcb\xf2\x4b\xb9\x3a\xac\xad\x49\xce\xa7\x28\x38\x93\x5a\xaf\x07\x9d\xdf\x15\x4e\x99\x2f\xbc\x27\x0d\x02\x37\x8a\x50\x16\x00\x72\xd6\x77\x82\x2f\x6c\x41\xc1\x35\x86\x15\x7a\x26\x90\x52\x9d\xdb\xca\x51\x46\xf7\xd6\x67\x1b\xba\x33\x36\x6d\x57\x07\xae\x94\x6a\xdd\xc8\x8c\xf7\x21\x70\xeb\xef\x25\xa9\x63\xc4\x3b\xe4\xc5\x9e\x9b\x46\x81\x3b\xbb\x98\x37\x18\x71\x43\x70\x83\xbb\x0d\x6a\x2c\xe4\x2b\xe4\xab\xe5\x1b\x69\xcd\x65\xa1\xd9\x76\x9b\xf1\x38\x2c\x90\x12\xc0\x75\xfb\x81\x95\x40\x90\xd7\xae\xd5\x3d\x8f\xf1\x42\x13\x07\xc4\x1a\xcb\x3c\xcb\xb8\x50\xa8\xa1\x0d\xe3\xc6\x37\xe3\x83\x3b\xc7\xce\xc3\xf3\x38\x68\x44\x4b\x18\xb2\xa6\x96\x46\x3b\x78\x04\xbb\xae\x05\xe3\x08\x03\x64\x41\x11\xf4\x75\x8f\xd2\x92\x4a\x5d\xa2\xd0\x3a\xe1\x77\x97\x0c\x83\x4c\x5f\xf0\x6d\xcb\xf0\xd5\xf5\x7e\xed\x5a\xa8\xdd\xf2\x84\x4c\xd5\xb8\xd6\xeb\xb3\xc2\xc0\xa9\x5b\x64\x4d\x88\x32\x74\x36\xdf\x43\x8b\xed\xb5\x84\x3f\xda\xc0\x1e\xad\x1a\x04\x16\x02\xc1\xb9\x32\xf2\x69\xa1\xc3\x20\xb7\x9a\x60\x5e\xb0\x9d\xda\x5c\x30\x2f\x04\x6a\x99\xdf\xf8\x43\x7d\xda\xd4\xf1\x88\x0d\x20\x80\xa2\x50\x44\x5c\x8a\x18\x68\x01\x6b\xe5\xff\x52\xd1\xd1\x57\x8d\xd6\x6c\x46\x78\x2d\xe8\xde\xd6\xcb\x4f\x16\xa8\x28\x2c\x5b\xfa\xae\xcd\xe9\x31\x56\x6f\x27\x02\x9a\x09\xdb\x32\xee\x8a\x64\xd6\x32\x6f\xe6\x59\x44\xfa\x40\x7c\x98\xee\xea\x18\xfd\xe4\x2c\x3f\x10\xf8\x5a\xd4\x64\xb6\xb1\x1b\x09\x5e\x38\x50\xc8\xba\x85\xdd\x07\xce\xe2\xbe\x43\x61\x57\x2f\xb0\x07\x74\xaa\x59\xe5\x92\x02\xce\x98\xb1\xc8\x6e\x90\xf6\x71\xe6\x3f\xba\x23\xab\xa3\x02\x3e\x42\x19\x4e\x1b\x59\x05\x42\x07\x4b\x16\xff\xcb\x6c\x96\xc9\x44\x75\x85\xb5\x6c\x59\x44\xeb\x41\xd5\xe7\x07\x3c\x80\x26\x51\x15\x4d\x69\x92\x80\x1c\x70\x8c\xfa\x50\x1e\x18\x12\x39\xf5\x55\xe8\x02\x2c\xe8\x8c\xf1\x75\x39\x66\x0d\xc4\x14\x05\xc4\x74\xd7\x4c\x4c\x12\xa8\xa9\xc8\xe3\xdf\x0f\x45\xed\x01\xd3\x45\xf3\x16\xbc\x8c\x88\xdd\x1e\xc9\x65\x03\xe5\xfd\x2d\xa2\xa3\x97\x86\x1b\x7c\xf8\xaf\xfa\xa1\x7f\xca\xb1\xc0\x4c\x41\xcc\xaf\x15\xdd\x05\x09\x52\x8f\xc8\x67\x88\xcf\x60\xc6\x10\x0c\x3f\x85\x9b\xeb\x5c\xfe\x10\xee\x85\x68\xdc\x43\xf4\x98\x1c\x43\x75\x36\xa1\x65\x89\x49\xf1\xe6\x5c\x4b\x0e\x23\xb6\x14\xcb\x78\x8c\xfa\x89\xe4\xf6\x0b\xc2\xa2\x04\xca\x71\x07\xe1\xc9\x9e\xf2\xad\x5b\x69\xb2\x00\x05\x05\xb6\xb2\x68\x9e\xdb\x07\xc1\x87\x50\x64\x0c\x7c\xe2\x09\x9c\xf4\xe2\xf7\xdf\xf3\xcc\x78\x2b\x9a\xe2\x24\x5e\xb0\x9c\xc3\xd2\x35\xf4\x62\x9b\x64\x4a\x05\xae\xda\x20\x78\x03\x36\xa6\x88\x31\x0d\x10\x58\xd0\xd7\x58\xa1\x84\x60\xa9\xd0\x1f\xbe\xd9\x28\x36\xc4\x4d\xb0\xe0\xae\xf6\xf8\x16\x89\x62\x2e\xd5\x20\x14\xee\x7c\xc7\x50\x3b\x0e\x0b\x85\x30\x62\xe4\x39\x8c\x2c\xe5\x10\x0c\xec\x0a\xc2\x91\x20\xb7\xd5\xc4\x93\x99\xcc\x7c\xc8\xd6\x30\x2a\x53\x03\x1f\x71\x70\xc7\xd6\x7d\x6a\x87\x55\x43\x59\x56\x79\xb2\x21\x9e\x00\xc9\x55\x04\xfd\xcf\xb1\x1a\x31\xcb\x59\x5d\xd8\x48\x90\xe6\xd5\x4f\x92\x72\xa0\x3d\x86\x5c\x12\xa6\x27\x0c\xf5\xd9\x8f\xfd\x02\x5d\x81\xfa\xe5\xa3\x9d\x4b\x76\xba\xe2\xb0\x98\x78\x3c\x8f\x77\x14\xb6\x5d\x2b\xed\xd4\xd9\x97\x5f\x51\x08\xae\xe9\xfe\xc2\x14\xca\x6f\x21\x0c\x93\xba\x21\xaf\x39\x58\xcb\x36\xfd\x15\xb2\xf1\xbe\x3b\x68\x2f\x2a\xd7\xdb\xc7\xe1\x9a\x7d\xe6\x35\xe6\xf6\x86\xcd\x0d\x64\x8b\x5d\x14\x70\x1f\x76\xff\x5a\x1e\xdf\xd2\xd0\x87\x31\x24\xfd\xad\xe7\x82\x45\x12\x9d\x63\x1d\x26\xf6\x3a\x0e\x72\x7a\x82\x14\x02\x08\xfe\x73\x8c\xcf\xbe\xd9\xe0\x79\xcd\xde\xf7\xf4\x7b\xc5\xfc\xdd\x54\x7c\x10\xdc\xf2\xc4\x9b\x85\xbd\x7e\xfc\x77\x1c\x41\xa4\x3f\xf4\xe4\x72\x0c\x96\x01\x99\x1c\x8c\x35\x06\x63\x7e\xad\x78\x98\x09\x1e\x11\x29\x8f\xd1\x00\x2e\x1a\xfb\x4f\x84\xa7\xce\x21\x11\xbc\x3c\x62\x5a\x33\x71\xf8\x2d\x41\xfb\x65\x12\xaf\x3b\x01\x06\x0c\x6e\x27\x5f\x4e\xba\xbe\x46\x49\x93\x36\xe1\xb0\xe8\xa0\x0d\x28\x6b\x80\x06\xb3\x53\x14\xf3\xe8\x91\x88\x13\x41\x62\x2a\x4f\xc1\xb7\xae\x1a\x9d\x7a\xa9\xd6\xb6\x77\x96\x34\x9a\x02\x05\xd6\x24\xc5\x9d\x99\xfe\x6d\x80\xb5\x0b\xaf\xed\x21\x3a\x05\x75\xc2\xe5\x64\x98\x20\x64\x07\x77\x43\x98\x12\x0b\x88\xeb\xf7\xa6\xac\xca\x42\x38\x4d\x43\x0b\x6d\x4d\xd9\x44\x62\x1f\x31\x38\x5b\x4e\xfb\x7e\x4e\x24\x71\x01\x07\x66\x52\x8a\xdb\x58\x66\xc3\x2e\x32\xac\xe6\x12\x52\x57\xcb\x6b\x60\x95\x2e\xf8\x54\xaf\x10\xce\x20\x5e\xc1\x58\x29\x8a\x8f\x7c\x82\xa5\x54\x34\x49\x46\x8c\x11\x12\x4b\x04\x59\xa6\x5f\xd5\x66\xc8\xeb\x4f\x7b\x08\xc7\x31\xfa\xdf\x5f\x7f\xbc\xf8\xf9\x7e\x30\x1e\x5e\x81\xd1\x7a\x78\x31\xf8\xa6\xe7\x7f\xbc\x7e\xb8\xf7\xbf\x1a\x0b\xcb\x13\x11\x28\xc5\x8f\xa0\xe2\x31\x49\x6c\xf2\x04\x19\xb1\x70\xa4\x0e\x3b\x40\x3f\x91\xc4\x45\xba\x5a\x31\xc5\x43\x28\xda\x3d\x6c\xac\x58\x6c\x6c\x7e\x1b\x28\xbf\xb7\xfe\x93\xd5\x34\xe8\x88\xc7\x77\xe1\xc4\x40\xc8\x91\xc1\x32\x48\x26\xb7\xba\x6f\x41\x70\x84\xcd\x28\x6b\x8a\xc7\x23\xec\xe9\x25\x85\xf8\x1f\xc8\xe2\x47\xad\x5e\xdf\x60\x2a\x5a\xd3\x5e\x3d\x1a\x90\x3b\x31\x5a\x4f\xc7\xb2\x7a\xa8\xa4\x91\x85\x4d\xb6\x4d\x63\xcc\x67\x1d\x10\xdc\x9b\x4f\xd7\xc2\x4b\x91\xcf\x4a\x38\x94\x0a\x9f\xcf\xe1\xa0\x9c\xfc\x45\x53\xd0\xe0\x88\xdd\x5f\x9f\x5f\x9f\x22\x92\xe0\x09\x87\x50\x7e\x1b\x12\xe4\x9a\xb0\x0b\x16\xf1\x34\x68\xa8\x84\x50\xd2\x43\x59\x81\x50\x12\x1a\xd1\x8e\x4d\x1b\x6b\x90\x4a\x32\x2e\x96\xf1\x3d\xf6\xab\x02\xda\xc9\xde\x70\xd1\xe6\xfa\xd7\xaf\xc1\xd2\xf1\x4c\x2b\x72\x15\xce\x6b\xef\xe6\x29\xc1\xa6\x96\xbe\x71\x0b\x59\x5b\xbe\x0d\x60\x4d\x92\x52\x3d\x45\x7d\x70\xe4\xb1\x75\xc1\x17\x6f\x72\x86\x7e\xf8\x8b\x44\x93\x5c\x8d\x58\xb9\x0d\xce\x50\xff\xa7\x3b\xf4\x1d\x56\xd1\xfc\x9b\x11\xbb\xd6\x6a\xe6\x0f\x7f\x69\x80\x52\xda\x18\x9d\x50\xaf\xc9\x39\x56\xf8\x82\xe3\x98\xb2\x59\x1d\x34\x61\x51\x3f\x66\x70\xdf\x3f\x45\xd7\x56\x87\x2f\x32\x41\x7c\x4a\x70\xd0\x10\x30\x64\x98\x88\xe3\x22\xc0\xca\x59\x19\xbe\xcd\x68\x66\x70\x61\x8d\xd8\xbd\xc1\x64\xd4\x5c\x95\x2a\x94\x71\x5b\xc3\x48\x6b\x65\x06\xad\x12\xbb\x0c\x29\x92\x2c\x90\x5e\x1d\x20\x63\xbf\x19\x56\x1e\x03\x79\x66\x99\xd9\x8f\x18\x28\xe8\x3e\x37\x25\xe1\x11\x4e\x20\x26\xef\x28\xb0\xe9\x69\xb5\x9d\xe7\x90\x1f\x6e\x8a\x9e\x2f\xca\xa1\xb3\x1e\xb2\xc0\x0b\x65\xe1\x46\x81\x01\x00\xf6\xd1\x7a\x63\x53\xae\x39\x8e\xc1\x62\x03\xe3\x5b\x62\x56\x47\x7f\xe8\xb1\xd9\xcc\xb2\xe8\xa7\x3e\x6d\x8b\xe7\xcc\x61\x91\x44\x60\xbe\x67\x0b\x08\xdf\x86\xa2\x23\x1c\x42\x3f\x0a\xee\x6c\x89\x72\x69\x17\xfd\x9d\x18\x7c\x36\x62\x26\x52\xb0\xb4\x2f\x21\x7a\x4f\xd0\x3b\x67\x10\xc8\xb8\x9c\x2b\x96\x67\x36\xb0\xd1\xca\xfa\x99\x20\x47\x3e\x03\x2a\x2e\xad\xa9\xbe\x61\x8f\xd1\x6d\xa8\x5e\xc7\x3c\xca\x53\x87\xac\x0c\xd9\x53\x45\x59\xf9\x92\xc4\x63\x2e\xf6\x75\x14\x0f\x28\x2d\x8a\x40\xfa\x78\x6b\xfd\xd8\x10\x4c\x3f\xfc\x74\x59\x52\x6f\x16\x7c\x81\x77\xec\x16\xb5\x66\x1a\x1a\x67\xe5\x96\x4a\xad\xed\x9c\x97\x78\x55\xa0\xbf\x72\x01\xc2\x16\xf9\x9c\x71\x30\x72\x9b\xf4\x2c\x1e\x7f\x25\xd1\xf0\x46\x4b\x40\x5a\xe3\xf5\x67\x30\x97\xca\x04\x97\x41\xba\x8e\xf9\xda\xa4\x0b\xf4\xd0\xb7\x68\x94\x7f\xfb\xed\x9f\x22\xf4\xd9\xfd\xf1\xe7\xff\xfc\xcf\x3f\xfd\x79\x93\x74\x12\xa7\x90\x43\xbb\xc5\x1a\xf9\x72\x52\x65\x91\x28\xdc\x81\x65\x4e\xb5\xc3\x2e\xd8\x03\xd8\xb4\xfc\xdb\xa0\x3c\x06\xb1\x43\x78\x66\x4f\xb8\x0c\x4f\x26\x2a\x1d\xcd\x22\x92\x40\x12\xd5\x2b\x73\x08\x2f\xec\x5a\x89\xfe\x7f\xad\x00\x2b\x1b\xeb\xa3\xb2\x5d\x8c\x13\x4d\xbc\x78\xad\x1b\x41\x5f\x5b\xfb\x9f\x02\x07\xe2\x37\xee\x82\xe3\x49\x4c\x84\x19\x93\x37\xd9\x79\x43\x22\x30\x07\xf2\x39\x4b\x78\xec\xe0\x51\x8b\x5c\x40\x0a\x02\xc2\xe0\x33\xd6\x9c\xbb\x67\x61\xb4\xcc\x47\xc6\xf3\x32\xc5\x91\x41\x05\x95\xe8\xeb\xcf\xa7\xfa\xb7\x1e\x5a\x9c\x42\x10\x69\x0f\xfd\x7a\x6a\xd1\x72\xb0\x50\x63\xfd\xd3\x37\x4e\xd6\xb6\x4d\xc0\xa0\xa9\x44\x5f\x9d\x3c\x61\x61\x6a\x46\x9f\x98\x11\x7d\x65\x39\xab\xaf\x8b\x17\xca\xe6\x09\xe7\x8f\x36\xc0\x76\xe9\xc3\x13\x07\xbc\x06\xe4\xed\xfd\x26\x66\xeb\x7d\x62\xbe\x42\x47\xf0\x02\x41\xc7\xd9\x04\x1d\xff\x5d\x72\x86\x8e\x17\x38\x4d\xec\xaf\xee\xa9\x8d\xff\xc5\xd2\xe6\xc4\xc5\x3e\xc8\x27\x59\x18\x4b\xe9\x77\x09\x9f\xc0\xac\x2e\xdd\x4c\x4d\x04\x2d\x0c\xb4\xb8\x7d\x8a\x0b\xcb\x4e\xc4\x25\xa2\x02\x7e\x50\xca\x95\x79\x05\x78\x5c\xdd\xac\x3e\xfb\x21\xfd\xb7\xf1\x0b\xc3\xa2\xb8\x24\x3e\x63\x1c\xf6\xd1\x6b\xba\xd1\xcf\xe8\x6b\xcb\x82\xbe\xd1\x77\x8c\x0d\x57\x36\xcb\x50\xd7\xc1\xc2\x77\xf0\x73\xd0\x01\x65\xc8\xa4\x65\xae\xf8\xf2\xd7\x93\xe3\xe3\x63\xff\x35\x64\xad\xff\xbf\x88\x2a\x49\x92\xa9\x69\xc9\xdd\x60\x8b\x11\xbb\x74\x85\x17\x9c\xf1\xba\x80\x74\xcc\x04\x57\x3c\xe2\x09\x3a\x2a\x0c\xba\x31\x8f\x24\xfa\x77\x2d\xd6\x06\x4b\x09\x3f\x6a\x3d\xae\x01\x06\xd6\x20\x3d\xbf\xd2\xa1\xb2\x06\xf1\xea\xb1\x0a\x51\xdc\xbc\x62\x8b\x65\x58\xc5\x03\x68\x41\x53\xce\x89\x45\x7a\x13\x42\xbf\x4c\x3e\x2b\x78\xd4\x00\xa4\x57\x1b\xca\x5e\x7f\x53\x2e\xb1\xdb\x02\x4f\xcf\x90\x75\xc3\x02\x58\xbc\x2b\xcb\x19\xcc\x3c\x7b\xa1\xfb\x44\x5f\x2e\x2c\x2c\x05\x20\xf3\x34\xc5\x62\x71\x52\x9c\xb6\x65\xe2\x2c\x90\xd6\x80\xc7\x24\x6e\x01\xc0\x85\x9b\xd8\xa3\x65\xa3\x18\xac\x78\xe9\x6e\x34\x7f\x76\x23\xa8\x65\x18\x20\x16\x10\x16\xf1\xd8\xd2\x75\x91\x7d\x5a\x96\x58\xfc\x3b\xcb\xb2\x8a\x8b\x88\x91\x85\x31\x8e\x29\x03\xe1\x61\xdf\x70\x1f\x37\xb0\x6f\x3e\x86\xaa\xb8\x64\xb6\x81\x7b\x74\x78\x7d\xe7\xbe\x69\x7f\xe9\xc2\x3a\x94\x45\x76\x9c\x84\xf8\x78\x6c\x86\x04\x7e\x2e\xae\x5f\x88\xed\x30\xd6\x99\xdc\xe7\xe6\x9a\x7f\x9f\xf1\x1b\x9a\xe8\x5b\x0b\x68\xfc\x78\xc4\x4a\x3f\xf7\x10\x49\x68\x4a\x99\x8f\xad\x33\xcc\x9d\x4f\x8d\xf4\xfc\x48\x95\xde\x32\x19\x3f\x6a\x0e\xe6\x70\x9d\x02\x95\xaa\xcf\x16\x8e\x74\xbc\x63\xca\x5a\x20\x72\xa9\xc7\x55\xe8\xe8\x5a\x98\xd5\x4d\x1c\x59\x81\x94\x06\x84\x07\xe7\x77\xc4\x74\x6b\xee\x2c\x15\xe1\xc2\x41\x7b\x41\x73\x47\x0e\x10\x3f\xe0\x00\xd0\x47\x29\xe6\xd7\xcb\xbf\x35\x02\xca\x80\xe5\xe9\xae\xc9\x26\x36\x7c\xf8\xad\xcc\x74\x37\x82\xb8\x9b\xca\x26\x2e\x11\x96\xa7\xee\x40\x6d\x40\x71\x03\x2b\xfe\xc4\x24\x4a\xb0\x41\xaa\xd1\x0d\x41\xe4\x63\xcf\x38\x48\xb3\xa0\x2f\x73\xbd\x98\x6e\x4c\x8d\x9d\x84\xb0\xaf\xcd\xbf\xbf\x41\xf6\x6e\xf8\xb6\x67\xef\x73\x21\x3d\x02\x88\xd9\x73\xa8\xd1\x48\x62\x63\x43\x07\x54\xe2\x19\x16\xb1\xb1\x96\x87\x5a\x85\xc9\xe0\xd5\xf2\xd7\x82\xe7\xe8\x99\xca\xf9\x88\xdd\x73\x67\x70\x44\x8c\x7b\x5c\xe7\x1e\x28\xa3\x4b\xfd\x61\x09\x4c\x00\x46\x5d\x47\x01\x9a\x09\xef\x94\x6b\x04\x51\xb0\x63\xc6\x63\xb2\x1b\x80\xd1\x7d\xe1\xab\x70\xfe\x6b\x41\x4c\x3e\x18\xdc\x14\x4d\xe9\xb4\x44\xca\x0d\x6d\xf3\xd5\x8d\x87\x7b\xc8\xb6\x03\x25\x81\x9f\x37\x42\xd7\x0e\xb1\xc1\xfc\xad\x06\xad\x38\x8d\x33\xc8\x06\x2e\xad\xbd\x47\x4b\xde\x75\x13\xa2\x1a\xb4\xa2\x56\x77\xbf\x99\x7b\x04\xcb\xee\x03\x8c\x31\x9a\x09\x9e\x67\x3e\x65\xde\xa5\xfb\x99\x6d\xb0\x32\xcd\x90\x4d\xf9\xa9\xd5\xa9\x2e\x28\x7b\x34\x14\xff\x52\x7b\x64\x00\xb1\x49\x5c\x82\x71\x73\x55\x5a\x61\x0e\x47\x88\xb2\x28\xc9\xe1\xe2\x93\x0a\x47\x8f\x06\xd4\xbb\xc9\xe8\xab\xbf\x19\xaf\x4f\xa6\x6c\x90\x98\xf2\x24\xb1\xdd\x16\x17\x68\x51\xc6\xfa\x89\x62\x84\xd1\xc3\xed\xb0\xbe\xef\x47\xba\xec\xcc\xa9\xbf\x3d\xcb\x04\x02\xff\xf3\x03\xdd\x28\xee\xb2\x02\x8b\x47\x4a\xa4\xee\x8d\x4b\x4d\xa0\xab\x86\x48\x95\x56\x20\xe2\xdb\x1a\xd3\xfe\xc6\x74\x3a\xcb\xf2\xb1\x5e\xa8\x64\x93\x00\x01\x3d\x8a\x4f\x37\x0f\xfd\xe0\xbb\x55\xa4\xf2\xe9\xe6\x01\x05\x7d\x18\xc0\xc3\x84\x44\xca\x47\x1a\x1f\xa3\xb3\x02\x87\xb8\x2a\x99\xc7\xe4\x89\x46\x26\xc5\xb5\xa7\xa5\xa2\x11\x03\x78\x4f\xad\xeb\x1c\x39\x4c\x28\xf4\xe9\xe6\xc1\x22\x49\x79\xb8\x29\x0b\xa9\x0c\x10\x16\x9b\x5d\x3b\x15\x60\x4d\xc6\xd9\x11\x48\x6c\x58\xc4\x85\xb7\xa3\x07\xca\x75\x84\x33\x95\x5b\x01\xe3\xe9\x0f\xc7\x6e\x4f\x6e\x0b\x4f\x88\x1e\x16\x1f\x31\x2d\x2b\x99\x2c\x03\xa8\xfe\xb1\x5c\x9f\xbe\x66\x51\x77\x09\x0e\x80\x45\xfb\xff\xd8\x7b\xb7\xee\xb6\x91\xec\x6c\xf8\x3e\xbf\xa2\xd6\xca\x85\xdb\xdf\x47\x51\xed\x9e\x37\x59\x1d\xaf\x95\x0b\x5a\x96\xa7\x35\x6d\x4b\x1e\x1d\xba\x27\x6f\x98\x45\x17\x81\x22\x89\x08\xac\x82\x51\x80\xd4\x4c\x26\xff\xfd\x5d\xb5\xf7\xae\x03\x8e\x04\x48\xc9\xf6\x4c\xfa\x22\x99\xb6\x08\x14\xea\x5c\xbb\xf6\x7e\xf6\xf3\x1c\xb5\xf9\x27\x2e\xc3\x8f\xcb\x1d\xe3\xf9\x32\x29\x72\x73\x0d\xc3\x97\x61\x28\xec\xdd\x63\x69\x6f\x54\xde\x32\x22\xc1\x16\x18\xe0\x44\x16\x7a\x2e\x83\x0c\x16\x97\x15\x8c\xc9\x0b\x89\x64\x40\x87\x07\xd8\x1b\x4b\xcf\x15\xa5\xaa\x8c\xed\xb1\x9a\x3b\x01\x98\x5d\x86\x46\xd4\x5c\x02\x33\x89\x39\x5b\x41\xf8\xdc\x9f\xfd\xaf\xd9\x27\xf9\x90\xc4\x09\x3f\x29\x84\x4e\xf9\x49\xf1\x7f\x3e\x4d\x6a\x7f\xe2\xaf\xbe\xff\xfe\x13\x6a\xd9\x74\xd1\x2e\xb8\x69\x74\xb4\x83\xa7\x3d\x4e\x61\x8b\x5f\x98\x59\x7a\xc4\x38\xbd\x4f\xee\x05\xfb\x84\xc3\xfd\x89\x08\xfc\x0e\x1b\xb6\xb9\x6c\x1b\x37\x76\xc8\xb0\x01\x9d\x6a\xfb\xb8\xb1\x9e\x61\x7b\xb5\x9e\xfe\xd3\x7a\x69\x46\xeb\x87\xf5\xf4\xd5\xf7\xf0\x9f\xb5\x31\xda\xb7\x78\x5d\xf6\x4c\x5b\xb5\x5b\x36\xa2\x96\x65\xe9\xf6\xa2\xb9\xdc\xbf\x19\xb1\x71\x7b\x11\xcc\xda\xb6\x85\xcf\x0b\x71\x6c\x76\x2b\xf2\x3a\x8e\x40\x5f\x37\x08\x33\x7b\x23\x82\x47\xb2\x4d\x7a\xa6\x48\x80\x7b\x76\xd3\x5e\x86\x00\x5c\xf8\x71\x04\x1f\x0f\x3c\x3f\xac\x3d\xb5\x67\xf7\x34\xa7\xbf\x9a\xa9\x10\x23\x18\x64\x6e\xcc\xe3\x03\x2b\x59\x79\xb4\xaf\x8e\x8f\x1c\x15\x75\x9a\x44\xee\x31\xdd\xd6\xc7\xac\x22\x3b\x1d\xd1\x65\xa2\x5d\xde\x9f\xab\x89\x85\x56\xba\xfb\xb5\xfd\xee\x9a\xd6\x52\x28\xd8\xe3\xa2\x6e\x2d\x13\x3f\x70\x45\x1c\x09\x85\x33\x57\xea\xc5\x76\x30\x49\xa8\xff\xf0\x5b\x7a\xf9\x43\x83\x32\xd4\x99\x97\x1f\x20\x33\xdb\x91\x61\x6d\xb9\x34\xd6\x9a\xfd\x6a\x47\x60\x09\x6f\xf9\x07\x55\xe9\x2e\x3b\xa8\x42\xf8\xc5\x81\x5a\xb6\xf4\x29\x5b\xca\x23\xc6\x56\x79\x8a\xb1\x83\x62\x03\x6e\x65\xaf\x01\x67\xb7\x39\xef\x5e\x46\xbd\xb8\x94\xe7\x6b\x74\x7a\x69\x51\xe8\x97\x2d\x23\xec\xf3\xd8\x8e\x18\xe1\x03\x74\xb6\x43\x2c\x0b\xb8\x54\xfa\x56\x9a\xab\x65\x95\x30\xda\xdd\xb4\x9c\x62\x7d\xc0\x86\xea\x93\xeb\x22\x95\xa3\xba\x42\x6c\xd6\x4a\x37\x0f\xd6\x58\xa9\xf7\x7a\x3c\x8e\x6f\x1d\xcb\x8b\x55\x7d\xa7\x9c\x5d\xac\xdc\x52\x00\xd7\x79\x77\x1d\xc6\xeb\xba\xf7\x54\x81\x84\x8e\xbb\x6a\x30\x97\x33\xfb\x88\x67\x6c\xd4\x09\x7a\x59\x30\x1d\xb1\x5c\x62\x86\x0b\xf8\xcc\xb8\xef\x75\x6a\x5c\x47\x23\xc6\x26\xe4\xd7\x9a\x70\xa7\x45\xee\x4f\x23\x52\x81\x73\xbc\xcc\xbd\x0a\x7c\x0f\x22\x6f\x83\x1d\x8f\xf8\xf8\x8d\x6d\x22\x15\x65\xfb\xb2\xed\xc3\xc3\x2f\x2a\x54\x10\x24\x1c\x11\xaa\x16\xf3\x02\xd2\x9d\x9f\xa6\x9e\xf8\xb3\xf6\xb1\xe6\x6a\x2d\x8e\xda\x8d\x13\xbe\x5d\xe4\xaa\x5b\xa2\x70\x40\x37\xd9\x22\x2a\x3e\xfb\x0d\x4a\x16\xed\xd8\xe7\x92\xa7\x78\xb8\x49\x9a\x8e\xb6\xda\xe0\xfe\xf8\xe1\x9f\xd9\x0c\x4e\x1f\xf6\x01\xf6\x45\x00\x6d\x41\x69\x85\x62\xc9\x36\x13\xb9\x56\x92\x77\x6a\x75\xde\xff\xa8\x17\xa4\x37\x66\xae\xc6\xaa\x6c\x6a\x8b\x8d\x68\x49\x4b\x69\x61\xa3\x38\xbb\x2f\x97\x22\x97\x02\xf5\x48\xe1\x39\x66\x9f\x1b\x54\x5d\xc5\xcb\x62\xf3\xc3\x22\x4a\x93\xc1\x22\x68\x90\x31\x3a\x33\xaf\x9d\xe1\x5b\x7d\x0d\xa8\x94\x5f\xa9\xba\x64\xf8\x1b\xc3\xdf\xa6\xec\x0d\x8f\xee\x85\x8c\x59\x96\x96\xeb\x84\x08\x62\xd0\xdc\x4f\xaa\x17\xfb\x6a\xc3\xd0\xb6\xc0\xf2\xcd\x31\x34\x97\x5b\x7e\x8f\xc4\xe4\x64\x44\x9a\x9b\x43\x17\xbd\xa0\x73\x95\x2c\x92\xe6\xdc\xdd\x3b\x5a\xee\x3c\x6c\x16\x53\x9f\x7b\xba\xc4\x7c\xb9\xc7\x8d\x22\x94\x51\xc5\x53\x33\x62\xe1\xba\xd9\xda\xe0\xf1\xb2\x5c\x2b\x4e\x99\x96\x2a\x83\xab\x17\x42\x78\x40\xae\x5f\x4a\xc6\x81\x0a\xec\x85\x66\x65\x66\xed\x33\x88\x2d\xa5\x80\xf4\xc1\x21\x30\x3f\x64\x49\x74\x8f\xd8\x52\xc8\x9e\x60\xae\x79\x0d\x01\x43\x26\x3c\xc8\xb1\x6d\x6b\x58\x21\x11\xce\x71\xb8\x95\x06\x37\xff\x9e\x79\x3a\x30\x33\xa4\xd8\x08\xb9\x38\x80\x22\x7e\xf8\xa0\x55\xb2\x40\xc8\x0c\x76\x31\x3a\xd7\x85\xa5\x4c\x48\x14\xd0\xdf\xb1\x1d\xff\x71\xb2\xaa\x99\xd1\x89\x66\x9a\x17\x89\x36\x7b\x59\x6b\x8f\x7b\xfa\xa1\x63\x7a\x9d\x8f\xe3\x3c\x6a\xe1\x3b\xaa\xf5\x85\xcb\x34\x9b\xb2\x77\x10\xd9\x08\x6e\x06\xca\xb1\x07\x75\x6d\x58\xc5\x46\x74\xd2\xe8\x3e\x05\x44\xd3\xb6\x20\x78\xbe\x37\x60\xe5\xb2\x0a\xa7\x6c\xe6\x23\xca\xc8\x9f\x84\xb1\xe2\x3d\x2d\x12\xa9\x16\x87\x4c\xbe\x41\xc1\x17\x40\x5d\xc1\x04\x62\x60\x49\x69\xf3\x77\xaf\x0a\xe2\xaa\xf9\x08\x89\xfb\xfc\x5e\xc8\x3e\x0f\xfb\xf0\x1a\x62\x08\xa4\xd7\x25\xe0\x62\x2b\x0a\xc3\x2b\x87\x54\x70\xf8\xb2\xf3\x94\x55\xc9\xea\xd4\x74\xb9\xb9\x86\x44\xf7\x94\x2e\x88\x11\x36\x22\xbd\x7a\xdc\x28\x1d\xae\x33\x3b\x7e\x78\x93\xcd\x4b\xa7\xfc\x00\xe9\x96\xae\x83\x11\x67\x29\x55\xc8\x89\x05\xb5\x76\x8b\x14\xdd\x3a\x6e\xbc\x99\xdd\x42\xa1\x1b\x00\x99\x60\x8b\x6a\xae\xe6\x9f\x7f\xd4\x57\xb0\x62\x9f\x82\x7d\xa5\x5d\x6a\xfb\xf8\xcc\xa7\x03\x63\xbe\x0e\xd3\xeb\x75\xba\x79\xec\xf8\x82\x32\x15\x33\x3f\xbd\xc6\x8b\x72\x7f\xfd\x66\xd5\xc4\xbc\x07\xb5\x6d\xdf\xcc\xfe\x10\x00\xc3\xd8\xb2\x4c\xd2\x18\xe9\xf3\x02\x83\x50\x59\x8b\x03\x38\xed\xe1\xf8\x4f\xb4\x3b\x4f\xda\xe7\xd8\x47\x15\x1f\x33\xb1\xc6\x53\xa4\x36\xe7\xf5\x80\xbc\x11\x1d\x82\x77\xb6\xfb\x7b\x22\x53\xdd\x88\xff\x78\xa1\xab\x22\x6e\x3d\x15\x06\x88\xd7\xb2\x5c\xdd\x80\x62\x54\x17\x0b\x51\x20\xa6\x62\xd3\x8a\xcd\x38\x9b\xcf\xb8\x24\xb7\xae\x41\x21\xc4\x90\x3f\xfe\x39\xfb\xd3\xcd\xd5\xe5\xc9\x96\xe7\x7a\xc3\x81\xe5\xc1\x96\x35\xb1\x22\x9c\x78\x3d\xb6\x48\x86\x44\xce\xe5\x09\x5b\xab\x09\xe2\x66\x5e\xb3\x4d\x51\x64\xfa\xf5\xe9\xe9\x3a\x29\x36\xe5\x72\x1a\xa9\xed\xa9\xef\x9a\x53\x9e\x25\xa7\xcb\x54\x2d\x4f\x73\x01\x99\x13\x27\xaf\xa6\x3f\xbc\x82\x91\x39\x7d\x78\x75\x0a\x68\x89\xe9\x5a\xfd\xe3\xfb\x1f\xfe\xe5\x0f\xff\x6c\x0a\xce\x76\xc5\x46\xc9\xd7\x04\xca\xe9\x2d\xfb\x04\xad\xf2\x53\x7c\xa5\xf6\x95\x7f\x99\x7e\x1f\x56\x83\x1e\xdd\xaa\x58\xa4\xfa\xf4\xe1\xd5\xc2\x0e\xcc\x34\xdb\xfd\x9e\x6b\xf0\xd5\x72\x0d\xee\x93\xe2\xf7\x5c\x83\xaf\x9a\x6b\x30\xdc\xc2\x71\x7b\x0c\x90\x37\xfb\xfd\xd1\xfc\xdd\xed\x91\xd6\xf5\xbe\x6f\x1f\x6a\x39\x1c\xc2\x4c\xb0\x23\x8e\x88\x7b\x31\xea\x8a\x5d\x6b\xae\xbb\x3a\x74\xb8\xd8\xc6\x0a\xa8\x74\x1a\xf3\xa3\x88\x2f\x00\xd9\x97\x44\x40\xce\x8f\x2e\xc1\x8c\x27\x6d\x19\x04\x84\x60\x3d\xa6\xff\x9e\x53\x66\xe2\xa9\xf5\x25\xa8\xb9\x07\x6a\x4b\xa4\xf8\xb6\xc5\xdb\xaa\x47\xab\x29\xf1\x14\x4a\x0c\x03\xb5\xb9\x1d\xc1\x3c\x4e\x1e\xa8\x8b\xad\x57\x47\x35\x36\x5c\x1f\x06\xdc\x9e\x21\x8d\xab\x8b\xd3\x21\xea\x35\xd1\xf6\x83\xf6\xe0\xb0\xcc\x38\xe6\x1c\xb2\x04\x7c\x59\x99\x67\x4a\x0b\x3d\x65\xef\x6a\xea\xb5\x1e\x8c\x7e\xfd\xee\x8c\xbd\xfa\xf1\x5f\xfe\x30\x97\xdf\xb5\x9c\xdb\xb0\xdf\xab\x7c\x4d\xd8\x78\x38\xad\xb7\x5c\x17\x22\x3f\xcd\x57\xd1\x29\xee\x72\xa7\xe6\xfd\x13\xfa\xe8\x89\x5a\x9d\x38\x9a\xf9\x13\x62\xdc\x9e\x6e\xe3\x71\xa4\x31\x95\xa9\x87\x67\x0d\x1d\x34\x1a\x0e\x25\xa4\x97\x53\x2b\x27\x28\x82\xb9\x8b\xa8\x3d\xa4\x56\x2d\xff\xf1\x26\x55\x4b\xfd\xd2\x91\x5a\x72\x6d\xbf\xe1\x59\xe6\xba\x97\xe6\xd3\x28\x4e\xd8\x29\xf2\x9c\x8e\x0a\xbb\x97\x84\xd7\x91\x31\x1d\xdf\xbe\xd8\xfc\x71\x8f\x1c\x3b\x3c\x57\xa5\xb4\x8c\xfd\x4a\x0a\xb5\x02\xe8\x06\x58\xc2\x16\x79\x06\xbe\x5a\xc0\x33\x39\x3e\x9d\x5c\x64\x78\xc0\x40\x54\xa1\xbb\xbb\x8f\x54\xad\xd8\xd7\xcf\xcf\xa1\x5a\x71\x6c\xbf\xd3\x86\xf2\x95\x3a\xfc\x58\x78\x38\x2e\xa5\x31\xa8\x0a\xf3\xfc\xde\x08\xaa\xdb\x07\xbc\xa2\x9c\x27\x88\xcf\x78\x0e\x46\x9a\x38\x29\xd4\x09\x10\x91\x01\xbd\x15\xea\xc8\x74\xc1\x2a\x20\xf2\x3c\xe6\x98\x34\xcf\x0f\xa8\x27\x1a\xe6\xbf\x05\x15\x25\x9b\x44\x23\x2d\x33\xc1\x6c\x13\x29\x45\x4e\x31\xb5\xbd\x27\xea\xc8\xb8\x74\x38\x94\xfd\x28\x5b\x7f\x13\x0d\x35\x3e\x5c\x8e\x15\x0f\x36\x81\x29\x03\xeb\x73\xa3\xb6\xca\x98\x33\xaa\xd4\xc1\x8f\x78\x7b\x81\x43\xb8\xd3\xf6\xda\xf2\x0c\x89\x47\xbf\x5e\x6b\xcc\xd2\x32\x3f\xa1\x53\x2f\x7c\x68\x94\x6c\xd2\xb2\x2a\x14\xb3\xa7\xfe\x4e\xe1\xa3\x7f\xde\x00\xea\x01\xb5\x47\x41\xfe\x9b\x78\xfb\x93\xff\x32\xf7\x1a\x33\xa5\xdc\x4d\xc1\x9d\xdc\x08\xd2\x41\x7e\xdd\x10\x92\x66\xad\xf9\x4e\x06\x8c\x72\x3b\x72\x0c\x5c\xe2\xc8\x90\x01\xe0\x12\x53\x29\x6c\x0e\xc5\x49\x6b\x12\x45\xd7\xba\xb4\x62\xdb\xf1\xc2\x72\x40\x8f\xab\xea\x8d\x2b\x80\xe8\x9e\x9b\xf5\xf6\x14\x7a\x90\x71\x83\x7d\x8c\x1b\x82\xb5\x2d\xba\x80\x9b\xe3\x17\x23\x88\x66\x8d\xe9\x3b\xf8\x08\x4e\xce\x46\x0f\x06\x6b\xa1\xab\x03\xc7\xb9\xd8\xfa\x3c\x56\x6d\x98\x5d\x64\x1d\xf5\x19\x99\xa6\x96\x8d\xcb\xa3\x7b\xf1\xc1\xad\x2f\x84\x34\x2e\x4b\xf8\xfd\xf2\xea\x36\x44\x6b\x24\xd8\xda\x93\x68\x23\xa2\x7b\x70\x98\xe0\x91\xe7\x84\x78\x89\xe1\x74\x2e\xbd\x9c\x63\xa1\x2c\xf4\x60\xe7\x14\x2e\x9c\xca\x8b\xca\x59\x9c\xe8\x2c\xe5\x3b\x08\xf2\x4a\xcc\xbd\xf2\x01\x62\x97\xb4\x68\xb6\x82\x7d\xfe\xe2\xe1\x23\x6d\x46\x65\xe6\xdf\x1b\xdb\x97\x1e\x4c\xeb\x3b\xb3\xb9\x1f\x30\x2d\xb6\x5c\x16\x49\x34\x97\x5b\xc1\x65\x88\xca\xa3\x20\xb7\xe9\xe4\x58\x09\xe2\x80\x5f\xad\x44\x54\x78\x12\x59\x30\xde\x5d\x4f\xed\x5b\x83\xe3\xda\xee\x56\x5e\x6f\xd3\x7f\x02\xdc\x2f\xc6\xe8\x73\xf5\x40\xdb\xb0\x3d\x1a\x0f\x0c\xde\x80\xfc\x27\x1d\xb9\xf6\x32\x08\xff\xb2\x73\x8a\x2d\x45\xf1\x28\x80\x23\x85\x92\xba\xdb\x6c\xfc\xa3\x25\x60\x8e\x53\x74\x6f\xd7\xc2\x0f\x90\x60\xb8\xc0\x42\x30\x99\x23\x73\x93\x35\x56\xb6\x17\x94\x66\x0e\xde\x9e\x17\xe4\xb7\x7a\x01\xc7\xb4\xb9\x3d\xe6\x0f\x22\x9e\xcb\x2a\x55\x1e\xd9\x8c\x7e\xc1\x31\x2f\x6e\xf8\x34\xbb\x8d\xed\xe3\x41\xbe\xfc\x73\xa0\x07\xf2\xc4\xc0\x2e\x91\xba\x47\x6c\x11\x1b\xfd\x9c\xb7\x2a\xab\xf3\x1a\x5a\xf7\x03\x20\x59\x42\x5b\xf1\x32\xd2\x3a\xad\xe0\x29\xdc\xa4\x74\x44\x60\xc8\x12\xea\x00\xb0\xe4\x97\x6c\x78\x3a\xdb\xca\x98\x4b\xcb\x90\xb1\x2a\x53\x64\x7e\xee\xca\x43\x20\x5e\x40\x9b\xcd\xf7\xf5\xb2\x3a\x9d\x5f\x8d\x05\x7a\x91\x0e\xf6\x10\x80\x91\x71\xaf\xb3\xb3\x5e\x48\x5d\x82\x49\x61\xa5\xe2\xc0\xf1\xbc\x16\x05\x9c\xe6\x71\x99\x22\xe1\x03\x78\xcc\x81\x63\x90\xa7\x29\x4b\x0a\x3d\x97\x8e\x12\x11\x93\x0d\x60\x87\xb5\x2e\x75\xab\x32\x2e\x9d\x56\x39\xfc\xcc\x25\xd8\x61\x49\x94\x14\x0d\x08\xf7\x2e\x94\x57\xca\x32\xc1\x31\x3f\x19\x87\x6d\x2e\xc3\x3b\x57\x7d\x10\x28\x99\x97\xa7\x09\xef\x51\x81\x7f\x8a\xa9\x3b\x33\x9f\x38\x08\xb7\x80\xad\x33\x17\x2e\xab\x9c\x8c\xb5\x25\x4e\x14\x42\x5a\x9a\x5b\x4d\xa1\xad\x8f\xdc\xdf\x5b\x21\x4f\x21\x2a\x53\x9e\x63\x82\xc6\xaa\x4c\x59\xb2\x0a\x44\xa0\x61\x0c\x90\x10\xcf\x0c\x57\xa4\xe0\xac\xb6\x5e\x72\xcd\xb7\x22\xe0\xe2\x20\xf7\x4e\x1a\x60\x28\x90\xe5\x1f\x83\xf3\xa6\xac\x97\x53\xf6\xd6\x53\x7e\xe2\x08\xc3\x9a\x08\x88\x74\x13\x8d\xdb\x9f\xab\x6f\x90\x46\x0e\xad\x33\x55\x54\xd2\xac\x48\xb7\xea\x3a\x46\x10\x04\x39\xc6\x01\x34\xac\x1c\x4b\x3f\x6a\xb8\x95\x46\xc2\xbc\x5a\x83\x6d\xb8\x05\xd1\x51\x41\x7b\x2a\x8c\xac\x64\x48\x42\x7c\x40\x45\x1d\xc9\x73\x4b\x65\xb7\x3d\x9a\xd3\x30\x8e\x23\xab\x1a\x28\xb8\x8d\xaf\x68\x30\x73\x42\x38\xce\x90\x9e\x5d\xf3\x62\x2c\x36\xc7\x25\xe3\x8c\xaf\x68\x2b\x0e\x6a\x48\x35\x61\xf7\x18\x59\x4f\x27\xb4\x7f\x40\x45\x9d\x9c\xbf\xd7\x78\x81\xad\x42\xf0\x68\x53\xcd\x8b\xb7\xec\xb5\xae\x05\x90\x17\x05\xeb\x71\x7c\x4a\xff\xcc\xcf\x39\x10\xb1\x63\xa6\xfa\x53\x76\x25\x05\x22\xe7\xd4\x2a\x38\x54\xa8\x02\xa4\x76\x07\x02\x22\x6e\x97\x5b\x9a\x8a\xc9\x7b\x4b\x17\x64\x96\xdc\x84\x71\x5f\x3a\xec\x7a\x38\x6d\x70\x17\xe9\xb0\x25\xdb\xe4\x76\x8e\x30\x2f\x87\x25\xdd\xb7\xdf\xf9\x03\x00\xea\xf8\x1d\xa0\xad\x1d\xc3\x87\xa5\x17\x49\xee\x6e\x71\x16\x3e\x5e\x9d\x37\x0c\xe1\xa4\xfb\xfa\xf7\xe3\xa6\x8a\x42\x1c\x21\x4e\x77\x77\xf9\xf6\xfc\xdd\xc5\x65\x55\x51\xee\xcf\x77\xe7\x77\xd5\xbf\x5c\xdf\x5d\x5e\x5e\x5c\xfe\x31\xfc\xd3\xcd\xdd\xd9\xd9\xf9\xf9\xdb\xea\x73\xef\x66\x17\xef\x6b\xcf\x99\x3f\x55\x1f\x9a\xbd\xb9\xba\xae\x69\xd8\x59\x01\xba\xe0\x4f\xb7\x17\x1f\xce\xdf\x2e\xae\xee\x2a\x32\x78\x6f\xff\xed\x72\xf6\xe1\xe2\x6c\xd1\x52\x9f\xeb\xf3\xb3\xab\x5f\xce\xaf\xf7\xa8\xd8\xf9\xf6\xb6\x76\xe9\x53\xc0\xc7\x0e\xd6\x34\x9c\xb1\x55\x9e\x08\x19\xa7\x3b\xc4\xde\xdb\x9b\x6d\x0d\x4c\x1b\x9e\xbd\xc9\x56\xa8\xf2\x18\x08\xfd\xed\x46\x30\xf5\x20\x72\x60\x36\xc2\xd2\x88\x06\xc1\x67\x51\xd7\xbf\x9a\x8b\x22\x6f\x46\x05\x7a\x33\x85\x8a\x7c\xe7\x72\xd1\xfa\xaa\xe3\x59\xf1\xe8\x23\x2c\x13\x79\x5f\x5d\xc0\x32\xca\xcb\xac\x48\x96\xdd\x49\x11\xa3\x93\x89\x87\xde\xbd\x91\xc3\xb5\x9d\xf0\xea\xb2\x7d\x63\xac\xe4\x06\x1c\x03\x3c\x86\x12\x0e\x95\xea\x74\x6f\x5b\xb0\x66\x56\x2e\xd3\x24\x62\x49\x5c\xf7\xa7\x50\x8e\x3f\xb8\x8c\xeb\x54\xcf\x99\xc8\xc1\x54\x35\x37\x80\x2c\x17\x27\xbc\x2c\x36\x48\x4b\x48\xa9\x08\x24\xcc\x31\x97\x5a\x44\xb9\xc0\x58\x80\xd0\xe0\xa4\x45\x8d\xc6\xe0\x4b\x50\x19\x62\xe5\x88\x81\x00\x6c\x1a\xc8\x6e\x74\xc4\x08\xf0\x4d\x2c\x7d\x84\x93\x14\x9f\xef\xed\x1a\xaa\x71\xa2\xeb\x02\xfd\x70\xc2\xe3\x8f\x56\xe9\xd1\xb4\xdb\xec\xd4\x4e\xe9\x10\x07\xd9\xe6\x6e\xb4\x37\x63\xdf\x1c\x0b\x27\x4a\x35\x99\x81\x4a\xa7\x9f\xce\x72\x01\x87\x08\x41\x01\xac\xff\x02\xa0\x2b\x94\xeb\x01\x29\x1e\xe6\xaa\xb6\x14\x1b\x9e\xae\xd0\xe2\x30\x43\xd3\xce\x94\x80\xe5\xdf\xaa\x7b\x21\xaf\x71\xc0\xbe\xca\x76\x28\xf1\xe6\xe3\x79\x5a\x9c\x47\xc8\xbb\x30\x4d\x1d\xed\xac\xb2\xb9\x6e\x60\x4c\x15\x78\x4f\x08\x7e\xc6\x94\x0e\xcf\xc2\x6e\xd3\xe4\x56\xab\xe4\x37\x53\xe0\x5c\x8a\x56\x1e\x6a\xc0\x0b\x59\xc6\x3c\xb7\x2f\x03\x36\x0a\x69\xc7\xee\x85\x04\x8d\x48\x94\x90\xdf\x3b\x67\xc7\xf9\xcf\x9b\x63\xd1\xe3\xd0\x07\x9f\x5f\x52\x91\xce\x0c\xa3\x3c\xb6\x9f\x0a\xcc\xb1\x71\xbc\x02\x30\x6f\xce\xde\x5f\x9c\x5f\xde\x2e\xce\xae\xcf\xdf\x9e\x5f\xde\x5e\xcc\xde\xdf\x0c\x5d\x7e\x4f\x91\x17\x55\x5b\x7d\xf5\xf4\x20\xb7\x43\x9c\xd2\xca\xf3\xe9\xb9\xae\x51\x7e\xd9\xc1\x90\xec\xaf\x7d\x12\x67\x8b\x38\xd1\x91\x39\xfe\x76\x0b\x21\x63\x20\xf0\x3f\x68\xaa\xb6\x17\x55\x6f\x85\x7b\x82\xb9\x27\xec\x0e\x82\xa7\xdd\x83\x9d\xd1\xee\x77\x40\xdd\x81\x1b\x32\x17\x66\xf1\xc7\x15\xde\x84\xe9\x7e\xd5\x26\x53\xdc\x71\x6d\xab\x16\x51\x6f\x13\xd6\x37\xd1\xba\x04\x7a\x06\xfb\x18\x40\x0e\x3b\x7a\x85\x58\x55\x43\x15\x81\x24\x50\xc0\x66\x89\x9e\xcb\x2d\x97\x31\x2f\x54\xbe\xeb\x68\xe2\xb0\xcd\x33\x5c\x36\xd5\x2d\x34\x3c\xb2\xa5\x10\xb1\x1d\x05\x7c\x94\xcb\xfa\x54\x42\xad\x81\xdb\xab\x9f\xcf\x2f\x6f\x16\xe7\x97\xbf\x2c\x3e\x5e\x9f\xbf\xbb\xf8\x8b\x43\x42\x66\x5c\xb7\x29\xde\x66\xb9\x30\xbb\x8b\xa5\x6e\x6a\xdd\x5f\x50\x86\xd6\x96\x43\xd2\x83\xc9\x6a\x2e\xed\xce\x92\xfb\xe2\x37\xb9\x2a\xd7\x9b\xf6\x82\xea\xb5\xfc\x38\xbb\xfd\xe9\xa0\x6a\x02\xb1\x1e\x6a\x55\xe2\x6a\x6b\x22\x42\x93\x15\xed\x7b\x08\x23\xad\x55\x0f\xe8\x21\xe1\xd1\xb6\x28\x43\xc7\x8e\x76\xd0\xed\xa5\xb9\x69\xf5\x1a\xff\x2d\x8f\x77\x4d\xa0\xdb\x60\xdf\xac\x1c\x23\x80\x50\x46\xc9\xe3\x46\x69\xaf\x5b\xfe\x56\x39\xc1\x7e\x38\x49\xc5\x7a\x2d\x62\x9c\x5e\xf5\x82\xc9\x07\x47\x5b\x60\xe4\xcf\xf5\xb6\x5e\x24\x51\xd2\x23\x0e\x66\x87\xf7\x1a\xbe\x81\x7f\x74\xaf\xb4\xef\x15\x67\x44\x8e\x03\xf1\xcd\x82\xcb\x8e\x40\xf2\x43\x13\xa1\x39\x68\x2b\xba\xca\x99\x4b\x7e\x22\x87\x89\x0d\x19\xf8\x75\xd0\x05\x78\x39\x1e\x17\xea\xea\x71\x2d\xb2\x94\x47\xc2\xe5\x30\x20\xab\x29\xdc\xeb\x0f\x09\xe0\x91\xf4\xab\x24\x7f\x4b\x20\x09\xeb\xd5\xae\xda\xa6\x00\x78\x6e\xaf\xed\x7e\xfc\xfc\xae\x95\xde\x8b\x1b\x71\x19\x82\xa3\x19\xb5\xf7\x08\xfa\x8e\xbe\x28\x10\xb4\xec\x84\x25\x8f\x9a\x0e\xb5\x2f\xff\x42\x03\x8f\x77\xe6\xaa\xa3\x9b\x5b\xb6\x50\x37\x3d\x9c\xe9\xd8\xe7\x2f\x2c\x8a\xbc\x97\x60\xf8\x29\xc2\x11\x1f\x73\xb5\x4d\xb4\x98\x15\x45\x9e\x2c\xcb\x50\x61\x75\x24\x60\xae\x72\x39\xf1\x0d\xce\x72\x15\x97\x91\xa5\x04\x82\xd6\x7a\xd8\x0f\x79\xf9\xac\xd5\x11\xb3\x13\x33\xfb\xe8\xe6\x26\xe2\x13\x00\xf4\x23\x67\x55\x5b\x8c\xcd\x6e\x8c\x1d\xbe\xbf\x8f\xf6\x28\x3f\x66\x4a\xb6\x4c\x8a\xee\xce\xb4\x73\x60\x58\x62\x2d\xb3\x8f\x83\x05\xdc\x81\x9a\xa2\xe9\xb2\xe4\x18\x40\xaf\xda\x28\x5d\x0c\x20\xee\xa8\x19\x07\xee\x1a\x86\x8d\xa9\x66\xcc\xa0\xdd\xb0\xe1\x1a\xcd\xf9\x22\xda\x54\x2b\x0e\xad\xa9\x32\xa1\xd6\xab\xeb\xcc\xe3\xe3\xdc\x26\x83\xc2\x68\x13\x74\x34\x24\xe4\xd8\xae\xa8\x5a\x3a\x89\xde\x71\xde\xee\xd0\x62\x74\x37\x3a\x3c\x0c\x60\x1f\x4d\x79\x29\xa3\x0d\xcb\x52\x8e\xc9\xe4\x1b\xae\x71\x4a\x5b\x2c\x09\x5f\x26\x69\x52\x00\x4b\x0f\x86\x38\x6b\x3d\x6c\xae\x79\x3c\xbf\xb7\x64\xe7\xdc\x53\x32\xf5\x4d\xfa\x23\x31\xbb\xae\x55\x5f\x14\xb5\xeb\x97\x6c\xb8\x0d\x0d\x9b\x96\x84\xd8\xf5\xc3\x61\x36\x62\x98\x96\xbe\x2d\xe3\x46\x96\x4a\xfc\x58\x7f\xbd\xd2\xdf\x2d\xd6\xcb\x78\xc4\x0a\xa9\x78\x8c\x38\x7d\xea\x1a\x1f\xad\x2b\x6b\x95\x2a\xde\xa1\x33\x6f\xcb\x46\xc9\x8e\xae\xb2\x63\x55\x2e\xbb\x48\xe2\xb1\x56\xfd\xa5\xf7\x05\x43\xec\xba\x7d\x2a\x67\x69\xb8\x01\xf2\x42\x14\xc9\x38\x7f\x4f\xd0\x68\x5e\x88\x13\x78\xbd\xbd\x70\xca\x30\x1c\xdc\xe6\xc6\x44\xf3\xc2\x51\xce\x68\x03\x2c\x61\xdb\xec\xaa\x9d\xce\xc7\x60\xc2\x8f\x1c\xaf\x44\xee\x99\x4a\xfb\xb5\x68\xfe\xf0\x43\x4b\xb7\x34\x1a\xfd\xe7\x92\x9b\xfd\xf0\x6a\x75\x83\x5c\x39\xc7\x34\xba\x48\x9a\xcb\xaa\x7d\xfb\xa9\x7f\xf5\xb6\x1a\x5e\x0b\x27\xfe\xe0\x4c\xe4\xb6\xd6\xdc\x98\xb7\x87\xef\x42\x17\x15\x37\x5a\x96\x27\x0a\x38\x63\xd4\x0a\x19\x18\xbb\x29\x84\x5b\xbf\x7b\x44\x4f\x7e\x2e\x45\x29\xcc\x04\x5a\x96\xf1\xba\xe9\xe5\x1e\x61\x29\xfb\x26\x6d\xd4\x23\xdb\x96\xd1\x86\xd9\xc2\x59\x2c\x52\xbe\xab\x34\x0d\x8c\xc4\x42\x01\x9f\xe7\x28\xea\xac\x80\x85\x39\x2a\x75\xa1\xb6\x00\x30\xf6\xe5\xe6\xa5\x84\x55\xce\xb8\x5d\x5d\x6d\xfb\x7b\x85\x5d\xee\xc0\xd0\xe6\xcd\xc7\xf3\xb3\x8b\x77\x17\xb5\xb8\xe2\xec\xe6\xe7\xf0\xdf\xbf\x5e\x5d\xff\xfc\xee\xfd\xd5\xaf\xe1\xdf\xde\xcf\xee\x2e\xcf\x7e\x5a\x7c\x7c\x3f\xbb\xac\x44\x1f\x67\xb7\xb3\x9b\xf3\xdb\x3d\x01\xc6\xe6\x57\xbb\x07\x82\x07\xe4\x77\x16\xf2\x6c\x95\x1d\xac\x9f\x81\xbe\xfa\x9a\xcd\x2c\x15\x60\x85\xac\xd2\x06\x89\x01\x55\x92\x22\x38\x0e\x63\xc9\x6f\x79\xc1\xcf\x78\xc1\x53\xb5\x9e\xb2\x19\x23\x40\x38\x02\xfd\xb5\xb1\x90\x88\x27\xcd\x8c\x0e\x16\x61\xcc\xa4\xc8\xdf\xe1\xbd\x74\xad\x5a\x11\x43\x61\x2a\x42\x91\x13\x9b\xd5\x36\x97\xe7\x0f\x42\x16\x25\x90\xd0\xf2\x34\x65\xf4\x59\xfb\x40\x90\xb1\x6f\x6b\xa9\x93\x6d\x92\xf2\xdc\xab\x8c\x5e\x51\x59\x70\x4b\xb1\x75\x75\x04\x4d\xcd\x74\x70\x7b\x91\xbb\xbb\x60\x50\xef\xb3\xf7\x17\x60\xf7\x45\x85\x95\xd0\xb2\x1f\x9f\x4b\x64\xc0\xa3\x2f\x6e\x39\x24\x9f\x14\x8a\x3c\xab\xf8\x79\x7a\xb8\x7b\x22\x1e\x45\x05\x6e\x63\x10\xcf\x75\xa3\x74\x95\xb4\xff\x71\x2e\x8b\x7c\x37\xd8\x98\xbb\x85\x6c\x6b\x0d\x06\x39\x61\xd9\xaa\xca\xa3\xe8\xf8\x62\xb6\xf4\x4b\xb0\xf0\x2c\xd0\x92\xe2\x32\x2e\xfc\x82\xb8\x96\x8e\x4b\x47\x6a\x4e\xde\x6f\xb5\x1f\x42\x42\x1c\xe8\x85\xa5\x2a\x65\xac\x09\x75\xb7\x4d\xe4\xe9\x96\xff\xf6\xd2\xb6\x14\x09\x26\x9c\xfe\x0f\x90\x87\x89\xd4\x5c\xbf\x76\x66\x93\xeb\xef\xae\xb9\xec\xe9\xaf\xfd\x26\xb2\xdd\x59\xe1\xae\xe7\x2f\xe6\x88\x1f\x7c\x10\xbb\xb6\xf1\x6b\x68\xb8\xb1\x90\x88\x1c\x0a\xc9\x72\x61\x1e\x74\xe0\xc4\x14\x31\xa7\xee\xdf\x90\x84\x50\xd1\x99\x6d\xdf\xbb\xc3\x78\xff\x51\xcb\xa6\x15\x69\x30\xdc\xf0\x19\x2c\xc2\x47\x5f\x32\x63\x86\xb8\x03\xeb\xf2\xa6\xa4\x0b\x0a\xa8\x9a\xc1\xfa\x4f\xb5\x64\x2b\xc8\x40\xc2\x44\x3b\x96\x0b\x08\x71\xc0\x50\x58\xd5\x08\xa0\x98\x6a\x80\x19\xec\x14\x48\x85\x06\xc7\xbf\x34\x77\x4c\xf1\xb9\xa4\xd8\xed\xab\xef\xc7\x9d\xb3\x05\x52\x8f\x23\xd7\x6c\x9d\x94\xdb\x9d\xe5\x50\xaf\x52\x26\x6d\xbc\x73\xd7\xa5\x34\x47\xf1\x53\xc0\x5e\x86\xc7\x35\x6b\x1f\xa5\x7f\xee\x4d\x12\xb2\x2e\xf9\x1c\x9f\x7f\x36\x1a\xd1\x5f\x6a\xec\xa1\xf4\x39\x80\xa4\x53\xe9\xe1\x81\xb6\xe4\xd1\xfd\x23\xcf\x63\xf4\xdb\x02\x0e\x65\xca\x7e\x52\x8f\xe2\x41\xe4\x13\x16\x89\xbc\xe0\x44\xdd\xa5\x21\x10\x0f\x0b\x8a\xca\x99\x4b\xc8\xd0\x40\x1e\x34\xa9\xcb\x5c\xb0\x22\x59\x6f\xcc\x25\x3a\x80\x51\xa8\xdc\x6c\x47\x05\xb2\x36\x66\x22\x22\xb2\xa4\x8e\x0e\x58\xa5\xfc\xa1\xc9\x45\x76\x08\xcb\x03\xbb\x70\x69\xa6\x36\x4e\x69\x95\x78\xfa\x80\x2f\xd4\x61\xb4\x69\x22\xbd\xcd\x84\xad\x55\xca\xe5\x7a\x3a\x9d\x02\xeb\xfc\xcb\x51\x13\x9d\x0a\x0c\x23\x9f\x0e\x5e\x9d\x2a\xa5\x45\xba\x73\x04\x3f\x2e\x01\x06\x10\x97\xbf\x15\x42\xea\x04\xfd\x3c\x2d\xd3\xff\xa6\x1e\x15\xf8\xb2\x41\x94\xf6\xeb\xf9\xe8\xf4\xca\x8e\x72\x40\xd8\x6f\x44\x49\xf8\x7c\xfb\xcd\xeb\xa0\x74\xe1\xf6\xb2\xa4\x92\x63\x73\x60\x7f\x51\x49\x47\x0c\xff\x20\xde\xbd\xd6\x92\x88\xa4\xe4\xa0\xbc\xc1\xf6\x3e\x6b\xa4\x72\x1e\x91\xc5\xd9\x93\x90\x39\x32\x17\x73\x88\x23\xe0\xa6\x3e\xdc\xa3\x97\xc5\x7e\xad\xa1\xd6\x06\x8d\xcc\x75\xf5\x49\xe9\x63\x4c\x27\x4c\x97\x4b\x77\x70\xe3\x72\x99\xaf\xe0\x4e\x8f\x83\x70\x40\x25\xda\x01\x39\x58\x3e\x5c\xe2\xc8\xa3\x82\xe8\x88\x2e\x54\xce\xd7\x82\x6d\x45\x9c\x94\xdb\xd6\xcd\xc6\x55\xf7\x18\xdc\x9f\x4a\xcb\x6d\x37\x8d\xdf\xb1\x06\xb4\xaf\x24\xfe\xd7\x19\x7c\x6e\xb0\x01\x3d\x73\x90\x76\x2b\xf9\x46\xf5\x45\xdf\x3f\xf5\xb5\x39\x29\xf3\x44\x03\xe1\xe4\x21\x29\x8f\xae\x18\x2c\x1a\x22\xa7\xbb\x0c\x7d\xce\x95\xd1\x3d\xb1\x21\x2d\x7a\x45\xe3\xa8\x42\xb8\xb5\xfb\x50\xa8\xa3\x09\xc7\x0b\x3f\xe5\xaa\x6c\x90\xed\x0c\x8a\x70\x83\xd9\x18\xd0\xc0\x13\xdc\x09\x0a\x24\x4c\x46\xa1\xd8\xca\x26\xd1\xdd\x8b\x80\x96\x2c\x06\x82\xf8\x47\xe4\xb8\xf9\xf9\x47\x6d\xd1\x1b\x04\xb0\xf1\x16\x4b\xe1\x3f\x82\x01\x91\x87\x57\x16\x57\x85\x2d\xc4\x22\x80\x3c\x2c\xe6\xb2\x68\x2d\xc0\xc3\x0e\xa1\x2c\x7c\xe5\x17\x5e\xa6\xed\x8f\x53\xf9\xf0\x28\x0a\x08\xce\x7e\xbd\x61\xd8\xd5\x44\x25\x9e\xf7\x55\x34\x28\x64\x3f\xb2\x0b\xba\x6b\x71\x80\x25\x58\x19\x07\xec\x74\xcb\x25\x6f\xba\x5d\x14\xd1\xc6\x5b\x1e\x40\x9e\xe6\x48\xdf\x48\x1d\x96\xda\xb9\xf5\xe4\xe8\x08\x9a\x0d\xd1\x87\xc9\x5a\xaa\x50\xd7\x43\x49\x01\x91\x29\xb3\x01\xa9\xb0\x58\x96\x14\xfb\x21\x5e\x23\x19\xc3\xf6\x4d\xb5\x42\x21\x74\x87\xda\x59\x09\x30\xc2\x95\x22\x41\x9e\x21\x8b\x8f\xc5\x3b\x11\x89\x8d\xd6\x49\xb3\xab\xcc\x0d\x73\x59\xfd\x54\xa3\x93\x2c\x06\x2b\xc9\x05\x72\xdd\x6a\x63\xbd\x15\xc9\x83\x59\xa8\xcd\x69\xed\x26\x28\xec\x00\xcd\xb9\x37\x97\x58\xed\x80\x30\xf7\x5e\xec\x74\xa8\x6c\x4a\x33\x8a\x75\x4d\xc8\xc4\xb4\x87\xc6\x6b\xff\x50\x40\xc7\x2d\x72\xaf\x4f\x36\xec\x2c\xc3\x8f\x7e\x30\x2f\xf7\x80\x3b\x1b\x85\x9b\x39\xe8\xb3\x14\xbd\x4f\x91\xb6\x09\xdf\xcf\x34\x86\x1e\xbf\x05\xe8\xbc\x10\x7f\x17\xa6\x9c\xc0\xc5\xd7\xdc\x6f\xe7\x92\x38\xb5\x83\x43\xce\x6c\x38\xcd\x61\xa3\xd4\x69\x64\xf2\xdd\x55\x68\x5f\x80\xf6\xd0\x52\x40\x56\x3f\x69\x83\xad\x56\x18\x7b\x2e\xe1\xd3\x98\x5c\x6a\x7d\x78\xad\x1f\x3c\x10\x14\x48\x83\xdb\x09\x04\x0c\x32\xb8\xf0\x49\x62\xfe\x43\x89\x5c\xbc\xfd\x44\xc2\x74\xdf\x4c\xb6\x62\xf0\x2c\x02\xef\xe6\xfc\xec\xfa\xfc\xf6\x8b\x01\x05\x2d\x4a\x6f\x34\x52\xd0\xd6\xf3\xed\xf9\xbb\xd9\xdd\xfb\xdb\xc5\xdb\x8b\xeb\xe7\x80\x0a\xd2\x4f\x07\x60\x05\x6f\x88\xaa\xff\x4c\xc9\x42\xfc\x76\xd4\x99\x9c\x97\x72\xc1\x47\xe4\xac\x38\xb1\x8e\x3e\x73\x07\x0b\x6d\x4a\x0d\x38\x1d\x00\xe2\x9d\xc4\x13\xcd\x29\x0b\xac\xbc\xd3\x70\x95\xa4\x29\xa4\xf0\x3a\xf7\x3a\xa5\x87\x99\x4e\x85\xfd\xc7\x52\x6d\xd2\x9e\x3a\x97\xcb\x8a\x12\x04\xb8\xfc\x36\xe6\x12\x8c\xc9\xbb\x99\xe9\x80\x3c\x81\xd4\xc8\x3e\x35\x82\x75\x22\x85\xaf\x06\xca\xd9\x97\x92\x75\x52\x48\xd3\x20\x3e\x27\x24\x8a\x0c\xaf\xa1\xb6\xa6\x9d\x71\x95\xf9\x69\xcd\x4f\xfb\xa3\x6b\x21\x2e\xe2\x44\xa2\x61\x5a\x59\xcd\x37\xed\x53\xf7\xd4\x2f\x01\xe8\x77\x33\x92\x1c\x62\x10\xa0\x18\xef\x07\x92\x06\x02\x55\x8a\x7c\x70\xe2\x3e\x41\xe8\x90\x5a\xd5\xfa\xd9\x6c\x85\xa6\xaf\x13\x88\x54\x70\x62\x25\x89\xd2\x52\x17\x22\x27\xb7\xc9\xec\xd7\x9b\xb9\x7c\x63\x8e\xaf\x97\x74\x0a\x91\x92\x0d\x7e\x02\x81\x2b\xaa\xf2\x7d\x6b\xa1\x84\x3b\xd8\x77\xe8\xa3\xde\x0a\x2e\x35\x83\xa5\x91\xa6\x22\xf7\x33\x03\xeb\x23\x44\x4c\x8a\xae\x40\xc3\xea\xdf\x7f\xc9\x08\x95\x68\xba\xc2\xd4\x97\x7e\xcd\xc5\x56\x15\xcd\xf9\xd4\x95\x21\x0e\x50\xe1\xe7\x9c\x39\x2d\x19\x2b\x43\x67\x11\xa1\xac\x5b\x27\x51\x35\x7f\x64\xd0\x5c\xba\xc5\xe2\x7e\x9f\x4a\x4f\x38\x95\x06\x9c\xeb\xe1\x29\xc1\x36\xca\x6c\xa0\x4e\xe6\xc5\x87\x99\x1d\x43\x45\x0a\xa0\x2f\xd3\x8d\xad\xa7\x4e\x4d\xea\xf0\x18\xec\x07\x14\x75\x1c\xb4\x76\xd6\x42\x85\xe3\x35\xb5\x6c\x6c\xa7\x57\x45\xf1\x79\x28\xe7\x66\x16\x64\x28\x55\x61\xc9\x23\x1c\xae\x8f\x40\x8a\xe6\x01\xc7\x5a\xd2\x5b\x47\x62\x02\xb1\x56\xca\xe2\x48\x25\xb2\xdb\x10\x0c\x59\x49\xa7\xc5\x5a\x84\x89\xf8\x36\xf9\xde\x91\x77\x8c\x99\x7c\x87\x6b\x5d\x56\xe7\x9c\x23\x82\x3c\x08\xec\x70\x79\x75\x79\x1e\x42\x15\x2e\x2e\x6f\xcf\xff\x78\x7e\x5d\x49\xc4\x7e\x7f\x35\xab\x24\x53\xdf\xdc\x5e\xd7\x72\xa8\xdf\x5c\x5d\xbd\x3f\x6f\x60\x1e\xce\x6f\x2f\x3e\x54\x0a\x7f\x7b\x77\x3d\xbb\xbd\xb8\xaa\x3c\xf7\xe6\xe2\x72\x76\xfd\x6f\xe1\x5f\xce\xaf\xaf\xaf\xae\x6b\xdf\xbb\x3b\xeb\x47\x4f\x54\x9a\xd1\xee\xfe\xf1\xc1\xd9\x80\x13\xb3\x75\x19\x57\xb5\x40\x8f\x58\xc5\x03\x91\x67\xfb\xa6\xa3\xcd\xb3\x8e\x43\xaa\x7c\x5c\x18\xa6\xaa\xa3\x66\xdd\xd3\x8b\x97\x56\xba\x2e\xe3\xc7\x6d\x7b\xe6\x54\x5b\x3c\x05\x12\xb0\xd7\x00\x74\x5f\xa9\x39\x6e\x49\x2b\x18\xbb\x36\x83\x08\xd6\x9a\x77\x4a\xf7\xc8\xf8\xd9\x6b\x6a\xbf\xb1\xaf\x9e\x9e\x83\x69\x0f\x95\xcd\x53\xd1\x58\xf4\x55\x3a\xf8\x98\xcd\x12\x4f\x62\x6b\x28\xd8\x1f\x83\x83\x1b\x9a\x61\x66\x4e\x30\x1d\xbb\x54\x26\xdb\xf3\x4d\xfa\x69\xd3\xc6\xd6\x9f\x3e\xd2\xac\x7b\x8d\x63\x63\x44\xbd\x81\xeb\x68\x4c\xbd\x6f\xb9\xbe\x1f\x5b\x6f\xfa\x48\xb3\xde\x60\xf6\x1d\x54\x6f\x70\x78\x17\xed\xfc\x27\x23\x36\xb1\xb0\x98\x6a\xf5\x5c\x72\xb6\x7b\x24\x10\x73\x1d\x56\x47\xb3\x00\x9e\xf7\x7a\x99\xf1\xe1\x81\x0c\xa8\x8d\x5b\xae\xbc\x46\x07\x7e\x03\xbf\x42\x0b\x97\xb9\xe0\xf7\xb1\x7a\xa4\xf1\xa8\x23\x43\xd9\xa0\xdd\xbc\xda\x41\x66\x0f\xb7\x47\x44\x91\x53\x04\x0a\x51\x6a\xbe\x78\x80\xc9\x25\x44\x68\x8d\x36\x58\xa0\x42\x5a\x67\x90\x01\xce\x1e\xe9\x47\x67\x2e\xd1\x9a\x6f\x53\x32\x35\xa3\x6a\x6a\x44\x9c\x0f\xd0\x54\x67\x43\x63\x70\x5d\x07\x03\x4b\x09\x1c\x65\x0e\x60\xba\x65\x0e\x77\x26\xe8\x90\x44\x82\x33\x39\x37\x17\x9e\x5c\x44\x89\x16\x81\x9a\x53\xeb\x89\xfd\xf9\x38\xed\x87\x82\x17\xad\x6e\xd7\xc1\xfe\x70\x1e\x15\x25\x4f\xd9\xe7\x52\xe4\x3b\xa2\xce\x43\x5f\x25\xfe\x25\xe2\x12\x33\x45\x0a\xb1\xcd\x20\x1d\x3b\x4c\x71\x98\xcb\x5f\x01\x28\x81\x43\xf0\x42\xb3\x3f\x02\xe4\xc1\x3e\x4c\x87\xf0\x96\x17\x70\x16\xff\x19\xbf\xe1\x7e\x9b\xce\x65\x45\x1d\x25\x78\xab\x22\x94\x32\x9d\x4b\x2b\x4f\x10\xab\x48\x4f\xe1\xc6\x37\x55\xf9\xfa\x94\x84\x7d\xcd\x64\x57\xf7\x4b\xa5\xee\x4f\x85\x3c\x05\x9f\x54\x71\xca\xcb\x42\x9d\x02\x5c\x0a\xc7\x5f\x9f\x5a\xfd\x4f\x2b\xa0\xaa\x4f\x37\xc9\x83\x80\xff\x37\xdd\x14\xdb\xf4\x1f\x75\xb6\xf9\xed\x64\x9d\xe6\x27\xe6\xdd\x93\xf0\xdd\x13\xfb\xee\x89\x7d\xf7\xc4\xbc\x86\xff\x2f\xdb\x61\x78\x47\xfc\xc6\xcd\x59\x36\x99\xcb\x44\x6a\x91\x17\x60\xfd\x3c\xe6\x49\xe1\x65\x68\x76\xec\xc5\x7f\xff\x37\x9b\xe6\xfc\x11\x53\x19\xdf\xf2\x82\x7f\x44\xff\xe2\xff\xfc\xcf\x0b\x08\xa8\x62\x52\x4f\xc6\xf3\xcf\xa5\x28\xe6\x52\x0b\xb3\x08\xd9\xff\x37\x97\x10\x81\xdd\xee\x16\x05\xfa\x5d\xd1\x07\x19\x6b\xf6\xaf\x58\xe6\x05\xd2\x48\xc6\xda\x94\xd4\x91\x4e\x90\xf0\xb4\x45\x32\xba\xc3\x45\xff\x39\x7d\x4b\xcf\x8f\x58\xd6\x9f\xd3\xea\xaa\xb6\x42\x28\xfa\x73\x0a\x07\x68\xaa\xb8\x05\x6b\x31\x37\x79\xe1\x9e\x4c\x95\x6b\x5b\x23\x0d\x68\xc0\xb3\x86\xe9\xdb\xd7\xca\x0d\x52\x59\x5b\xcf\x7d\x63\x1b\x81\x58\x81\x8f\x43\x40\xf4\x3c\x31\x2b\xe4\x06\x3d\xa1\x60\xb9\x61\xcb\xc1\x26\xa5\xd0\xb9\x2b\x0f\x1d\x17\xfa\x0f\xaf\x4f\x4f\x27\x6c\xad\xe1\x7f\x96\x9f\xe1\x7f\x00\x3d\xf4\x54\x6c\xac\x8d\xce\x74\x40\xb8\xe6\x28\xef\x1f\x89\xa7\x40\xd1\x7d\x09\x02\xf0\xda\x34\x7d\x53\xca\x38\x15\x3e\x05\xb2\x12\x12\x49\x95\x95\xac\x47\xc7\x58\x5d\x6a\x05\xc6\x78\x29\x22\x6e\x36\xbe\xc6\xb7\x11\x5c\xaa\x56\x85\x90\xe8\x0d\xcb\xbd\x12\x1b\x47\xcf\x15\x98\xc5\x00\x85\xe4\x05\x41\xce\x05\xfc\x11\x3e\x02\x8c\xda\x93\xfa\x4f\x6c\xa7\x4a\x22\x87\x06\xca\xd3\x58\x44\x29\x30\xf0\x5b\xda\x17\x96\x8b\xa2\xcc\x25\xe3\x2c\xe3\x32\xe6\x1a\x66\xe0\x2a\x87\x68\x67\xce\x78\xb3\xa2\x13\x84\xe3\xaa\xb2\x00\x32\x23\x44\x16\x84\x3d\x81\xec\xdd\x41\x9d\x27\x41\x25\xf0\x4c\x00\x12\xe1\xc6\x8b\xd3\xb9\xb4\x5a\x61\x84\x85\x43\x4f\x59\xa4\xb2\x1d\x51\xd5\xd4\x3b\x3d\xb1\x9e\x33\xea\xee\x89\xc7\x9b\xd4\x9f\x9d\xb0\xa4\x1a\x5a\x03\xa2\xf0\x22\x50\x3b\xb6\x7a\xd1\xdf\x09\x19\xa9\x58\xe4\xfa\xa5\x59\x86\x89\xbb\x77\xa0\xfd\x90\x68\x3f\x18\xb0\x4b\x99\xc3\x8d\xbc\x85\xa6\x78\xa7\xa8\x63\x7a\xa7\x42\x2d\xdd\x66\xe7\xec\x5f\x2a\xdf\x3a\x0a\xa6\xad\xbe\xf4\x9f\x5f\x14\x11\x13\xe2\x3a\xed\x9d\xf3\x70\x17\x04\x2e\xd9\x70\xc7\xc5\x42\xd1\xc6\x21\xe3\xc4\x4a\xcb\x26\x05\xa8\xd7\xe5\x42\x17\x73\x49\x27\xf0\x84\xad\x04\x37\x76\xde\x84\x45\xfa\x01\x37\x63\x3c\xee\x8b\x47\xe5\x31\x38\x56\x97\x04\xc0\xb0\x95\xc2\xbd\x93\x18\x1f\x03\x44\x01\x8f\x0a\x04\x18\x74\xaa\x90\x5b\x53\x05\x3a\xab\x75\x43\x3c\xa0\x1f\xac\xcc\x45\x5d\x52\x2a\x54\x59\x81\x9e\xd8\x61\xa0\x98\xd5\xeb\x81\x3f\x98\x8d\x07\x5b\x87\x30\x90\x60\x73\x04\x8b\x9b\xb0\xb4\xb8\xce\x7c\x0c\x37\xe4\x1a\x07\xdf\x4c\xd7\xa2\xea\xe9\x08\xa8\xc0\x61\x7e\x0b\xf3\xea\x5e\x87\x95\x16\xb9\xd5\xe0\xc0\xb6\x22\x33\xe0\x26\xc9\xe3\x93\x8c\xe7\xc5\xce\x4e\xdf\x34\x59\x02\x75\x7f\x9a\xdc\x0b\x36\xcb\x73\xf5\xf8\xd4\xbd\xd0\xb9\xb5\x74\xdd\xb0\x8f\x41\xb2\x8f\xbd\xe5\xb7\xf2\x82\xd6\xdd\x1d\x87\x71\x90\x76\x39\x3e\x5a\xbf\x93\x8b\x22\xdf\x2d\xcc\x44\xdc\x66\x9d\x3b\xc5\xa0\xa4\x89\xe1\x46\xee\x38\x7a\xd3\x9a\x0b\xa3\x93\xde\xb4\x32\xaa\xdf\x0e\xbd\x69\x0b\x73\x69\x93\xde\xf4\xe2\xf2\xe2\xf6\x62\xf6\xfe\xe2\xff\xd6\x4a\xfc\x75\x76\x71\x7b\x71\xf9\xc7\xc5\xbb\xab\xeb\xc5\xf5\xf9\xcd\xd5\xdd\xf5\xd9\x79\x3f\x5f\x51\xb3\xf6\xde\x04\x3f\x61\xe1\x77\x5e\xb3\xdb\x00\xa8\x81\xc9\x06\x64\x7f\x93\x76\x25\xcc\x2a\xb3\x98\x13\xb9\x9e\xc0\x42\x7d\xcd\xce\xf3\xfc\x62\xcb\xd7\xe2\x63\x99\xa6\x00\xa7\xc2\xcc\x9e\xb3\x5c\xc0\xc5\x73\xc2\x3e\xaa\xf8\x22\x78\x0f\xd2\x11\x5b\x9b\x01\xdf\xe7\x71\x9c\x0b\xad\xf1\xf3\x13\xfa\x7e\x00\x1e\x72\xa9\x8e\x04\x9e\xe3\x0f\x3c\x49\xcd\xfd\xed\x35\x7b\xc3\xa3\x7b\xb5\x5a\x61\xfa\xcc\xc4\x25\x4e\xb1\xcf\xa5\x2a\x38\x13\xbf\x45\xc0\xd1\xd5\x3e\x4f\xde\xab\xf5\x57\x80\x2a\x0f\x08\x4f\x75\x5c\x52\x40\xa3\x6c\xd1\x7e\x9c\xb7\x6f\x04\xd4\xca\x0f\xf8\xea\x3b\x7c\xb3\xdd\x41\x59\xa4\x4f\x90\x1e\xff\x5e\xad\xdb\x15\x63\xc0\xba\x26\x99\x1b\x0a\x24\x44\x44\xb6\xa1\xd6\x4c\x27\xf2\x7e\x2e\x7f\xdd\x08\xc9\x54\x99\xe3\x9f\xe0\x9a\x6f\xcc\xcc\xb4\xd4\x1b\x01\x12\xb2\x13\xf6\x28\xd8\x96\xef\xd0\x6c\x86\x3b\x81\x93\xb9\x80\x29\x03\xa7\x88\x79\x3b\x4d\xa4\xd9\x2d\xb2\xc4\xe6\x25\xd4\x87\xfe\x29\x6e\x5c\x96\xa1\x8e\x1f\x4f\x20\xdb\x77\x9e\x56\xf0\x79\xe0\x2a\xf3\xb8\x49\x0b\x10\xa2\x9d\x1b\x54\x34\x95\xba\x2f\x33\xcf\x65\xf9\xc2\x06\x27\xa1\xbb\x1f\x54\x12\xb3\xb8\xcc\xd2\x24\x72\xfb\xee\xa3\xca\x3b\x09\x7b\x31\x81\x66\xf8\xa9\x53\x4f\x0b\xeb\x6b\x58\x4b\x76\x4e\x80\xa4\xeb\xa1\xee\x7d\x66\xf2\x62\x96\xc8\x28\x2d\x41\x1f\xac\xd4\x22\x3f\x29\xf2\x64\xbd\x06\x03\xdc\xe6\xfa\x7d\xfb\xec\xc6\x9e\x3d\xf1\xf8\xb4\xb6\x30\xe9\x3c\x55\xeb\x24\xe2\x69\x08\x6e\xf6\xa8\x08\x47\x9f\x6a\x97\x3d\xa9\xa7\x42\x1e\x84\xad\x50\x27\x03\x52\x96\x0b\x60\xf0\x5d\xc0\x56\xbe\xa0\xed\xee\x98\x7a\xaf\x98\xb9\xa0\x63\xbd\x42\x72\x53\x1b\x5e\xb0\x27\x9c\xff\xb6\x95\xd0\x02\x13\x13\xe5\xb5\x99\x7a\x94\x22\x07\x0b\x16\x60\x1f\xa6\xa5\x52\x81\x6d\xe2\x64\xb5\x1c\x3e\xd9\xca\xca\xad\x1c\x10\x1b\x33\x67\xd7\xc9\x83\x90\x5f\x9e\x8d\x3a\xf8\x40\xc4\xa3\x8d\x58\x58\xbb\xfc\xa9\xb7\x2c\x77\x00\x8c\xdc\xac\xac\xbe\x45\xb8\x95\xba\xf0\x26\x5c\x9d\xb0\xc6\xcd\xbd\x0b\x03\x89\x3d\x19\x59\xa6\x12\x8b\x58\x44\xf7\x5f\x7c\x6b\xf6\x20\x2b\x5b\x11\xc6\xd9\x5b\x11\xdd\xb3\xbb\xeb\x0b\xcc\x06\x4e\x0a\x66\xb6\x02\xbd\xf1\x7a\x3d\x9d\x77\xb7\x82\xaf\x9f\x81\xd1\x69\xa8\xe0\x90\xe7\x98\x77\x32\x6b\xa6\x42\x04\x88\x82\x7c\x49\xb3\x49\x52\x2e\x0d\x00\xc1\x78\x61\x65\x68\xc0\x11\xcf\xf4\x16\x54\x67\xca\x22\x90\x6a\x4b\xf9\x52\xa4\x1d\x8c\x8b\x99\x8a\x17\x36\x4e\x72\x2c\x98\xa7\x51\x96\xf5\x63\x50\xd4\xd1\xe6\x31\x70\x63\xb1\xde\xd2\x83\xec\xfe\x47\x1d\xd0\x6b\xa8\x90\xf8\x19\xee\xf5\x5c\x43\x7a\xf7\x2a\x59\xdb\x68\x5b\xb2\x22\x6d\x1c\x4c\xe8\x07\x15\x78\xb3\x5f\x9a\x92\x3e\xaa\x98\x60\x7a\x8e\xc4\xcc\x58\x41\x82\xbc\x27\x1e\x57\x11\x56\xc1\x29\xe5\x6b\xf0\x0d\xe8\x42\xf0\x98\xa9\x15\x79\x13\xb3\x2c\x4d\x80\xd2\x37\x46\xf6\x70\x60\xcf\xd0\x55\x74\x7c\x58\x9a\xad\x6c\x40\xf2\xf1\xd1\x02\xf1\x7a\xe3\x8d\x3e\xc8\x65\xda\x55\x75\x72\xd7\x6d\xaa\x63\x55\xe0\x5c\x3e\xd2\xa1\x57\xe8\x7e\x6f\xda\x3a\x55\x4b\xe8\xa8\x6e\x50\x5c\xcf\x06\x6d\x76\xa7\x3c\x89\xc7\x1c\xef\xb6\x4f\xae\xdc\xab\x7d\x15\xbc\xb2\x9e\x0e\xf7\x25\x3b\xcc\x8c\x08\xd7\xc3\x08\x7e\x2d\x8d\x7d\xdf\x5d\x1b\x02\x84\xda\x45\x08\x9d\x35\x5e\x90\xdc\x00\xac\x0a\xb7\x1d\x77\x5c\xab\xab\x6d\x39\x6a\xa0\x9b\xc4\x28\x7b\xfa\xd2\x73\xa9\xf4\x0f\xf2\x11\xec\x16\xb8\x72\x1d\xc5\x45\xb7\x23\x4d\xc6\x22\x5e\x1c\xd0\x86\x73\x7a\x77\x58\x5b\x5c\x4f\x63\xf5\xc0\xe5\x25\x4f\xcc\xc9\x18\xf3\x3c\xf6\xed\x98\xc0\x8d\x38\xe2\x19\x78\x9d\xc1\x8b\xff\xf0\x6a\x6a\xbf\x71\xed\x93\x69\xcc\xf6\x80\x29\xee\x08\x57\x56\x2d\x5a\x1d\xfb\xe6\x91\x9b\xa4\x88\x66\x36\x33\xc7\x4f\xd7\x4a\x9a\xc9\xa0\xb9\x5b\x9f\x61\x76\xbf\x3a\x66\x72\x3d\xc7\xde\x51\x16\xca\x07\x37\xa0\x3d\x17\x40\x8f\x1a\x26\xb0\xc1\x06\x79\x11\x77\x00\x23\xac\xb5\x69\x37\xa1\x11\x70\xdb\x51\x80\xdf\x2c\x17\x36\x4c\xb6\x13\x85\xa3\x31\x48\xad\xfe\x19\x44\x81\x5c\xab\xab\x3c\x2e\x96\xaa\xc1\x71\x6f\x41\xcc\x86\x2c\xdb\x48\x6d\x33\x25\x01\x85\x83\x49\x59\x73\x49\x85\x5b\x15\x6b\x17\x48\xaa\x64\xf6\x4d\xc8\x7f\x87\x79\x22\x42\xab\xf4\x81\x22\x86\x81\xd8\x02\xe8\xdf\x99\x0a\x9e\x99\xab\x90\xb9\xf8\x43\x28\x9b\x0e\x32\x00\xbe\xd7\xa4\x9c\x73\xb1\x4e\x74\x21\xc2\x64\xc8\xf0\xfd\x27\x53\xdd\xac\xf8\x0a\xfa\xba\xbe\x53\x75\x73\x9f\xd1\x6f\xf6\xa7\x11\xf5\xd9\x65\x22\xbe\x70\xef\xf5\x4f\x86\x5a\xbe\xba\xdf\x0e\x2b\xe7\x1d\xce\x01\xbc\xec\x68\x64\xb6\xd2\x4e\x26\xc1\x0d\x12\x71\x0e\x71\x8f\xdf\x33\x43\xb4\x2e\x79\xce\x65\x21\x84\x9e\x4b\x8a\xb3\x22\x43\x5b\x48\x42\x52\xc3\xfd\x39\x53\x3e\x52\xba\x40\xc2\x23\x78\x65\xc5\x93\xb4\xcc\x3b\x6f\xd7\x38\x2b\x0f\x62\x59\xe8\xeb\xa5\x33\x28\x96\xb5\x0d\x9a\xcb\xd7\x0d\x56\x91\x23\x09\xa9\x47\x49\xab\xe9\xac\x1d\x4d\xb0\x87\xcb\xf0\xf1\x76\xae\xd5\x8e\x14\xde\x1f\xf5\x22\x53\x23\x76\xbc\x9f\x7f\xd4\x1f\x55\x47\xf2\xb3\xfe\xdc\x70\x01\xf6\xa0\x05\x3e\x77\x09\x47\x70\x7d\x0f\x81\xb6\x7d\x9e\x87\x41\xe4\x93\x7b\xc3\x71\x9d\x7b\x17\xcc\xda\x0d\x97\x71\x6a\x6e\xe4\xbc\xa8\x9d\x40\x1e\xd6\x6c\x6e\x00\x85\xdd\x1c\xbb\x73\xd8\x20\x25\x64\x11\x35\xf2\x09\xf7\xf5\x53\x2d\x11\xb1\x17\x3a\x58\xfb\x4a\x35\x3d\xb0\x2d\x2d\xc5\xdb\x30\x24\xd7\xea\x16\xec\x57\xb7\x5f\xce\xc3\xba\x7f\x21\xf3\xa5\xba\xd6\x56\xc9\xfa\x1b\xb8\x37\x7f\x68\x1e\x09\x11\xed\x39\x74\x50\x3b\x30\xff\x91\xbb\x0e\xe4\x4d\x99\x5d\x3b\xe4\x9b\x9e\x4b\x92\xad\xc6\x60\x3a\x44\x51\x91\x5e\x4c\xb3\x57\x2e\x99\xf6\xd5\x3f\x59\x72\xa9\x1d\x5b\xc1\xa4\x02\x06\x37\x15\x45\x65\x0e\x91\x6e\xf2\xc6\x31\x81\x87\xb0\x1e\xc5\x9b\x02\xa6\x87\xc3\x27\xa1\x9d\xd8\x66\x26\x39\xf7\x6b\xa5\x51\xb7\xe0\x75\x43\x01\x6e\x77\xe8\x93\xae\x52\xae\x0b\xa6\x0b\x91\xb5\x6e\xbf\x15\xeb\xb2\xaa\x31\x7f\x84\x7d\xe9\x15\xee\x07\x2e\x9d\x11\x87\xd1\x2c\xf0\x90\xfc\xe9\xe6\xea\x92\x65\x7c\x07\x50\xbf\x42\x31\x7c\x14\xf8\x35\xeb\x1b\xd5\xbe\x11\xa8\x36\xbe\xba\xab\x60\x9f\x5a\xcc\x70\xbb\x3b\x9e\xbe\xd8\x34\x16\x61\xce\xd0\x94\x34\x7b\x56\xae\xd2\x93\x2c\xe5\x32\x40\x73\xeb\x29\xab\x7d\x3e\x0c\xdf\xbb\x40\x1e\x01\xa4\xa0\x02\xe0\x21\xa3\xb9\x90\x97\xad\x78\xdf\xaa\x6c\xfe\x51\x11\xfb\xce\x3d\xa2\x17\xc7\xf8\x01\xd5\x2a\x78\x64\x96\x09\x92\x45\x58\x14\x82\x03\xb2\x70\x0d\x18\xd3\x11\x03\xd5\xaf\xf1\x3f\x97\x56\xc2\x59\x3d\x6a\x16\x23\x9d\x46\x99\xe8\x0d\xb8\x9c\x31\xc6\x03\x78\x2f\xda\x5f\x10\x8c\x92\x73\xa9\xcd\x80\x82\x9b\x5a\x3c\x08\xf2\x55\x55\xe2\xab\x17\x6f\xdf\x3b\xc8\x06\x0e\x12\xa9\xec\x75\x74\x7d\x60\x81\x1e\x73\x53\x6b\x15\x9d\xdf\xaf\xd5\xf0\x81\x67\x7d\x89\x80\x47\x97\xb8\x6f\x94\x1c\x99\x50\xdd\xbc\x06\xf9\x5d\x10\xde\xaa\x64\x03\x86\xbd\x77\x27\x8f\xdc\x7e\x5a\xf9\xbc\xf7\xeb\x44\x0c\xbe\x6d\x0e\x4b\xee\x1c\xb1\xf7\x04\xbc\x7e\x0e\x2e\xe5\x2e\x06\x66\x95\x83\xac\x11\x10\x92\xa1\x73\x74\xca\x6e\x84\x60\x9f\xa0\xa7\xcc\xc7\x3e\x91\x6c\x1e\x20\x40\x0b\x9e\xb4\xaa\x1a\xc1\xd3\x17\x72\xa5\x8e\xdb\x0c\xf2\x75\x03\x61\x78\x54\xaf\xb4\xd7\xf3\x58\x0c\x23\x64\xa7\xca\xe7\xa5\x54\x68\x6d\xd7\x1e\xc4\xe2\x47\xef\x7c\xa0\x44\x4b\x5b\x53\x73\x3e\xc3\x10\x1f\x42\xda\x55\x9b\x24\xa6\x95\x13\x24\xa2\xbe\x97\xea\x51\xa2\x2d\x40\x5f\x62\xdf\x99\xf5\x07\x07\x18\xfa\xc4\xd1\x2c\x28\x71\x37\x7c\x09\xcc\xd8\x33\xf7\x6f\x76\x83\xe1\x3f\xac\x33\xe8\xdd\x68\x30\x7e\x48\xa9\x06\x76\xf3\xef\x66\x13\xf6\x66\xc2\xce\x26\x6c\x3a\x9d\xbe\x9c\xa0\x18\x37\xd5\x08\x5f\x41\x30\x60\xc1\xd7\xa6\x6c\x52\x00\x59\x05\x1f\x00\x4d\x2b\x73\x58\x59\x02\x38\xee\x9f\x0a\x5c\x2c\xb6\x09\x98\x96\x4a\x39\x34\x04\x95\x88\x36\x2a\xf1\x95\x02\xd4\xad\x88\x54\x6e\x71\xbb\xba\x50\xb9\xc5\x20\x3e\xf0\x9c\x27\x12\xb2\xf5\x79\x13\x81\x4d\x5f\x0e\xf8\xba\xc5\x6f\x7c\x0b\xed\x4f\xa4\xa3\x2c\x35\xdd\x74\xeb\xea\x5f\xec\x32\x8a\x31\x3c\xe6\x49\x51\x98\xd3\x59\xcf\xe5\x0d\x7b\xfd\xaf\x6c\x96\x65\xa9\x60\x33\xf6\x57\xf6\x86\x4b\x2e\x39\x7b\xc3\xfe\xca\xce\xb8\x2c\x78\xaa\xca\x4c\xb0\x33\xf6\x57\xd3\x6d\xa6\xbc\x4b\x65\x8e\xc3\xdd\x84\x71\x26\xcb\x14\x4f\xfd\xef\x2c\xbe\xef\xa5\x6b\x17\xf7\xa3\xb3\x14\xc5\xa3\x10\x92\x69\xb5\xa5\xa3\xf0\x2f\x2e\xcc\xa4\x13\xb9\x4e\x45\x41\xf3\xa1\x8a\xc4\xc4\x0f\x9c\x40\x4b\x5f\xcf\xa5\x73\x5a\xfe\xc5\xd4\xf8\x2f\xec\xaf\xec\xb2\x4c\x53\x53\x25\xb3\xd1\x98\x89\xf4\x9a\xd9\xcc\x18\x21\xa7\x8f\xc9\x7d\x92\x89\x38\xe1\x90\x1b\x63\xfe\x75\x7a\x0b\xa3\xbd\x28\x3d\x0d\x62\xb8\xa6\x9d\x86\xd0\x31\x5b\xcf\xb3\xe4\xd9\x3b\x85\x2b\x3b\xf8\x3d\x57\xdc\xea\xab\xe3\x2d\x22\x4f\xfe\x4a\xeb\x81\x0c\x56\xd4\x7f\x0a\x95\xb4\x0e\xda\x02\x6a\x87\xad\x2d\xab\xe5\x28\x08\x0f\xf5\x63\x37\x59\x90\x85\x7b\xf2\x3b\xe4\x00\x39\xaa\xa1\x5b\x6e\x43\x4c\xa7\xc2\x5c\x00\xb6\xa4\x67\x6f\x1a\x14\xe8\x73\x22\x3a\xbf\x54\x75\xf1\x2a\x5d\xac\x92\x41\x02\x82\xb5\xca\xde\x91\x93\x06\x73\x0e\xcd\x32\x4d\xd2\x53\xb3\x54\x4f\x2f\x95\x34\xd7\x56\x9d\xac\x91\x71\x0a\x6e\xf7\xa8\xbc\x67\x8d\x82\xdb\xaa\xc9\x1a\x2c\x01\xb0\x0f\x4c\x95\x10\xad\x58\x98\x5d\xc0\x0c\x41\xba\x9b\x4b\xf3\x06\x9d\x48\x90\xb9\x90\x38\x62\x62\xfc\x1a\xf1\xfe\xda\x6f\xd1\x86\x1c\x14\xde\x32\xc1\xfa\xd2\xa2\x8f\x98\x70\x94\x85\x77\x84\xfb\xff\x32\x20\xe5\xa3\xd2\x2c\x63\x0b\x86\xb2\x97\x22\x55\x72\x6d\x66\x45\xd7\x26\xa0\xb6\x3c\x39\x06\x2b\x14\x56\x01\x0b\xeb\xac\x81\x39\x2c\xe9\x11\x1a\x12\x73\x4e\x26\xb1\xbf\xdf\xeb\x72\x69\xec\x08\xe7\x7a\x76\xa7\x21\x35\xae\x2b\x47\xfc\x38\xc8\xc0\x9d\x16\x39\x30\x67\x23\x68\xc5\x85\x35\xf0\xe0\xf4\xfc\x29\xd8\xa2\x61\x8b\xaa\x17\xeb\xdc\xee\x0a\xa1\xb0\x49\x23\x5b\x7e\xc0\x7c\xfc\x9a\xb0\xe7\x21\x60\xe8\x77\xb3\x8b\xf7\xb5\xe7\x9a\x60\xe8\x16\xc4\xf4\xed\xc5\x87\xf3\xb7\x8b\xab\xbb\xdb\xc6\x73\xa6\x34\xfa\xd3\x1e\x3c\x74\x67\xef\x3d\x05\x22\xf4\x33\x2a\xf8\x2c\xd4\xca\x26\xc7\x0e\x3f\xd3\x1b\x1a\x4a\xc3\x80\x47\x21\x6f\x7a\xa8\x35\xd4\x9c\x38\x9d\x29\xfe\x72\x41\xa1\x97\x61\x95\xad\x77\xd8\x95\x7c\x87\xaf\x7f\x54\x69\x12\xf5\xe3\x18\xed\x71\xb5\x51\x8f\x2d\xc0\xb0\xa5\x00\x60\x2f\xf9\x7f\xa8\x52\x68\xa1\x17\x22\x2a\x7c\x68\xb1\xd9\xb8\xff\xd5\xd8\xa9\xfd\x77\x70\xf4\x28\xbb\x6e\x03\x4d\x55\x17\xac\x84\xb3\x15\x38\x53\x41\x2a\x00\x7d\xad\x90\x1e\x09\x41\xfc\x88\x93\x0b\xba\xd2\xf3\xb0\x41\x3f\x6e\x54\x6a\xee\x62\x32\x26\xfe\xd9\xb9\xcc\x44\x1e\x29\xc0\x1c\x21\xb5\x81\x62\xd1\x26\x49\x63\xaf\xc7\xf3\x1d\x80\xb4\x01\x4a\xf9\x92\x94\x16\x85\x0b\xa6\xdb\xe2\x7b\x4e\x5d\x3b\xed\xac\x04\xfd\x71\x1e\xa8\xa7\x43\x5d\xf6\x4d\xfb\x5f\x09\x1d\x88\x5d\x41\x8c\x51\xb5\xb0\xa8\xe9\xf4\x4a\x7d\x46\x79\x78\x41\x24\x7e\x65\xf5\x5c\xed\xc5\xa9\xa8\x8d\x2b\x4d\xb3\x7a\x57\x02\x8f\x30\x02\xe3\x10\x13\xa4\x05\x54\x67\x2b\x38\xda\x62\x9e\xd5\x93\x06\x75\x2e\x7d\x20\xf8\x85\x0e\xed\xb2\xd6\x71\x46\x9a\x5c\x8b\xeb\x9c\xb0\x17\x95\x86\xbe\x00\x9e\x59\xa9\xe0\x7b\x14\xac\xab\x74\x0d\x4c\xd7\x09\x4b\x8a\xb9\x4c\x34\xce\xcc\x5c\xa4\xe2\xc1\xd4\x2e\x74\x16\x13\x7c\xc9\xde\x9d\x6d\xb3\x21\x35\x80\xdb\x8c\x72\x9a\x36\xb4\x08\xf3\x90\xaf\x14\xa3\x54\xb1\xd0\xc6\x6e\x04\xa5\x15\xf1\x9b\x59\x00\x09\xc4\x42\x10\xe7\x12\x0b\x69\xeb\x07\xf0\x17\x94\x27\x9e\xcb\x8b\x15\xa4\xf5\x42\x32\x71\x1c\xe3\x2d\xd4\x6a\x6f\x38\xf2\xb8\x84\x9c\xc3\x8a\xee\xe4\x76\x20\x48\x28\x14\x57\x92\x78\x10\xf9\xae\x00\xa7\x2e\xf4\xab\x14\xbc\xd8\xb0\xa4\x98\x00\xeb\x9f\xdd\x29\xe7\x92\xc7\x24\x3e\x4f\xc5\x99\xae\x81\x79\xdf\x33\xce\xf4\xfb\x52\x3d\xf4\x19\xb6\xc7\x02\xf9\x70\x55\x67\x29\x97\x0b\x3c\x41\xbe\x02\x94\x2f\xd0\x70\xed\x8a\xe9\x96\xcb\x85\x63\x2a\x7a\x92\x7a\x06\x32\xdf\xa1\xb2\xb2\xb1\x63\xed\x87\x26\x38\x19\x3c\x53\xb9\xbd\x9e\x38\x3f\x0d\xc1\x28\x72\x66\x43\xcd\xc3\x77\x01\x8f\xf2\xe3\x35\xc8\x85\x9d\xad\xfb\x60\x7e\x76\x06\x7c\xab\x40\xac\x21\x23\x5f\x3b\x43\xea\xc3\x3e\x1e\x03\xd4\xb0\x10\x0f\xc2\x01\xed\xa9\xd6\xf3\x62\x81\x3a\xfd\x28\x4d\x4c\x90\x6d\x6d\x10\xee\xc3\x7c\x18\x81\x7e\x38\xe7\xe6\x69\xd7\xe8\x0d\xef\x61\xaa\x05\x2e\xfb\x94\x3e\x6a\xd8\xa7\x86\x7a\x4a\x7c\x3a\x3d\xd4\x6b\xca\x2e\x24\xb3\xe6\xde\x84\xbd\xc0\x89\xa5\x5f\x90\x0b\x92\x84\x9e\x29\x76\x1e\xd3\xea\xa1\x04\xe4\x3a\xe6\x04\xd3\x40\xfc\x72\xc3\x48\x50\x2f\x5b\xe5\xb3\xf6\xcb\x9b\x04\xd2\x50\x0e\x61\x1a\xc0\x28\xe2\x12\x0b\xa0\x43\x12\xaf\xdd\x3b\x34\xda\x95\xf7\x66\xfb\x06\xdb\x78\x17\x7b\x63\x5f\x34\x5d\x94\x95\x74\x9e\xda\xdf\x99\xca\xe7\xd2\x96\x46\x2e\x49\x8d\xf2\x58\xf5\xa2\x02\x54\x3c\xd9\xfc\xc1\x4c\x05\x10\x83\x55\x44\x03\xa1\x3d\x4f\xa9\x5b\xdf\x05\x00\x14\xb1\x14\x5e\xa2\x7e\xca\x66\xfe\x6b\xc6\xf0\x30\x13\x7c\x8b\xc7\x7c\x9d\x76\x33\x4d\x4d\xa7\x24\x85\x65\xf9\x0c\x32\x56\x74\x09\x5c\xb5\xab\xd2\x6c\x46\x01\xa1\xef\x5c\x9a\xce\x63\xab\x04\xa0\xdc\xd4\x2f\x73\xf9\x41\x69\x4b\x90\xa0\x7d\x7f\x58\xb0\x2c\x75\xdb\x0b\x27\x0c\x47\x7f\x78\x0b\x87\x36\xf9\xfc\x91\xea\xc8\x1d\x2d\x90\xaa\x44\x2c\x27\x3b\x55\xe6\xbe\x51\x11\x97\x73\xf9\x9f\xa6\x7b\x50\x9c\xdc\x29\xfb\xab\x15\x2e\x61\x18\x41\x08\x96\x7c\xc2\x42\xbf\xfb\xa7\x97\x9f\x5e\x62\x6a\x41\xa9\x41\x8b\x73\x52\x3d\x40\x1c\xb7\x7b\x99\xa6\x10\x89\xb6\x2d\x70\xfc\x22\xfe\x13\xbd\xb0\x1c\xba\xd4\x2d\x64\xd5\xc4\x18\xb2\xd0\xfb\x66\xb0\x77\x3e\xcf\x58\xc4\x8b\x68\x73\x62\x6d\x39\xda\xc6\xec\xe9\x47\xc3\x87\xa2\x7c\xc6\xd2\x6a\xa7\x37\x37\x17\xce\x7c\xeb\x08\x17\x2b\xf3\xc5\x34\x01\x80\x35\xb7\x75\xad\x1f\xc7\x07\x8b\x93\xd3\x6b\xeb\x7b\x3b\xcf\x3d\x6e\x95\xf6\xfc\x8d\x93\xbc\xe4\x92\x6f\x45\xcc\x5e\x40\x12\xdc\x0b\x3b\xf8\x73\x99\x2d\xa7\xe9\x6e\x55\x10\x6b\x97\xe9\x94\x29\x68\x52\xed\x39\xe5\x16\x71\xf3\x9a\xb4\xa7\xb3\x3b\x2f\x5a\xed\xb6\x8e\xeb\x1b\xf7\xa5\xe1\x06\x0b\xfa\xb8\x5c\xef\xdc\x54\x21\x42\x55\x72\x7c\xae\xef\x27\x6c\x99\x73\x09\x72\x22\x71\x68\x54\xf9\xd5\x09\x97\x67\xa4\xc4\xb2\x59\x31\x92\xa7\x3b\x48\x07\x98\xcc\x25\xf2\x87\x01\xd1\xf4\x2e\x4a\x93\x88\xad\x73\x9e\x6d\x6a\x76\x90\x78\x10\xb2\x00\x55\xda\x6b\xc1\xf5\x71\xd1\xfa\xbc\x5e\x02\x1b\x1c\x4f\x99\x49\xb8\x7d\x70\x59\x63\x7c\x85\xea\x75\x1c\x2d\x00\xd7\x12\xf1\x62\x1c\xdb\xcb\x5e\x4e\xd2\x0a\xd3\x1d\xd1\x2e\x41\x04\xd2\x34\x8e\xd9\xaf\xee\x0b\x7f\x63\xbf\x12\x11\x89\x05\xf8\x1d\x1b\xb2\x77\xc4\x26\x47\xd1\x53\x5e\x54\xad\x48\xee\x19\x5b\xbc\xe7\x1a\x73\xba\xc8\x53\x61\x51\xd1\x6e\xe3\x98\x90\x6a\x20\x50\xd7\xb1\x3f\x97\x4b\x95\x5a\xee\xbf\x8b\xb7\x4c\xe5\x20\xbb\x51\x28\xfa\x53\x12\x77\x59\x07\x89\x8c\xc5\x6f\x47\x11\x70\xf4\x1f\xf4\xd6\x6c\x36\x9f\x09\xd4\x1d\xea\x8d\x85\xdd\x29\x17\xe6\x10\x2e\xec\xcd\xb8\xf1\x94\xae\x23\x17\x67\x69\xb1\x01\x38\x21\x22\xf6\x7d\xa7\x6e\xf9\x8e\x45\x1b\x2e\xd7\x81\x6b\x02\xd0\x5d\x22\x53\x39\xca\x53\x3e\x00\xd3\x9d\xca\x6d\x82\x33\xa5\xed\x52\xda\x80\x0b\x24\x20\x5a\x57\xd9\xdc\x5c\xbe\x5e\xe7\x62\x0d\x9c\x13\x73\x59\x21\x1e\x00\x96\x3f\xab\x8c\x81\xdf\xe9\xcb\xdb\x7e\x1a\xf2\x93\xae\xdb\x60\x91\xef\x5c\xd6\x2b\x69\xbb\xfa\xf5\x5c\xef\xd6\x09\x4b\xc4\x74\xc2\x7e\xf0\x08\x65\x11\x29\xe9\xd2\x66\x3b\x72\x26\x6b\x2e\x7f\xb6\xe7\xea\xd0\x64\x49\x69\xaf\x3b\xfc\xd6\x50\x88\x6d\x9d\x34\xbd\x79\xc7\x05\x2f\xca\x11\x67\x10\xa9\x80\x9f\x99\x97\x6f\xf0\xdd\x5e\x10\x3f\xc2\x87\x2d\x43\x95\x79\xde\x9c\x9c\xe6\xdb\x9e\xc1\xba\xad\xaf\xf7\x3a\x90\x53\xd5\xed\x40\x7e\x0a\x53\xdd\xd2\x90\xec\xf7\x21\xa7\x1d\xd4\x1a\x3d\x6d\x1a\xeb\x22\xb6\x20\x5f\xca\x53\xd0\xf5\x6b\x6c\xcb\x0e\x90\xe5\x2a\x2e\x23\x11\x9b\x95\x0b\xf7\x21\x44\xc4\x38\x86\x8f\xca\x26\xd9\x76\xd0\x56\x68\x8a\xe0\xd4\xfd\x52\x3e\x87\x41\xcc\xd0\xae\xfb\xef\x3a\xfc\x0d\xd6\xe2\x6b\xeb\xf4\x70\x7d\x62\x3f\xe5\x23\xcf\x29\xf7\xf9\x2a\x9f\xb3\xca\x93\x75\x22\x79\xa1\x72\xf6\x9d\xcb\xe3\x7d\xe9\x44\xa0\xba\x2d\x84\x91\xdb\x44\xa5\x8b\x70\x9b\xf8\xa2\x86\x47\xdb\x24\x35\x4f\xe9\x82\x6f\xb3\x90\x21\xd5\x49\x6c\x53\xcf\xa4\xd8\x09\xce\x36\x01\xdf\x69\xa2\x7d\x12\xdf\x5c\x52\xc4\x01\xc7\x4d\xe5\x21\xc5\x77\xe7\xd9\x9c\x95\xc5\xe2\x40\xd6\x1f\x7c\x79\x9c\xe3\x89\x60\x08\x1f\x78\xd6\xcf\xa3\xc2\xc9\xe5\x80\x59\x4c\x4e\x77\xdc\x5a\x2a\xd5\xf9\xd9\x2f\xa2\x31\x92\xd7\xb5\x1e\x3a\xbf\x7e\x6f\x03\x45\xfe\x3e\x58\xb9\x60\xc1\x40\x20\xa1\x24\x66\x85\xe0\xd5\xde\x6d\x6b\xe6\x14\xb7\xe4\x2b\x67\xa9\x2a\x63\x46\x9b\x1a\x85\xe1\xf3\x29\x9e\x8e\xc0\xf0\x3a\x9d\x76\x65\xb9\x8c\x14\xf7\x75\xfb\x0f\xbc\xd7\xbe\x02\xe1\xb7\x8e\x1d\xb8\x77\xe9\x53\xcf\x3e\xdb\xd0\x53\x4f\xc3\xd8\xbb\xed\x78\xd4\xd8\x3b\x2f\x38\xd0\xcd\x8d\x73\x90\xc2\x7d\x34\x89\x53\x58\x6f\x61\x00\xa1\x85\x10\xb7\x12\x98\xd5\xf7\x47\x7f\xce\x26\xa5\xf7\x7f\x2a\xe3\xb9\x90\xc5\x02\xbe\x38\xee\x63\xf0\x91\x8f\xf0\x7a\xc5\x60\x1a\xe4\x08\xfe\xf7\x5b\x85\xfe\x7d\xcb\x2d\xf3\x1f\xec\x86\x7c\x5a\x66\xbf\x4a\x00\x44\xaa\xef\xd9\x77\x09\x60\x8e\x82\x58\xa8\x1b\xb8\x8e\xe1\xa2\x06\x1d\xd0\x7b\x41\x83\x2a\x5b\xfb\xa0\x06\xf9\xda\x43\xa8\x1a\x4a\x21\xf7\x1e\xa5\x08\x9b\xad\xd6\xfe\x2d\xe0\x9b\xbf\xac\xfc\x1b\xb8\x41\xcd\xf8\xa5\xec\xbf\x44\xae\x7c\x3a\x08\x3a\xab\xc2\x82\x7b\xed\xf5\xc3\xa5\x72\xd1\x1e\x47\x91\xd6\x50\xa5\x10\xfe\x42\xf4\x3d\xe8\x51\x58\xee\xec\x75\xa4\x23\x84\x94\x89\x68\xd1\x21\x49\x31\xa8\x2a\xc1\xc5\x33\x94\x98\x48\x6a\x87\x99\x5d\xa0\xa7\xe0\xaf\x20\x82\xcc\x2d\xcf\x08\xdf\x47\x50\xe2\x7a\xf0\x66\x0a\x8d\xf8\xf7\xbf\xfc\xc7\xb4\x4b\x04\x1d\xaa\x3e\x16\x2e\xe5\x2a\xff\x2e\x4f\x84\x8c\x21\x18\xcb\xe3\xa6\x5a\x92\xac\x78\xe7\x2b\xdb\xb3\x99\x86\x4f\x92\x1e\xda\x7e\xd4\xea\x05\x4e\xa2\x2f\x10\xd1\xf7\x9b\xac\x5b\xbe\x95\x78\x5f\x97\x29\xa1\x17\xf1\x4e\xf2\x6d\x53\x36\xfe\x59\xeb\xb8\x4b\x44\x1a\x43\x15\xe9\xeb\xfb\xa2\x52\xb1\x88\xee\xc7\xda\x04\x07\x73\xbd\x8b\xe8\x9e\xfd\x74\xfb\xe1\x3d\x4a\x7b\x26\x7a\x2e\x2f\x79\x91\x3c\x88\xbb\x3c\x75\xe1\x00\x22\xef\xc9\x53\xbb\x46\xaa\xdc\xc3\x01\xcf\x8d\x25\x2a\xb6\x86\x43\x48\x0d\xbf\xdd\x9d\x2c\xcb\xe8\x5e\x14\xa7\x39\x97\xb1\xda\x62\x33\x4e\x75\xb9\x5a\x25\xbf\x4d\x0b\x9e\x77\xf0\xc4\xa3\x1f\xe1\x2b\xda\xb9\x5e\xfd\xa7\xf0\x36\x2f\x9a\xba\x8f\x90\xf5\x49\x9a\xd2\x15\xe3\x16\xae\xc0\x39\xdf\x0a\x20\xfa\x63\x55\x8d\x05\x28\x05\x13\x29\x41\x8a\x50\x6b\x42\xd0\x2b\x12\x3a\xfe\x14\x18\xf7\x9f\x82\x5a\x55\xc5\xb6\x6d\xa5\xbc\xbc\xdf\x96\xdf\xe3\xfd\x70\x9d\x0b\xad\x27\x4c\x2b\xa8\xf1\x5c\x5a\x2c\xba\xcd\x97\x02\xdc\x0b\x50\x85\xa6\x3b\x16\xa9\x2c\x01\x35\x44\xd7\xae\x8d\x7a\x04\x3f\x7d\x98\x36\x08\x02\xb6\xa5\x2c\x92\x94\xf1\x55\x41\x4e\x7c\xe0\x45\xb7\x3a\x48\x7a\x3a\x97\x10\x8a\x8d\xa0\xf9\x00\x91\x70\xe1\x17\xd7\x08\xcd\x56\x3c\x4a\xd2\xa4\x20\xb6\x26\x48\x32\xe2\xa6\xbd\xe6\x3c\x30\x7d\x99\xf3\x1d\x4f\xfd\xc5\x8a\xa7\xa5\xcf\x94\x3c\xd1\xa2\xce\x06\xd8\xed\xf8\xec\x3b\x75\x8f\xb8\xf0\x1e\x73\xf8\x34\xaf\xb4\x4e\x9c\xd7\x9f\xe3\x49\x6c\xf1\xb7\x15\x53\xd7\x93\x34\xbb\xe3\x07\x62\x12\x1d\x97\xea\xa9\x95\x54\x6a\x7e\x61\x44\xef\xb5\x1b\x61\x5f\xc8\x5d\xd0\x45\x17\x3d\xa4\xfa\xd6\xdb\xfd\x51\xa9\xf4\x58\x8f\x37\x65\xc0\x27\x4a\x2e\x40\x65\xf4\x98\xeb\x1a\x4e\x00\xe7\x38\xba\x78\xeb\x62\xda\x8e\x7f\xb9\xaa\x4d\x44\x70\x2b\xaa\x02\x6c\x14\x50\x89\x1e\x24\xb6\xce\x5a\x40\x0d\x23\x11\xe5\x50\x06\xa2\xa1\xac\xe9\xdc\x74\xc1\x07\x64\x08\xdc\xd7\x11\x38\x2a\x6b\x35\x1c\xe5\x0c\x43\x4d\xd0\xda\xa7\x9c\x63\x2c\xe4\xb2\x75\xfd\x18\x7c\xdb\xf6\x27\x2a\x91\x9b\xf3\x89\xac\xe4\xb9\x0c\x2c\x62\x24\xa0\xb2\x90\x7d\xd7\x6b\x6d\xfe\xb2\xca\x34\x3c\xda\x5f\x76\x0c\x61\x79\x6f\x40\xe5\x6d\x28\x3d\x06\x58\x8b\x48\x6d\x97\x89\xb4\x29\xe0\xe4\x44\x06\x53\x7e\x66\xf9\x20\x9d\xc3\xdf\x9a\xe4\x28\x48\x51\xeb\x7b\x67\x46\x84\xd4\x9a\xe1\x96\xb5\xef\xba\x1b\xde\x9f\x9e\x96\x5b\xbd\x23\x92\x57\x6f\x41\xa2\x19\x4f\x1f\xf9\x4e\x83\x3c\xaf\x30\xbb\xe2\x0a\x1d\xa7\xd5\xfa\x4f\x82\xe3\xdd\x72\x8d\x92\xd6\x7d\x49\xaa\xdd\xd4\x96\x04\x09\x40\x44\x6a\x85\x88\x3d\xb1\xd2\x0b\xdd\xde\x39\x5f\x27\x16\x92\xf7\xc6\x42\x30\xc8\xfb\xb7\x11\xfe\xe8\x71\xb2\x1e\xe9\xeb\x0d\x8e\x49\xb4\xc8\x08\x86\x03\x89\x51\x2e\x04\x3c\x61\x5b\x9e\x48\x5a\x06\x28\xf6\x16\x8b\x65\xb9\x5e\x77\xba\x20\xbf\xfd\x58\x46\x75\x9d\xfc\xdd\xfb\x9a\x7b\xa9\xc1\x9e\xc2\x1b\x7b\x61\xbf\x84\xee\x61\x73\xaf\xfa\x32\x0e\xd8\xaf\xe8\xed\x6e\x0d\x39\x35\x26\xd1\xd3\x78\xbb\x2f\x86\x78\xbb\x2d\x76\x0a\x52\xd8\xe8\xba\x6a\xf1\x2d\xbf\xbb\xc1\xbf\x8c\x1b\x7c\xd0\xa4\x40\xda\x94\x45\x52\x35\xd0\x7b\x6a\x78\x20\xcd\x9c\x63\x5e\x85\x5a\x91\x70\xbe\x16\x32\xd6\x6c\xc9\xa3\x67\xe0\x9d\x83\xd3\xf1\x78\x7f\xdb\x1e\x70\xc9\x8d\xda\x0a\x06\x9f\xd2\x28\x13\xc2\x28\x4b\x70\x02\x68\x50\xd3\x40\x8f\xc8\x20\xbc\x07\x1c\xa7\x88\x0c\x89\xbd\x51\xfd\x9d\x14\x8f\xcc\x9c\x56\x93\x10\x1e\x17\x0c\x0f\xe8\x47\xbd\x34\xd6\x61\x05\x4b\xef\x28\x11\x72\xb1\xe6\x79\x0c\x19\x1c\xb4\x24\x53\x1e\xdd\x9b\xff\x86\xfa\xd1\x17\x09\xc2\x67\xa9\xec\x11\x56\xea\x4b\x4b\x64\x84\xcc\x63\x84\x16\xf4\xf5\xc3\xd7\x35\xe3\x51\xae\x34\x3a\x65\x9c\xec\x2a\x64\x10\x83\x01\xfb\x90\xc4\x25\x4f\xf1\x8b\x9d\x9e\xec\xb1\xf0\xb0\x3a\xa0\x27\x50\x48\x6a\xa2\xc5\x68\x38\x90\x03\x08\xba\x71\x3a\x97\x6f\x5d\x40\xe2\x35\xbb\xd3\x82\x50\x5c\xda\x72\x4c\xf7\xd6\xf4\xd9\xcc\x87\x06\xe6\xae\xd3\x86\xe8\xe9\x00\x0b\x62\x0e\x3a\x42\x77\xf7\xc4\x1e\xf6\xc2\x63\x06\x65\x34\x0b\xeb\x45\x20\xd3\xec\xbb\x05\xef\x09\xb9\xe0\xf1\x2e\xa4\x3e\x4b\x24\x83\x28\x18\xe3\xf1\x36\x91\x66\x11\x58\x29\x40\x77\xd2\x58\x56\x70\x84\xf4\x82\x62\x4e\x9a\xd6\x36\x41\xcd\xa4\x30\xc6\x25\xcf\x93\x74\x07\xf7\x89\x2c\x17\x27\xc1\x77\x82\xf1\xa1\x8c\x22\xe0\x37\x27\x9a\x8e\x52\x8b\x55\x99\xe2\xad\x03\xee\xe5\xae\x01\xb4\x23\xdd\x5d\x4c\x8c\xc1\x51\x90\x4e\x45\xf0\x61\x54\x7f\x7b\x8a\xec\x8c\x46\x34\x70\x5c\x44\xcb\x53\xf3\xe5\x00\x22\xdf\xa8\x47\x9b\x4a\xf6\xc8\x3d\x56\xb8\xeb\x74\x7d\xb2\x28\x46\xbf\x1d\x6a\x6f\x80\x76\x9f\xc2\xce\x8f\x2b\xa1\x2b\xfa\x4d\xc4\x6e\x6f\x4a\x24\x34\x87\x04\x54\xbd\x67\xb8\xd4\x98\x91\x66\xc6\x12\xce\x2f\xeb\xe8\xa8\x3a\x86\x99\x6b\x5d\xa2\x95\x64\xf3\xf2\xfb\xef\xff\x20\xd8\xf7\x90\xa2\x47\xf7\x11\x8c\x3f\x01\x39\x1f\x96\x0e\x5b\xb6\xfb\x80\x40\xe6\xbe\xc6\x88\xb0\x36\x08\xa8\xcd\x87\x07\x10\x25\x8f\x36\x4c\x97\x4b\x44\x08\x72\x0a\x61\x70\xe9\x48\x7e\xdf\x2b\x00\xfb\xe1\xc9\x6e\x6b\xff\xbf\xc4\x61\x8f\x92\x02\x73\x99\x29\xe4\xa1\x06\x68\xe5\x52\xb0\x2d\xcf\xef\x41\x21\x12\xdd\xdf\xc0\xbb\xfd\x5d\x22\xa6\x55\xf7\xfd\xcb\x4a\x7d\x28\x60\x82\xfc\xb2\x2c\x2f\xa5\xb4\x92\x37\xcc\x18\xa6\xde\x97\x3e\x99\xcb\x65\x19\xde\x3d\x2b\xce\x78\x3f\xb5\xc0\x21\x0f\x9b\xad\x02\x2e\x0e\xaa\x14\xd7\xbe\x5e\x53\x36\xc0\x2b\x3f\x97\xcf\xe4\x96\xef\x72\xf8\x7d\x24\x1b\xcc\x3a\xf3\x82\x7c\x00\x68\x6e\xa8\xca\x0a\xc3\x81\xd3\x1e\x8c\x9c\x8f\x20\xcd\x3a\x61\x3f\x25\x0f\x62\xc2\x6e\x32\x9e\xdf\x4f\xd8\x5b\x0c\xaf\xfd\x49\x2d\xdb\x7c\x78\x0d\xc2\x86\xa3\xfd\x78\x87\xb9\xb1\xfa\x88\x4c\xda\xad\xff\x5f\x1b\x89\xf7\xac\x2b\xb6\xfc\xb7\x89\x78\xeb\xe0\xd2\xf8\x7b\xf7\x44\xec\x09\x03\xff\x0e\x0e\xfb\xbb\xbc\x15\xf7\xd3\x68\xfc\x43\xf8\xbf\x76\xff\xb2\x16\x17\xd8\x9e\xb4\xcb\xb5\xa2\xbe\xbe\xad\xc4\xe1\x24\xae\x1f\xca\xcd\xfc\xe1\x61\x4b\x81\xd2\xb3\x63\x97\x3a\x3e\x02\xd4\x4e\xaf\xda\xfe\x3a\x4b\x95\x2e\xf3\xfe\xc5\x7f\x5d\xad\xb5\xfd\x7a\x0b\x95\x26\x4c\xb6\xed\x52\x00\x2b\xc0\x50\x78\x07\x3e\xb6\xf8\x4f\xb5\x5c\x00\x96\xe9\xb8\x15\xde\x56\x9c\xd5\x5b\x72\x11\x31\xaa\xaa\x3f\x21\x6f\x32\x01\x8c\x4e\xde\x14\xf5\x01\x81\xda\x0c\x73\xae\x91\xb9\xb4\x04\xd7\x98\x91\x9a\xe7\x02\x98\x78\x73\x01\x32\x62\x2c\xe3\xb9\x03\x14\x58\x8b\x28\xb8\xf9\x78\xd0\x49\x98\x45\x06\xc9\xa0\x74\xdf\x5a\x0a\x21\x5d\x6f\x8f\x31\x25\x8c\x75\x50\xef\x7d\x42\x93\x3d\x0a\xcb\x73\xde\x21\x79\xd8\x78\x2f\xb8\x0b\x82\xc9\xbd\x16\x45\xb0\x9b\xd7\x4c\x8b\xca\xd2\xac\x44\xa8\xbe\x29\x44\x7d\x6b\x0c\xba\x46\x7e\x55\x71\xa0\x0c\x8a\xe9\x3d\x85\xbf\xfc\x23\x2f\x36\x78\xa1\xdd\xaa\x42\xe0\x9e\x89\x2c\x3c\x38\x5f\xd0\xeb\xbc\x4c\xd5\x12\xf4\xbb\xcc\x2f\x5d\x77\xc3\x88\x96\xf6\xa0\xae\x6b\x0e\xd8\x90\x9d\xc1\xec\x26\x90\xc9\x9a\x0b\x0d\x84\x26\xcd\x28\xd5\x50\xfc\xef\xb8\x4b\x77\xb3\xba\x66\xd3\x7f\xdb\xb8\x6c\x37\x19\xf0\xcd\xb2\x06\x30\xe8\xf9\x01\x19\x2a\x0d\x3d\x01\x22\x03\xa6\x30\x30\xf2\x81\xd6\xda\x6b\x65\xa2\xe7\x72\x86\xbf\x04\x87\x00\xf7\x92\x36\x0e\x6f\x49\x8a\xa0\x6e\xfd\x61\x7a\x28\x9b\x85\x08\x3f\xf2\x10\x4c\xbc\x2f\x13\x2e\x03\x13\xc8\x1a\x94\x45\x92\x0b\x26\x01\x85\x30\x97\xba\x5c\x9e\x78\xe2\x0f\x73\x8b\x7b\x00\xb2\x1a\x2d\x32\x0e\x57\x19\xe0\x03\x3a\x69\x39\x86\xd1\x33\xe9\xa5\x29\x2c\x41\x1e\x4f\x69\xf3\x87\x5c\x44\xcc\x3c\x77\x6d\x77\xe5\x98\xcb\x1a\xdc\xa2\x6d\xd6\x33\x1e\x76\x7d\xfb\x05\x88\xe7\x40\x86\xe3\x35\xa2\x28\xbe\xf6\x01\x1e\x46\x43\x87\x1e\xdd\x10\x4f\x9b\xcb\xff\xdf\x9e\x0d\xdd\xa0\xdd\x11\x33\xdd\xf4\x8c\x39\xa2\x3a\xc1\xc4\x95\xba\xd9\x2b\x64\x60\x04\x76\x57\xaa\x31\xe5\xdb\x4a\xe5\x16\xd7\x12\x2a\x28\x28\x4a\x47\x85\x5f\x1f\x12\x1d\xd0\x69\xc3\xd7\x6e\x84\x60\xaf\x73\xb1\x7a\xfd\x29\x17\xab\x85\x1d\xe9\x29\x34\x68\x6a\x5a\xd4\x24\xd5\x1e\x38\x39\x74\xa6\x64\x3b\xb9\xe0\x1e\xf2\xcf\x5a\x93\xb0\x9c\xa0\x4d\xc9\x8a\x79\xed\x44\xd3\x1e\x60\x58\x10\x71\x9d\xed\xbb\x51\xb3\x2f\x7e\xcc\x75\x21\xc1\x06\x40\xad\x3a\x34\x07\xff\xfe\x8f\xb7\x4a\x9f\x0d\x39\xde\x6e\xab\x90\x19\xbb\xd9\x73\xe9\x0e\xbc\x6e\x68\xf5\x97\x45\x7f\xc3\x00\xea\x8c\x3f\x4a\xe2\x89\x19\xe5\x7a\x1a\x76\xac\xd5\x00\x44\xc1\xb1\xd6\xc0\xc0\xf9\x55\x26\xad\xa7\x2f\x71\xb2\x75\x93\x40\xdb\x9a\xa7\x69\xa8\x59\xe0\x23\x6d\x73\xe9\xf3\x3e\x8d\xd5\x9a\xa6\xd6\x85\x57\xb1\x37\x88\x15\x28\x86\x84\x5b\x31\xb1\xa4\x26\x44\x07\x48\xf1\xb0\x93\x25\x07\xe1\x54\x27\x59\xb4\x6f\x35\x3f\xd5\x25\xf2\x1b\xcb\x3b\xde\x13\x79\xc6\xcf\x2e\xee\xc5\x6e\x74\x5d\xdb\x23\x1d\x01\x65\x03\x2c\x66\xbb\xcb\x46\x3c\xcf\x2d\x8a\x9e\xbe\xca\xcc\x5d\x69\xc5\xa3\x8a\x9b\xb3\xa3\x9e\x1b\x11\xdd\x67\x2a\x91\xa3\xf7\xa2\x0a\x85\x04\x4c\xf6\x82\xf9\xd2\xdc\xed\x70\xd0\xe1\x58\xb1\x27\xb1\x21\x1a\xe0\x15\x16\x1a\xea\xc9\xce\x38\x73\xc2\xb4\xdd\xd3\xee\xa9\xfd\x17\xc2\x9f\x0d\xcf\xe0\x8b\x6d\x89\x0f\xd5\x4e\x15\xde\xe2\xd8\xa9\x30\x6d\xf2\x46\x76\xd5\xc0\xce\xe6\xac\x42\x11\xd8\xda\xa5\xe0\x82\xfc\xdd\x33\xf4\xbb\x67\xe8\x6f\xdc\x33\xf4\x25\xdd\x42\x80\x8d\x79\x4e\x9f\x50\x4f\x80\xfc\x88\xe5\xe8\xbe\x7a\xac\x4a\x3b\x5a\xc7\x93\x40\x63\x37\xc8\x24\x6c\x02\xfd\x2d\xd1\x44\x01\x5a\xec\xd1\xbd\x90\x9d\x31\x7a\x4b\x0f\xd4\x29\x77\xf8\xb4\x08\x96\x36\x76\xa3\xe0\xed\x7e\x28\x8b\x87\x3a\x11\x29\x6f\x1b\xe1\x86\x59\x27\x60\x7b\x9a\x86\x9f\x00\x68\x4c\xe5\x8e\x38\x5a\x53\x96\x1b\x06\x23\x91\x86\x08\xc1\x52\x35\xaa\xe5\xa1\x98\x38\xfb\xe1\x45\xa6\x54\xda\x0a\x8d\x7b\xd2\x0e\x6c\x24\xca\x0c\xed\xbc\x0b\x34\x46\x75\x08\x18\xb3\xbd\xe8\x93\x2e\x7c\x8a\x06\xe6\x63\x80\xd6\x04\xcc\xa6\xb8\x84\x5c\x45\xdf\x1d\x53\x9f\xe1\xc4\x9d\xc3\x85\x30\x62\x4b\x11\x71\xd0\x59\xb4\xe0\xbd\x88\xbb\xec\x93\x90\x74\xa8\x91\x0e\xa2\x9b\xdf\xe9\x88\x5a\x42\xb9\x8b\xa4\x4d\x58\x62\xec\xe2\xaa\x59\x08\x16\x5a\x8e\x35\xb7\x48\x12\x4b\x6b\xb8\x4f\x3f\xd4\x72\x38\x2f\xa2\x94\xeb\x81\x86\x75\xeb\xbe\x73\x41\x05\x9d\x41\x39\xc3\x37\xd2\x9f\x20\x1d\x67\x3b\x10\xb9\x33\x97\x33\x27\x2b\xe9\xb1\x5f\x0e\xb9\x87\xe1\x52\xc4\x2c\x36\x86\x06\xb9\x12\xfd\xcd\x65\xc2\x74\x19\x6d\x80\x0d\xb2\xba\x4f\x85\xfb\x56\x73\xc5\x4e\xe6\xd2\x5c\x88\xc0\xd5\xb2\xe5\x90\x77\xfe\x68\x8c\x55\x9d\xfc\x97\x70\xf0\x2c\x22\xc7\x0a\x11\x59\x78\x71\x52\xb2\x15\xbd\x66\x89\x39\x11\x60\xe1\x31\x25\x65\x16\xf3\x42\x4c\xe7\x1e\x6d\x93\xa0\xa7\xd3\xa2\x3c\xc8\x64\xd6\x61\xc3\x42\x1c\x63\x6d\xa7\x4d\x93\x95\x88\x76\x51\x43\x67\xa7\x9f\x86\xe1\xf7\x6b\xdb\xb7\x75\x6d\x43\x16\x5b\xcc\x19\x1c\xd3\xb5\x54\xd5\x6b\xff\xfa\x71\x9d\x2b\x58\x50\x13\x3d\xa2\x9f\xbf\xe0\xb5\xb3\xc5\x06\x1e\x67\xcf\x0f\xbe\x07\xf5\x1f\x67\xfe\x62\xeb\x0f\xeb\x80\x62\xa0\x61\x16\x86\xc1\xc5\x22\x9c\x3a\xc6\xa0\x1d\x1c\xd6\xef\x66\x71\xf9\xa6\xc0\x49\x43\x2e\xae\xc6\xe2\x76\x70\xa5\x4b\x6b\x69\x4b\x81\xe7\x5d\x8f\xc5\x1d\xb0\xa6\xf3\xe2\x85\x76\xbd\x5e\xdd\x01\x2d\xf6\xff\x7d\xa2\x8b\x5f\x6a\x9a\x9c\x87\x89\x7a\x3e\x9b\x69\x6a\xab\x8a\xd5\x1c\x6a\x51\x5d\x57\x6d\x1e\xb5\xb2\x73\x0e\x2e\x4f\x56\x85\xcd\xd4\x7b\xcc\x3d\xe8\x93\xeb\xaf\x4f\x78\x34\x3d\xe6\x3c\xcb\x44\x6e\x0f\xf2\x86\xad\x05\x92\x66\xf0\x15\xd0\x24\xdc\x08\x14\x46\xae\xdd\x72\xcd\x56\x52\x2b\x1a\x1e\x83\xae\x9b\xb6\x8f\xdc\x65\x99\xa6\x9d\x23\xb7\x5f\x29\xe9\xf2\xee\xfd\xfb\xc5\x2f\xb3\xf7\x77\xe7\xb6\xf9\xad\xca\x43\xc1\x63\x9d\x7d\xe2\x6a\x42\x7d\xe2\xb5\x0d\xcd\x67\x85\x15\x67\x56\xbe\xd5\xe8\xe4\x2a\xd3\xb4\xaa\x4a\x35\x97\x9f\xa8\x1c\x80\x69\xa3\xe2\xa6\xe9\x37\xd6\xdb\x71\xd5\xef\xc3\x63\x9f\x4c\xe1\x9f\xf0\xdd\x13\xe6\x1b\xf1\x1a\xb4\x13\x49\x93\xad\xbd\x5f\x29\x1b\xe6\x88\xe5\x80\x60\xe0\xae\xe5\xf0\xd4\xba\x7b\x87\x2d\x8f\x3b\x09\x8c\xdf\x22\xb6\x72\x79\x4f\xb2\x3a\xb0\xef\x3e\x55\xe3\xd4\x6e\x2f\x8f\xf1\x4a\x03\xe5\x4e\x50\x2d\x0d\x34\xa0\xbd\xa0\xd8\x5c\xa2\x0f\xd4\xd4\xa9\x50\xdd\x75\x62\x17\x64\xde\xa6\x5c\xae\x4b\xbe\x36\xd6\xad\xfd\xf8\x5c\x6e\x93\xf5\x06\x79\x36\xca\xcc\xe3\x93\x39\x93\x40\xc7\x52\x9b\x42\x35\x7c\x72\x22\xe7\x92\xda\x24\xd7\xbe\x78\xc4\xca\xfe\xe9\xc6\x35\x87\x40\xe9\x58\x10\x09\xbe\xc9\xb9\xc4\xc1\x45\xfe\x0f\x1b\x09\x81\x1b\x0b\x2f\xea\x53\x97\x43\xec\x12\x45\xd1\xcd\x9e\xbe\x86\x98\xcc\x5c\xba\x14\x5d\xf4\x1c\x51\x1b\x02\x61\x10\xac\xd2\xfe\xfd\xc4\x0e\x86\x5d\x13\x54\xb7\xf6\x59\x7f\xf4\x19\x60\x16\xdc\x62\x84\xba\x73\x73\x1b\x1b\xe8\x2d\xe4\xc1\xc6\xd1\xc5\xdb\x00\x79\xd9\xed\xb5\xb1\xed\xc2\x67\x3a\xa1\xad\xaa\x5c\xa6\x23\xaa\x84\xcf\xf7\x56\x0a\xb7\xe4\xfe\x4a\x0d\xb8\x0e\x5f\xd7\x96\x96\x99\xa6\x7d\x9f\x5d\x2a\xd5\x31\x2e\x4f\x18\x50\xac\x54\x8a\x5e\xd8\xd7\x19\x65\x54\x1c\x32\x5f\x06\x24\x2b\xd6\xbb\xc8\xee\x3e\x7d\x15\x4a\x13\x7d\x50\x75\xbc\xfd\x34\xb8\x46\xce\x42\xa0\xc3\x6e\xd4\x0e\x4b\xe7\x5c\x65\x83\xed\xd8\x26\x29\x9e\x64\x65\x92\x13\xdc\x5e\xcc\xe2\x41\x0d\x63\x33\xff\x27\x6e\x12\x4d\xfc\xc8\x4d\xa0\x92\x51\x99\x6b\xb3\x5d\xd2\x7e\x47\xbb\xb6\xca\x19\x9f\x4b\x9b\xaa\x66\xb7\xe3\x99\x05\xe7\xe6\xee\xaf\x98\x00\x9a\x21\x5f\x3d\x58\xac\x05\x53\x52\xd8\xdd\x70\x2e\xad\xb6\xf6\x84\xf1\xa5\xb6\x92\xd5\x5c\xee\x9c\x8e\x74\xe2\x44\x02\xb9\x64\x80\x7a\xde\xbf\xe7\xd5\xcc\x80\xca\x39\xff\x0f\xe6\xff\xfe\xe7\x1f\xfe\x5f\x00\x00\x00\xff\xff\x46\x0f\x9a\x15\xd1\xb3\x04\x00") +var _adminSwaggerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7b\x73\xeb\xb8\x95\x2f\x0c\xff\x3f\x9f\x02\x67\xcf\xa9\xea\xee\x44\xb6\x3b\xc9\x4c\xde\x94\xa7\x4e\xbd\x8f\xda\xd6\xde\xad\xd3\xbe\xc5\x97\xee\xe9\x67\x94\x52\x43\x24\x24\x21\x26\x01\x06\x00\xed\xad\x4e\xe5\xbb\x3f\x85\x85\x0b\x41\x8a\x94\xa8\x8b\x6d\x79\x37\x67\xaa\xd2\xde\x22\x89\xeb\xc2\xc2\xba\xfe\xd6\x3f\xff\x0d\xa1\x0f\xf2\x19\xcf\x66\x44\x7c\x38\x45\x1f\xfe\x78\xfc\xed\x87\x9e\xfe\x8d\xb2\x29\xff\x70\x8a\xf4\x73\x84\x3e\x28\xaa\x12\xa2\x9f\x4f\x93\x85\x22\x34\x4e\x4e\x24\x11\x4f\x34\x22\x27\x38\x4e\x29\x3b\xce\x04\x57\x1c\x3e\x44\xe8\xc3\x13\x11\x92\x72\xa6\x5f\xb7\x7f\x22\xc6\x15\x92\x44\x7d\xf8\x37\x84\xfe\x05\xcd\xcb\x68\x4e\x52\x22\x3f\x9c\xa2\xff\x31\x1f\xcd\x95\xca\x5c\x03\xfa\x6f\xa9\xdf\xfd\x1b\xbc\x1b\x71\x26\xf3\xd2\xcb\x38\xcb\x12\x1a\x61\x45\x39\x3b\xf9\xbb\xe4\xac\x78\x37\x13\x3c\xce\xa3\x96\xef\x62\x35\x97\xc5\x1c\x4f\x70\x46\x4f\x9e\xfe\x70\x82\x23\x45\x9f\xc8\x38\xc1\x39\x8b\xe6\xe3\x2c\xc1\x4c\x9e\xfc\x93\xc6\x7a\x8e\x7f\x27\x91\xfa\x17\xfc\x23\xe6\x29\xa6\xcc\xfc\xcd\x70\x4a\xfe\xe5\xdb\x41\xe8\xc3\x8c\xa8\xe0\x9f\x7a\xb6\x79\x9a\x62\xb1\xd0\x2b\xf2\x91\xa8\x68\x8e\xd4\x9c\x20\xd3\x0f\x72\x4b\xc4\xa7\x08\xa3\x53\x41\xa6\xa7\xbf\x08\x32\x1d\xbb\x85\x3e\x36\x0b\x7c\x01\xa3\xb9\x49\x30\xfb\xe5\xd8\x2e\x13\xb4\xcc\x33\x22\x60\x6e\xc3\x58\xb7\xfe\x89\xa8\x3e\x34\x5b\xbc\x1f\xbe\x2d\x88\xcc\x38\x93\x44\x96\x86\x87\xd0\x87\x3f\x7e\xfb\x6d\xe5\x27\x84\x3e\xc4\x44\x46\x82\x66\xca\xee\x65\x1f\xc9\x3c\x8a\x88\x94\xd3\x3c\x41\xae\xa5\x70\x30\x66\xaa\x7a\x63\xf1\x52\x63\x08\x7d\xf8\xdf\x82\x4c\x75\x3b\xff\x7e\x12\x93\x29\x65\x54\xb7\x2b\x0d\xfd\x04\xa3\x2d\x7d\xf5\xaf\x7f\xab\xfb\xfb\x5f\xc1\x8c\x32\x2c\x70\x4a\x14\x11\xc5\x8e\x9b\xff\xab\xcc\x45\xef\x91\xee\xbc\xd8\xc7\xea\xc0\x2b\xb3\xbd\xc2\x29\xd1\x7b\xa2\x77\xca\x7e\x01\x7f\x0b\x22\x79\x2e\x22\x82\x26\x24\xe1\x6c\x26\x91\xe2\x4b\x6b\x40\xa1\x05\x4d\x5e\xd5\x27\x82\xfc\x23\xa7\x82\xe8\xbd\x52\x22\x27\x95\xa7\x6a\x91\xc1\x20\xa5\x12\x94\xcd\xc2\xa5\xf8\x57\xaf\xd5\xd4\x0c\x55\x6e\x30\x33\xf3\x41\xe3\xc4\x46\xac\xef\x5e\x89\x30\x43\x13\x82\xf4\x59\xa4\x31\x11\x24\x46\x58\x22\x8c\x64\x3e\x91\x44\xa1\x67\xaa\xe6\x94\xe9\x7f\x67\x24\xa2\x53\x1a\xb9\x35\x3b\x9c\xb5\x81\x3f\x57\xaf\xcc\x83\x24\x42\x0f\xfc\x89\xc6\x24\x46\x4f\x38\xc9\x09\x9a\x72\x51\x5a\x9e\xe3\x11\xbb\x9f\xeb\x75\x48\x27\x94\xc1\xc9\xd3\x6b\xe9\x28\xe4\xf7\x6e\xb9\x7e\x8f\x74\x7f\x28\x67\xf4\x1f\x39\x49\x16\x88\xc6\x84\x29\x3a\xa5\x44\x56\x5b\xfb\x3d\x87\xfe\x71\x82\x8e\x90\x5e\x67\x22\x14\xac\x37\x67\x8a\x7c\x56\x12\x1d\xa1\x84\x3e\x12\xf4\xd5\x05\x95\x0a\xf5\x6f\x86\x5f\xf5\xd0\x57\xe6\xbc\x20\xe0\x4d\x5f\xbd\xc2\x0a\xfb\xbf\xff\x16\x1c\x3d\x85\x67\xd5\x43\xf7\xa1\xaf\x4f\xf3\x9d\xb9\x1a\x8a\x16\xfe\xf6\x6f\x61\x3b\x76\xbf\x56\xf3\xdb\x82\xd9\x5a\x4e\xdb\x96\xbf\xc2\x32\x95\x59\xab\xd4\x3b\xb4\x2b\x67\xd5\xed\x56\x59\xab\x7c\x5f\xbc\x55\x4f\xe1\xa5\xf9\xeb\x2e\xcc\x15\x2b\xa0\x7a\x4c\x99\x39\x24\xfe\xcc\x08\xa9\xcf\x89\xa3\xde\x03\x61\x29\xbb\xf0\xda\x60\x66\x01\xbb\x75\x5c\x34\x58\x95\x03\x9c\x77\x42\x53\xba\x6e\x7f\x87\x2c\xd6\x22\x97\x65\x76\x2c\x4f\x27\x44\xe8\x65\x70\x6c\x0f\x66\x3b\xd1\x6c\x50\xe5\x82\x91\xb8\xc5\x34\xff\x91\x13\xb1\x58\x31\xcf\x29\x4e\x64\xd3\x44\x29\x53\x44\xcb\xb7\x95\xc7\x53\x2e\x52\xac\xec\x0b\x7f\xfe\x8f\x4d\x17\x42\xf1\x47\xb2\x6e\xff\x87\x66\x37\x23\x2c\x81\x0c\xd2\x3c\x51\x34\x4b\x08\xca\xf0\x8c\x48\xbb\x22\x79\xa2\x64\x0f\x5e\xd3\x32\x35\x11\x47\xfe\x06\x82\x1e\xdc\xcd\x9b\x4b\xf8\x05\x4d\xbd\x00\xc9\xc8\x67\x05\x2d\x8d\x18\xdc\xbd\xb0\x44\xe1\x8d\xf2\x02\x4b\xb9\x1d\xcd\x48\x2e\xd4\x78\xb2\x38\x7e\x24\x4b\xfd\x36\x52\x0e\x66\x08\x2b\x25\xe8\x24\x57\x44\xcf\x5b\xb7\xe1\xee\x4e\x60\x8f\xe6\x82\x6e\xc3\x1a\xde\x6e\xc2\x31\x15\x24\x82\xb9\x6d\x72\x60\xfc\x57\x7a\xde\x5a\x7f\x59\x98\xd9\x3f\x92\x05\xc8\x23\x35\x2b\xe0\xb7\x7c\xc4\x46\x0c\x1d\xa1\xf3\xc1\xdd\xd9\xe0\xea\x7c\x78\xf5\xe9\x14\x7d\xb7\x40\x31\x99\xe2\x3c\x51\x3d\x34\xa5\x24\x89\x25\xc2\x82\x40\x93\x24\xd6\x32\x87\x1e\x0c\x61\x31\x65\x33\xc4\x45\x4c\xc4\xcb\x2d\x63\xe5\x29\x61\x79\x5a\xb9\x57\xe0\xf7\x62\xf4\x95\x2f\xb4\x88\xe1\x1f\x95\x9e\xfc\x6d\x69\x81\x61\xc6\xba\xef\xa0\xb5\x57\x13\x6a\xa2\x39\x4d\x62\x41\xd8\x89\xc2\xf2\x71\x4c\x3e\x93\x28\x37\x77\xf2\x3f\xcb\x3f\x8c\xb5\x64\xca\x63\x52\xfe\xa5\xf4\x8f\x42\x14\xda\xf8\x53\xaf\xa5\x6e\xfc\x25\xe8\xb4\xed\xbe\x83\x5f\x68\x5c\xfb\x36\xfc\xb2\x66\x0e\xee\x9d\x15\x83\x75\xaf\x34\x8e\xca\xbd\x60\x25\xbe\xda\x77\x04\x51\x62\x31\xc6\x4a\x91\x34\x53\x1b\xea\xeb\x18\x25\x5a\xae\x5c\x25\x47\x5e\xf1\x98\x0c\x5c\x7f\xbf\x20\x23\xce\x92\x18\x4d\x16\x96\x6b\x4d\x89\x20\x2c\x22\xcd\x2d\xdc\x63\xf9\x58\xb4\xb0\x4e\x18\x2d\xf5\x27\x3f\x72\xa1\x3f\x7f\x0f\x02\x69\x69\xe0\xaf\x21\x93\x6e\x7b\xe2\xbe\x38\x0b\xc1\x96\xfc\xa3\xb3\x27\xec\xbe\x92\x6d\xad\x0f\x5c\x20\xb9\x90\x8a\xa4\x6b\xed\x10\xef\x67\x21\xec\x05\x71\xa8\x03\xae\xdc\x51\xbf\x81\x53\x5f\xbe\x71\xbb\xe3\xbd\xc1\x92\xed\xcb\x8a\x78\xe8\xf3\x74\x3e\x9c\xd5\x53\xbd\x73\xdb\x17\x38\x31\xde\xc5\x34\x4b\xb2\xe0\xbe\x07\xf9\x42\xe6\x86\xc6\xbd\x72\xab\x3d\x86\x01\xac\x51\x34\xcb\x76\x68\x7f\xfe\xf4\xa7\xa1\x85\xc6\x98\xe3\xd4\x9c\xca\xc0\x58\x85\x22\x2e\x8c\x2c\x18\xdb\xf3\x6e\x74\xcd\xfe\x7d\xff\x6e\x70\x7f\x8a\xfa\x28\xc6\x0a\xeb\x03\x2e\x48\x26\x88\x24\x4c\x81\x1e\xaf\xbf\x57\x0b\x94\xf2\x98\x24\x46\xe3\xfc\xa8\x25\x5f\x74\x8e\x15\x3e\xc3\x0a\x27\x7c\x76\x8c\xfa\xf0\x4f\xfd\x31\x95\x08\x27\x92\x23\xec\xc8\x8a\xc4\xae\x09\xcc\x62\xc7\x5a\x30\x8a\x78\x9a\xd1\xc4\xdb\xe0\xbd\x71\x85\xb2\x98\x3e\xd1\x38\xc7\x09\xe2\x13\xcd\x55\xb4\x86\x3c\x78\x22\x4c\xe5\x38\x49\x16\x08\x27\x09\xb2\xdd\xba\x17\x90\x9c\xf3\x3c\x89\x75\xbb\x6e\x94\x92\xa6\x34\xc1\x42\xab\xe0\x66\xb4\xd7\xb6\x2d\x74\x3f\x27\x7e\xac\x30\x2e\xbd\x9a\x29\x7e\x24\x12\x51\x85\x32\x2e\x25\x9d\x24\xc5\x99\x7f\x18\x22\x18\xf7\xd9\xc5\x10\xf4\xf9\x48\x21\x6e\x78\xa8\xeb\xdc\xda\x6f\x5c\x8f\x29\x66\x8c\x40\xc7\x5c\xcd\x89\xb0\xdd\xdb\x97\xdf\x5a\x35\x7f\xb8\xba\xbb\x19\x9c\x0d\x3f\x0e\x07\xe7\xcb\xba\xf9\x7d\xff\xee\x87\xe5\x5f\x7f\xba\xbe\xfd\xe1\xe3\xc5\xf5\x4f\xcb\x4f\x2e\xfa\x0f\x57\x67\xdf\x8f\x6f\x2e\xfa\x57\xcb\x0f\x2d\x59\xb5\x56\xf3\xc3\x91\x6d\x78\xb6\x3a\x9b\xe6\x4b\xd9\x34\x7b\x5f\xae\x51\x73\x4a\x13\xd0\x41\x5b\x1b\x34\xbd\x0d\xc1\x7e\x89\x32\x2c\xa5\x91\x8c\xcc\x08\x8e\x47\xec\x92\x0b\xcd\xc0\xa6\x5c\xf3\x08\x2d\x3d\x29\x91\x47\x8a\xb2\x99\xff\xe8\x14\x8d\xf2\x6f\xbf\xfd\x53\x74\x41\xd9\x23\xfc\x45\x0e\x71\x71\x3a\x8b\x6f\x67\xf1\xfd\x6d\x59\x7c\xb5\xe8\x73\x12\x1a\x7a\xf7\x1b\x32\xa4\x85\x0b\x96\xe5\x0a\x44\x09\x9e\x2b\xfd\xa7\xee\x12\xc8\x63\x45\xe0\x50\x3b\x83\xe2\x27\xa2\xfc\x8b\x5a\xb4\x79\x0f\x76\xc4\x9f\xb8\x78\x9c\x26\xfc\xd9\x0f\xfc\x13\x51\x7a\xec\xb7\xb6\x97\x2e\x94\xa8\x0b\x25\x7a\xdb\x50\xa2\x83\x32\xe6\xbd\x3c\xf3\x2b\x5b\xfe\x0c\x07\x6c\xf0\x64\x35\x3a\xaa\x1a\xfc\x50\x81\x9b\xe9\x55\xb8\x66\xd9\x99\xb3\x86\x73\x96\x5e\x7e\x2f\xdc\xb3\x34\xe8\xd7\xe7\x9c\xbf\x09\x7f\x4b\xe7\x4e\xd9\x72\xa1\xde\x25\x83\x6d\x79\x77\xbc\x9a\x33\xe4\xe5\x19\xfe\x52\x6c\xc3\x26\xc1\x0c\x1b\x44\x2f\xb4\x0e\x57\x58\x13\x9f\x50\x1b\x90\x50\x17\x81\xb0\x1c\x72\x50\x1b\x63\xb0\x5b\x50\xc1\xb6\x77\x53\xfb\x30\x81\x4f\x44\x95\x5e\x7e\x2f\x77\x53\x69\xd0\xaf\x7f\x37\xfd\x46\xa3\x03\xba\x70\x80\x17\x5c\xba\x2f\xfd\x46\x3b\x5c\x87\xff\x6f\xc0\xc3\xdf\xb9\xf4\x37\x5a\xa3\x2f\xcb\x87\xff\xa5\x3a\xed\xdf\xa7\x97\xbe\x73\xcb\x77\x6e\xf9\xb7\xf0\x9f\xbc\x3f\xb7\xfc\xcb\xaa\xa7\xc5\xf1\x1a\x3b\x5a\xb0\xfa\x5a\x70\x28\xff\xd5\xc2\x49\x03\x7f\x39\x95\x6f\xd3\xa0\xf1\x46\x1d\xee\xbc\x18\xdf\x00\x8e\xd0\x2f\x96\x90\xd6\xa8\x73\x4b\xdf\xbd\x07\x75\x6e\x79\xd0\x2f\xaf\xc3\xbd\x19\xf3\x7d\xa1\xcb\xf3\x9d\xb0\x81\xcd\x6f\xcb\x2f\x58\x26\xef\x64\xf1\x97\xcf\xc6\x3f\x98\x09\xbd\x1f\xd9\xfb\x0d\x2e\xde\x96\xb7\xee\xde\x73\xb2\x6a\xae\xd9\xe0\x76\x5a\x97\x61\x55\xfd\x9a\x12\xf9\xc7\x77\x79\xdf\xbe\x46\x92\x55\x77\xe1\x76\x17\xae\x6d\xaa\xbb\x70\xbf\xe0\x0b\xf7\xe0\xe0\x6f\x0e\x26\x02\xb4\x0b\x22\xef\x80\x31\xba\x18\xf2\x3d\x2e\x4e\x17\x43\xde\xc5\x90\xff\xc6\x62\xc8\x77\xd1\x9e\xb6\xc5\xa2\x7c\x0b\x3d\xaa\x53\xa3\x3a\x35\x2a\xfc\xbd\x53\xa3\x3a\x35\xaa\x53\xa3\xbe\x70\x14\xd1\x4e\x87\x6a\xbf\x10\x9d\x0e\xd5\x7a\xa9\x3a\x1d\x6a\xc5\xe2\x74\x3a\x54\xa7\x43\xfd\xb6\x74\x28\xf2\x44\x98\x92\x90\x8c\x16\x6a\x14\x1f\x32\x2e\x9b\x35\xa1\x90\x3b\xd4\x68\x41\xd0\x66\x39\x29\x0c\x02\x97\x7e\x41\x73\x2c\x11\x8f\xa2\x5c\x54\xce\x40\x55\x0f\x3a\x13\x04\x2b\x02\x2d\xe8\x0f\xdf\x83\xfe\xb3\x3c\xdd\xd7\x8a\xc1\x9f\xf0\x78\x89\xda\xcd\x41\xa8\x7b\xb2\x5a\x1e\xd9\xdb\xd4\xff\x91\x93\x76\xea\xdf\x0b\x12\xb5\xc2\xf2\x71\xcf\x44\x5d\xca\xb5\xd8\x8a\xa8\xa1\x85\xf7\x42\xd4\xcb\xd3\xfd\xcd\x10\x75\xdd\xd4\x0f\x81\xa8\x9f\x6d\x1e\xff\x9e\x09\x7b\x09\x1e\x60\x2b\xe2\xf6\xad\xbc\x17\x02\xaf\x9f\xf6\x6f\x86\xc8\x9b\xa6\xff\xb6\x84\xee\x53\x24\x5b\x93\xf8\xbd\xa0\xb3\x99\x56\x33\x40\xc3\xd3\xa4\xb8\xbe\x46\x50\x91\x14\xb8\x96\xac\xfd\xab\xef\x81\xa4\xfd\x60\xcd\xd8\x7f\x33\xb4\xbc\x34\xef\x03\x21\xe2\x13\x41\x22\xfe\x04\xf5\xc2\xda\x11\xf3\x2d\x01\x0a\x06\x7e\x9d\x09\xf2\x44\x79\x2e\x93\xc5\x91\xc8\x19\x72\xcc\x1f\xf9\xe6\x8d\xb5\xfa\x99\x26\x09\xe2\x4c\xeb\x5f\x0a\x0b\xe5\x1e\x6b\xfd\x5b\xf0\x14\x4e\x45\x82\xa5\x42\x8f\x8c\x3f\x33\x34\xc5\x34\xc9\x05\x41\x19\xa7\x4c\x1d\x8f\xd8\x90\xa1\x5b\x33\x46\xc8\x1b\xe8\xa1\x5c\xea\xb3\x14\x61\xc6\xb8\x42\xd1\x1c\xb3\x19\x41\x98\x2d\x6c\x02\x6e\x41\x19\x88\x0b\x94\x67\x31\xd6\x8a\xef\x9c\x54\xa3\xf4\xfc\x18\xc1\x7c\x47\x25\xa2\x12\x91\xcf\x4a\x90\x94\x24\x0b\xdd\x87\xa6\x7d\xc5\x91\x5d\x1f\x33\x54\x9b\xce\x47\x84\xe0\x42\x42\xc6\xc1\x64\xf1\x2b\x66\x8a\x32\x82\x40\x51\x92\xc6\x34\x77\x84\x2e\xb8\x04\xb3\xcd\x0f\x7f\x91\x28\x4a\x72\xa9\x88\xe8\xa1\x49\x3e\x93\x5a\x53\xcc\x12\xac\xa6\x5c\xa4\x7a\x84\x94\x49\x85\x27\x34\xa1\x6a\xd1\x43\x29\x8e\xe6\xa6\x2d\x58\x03\xd9\x1b\xb1\x98\x3f\x33\xa9\x04\xc1\xbe\x77\xf7\x10\x7d\x1d\x3e\x33\x04\x20\xbf\xe9\x41\xda\x21\x4d\xb5\xba\x1b\x0c\xbf\xd8\x71\xb3\x27\xba\x11\x12\xa3\x09\x89\x70\x2e\xad\x87\x41\x89\x05\x22\x9f\xe7\x38\x97\xb0\x77\x7a\x7a\x36\x67\x23\xe2\x69\x96\x10\x45\x10\x9d\x22\x25\x28\x89\x11\x9e\x61\xaa\x97\xee\x8e\xac\x00\x41\xf7\x44\x6f\x37\xd0\x52\xfd\x2f\xa0\x7e\xa7\x5c\x10\x14\x13\x85\x69\xb2\xd2\xeb\x64\xbf\xed\xb8\xdc\x7b\xe2\x72\xe5\x0d\x3f\x08\x36\x67\x40\xfc\xf7\x70\x69\x33\x6b\xba\x8f\x70\xb2\xe3\xfd\x7d\x6b\x07\xd5\xd1\xf6\xfb\xa2\x6d\xb3\x6b\x87\x43\xdc\xaf\x16\x83\xdd\xbe\xa2\x45\x51\xcd\xe2\x5d\xd1\xf4\x6b\x84\x05\x74\x0e\xe7\xce\xe1\xdc\xb8\x32\xef\xd3\xe1\x7c\x30\x1e\xa3\xce\xe7\xfc\x42\x3e\x67\x2a\x3b\xa7\x73\xe7\x74\x6e\xbb\x40\x9d\xd3\xb9\x73\x3a\xbf\x5f\xa7\xf3\x4b\xe2\x3e\xef\x15\xdd\xf9\x5d\x89\xd6\x9d\x58\xdd\x89\xd5\x1d\x84\xb3\x9f\xda\xbe\x58\x98\xfb\xfa\x43\x4c\x12\xa2\x48\xb3\x3d\x8b\x88\x54\x6b\x0b\xe6\x7a\xa6\x4c\xcb\x71\x33\x41\xa4\xdc\x95\x21\xf9\x86\xdf\x27\x5b\xf2\xc3\xef\xa0\xe6\x3b\x3e\xd5\xf1\xa9\x6d\xa6\x76\x38\xa6\xd9\xe0\x30\xbf\x96\x6d\xd6\xf3\xdf\x2c\x6f\x96\xfe\x1e\x8c\x1b\xb2\xf0\x8b\x1a\x0a\xd7\x52\xbb\xe2\xfe\x70\x5b\x3a\xdf\x91\x1f\x9b\xbe\xde\x27\x33\x36\x63\xef\x38\x71\xc7\x89\x3b\x4e\xfc\xbe\x39\xb1\x3b\xc9\x6f\xea\x22\x33\x7e\xba\x71\x96\x60\x36\xa6\xb1\x3c\xf9\x67\xa1\xcb\xbf\x94\x87\x4c\x1f\xa8\xd8\xa4\x98\xfa\x94\x4e\xf1\x8b\xfe\x24\x29\x0c\xe6\x1e\x33\x73\x8d\x13\xcd\xd8\xd8\x6f\x12\xcc\x86\xf1\xbb\xf0\xa3\xd5\xce\xfe\x35\x7c\x6a\xbb\xf0\x71\xac\xc0\xd3\x81\x29\x33\x26\xbc\x22\xaf\xb6\x64\xa0\x3c\x8c\x13\xbe\x0b\x57\x0f\x26\x16\x30\x76\xc7\xaf\x83\x45\x39\xbc\x69\x77\x7e\x9d\x2e\x97\xb0\xf3\x5c\xb4\x9c\x70\xe7\xb9\x38\x5c\xcf\xc5\x5b\xb9\x23\x5f\xf9\x78\xbe\x96\x58\xd7\x3e\x08\xdf\x44\xab\x41\x50\x6b\x9e\x25\x1c\xc7\xab\x5c\x31\x85\xe0\x15\x82\xa3\xac\x8d\xc4\x2f\x3e\x7b\x0f\xc2\x5a\x31\xda\xdf\x58\x24\xdf\xf2\xc4\x0f\x45\x4b\x79\xc5\x50\xbe\x7a\x12\xdf\x40\x25\x79\x1f\xf8\xa9\xc5\x78\xbb\xd0\xbe\xce\xa2\xf4\xf6\x16\xa5\x2e\xb4\xaf\x53\x01\x0f\x4c\x05\xec\x42\xfb\xba\xd0\xbe\x4e\x41\x5e\x3d\xed\x4e\x41\xfe\x22\x42\xfb\x5a\x89\xda\x2f\x88\xbd\xb9\xbb\xd0\xdd\xc9\xdc\xee\xbd\x4e\xe6\xee\x64\xee\x2f\x54\xe6\x3e\x8c\x15\xee\x04\xee\x4e\xe0\xee\x04\xee\x4e\xe0\xee\x04\xee\xbd\x2f\x63\x27\x70\xbf\x66\x81\xce\x7a\xa9\x7b\x4d\x92\xcd\x7b\xf5\xe5\x74\xe2\x76\x27\x6e\x1f\xb6\xb8\x7d\x30\x13\x7a\x3f\x65\x1e\xdb\xcd\xa7\x2b\x52\xde\x15\x29\xef\x8a\x94\xbf\x78\x91\x72\xf7\x75\x8b\x8c\x0f\x7b\xb8\x14\x56\xb9\x34\x80\x8f\x82\xcc\xa8\x54\xc0\xfe\xdb\xc8\x2b\xeb\x13\x3d\xde\xab\x9c\xd2\xa5\x7a\xf8\xa7\x9d\xd4\xd2\x49\x2d\xbf\x51\xa9\xe5\x80\x62\xc1\x0e\x22\x63\x25\xc5\x2a\x9a\xe3\x49\x42\xc6\xde\xe8\x23\xdb\xea\xc1\x17\x54\x2a\x89\xa2\x5c\x2a\x9e\x36\x5f\x2e\x97\xae\x87\xbe\xef\xe0\x8c\xb3\x29\x9d\xe5\xe6\x6e\x31\xe0\x9c\xc1\x89\x2e\x24\xc1\x45\x46\xd6\x79\xaa\x6a\x5a\x7f\x17\xd7\x52\xfd\xd0\x5f\xeb\x76\xda\x44\x70\x2f\x8c\x7c\x56\xea\xd6\xb2\xd6\xf8\x76\x70\x77\xfd\x70\x7b\x36\x38\x45\xfd\x2c\x4b\xa8\xb1\xbb\x1b\x52\xa0\xbf\xea\x49\x21\x85\xe5\x63\xb1\x97\xc2\x90\xb9\xc1\xb0\x05\x43\xbf\x96\x8d\xd1\x11\x3a\xbb\x78\xb8\xbb\x1f\xdc\x36\x34\x68\x09\x05\xf2\x56\x49\x9a\x25\x58\x91\x18\x3d\xe6\x13\x22\x18\xd1\xd2\x8e\x45\xba\x2d\xcc\xff\xa6\xd1\xc1\x7f\x0f\xce\x1e\xee\x87\xd7\x57\xe3\xbf\x3e\x0c\x1e\x06\xa7\xc8\x51\x9c\x6e\x56\x8f\x4b\x8f\x22\x5e\x30\x9c\x6a\x0d\x44\xff\x50\x64\xca\xfe\x23\x27\x39\x41\x58\x4a\x3a\x63\x29\x01\x44\xe0\x52\x8b\x6e\xc0\x17\xfd\xef\x06\x17\xe5\x96\xe7\x24\x84\xdf\x45\x09\x9e\x90\xc4\xfa\x23\xc0\xc4\xae\x09\x3d\x80\x2a\x36\x8e\x8a\xdc\xac\xea\x5f\x1f\xfa\x17\xc3\xfb\x9f\xc7\xd7\x1f\xc7\x77\x83\xdb\x1f\x87\x67\x83\xb1\x95\x2a\xcf\xfa\xba\xdf\x52\x4f\x56\xf8\x44\xff\xc8\x71\xa2\xb5\x13\x3e\x75\x78\xbc\xe8\x79\x4e\x18\xca\x19\x50\x9c\x51\x79\xb4\x1e\xe4\x3b\xd5\xa7\xcc\xcc\xe8\xe6\xe2\xe1\xd3\xf0\x6a\x7c\xfd\xe3\xe0\xf6\x76\x78\x3e\x38\x45\x77\x24\x01\xa5\xc0\x2d\x3a\xec\x62\x96\xe4\x33\xca\x10\x4d\xb3\x84\xe8\xd5\xc0\x36\x9b\x78\x8e\x9f\x28\x17\xf6\xe8\xce\xe8\x13\x61\x66\x1d\xe1\xcc\x42\xfb\x4e\xf8\x1e\x07\x4b\x77\x7d\xf5\x71\xf8\xe9\x14\xf5\xe3\xd8\xcf\x41\x42\x1b\x25\xca\x71\xb0\xce\x47\xe5\x61\x6b\xe6\x00\xdd\x1b\x22\xe2\x4f\x44\x08\x1a\x93\x0a\x1d\xf5\xef\xee\x86\x9f\xae\x2e\x07\x57\xf7\xb0\x62\x4a\xf0\x44\xa2\x39\x7f\x06\x53\x36\xcc\x10\x2c\xdc\x4f\x98\x26\xd0\x99\xdb\x2c\xce\xd0\xf3\x9c\x82\xfb\x03\x80\x99\x7d\xcf\x46\x3f\x13\x39\x7b\x73\xeb\x6c\xe9\xe0\x2d\xab\x2d\xd5\x93\xb4\xfc\x46\xe5\x58\xac\x7a\xa1\x44\xe5\xcb\x2f\xae\xa3\xd6\xe5\x2f\x2a\xe4\xd6\xac\xac\x2d\xd1\x4b\xf3\x4c\x8b\xbd\x6e\xad\xab\x95\xd7\xf0\xf5\xae\x59\xa2\x04\x8d\xe4\xcb\x42\x3d\x89\x9c\x29\x9a\x12\x64\x3b\xb3\x87\x73\x8f\xf0\x4f\x97\xa6\xe1\xf7\x70\xc1\x2e\x95\x72\xf8\x44\x94\x1d\x7e\xa7\x02\x76\x2a\xe0\x61\xa8\x80\xef\x2d\xdb\x3f\x26\xd9\x72\x87\x95\x89\xc1\x3b\xc6\xeb\xb5\x14\xa4\x61\xec\x89\xd6\xa2\x9a\x90\x27\x92\x80\x94\xa7\x04\xd6\x4a\xa3\x95\x5d\x26\x82\xe0\x47\x2d\xf0\xc5\xfc\x39\x94\x5c\x6a\x90\xfb\xd1\x7e\x6e\xe1\x36\x41\x1c\x7f\xfa\xe3\xeb\x5d\x16\x7a\xb9\xe3\xd7\x28\xe1\x7d\x0b\x41\x32\x2b\x31\x02\x83\x04\xfb\x5f\xac\x25\x78\xcd\x6d\x11\x7c\xf1\x1e\x2e\x8a\x70\xb8\x07\xa4\x75\xdd\x86\x4a\xb0\x63\xa1\x29\x51\x38\xc6\x0a\xeb\x43\x33\x23\xea\x18\x5d\x33\x78\x76\x8f\xe5\x63\x0f\xb9\x2b\x4f\xb3\x95\xc2\xca\xf0\x0a\xa9\xf5\xef\xc4\x80\xbf\x39\x1f\xef\xae\xef\xee\xfa\xae\x5f\x99\x2e\xcc\xb3\x61\x85\xf7\x75\x31\x6e\xe4\xf3\xda\xdf\xfd\x65\x5a\x7c\xbf\x57\xd8\xeb\x3a\xb9\xf6\x7a\xa1\x99\xca\x59\xdd\x6d\x65\xfe\xaf\xbb\xad\xba\xdb\xaa\xbb\xad\x0e\x60\x85\xdf\xdc\x61\x58\xc3\xdd\xdf\xd4\x63\xb8\x4e\x3b\xdd\x1a\xf2\xae\xd0\x46\x37\x01\xbd\xfb\xa5\x2d\xb6\x5d\xf1\x0d\x7d\x1f\x3e\xc2\x60\x92\xaf\x91\xd6\xb6\xd7\xcb\xdc\xe4\x8b\x74\xfa\xe9\x0b\xde\xf8\x1d\x02\xe1\x5e\x11\x08\x0f\x63\xae\x2f\x92\x02\xf7\x36\x16\xd3\xb7\x4f\x7b\xeb\xa0\x06\xbb\xc4\xae\x2e\xb1\x0b\x7e\xef\xa0\x06\xf7\x47\xad\x2f\x2b\x5d\xf3\x98\x8c\x2b\x51\x02\xfe\x9f\xe3\xaa\xe7\xa7\xf4\x24\x74\x03\x95\x1e\x14\x99\x6e\xd0\x3a\x8d\xf7\x59\x44\xea\x8a\xc7\xa4\x75\x24\x41\xe9\xe5\x03\x97\xc1\xdd\x3c\x8d\x2c\x5e\x1a\xf8\x0b\x4b\xe2\x0d\x5b\xfe\x25\x1a\x76\x6a\x08\xb8\xb3\xf2\xac\x5d\xa8\x2f\x35\xbe\xa0\xe0\x50\xef\xc8\x53\xd1\x8e\x8d\xbb\x98\xc6\x71\x03\x33\xaf\x7f\xee\x59\x7a\xfd\xe3\x97\xc1\x0c\x6a\xcf\xd1\xc1\xac\x12\xbe\xfd\x3e\xec\x2a\xe1\x88\x5f\xc3\xb2\xb2\x72\xef\xbf\x38\xae\xbe\x8a\x92\x3b\xde\xde\x72\xb9\xbe\x54\x0e\xdf\x41\xfc\xac\xb2\x75\x74\x18\x3a\x9d\xa9\xe5\x70\x26\xdc\x99\x5a\xde\xb5\xa9\xc5\xb8\x68\xc7\x19\x16\x84\xa9\x1a\x91\xba\x7a\x9d\xc0\xeb\x21\xe6\x82\x93\x3a\xa0\x01\xa4\x25\x5a\x64\x2f\x64\x7f\x55\x7d\x59\xb6\x17\x2b\x18\x04\x99\x90\x27\xff\x2c\xfe\xf6\xc2\x7a\xa9\x02\xc4\x8a\xe8\x24\x83\xf5\x2f\xf5\x1d\x9d\xdb\x40\xa5\xdd\x73\x25\xb1\x2a\x89\x82\x10\x44\xbd\x36\x9e\xe9\xc6\xbc\xfd\xbe\x52\x24\x97\x06\xfd\xba\xb1\x4d\xcb\x1b\xdf\xee\x00\xb9\x9d\xa1\x26\xdd\x2f\xc8\x29\xd3\xd2\x28\x9f\x16\x17\x83\x44\xcf\x34\x49\x00\x51\x04\x32\x1e\x9b\x6e\x80\xdf\x5c\xc4\x43\xe3\xce\xbf\x69\xdc\x43\x1d\x77\xa8\x63\x09\x6d\xec\xa9\xfb\xca\x99\x76\xc4\x06\xe9\xac\xa0\x0d\xad\x31\xc0\x7e\x19\x9c\xe0\x13\x51\xaf\xc5\x06\xb6\x3d\xfb\x2b\xcf\xbd\x20\x53\x22\x08\x8b\xc8\x01\x7a\xdb\x37\x09\x03\xf9\xc9\x4c\xd2\xc6\x80\x78\x28\x81\x70\xaa\x8a\x5b\x3d\xad\x24\xea\x76\x99\xe4\x5d\x26\x79\x97\x49\x5e\x3d\xea\x5d\x26\x79\x97\x49\x5e\x9b\x03\x11\x93\x84\x28\xd2\x28\x55\x9c\xc3\xe3\xb7\x92\x2a\x4c\xef\x5f\x86\x60\x61\xe6\xd2\xc9\x16\xbf\x19\xcd\xc2\x6d\xf8\x41\x68\x16\xe6\xac\xad\x33\x3f\x94\x7e\xac\x09\xb1\x7e\x75\x93\xc4\x36\x4c\xa3\x64\x97\x38\x87\xd7\xdf\x25\xeb\xa8\x0e\xbd\xb3\x51\xa0\x60\xeb\x5e\x8e\x93\x2c\x1d\x81\x76\x13\xb7\x1e\xc3\xf7\x3b\xef\x43\xe1\xa0\x4d\x74\x7f\xa8\x7c\x74\xeb\xa4\x94\x43\xb1\xd8\x7c\x41\x3c\xb2\xb3\xde\xbc\x71\xae\xc4\x12\x33\x7c\xb7\xd3\xed\x8c\x55\x9d\xb1\xaa\x33\x56\x75\xc6\xaa\xce\x58\x85\x3a\x63\xd5\xc6\xc6\xaa\x2f\x48\xa6\xea\x0c\x57\x9d\x58\xb5\xbf\xe9\x1e\xaa\x96\x79\x48\xd6\xba\xd6\x28\xe9\x45\x0e\xd5\xda\xc8\x7b\x3b\xed\x5f\xd6\x84\xdc\xdf\xb8\x11\xbc\x1f\x7e\x25\x5f\x9a\x25\xed\x12\x58\xec\x76\xf4\x8b\x8d\x2b\xee\x4a\x87\xd6\xae\x55\x17\xf6\xbc\x62\x71\xba\xb0\xe7\x2e\xec\xf9\xe0\xc2\x9e\xf7\xae\xac\x64\x5c\xae\x02\x24\x32\xa5\xb3\x56\xe6\x3f\xbb\x3b\x1b\x12\x8d\x80\x14\x0c\xca\x71\x4c\xb2\x84\x2f\xc0\x92\xb2\xe2\x3a\x77\x5d\xdc\x2c\x49\xd4\x87\x7e\xa3\xbb\x91\xbf\x96\xce\x71\x28\x32\x69\x31\xef\x83\x90\x42\x4f\xfe\x59\x49\xe7\x6f\x85\x97\xc9\x10\xf9\x4c\x25\xdc\x4a\xeb\x09\x7b\xc4\xea\x9f\x04\xa5\x0b\xed\x3d\x38\xc9\x55\x90\xbb\x27\xb5\x60\x95\x11\xa1\x16\xc1\x9b\x24\xcd\xd4\xe2\xbf\x46\x8c\x2a\xef\x61\xa3\x33\xc6\x85\xe1\x6a\xfa\xe3\x39\x66\x71\x42\x84\xbe\x54\x5d\x3b\x11\x66\x8c\x2b\x10\x37\x60\x06\x31\x7a\xa2\xd8\x08\x27\xfd\x9b\x61\x6b\x3f\xf3\x3b\x3a\x5d\xaf\x5d\xac\x6e\xcd\x5d\xf7\x29\xe1\x13\xa8\x60\x99\x97\x75\x7a\xdd\x40\xe7\x19\x2d\xed\xdc\x5b\x31\x04\x85\xe5\x63\x15\x38\xa4\x9c\x85\x3e\x5e\x09\x25\xb2\xe6\xdd\x12\xc6\xfc\xea\x57\x2b\x70\x23\xe5\x67\x16\x80\x04\x1e\xc3\x90\xab\xe3\x70\x3f\x86\x1d\xba\xdf\x8a\x96\xdd\x2f\xae\x74\x37\xfc\x28\x88\x12\x8b\x31\x56\x4a\x33\x99\x7d\x62\x9c\xdc\x63\xf9\xd8\x1a\xe3\xa4\xf4\xf2\x81\xb3\x9c\x12\xc6\x49\x79\xe0\x2f\xce\x72\x5a\x52\xe7\x1a\xce\xf4\xfe\xf2\xe3\xdb\x9e\xb5\x0d\x26\xfe\x5b\xc9\x95\x6f\xc7\x7b\xd6\x99\x69\xdf\x63\xde\xfc\x2a\x66\x7a\x30\x23\xac\xf0\xf3\x2f\xf1\xe4\x96\x6f\xa7\xee\x88\xae\x5a\xa3\x2f\xae\x10\x6e\x45\xe8\x58\x33\xb7\x77\x52\x10\xb7\x2a\x37\xed\x7b\x54\x2f\x63\xe6\x0e\x76\x63\x93\x18\xa0\x61\x19\xad\xdc\x9f\x21\x17\x15\x54\x94\x9e\x9d\x43\xa2\x35\x95\x61\x42\x7c\xc4\x85\x91\xbc\x62\x7b\x66\x8d\xd9\xce\x80\xf9\x9e\xa2\x3e\x8a\x6d\x6d\x7e\x41\x32\x41\x24\x61\xca\xa8\xda\xa6\xde\x95\x2b\xef\x4f\x99\xb5\x10\x9d\x63\x85\xcf\xb0\xc2\x09\x9f\x1d\xa3\xbe\x2f\xec\x4f\x25\xc2\x89\xe4\x08\x3b\xc2\x21\xb1\x6b\x02\xb3\xd8\xb1\x07\x8c\x22\x9e\x66\x34\xf1\x48\xed\xde\x8a\x4f\x59\x4c\x9f\x68\x9c\xe3\xc4\x23\x63\x8f\xd8\xe0\x89\x30\x95\x83\x0a\x87\x93\x04\xd9\x6e\xdd\x0b\x81\x7e\xee\x46\x29\x69\x4a\x13\x2c\x90\xe2\x76\xb4\xd7\xb6\x2d\x74\x3f\x27\x7e\xac\x0e\x05\x1c\xa5\xf8\x91\x48\x44\x15\xca\xb8\x94\x74\x92\x14\xc7\xf8\x61\x88\x60\xdc\x67\x17\x43\x30\x8d\x46\x0a\x71\xc3\x07\x5d\xe7\xd6\x4f\xe0\x7a\x4c\x31\x63\x04\x3a\xe6\x6a\x4e\x84\xed\xde\xbe\xfc\xd6\x56\xce\xb7\xc6\x88\x6e\xb6\x98\x86\x23\x7b\x3b\xa5\xb3\xb5\xc6\xd9\x56\xdd\x6c\xa7\x6b\x36\x2b\x9a\x2f\xe0\xa5\x6d\xaf\x0d\x5e\x50\x59\x56\x07\xdf\x85\xcb\xb6\x34\xe2\xd7\xc0\x47\xfb\x8d\x2a\x82\x9d\x16\xf8\x22\xeb\xf6\xa5\xaa\x80\x07\xae\xff\x75\xc8\x6e\x1d\x8a\x7d\x17\x80\xb1\xc7\xc5\xe9\x02\x30\xba\x00\x8c\x2f\x36\x00\xa3\x59\x9b\xa0\xf1\xce\xe9\x7a\x1b\x56\x90\xf2\x46\x01\xf1\x0b\x88\x52\x58\x3e\xb6\xad\x29\xa5\x45\xe5\x61\xfc\x2e\xa4\xfa\xda\x09\xbf\x86\x74\xdf\xd5\x29\xda\x6b\x9d\xa2\x83\x9b\x76\x27\xf8\x75\x82\x5f\x27\xdb\xb4\x9c\x70\x27\xdb\x1c\xae\x6c\xf3\x56\x0a\xcb\x97\x04\xa1\xab\x85\xa7\x52\x66\xcc\xca\x00\x5b\x03\x47\x03\xee\x81\x3c\x4b\x38\x8e\xd7\x05\xe1\xfc\x82\x0a\xb9\x66\x85\x68\x66\xda\xd5\x1f\x1c\xb8\x64\xb6\x14\x7f\x63\x46\xfe\x5b\x88\xa9\x6d\x9c\xfa\x9b\x86\xd5\x02\xfd\x42\x30\x59\x29\x28\xed\xa5\xb4\x90\x2a\x4d\xb7\x52\x38\xe4\x1f\x0f\x9c\xaa\xfd\x96\xbe\x86\x7a\xf1\x05\x3b\x08\x3a\x27\xc0\x6f\xb3\xf0\xf9\xc1\x48\xad\x9d\x6a\xd7\x65\x55\x76\x46\xfd\x4e\xf1\xed\x14\xdf\xbd\x2f\xe3\x21\x29\xbe\x6f\x28\x51\x9b\x34\x91\x17\x29\x63\xb8\x9d\x6c\xdd\x89\xd6\x9d\x68\xdd\x89\xd6\x5f\xac\x68\x7d\x18\x2b\xdc\xc9\xd5\x9d\x5c\xdd\xc9\xd5\x9d\x5c\xdd\xc9\xd5\x7b\x5f\xc6\x4e\xae\xae\xc8\xd5\xf0\x97\x4b\x93\xde\x54\xc8\x6e\x2d\x5c\xb7\xc8\x89\x7e\x2f\x92\x75\x27\x55\x77\x52\xf5\x61\x4b\xd5\x07\x33\xa1\x2f\x2f\x11\xb2\x4b\x25\xec\x52\x09\xbb\x54\xc2\xb7\x48\x25\x74\xbc\x64\x95\x84\xb2\x2c\x58\xfc\xb8\xc4\x81\x0e\x56\xb6\x28\x46\xbb\x6d\x78\xc7\xbe\x96\xda\x01\xcd\x6f\x53\x69\xaa\xf4\x9b\x6b\xe8\x80\xea\x4f\xf5\x9c\xb4\xa0\x19\x85\x1b\xdf\x7a\x84\xb0\x9f\xec\x9b\xef\x0b\x0c\x7c\x79\xd4\x5d\xfd\x29\x14\xec\x5a\x57\x7f\xea\x05\xe7\xed\x0e\xd7\x9a\x99\x3b\x1a\x35\x36\xde\x77\x3a\xed\x37\x07\x97\x6b\x3e\xe9\x6f\x1a\x2e\x57\x7b\x93\x2c\x25\xef\x9c\xfc\xb3\xf6\xa2\x78\x83\xb2\x5b\x1b\xdf\x0e\x9f\x88\xfa\x52\xae\x86\xae\xec\x56\x57\x1f\x62\x4f\xd3\xdd\x8a\xf5\xbf\xdb\xd9\x76\x45\xc6\xba\x22\x63\x5d\x91\xb1\xae\xc8\x58\x57\x64\x0c\xfd\xc6\x8b\x8c\x6d\x2c\x3e\x9a\x71\x7c\x29\x12\x64\x57\x64\xac\x13\x22\xf7\x37\xdd\xdf\x96\x10\x79\x80\x16\x84\x83\xa8\xa6\xe6\x2d\x08\x6f\x8e\xfb\xe1\x46\xd2\x16\xfb\xc3\x2d\x68\x87\xff\x61\xff\xaf\xc3\xff\xe8\xf0\x3f\x1a\x66\xdd\x05\xb3\x76\xf8\x1f\xa8\x0b\xd7\xec\xc2\x35\x0f\x39\x5c\xb3\xc5\x36\x76\xf8\x1f\x2d\xc5\xb9\x17\xc2\x00\x71\x32\xd7\x46\x38\x20\x3f\x2d\x2b\x1a\x07\x2b\xa5\xb9\xb1\xfe\x76\x70\x40\x6a\xa7\x7d\x10\x2a\xc9\x2b\xe2\x80\xd4\xd1\x75\x6b\x05\xe4\x7d\xe0\x81\xb8\xd1\x76\x89\x8b\x5d\x88\xf5\xe1\x87\x58\x1f\x5c\xe2\xe2\xc1\x48\xb2\x9d\xba\xd7\xe5\x2e\x76\xb9\x8b\x9d\x32\xdc\x29\xc3\x7b\x5f\xc6\x43\x52\x86\xdf\x58\xc2\x7e\x41\x5c\x90\xdd\x64\xed\x4e\xd4\x36\xef\x75\xa2\x76\x27\x6a\x7f\xa1\xa2\xf6\x61\xac\x70\x27\x67\x77\x72\x76\x27\x67\x77\x72\x76\x27\x67\xef\x7d\x19\x3b\x39\xfb\xd5\x70\x42\xea\x84\xed\x96\xf9\x36\xef\x49\xd2\xee\xa4\xec\x4e\xca\x3e\x6c\x29\xfb\x60\x26\xd4\x61\x86\x74\x98\x21\x1d\x66\x48\x87\x19\xb2\x95\x7c\xf3\x6f\xf6\x58\x7e\x08\x6e\x62\x7f\x65\x7f\xf8\x2e\xe1\x93\xfb\x45\x46\xf4\x7f\xcf\x69\x4a\x98\x04\x69\x94\xaa\x45\x28\xcf\x34\xac\xfc\xf2\x9a\x7f\xb8\x1b\x5e\x7d\xba\x08\xb3\x69\x3e\x5c\x3e\x5c\xdc\x0f\x6f\xfa\xb7\x7e\x5d\xfc\xac\xc2\xb5\xb0\xdf\x95\x44\x32\x4b\xf2\xb7\x44\xeb\x9e\x70\x6a\xee\x14\x56\xb9\xdc\x6e\x64\xb7\x83\xbb\xc1\xed\x8f\x90\x0d\x34\x3e\x1f\xde\xf5\xbf\xbb\x28\x11\x44\xe9\x79\xff\xec\xaf\x0f\xc3\xdb\xe6\xe7\x83\xff\x1e\xde\xdd\xdf\x35\x3d\xbd\x1d\x5c\x0c\xfa\x77\xcd\x5f\x7f\xec\x0f\x2f\x1e\x6e\x07\x2b\xd7\x63\xe5\x68\x57\x2b\x21\x12\x16\x09\xe2\xfc\x51\x64\xb9\x86\x28\xd6\x10\x79\xf1\xd1\xb1\xc3\xba\xbe\x4e\xd1\x83\xd5\xe9\xa9\x6d\xdc\x30\xd8\xa0\x21\xa3\x8c\xc4\x54\xe2\x49\x42\xe2\xa5\x96\xdc\x1a\x36\xb5\x84\x4b\x83\x7a\xd6\xda\xb3\x17\x39\x35\xcf\x8b\x0c\x2f\x40\x90\xa3\xa8\x08\x8b\x6b\xfa\x30\xfb\xd0\xd8\x03\xd3\xbc\x8b\x3e\x91\x52\x4f\x51\x2e\x04\x61\x2a\x59\x20\xf2\x99\x4a\x25\x97\x1a\x75\xdb\xd7\xd4\xac\xbd\x53\x7d\x83\x73\x2c\xd1\x84\x10\x56\x1e\xbf\x20\x09\xc1\xb2\x66\xcc\x76\xf7\xdb\x2d\x8b\xdf\x2b\x6b\x8d\x31\x97\xd1\x14\xd3\x24\x17\xa4\x72\x5a\x78\x9a\x61\x41\x25\x67\x83\xcf\xfa\x2e\xd3\x07\xf9\x1a\x3e\xe7\x62\xbb\x13\x33\xf8\x6b\x48\xc1\x57\xe5\x7f\x7e\xba\x2f\xff\xab\x74\xe6\x2f\xee\xcb\xff\x5a\x4d\xeb\x41\xc3\x55\xca\x3e\x42\x9f\xee\x4f\xd1\x27\x08\x71\x12\xe8\x7e\x8e\x0d\xc5\x5e\xdc\x9f\xa2\x0b\x22\x25\xfc\x52\x7c\xac\xa8\x4a\x60\x6e\xdf\x51\x86\xc5\x02\xb9\xe9\x9b\x44\x57\x1c\xcd\x11\xf1\x4b\x53\x5d\x3c\xf6\xf7\x9c\x81\xea\x5e\xac\xde\x05\x9f\xd1\x08\x27\xbb\x2d\x62\xff\xaa\xc4\x07\xae\x6f\x57\x2e\x45\xf8\xf6\xf2\x5a\xf4\xaf\xce\x21\x89\xd4\x0d\xb5\x66\xe6\x57\x44\x6a\x22\x89\x38\x8b\xad\x97\x46\xdf\xfe\x8b\x40\xa8\xff\x3b\x87\x44\xdc\x5c\x52\x36\xd3\x2d\xa2\x13\x74\x7d\x3b\x62\xd7\x22\x36\x86\x50\xa2\xa5\x61\x43\x73\x54\x22\xc6\x15\xa2\x69\xc6\x85\xc2\x4c\x69\x45\x00\xc4\x00\xbb\x22\x86\x03\x9c\xf1\x34\xcd\x15\xd6\x07\x6d\x69\x51\x99\x31\x87\xdc\x11\x35\x8c\xc1\xb5\x52\xb3\x86\x46\x4e\x28\xe6\x92\x09\xdd\xbe\x96\x51\xca\x3a\x34\x8d\x97\x54\x59\xd7\x04\x16\x02\x97\xa5\x89\x0f\x54\x91\xb4\xfa\x7e\xcb\x20\xcf\x7f\xd5\x1a\x08\xce\x4c\x52\x05\x11\x7d\x11\xcd\xa9\x22\x91\xd2\x47\x70\x2b\x9a\x78\xb8\xfa\xe1\xea\xfa\xa7\x50\x82\xf8\xd0\xbf\x3c\xff\xf3\x7f\x94\x7e\xb8\xbd\x5c\xfa\x61\xfc\xe3\x9f\x97\x7e\xf9\xff\xad\xa4\xa7\x6a\x4f\x4b\x7a\x7e\x30\x97\x23\x10\xa9\xc1\x26\xec\xa6\x8a\x68\x8a\x67\x04\xc9\x3c\xd3\x14\x20\x8f\xcb\xfb\xab\x45\xca\x0b\x8e\x63\xca\x66\x26\x03\xf4\x82\x2a\x22\x70\x72\x89\xb3\x8f\xce\x7e\xbd\xc5\xea\xfc\xdf\xbb\x52\xbe\xee\x87\x9f\xfb\x97\x61\xc6\xef\x87\x9b\xdb\xeb\xfb\xeb\x95\xb3\x2e\xb5\xb0\x7c\x8c\xf4\xe3\x53\xf8\x5f\x74\x82\x74\xeb\x5e\xf2\x4d\x89\xc2\x5a\x23\x40\x5f\x9b\xa4\x39\x9f\x48\x43\x59\x02\xa7\x26\x13\x34\xa5\x70\xa5\x18\x0b\xde\x37\x46\xb8\xf6\xda\x83\x3f\x37\xe6\x03\xd0\x96\xdd\xa5\xcc\x62\x2c\x62\xf4\x77\x59\x4d\x1f\x07\xc3\xb1\xf9\x81\xc4\xe8\x08\xcd\x95\xca\xe4\xe9\xc9\xc9\xf3\xf3\xf3\xb1\x7e\xfb\x98\x8b\xd9\x89\xfe\xe3\x88\xb0\xe3\xb9\x4a\x13\x93\x2e\xaf\x57\xe1\x14\xdd\x08\xae\xaf\x10\x50\xd0\x89\xa0\x38\xa1\xbf\x92\x18\x4d\x0c\xff\xe3\x53\xf4\x4b\xc4\x05\x39\x2e\x36\xc6\x1a\x95\xec\x3d\x62\x0d\x4f\x27\xfa\xa5\x1a\x66\x52\xdd\x4f\x14\x93\x88\xc6\x56\xcc\x20\x2c\xe2\x60\x79\x34\xbe\x0a\xdd\x9e\xcb\x34\xd4\x1a\x4d\x96\xab\x62\x39\x03\x65\x05\xc7\x24\xc8\x76\x57\xbc\x4c\x70\x5a\xf1\x19\x1a\xb5\x35\xd7\x2a\xba\xbe\x5b\x31\xdc\xaa\xee\xd5\x4c\x4f\x38\xe2\x09\x9a\xe4\xd3\x29\x11\xa1\x43\xba\xa7\xb5\x19\x2a\x91\x20\x11\x4f\x53\x90\x18\xf4\x57\xb9\x34\x54\x0d\x2b\x66\x47\x7b\x3c\x62\xb0\xff\x5a\xcd\x01\x0a\x88\x39\xb0\x3a\x46\x48\x8c\x30\x5b\x98\x6e\x26\xf9\x34\x6c\xdf\xc0\x50\xe0\x18\x51\x35\x62\xfd\x24\x41\x82\xa4\x5c\x91\x20\x87\x12\x9c\x67\xe5\x05\x07\x16\x29\x48\x96\xe0\x88\xc4\x86\x1e\x12\x1e\xe1\x04\x4d\x69\x42\xe4\x42\x2a\x92\x86\x0d\x7c\x0d\xb6\x1a\xbd\x66\x54\xa2\x98\x3f\xb3\x84\x63\x3b\x8f\xea\x67\xdf\x94\x4f\xe3\xc0\x41\x04\x0c\x84\xe0\x02\xfe\xe7\x07\xca\xe2\xbd\x71\xa8\x87\xbb\xc1\x6d\xf8\xef\xbb\x9f\xef\xee\x07\x97\x9b\x71\x1f\x4f\x59\x30\x3c\xd0\xe1\x4f\xd1\x9d\x59\x04\x2e\xb4\x44\x24\x1a\x26\x75\x69\x49\xa9\xf8\x81\xc7\x5b\x72\xdf\xcb\xfe\xd5\x43\xbf\xc4\x51\xee\xce\xbe\x1f\x9c\x3f\x54\xf4\x01\x3b\xbf\x92\x0c\x6f\xd4\xbf\xf0\xb7\xb3\xef\x87\x17\xe7\xe3\x1a\x85\xf1\xc3\xed\xe0\xec\xfa\xc7\xc1\x6d\xa1\xdb\xd5\x2e\x51\x65\x30\x55\x66\x75\x6f\x98\xd2\x9c\xc7\x68\xb2\xa8\x07\x84\xd0\x92\x73\x02\xbe\xd8\x02\x12\xc5\xb4\x7a\x0a\xbc\xc9\x61\x73\x14\x5f\xa4\x3c\x26\x3d\xfb\x0e\x20\x69\x18\xe3\x8a\x91\x98\xeb\x1b\xd6\xbd\x63\x16\x18\x2a\x0c\xc8\x85\x5f\xb8\x53\xd4\x47\x52\xbf\x98\xeb\x43\x2d\xe8\x6c\x06\x86\xc3\xca\x50\x4d\x6b\xf6\x53\x58\x5e\xf8\xce\xec\x7f\x26\x38\x9c\x73\xdd\xad\xb5\x38\x7b\xab\x84\xf9\x10\x50\x57\xca\x2d\x0a\x0c\x06\x87\x9a\xa1\xb9\xcd\xd2\x8b\xd0\xb8\x5e\xe6\x3c\x1a\x7b\x91\x3e\x5c\xc0\xb6\xa4\xb1\x77\x66\x82\x3c\x51\x9e\x07\x9f\x5a\x60\x8f\xd2\x8e\xd7\x36\x5f\x2c\x00\x2c\x9b\x31\x8a\x54\x9a\xf1\xe4\x51\xdb\x82\x66\x61\x4f\xd0\xc2\x54\xf0\xb4\xa6\x8d\xf2\x31\x19\x5e\xdf\x29\x81\x15\x99\x2d\xce\x2d\xcb\xd8\xfe\x78\x9c\x5f\xff\x74\x75\x71\xdd\x3f\x1f\x0f\xfa\x9f\xca\x27\xde\x3f\xb9\xbb\xbf\x1d\xf4\x2f\xcb\x8f\xc6\x57\xd7\xf7\x63\xf7\xc6\x4a\x92\x6f\xe8\x60\xf9\x9e\x2e\xbf\x78\x8a\x34\xcb\x05\xd6\xe8\x00\xef\x02\xfe\x38\x21\x53\x2e\x0c\x9f\x4f\x5d\xe8\x82\x15\x61\xdc\xda\x5a\x5d\xac\x32\x8b\x53\xb0\x8c\xd5\x35\x69\xac\xde\x4a\x10\x9c\xc2\x3d\x81\x19\x1a\xb0\xf8\xe8\x7a\x7a\x74\x67\x7e\x4c\xb1\x78\x24\xc2\x7f\xfa\x2c\xa8\x52\x84\x95\x54\x3a\xec\x86\xec\x95\xc4\xa2\x83\x63\x74\xab\xf9\xbe\x7e\xdf\x5f\x6a\x9a\xd8\x63\xa2\x30\x4d\xa4\x1d\x6c\x69\x5d\x4f\xd1\x05\x16\xb3\xc2\x0e\xf7\x35\x9f\x4e\x4d\x63\xdf\x98\x61\xe8\x3b\xac\x34\x8b\x1a\xde\xab\x49\xc3\xdd\x8b\xd0\x9f\x7d\xd9\xcb\xc3\xcb\x54\xf5\x90\xed\x46\x53\x0f\x37\xb0\xe2\x46\x63\x2f\xe9\x86\xf6\x49\x0d\xad\xc1\xc4\xcd\xe3\xd5\x97\x4c\x7d\xdb\xcb\xe4\x54\x7e\xb1\x86\x9c\x4c\x2e\x95\xde\xf9\xa9\xd6\x36\x6b\x68\x89\x7c\xa6\xd6\x60\x10\x8e\xbb\x42\x42\x45\x33\x60\x5e\xc5\x59\x46\xb0\x90\x75\xbb\x5d\x16\x03\x1b\xf6\xde\xf4\x14\xf6\x61\x37\xd9\xf5\xd3\x43\x9c\x81\xc1\xc1\x0b\x11\x15\x8a\x6c\x41\x03\xa6\xad\x25\x0a\xb8\x01\xb4\xa5\x6b\x8b\x6c\x74\x49\xa5\x56\x1a\xcd\x8f\xdf\x59\xc8\xa5\xed\x08\xe2\x63\x7f\x78\x51\x11\x2e\xc6\xe7\x83\x8f\xfd\x87\x8b\xd5\x66\xc2\xd2\x77\xd5\x2d\x46\x47\x48\x3f\x2f\xfb\xcd\xe9\xd4\xdc\x19\x0e\x38\xca\xa8\xb4\x84\x81\xd1\xca\x42\xd5\x18\x7b\x75\x4c\xb2\x84\x2f\x52\xc2\xc0\xc4\x53\xba\x09\xf5\x7a\x4e\x31\xb5\x57\x4b\x30\x58\xb0\xe2\x58\xb3\x1b\x5c\x63\x47\x0e\xad\x8a\xc4\xfe\xe6\x2d\x83\x55\x55\x58\xf7\x8d\xf1\x9e\xd9\xff\xdc\x29\xac\xb6\x3c\x63\xfd\xb3\xfb\xe1\x8f\x83\xb2\x7e\x78\xf6\xfd\xf0\xc7\x3a\xa9\x66\xfc\x69\x70\x35\xb8\xed\xdf\xaf\x11\x4e\x2a\x4d\xd6\x09\x27\x52\x0f\xb8\xea\x3d\xa5\xd2\x47\x04\x45\x06\xf2\x0a\x51\x25\xd1\x13\x95\x74\x42\x01\x20\xcc\x7a\x22\x1f\x86\xc0\x59\x9f\x70\x42\x63\xaa\x16\x4e\x7c\x31\xfd\x96\xf7\x51\x73\x52\xdb\xbe\x31\x3b\x84\xfe\x49\xb0\xf2\x99\xcd\x71\x93\x3e\x45\xa0\xdb\x3e\x81\xd2\x16\x7c\xc6\xb4\x20\xcd\x66\x44\x98\xe1\x80\xf7\x25\x1c\x4b\xf0\x5c\x8f\x2a\x14\x56\x8a\x55\xf3\x42\xeb\x8c\x30\x22\x00\x04\xce\x77\x62\x04\x29\x41\xd8\x57\x5a\xe6\xca\x12\x1a\x51\x95\x2c\x50\x04\x36\x2c\x30\x67\xa6\x98\xe1\x99\x15\x0e\x40\xcd\xa9\x90\xc4\x5f\x0d\x8a\xda\xf5\xd4\x9a\xf6\xef\x29\xd9\xf2\x98\x3d\x5c\x9d\x0f\x3e\x0e\xaf\xca\x24\xf0\xfd\xf0\x53\x49\x84\xbd\x1c\x9c\x0f\x1f\x4a\xb7\xb9\x96\x64\x57\xcb\xf5\xd5\x66\x6b\x8e\xa2\x7f\xe9\x14\x9d\x9b\x4f\x4f\xf5\xe2\xd6\x40\xc4\x79\xe5\xb7\xb2\x0e\xb7\x2e\x24\xcf\xfd\x31\x60\x4a\xd4\xfa\x25\xda\x9a\x90\xac\x0f\xb2\x64\x43\xaa\x0f\x55\x58\xea\xfb\xaa\xea\x54\xae\x4e\xd9\xbd\x08\x41\x97\xc7\x85\x65\x29\x8c\x61\x00\xa3\x41\x93\x11\xab\xc6\xad\x55\x30\xec\x1f\xc1\x45\x9d\xe6\x52\x19\x57\x22\x10\x27\x7a\xfc\x8b\xd4\x0b\x0a\xae\xc6\x63\x74\x47\xc8\x88\x39\xeb\xc1\x8c\xaa\x79\x3e\x39\x8e\x78\x7a\x52\xe0\x13\x9e\xe0\x8c\xa6\x58\x4b\xd2\x44\x2c\x4e\x26\x09\x9f\x9c\xa4\x58\x2a\x22\x4e\xb2\xc7\x19\x44\xc0\x38\x77\xea\x89\x6f\x76\xc6\xff\xfd\xe2\x4f\xdf\x1e\x5d\xfc\xe5\xdb\x0f\xcb\x16\xb2\xa6\xfd\x1f\xb0\x08\x67\x32\x4f\x6c\xc4\x9c\x08\xd7\xc6\x1d\xf9\x9c\xac\xdb\xef\xab\xf2\x76\xed\xa6\xbf\x9e\xdd\x3c\x94\x2c\xd6\xe5\x7f\x5e\x0e\x2e\xaf\x6f\x7f\x2e\x71\xca\xfb\xeb\xdb\xfe\xa7\x12\x43\x1d\xdc\x7c\x3f\xb8\x1c\xdc\xf6\x2f\xc6\xee\xe1\x2e\xb6\xb7\x1f\x18\x7f\x66\xe5\xa5\x91\x8e\x03\x2e\xf5\x74\x8a\x3e\x72\x81\x7e\xf0\x3b\x79\x34\xc1\x12\xae\x18\x77\x67\xc9\x1e\xca\x78\x0c\x8c\x17\x91\x6c\x4e\x52\x22\x70\x62\x6d\x06\x52\x71\x81\x67\xe6\xa6\x97\x91\xc0\x2a\x9a\x23\x99\xe1\x88\xf4\x50\x04\xd4\x30\xeb\xc1\xa6\x80\xaa\xc5\x67\x55\x3b\xdf\x6d\xce\x14\x4d\x89\x53\xc1\xed\x3f\xef\xcd\x66\x6c\xb1\x39\xd7\xf7\xdf\x97\x85\xbd\x8f\x17\x3f\xdf\x0f\xc6\x77\xe7\x3f\xac\x5c\x4f\xf3\x59\x69\x64\x77\x10\x80\x74\xc6\x93\x3c\x65\xe1\xdf\xdb\x8f\x6d\x78\x75\x3f\xf8\x54\x1d\xdd\x75\xff\xbe\x4c\x19\xb7\xe5\x00\xb7\x0f\xdf\x5d\x5f\x5f\x0c\x4a\x2e\xe1\x0f\xe7\xfd\xfb\xc1\xfd\xf0\xb2\x44\x3f\xe7\x0f\xb7\x06\x8d\x70\xd5\x34\xdd\x08\x6a\x26\xaa\xa7\x15\x4e\x73\xdf\xac\xb0\x15\x27\xea\xdb\x80\x72\x73\x96\x8f\x02\xb8\x1d\x13\x0e\x06\x56\x9d\x23\x6f\x52\x8d\xcc\x48\x6b\xd9\xa1\x2a\x6f\x13\x6a\x66\xc7\x2b\x37\x7a\x15\x57\xbe\xf7\x43\x30\x50\xa0\x46\xd9\xc6\x49\xc2\x9f\x4d\x28\x6f\x4a\xf5\xad\x6c\x81\xd1\xf4\x2b\xb2\xf0\x10\x1e\xd7\x70\xbc\xf2\xb6\x90\x48\x10\x75\xc9\x73\xa6\xb6\x27\xb9\xfe\x55\x89\xef\x0c\xae\x7e\x1c\xff\xd8\x2f\x53\xe0\xf0\x62\x35\xab\x09\x9b\xa8\xb9\x8a\xfb\x57\x3f\xfb\x4b\x18\x02\xbe\x7b\x5e\x43\x35\xb2\x6b\x94\x50\x2d\xf6\x46\x58\x6b\xaf\x09\x48\x34\x88\x50\x30\x39\xa4\x7a\x72\x10\x60\x9a\x19\x7f\x92\xe1\x4f\x66\x90\xa7\xee\x8f\x4a\x7b\x12\xd6\x05\xac\xa9\x2e\x9e\x1e\xda\xb1\x5a\x35\x43\x84\x3d\x51\xc1\x01\xcf\x16\x3d\x61\x41\xb5\x34\x6e\x5a\xd6\x73\x3d\x85\xff\xdd\xac\x4d\x30\x8c\x56\x18\xd7\x1d\x17\xea\xdc\x07\xf2\x6e\x67\x0d\xa9\x0b\x68\x5d\x0e\x65\xad\x37\x74\x2c\x7f\x5b\xb3\x39\x3b\x06\xfc\x96\x27\xfc\x8f\xe4\x9c\xe2\x44\x33\x80\xfd\xc9\x8b\xfd\xab\xbb\x61\x59\x7e\x2c\xab\x19\x01\x5f\xde\x5a\x5e\x04\x43\xa5\x19\xb9\x53\x26\xee\xfe\x7a\x61\xb4\x0b\x00\x3d\x36\xe7\x36\x50\x2c\x40\x00\x72\x28\x28\x19\x16\xb2\xf2\x85\x44\x00\x84\x56\x04\x5c\xe9\x3b\x0b\xc2\x99\x9e\x38\x8d\x47\x8c\x7c\xce\x08\x93\x10\x1c\x60\xee\xb3\xc2\xd7\x2e\x8f\xd1\x70\x0a\x2c\x41\xbf\xce\x50\xce\xac\x03\x4c\x5f\xb8\x66\x90\x3d\x2d\xca\xda\x21\x78\x0d\x11\x0c\x2f\x8c\xb8\x60\xa9\x62\xf0\x23\xf6\x93\x77\xa2\xc1\xa3\x29\xd7\x0c\x48\xef\xa2\x6d\xef\x14\x61\x26\x69\x0f\x69\x85\xa5\xba\xa7\x90\x3a\xa0\x15\x4a\x1b\xc2\xa5\x39\x8d\xfd\xf3\xf5\xaf\x81\xa5\x38\xe1\xf0\x32\xa8\xbf\x0b\x2a\x57\x41\x83\x68\x9c\x18\x8f\xc9\xb8\xfd\x9d\x10\x71\x41\xac\x9f\x65\xe3\x6b\x60\x1d\x63\xbf\xc7\xf2\x71\xc9\xf7\x30\x64\x52\x61\x16\x91\xb3\x04\xcb\x2d\x83\x90\x9c\x8d\xa3\x57\x96\x38\x6e\x6f\x1f\x6e\xee\x87\xdf\xad\xe1\xf2\xd5\x8f\x97\xc3\x80\xa2\x24\x77\xee\xb9\x89\xe0\x38\x46\x9a\x7d\xce\xb8\x71\x05\x5a\xc1\xbf\x80\xfe\x36\x79\x3d\x3e\xa0\xb2\x04\x3b\x5e\xa4\x23\x58\x3b\x47\xe8\x4a\xa0\x76\x21\x50\xa4\x57\x02\x05\x26\x0f\xb7\xd5\xe0\x59\x34\x05\x49\xac\x75\x2b\x4b\xb0\x9a\x72\x91\x1a\x2e\x5f\x9a\xb4\x69\x7c\x75\xa3\x94\x29\x22\x44\x9e\x29\xea\xb0\xdc\xab\x52\x2a\x54\x78\xe7\xb3\x4b\x22\x25\x9e\x91\x5d\x1c\xd0\x75\xca\xc3\xdd\x8f\xe1\x3f\xc1\xc1\xdc\x46\xf6\x2f\x8d\xd0\x45\xbe\x3b\x7a\xba\x66\x1f\x4d\x20\xcf\x0d\x4f\x68\xb4\x65\xc0\xdd\xc7\xfe\xf0\x62\x3c\xbc\xd4\x4a\x7c\xff\x7e\x70\x51\x12\x25\xe0\x59\xff\xe3\xfd\xe0\xd6\x82\x58\xf7\xbf\xbb\x18\x8c\xaf\xae\xcf\x07\x77\xe3\xb3\xeb\xcb\x9b\x8b\xc1\x9a\xc8\x9c\xc6\xc6\x97\xad\xab\xd5\x57\x4f\x97\x7e\x81\x1d\xd6\xbc\x2c\xb4\x97\x41\xd6\x18\xa6\x09\x38\xc1\xb9\x71\x86\x63\xc4\x78\x4c\xe0\x67\xe9\xac\x33\x1e\x39\x1a\x0d\xd5\x57\x49\x82\x70\xae\x78\x8a\xc1\x6b\x93\x2c\x46\x0c\x4f\x34\x6b\xc5\x49\x12\x84\x77\x89\x9c\x31\xcd\x62\x75\x63\x06\xa2\x3d\x4a\x88\x66\xe7\x59\x90\xec\x67\xfd\x06\x53\xca\x20\xd2\x36\xc5\xe2\xd1\xb8\x99\x8a\x2e\x8b\x43\x21\x11\x96\x23\xa6\xc7\x45\xac\x61\xa8\xcd\x0a\x9f\xb6\x7a\xab\x71\x75\x52\xfc\x48\xf4\xaa\xa4\x79\x34\x47\x99\xe0\x33\x41\xa4\xb4\xb6\xe5\x08\x33\x13\x80\x60\x5f\xd7\xd7\xd0\x88\x31\xae\x97\xc2\x99\xb0\x63\x92\x11\x16\x13\x16\x51\x93\xd6\x07\xbe\x7b\x6f\xda\x9c\x09\x9c\xcd\x91\xe4\xe0\xf4\x86\x65\x07\xfb\x95\xf9\xc8\xdd\x64\x66\xc6\xe6\x71\x68\x81\x16\xb9\xe6\x13\xd7\x20\x27\x9a\x55\x86\x8f\xdd\x65\xe8\xdc\x2e\xc6\x0e\x98\x66\x09\x51\x06\xac\x1f\x96\x1c\x36\x43\xaf\x75\x69\x3f\xf4\x36\xd5\x6d\x82\xbe\xb0\xdd\x98\xb1\xb4\x23\x3a\xae\xb1\x6c\xdb\x23\x85\xbe\xc7\x2c\x4e\x74\x2b\xce\x87\x51\x3e\x8b\x90\x8a\xd2\xd7\x54\xe3\x4e\xe3\x2e\xb7\x68\x84\x73\xb9\xcb\x35\x5a\xc9\xc5\x34\x56\xc1\xa3\x22\x28\x04\xc8\xdb\x26\x62\xc2\xea\x66\x9a\x45\xe2\x84\xdb\x55\x32\xaf\xe7\xa6\xfe\x13\x82\xd1\x34\x5c\xb3\x99\xa0\x2c\xa2\x19\x4e\xb6\xd2\xfd\x2a\xc1\xf8\x36\xc6\xfd\x6b\x3a\xd5\xe4\xf3\xcd\x92\xdb\x56\x11\x91\x42\x82\xb2\x1d\xa6\xdf\xc2\x0d\x2c\x49\x36\xab\x81\xc8\x22\x9a\x04\x0b\x9e\x1b\x7f\x1c\xac\x0b\x89\x6b\x8e\xea\x71\xdd\x76\xeb\x93\x81\xcb\x01\xd0\x5b\x6c\xb6\x89\xfc\x69\x5a\xbf\x4a\x2b\xb6\x77\x13\x8c\x87\x93\x9b\xfa\x36\xeb\x76\x20\x78\xf8\xaf\x55\xb4\x73\x89\x33\x4d\x33\x16\xb6\x1f\x17\x73\xb4\x4a\x92\xad\x0a\xe6\xe2\x67\x02\xdf\xb9\xcf\x0b\x69\xbf\x1b\xc5\x12\xda\x00\xa8\xe5\x4e\x4a\x31\x04\x41\x8e\xb9\xa5\xf1\x69\xae\x65\x59\x84\x21\x0a\x01\x7d\x4d\x8e\x67\xc7\xc8\x15\x61\xe8\xa1\xfe\xcd\xcd\xe0\xea\xbc\x87\x88\x8a\xbe\x71\x31\x8b\x36\x60\x69\xc4\x14\xb7\xd2\xca\xc2\x15\xd0\x48\x89\x98\x91\xd2\x9c\x5d\x74\x13\x84\x2a\xcf\xa8\x54\x36\x7c\x56\xf3\x95\xa0\xd4\x09\x4d\xab\x62\xb6\xa1\x90\x5c\xcd\x77\x21\x0d\x2c\x65\x9e\x6a\x5d\x76\x4c\x71\x3a\x16\x3c\xd9\x85\x29\x9c\xc3\x54\x40\x5d\xf6\xe9\xf9\x14\xa7\x48\x37\x6b\x43\x41\xbc\xcb\xd1\x8b\x74\x5a\x30\xd2\x7c\x59\xdf\x9b\xc1\xbd\xe5\xbc\x0f\x36\x1e\x8d\xba\x10\x08\x48\xdf\x6f\x60\x15\x85\xd9\x78\x6c\x2d\xf5\x63\x1c\x45\x5a\xe5\xde\xf3\xa4\x82\xfa\x39\xce\x25\x60\x3b\x7a\xb1\x69\xae\xa3\x73\x37\xcc\x4c\x73\x30\x08\x06\xd6\x57\xae\xe4\x11\x2d\xda\xaf\xe9\x77\xb2\x58\xea\xd5\x55\xb8\x79\x90\xde\xa4\x62\x2e\x61\x49\x60\x27\xa5\xa9\x90\xa3\xe6\x64\x81\xe6\xf8\x89\x94\xba\x74\x09\x31\xba\xe1\x05\xcf\x45\x1d\xa3\x1b\xb1\x73\x92\x09\xa2\x25\xfd\xaa\x03\xc5\xd3\xf4\x6d\x99\x12\x3b\xba\xee\xe8\xfa\xdd\xd3\xf5\x99\x29\x94\xd4\xf7\x85\xb1\x76\x12\xe0\x4c\x63\xe3\x8c\xf3\x64\xdc\xc2\x26\xd2\x7e\xc5\x4b\x9e\xb0\x4a\xd9\x28\x80\x04\xe0\x39\xc8\x47\xa5\x6b\x93\xeb\xbb\x2e\x48\xb1\xb5\xc3\x5b\xb1\x0c\xce\x65\x16\xd4\xcb\xd9\xe5\xbc\xd7\xb5\xb2\xaa\x25\xf4\xe2\x62\xce\x99\x91\x6f\xbc\xbb\x2c\xac\x7f\x5a\x3a\x4c\x4e\x14\xa1\x6c\xa9\x1a\x9b\xa1\x67\xbd\xc0\x46\xee\xf8\x47\xce\x15\x96\xdf\x1c\x8f\x98\x16\xa2\x1e\xc9\xc2\x98\x5b\xb5\x98\xf2\x3b\x2d\x8b\x1f\x49\xc2\x24\x84\x7b\xff\xce\xb8\xe7\x34\x89\x3b\x73\xb5\x51\x4d\x4d\x11\x38\x08\xba\xf6\xbd\x40\x88\xae\x6d\xd4\x4a\x49\x45\x00\x34\xc8\xf9\x66\x2e\xf6\x99\x19\xfe\x8c\x28\x48\xb1\x56\x54\x81\xce\x14\x9b\x2a\x73\x4b\x43\x5f\x6b\xba\x32\x54\x21\x38\xf8\x49\xe2\x7c\x37\xc6\x2f\x97\xdb\x58\xcb\x19\xbd\xb6\x70\x67\x63\xde\x4f\x9c\xdd\x28\x12\x7c\xa9\x74\x1b\x96\xc8\xec\xf4\xc4\xb0\x03\xe7\xbf\x26\xec\xf8\x99\x3e\xd2\x8c\xc4\x14\x43\x04\xbc\xfe\xd7\x89\x9e\xd7\xbf\x9f\xdd\x5e\x5f\x8d\x8b\x4c\x9e\xff\x1a\xb1\x7e\x22\xb9\xcf\x52\x40\x8c\x33\x1f\x6e\x9f\x09\xe2\x44\x42\x3b\x17\xb0\xba\x16\x66\xc4\x11\x6b\x1a\x41\xcc\x23\x79\x8c\x9f\xe5\x31\x4e\xf1\xaf\x9c\x81\x2b\xbd\x0f\x7f\x9e\x25\x3c\x8f\x7f\xc2\x2a\x9a\x9f\xc0\xb9\x56\x27\xe4\x89\x30\x65\xdc\x54\x7a\xb9\x62\x48\xde\x95\x10\xad\xff\xef\x7a\xcc\x45\x52\x91\xd4\x9a\x6c\x44\x32\x85\xfe\x1f\x41\x26\x9c\xab\xfa\x4b\x8a\x4f\xa7\x92\x6c\x74\x21\x15\x4a\xda\xdd\x35\xfa\xcb\x9f\xbf\xfd\x83\x26\xa1\x6d\xd6\x78\x78\x77\x3d\xd6\xdf\xff\xfb\xb9\xfd\x5e\x6e\xc0\xee\xae\xb3\x82\xb5\x39\xe2\x31\x81\xf3\x39\x83\xdb\x4f\x80\xf3\x02\xd8\x1b\x90\x43\xb1\x8f\x75\xdc\xed\xbc\xd4\xfa\x6e\x2a\xdb\x56\x8b\x09\x2a\x76\x30\x47\x74\x84\x18\x47\xa9\x89\x35\xc5\x0c\xfd\xc7\x0f\xdf\xd5\x6f\x60\x2e\xe8\x56\x1d\x52\x0b\xd7\x10\x74\x29\xe9\xaf\x44\x22\x4d\x35\x9a\x8a\x79\xaa\xbb\x16\x44\xce\x79\x12\xa3\x67\x02\x6a\x92\x8d\x03\xf5\x5a\xb9\x20\x23\x16\x36\x01\x21\x87\x08\x27\x8a\xcf\x08\xdc\xd5\x4e\x51\x53\x44\x68\x51\xc5\x64\x69\x28\x2e\x48\xcf\x40\x7d\xdd\xfd\xc9\xc5\x56\xc3\x34\xe1\x91\x4b\x6a\xb1\x26\xb9\x78\x52\x3f\xf3\x69\xd5\xf4\x8a\x9a\x6d\xf8\xd5\x4d\xb6\x66\xdb\xfa\xa5\xb1\x49\x28\xd6\x86\x55\xdd\x99\xfa\xc1\xd0\x88\xb3\x71\x42\xd9\xe3\x56\x9b\x71\xed\x44\x39\xdd\x82\x5d\x33\xdd\xa2\xb7\x73\x1b\x0b\xc8\x06\xe7\xe3\x63\x9e\x24\x26\xb5\x25\xdc\x1e\x90\xbb\xcc\xba\x81\x30\x90\x99\x1c\x50\x12\x5b\xbf\x97\xd5\x84\x05\x61\x10\xf0\x36\x62\x93\x85\xf5\xd9\xca\x1e\x92\x79\x34\x77\x99\x79\x11\x67\x52\x8b\xd1\x5c\xa0\x88\xa7\xa9\x29\x6e\xca\x08\x52\x9c\x27\xd2\x46\xbb\xb3\x23\x85\x23\x35\x62\x45\x7f\x6b\x4e\x9e\xa9\x80\xb4\x5b\xea\x5e\x7b\x97\x4e\x51\x69\x69\xa5\xc0\x4d\xe3\x10\xb3\x01\x8c\x60\xc6\x13\x15\xa0\x3f\xf0\xe5\xb3\x64\x36\xac\x41\x33\x90\x73\x2e\xd4\x38\xae\xe5\x39\x6b\x89\xa6\xca\x08\x19\x39\x4a\x20\x68\x98\x3f\x69\xe1\x9f\x3c\x7b\xe3\xeb\xaa\x21\x68\xaa\x5e\x35\x82\x76\xc7\x68\xe5\xc8\x36\x25\xc1\x86\xb5\x32\x08\x1e\x51\x39\x26\x7c\xdd\x18\xef\xe0\xab\x33\xfd\xd1\xca\xc5\xab\x9e\x3b\x27\x04\xf1\xb8\x00\x9b\x33\xf7\xba\xcd\x08\x59\xb5\xa6\x16\x3a\xe1\xe5\x32\x47\x57\x4d\xe5\xa1\x6c\xc9\xd5\x63\x01\x93\xbd\x24\x20\x6b\x62\x31\xa1\x4a\x60\x51\x42\x0a\xf1\xfa\xa0\x24\x58\x40\x7c\xd6\x88\x19\xdc\x38\xa3\x29\xc4\x28\xa6\x12\x12\x44\xe0\x2e\x0d\x9c\x61\xa8\x9d\x12\x58\x39\xda\x45\x9e\xa3\x89\x3f\x87\xc0\xb2\x82\x34\x1c\xb3\xd3\x1d\x79\x7c\x2c\xad\x9f\xf1\x28\x2f\x04\xb9\x08\x24\x5c\x8b\xa9\x83\x28\x93\x74\x36\x57\x88\x32\x6b\x77\xc4\xc9\x8c\x0b\xaa\xe6\xa9\xec\xa1\x49\x2e\xb5\x16\x6a\x82\xd5\x4c\x3c\x0a\x51\x51\x2b\x2e\xb4\x6b\x12\x71\x5c\x69\x70\x59\x45\xd9\x82\x34\xda\x1d\xca\x41\xe5\xae\x58\x43\x38\x7d\x8f\x33\x58\x6d\x83\x42\xdd\x46\x03\x4f\x89\x4c\x1c\x20\x77\xc8\x4e\x50\x05\xa4\xe9\x1c\x00\x2a\xe4\xde\xbc\x14\xaf\x51\x88\x0b\x99\x64\x50\x41\x5c\xec\x36\x48\x5e\x65\x64\x4a\x83\xde\xe4\x9d\x4e\x69\xa6\x6a\x03\xb7\x96\x5d\x45\xb7\x01\xe6\x4f\xbb\xc5\x86\x64\x2c\xa0\x66\x40\x6a\x1b\xb1\x3b\x42\x9a\x81\xdc\x96\xf6\xde\x94\xc6\x85\x29\xd8\x44\x8f\xd5\x24\xbf\x8b\x13\xfb\x7c\x70\x77\x76\x3b\xbc\x31\x90\x13\xd7\xb7\x97\xfd\xfb\x71\x8d\x5f\xbb\xe6\xad\xcb\xfe\xed\x0f\xe7\xeb\x5f\xfb\xfe\xbe\x9c\x95\x5d\xf3\xca\xed\xdd\xea\x64\x8e\x16\x43\xac\x49\x0a\xab\xed\xe7\x14\x65\x0b\x35\xe7\xcc\x87\x28\xc4\x25\xde\x74\x84\x4c\x46\xb0\x82\x10\x22\x21\x55\x8d\xe3\xf0\x1e\xe2\x72\xd6\x4b\x98\xe5\xcd\x32\x30\x6c\x7b\x15\x8d\x36\x38\x91\x9f\x12\x3e\x01\xbf\x75\x5e\x2a\x71\xbb\x22\x02\x7d\xc7\x78\x9f\x73\x2a\xb3\x04\x2f\x96\x7a\x58\x77\xe5\x5c\xe1\x94\x40\xc4\x71\x81\x1f\xe7\x92\x45\xf4\xce\x40\x02\x93\xbf\xd7\xe9\x14\x32\x99\x14\xc5\x8a\xa0\x09\x51\xcf\x90\x37\xe7\x7e\xf5\xb6\x54\x17\x30\x22\x8f\x47\x0c\xcc\x39\x23\xbd\xc8\x71\x0e\xd1\x7e\xa3\x0f\x3d\x34\xfa\x10\x93\x27\x92\xf0\x4c\xef\xbc\xfe\xa1\xe1\x92\x19\xa4\x98\x26\x57\x5c\x79\xcb\xdc\x2e\xfb\x29\x48\x44\x33\x90\xcc\xc7\x44\xb7\xfb\x7a\x82\x47\x89\x92\x1d\x3b\x83\x31\x20\x1c\xc7\x5a\xc9\x06\x56\xe6\x86\x57\x84\x00\xb1\x60\xea\xa5\x5a\x99\x9b\x88\x14\xde\xfc\x6d\x7a\x0c\xdb\x2c\x9b\x3d\x6b\x77\x80\x3d\xbd\xa0\x4b\x76\xd7\x8b\x5c\x6b\x25\x3f\x90\x05\xa4\x60\xdc\x60\x2a\xb6\x74\xcd\xd6\xc5\xbc\xbe\x88\x93\x76\x50\xd3\xd1\x01\xb9\x6b\xeb\xd7\x61\x37\xc7\xad\x8f\xd5\x7b\x2d\x2d\xd5\xc5\x72\xf9\x8e\x5b\xaa\xad\x0f\x4d\x4a\x6a\x63\x08\x03\xaa\x2a\x5e\x19\x89\x36\xd0\xb8\xfc\x00\xef\xf4\x77\x6b\x35\x15\x2f\xae\x45\x61\x4d\x7f\xd8\x05\x9b\x1c\x5f\xcd\xc7\x27\x6b\x47\x1c\x25\x5c\x96\xb1\x72\x5a\x0f\xfa\xcc\x7e\xba\x6a\xdc\x83\x90\x7c\xb5\x5c\xb8\x51\x40\x43\xcd\xc2\x57\xc0\x20\xcd\x3d\xa3\xac\x87\xcc\xbe\xdd\x43\x14\xa2\x2d\x41\x21\x4b\x0a\xe4\x00\x16\xa3\xc2\x0d\x32\x62\x45\xcc\x8a\x44\xcf\x24\x81\x30\xb7\x88\xa7\x19\x98\xf8\xed\x70\x6d\x4b\x24\x36\x11\xc3\x3d\xc4\x73\xa5\x1b\x33\x39\x39\xce\x88\x6b\x13\x7e\x0a\xb7\x87\xf1\xbd\xd9\xe0\x77\x0f\x2c\x6d\x68\xdd\xdc\xa5\x94\xa1\x4f\x44\x41\x2b\x00\xdc\x1f\x4e\x10\xf4\x84\x6a\x08\x65\xfd\xda\xef\x70\xa2\xec\x4c\x36\xd8\xf9\x02\x38\xe5\xbb\x84\x4f\x56\x1b\x09\xa0\x71\xf4\x70\x3b\x74\x16\xc9\x22\x7e\x2a\x40\x2f\x2e\x79\x14\x07\x37\xb7\x83\xb3\xfe\xfd\xe0\xfc\x18\x3d\x48\xa2\x97\xc7\x4f\x17\xf2\xab\xbd\x4a\x62\x46\x6e\x91\x58\x98\x54\x04\x37\x19\x42\x88\x10\xa5\x2c\xe8\x35\x8c\xa3\x0c\xd3\xb2\x9a\xb0\x01\x24\x85\x5a\x43\x1d\x00\x0b\x55\xe7\x69\x23\xf3\xd6\x9d\x40\x88\x93\x1a\xbf\x9f\x28\x35\x33\xde\x74\x39\x32\x6f\x1d\xf9\x94\x23\xfa\x5e\x7a\x32\x70\xb4\xd4\x9c\x50\x81\x5a\x4d\xcb\x10\xd5\xb8\xfd\x9c\x82\x10\xf7\x4b\x9c\xad\x4e\x3f\xc5\xcf\x25\xa2\x35\xa2\x70\xe0\xbb\x7f\xe9\x73\xe0\xd8\xda\xd8\xb0\xc2\xdd\x27\x58\x38\xb4\x0c\x6f\xf5\x7c\xd3\x64\x7c\x48\x67\x24\x0b\x27\x56\x19\x84\x8d\x63\x95\x08\xce\x0e\xfc\x42\x19\x2a\x5d\x89\x3d\x34\xa5\x9f\x6d\xa3\x45\x7c\xbb\x7b\x35\x08\x78\x68\x88\xa7\x9c\xe3\xe5\x33\xb5\x81\xd8\x70\x03\xdf\xaf\x14\x22\xb9\xd4\x22\x51\xa4\xc5\x25\x41\x22\x2e\xf4\x4d\x01\xdd\x16\x5e\x88\x75\x22\x83\xc2\x42\x2f\xca\xb2\x57\x66\xd5\xe9\x2f\x6a\x90\xc4\x58\x91\x23\x2d\x7a\xad\x49\x80\xb6\x39\x32\x90\x4d\x83\x55\x00\x07\x56\xdc\x3c\x13\x32\xc3\xcc\x85\x66\x37\x0c\xd7\x5d\x79\x3b\xb0\x2a\xad\x02\x61\x48\x0f\x03\xf9\x0a\x52\x7f\x4a\xe3\x90\x19\xac\xe7\xca\x71\xd8\xe8\x97\x43\x58\xb6\x67\xec\x83\x71\x1a\x06\x9b\x67\xf1\x21\x0d\x36\xc1\x52\x21\x3b\xa6\x26\x53\x44\xa0\x22\xbe\xac\x11\xb6\xa4\xdb\xb7\x55\xde\x34\x09\x95\xb5\x58\x02\x9e\x11\xe9\x70\x53\x0c\x4a\x8c\xd6\x69\x9c\x20\x6c\x4a\x31\xfb\xb3\x6d\x6b\x32\xbb\x5b\x22\x64\x26\x10\xa4\xbf\xdc\xf4\x31\xea\xb3\x25\xbc\x2c\x17\x97\x55\x5a\x2f\x73\x27\xe1\xe4\x19\x2f\x24\xca\x84\x81\x96\x31\x91\xfb\x6e\xf2\xa0\x81\x95\x3f\xf2\xa1\x10\xca\xa5\x4e\x20\xb0\xc5\xac\x0f\x9a\x73\x72\xef\xf8\x05\x5c\x79\x95\xa8\x72\x2f\x90\x17\xcd\x15\xb6\x8a\x16\xac\x4e\x91\x71\x34\xc7\x6c\x46\xc6\xce\xc8\xba\x8d\xb6\xa4\xdb\x39\x83\x66\xce\x6d\x2b\xf5\x97\xd3\x8d\x51\x98\x6c\xfd\x17\xf3\xaa\x37\x20\xea\x43\x20\x15\x9e\x11\x64\x46\xd4\xca\x2c\x5d\x8a\x18\xb3\x60\xc3\xa0\x27\xd8\x56\x07\xe5\x28\xfa\x26\xe1\x1d\x42\x9f\x2e\xf0\x84\x24\x6f\x13\x39\x01\x5d\x5b\xe3\x3c\x78\xeb\x4c\x36\x00\x41\xcf\x60\xcf\xaf\xb0\x0c\x6b\xbd\x17\x79\x5d\x6e\xc0\xaa\x79\x96\xaa\x9f\xef\x30\x51\x57\x2b\x64\x9b\xa9\x36\x55\x10\x09\xaf\xbd\xa0\xd2\x46\x9d\x81\x2d\xbc\xfe\xaa\x36\xe5\xed\x06\x12\x14\xfc\x68\x18\xc7\xce\x15\x3f\xd6\x4e\x65\x6b\x90\x81\x96\x55\xf0\x86\x53\xc4\x38\x23\x88\xca\xe2\x65\x55\x4e\x87\xf2\x10\x3d\x5a\xc4\x37\xc6\x17\x5f\xa5\xcb\x17\x5f\x7a\x69\x4b\x4b\x01\x9e\xe0\x6d\x03\x2e\xbf\x9b\x11\xad\xa8\x62\xb1\x00\x88\x4f\xc3\x87\xcb\x32\xdd\xda\x71\xee\x5d\xe0\xbe\x77\x08\xae\x41\xa4\xae\xe2\x08\xc4\xc8\xca\xe0\x90\xc1\x41\xb5\x2f\xd9\x8f\x2c\x4c\xcd\x88\x79\xcb\x06\x10\x22\x95\x28\xc5\x19\xf8\xf4\x18\x57\xc5\x57\x06\x76\x49\xf9\x2d\xec\x39\x41\x5c\x9a\x1a\x5a\x0d\x2b\xb0\xce\xb4\xe3\xae\xdf\x62\x5d\xcb\xf0\x96\x0e\x9a\x77\x46\x9f\x08\x73\x34\xdd\x73\x67\x42\x0f\xca\x75\x9a\x2c\x8e\x30\x84\x19\x93\x38\xf4\x7c\xac\xe6\x48\xc6\x20\x73\x08\xf6\xc8\xf6\x4b\x76\x5f\x1b\x46\x63\x40\xd2\x4a\xe8\xf6\x2e\x30\x3c\xa4\x52\x8b\xdb\x6b\x32\xc1\xb1\x44\xbf\x63\x5c\xfd\x2e\x40\x36\x76\xc6\x0b\xf8\xd4\x99\xa0\x7a\x4b\x25\x5b\xe0\xd0\x5a\xc2\x41\x38\x40\xd8\x5a\xbb\xf2\xbb\xc6\x06\x14\x81\xef\x2f\x2a\x8d\x0e\x96\xb3\xe0\x9a\x6a\x5e\x75\x1e\x7b\x54\xbd\x16\xaa\x06\x4f\x53\x56\xaf\x38\xe9\x25\x43\xa7\x5c\xe7\xa2\xf7\x7b\xd1\xca\x35\xbf\x84\x08\xb0\x0b\xb5\xa5\xad\x23\xa7\xd6\x80\x20\xd7\xdb\x25\xb6\xc9\xf3\x6c\x92\xcb\x45\x39\x74\xcd\x96\xc1\x68\x40\xf9\x3d\x1e\xb1\x8f\x5c\xd8\x2b\x58\xda\x3a\x03\x13\x1c\x3d\x1e\x11\x16\x23\x9c\xab\xb9\x41\xdb\xb5\x7e\x85\x85\xa5\x06\x2d\x69\x00\xd9\x78\x28\x0d\x2a\x23\x2c\x62\x57\xf1\xe2\x89\xbb\x51\x8c\x58\xd0\x08\x54\x32\x80\x42\x4f\x50\xaa\xb6\x49\xd5\x24\x52\xeb\x57\x4d\x6b\x51\x57\x84\x75\xa9\x04\xeb\xea\x73\x56\x2a\x2a\x0b\x35\x18\x20\xc0\x89\x4f\x97\x57\x67\xe8\xac\x8d\x4e\xbf\xd3\xf4\xbc\xec\x85\xe8\x59\x8d\xc2\x98\xa4\xec\x0c\xb4\xa4\xf3\xad\xe3\xb5\x25\xd4\xe0\x69\x2e\x20\x5c\xb7\xae\xcd\xaf\xa3\x39\x4d\x0a\xdf\xc5\x37\x3d\x3f\x4c\xdd\x64\x42\x9e\x48\x62\x30\xeb\x23\x01\x91\xf9\xc6\x6a\xf8\x2d\xfa\x3f\xa6\x30\x29\xfa\xc3\x88\x7d\x02\x36\x9c\x24\x0b\x40\xd4\xf4\x2d\x63\x55\x69\xe6\xb1\x76\x00\xca\xa6\x02\xa1\xf2\x40\xcc\x5e\xcf\xf1\x13\x19\x31\xd7\xcc\xff\x41\x8f\xe8\xf7\xe8\x0f\x4d\xea\x9d\x0b\xb0\x7f\x61\x3b\xc7\xc7\x20\x7c\x3d\xb8\xe5\x2c\xa3\xb4\xfc\xc6\x99\x41\x4a\x46\xc8\x1a\x64\x0d\x0f\x8c\x4d\xd9\x13\x8f\x96\xb2\x38\xc2\x53\x8b\x05\x61\x6a\xcc\x78\x4c\xc6\xa4\xc6\xa5\xb9\x82\x49\x68\x21\xe0\x8a\xc7\x64\xad\x43\xd2\x33\xd3\x9f\xc0\x74\x23\xf3\x89\xdf\x0e\x48\xf0\xf7\xd9\xdc\xde\xfa\x50\xa6\xb4\xfa\x91\x7b\xf4\xd9\x6d\xc6\xbd\xad\x33\xd5\x85\x89\xf6\xe0\x42\xb0\x03\xa8\x77\xe8\x25\x58\x39\xf7\x7a\xf5\x38\x56\x1d\x01\xfa\x65\x3d\x73\x7b\x59\x05\xb8\xba\x50\xfb\x44\xd0\x19\xd5\xf2\x7b\x7b\x87\x2d\x70\xc2\x6d\xbc\x19\x06\x64\xb4\x95\x3b\xa3\x58\x0a\x07\xb4\x72\xe4\xe9\xaf\x70\x42\x4e\x78\x5e\x15\xe0\xed\x02\x50\x19\xba\xfb\xad\xac\xbe\xd0\x7c\x78\x66\x32\x00\xc9\x9c\x9a\x9c\xfb\xfe\xd9\x05\xd2\xa7\x83\xa7\x06\x98\x0a\x16\x2d\x57\x73\x2e\xe8\xaf\x8d\x19\x4a\xcd\x32\x7a\xe1\x69\x2d\x12\xba\xcc\x38\xcb\xd2\x3a\x10\xab\x11\x29\x54\x49\x2b\xa9\xd3\x99\xd0\x24\x07\x0c\x56\xcd\x66\xa7\x79\x62\x0a\x37\x44\x5c\xc4\xa6\x72\xba\x2c\xa5\x8f\x41\x18\xae\x13\xef\xb1\xf2\x0d\x52\x0b\x55\x69\x4b\x43\x18\x0b\xce\x4a\x01\xf4\xaf\x39\xc9\xf7\x94\x81\xf7\xa6\x31\xcb\xf7\x78\x26\x8b\x20\x64\xb3\x36\x9a\x37\x17\xeb\xfb\x0f\x3d\x53\x19\xe4\xac\x3a\xcb\xa2\x87\x80\x32\x2a\xb9\x29\x0c\xba\x91\x45\xe7\xd6\x40\xdf\xef\xc1\xa4\xf3\x1a\xf1\x1c\xcb\x32\x52\x0d\xfb\xb1\xe4\xf7\xe4\x33\x38\xab\x2c\xe2\x85\xec\x24\xae\x86\x40\x45\xfa\x78\x41\x93\xc9\x16\x4c\x6e\x59\xa8\x5e\x19\x15\x5d\x18\x50\x3c\x5b\xab\x49\xa6\x56\x1c\xd2\x2e\x9e\x05\x05\x84\xb8\x45\xf1\xb2\xaf\x81\xeb\xae\x8b\x90\xc7\x68\x29\xc5\x88\xb5\x10\xd7\xe1\x96\x70\x51\xcf\xe3\x37\x30\x40\xd8\x86\xca\x5d\x2f\xfb\xed\x9b\x4e\x84\x61\x49\x87\x7a\x24\x96\xe1\x61\xd6\x1e\x06\x5f\x09\xe4\x6d\x0c\x88\x5e\xb4\x79\xbd\x93\xe1\xc9\x71\x1c\xe1\x68\xde\x38\xa9\x09\xe7\x09\xc1\xac\x49\x7a\xad\x7d\x5c\x3d\x22\x06\xdc\x14\x58\x77\x92\x00\xc2\xaf\x5b\x02\x5b\x15\xb2\x10\xdf\x59\x0c\xc8\xec\x86\x87\x9b\xd8\x40\x37\x50\x45\x98\xb3\xfc\x50\x36\x4b\x48\x75\xad\x2c\x84\x7e\xcf\x76\x92\x44\x79\x12\x94\x85\xcc\x88\xd0\xa3\xd6\x4b\xfc\x44\x98\xd6\x19\xec\x38\x9c\x33\xe3\xd9\x25\x44\xfb\x62\x50\x3d\xdf\xb5\xf3\xa7\x41\xd6\x61\x3c\x62\x70\x70\x79\xf9\xb0\x6a\x5a\x95\x5a\xcd\x08\xed\x52\x5b\x9f\xce\x40\x88\xd8\xf8\x78\xde\x95\xcd\xc4\x1b\x9f\x49\xd3\xf7\x18\x62\x0c\x76\x76\xad\x05\xee\x97\x02\xaa\xc1\x6c\xac\x83\xe3\x7a\x25\x23\x32\x44\x6d\x94\xc3\x4e\x83\xa0\x8d\x26\x38\xa8\x17\xbd\x4b\x8a\xf2\x17\xee\x36\x68\x39\x94\x95\xae\xea\x96\x8e\x67\xb0\x4e\xae\x3a\xb7\x17\x36\x64\xbb\xec\xb2\xf5\xf9\x3d\x45\x98\xa3\x2d\xf0\xaa\x04\x06\x74\x02\xc8\x29\xff\xc9\x68\xd8\x54\x1a\x0b\x98\x2b\x73\x91\x66\x6a\x61\xab\xa2\xc1\xbd\x18\xe6\xf4\x1a\xc4\xb7\x3a\xf7\x70\xf5\x8e\x8c\x4b\x0e\xe2\xba\xce\xa0\x23\x6b\x56\xa8\x6d\xd2\x2d\x74\x88\x20\x52\x41\x6c\x68\x8a\x06\x31\x05\x66\xc7\x38\x69\xb4\x65\xed\x81\x69\x42\x9a\x6d\x81\xd2\x60\xc1\x5f\x95\xc8\x89\xe6\x5d\x38\x49\x2a\xf3\xc2\x90\x0e\xad\x7c\x91\xb9\x49\x51\x09\xb7\xbd\xb3\x3a\xc1\x13\xb2\x91\x7b\xfa\xc2\x7c\xb0\x92\x8a\xe0\x15\x88\xec\xce\xb2\x64\xd1\x2e\xa2\x3c\x0c\xbd\xab\x05\x49\x5b\x37\xb0\x10\x5a\x6d\xe5\xdd\x54\x86\x27\xdb\x6e\x88\x92\x44\xb9\xa0\x6a\x31\xb6\x46\xbf\xf6\x4c\xeb\xce\x7e\x79\x66\x3f\x6c\xa3\x51\x9f\x22\xd7\x9f\x33\x32\xc2\x3d\x25\xa8\xa9\xa0\x63\xa7\xd0\x66\xbb\xb5\x96\x5c\x0b\x9e\xb4\x6a\x61\x1d\x7a\x53\xbb\xa1\xea\x2e\xb6\x1d\x9e\xad\xcc\x31\xe6\x53\x87\x8b\xd4\x7e\x61\xab\x25\x4b\x36\xb0\x96\x3a\xf8\xe5\x4c\x50\x2e\x6c\x65\x90\x36\x41\x6d\x29\xfe\x3c\xce\xb0\xc0\x49\x42\x12\x2a\xd3\xed\x6d\xbb\x7f\xfa\xe3\xca\xd1\x9e\x99\x0a\x36\xd2\xd6\x83\xfa\x4c\xd3\x3c\x45\x2c\x4f\x27\x56\xca\xc5\xf2\x31\x04\xbf\x74\xa9\xfa\x06\xc3\xc9\x0d\xb0\x04\x18\x20\x02\x38\xd3\x11\x0b\x80\xad\xad\xa9\x02\x47\x73\x4a\x9e\x00\x76\x53\x30\x22\xe5\x31\xba\xe2\x8a\x9c\xa2\x4b\x9c\xdd\x83\xa0\x66\x4a\x4a\xce\x8c\x75\x1c\x4b\xa4\xa5\xd6\x9c\x51\xd5\x1b\x31\x8b\x86\xed\x56\xe5\x24\xe2\xcc\x20\xa2\x46\xb0\xb0\xbe\x09\x30\xf7\x3a\x68\x50\xe5\x12\x1b\xa9\x6c\x58\x6c\x81\x9f\xc7\x41\xf4\xea\xd8\x64\x07\x6c\x40\xc7\xb7\xf8\xd9\xc4\x6b\x9f\x63\x85\x4d\xb5\xd8\x55\x92\xbb\x0d\x88\xb2\x15\x84\x0c\x10\xb0\x0b\x1c\xe1\x16\x8d\xc2\xd7\x3e\x33\xd1\xa9\x5f\xd3\x63\x72\x8c\xbe\x4b\xf8\x44\xf6\x90\xf4\xa0\xd9\xf0\x50\x12\x25\x7b\xc6\x41\x05\xff\x36\xa9\x60\xdf\xb8\xd5\x2f\xf8\x3e\x94\xfd\x9b\xd2\xcf\x06\x04\x43\xfe\xe9\xf4\xe4\x24\x5d\x1c\x4d\xf2\xe8\x91\x28\xfd\x17\xc8\x14\xb5\x2b\xe4\x10\xa4\x70\x1d\x1e\xd5\xba\xd5\x59\xc6\xb2\x6a\x45\x91\x36\xad\x46\x12\xc0\x4d\xd7\x57\xba\x2f\xac\xea\xa0\x8f\x38\xab\xaf\x1a\x69\xa7\x2c\xf2\xa6\xe3\x55\x02\x5c\x7e\x1d\x6d\xc5\x14\x8e\x0d\x71\x9e\xa7\x09\x9e\x55\x54\x96\x0d\x94\x94\xeb\x94\x5a\x2a\xd2\x73\x87\x78\x0b\x7d\xca\xca\x51\x66\x5f\x39\x77\x24\xb8\x15\xad\xbb\xe5\x78\xc4\xfa\x12\x3d\x13\x53\x0f\x16\x72\x12\xc1\x3b\x91\x53\x39\xf7\x19\x89\x60\x2f\x85\x46\x0d\x1c\xae\x41\x4d\xb0\x8a\xa3\xd3\xac\x9c\xff\xc6\x6a\xa0\x38\x91\xa4\xa7\x1b\x06\x48\x34\x17\x48\x88\x9e\x05\xce\x32\x22\x46\xcc\x42\x9b\x02\x80\x37\xe7\x36\x48\xa4\x29\x9a\xbc\xd3\x28\x5f\x57\xa3\x0c\x93\x3e\xca\x09\x8b\xeb\xce\x37\xe4\x37\xae\x4c\xf5\x58\x91\x1b\xa8\x65\xd1\xb6\x91\xde\x6f\x6f\x36\x6e\x39\xe6\x75\xda\x79\xbf\x12\xa6\x0f\xe5\xa6\x53\x50\x20\x65\x51\x55\xd3\xd9\xfa\xbc\xfa\x5e\x12\x73\x00\x19\x1b\x3e\x8e\x39\x91\x81\x11\x1f\x79\x5b\x5c\x42\xa7\x44\x4b\x1f\x23\xa6\xc9\x38\x74\x38\x18\x80\x6d\x87\xb7\xad\x3b\x8d\x04\x97\xd2\x46\xde\x9b\x76\x56\xe7\x4f\xed\x50\xcb\xcf\xa0\x84\x0f\xaf\xaf\xc6\xcb\x55\xfd\x82\x67\xae\xbe\x9f\x7d\x58\x9b\x64\xdf\xd8\xd4\xda\x6a\x7e\xc5\x5a\x6c\x50\xcf\xef\xe4\xec\x62\xe8\x8b\x58\x55\xba\x5e\x2e\xe8\x17\x22\xab\x37\x97\xf4\x5b\x9e\x71\x50\xdc\xaf\xd2\xc4\x8a\xf2\x7e\xeb\x37\xab\x1c\xef\xbb\x0b\x6c\x5e\x65\xeb\xd7\xf2\x87\x32\xcd\xac\x0b\x4b\xdf\xd3\x36\x35\x5c\x2b\x11\x08\x8c\x2f\xed\x61\x07\xc1\x4b\xbf\x25\x15\x4e\xb3\x30\xe5\xd2\xe1\x86\xda\x69\x9a\xa3\xd6\x74\x09\xbe\x2a\x9e\x79\x84\x4d\x34\x4b\x75\x70\x4b\x5b\xb1\x99\xc7\xeb\xde\xc2\xa4\xef\x23\x8c\xf9\xf5\x72\x98\x93\x45\x11\xb5\x27\xad\xec\xe6\x4a\x70\x37\xd8\xfd\x27\xc4\x43\xc2\x37\x6e\xe8\xae\x49\x8a\x1e\x3a\x4a\x10\x2c\x6d\x38\x06\xe4\xf2\x55\xf2\x7c\x36\x30\x0f\xfb\x31\x9b\x6c\xe0\x23\x5f\x84\x21\xb8\x6a\x6c\x5d\xb1\xc8\x1d\x44\x2a\x04\x79\x22\x02\x68\xc7\xc6\xfc\xb0\xf2\x51\xc5\x89\x20\x38\x5e\x04\x2b\xe2\x03\x0e\x4c\xcf\x60\x1e\x93\x34\xd5\x0a\x3c\xa8\x26\x8c\x1f\xf1\xcc\xe9\x2c\xa5\xb7\xa0\x82\x06\x9d\xea\x1b\x2b\x08\x57\xd0\x5f\xb0\x23\xf2\x99\x4a\xa5\xe5\x8a\x9a\x58\x4d\xd7\x08\x48\x3c\x50\x57\x6b\x4e\xec\x0d\x37\xfa\xd0\xff\xee\xfa\xf6\x7e\x70\x3e\xfa\x50\x44\xe7\xbb\xf4\x33\x8f\x08\xe5\x00\xfe\x39\x1b\x31\x1f\x50\xeb\x01\x90\x61\x2f\x11\x8e\xe3\x02\xd9\xc0\x2a\x91\x46\x66\x5b\xc9\x91\x83\x53\xb1\x36\x94\x76\x45\x33\x0f\x90\x83\x74\xa8\x27\x6b\x85\xeb\xac\x74\x72\x4c\x26\xd5\x8a\x94\x97\x3d\x5d\x36\x21\x76\xab\x32\xba\x36\x51\x0e\x5c\x90\x91\x67\xa7\x2b\xc1\xed\x7c\x82\xcd\x25\xbc\x19\xb7\x73\x1b\xb2\xc5\xa6\x7e\xa4\x9f\x49\x7c\xdb\x20\x55\xed\x25\xa3\xa5\x55\x24\x60\xed\x2e\xe4\x8c\x6e\xa2\xf1\xfb\xa9\x3c\xe8\xef\xda\xb3\xa5\xeb\x02\x92\xad\x80\x57\x05\x6c\x55\x85\x30\x8a\x88\x50\x98\x32\x34\x85\x83\xcd\xa2\x05\x02\xc0\x0e\x02\x3e\xec\x3f\xa2\x94\x32\x40\x0e\x58\xb5\xb4\x0f\xe5\x79\x6c\x20\xb4\x5e\x0e\xaf\x1e\xee\x4b\xa2\xea\xf7\xd7\x0f\xe5\xa2\xee\xfd\x9f\x57\xca\xaa\x95\x16\x56\x05\x0b\x05\x53\x2c\xb2\x10\x2d\xca\xac\x5f\x99\xda\x89\x26\x0b\x45\x1e\x6e\x2f\x76\x92\xef\xea\x9d\x65\x8d\x18\xe1\xa1\x74\x55\x8f\x88\xd0\xe6\xd3\x98\x44\xeb\x50\x4c\xdb\xd3\x91\x89\x82\xd2\xeb\x60\xad\x89\x16\xe1\x0c\x4b\x94\x61\x61\xfd\x50\xb1\x09\x80\x2a\x57\x06\x33\x9a\xd7\x2a\x04\x89\x4f\x44\xfd\xa8\xaf\x3e\xce\xf6\x91\x05\x61\x45\x59\xf0\x8f\x92\xf1\x93\x69\x78\x83\x93\x66\x87\xb2\x22\xd5\xc5\x09\xcb\xd0\x03\xb2\x3d\x84\xb8\x0b\xc7\xa6\x42\x7c\x5f\x37\x07\x2b\xe2\xe2\x09\xb5\x4a\xca\x99\xa6\x48\x03\xa7\xea\x30\x58\x83\xe6\xf8\xd4\x7c\xdc\x12\x91\x2e\x88\x6a\xd7\x6d\x15\x4b\x89\xfa\x37\xc3\x9a\xb5\xbe\xa8\xba\x90\xbe\xac\x72\x36\x89\xf7\x66\xed\x1b\x24\x29\x48\x4f\x3c\x08\x54\x24\x3b\xd3\xdd\x60\x90\x8c\xd3\xff\xa6\x1c\x49\x70\x08\x68\xbd\x75\x2a\x43\x29\xed\x78\x0d\x30\xef\x66\x99\x78\xc5\x32\x6c\x08\x7a\x14\x0e\xc8\xa6\x81\x84\x40\x3f\xcb\x31\xc6\xbd\x10\xf8\x87\x9b\x82\xb9\x36\xb6\x60\x6f\x60\x48\xc5\x6c\xda\xa0\x21\xfd\x68\x28\xda\x83\x65\x00\xfc\x87\x2b\xc8\xe8\x62\x83\x6d\xee\x7a\x38\xdd\x90\xda\x36\x03\x50\x2a\xc6\xe7\xcc\xdf\x16\x8b\x1a\x67\xd8\xda\x1d\x40\x89\x72\x95\x12\xea\x0a\xeb\x1d\x8f\x58\x10\xb0\x22\x8d\xda\xa3\xcf\x88\x2b\x4e\x02\x15\x6f\x19\x00\x5b\x43\x92\x8e\x17\x7e\x4a\x3b\x50\x4d\x91\x57\xf3\x72\x79\x91\xa5\x7e\xec\xe9\x94\x73\xec\x12\x11\x9d\x05\xc5\xc6\x01\x86\xf6\x25\x68\x2f\x28\x28\x60\x3b\x06\x73\x34\x18\x2d\x70\x50\xae\x2e\x48\x5e\x8f\x39\x91\xec\x2b\xe5\x53\x3d\x69\x62\x4b\xa2\xe0\xaa\x7b\x40\x4b\x75\x98\xda\x96\x57\x1f\xf0\x3d\xa0\x33\x6d\xaa\x38\x04\xc7\x6a\xad\x99\xca\xf9\x78\x81\x12\xc2\x58\x24\xe8\xb4\xc9\xaa\xfe\x39\x23\xd1\x36\x10\x32\x37\x58\xe0\x94\x28\x22\x56\x85\x23\x95\x8b\x49\x83\x88\xe3\x76\xd0\xf6\x6b\x76\xd1\x54\xda\xa8\x96\x64\xf1\xda\xed\xc5\x3a\x48\x18\x3f\x8b\x8d\xd0\xaf\xf4\x34\x7e\xb4\x96\xff\x0d\x67\x61\xfb\x29\xa6\x61\xa3\xad\x02\x04\xa0\x5d\xe7\xf4\x3a\x50\x28\xf7\x4b\xa0\x22\xa5\x70\xa1\x03\xc1\x40\x59\x3f\xca\x26\xf0\x93\x75\xbc\x74\x2f\xbc\xdb\x65\x38\xb8\x14\xda\xca\xa1\x2a\xe5\x4e\x00\x95\x80\x4a\x65\x70\x40\xea\x01\x4c\x40\x68\xa9\x8b\x90\x0c\xdc\x7e\x16\xde\xae\x30\xe8\x5a\xc9\xaa\x5a\x5c\xaa\xb2\x5c\x6b\x78\xdc\xbe\xc0\x1d\x3a\x89\x66\xdf\x12\xcd\x3a\x52\x2e\x45\xd7\x6a\xea\x24\xa2\x82\x33\x63\x8b\x3e\x5b\x80\x80\xf2\x04\x21\xf7\xc8\x5e\x91\xb6\x72\x2c\x5c\xfd\x94\xf9\x7f\x95\x39\xb8\x23\xea\x90\x54\xeb\x92\x2a\x8f\x03\x17\x14\x78\xa0\x92\x50\x1a\xb0\x71\x35\x30\x5a\x13\x06\x69\xac\xfc\xc3\x2b\xe3\xc0\x82\xe4\xe6\x05\xcf\xd1\x33\x95\x73\xa4\xf8\x88\x41\x9c\xa0\xf7\x06\x28\x8e\xcc\x8b\x3d\x78\x0b\x60\x10\x64\x3e\x49\xa9\x42\x38\x98\x61\xc9\x24\xd9\xb3\xe7\x59\x7f\x00\x33\xae\xcd\xb3\xaf\x83\xe8\x59\x73\x68\xb6\xb0\xaf\x15\x8d\xec\x9a\x4a\x1f\xc4\x34\xbf\x6c\x32\x7d\xa0\xf1\x84\x1a\x66\xed\x99\xeb\xb2\xe9\x51\xbd\xb5\xc1\x82\x86\x02\xb2\x2b\x95\xaa\x72\xb7\x58\x43\xcf\x9a\x4c\xfa\x62\x23\x5a\xa5\xd2\x17\xaf\xef\x23\x97\xbe\xa9\x4c\xd9\xaa\xdc\x4a\xf7\x49\x83\xfd\xdb\xe5\xec\x2a\xee\x02\xe7\x43\x49\xe9\xa6\x51\x52\x3a\x34\x54\xb3\x22\x21\x60\xfb\xf0\xf2\x4d\xd4\xc1\x22\x3f\x2b\xa4\xa2\x20\xdd\xb2\x8c\x09\x43\xaa\x9c\x9f\x71\x05\x39\x35\x11\x94\x70\x5f\xca\xf3\x1c\xb1\x7a\x09\x64\x35\x4f\xdc\x35\x45\x63\xaf\xe8\x67\xc1\xf9\x73\xb3\xb0\x16\xad\x9f\x7c\x90\x9b\x51\x96\x6d\x31\xf6\xaa\x88\x59\xb8\xf8\x9a\x82\x93\xb4\xe0\xb1\x4d\xc2\x71\xcd\xa9\xac\x1f\xfa\x52\x02\xc5\xda\x73\x61\x2f\xdd\x3d\xaa\x76\x4b\xdc\xb9\x75\xbe\x89\x97\x91\x2d\x37\xb6\x01\xd3\xb1\xd7\xe3\x2b\xae\xda\x6d\xaa\xcc\x02\xaa\xe8\xde\xb0\x50\xab\xf0\x04\xba\xf1\x1e\xb8\x77\xed\xd8\xb1\x09\x75\xf1\x08\xdd\x95\x3d\x29\xcd\xd8\x56\xef\x7f\x89\x59\x6f\x5a\x1a\x38\xf0\x37\x0a\x1b\xef\x4b\x43\xcb\x01\xd4\x04\xb6\x61\x92\x15\x4e\xec\x85\xbb\x9c\xc5\x44\x30\x82\xd5\xfc\xf5\xb2\x2c\xce\x76\x35\x4f\x07\xe3\x7b\xd9\x8c\x8b\xb3\xbd\xd4\x85\x0f\x87\x5b\xae\x91\xbe\x76\x9c\xfa\xf5\x36\x96\x22\x1b\x7c\xe0\xab\x04\x2f\xa9\x8e\x35\x66\xc3\x00\x84\x66\x13\x2a\xdd\x29\x11\xa3\x5e\x9d\x7b\x99\x94\x94\x1a\xbb\xcf\x52\x32\x8a\x3e\xed\x61\x6d\xe5\x35\x4b\xf2\x45\xe4\x7e\xbc\x7c\x3a\xc2\xaa\x2a\xce\x79\x90\xa1\x00\xa5\xb4\x15\xa6\xcc\x72\xaf\x55\x49\x09\x5a\xa6\x4c\x71\x5d\x1e\xc2\xc1\x67\xb8\x7c\xf1\x09\x2e\x5d\xba\x43\x97\xee\x50\xb3\x47\x5d\xba\x03\x42\x87\x96\xee\xb0\x4e\x05\x5d\x65\x00\xf5\x3e\x39\xa8\xb6\x59\x2a\x71\x63\xf6\x77\x8d\x1e\xb9\x7d\x48\xbf\xb3\x21\x86\xf1\x50\xf6\x17\xfb\x43\x6d\x48\xd4\xd2\x67\xd5\xd9\x86\xf6\x4c\xb6\xa8\xba\x05\xb0\x88\x13\x8b\x43\x67\x03\x96\xcb\xf6\xa7\x55\xa6\xd2\x11\xfb\x9e\x3f\x93\x27\x22\x7a\x08\x2b\x94\x72\xa9\x80\x0f\xbb\xf8\x18\x38\x08\x25\x48\x73\x13\x07\x81\xd1\x15\x4e\x49\x6c\x2a\x1e\x06\x61\x8d\xd6\x60\x6b\x5d\xad\x75\x70\xab\x80\x1c\x6a\xb6\xc1\xc5\x4d\x8c\x98\x09\x35\x34\xe1\x6d\x20\x2b\x50\x37\x31\x20\x98\xdf\x79\x47\xf0\xef\x8e\xd1\xbd\xbe\x9f\xa8\x2c\x8f\x37\x40\x5f\x6b\x1a\xdb\x88\xcd\x04\xcf\x33\x6f\x43\xe3\x13\x53\xfa\xd6\x44\x3f\x2d\x3b\x82\x61\x30\xce\x0b\x1c\xe1\x58\xeb\xe2\xab\x09\xe7\x4d\xa2\x50\xb7\x82\x30\x0a\x09\x48\x1f\x43\x1f\x5a\x67\x43\xdd\x8d\xff\x36\x00\x6e\x59\x05\xc4\xfe\x42\xce\xe5\x73\x22\xc1\x2a\xe4\xad\xee\xa5\x3c\xf2\x32\x56\x41\xed\x38\x57\xd9\x44\xbd\xdf\xc2\xd9\xf6\xeb\x61\x10\x8a\xce\x6d\xcc\x97\x49\x52\xb5\xf7\xc4\x8b\x59\x4b\x5b\x47\xcf\x36\xf1\x8b\x9b\x5c\x64\x1c\x24\xb1\x64\xe1\x60\x1b\x2c\xd2\x5b\xc6\xb3\xdc\xc4\xb5\xd1\x30\xcc\xa9\x96\xb2\xa9\x54\x97\x58\x45\x73\xcd\xb9\x0b\xc4\xb3\x3d\xc5\xfb\x15\x5c\xf9\x65\x2d\xa8\x35\x33\x38\x0b\x7b\x6f\x70\x29\xb4\xb0\xa8\x9b\x7b\xdf\x85\xd7\x3b\x49\x22\xd5\xfd\x19\xb7\x9b\x2d\x68\x1d\xd8\x45\xdd\x27\xf6\x89\x9e\xe8\x3a\x2a\x5a\x37\xfe\x76\xb4\x55\xae\xb8\xb5\xf7\x48\xc2\x1d\x20\x64\xce\x2d\x60\x57\xf1\xa2\xad\xd0\xda\xe0\xfe\x17\x74\xbb\x2c\x20\x8b\x92\xff\xa4\xc5\x11\x6f\x71\x4d\x71\xa6\x95\x08\xc5\xf5\x2d\x29\x66\x46\x8e\x35\x71\xb2\x08\xa3\x5c\x50\x77\xf6\x2b\x39\xe1\xcd\xd4\x01\x16\xca\x93\xb0\xa2\x52\x84\x83\x62\x73\xc6\xe1\x8f\x23\x95\x63\x1f\x98\x08\x34\xe1\x8a\xa0\x9b\xfc\x77\xe7\x58\x17\x4e\xbc\xab\xd9\xd3\xb5\x84\xbd\xc3\x2e\xe3\x3a\x7c\xc3\x56\x27\x8d\xb2\x59\x00\x8e\x58\x6f\x25\x6e\x53\xfb\xa0\xf6\xcb\x76\xf5\x1b\x6a\x3f\x75\xb2\xcf\x36\xdf\xae\x00\x6f\xda\x3a\x36\xbb\x14\xe7\x6e\x03\x61\xad\xf4\x14\xc2\x56\x5a\xfb\x1d\xa0\xcf\x52\x70\xd4\x63\x2b\x4d\xfd\x97\xff\xcb\xd4\xca\x32\x4b\xf3\x5f\x88\x8b\x11\x33\xbf\xf7\x7c\x9d\x0a\xfd\x42\x01\x00\x8b\x53\x52\x40\x64\x8a\x32\x98\x1e\x40\x8a\x58\x30\x34\x03\xf6\xeb\x61\xfa\xf5\x18\x1e\xf3\x09\x11\x8c\xe8\xa1\x39\xf0\x01\xcf\xcc\x52\xcc\xf0\x0c\xa0\x85\x7b\x10\x19\x07\xe2\x6a\xa1\x8a\x18\x92\x36\xf5\x0e\x81\x5b\x69\x66\x69\xf3\x6d\x8b\xba\xbf\xd0\xa7\x11\x65\x2d\xb2\x69\x11\x5e\x51\x4f\xfd\xb7\xb6\xff\xed\x24\xf6\xfb\xfe\xdd\x0f\xe3\xdb\xc1\xdd\xf5\xc3\xed\x59\x49\x6c\x3f\xbb\x78\xb8\xbb\x1f\xdc\xd6\x3e\x2b\x72\x55\xff\xfa\x30\x78\x68\x78\xe4\x1a\xb8\xe8\x7f\x37\x28\x15\xd1\xfe\xeb\x43\xff\x62\x78\xff\xf3\xf8\xfa\xe3\xf8\x6e\x70\xfb\xe3\xf0\x6c\x30\xbe\xbb\x19\x9c\x0d\x3f\x0e\xcf\xfa\xfa\xcb\xf0\xdd\x9b\x8b\x87\x4f\xc3\xab\xb1\x0b\x3b\x0e\x1f\xfd\x74\x7d\xfb\xc3\xc7\x8b\xeb\x9f\xc6\x41\x97\xd7\x57\x1f\x87\x9f\xea\x66\xd1\xbf\xbb\x1b\x7e\xba\xba\x1c\x5c\xad\x2e\xd6\x5d\xbf\x1a\x8d\x75\x80\x83\x8b\x2c\x30\x1a\x05\x62\xd2\x64\x61\x49\x9b\xfe\x0a\xbe\x8b\x1b\x43\x8f\x47\x3d\xf7\x97\x29\xad\x7d\xa4\x59\xa0\xf3\x8b\x15\xdc\x63\xc4\xbc\xe3\xd2\x5f\xaa\x0a\xcf\xa4\x4b\x3d\x2e\x8d\xf6\x14\xf5\xe1\xac\x80\xc2\x50\xea\x14\x32\x1b\xfc\x48\x9d\xab\x1b\xe8\x30\xa1\x29\x05\xaf\x37\x3a\x42\xd5\x0d\x2f\x37\x68\xe7\x04\x43\xb0\x7e\xbb\x78\xd5\x69\x90\xd5\xac\x66\xa0\x94\x53\xe4\x38\x34\x31\xe6\x04\x83\x3d\xbb\x60\x38\xa5\x51\x35\x05\x03\xe0\x57\x51\x01\x35\x52\x6d\xb1\x44\x60\xe5\x96\xe7\x04\xfd\xf0\x97\x62\x50\xe0\xc1\xb0\x9a\x77\xbe\x54\x51\xcf\x3e\x10\xb9\x59\xd5\x75\xe4\x59\xea\xc9\x1d\x73\x6b\x5a\x86\x73\x6b\x2b\x77\x83\xbb\x29\x67\x01\xdc\x58\xc9\xf7\xa4\x8f\xb7\x99\x51\x85\xc6\x4f\xd1\x1d\x40\x9d\xc8\x42\x75\xd7\xbb\x98\x25\xf9\x8c\x32\x44\xd3\x2c\x21\x45\xcd\xf7\x09\x99\xe3\x27\xca\x5d\xf9\x0a\x53\xe5\x03\xd6\xd1\x8a\x56\xe8\x08\x35\x1e\x94\x53\xd4\x8f\x63\x59\x66\x70\x25\xca\x71\x2c\xf3\xa8\x3c\xec\x10\x21\x8c\xc5\x9e\x6d\x56\xe8\xa8\x38\x72\xb0\x62\xfb\x07\x73\x59\x66\x87\xe5\xbb\x77\x87\xeb\x5f\xaf\xe0\xd8\x91\xf2\x78\x2b\x61\xe0\x1e\xcb\x47\xc7\x9a\xd7\x09\x04\x0e\x56\x67\xb7\x1e\x2d\xbe\x4e\xdb\x4e\xfd\xca\x8e\xe1\xa0\x6d\xd7\x67\x23\x2a\xf4\x9a\x2e\xdd\x8c\x93\x4a\xe9\xae\xd6\xfd\x95\x4a\x7f\xd5\x76\xb6\x57\x6f\x4f\xbd\x34\x06\x47\x72\xec\xe9\x7f\x83\x79\xdc\xc0\xa7\xd7\xfe\xcb\x95\x22\xdb\x38\x58\xb7\x4d\x7d\x40\x4b\x49\xba\xd6\x0f\xb4\x92\x0e\xf7\x04\xef\xd4\x5e\x18\x84\xc2\x0b\x34\x02\x77\x1f\xa6\xcc\x96\xe3\x21\xde\x1f\xe5\x0a\x50\xeb\x73\xec\x4b\xc4\xe1\x09\x7f\x2a\x29\x97\x29\x91\x12\x37\x00\x96\x04\x26\xb1\x5d\x18\x83\x3f\xa1\xf6\xc3\x96\xf4\xe4\xce\xe4\xbd\xfe\x6a\x95\xd1\xe7\x36\xd4\x8c\xdd\x44\xb5\xc0\x1a\xbb\x48\x5b\x74\x6d\xf2\xed\x34\x7f\xe9\x15\xc1\x34\x5c\x04\x31\x46\x4d\xee\x9f\x96\x66\xb5\xea\x82\xd5\x56\x59\x0a\x5d\x78\x9b\xc7\xe0\x04\xad\x6f\x8d\x88\x6d\xfd\x2a\xb8\xbc\x3e\x1b\x50\x5d\xc9\xdf\x19\x56\xa0\x8e\x78\x9a\x1a\xb9\xa0\x64\x4b\xed\x21\x6c\xd2\x1c\x0b\x69\x4a\xe6\xd1\xdc\x78\x99\xf4\x95\xd1\x1b\xb1\xe7\x60\x43\x4a\x81\xc0\xfd\xb0\x25\x40\x13\xfd\xac\x8f\x1b\x7d\x2a\x85\x57\x83\xc8\x48\x21\xd6\x37\x20\x04\xe3\x10\x2c\xca\x47\xad\x21\xf0\x60\xbf\x76\x20\xf5\x2d\x6a\x05\x56\xd6\xb7\xa9\x62\xa0\x9f\x5b\x50\xa8\x6f\x07\x4d\xb9\xed\x10\x82\x5a\x81\x75\x23\xd8\x43\xa9\xc0\x57\x85\xf7\xf6\xe9\x9a\x26\xbb\x37\x9d\x58\x8c\x0a\x3d\x5d\xb7\xda\xbf\x77\x33\xfa\xbd\xf1\x3b\xe4\x0d\xa0\x26\x41\x6b\x1e\xe1\x1b\x1d\x69\x99\xd5\x25\xdb\xdb\x40\x0c\x89\x8e\x0c\x6a\xe0\x57\x10\x69\xd9\xbf\x19\x7e\xd5\x43\x5f\x85\xd9\x66\x5f\x6d\x75\x00\xed\xb8\x6d\xb9\x40\xd0\xa6\x4a\x29\x07\xe5\x63\x07\x7b\x55\x39\x89\x76\xcf\xec\x41\x44\x4d\xe7\x50\x7f\x59\xfa\x06\x9c\xd3\x50\xfe\xce\xf8\x6f\x7d\xc0\xb3\x75\x01\x19\x19\x97\xca\x9a\xb5\x8b\x47\x6c\xb2\xa8\x3a\x79\x7a\xde\xcb\xd3\xfa\x94\xee\x5c\xd2\x4d\xb7\xb7\x9c\x9e\xbc\xe7\x40\xdc\xd5\xf7\xc1\x9a\x84\xe7\xbe\x89\xb9\xe6\xd3\x80\x8b\x35\x45\x29\x74\x11\xec\x75\xb3\x2a\xd9\xcb\xdc\x62\xd6\x6e\xca\x3a\xf9\xe7\xbd\x91\x5b\x8b\xb0\xef\x7e\xdd\x8a\xd8\x88\xff\x06\xe1\xba\xa3\xb2\x97\xa5\xb2\x7d\x64\x3c\x94\x07\xb7\xf9\x05\x7a\x66\xe4\xb8\xa0\x19\x67\x70\xd5\xca\x84\x67\xf0\xa5\xba\x7f\xeb\x0b\xe6\x6e\xe8\xf3\x0d\xd6\x64\xbd\xd3\xf7\xce\x04\x0e\x18\xb7\xeb\xf2\x58\xab\x43\xed\x2b\x5b\x84\x88\x53\x93\xdd\xa8\x68\x4a\x7a\x88\xb3\x64\x11\x04\x3b\xd8\xf3\x0a\xe4\x66\x62\x94\xe6\x84\x0a\xd7\x89\xc5\x18\xdc\x28\x1d\x7e\x43\x69\xbc\x89\x46\x76\x88\x34\xb9\xea\x5f\x0e\xce\xc7\x83\xab\xfb\xe1\xfd\xcf\x35\xf8\x91\xe5\xc7\x0e\x42\x32\x78\xe1\xee\xe7\xbb\xfb\xc1\xe5\xf8\xd3\xe0\x6a\x70\xdb\xbf\x5f\x03\x2f\xb9\xaa\xb3\x26\xe8\xc2\x5c\xd6\xa9\x6f\x9b\xc0\x17\x3a\x33\x6f\x4d\xef\xcb\x20\x93\x41\x27\x94\x34\x00\x4d\x9a\xd4\x7f\x16\x13\x81\x62\xf2\x44\x12\x9e\x15\x66\xd5\xda\x05\x0b\x10\x28\x6b\xda\x5f\x85\x42\x09\x6d\x56\xd7\xf8\x14\x99\x5a\x6f\x41\xb9\x5b\xdf\x20\x88\x7c\x58\x10\xf6\x95\x42\xe4\x73\x96\xd0\x88\xaa\x20\x35\x90\x0b\xeb\x5e\x31\xee\x43\x88\x4e\x5d\x43\x5c\x7b\x8b\x46\xd9\xbb\xce\x1f\x7a\xd2\x97\xb5\x7d\x7f\xa2\x3c\x22\xda\xda\x02\x42\x7b\x50\xec\x1b\x9c\xc6\x4b\x80\x6d\x5b\x8c\xee\x25\xcc\x03\xcb\x39\x3a\x36\xbd\xaf\x01\xcc\xad\x7e\x90\xeb\x6f\xc3\x55\x71\x32\xa5\x73\xbd\x3a\x50\xa6\x1d\xa5\xbe\x71\xb8\x4b\xa9\xb0\xe6\x1e\x90\x37\x6c\xec\xfa\x86\x01\x0b\x4b\xf5\x62\x98\x89\x39\xc5\x48\x90\x94\x2b\xad\x80\x99\x88\x80\x9e\x16\xaa\x28\x4e\xe8\xaf\x80\x51\x25\xc8\x71\x10\x41\xe1\x90\xbd\x0a\xf7\x81\xc5\x8f\x38\x1e\xb1\xf3\xc1\xcd\xed\xe0\x4c\x33\xa4\x63\xf4\x20\x01\x7e\xaa\x34\xf5\x73\x4b\xde\x46\x1c\x0b\x23\x19\x28\x93\x8a\xe0\xa6\x60\x30\x22\x04\x17\xed\xf9\x83\xef\x6f\x00\xdf\xd5\x93\x37\x3c\x2b\xd9\xa6\x9c\x01\xe0\xaa\xb1\x2a\x72\x90\x33\xb0\xf7\x9c\xac\x5b\xfc\x5c\x5a\x91\x10\x7e\x03\x24\x91\xf2\xaa\xbf\xe0\x6a\x03\x80\x67\xfb\xf9\x95\xfa\xbc\x81\x6f\x57\xcd\xf3\x1e\x42\xec\xa4\x2a\xd0\x40\x0d\x60\xa8\xaf\x7a\x53\x99\x67\xa3\xa8\x28\xde\x02\xaa\xa3\x42\xfa\x13\x32\xc3\x0c\x89\x9c\xb1\x0a\x3c\x6c\x68\x69\x5b\x0e\x9a\xd9\xf4\xa8\xea\x35\xc3\x29\xcf\x19\x28\x0d\x10\xc6\x5a\x33\x18\x99\x11\xa6\xd6\x0c\xe6\xad\x80\x58\x2a\x43\x3d\x5c\x2c\x96\x9a\x81\x36\xc1\xb1\xd4\xf9\x93\xa0\xf4\xf2\x66\xd7\xb2\x0b\xca\x2b\x39\x95\xf4\xa1\xf2\xf7\x73\xbd\x96\x8d\xe5\xe3\xce\xdd\xdd\x63\xf9\xb8\xbe\xab\x98\x44\x8f\x9b\x5e\x36\xd5\xcc\xcc\xc4\x56\xae\x5e\x32\xf6\x2d\xf4\x53\x5b\x9a\x05\x0a\x96\x47\x8f\xe8\xfb\xfb\xcb\x0b\x34\xa5\x5a\xee\xd5\xd7\xca\x15\xd6\x32\xf6\x83\x48\x9c\x5d\xd8\xda\x56\x73\x91\xf8\xbb\x17\x36\xde\x89\x52\x81\x94\xa0\x6f\x34\x3c\x23\xce\xd8\x2b\x2c\xda\x5e\xa5\x34\x8b\xc0\x2c\xe6\xa9\x99\xc7\x89\xcc\xa7\x53\xfa\xf9\x58\x61\xf1\x4d\xc3\x7a\x98\xa8\x8a\xf1\xdf\xf9\x64\xac\x47\xb4\xe3\x45\x5c\xd7\x1c\xb2\x05\x95\xfd\xb2\xd9\x99\x9d\x9b\x77\xff\x2f\x9f\x40\xb6\x7b\x26\x38\x20\x00\x82\x77\xce\x46\x2a\xd8\x57\x1c\x25\x1d\x23\x97\x40\x55\x02\x39\x89\xb8\x10\xc4\x26\xc9\x9b\xda\xa2\x19\x16\x8a\x82\xb5\xd6\x81\xa4\x94\xd0\xf1\x8b\x2d\x0a\x4b\x7e\xcf\x71\x81\x44\x3d\x21\x04\x1c\x3c\x19\x4d\x36\x53\x7a\xcf\x4a\xbe\xc9\xca\x09\xb4\x91\xa7\x16\x37\x13\x0c\x32\x6b\x45\xac\xc1\x13\x61\x6a\x2f\xfa\x09\x34\x51\x93\xb6\xdf\xce\xcb\x60\x4a\x7c\x0e\xcf\x8b\xcb\xcd\x85\xf4\x86\x51\x4d\x4a\x60\xb8\xe7\x6d\xa2\x94\x75\xa9\x37\x39\xfa\x9f\x5a\xfb\x8e\xe1\xd5\xe5\x75\x59\x13\x1a\x6f\x57\xbb\x28\xf5\x5d\x84\xb5\x3a\x68\xff\x2d\x81\x7c\x24\x31\x56\x8c\x00\x40\xc2\x2a\xa7\xd5\x3d\x37\x7d\x6a\xda\xaa\x74\xb9\x76\xcb\xb7\x40\xad\x29\x35\xf3\x89\x40\x4a\xe7\x3e\x02\xd1\x37\xc9\xdd\x87\x81\x3c\x88\x04\x42\xa8\x57\x5a\xb1\x4c\x99\x71\xcd\xf9\xbc\x64\x87\x5b\xc8\xe8\x66\x30\x5a\x68\x24\x99\x20\x91\xbe\xca\x4e\xd1\x4d\x42\xb4\xe4\x95\x6b\xe9\x2b\x4f\x12\x87\xf0\xb5\x5a\x3a\xdc\x08\x95\xee\xc5\xe7\x15\xe8\x1e\x2b\x26\xe6\x10\xee\x56\xcf\x2c\x58\x83\xfd\x23\x2e\x04\xeb\x0b\x26\x64\x30\x24\x96\xb5\x48\xe0\xf0\x0b\x13\x37\x0b\xa6\x24\x5c\xba\xc8\xe8\xaf\x9a\xfd\x0a\x22\xe7\xbc\x31\xc9\x31\x9c\xed\xcb\xcc\xc1\x2d\xe5\x0b\x4e\xc2\xdd\x87\x4d\x71\xd5\x2d\xe4\x9a\xca\x1d\x58\x12\x71\x56\x4d\xd1\x57\x7f\xf0\xd1\x1f\x16\x6f\xd5\xde\xad\x76\x68\x70\x4b\x16\xa6\xb6\x10\xfb\xac\x70\x5d\x14\xca\xcc\xc2\xf8\x5e\xfd\xe7\x85\x01\xb9\x48\x09\xa0\x4a\x16\x55\xe7\x90\xbe\x6b\x9b\xb6\x58\xcf\x73\x9c\x8b\x8d\x20\x29\x0a\xd4\xf2\x4d\x38\xb7\x4d\x46\x29\x86\xa5\x17\xa1\x9e\x5d\xda\x62\x12\x20\x46\xdb\x50\x23\x59\x42\x82\xb3\x64\x63\x96\xb1\x56\xc5\x6b\x66\xca\xbb\xba\xd5\x40\x4a\x2e\x44\x99\x97\xf2\xae\x95\x28\xb0\x34\x81\x0e\x5b\x6c\x73\x6c\x31\x5b\x59\xc4\xd3\x1e\x20\x01\x2a\x01\x89\xff\x85\x03\xad\x2a\x38\x58\xa3\xf7\xba\xcc\xa7\xd2\xee\xb4\x4a\x73\x2a\x7d\xa1\x79\xc9\xf9\x8e\x1e\x38\x3d\x99\xc5\x18\x12\x47\x77\x89\xc2\x29\xcd\xdf\x78\x0f\xa0\x4d\x12\x23\x83\x5e\x60\x90\x8f\xed\xda\x79\xcf\x49\x86\x05\x61\x6a\xc4\x6e\xf5\x28\xcc\x17\x45\x24\x86\x8b\xc3\x71\x68\xf4\x50\xb3\x76\x8a\xb0\xfd\x0a\x16\xbd\x29\x10\x4e\x8e\xcd\x4b\xa0\x9a\xbe\x60\x92\xfd\x77\xe6\x1d\x83\x79\x60\x31\x7f\xf4\x54\xe9\xb4\x50\xe3\xb5\x00\x19\xcd\x29\x40\x0e\xc4\x44\xda\x0b\x89\x2a\x8b\x29\xe1\xc5\xef\x9c\x38\xfc\x65\xf8\xcc\xf3\xaf\x3a\x86\xed\x0c\x05\xcc\x19\xe8\xe4\x88\x05\x7d\xac\x80\xeb\x34\xca\xfa\x96\xaa\x04\xec\x33\x8d\xbd\xe3\x0b\xfe\x69\x76\x88\x0b\x3a\xa3\x2c\x28\x9a\x64\xa7\x97\xe2\x0c\xcc\xbb\xe6\x0c\xf2\xa9\xbf\xd3\xee\x6d\x96\xc1\x31\x8c\xf8\x7f\xfe\xfb\x6f\xc7\xb4\xc9\xfb\x21\xc7\x76\x05\x0e\x61\x27\x37\xdb\x96\x70\xe7\x03\x14\x91\x06\x74\x8a\x40\xa7\x95\xa5\xcc\x89\xe2\x57\x7b\xb9\x69\xa2\xe1\x6a\x6e\xdc\xbd\x65\x72\x07\xdf\x88\xc8\x57\x9c\x0d\x73\xc5\xbc\xed\x5a\x52\x09\xd9\x01\x7a\x24\xe6\x24\x7b\x03\x41\x58\x90\x7c\xc9\x4c\x33\x62\xc5\x27\xd2\xe0\xa1\x18\x78\x57\xf3\x43\xb1\x3a\x2d\x17\x66\x15\xef\x2f\x22\x25\x0a\x77\x78\x10\x8d\xec\xca\x67\x98\x28\x52\xdd\x7e\xe5\xa6\xad\x70\xee\x00\xe7\x70\x97\xa8\xcd\x39\x96\x2f\x17\x9a\x53\x5b\xf6\xc9\x58\xd3\x43\xe1\x61\x5d\x90\x8e\x19\xa4\xc9\xf6\xd4\x1b\x92\x4b\x22\x0c\xa7\xf3\x70\x58\x96\x12\x42\x14\x47\x88\xd1\x5c\xe3\x6b\x24\x29\xa6\x1b\xe5\x13\xe8\xf7\xeb\x31\x26\x4b\xce\x06\x3c\x23\x62\x1c\xe7\x6a\xe9\x58\xac\x8a\xf1\xd7\x1f\x9d\xe7\x6a\xb1\xbe\x7d\x99\xe0\xe5\xb2\x37\xab\x70\x3d\xf5\xfb\x0d\xcd\xae\x97\x98\x83\x10\x9f\xb2\xd4\xdc\x80\x9a\x49\x2a\xa8\x99\x36\xe6\xb4\x64\x22\x81\x1b\x98\x29\x80\xd4\x2b\x34\x29\x7b\x45\x1b\x6c\x6f\x18\x39\x9a\xe4\x85\x49\xc9\x57\x4b\x88\x8f\x47\xec\xa3\x29\x37\x02\x5a\x9e\x19\x40\x04\x09\x3f\xe4\x73\xc6\x25\x29\x65\xa0\xd5\x54\x40\xb0\x19\xa4\x76\x18\xf5\xc2\x7a\xf1\xd1\xee\xb2\xfa\x9b\xe3\x9f\x2e\x6f\xf8\xf2\x94\xeb\x29\x70\x27\x71\x30\xa2\x19\xd5\xb4\x33\xae\x3d\x69\x2f\x57\x85\xb7\x88\xe9\x02\x1c\x2c\x95\x2c\x7a\xc8\x4f\xaf\x42\x10\x09\x79\x22\x60\x4e\x87\x31\x86\x75\x2e\xca\x76\xbd\x06\x76\xb2\xee\x00\x15\xe9\x9f\xc0\x16\x50\x5c\x1d\x41\x39\x49\xae\x8e\x16\xcb\xe9\x3f\x3b\x67\xaa\xd5\x05\xa6\x6c\x20\x9e\xf7\xc3\x7a\x1f\x0b\xa2\x10\xf9\xac\x88\xad\x08\x7a\xef\x72\x09\x97\xd3\x0f\x50\x7d\x3a\x54\xb3\xec\xf8\xe2\xb5\x99\xfb\x2e\x83\xdc\x25\x4b\xc6\xee\xca\xb7\xc9\x83\x73\xcc\x62\x9b\x11\x6b\x95\x0c\x2d\x6c\xc1\xec\x8c\xd1\xcd\xe7\x0a\xd8\xbc\xce\x00\x28\xdd\xb4\x69\x10\xdd\xe1\x22\x73\x0a\xa3\x56\x59\x20\xbc\x82\x0b\x2d\xb9\xe7\x4c\xd1\x44\x13\x87\x1d\x83\x44\x53\x88\x8c\xb3\x40\x85\x10\xd9\xde\x84\x85\x47\xa5\xa4\x6c\x36\xb6\x2b\xe9\x92\x3b\xdb\x5d\x0c\x65\x9a\xba\x34\x4d\x99\x1f\xbf\x73\x0d\xad\x36\xaa\x1b\xb2\x06\x9c\x32\x97\x56\x0a\x1a\x07\xe3\x6e\x32\x16\x60\xce\x65\xa3\x8e\x69\x6c\x96\x82\x9a\xc2\xd3\x30\xd1\x4d\xec\xee\x20\xd3\x2d\xe3\x38\x14\x57\x88\xb4\xa9\xa2\x26\x01\x0c\x22\xf5\x55\x43\x2e\xac\x6c\xcc\x81\x1d\x32\x2f\xa2\xd9\xb2\x57\x3e\xd3\xbf\x92\x4e\x8b\x5d\x77\x36\x1d\x01\x27\xc9\x04\x47\x8f\x5e\x0b\xf3\xb6\x08\x2e\x5c\xd9\x00\x2d\x57\x42\x5d\x34\x43\x5c\x7a\xa0\x11\x48\x37\xa1\xb7\xd0\x20\xf9\xd8\x61\x17\x9d\x9b\x55\xb3\x10\x69\x06\xba\xc9\x8c\xde\xe4\x36\xc4\x24\x4b\xf8\x22\x6d\xb8\xcf\xaa\x29\x84\xbb\x44\xea\x34\x65\x30\xee\xf5\x2a\xab\x30\xbd\x8d\x2f\xb3\xa5\x7c\xa4\x3d\xe0\x4a\x6d\xc0\x25\x3f\x25\x7c\x02\x26\x55\x6b\x7e\x70\x39\x36\x41\xaa\x47\xf5\x3c\x6f\x9a\xf9\x53\x3d\x91\x54\x66\x89\x56\x66\x9a\x7b\x30\x39\x27\x2f\xbb\x6f\x06\xa3\x60\xbd\x75\xb0\x7d\xb4\x76\xed\xe7\x2f\x81\x60\x7c\xe1\x24\x01\xf3\xae\xe1\x5f\x15\x2b\x9b\x49\xf6\x3b\x36\x4e\x6a\xc5\x47\x4c\xe1\x99\xdb\x5c\x2b\x5c\xf2\x67\x46\x84\x9c\xd3\xac\x54\x2f\x71\xe7\xf0\x70\x4b\xd1\xf6\x3f\x26\x18\x7a\x03\xde\xc9\xb3\x23\x83\x50\xa2\xe9\x43\x66\x38\x2a\xac\xa2\x51\x82\xa5\xa4\xd3\x45\x00\x2c\xe2\x23\x6d\x21\x7d\xab\x6c\x46\x08\x4a\x94\xd5\x31\x1a\x33\xbe\xfd\x64\xd6\xef\x9e\x55\xf8\x50\x3e\x7e\x34\x0e\x11\xdc\xf4\x7d\xb2\x8c\x22\xe3\x6e\x6a\x8b\x26\xd3\x88\x44\x6b\x20\x04\xb6\xcb\x84\x5f\x09\xfe\xd3\x6c\x46\x28\x84\x49\x3b\x6c\xab\xc8\x78\xc0\x8f\x10\x0c\x47\x95\x52\x29\x61\xf3\xb5\xe2\xe4\xec\xc2\x9a\x38\x3d\x58\x08\x60\x2a\x14\x1f\xf7\x90\xdc\x09\x64\xab\x0d\x5d\x9c\x93\x84\xec\x25\xe2\x7a\x0b\x22\xa9\x86\x33\x04\xe4\xb1\x92\x34\x8a\x32\x03\xeb\x8d\x0b\x5b\x04\x82\x37\x40\xf5\xd4\x0f\xfd\x27\x33\x50\x1b\x0b\x5e\xb7\x8b\x60\x18\x84\x55\x6e\xab\xbb\xd4\x61\xfe\x99\x16\x2c\xc9\x15\xdd\x94\xe8\xaa\xe8\xd4\xcb\x2b\x87\x48\x6a\x6f\x1c\x32\xbd\x34\xae\x4f\xa4\x4d\x78\xc7\xda\x03\xb0\x15\x07\x5a\xe6\xd3\xed\xe8\xc2\x3a\x50\x15\x47\x33\xa2\x4c\xf5\xff\x98\x3e\xd1\x38\xc7\xc9\xbb\xa2\x89\xbd\x25\x7c\xec\x69\xf5\xeb\x0f\xf9\x66\xa7\xf6\x8e\x28\xe9\xae\x84\x25\x18\x45\xbb\x39\x07\xb8\x05\x87\x71\x2c\x8d\xe0\xfa\xc5\xcb\x2d\x3b\x83\x24\xd8\x91\x59\xa8\x80\xdf\x90\x40\x65\xe6\x18\xdb\x2f\x3c\x2c\x40\x09\x10\x0b\x97\x40\x04\xcd\x1a\xbd\x3d\xd7\xab\x92\xf6\x97\x2e\x7a\x6d\x4e\xe3\xd5\x51\x15\xd4\xdd\xc9\x83\x9b\xc9\x83\x0e\x64\xf3\x00\x2f\xff\xa6\x63\x70\x98\xf7\xcf\x01\x08\x87\x4b\x57\xe2\xfe\x44\xc4\x77\x44\x26\x07\x21\x29\x2e\x6d\xc5\x6b\xc9\x8b\x47\x0e\xe5\xa8\xc0\x0c\x3a\xdc\x2d\x3a\x8c\x93\x7c\x6b\xdd\x40\x2f\x77\xc1\xae\xa7\x97\xbd\xd0\x07\x00\x7e\x62\xc8\x8b\xce\x6d\x05\x11\x38\xbc\x41\x2c\xdd\x92\xef\x61\x4d\x94\xa2\x1d\x5e\xab\xf8\xc4\xa5\xe5\x7c\x89\xed\xb5\x49\x70\xad\x37\xf7\x25\x49\x6d\xd3\xb1\xec\x43\x47\x79\x61\x2f\x8e\xa5\xc6\xe0\x83\x2e\x58\xb8\xdd\x2d\x5a\x03\xad\xe3\xb6\x6c\x9f\x87\xac\xae\xec\xdb\xee\x69\xfc\x2e\xc7\x6f\x9c\x09\x32\xa5\x9f\xb7\x12\xc5\x6f\xe0\x53\xab\x5e\xea\x65\xae\x14\x92\x03\xf7\x0c\x14\x9e\x0b\x02\x1a\xed\x4a\xdb\x62\x53\x23\x56\x64\x46\xda\xb4\xc8\x47\xb2\x40\x5c\x94\x7e\xda\x16\x04\x72\xff\x45\xef\xcc\xbe\xce\x95\xca\xe4\xe9\xc9\xc9\x8c\xaa\x79\x3e\x39\x8e\x78\x6a\xe2\xf0\xb9\x98\x99\x3f\x4e\xa8\x94\x39\x91\x27\x7f\xfc\xc3\x1f\x8a\x2d\x9e\xe0\xe8\x71\x66\x60\x75\x96\xfd\x4e\xe5\x2d\x27\x58\xee\x16\xd9\xe3\x52\xd8\x5e\x38\x95\x39\xe8\xc6\x25\x8f\xea\x6f\xa4\xc2\x69\x16\x86\x82\x9a\xb2\x71\x52\xe1\xa2\x58\x05\xe4\x25\xea\x69\xa2\x39\xce\x32\xc2\x9a\xcd\x0e\x26\xd1\x74\x07\xd6\xe3\x52\x55\xed\x08\xc9\xe7\x2c\xc1\xac\x0c\xbf\x00\x95\x97\x04\x89\x08\x53\x16\x1a\xa0\x28\x25\x0d\xd4\x68\x20\x80\x0c\xff\xdf\x2c\x15\x11\xe6\x48\x65\x51\x52\xcd\x0d\xc7\x96\x37\x75\x45\x2f\x71\xb0\x74\xd5\x92\xb2\xc5\xda\x11\xb7\x6a\xab\x92\x14\xef\x96\x4b\x8b\x6f\x5e\xd2\x46\x70\x36\x26\x9f\x35\x93\x93\xdb\x02\x76\x3d\x48\x22\x51\xff\xa7\x3b\x24\x17\x4c\xe1\xcf\xa7\xe8\x92\x32\x10\x60\xbf\xe7\xb9\x90\xe8\x1c\x2f\x8e\xf8\xf4\x28\xe5\x4c\xcd\xd1\x25\xfc\xaf\xfd\xe9\x99\x90\x47\xf4\x33\xc1\xc2\xf2\x07\x5b\x92\xce\xd7\x37\xd7\x24\x24\x72\x26\x11\x79\xd2\x27\xf4\x0f\xff\x89\x52\xd3\xf2\x29\xfa\xf6\xe4\x0f\xff\x89\x7e\x07\xff\xff\xff\x47\xbf\x6b\xd0\xf4\x37\x83\xfc\x82\xca\xc5\xb7\x65\x77\x6e\xaf\xb2\x52\x5b\x54\x73\x3f\x13\xbc\xd8\xa9\xda\x96\x1f\x69\xf4\xc8\xa7\xd3\xb1\x26\x0c\x93\xc8\x37\xc6\x62\x09\x2e\x7a\x4b\xfc\x54\x6a\x6b\x4f\x9b\x4a\x76\x45\x0d\x19\xdb\xa9\x41\x7c\x70\xec\x5a\xe6\x45\xe5\x5d\x08\x22\x2a\x55\x33\xa6\x12\xbe\x22\xb1\xe6\xaa\x9b\x9c\x0e\x67\xdd\x73\xc9\xdf\xce\x82\x13\x22\xa4\x84\xf5\xd4\x7d\xe0\x5f\x18\xc5\x6a\x02\x7d\xec\x42\xd6\x1e\x87\xa5\xf0\xda\x2f\x26\x66\x12\xa6\xf6\x56\xf1\x92\x72\xa9\xf3\xf5\xa1\x92\x77\x5c\xec\xa4\x6f\x3d\x92\xc6\x54\x86\x35\xf5\x92\x5c\x0d\xdf\xb0\xb2\x3f\x64\x88\x73\xe1\x71\x8c\x8d\x5d\xc4\x56\x55\x5c\x6f\xc5\xa4\xc2\x04\x97\xb5\x3b\xf4\x7a\xea\xe7\xfe\x93\x75\xc3\x84\x48\x33\xf7\x76\x51\x2f\x0e\x46\xab\x45\x24\xcd\x12\x6b\x46\x5c\x03\x76\xb8\x6e\x43\xef\x3c\xbe\x05\x34\x0e\x61\x8f\x90\xbf\xc1\x9c\x64\x6b\x01\x04\xea\xf7\x33\x17\x11\x39\xe3\xbb\x85\xbd\x26\x94\x2d\xc5\xcb\xb7\x2f\x45\xe4\x57\xef\xc2\x16\x9d\x72\x78\xc0\x3c\x2e\x94\x05\xe3\x16\xb0\x55\x28\x02\x20\xd2\xf2\x6c\x00\xd0\x6e\x1f\x58\x97\x4b\xb5\x11\x76\xe0\xda\xc6\x70\x5c\x30\x3c\x57\x5a\xa3\x52\x51\x43\x60\xcd\x0b\x57\xc4\xae\x41\x50\xd1\xce\xe3\x08\xaa\xc4\x14\x91\x4a\x95\x6a\xec\xd8\x94\x4a\x11\x5b\x62\x95\x9a\x82\x4d\x3d\x24\x30\x04\x65\xaa\xb9\x6e\x4f\x12\x71\x34\xc5\x11\x65\xb3\x5e\x00\x53\x09\x90\x11\xe1\x75\x50\x47\xa4\xf7\x58\x3e\xee\x37\xd0\x70\xe7\x02\x96\x34\x2e\x8a\xa8\x59\x60\x19\xe3\xd8\xa0\x4b\x18\x7d\x0a\xcb\xc7\x26\x64\xa5\x25\x58\xb7\x15\xa3\xf3\x4b\xe1\xc0\xe0\x56\x8d\xcf\xa5\xa0\x93\x50\x9f\x82\x9a\x0d\xae\xa4\xb2\x05\x79\x74\x19\x7f\xd8\xa3\xb0\x54\xd1\x4d\x57\x8c\x5f\xce\xb9\x50\xe3\x2d\x71\x61\xab\x69\xf4\x8c\x1c\x25\x00\xe8\xc2\x9f\x88\x78\xa2\xe4\xb9\x0c\xaf\xba\x09\x2d\x1a\xa3\x59\x10\x55\x07\xf8\x9b\x69\xc6\x21\x85\x66\x8a\x52\xcc\x16\x86\x51\x6a\xe6\x82\xe5\xa3\xf4\x85\x5c\x91\x4c\x71\x92\xf4\x90\x20\xb9\x34\x05\x8e\x25\x49\xa6\x47\xae\x14\x46\x8c\x12\x3e\xa3\x11\x4e\xd0\x24\xe1\xd1\xa3\x34\x19\x6e\x6c\x66\x98\x54\x26\x78\x44\xa4\x0c\x24\xab\x22\x9b\xdd\xe6\x18\x42\x15\x57\x45\x44\x4a\x19\x95\x8a\x46\x4e\x64\x2a\x40\x29\x4c\x2d\xf1\x08\x83\x49\x18\x32\x36\x61\xb8\x5a\xd2\x23\x06\x9c\x33\x67\xb6\x68\x12\x5c\xd7\x16\x73\xcf\x05\x89\x37\x1d\xa0\x3d\x40\x08\x3a\x0a\x19\xab\xf2\x81\x5c\x73\xa4\xce\xec\x67\x70\x8c\x57\x91\xc0\x6d\xf9\x44\x79\x82\xf4\x27\xad\x04\x6b\x04\x31\xe5\x3e\x04\xbe\x24\xb9\xf8\xc8\xf0\x03\x43\x34\x83\x21\x37\xe0\x98\xad\xa3\x69\xbd\x8a\x20\xf2\x40\x9d\xae\xaa\xd7\x9c\xb2\x28\xc9\x63\x5f\xa9\x51\x8b\x00\x4f\x9a\x48\xdc\xf2\xe8\xb5\xd7\x82\x42\x0f\x61\x89\x9e\x49\x92\xe8\xff\x9a\x08\xf8\x23\x5f\x38\x41\xb3\x64\x53\xdc\x02\x3a\x71\x5c\xba\x89\xa2\x0e\x0e\x9d\xf2\x06\xab\xb9\xc9\xf9\x4f\xb9\x32\x45\x32\x0d\x3a\xa5\xb3\x6f\x19\x38\xc3\x49\xc2\x27\x70\xd2\x01\xb8\xd2\xe5\xb9\x06\x69\x75\x79\x14\x11\x12\x93\x18\x7d\x1d\x1c\x5c\x8f\x47\xf1\x4d\x3d\x8c\x62\x69\x45\x0e\x00\xb4\xb2\x6a\x58\x6b\x84\xae\x2c\xd7\x79\x3b\x46\x37\x15\x60\x96\xb0\x7e\x3b\xae\xc2\x74\xf5\x96\xb6\xf0\x6d\x80\x2e\x2b\x93\x78\xb9\x1d\xda\x10\xe8\xb2\xd4\xe7\x1e\x80\x2e\x2b\xf3\x6c\x88\xdd\xe7\xb3\x17\xcd\x39\xd6\x93\xba\xe0\xed\x13\xc1\x0c\x40\x98\xb9\x3b\x4b\x24\xe8\x0e\xe4\xa2\x8e\x10\x0f\x0b\xc4\xb3\x52\x0d\xf1\x6d\x41\x3c\x2b\x83\x39\x64\x10\xcf\xca\x50\x0f\x17\xc4\xb3\x66\xa0\x2d\x40\x3c\x8d\x73\x7f\xac\x89\xba\x1d\x53\x80\xc4\x96\x49\x3e\xbd\x83\x54\xef\x95\x63\x3c\x33\x81\x03\xe6\x1a\x73\x77\xb4\xc5\xb4\x86\xd1\xda\x1c\xc8\xa6\x70\xa8\x8a\x13\x62\x53\xda\xf3\xde\x37\x03\xfe\xb0\xa9\xd9\xbd\x17\x5a\xbb\xc1\x0e\x19\xe1\xcc\xe6\x94\x37\x95\x9a\x39\x9c\xec\xd9\xed\xf0\x51\x01\x83\xb0\xc4\xf2\x5b\x21\x88\x5d\x56\xaa\x36\xcc\xf9\xb3\xad\x9c\x04\x64\x68\x88\xb2\x91\x04\xa1\xd3\xb1\x55\xda\x9a\x56\x8e\x32\x45\x66\x55\x9d\xb6\x38\x34\x94\xa9\x3f\xfd\x71\x2d\x27\x32\x10\x8b\x4e\x3d\x0c\x6a\x27\x78\x67\x87\x7d\x46\x62\x14\xcd\xb5\x56\x24\xb5\xfa\xa2\xa7\x63\x6e\x56\x89\x52\x4c\x9d\x22\x95\x4b\xe3\x5a\xa2\x72\xc4\x4a\x98\xa4\xc7\xe8\x23\x14\x84\xc5\x69\xa6\xf5\x2f\x3f\x3f\xaa\x29\x69\x94\x7f\xfb\xed\x9f\x08\xfa\x16\xa5\x04\xb3\x92\x0e\x0b\x6a\x93\xbe\xfa\x00\xc3\x4f\xcd\xc9\x88\xd5\x6e\x05\x1a\x7c\x36\x35\xa6\x5c\xbc\xdf\x90\x4d\xb9\xd3\x89\xa1\xd0\x21\x8e\xe6\x48\xe6\x13\x53\xa9\x37\xb0\x61\x38\x41\xfa\x82\xcf\xc0\x51\x0d\x37\xb2\x1b\xf4\xaa\x53\xf8\xb2\x31\x00\xd6\xdd\xd8\xf6\x36\xee\xc3\x3d\x72\x24\x49\x09\xdb\xa9\xc6\x69\x66\x38\x5f\x78\xf0\xa5\xc1\x7d\xe9\x19\x1f\x82\xd6\xcf\xb0\xb5\xec\x6b\x59\x1a\xc2\x79\xc1\x4b\x96\x27\x58\xd8\xa3\x3f\x62\x5a\xd1\x10\xe4\x89\xf2\x5c\x26\x0b\x14\x73\x46\x7a\x40\x09\x79\x34\x37\x8e\x55\xad\xb3\x60\x5b\xb0\xe2\x89\xca\x5c\x2b\xb4\xd0\x96\xab\x8f\x21\x15\x36\x98\x54\x73\x0a\xfd\x68\xf5\x9b\xc0\x57\x61\x96\x1c\x6a\xa7\x45\x85\xb0\xb1\x15\x9e\xdf\x12\x36\xb6\x44\x55\x1d\x6c\xac\x87\x8d\x5d\x5e\x97\x43\x84\x8d\xad\xec\x79\x3b\xd8\xd8\xba\x2d\xdf\x02\x36\xb6\xd4\xcc\x17\x03\x1b\x5b\x59\xd1\x2f\x06\x36\xb6\x32\xaf\x0e\x36\xf6\xcb\x83\x8d\xdd\x11\x18\xb5\x9e\x17\x1b\x7c\x25\x45\xd9\x62\x63\x22\xfb\x4a\xa2\xe1\xb5\x26\xb0\xe8\xb1\x1c\xd4\xe6\xaf\xab\xdd\xc1\x58\xeb\x99\xd0\x66\x60\xac\xb5\xaa\x7a\x33\xab\xdb\x15\xe0\x09\x14\x83\x57\x06\x63\x2d\x4d\xa0\x8b\xaf\xdc\x3c\xbe\xb2\x96\xf8\x6c\xdf\x7a\x78\x2e\xe8\xb2\x7a\x21\xb7\x84\x63\x2d\xed\x4f\xab\x48\x4c\x10\xdd\xf7\x40\x89\x2f\x2b\xcd\xdf\x97\x0e\xf9\x5a\x59\x3e\x5c\x45\x69\x81\xa1\xb5\x84\xe7\xd0\xe2\x8c\x12\x1e\xfa\xff\x3b\xca\xdd\x22\x32\xb8\xb2\xbc\xde\xaf\x62\x68\xb1\x05\xa9\xb6\xa6\x50\xa7\x95\xee\x27\x51\xd6\x25\x4f\x6e\xe8\x62\x76\x83\xb8\xcb\x48\xd4\x60\x63\xa6\x29\xdd\x57\xb3\xeb\x2e\x32\x8f\x85\x05\x0a\xf9\x52\x5e\xa8\xbe\x9e\xcc\x70\x8c\x8c\x5f\x49\x87\x05\xa0\x0e\xf3\xe5\x8c\x4a\x25\x1a\x63\x9b\x96\x46\xb8\x8b\xab\x34\xcb\x5b\x07\xc4\x04\xab\x3a\xdb\xee\xb3\x94\xa4\x5c\xac\x0b\xac\xaa\xfd\xd2\x96\xba\xd9\xe6\x53\x92\xcd\x49\xaa\x25\x99\xf1\xa6\x8d\xb4\xdd\x6f\x9f\x34\x6c\x73\xd7\x4c\xa0\x63\x89\x08\x02\x47\xa8\x7e\x37\x36\x88\x94\xad\xb7\x7b\xd7\x6d\xb6\x98\x99\x1b\x3a\x84\x1c\x98\xf2\x6a\x83\x9b\x7d\xa9\xe4\xee\x06\xfa\xae\x8d\xe9\xf0\x21\x35\xeb\xa3\x36\x56\xc4\x6b\xac\xc2\x9d\x2a\xbe\xb2\x85\xa0\x37\x70\xe5\x97\xbd\xf3\x9a\x13\x86\x55\x80\x37\x0f\xf0\x68\x40\x4d\x5d\x5e\x1e\x88\xcc\x91\x44\x1c\x85\x9a\x41\x69\x30\xcb\xeb\x55\xa2\x12\xa7\x51\xee\x40\x24\xb9\x68\x8c\x32\x6d\x63\xd0\x8e\x54\x8e\x13\xd0\x24\xc2\xea\x95\xd5\x4d\x9d\x2c\x6a\xd2\x1e\xdb\x79\x4c\x28\x53\x7f\xfe\x8f\x8d\x76\x53\xab\x56\x76\xdd\xa0\xe2\x16\x8e\x22\x22\x8d\x8d\xdd\x46\x21\xe3\x09\x7f\x82\x62\x5b\xbb\xec\xaa\x3e\xca\x7a\xde\x9a\xc1\x7b\x28\xe2\xb8\x20\x75\x23\x2e\xcc\x05\xcf\x67\x73\x67\x43\xd2\x67\x46\x4f\xad\x6e\x2f\x7f\x5c\xb2\x91\x6f\xbc\x97\xdf\xe5\x34\xd9\xce\x42\x77\x57\x2a\x43\xf6\x69\x78\x8f\xe4\xdc\x9f\xd6\x09\x34\x5b\xbb\xb1\xcb\x83\x6e\xdf\xa7\xfd\xd6\xfb\x6b\xa0\x9b\x9e\x83\xdf\x9c\xf2\x24\x01\x4f\x83\x24\xe9\x13\x11\xf5\xdd\xc3\x84\xef\xe9\x66\xc8\x79\x7e\x00\xf0\x75\x91\x18\xd1\x4a\xfe\xba\x31\xa2\xa1\x44\x6e\xf4\xd5\xa0\x05\x13\xaa\xc6\x19\x61\x75\x36\xb6\x9f\x96\x2b\xc0\xbc\xb3\x80\x41\x17\x3d\xb6\xb7\xa0\x41\xb7\x24\xaf\x1c\x38\xb8\x66\x1e\x87\x1a\x3c\x58\x61\x76\x3e\x96\xaf\xb8\x66\x5c\xe0\x90\x51\x7c\xfa\x7a\x89\x47\xac\x5f\xca\xa7\x70\x95\xb2\x27\x8b\x22\x20\xdb\xe8\x10\x21\x33\x83\x3a\x1b\xd6\xb0\x02\x6e\x34\xfd\x17\x68\x3a\x06\xbc\xd6\x84\x14\xba\xb0\x41\x88\x26\x27\xf1\x11\x8e\x16\x51\x42\xa3\x40\x67\x9e\x09\x9c\xcd\xeb\x38\x9e\xdb\xf9\x0e\x75\xe7\xad\x50\x77\x9a\x0a\x52\x6d\x12\xb7\xed\xe8\x8a\xe1\x94\x74\x68\x40\x75\x68\x40\x3d\x8f\x77\xc1\x8a\xd2\x5a\x6f\x08\xa3\xb0\x7c\xee\x3a\x48\xa0\x37\x80\x04\xda\xe6\xf0\x15\x78\x3f\xa5\x63\xd7\xc1\x14\x7d\x68\x05\x53\xe4\x2f\xc1\x83\x42\x9e\x69\x3e\x8f\x6f\x8c\x68\xb2\x3c\xb0\xb7\x84\x25\xaa\x11\x17\x36\x91\x9b\x56\xe1\x12\xad\xa2\x8b\x56\xeb\xf2\xb6\x28\x41\x9b\xad\xcc\x46\x00\x40\xb5\x77\xd7\x81\xc0\x01\x35\x6f\xc3\x81\x9c\x9b\x7d\x66\xb5\x6c\x56\x3b\x34\xcc\x6c\xd9\x44\xc1\xda\x2c\xc9\xc5\xd3\xc3\xfb\x4a\x74\x29\x8a\xac\x6d\x97\xec\xd2\x77\x3e\x68\x22\xd0\x9c\x27\xb1\x03\xa1\xf0\xab\xe5\x3b\xf0\x99\x00\x7e\x81\xdc\x66\x40\xb1\x73\xd0\xb6\x8a\x82\x60\xab\x52\x5a\xfc\x26\xc2\x70\xf7\xc0\x68\xf6\x61\x45\xf0\x9c\x64\x1b\xfb\xc1\x5a\x59\x44\x96\xcd\xdf\x2b\xc6\x58\x5a\x21\xb0\x9a\xd7\x0f\x73\xad\xdd\x77\xcd\xe0\x56\x89\x1e\x81\x71\x50\xd4\x95\xfa\x34\x74\x06\x4f\x9f\xa8\x33\x44\xe0\xb0\xc7\x95\x5e\x3a\x37\xbb\x56\x9e\xba\x2a\xb1\x6c\x11\x0c\xb6\x54\xb9\x6d\x77\x70\xa0\x14\x7f\x1e\x67\x58\xe0\x24\x21\x09\x95\xe9\x8b\x05\x03\x9f\x95\xdd\xb5\xfa\xac\x0a\x6e\x4c\x44\x2c\x4f\x27\x86\x14\xdd\x40\x6c\xb1\x3f\xc5\x91\xc8\x59\x08\x6d\xe6\x37\xc6\x17\x13\xcc\xe1\x5e\x00\xab\x52\x34\x87\xaa\xad\x53\x4c\x05\x23\xb2\xb1\x46\x26\x89\x72\x41\xd5\x62\x6c\x4b\x8e\xb6\x3f\x70\x77\xf6\xcb\x33\xfb\xe1\x6a\x0f\xb7\xcb\xea\x77\xfd\xf9\x12\xa7\x19\x11\x50\x26\xc8\x15\xbc\x09\xca\xaa\x5a\xd4\x06\xe2\x6b\x0d\x41\xf8\xf3\xd2\xb5\xdd\x14\x38\x8c\x9f\xc7\x41\x46\xd5\x38\xaa\x12\xc7\xba\xc3\x5a\x87\x3b\xb5\x6a\x92\x2f\x8c\xbc\xd4\xe0\x45\x7e\x81\x2a\x23\x36\x6d\xc2\x34\xad\x07\x1c\xb8\x82\xc1\x5e\x59\x6c\x4c\x90\xf2\x6e\x95\xaa\x86\x71\x5a\xac\x9f\xba\xe0\xa3\x15\x83\xed\x07\x5f\xb5\x18\x71\xd0\xc9\x9e\x86\xad\x0f\xba\x10\x79\xa6\xe8\x64\x19\xda\x46\xed\xaf\x84\x68\x3f\x81\x34\x6b\xe7\x66\x28\x75\x6b\xea\x8a\x96\x38\xb1\x9d\x9d\x96\xff\x2d\x8e\x98\x43\x08\x32\x08\x4b\x61\x1e\xdf\x75\x4a\x95\x72\x89\x02\xc6\x00\xad\xa9\xb3\x6c\x9b\xfd\xca\x85\x7b\x60\xa8\xf4\x6a\x4c\x44\xc7\x23\xd6\x97\xe8\x99\x20\x46\x2c\x84\x44\x4d\x0d\x57\x6f\xd5\x86\xda\x4f\x13\xa2\x7b\xf2\xb1\x29\x5a\x78\xa0\x4a\xfa\xf2\x63\xa6\x8f\x29\x4e\x24\xe9\xe9\x86\xa1\x6a\xa9\xe2\x10\xfc\x89\xd1\xb3\xc0\x59\x46\xc4\x88\xd9\x2c\x0e\x70\xb8\x70\x9e\x98\xf6\x9b\x42\x5c\xed\x1a\x90\x71\x84\xa3\xf9\x2b\xed\x11\x86\x64\x9c\x68\x4e\x62\x97\x2f\x5c\xde\x1e\x37\x6f\x63\xb0\xde\x60\xb3\x86\x53\x57\x3e\xab\x67\x3b\x49\x22\xcd\x51\x7c\x99\xe9\x8c\x08\x3d\x6a\x4d\xc3\x4f\x84\x21\x3a\x75\xe3\xb0\xb1\x3b\xe8\x19\x3c\x53\x9a\xf4\x9f\x30\x4d\x4c\x02\xbe\xeb\xda\x09\x81\xc6\xfc\x3e\x62\xc6\xdd\xcd\xa2\x52\x86\x2a\x65\x54\xce\x35\xa7\xce\xc1\x27\x09\x6a\x46\x53\xe2\x0c\x7b\xda\xe4\x34\x0f\xf4\xeb\xab\x39\xe8\x13\x15\x9c\xa5\x90\x24\x63\x71\x99\xdc\xf2\x49\xa2\xfc\xf1\xa8\x4d\x71\x5c\x2b\x11\xc7\xb1\x2c\x1b\x3f\x8d\x5a\x49\x7f\x2d\x99\x5d\x8e\x4a\x59\x81\x51\x00\x2b\x04\x41\x9c\xae\xb2\xd8\x2a\xf9\xb7\x4b\x6d\x58\x4e\x6d\xa8\x5f\x9b\x43\x4c\x6f\xf0\x87\x78\xd3\x14\x87\xa6\xed\xdf\x87\x64\xbb\xc7\x54\x87\x37\xce\x09\x78\x99\x74\x80\xb7\xcd\xdf\x78\x89\xd4\x8d\x2e\xc1\xe1\x0d\x13\x1c\x5a\x5b\x6a\xcb\xb1\xd9\xcd\xc7\x76\xa3\xe4\x80\x35\x60\x4e\x75\xbd\x5c\x12\x25\x68\x24\xf7\xc1\x1f\x64\x86\x5b\x46\xb5\x81\x16\x98\xad\x91\x9a\xf4\x0b\xde\x09\x09\x71\x62\xbe\xce\xdf\x44\x10\xfc\x18\xf3\xe7\x25\x5b\x9d\x0c\xd1\x34\x2e\xb9\x16\x7b\x04\x89\xa8\x24\xa5\x48\x16\x2a\x11\x23\xd2\x1a\x3b\xf1\x88\xcd\x29\x11\x58\x44\x73\xc8\x6e\x2c\x36\xc6\x64\xc9\x1a\x40\x23\x13\xcb\x10\x7a\x9b\x36\xd8\xf4\x16\xeb\x5e\xb5\x30\x79\x7c\x3a\xbb\xe7\x7a\x24\xa9\xf9\xc4\x0b\x33\x56\xca\x08\x4d\x72\xad\xb6\x7f\xd7\x40\x7c\xbf\xd8\x2f\x1a\x8c\xef\x83\x89\x82\x2f\x5a\x06\xe4\x17\xd4\xd0\x05\xe5\xbf\x50\x50\x7e\xcd\x12\x6f\x16\x98\xbf\x95\xc9\xef\xf5\x63\x86\x5d\xcf\xaf\x11\x37\xbc\x2e\x68\x2b\x9f\x8c\x5f\xfc\xe8\xd5\xce\xb9\xed\x09\xfc\xc9\x13\x85\x91\x88\x85\xa6\xb3\x09\x89\x63\xe0\xb4\x8a\xdb\x4a\xd1\x05\xed\x38\xf3\x80\xbe\x7b\xb1\xd4\xc4\x8e\x13\xce\x66\x92\xc6\x06\x6c\x25\xc3\x50\xb1\x35\x34\x5e\x00\xb8\x00\xec\x6f\x92\x10\xe1\xbc\x12\x02\x7d\x2d\x29\xb3\x68\x8a\xfe\xb7\x98\x13\xc9\xbe\x52\xc6\x58\x80\xd9\x02\x3d\x32\xfe\x9c\x90\x78\x06\x3b\x54\x1d\xcc\x11\xa2\xa4\x87\xa8\xf2\x9f\x09\x40\x23\xe0\xb9\x1a\xe9\xb1\x43\xac\x99\xd1\x00\x88\xfd\x36\xa8\x89\xee\x9b\xf9\xe6\x18\xa1\x21\x43\x53\x1c\xa9\x1e\x92\xf9\xa4\x68\x3f\xe6\xa6\xc8\xb5\xd6\xbe\x83\x89\x17\x8d\x74\x31\xe3\x35\x9d\xd7\x9f\x0d\xc7\x1d\x34\xb9\xf6\x13\x8a\x77\x8a\xad\x7b\xc2\xbb\x40\x8c\x5e\xe6\xd2\x06\x61\x20\xce\xfc\xd1\xb7\xf0\x4a\x1e\x23\x1a\xf0\x3e\x0d\xde\x32\xe3\x71\xa3\xad\xb3\x32\x95\x4d\xc7\x52\x04\x42\x5a\x41\xc9\x3a\xaa\xa0\x5d\xb3\xdc\x5a\x6a\x92\x4a\x10\x9c\x5a\xe7\x80\xbe\x6a\x40\xac\x31\x61\x90\x7a\xf4\x54\x18\x09\x73\x93\x2d\xbe\xa0\xec\x51\xef\x6e\x81\x8a\x0d\xf5\xe5\xa1\xe7\xba\x4d\xcb\xf4\x8d\x47\xce\x38\x33\x0e\xc2\x9d\xe4\x4e\x3a\x63\x38\xd9\xd0\xc6\xb1\xb4\x72\xcb\x3e\x3d\x27\x67\x59\x71\x41\x4b\x11\xc6\xd8\x87\x4c\x8f\x1b\xd9\x90\x2a\xf3\x0d\xe5\x3d\x8c\x62\x92\x11\x16\x13\x16\x2d\x80\x44\x18\x20\xe7\x08\x86\x13\x84\xe1\x3b\x9c\x1c\xa3\x73\x93\x5f\xe3\x25\x3c\x7b\xad\xc3\x85\x9e\x62\x46\xa7\x5a\x4f\x00\x23\xac\x1d\xe5\x88\x99\x61\x3a\x1f\x48\x50\xb4\xdf\xaf\x58\xdd\xce\xe8\x1b\xe4\x6a\x47\x54\x62\x56\xfe\x1e\xad\xbe\x70\xa0\xb7\x55\xbb\xa3\x9b\x73\x35\x08\x64\x3e\x39\x82\x7f\x97\x12\xce\x1c\x50\x4f\x81\x22\x43\x12\x02\xe6\x40\xeb\xf1\x82\x8b\xb1\x09\x58\x6e\x1f\x7e\xbb\x35\x79\x1c\x41\x1f\x25\xa5\x26\xa5\x8c\xa6\x79\x1a\x38\xef\x4c\xc5\x82\xc8\xda\x2f\x4d\x26\x46\xa6\xf5\x80\xc8\x81\x97\x23\x7d\xb9\xb2\x05\x9a\xd1\x27\xc2\x46\x2c\xe3\x94\xa9\x63\x74\xc5\x15\x09\x4a\x44\x18\xe8\x28\x9e\x29\x9a\x1a\xb4\x53\x41\xf4\x39\x30\xa0\xd8\x00\x34\x39\xc7\xaa\x87\xe2\x1c\x8e\x2a\x23\x4a\xb3\x0e\x7d\xe3\x2a\xd8\x19\x88\x8f\x16\x23\x66\x6e\xba\x29\xa6\x49\x2e\x88\x95\x59\xb1\xc9\x8b\x29\x86\x5c\x8c\xcc\x22\xa1\x05\x93\x48\xe9\x6c\xae\xf4\x16\x69\x19\xcf\xfa\x1b\xe7\x9a\x1b\xf1\x11\x9b\x10\x84\x51\xc6\x25\x55\xf4\xc9\xfb\x2f\xe9\x14\x61\x29\xc1\x82\x72\x8c\xce\x4b\xf6\x7f\x2a\x41\xf5\x6e\x8a\xab\xa5\x6c\x6c\x6d\xcf\xcd\xf9\x38\x3b\x6f\x64\xa9\x17\xbb\xca\x78\x22\x79\x92\xab\xd0\x05\x5b\xbf\xb7\x85\x69\xdc\x01\xf7\x83\x81\x98\x4f\x47\xcc\xd1\xb5\x3c\x46\x7d\x89\x24\xd7\xbb\x24\xcd\x56\x46\x82\x2a\x22\xa8\x41\x71\x22\xca\x6c\x82\x3f\xa7\xfe\x0c\xa4\x58\x3c\x6a\x11\x2a\xb4\xc0\x1b\x4c\xd1\x92\xb5\x63\x62\x24\x24\x80\xb5\x0a\xb7\x03\x4c\xff\x88\x71\x76\xc4\xc8\x0c\xaf\xdb\x91\x11\x2b\x6d\x09\xfa\x9a\x4e\x0b\x85\xb4\xc9\xe7\x18\xac\xdd\x18\x22\x9f\x9a\x76\xc9\x74\xdc\xb4\x49\xd3\x84\xe3\x35\x6e\xe3\x69\x71\xe8\xd1\xdf\xf9\xc4\x8c\x51\xeb\xfd\x5c\x81\x14\xa8\xd5\xab\x29\x17\x64\x8e\x59\xdc\x73\x9b\x55\x1e\x1b\xdc\x8c\xd6\xd4\xe6\x94\x31\x90\x04\x1d\x88\x30\x31\x58\x4c\x98\x05\x7b\x61\x15\x37\xbb\x15\xc5\x3e\x6c\x74\x57\xf8\xd6\xa0\xf6\x89\x31\x40\x18\x96\xb7\xc8\xec\x11\x97\x34\xcd\x92\x22\xa7\x29\xb0\x8d\x4e\xb5\x88\xe5\x78\x24\x7f\x02\xd3\x95\xd3\xda\xe0\x56\xb7\x3b\xa7\xe9\xac\x66\xe4\x9e\x91\xc2\xad\xe1\x6c\x5e\xa6\x0c\x66\xc0\xc2\xbe\x96\x44\xff\x53\x91\x42\xed\x33\xc2\xfa\x88\x39\x11\xe4\x1b\xe0\x32\xb6\xd9\xc0\x78\xa6\x45\x68\x03\xf3\x6a\xd7\x0f\x45\xc6\xc9\x5d\x3a\x27\xf6\x30\xb8\x57\x6b\x2e\xaa\xef\x28\xc3\xa5\xcc\xdb\x2d\x04\xbf\x24\xdf\x28\xb9\x2a\x70\xfb\x2d\x9a\x6a\x9a\x28\xbc\xae\xcc\xc8\x06\x94\x60\xf6\x99\x20\xdd\x9d\xa5\x66\x57\xf1\x06\x43\x44\xc0\x9c\x24\x19\x8a\xe9\x14\xcc\x52\x0a\xd8\xb7\x07\x16\x33\x58\xf0\xfa\xb0\xa7\x39\x33\x20\x71\xc6\x23\xf2\x6c\xf1\xb6\xed\xd5\x58\x34\x7e\x3c\x62\x43\xf5\x95\xd4\x22\x3a\x67\x33\x7d\xd1\xc4\x4f\x54\x16\x45\x4e\x22\xce\x64\x9e\x12\x61\xbb\xd0\x37\xb2\xa6\x48\x5b\x20\x00\x3b\x19\x4a\x8f\x4d\xef\xfd\x13\x4e\x68\xec\x0a\xf1\xe8\x1f\xcd\x99\xd3\xa3\x94\xce\xa3\x58\x13\x12\x66\x37\x37\xd6\x6b\xf5\x66\x62\xfd\x8f\xa1\xe4\x8e\xd2\x42\xc8\xc7\xd6\x56\x7f\x52\x15\xf1\xed\xaa\xaf\x10\xef\x27\x4b\x93\x42\xab\x05\x23\xbb\x0a\xe7\xeb\x50\x0c\x1d\xa2\x6e\x6e\x42\x80\x75\x3f\xce\xe8\x63\x06\xb7\x11\xfb\xa9\x4c\xd0\x8e\xda\x70\x96\x50\xbc\x27\x14\x64\x03\xa9\xb0\x16\x2f\xcc\x75\xc0\x85\xd5\x70\xec\x9d\xd3\xbc\xb5\xe7\x3b\x96\x89\x90\x11\x4e\x96\x77\x78\x85\xbd\xd9\xbc\xbf\x5a\x09\xb0\xc7\xcd\xb4\xbd\x32\xe9\x37\xe2\x49\xb2\x49\x09\x93\xca\xcc\xcf\x8a\xcf\x57\x8f\xa8\xe8\x47\x6f\x80\xdb\x0b\x38\x35\xe6\xf2\xc6\x89\x35\xa5\x48\x65\x77\x29\x7c\xc9\xa8\x61\x0b\xcb\x5a\x47\x8c\x4f\xa1\xc8\x4d\xd2\x14\xd5\x95\x09\x9e\xd2\x4d\x50\x96\x4d\xa0\xd3\xad\xb3\x8b\xaf\xb1\x32\x38\xeb\x39\x88\xa6\x86\xbc\x6c\x8f\x90\xaf\x87\xad\xb8\xb9\xe2\x0c\xa5\x38\xdb\x6a\xc1\xd7\x79\x85\xfa\x28\x35\x2e\x39\xbb\x7a\x80\xb7\x48\xa0\x5e\x0c\x2c\xf2\x33\x5e\x14\xa9\xd1\x4d\xf8\xb9\x6c\x23\x72\x78\xd0\xaf\x0f\xd9\x94\x6f\x70\x38\x8b\x54\x66\x7b\xfa\xb0\xa3\xd9\xe0\xfc\x79\x2f\x85\xd9\x7d\xb3\xa6\x6d\xce\xe3\x59\x1d\x51\x6f\x7c\x32\xdd\x0a\xbe\xa4\x8d\x32\x64\x22\xa1\x79\x72\x93\xbb\xb5\x7c\xb4\x82\x16\x11\x0c\x67\xf5\x52\x5d\x96\xe8\x70\xef\x6b\x54\x69\x07\x19\x53\xb8\x0b\xa6\xbe\xa9\x6f\xf5\x15\xd6\xcc\x1e\x92\x56\x8b\xb5\x23\x76\xc3\x66\x38\xc0\xae\x47\x8f\xfa\x5b\x7f\x42\xd7\x16\x39\x68\xbf\x18\xc0\xcd\xa4\xb5\x73\x15\x91\x99\x36\x45\x6d\x4a\x13\x2d\x62\x0f\x6b\x0c\x9c\x2e\x41\xcc\x07\x54\x99\x50\x79\x27\x3d\xe5\x82\x06\x85\x41\x9d\x8c\x84\x28\x14\x28\x09\x9d\x3c\x81\x42\x0f\xa6\xc5\x39\x7f\x36\xd1\xe9\x82\x6a\x9e\x65\x84\x55\x05\xe6\x1e\xcd\x0b\xa8\xb5\x96\x18\x63\x93\xff\x80\x9b\x98\x41\x6c\x6b\x1f\x17\xa3\x6a\xd8\xd2\x7d\x94\x78\x6a\x9f\x7f\xe7\x7a\xbd\xd7\x5f\x2c\xef\x4d\xed\x08\xef\xcb\xad\x6f\x3c\x3a\x2f\xe5\x6f\x1e\x30\xf5\x11\x3e\x75\x4a\x0f\x46\x53\x41\xc0\xc1\x9f\x7a\x4c\x0d\x03\xaa\xcb\x39\xdc\x77\x77\xe7\x3f\x9c\x3c\x0c\x11\x51\x11\x4a\xe8\x23\x19\xb1\x48\x3e\xf5\xb4\x78\xfc\x8f\x9c\x28\xfd\x73\x83\x47\x80\xa6\x84\x49\xe0\x04\x54\x2d\x61\x0f\xd5\x2f\xa4\x5b\x18\xfd\xdf\xf3\xf2\xf7\x2b\x48\x7e\x29\x7d\x18\x68\xd7\xd5\xbb\x01\x32\x85\x92\x1e\x66\x69\x65\x0d\xc5\x18\x5b\xe4\xa0\xae\x1a\xe6\x16\xe9\x42\xec\xef\x39\xdb\x50\xe8\x3a\x2b\x3e\x0a\x46\xd1\x20\xd3\xa5\x19\x06\xac\xeb\xcd\xf2\x90\xcc\x37\xb5\xad\xaf\x63\x22\x45\x5a\xb6\xb3\x2d\x17\x85\x43\x91\x12\x84\x00\x0b\xf1\xf4\x64\xef\x7a\x8b\xc4\xe1\x27\x16\x7c\x74\x3c\x62\x97\xce\xe3\x5c\xfc\x2a\x0b\x3d\x3c\x9d\x04\x10\xe0\xe5\x56\xa0\xd9\x98\x4a\xff\x03\x14\x74\x91\x79\xa2\x4c\x45\xbb\x29\x65\x38\xf1\x03\x35\x4f\xea\xb8\x84\xc0\x2c\x9a\xef\x6a\x42\xa6\xd3\x31\x49\x36\x91\x44\x87\xd3\x41\x22\x35\x7d\x47\x8f\x0d\xa7\x73\x9b\x9a\x8d\xc5\x64\x6c\x25\x5a\x53\xf7\x09\x15\x26\x68\x9c\x98\x8a\x72\x04\x81\x8f\xb2\x9a\x3d\x66\x00\x22\xf4\x2e\x5a\x49\xdd\xb8\x28\x4d\xda\x86\x0f\xc9\x86\x5e\x10\x56\x23\x26\x72\x06\xc5\x26\x7c\xc4\x02\x46\x05\x5e\x78\xe4\xfc\x07\xd6\x9b\x33\xd3\x6c\xc2\xc0\x71\x9b\x97\xb5\x7e\xc6\x73\x09\xb6\x9a\x94\x28\x7d\x41\x7d\x0d\x75\x60\x4d\xc8\x50\x0f\x65\x82\xa6\x60\x6e\x95\xdf\xd4\x6c\xdd\x19\x56\x38\xe1\xb3\xbe\x50\x74\x8a\x23\x75\x8f\x77\xd2\xc0\xb1\x6d\x66\xdb\xf0\x53\x37\x0c\x34\x3c\xd7\x8b\x3f\x23\x8c\x08\x98\xa8\xd6\xc9\xeb\x8f\x30\x3c\xd9\x8a\x73\x83\x95\xcd\x1a\x46\xa5\xb7\x58\xe0\x5c\xf1\x54\xeb\xb7\x38\x49\x16\x3d\x63\x91\x25\x68\x8e\xe5\xdc\x6d\xb4\x31\xa6\xb5\xb9\x9b\xec\xe2\x9e\xe1\x68\x4e\xee\xa0\x2a\x72\xdd\xe2\x56\x46\xf9\x81\xb0\x3c\xfd\x70\x8a\xfe\xa7\x98\xe3\x59\xff\xec\xfb\xc1\xf8\x7c\x78\xd7\xff\xee\x62\x70\x1e\xcc\xc7\x3e\xb9\x1c\xde\xdd\x2d\xff\xfa\xfd\xf0\x7e\xf9\xc7\x9b\xeb\x9b\x87\x8b\xfe\x7d\x5d\x2b\x17\xd7\xd7\x3f\x3c\xdc\x8c\x3f\xf6\x87\x17\x0f\xb7\x83\x9a\x4f\x1f\xee\x9b\x1f\xde\xfd\x30\xbc\xb9\x19\x9c\xbb\x55\xf9\x5b\x70\xba\xc0\x7a\x0c\xa9\x17\xf5\xd3\xa8\x1e\xc0\x23\x54\x7e\xf1\x14\x3d\x54\x4b\x1f\xd8\x58\x64\x83\x63\xf1\x8c\xa5\xe6\x61\x10\x0a\x3f\x62\xc8\x7d\xae\x17\xa5\xe9\x53\x13\xae\x13\xcd\x09\x4a\x38\x7f\xcc\x33\xcb\xda\x4c\x7c\x18\xe3\xc6\xf0\x43\x64\xd0\xda\xf7\xc3\xfb\xd3\xe5\x12\x0c\xbe\xb1\x00\x31\xcb\x9d\x01\x18\x17\x76\xec\x14\x6c\x29\x0e\x9a\xbf\xb0\xde\x06\x3d\xf8\x9d\x59\xd5\x8f\x69\x0d\x33\x55\xe9\x26\x8e\x6d\xd1\x5f\x37\xb1\xa0\xe1\xf2\xbe\xae\x5a\x4d\xbf\x1c\xa6\xf6\x14\x9a\x90\x08\xe7\x26\xa8\x49\xdf\x53\x42\x70\x11\x0e\xb8\xa0\x87\xfd\x35\x6a\xe9\xa8\xb6\xc1\xca\x9e\xe9\x89\xcb\x47\x9a\x65\x24\xfe\xb0\x2c\xbf\x94\xab\xc3\xda\x9a\xe4\x7c\x8a\x82\x33\xa9\xf5\x7a\xd0\xf9\x5d\xe1\x94\xf9\xc2\x7b\xd2\x20\x70\xa3\x08\x65\x01\x20\x67\x7d\x27\xf8\xc2\x16\x14\x5c\x63\x58\xa1\x67\x02\x29\xd5\xb9\xad\x1c\x65\x74\x6f\x7d\xb6\xa1\x3b\x63\xd3\x76\x75\xe0\x4a\xa9\xd6\x8d\xcc\x78\x1f\x02\xb7\xfe\x5e\x92\x3a\x46\xbc\x43\x5e\xec\xb9\x69\x14\xb8\xb3\x8b\x79\x83\x11\x37\x04\x37\xb8\xdb\xa0\xc6\x42\xbe\x42\xbe\x5a\xbe\x91\xd6\x5c\x16\x9a\x6d\xb7\x19\x8f\xc3\x02\x29\x01\x5c\xb7\x1f\x58\x09\x04\x79\xed\x5a\xdd\xf3\x18\x2f\x34\x71\x40\xac\xb1\xcc\xb3\x8c\x0b\x85\x1a\xda\x30\x6e\x7c\x33\x3e\xb8\x73\xec\x3c\x3c\x8f\x83\x46\xb4\x84\x21\x6b\x6a\x69\xb4\x83\x47\xb0\xeb\x5a\x30\x8e\x30\x40\x16\x14\x41\x5f\xf7\x28\x2d\xa9\xd4\x25\x0a\xad\x13\x7e\x77\xc9\x30\xc8\xf4\x05\xdf\xb6\x0c\x5f\x5d\xef\xd7\xae\x85\xda\x2d\x4f\xc8\x54\x8d\x6b\xbd\x3e\x2b\x0c\x9c\xba\x45\xd6\x84\x28\x43\x67\xf3\x3d\xb4\xd8\x5e\x4b\xf8\xa3\x0d\xec\xd1\xaa\x41\x60\x21\x10\x9c\x2b\x23\x9f\x16\x3a\x0c\x72\xab\x09\xe6\x05\xdb\xa9\xcd\x05\xf3\x42\xa0\x96\xf9\x8d\x3f\xd4\xa7\x4d\x1d\x8f\xd8\x00\x02\x28\x0a\x45\xc4\xa5\x88\x81\x16\xb0\x56\xfe\x2f\x15\x1d\x7d\xd5\x68\xcd\x66\x84\xd7\x82\xee\x6d\xbd\xfc\x64\x81\x8a\xc2\xb2\xa5\xef\xda\x9c\x1e\x63\xf5\x76\x22\xa0\x99\xb0\x2d\xe3\xae\x48\x66\x2d\xf3\x66\x9e\x45\xa4\x0f\xc4\x87\xe9\xae\x8e\xd1\x4f\xce\xf2\x03\x81\xaf\x45\x4d\x66\x1b\xbb\x91\xe0\x85\x03\x85\xac\x5b\xd8\x7d\xe0\x2c\xee\x3b\x14\x76\xf5\x02\x7b\x40\xa7\x9a\x55\x2e\x29\xe0\x8c\x19\x8b\xec\x06\x69\x1f\x67\xfe\xa3\x3b\xb2\x3a\x2a\xe0\x23\x94\xe1\xb4\x91\x55\x20\x74\xb0\x64\xf1\xbf\xcc\x66\x99\x4c\x54\x57\x58\xcb\x96\x45\xb4\x1e\x54\x7d\x7e\xc0\x03\x68\x12\x55\xd1\x94\x26\x09\xc8\x01\xc7\xa8\x0f\xe5\x81\x21\x91\x53\x5f\x85\x2e\xc0\x82\xce\x18\x5f\x97\x63\xd6\x40\x4c\x51\x40\x4c\x77\xcd\xc4\x24\x81\x9a\x8a\x3c\xfe\xfd\x50\xd4\x1e\x30\x5d\x34\x6f\xc1\xcb\x88\xd8\xed\x91\x5c\x36\x50\xde\xdf\x22\x3a\x7a\x69\xb8\xc1\x87\xff\xaa\x1f\xfa\xa7\x1c\x0b\xcc\x14\xc4\xfc\x5a\xd1\x5d\x90\x20\xf5\x88\x7c\x86\xf8\x0c\x66\x0c\xc1\xf0\x53\xb8\xb9\xce\xe5\x0f\xe1\x5e\x88\xc6\x3d\x44\x8f\xc9\x31\x54\x67\x13\x5a\x96\x98\x14\x6f\xce\xb5\xe4\x30\x62\x4b\xb1\x8c\xc7\xa8\x9f\x48\x6e\xbf\x20\x2c\x4a\xa0\x1c\x77\x10\x9e\xec\x29\xdf\xba\x95\x26\x0b\x50\x50\x60\x2b\x8b\xe6\xb9\x7d\x10\x7c\x08\x45\xc6\xc0\x27\x9e\xc0\x49\x2f\x7e\xff\x3d\xcf\x8c\xb7\xa2\x29\x4e\xe2\x05\xcb\x39\x2c\x5d\x43\x2f\xb6\x49\xa6\x54\xe0\xaa\x0d\x82\x37\x60\x63\x8a\x18\xd3\x00\x81\x05\x7d\x8d\x15\x4a\x08\x96\x0a\xfd\xe1\x9b\x8d\x62\x43\xdc\x04\x0b\xee\x6a\x8f\x6f\x91\x28\xe6\x52\x0d\x42\xe1\xce\x77\x0c\xb5\xe3\xb0\x50\x08\x23\x46\x9e\xc3\xc8\x52\x0e\xc1\xc0\xae\x20\x1c\x09\x72\x5b\x4d\x3c\x99\xc9\xcc\x87\x6c\x0d\xa3\x32\x35\xf0\x11\x07\x77\x6c\xdd\xa7\x76\x58\x35\x94\x65\x95\x27\x1b\xe2\x09\x90\x5c\x45\xd0\xff\x1c\xab\x11\xb3\x9c\xd5\x85\x8d\x04\x69\x5e\xfd\x24\x29\x07\xda\x63\xc8\x25\x61\x7a\xc2\x50\x9f\xfd\xd8\x2f\xd0\x15\xa8\x5f\x3e\xda\xb9\x64\xa7\x2b\x0e\x8b\x89\xc7\xf3\x78\x47\x61\xdb\xb5\xd2\x4e\x9d\x7d\xf9\x15\x85\xe0\x9a\xee\x2f\x4c\xa1\xfc\x16\xc2\x30\xa9\x1b\xf2\x9a\x83\xb5\x6c\xd3\x5f\x21\x1b\xef\xbb\x83\xf6\xa2\x72\xbd\x7d\x1c\xae\xd9\x67\x5e\x63\x6e\x6f\xd8\xdc\x40\xb6\xd8\x45\x01\xf7\x61\xf7\xaf\xe5\xf1\x2d\x0d\x7d\x18\x43\xd2\xdf\x7a\x2e\x58\x24\xd1\x39\xd6\x61\x62\xaf\xe3\x20\xa7\x27\x48\x21\x80\xe0\x3f\xc7\xf8\xec\x9b\x0d\x9e\xd7\xec\x7d\x4f\xbf\x57\xcc\xdf\x4d\xc5\x07\xc1\x2d\x4f\xbc\x59\xd8\xeb\xc7\x7f\xc7\x11\x44\xfa\x43\x4f\x2e\xc7\x60\x19\x90\xc9\xc1\x58\x63\x30\xe6\xd7\x8a\x87\x99\xe0\x11\x91\xf2\x18\x0d\xe0\xa2\xb1\xff\x44\x78\xea\x1c\x12\xc1\xcb\x23\xa6\x35\x13\x87\xdf\x12\xb4\x5f\x26\xf1\xba\x13\x60\xc0\xe0\x76\xf2\xe5\xa4\xeb\x6b\x94\x34\x69\x13\x0e\x8b\x0e\xda\x80\xb2\x06\x68\x30\x3b\x45\x31\x8f\x1e\x89\x38\x11\x24\xa6\xf2\x14\x7c\xeb\xaa\xd1\xa9\x97\x6a\x6d\x7b\x67\x49\xa3\x29\x50\x60\x4d\x52\xdc\x99\xe9\xdf\x06\x58\xbb\xf0\xda\x1e\xa2\x53\x50\x27\x5c\x4e\x86\x09\x42\x76\x70\x37\x84\x29\xb1\x80\xb8\x7e\x6f\xca\xaa\x2c\x84\xd3\x34\xb4\xd0\xd6\x94\x4d\x24\xf6\x11\x83\xb3\xe5\xb4\xef\xe7\x44\x12\x17\x70\x60\x26\xa5\xb8\x8d\x65\x36\xec\x22\xc3\x6a\x2e\x21\x75\xb5\xbc\x06\x56\xe9\x82\x4f\xf5\x0a\xe1\x0c\xe2\x15\x8c\x95\xa2\xf8\xc8\x27\x58\x4a\x45\x93\x64\xc4\x18\x21\xb1\x44\x90\x65\xfa\x55\x6d\x86\xbc\xfe\xb4\x87\x70\x1c\xa3\xff\xfd\xf5\xc7\x8b\x9f\xef\x07\xe3\xe1\x15\x18\xad\x87\x17\x83\x6f\x7a\xfe\xc7\xeb\x87\x7b\xff\xab\xb1\xb0\x3c\x11\x81\x52\xfc\x08\x2a\x1e\x93\xc4\x26\x4f\x90\x11\x0b\x47\xea\xb0\x03\xf4\x13\x49\x5c\xa4\xab\x15\x53\x3c\x84\xa2\xdd\xc3\xc6\x8a\xc5\xc6\xe6\xb7\x81\xf2\x7b\xeb\x3f\x59\x4d\x83\x8e\x78\x7c\x17\x4e\x0c\x84\x1c\x19\x2c\x83\x64\x72\xab\xfb\x16\x04\x47\xd8\x8c\xb2\xa6\x78\x3c\xc2\x9e\x5e\x52\x88\xff\x81\x2c\x7e\xd4\xea\xf5\x0d\xa6\xa2\x35\xed\xd5\xa3\x01\xb9\x13\xa3\xf5\x74\x2c\xab\x87\x4a\x1a\x59\xd8\x64\xdb\x34\xc6\x7c\xd6\x01\xc1\xbd\xf9\x74\x2d\xbc\x14\xf9\xac\x84\x43\xa9\xf0\xf9\x1c\x0e\xca\xc9\x5f\x34\x05\x0d\x8e\xd8\xfd\xf5\xf9\xf5\x29\x22\x09\x9e\x70\x08\xe5\xb7\x21\x41\xae\x09\xbb\x60\x11\x4f\x83\x86\x4a\x08\x25\x3d\x94\x15\x08\x25\xa1\x11\xed\xd8\xb4\xb1\x06\xa9\x24\xe3\x62\x19\xdf\x63\xbf\x2a\xa0\x9d\xec\x0d\x17\x6d\xae\x7f\xfd\x1a\x2c\x1d\xcf\xb4\x22\x57\xe1\xbc\xf6\x6e\x9e\x12\x6c\x6a\xe9\x1b\xb7\x90\xb5\xe5\xdb\x00\xd6\x24\x29\xd5\x53\xd4\x07\x47\x1e\x5b\x17\x7c\xf1\x26\x67\xe8\x87\xbf\x48\x34\xc9\xd5\x88\x95\xdb\xe0\x0c\xf5\x7f\xba\x43\xdf\x61\x15\xcd\xbf\x19\xb1\x6b\xad\x66\xfe\xf0\x97\x06\x28\xa5\x8d\xd1\x09\xf5\x9a\x9c\x63\x85\x2f\x38\x8e\x29\x9b\xd5\x41\x13\x16\xf5\x63\x06\xf7\xfd\x53\x74\x6d\x75\xf8\x22\x13\xc4\xa7\x04\x07\x0d\x01\x43\x86\x89\x38\x2e\x02\xac\x9c\x95\xe1\xdb\x8c\x66\x06\x17\xd6\x88\xdd\x1b\x4c\x46\xcd\x55\xa9\x42\x19\xb7\x35\x8c\xb4\x56\x66\xd0\x2a\xb1\xcb\x90\x22\xc9\x02\xe9\xd5\x01\x32\xf6\x9b\x61\xe5\x31\x90\x67\x96\x99\xfd\x88\x81\x82\xee\x73\x53\x12\x1e\xe1\x04\x62\xf2\x8e\x02\x9b\x9e\x56\xdb\x79\x0e\xf9\xe1\xa6\xe8\xf9\xa2\x1c\x3a\xeb\x21\x0b\xbc\x50\x16\x6e\x14\x18\x00\x60\x1f\xad\x37\x36\xe5\x9a\xe3\x18\x2c\x36\x30\xbe\x25\x66\x75\xf4\x87\x1e\x9b\xcd\x2c\x8b\x7e\xea\xd3\xb6\x78\xce\x1c\x16\x49\x04\xe6\x7b\xb6\x80\xf0\x6d\x28\x3a\xc2\x21\xf4\xa3\xe0\xce\x96\x28\x97\x76\xd1\xdf\x89\xc1\x67\x23\x66\x22\x05\x4b\xfb\x12\xa2\xf7\x04\xbd\x73\x06\x81\x8c\xcb\xb9\x62\x79\x66\x03\x1b\xad\xac\x9f\x09\x72\xe4\x33\xa0\xe2\xd2\x9a\xea\x1b\xf6\x18\xdd\x86\xea\x75\xcc\xa3\x3c\x75\xc8\xca\x90\x3d\x55\x94\x95\x2f\x49\x3c\xe6\x62\x5f\x47\xf1\x80\xd2\xa2\x08\xa4\x8f\xb7\xd6\x8f\x0d\xc1\xf4\xc3\x4f\x97\x25\xf5\x66\xc1\x17\x78\xc7\x6e\x51\x6b\xa6\xa1\x71\x56\x6e\xa9\xd4\xda\xce\x79\x89\x57\x05\xfa\x2b\x17\x20\x6c\x91\xcf\x19\x07\x23\xb7\x49\xcf\xe2\xf1\x57\x12\x0d\x6f\xb4\x04\xa4\x35\x5e\x7f\x06\x73\xa9\x4c\x70\x19\xa4\xeb\x98\xaf\x4d\xba\x40\x0f\x7d\x8b\x46\xf9\xb7\xdf\xfe\x29\x42\x9f\xdd\x1f\x7f\xfe\xcf\xff\xfc\xd3\x9f\x37\x49\x27\x71\x0a\x39\xb4\x5b\xac\x91\x2f\x27\x55\x16\x89\xc2\x1d\x58\xe6\x54\x3b\xec\x82\x3d\x80\x4d\xcb\xbf\x0d\xca\x63\x10\x3b\x84\x67\xf6\x84\xcb\xf0\x64\xa2\xd2\xd1\x2c\x22\x09\x24\x51\xbd\x32\x87\xf0\xc2\xae\x95\xe8\xff\xd7\x0a\xb0\xb2\xb1\x3e\x2a\xdb\xc5\x38\xd1\xc4\x8b\xd7\xba\x11\xf4\xb5\xb5\xff\x29\x70\x20\x7e\xe3\x2e\x38\x9e\xc4\x44\x98\x31\x79\x93\x9d\x37\x24\x02\x73\x20\x9f\xb3\x84\xc7\x0e\x1e\xb5\xc8\x05\xa4\x20\x20\x0c\x3e\x63\xcd\xb9\x7b\x16\x46\xcb\x7c\x64\x3c\x2f\x53\x1c\x19\x54\x50\x89\xbe\xfe\x7c\xaa\x7f\xeb\xa1\xc5\x29\x04\x91\xf6\xd0\xaf\xa7\x16\x2d\x07\x0b\x35\xd6\x3f\x7d\xe3\x64\x6d\xdb\x04\x0c\x9a\x4a\xf4\xd5\xc9\x13\x16\xa6\x66\xf4\x89\x19\xd1\x57\x96\xb3\xfa\xba\x78\xa1\x6c\x9e\x70\xfe\x68\x03\x6c\x97\x3e\x3c\x71\xc0\x6b\x40\xde\xde\x6f\x62\xb6\xde\x27\xe6\x2b\x74\x04\x2f\x10\x74\x9c\x4d\xd0\xf1\xdf\x25\x67\xe8\x78\x81\xd3\xc4\xfe\xea\x9e\xda\xf8\x5f\x2c\x6d\x4e\x5c\xec\x83\x7c\x92\x85\xb1\x94\x7e\x97\xf0\x09\xcc\xea\xd2\xcd\xd4\x44\xd0\xc2\x40\x8b\xdb\xa7\xb8\xb0\xec\x44\x5c\x22\x2a\xe0\x07\xa5\x5c\x99\x57\x80\xc7\xd5\xcd\xea\xb3\x1f\xd2\x7f\x1b\xbf\x30\x2c\x8a\x4b\xe2\x33\xc6\x61\x1f\xbd\xa6\x1b\xfd\x8c\xbe\xb6\x2c\xe8\x1b\x7d\xc7\xd8\x70\x65\xb3\x0c\x75\x1d\x2c\x7c\x07\x3f\x07\x1d\x50\x86\x4c\x5a\xe6\x8a\x2f\x7f\x3d\x39\x3e\x3e\xf6\x5f\x43\xd6\xfa\xff\x8b\xa8\x92\x24\x99\x9a\x96\xdc\x0d\xb6\x18\xb1\x4b\x57\x78\xc1\x19\xaf\x0b\x48\xc7\x4c\x70\xc5\x23\x9e\xa0\xa3\xc2\xa0\x1b\xf3\x48\xa2\x7f\xd7\x62\x6d\xb0\x94\xf0\xa3\xd6\xe3\x1a\x60\x60\x0d\xd2\xf3\x2b\x1d\x2a\x6b\x10\xaf\x1e\xab\x10\xc5\xcd\x2b\xb6\x58\x86\x55\x3c\x80\x16\x34\xe5\x9c\x58\xa4\x37\x21\xf4\xcb\xe4\xb3\x82\x47\x0d\x40\x7a\xb5\xa1\xec\xf5\x37\xe5\x12\xbb\x2d\xf0\xf4\x0c\x59\x37\x2c\x80\xc5\xbb\xb2\x9c\xc1\xcc\xb3\x17\xba\x4f\xf4\xe5\xc2\xc2\x52\x00\x32\x4f\x53\x2c\x16\x27\xc5\x69\x5b\x26\xce\x02\x69\x0d\x78\x4c\xe2\x16\x00\x5c\xb8\x89\x3d\x5a\x36\x8a\xc1\x8a\x97\xee\x46\xf3\x67\x37\x82\x5a\x86\x01\x62\x01\x61\x11\x8f\x2d\x5d\x17\xd9\xa7\x65\x89\xc5\xbf\xb3\x2c\xab\xb8\x88\x18\x59\x18\xe3\x98\x32\x10\x1e\xf6\x0d\xf7\x71\x03\xfb\xe6\x63\xa8\x8a\x4b\x66\x1b\xb8\x47\x87\xd7\x77\xee\x9b\xf6\x97\x2e\xac\x43\x59\x64\xc7\x49\x88\x8f\xc7\x66\x48\xe0\xe7\xe2\xfa\x85\xd8\x0e\x63\x9d\xc9\x7d\x6e\xae\xf9\xf7\x19\xbf\xa1\x89\xbe\xb5\x80\xc6\x8f\x47\xac\xf4\x73\x0f\x91\x84\xa6\x94\xf9\xd8\x3a\xc3\xdc\xf9\xd4\x48\xcf\x8f\x54\xe9\x2d\x93\xf1\xa3\xe6\x60\x0e\xd7\x29\x50\xa9\xfa\x6c\xe1\x48\xc7\x3b\xa6\xac\x05\x22\x97\x7a\x5c\x85\x8e\xae\x85\x59\xdd\xc4\x91\x15\x48\x69\x40\x78\x70\x7e\x47\x4c\xb7\xe6\xce\x52\x11\x2e\x1c\xb4\x17\x34\x77\xe4\x00\xf1\x03\x0e\x00\x7d\x94\x62\x7e\xbd\xfc\x5b\x23\xa0\x0c\x58\x9e\xee\x9a\x6c\x62\xc3\x87\xdf\xca\x4c\x77\x23\x88\xbb\xa9\x6c\xe2\x12\x61\x79\xea\x0e\xd4\x06\x14\x37\xb0\xe2\x4f\x4c\xa2\x04\x1b\xa4\x1a\xdd\x10\x44\x3e\xf6\x8c\x83\x34\x0b\xfa\x32\xd7\x8b\xe9\xc6\xd4\xd8\x49\x08\xfb\xda\xfc\xfb\x1b\x64\xef\x86\x6f\x7b\xf6\x3e\x17\xd2\x23\x80\x98\x3d\x87\x1a\x8d\x24\x36\x36\x74\x40\x25\x9e\x61\x11\x1b\x6b\x79\xa8\x55\x98\x0c\x5e\x2d\x7f\x2d\x78\x8e\x9e\xa9\x9c\x8f\xd8\x3d\x77\x06\x47\xc4\xb8\xc7\x75\xee\x81\x32\xba\xd4\x1f\x96\xc0\x04\x60\xd4\x75\x14\xa0\x99\xf0\x4e\xb9\x46\x10\x05\x3b\x66\x3c\x26\xbb\x01\x18\xdd\x17\xbe\x0a\xe7\xbf\x16\xc4\xe4\x83\xc1\x4d\xd1\x94\x4e\x4b\xa4\xdc\xd0\x36\x5f\xdd\x78\xb8\x87\x6c\x3b\x50\x12\xf8\x79\x23\x74\xed\x10\x1b\xcc\xdf\x6a\xd0\x8a\xd3\x38\x83\x6c\xe0\xd2\xda\x7b\xb4\xe4\x5d\x37\x21\xaa\x41\x2b\x6a\x75\xf7\x9b\xb9\x47\xb0\xec\x3e\xc0\x18\xa3\x99\xe0\x79\xe6\x53\xe6\x5d\xba\x9f\xd9\x06\x2b\xd3\x0c\xd9\x94\x9f\x5a\x9d\xea\x82\xb2\x47\x43\xf1\x2f\xb5\x47\x06\x10\x9b\xc4\x25\x18\x37\x57\xa5\x15\xe6\x70\x84\x28\x8b\x92\x1c\x2e\x3e\xa9\x70\xf4\x68\x40\xbd\x9b\x8c\xbe\xfa\x9b\xf1\xfa\x64\xca\x06\x89\x29\x4f\x12\xdb\x6d\x71\x81\x16\x65\xac\x9f\x28\x46\x18\x3d\xdc\x0e\xeb\xfb\x7e\xa4\xcb\xce\x9c\xfa\xdb\xb3\x4c\x20\xf0\x3f\x3f\xd0\x8d\xe2\x2e\x2b\xb0\x78\xa4\x44\xea\xde\xb8\xd4\x04\xba\x6a\x88\x54\x69\x05\x22\xbe\xad\x31\xed\x6f\x4c\xa7\xb3\x2c\x1f\xeb\x85\x4a\x36\x09\x10\xd0\xa3\xf8\x74\xf3\xd0\x0f\xbe\x5b\x45\x2a\x9f\x6e\x1e\x50\xd0\x87\x01\x3c\x4c\x48\xa4\x7c\xa4\xf1\x31\x3a\x2b\x70\x88\xab\x92\x79\x4c\x9e\x68\x64\x52\x5c\x7b\x5a\x2a\x1a\x31\x80\xf7\xd4\xba\xce\x91\xc3\x84\x42\x9f\x6e\x1e\x2c\x92\x94\x87\x9b\xb2\x90\xca\x00\x61\xb1\xd9\xb5\x53\x01\xd6\x64\x9c\x1d\x81\xc4\x86\x45\x5c\x78\x3b\x7a\xa0\x5c\xff\x7f\xec\xbd\x5b\x77\xdb\x48\x76\x36\x7c\x3f\xbf\xa2\xd6\xca\x85\xdb\xdf\x47\x51\xed\x9e\x37\x59\x1d\xaf\x95\x0b\x5a\x96\xa7\x35\x6d\x4b\x1e\x1d\xba\x27\x6f\x98\x45\x17\x81\x22\x89\x08\xac\x82\x51\x80\xd4\x4c\x26\xff\xfd\x5d\xb5\xf7\xae\x03\x8e\x04\x48\xc9\x76\x26\x7d\x91\x4c\x5b\x04\x0a\x75\xae\x5d\x7b\x3f\xfb\x79\x22\x9e\x15\x25\x19\x18\x0f\xaf\xa6\x76\x4c\xae\x7d\x24\xc4\x54\x4b\xcd\xa5\xb1\x95\x30\xcb\x00\xd4\x3f\x9a\xfa\xf4\x2d\x9d\x7a\x0c\x38\x00\x3a\xed\xa8\xcd\x3f\x71\x19\x7e\x5c\xee\x18\xcf\x97\x49\x91\x9b\x6b\x18\xbe\x0c\x43\x61\xef\x1e\x4b\x7b\xa3\xf2\x96\x11\x09\xb6\xc0\x00\x27\xb2\xd0\x73\x19\x64\xb0\xb8\xac\x60\x4c\x5e\x48\x24\x03\x3a\x3c\xc0\xde\x58\x7a\xae\x28\x55\x65\x6c\x8f\xd5\xdc\x09\xc0\xec\x32\x34\xa2\xe6\x12\x98\x49\xcc\xd9\x0a\xc2\xe7\xfe\xec\x7f\xcd\x3e\xc9\x87\x24\x4e\xf8\x49\x21\x74\xca\x4f\x8a\xff\xf3\x69\x52\xfb\x13\x7f\xf5\xfd\xf7\x9f\x50\xcb\xa6\x8b\x76\xc1\x4d\xa3\xa3\x1d\x3c\xed\x71\x0a\x5b\xfc\xc2\xcc\xd2\x23\xc6\xe9\x7d\x72\x2f\xd8\x27\x1c\xee\x4f\x44\xe0\x77\xd8\xb0\xcd\x65\xdb\xb8\xb1\x43\x86\x0d\xe8\x54\xdb\xc7\x8d\xf5\x0c\xdb\xab\xf5\xf4\x1f\xd7\x4b\x33\x5a\x3f\xac\xa7\xaf\xbe\x87\xff\xac\x8d\xd1\xbe\xc5\xeb\xb2\x67\xda\xaa\xdd\xb2\x11\xb5\x2c\x4b\xb7\x17\xcd\xe5\xfe\xcd\x88\x8d\xdb\x8b\x60\xd6\xb6\x2d\x7c\x5e\x88\x63\xb3\x5b\x91\xd7\x71\x04\xfa\xba\x41\x98\xd9\x1b\x11\x3c\x92\x6d\xd2\x33\x45\x02\xdc\xb3\x9b\xf6\x32\x04\xe0\xc2\x8f\x23\xf8\x78\xe0\xf9\x61\xed\xa9\x3d\xbb\xa7\x39\xfd\xd5\x4c\x85\x18\xc1\x20\x73\x63\x1e\x1f\x58\xc9\xca\xa3\x7d\x75\x7c\xe4\xa8\xa8\xd3\x24\x72\x8f\xe9\xb6\x3e\x66\x15\xd9\xe9\x88\x2e\x13\xed\xf2\xfe\x5c\x4d\x2c\xb4\xd2\xdd\xaf\xed\x77\xd7\xb4\x96\x42\xc1\x1e\x17\x75\x6b\x99\xf8\x81\x2b\xe2\x48\x28\x9c\xb9\x52\x2f\xb6\x83\x49\x42\xfd\x87\xdf\xd2\xcb\x1f\x1a\x94\xa1\xce\xbc\xfc\x00\x99\xd9\x8e\x0c\x6b\xcb\xa5\xb1\xd6\xec\x57\x3b\x02\x4b\x78\xcb\x3f\xa8\x4a\x77\xd9\x41\x15\xc2\x2f\x0e\xd4\xb2\xa5\x4f\xd9\x52\x1e\x31\xb6\xca\x53\x8c\x1d\x14\x1b\x70\x2b\x7b\x0d\x38\xbb\xcd\x79\xf7\x32\xea\xc5\xa5\x3c\x5f\xa3\xd3\x4b\x8b\x42\xbf\x6c\x19\x61\x9f\xc7\x76\xc4\x08\x1f\xa0\xb3\x1d\x62\x59\xc0\xa5\xd2\xb7\xd2\x5c\x2d\xab\x84\xd1\xee\xa6\xe5\x14\xeb\x03\x36\x54\x9f\x5c\x17\xa9\x1c\xd5\x15\x62\xb3\x56\xba\x79\xb0\xc6\x4a\xbd\xd7\xe3\x71\x7c\xeb\x58\x5e\xac\xea\x3b\xe5\xec\x62\xe5\x96\x02\xb8\xce\xbb\xeb\x30\x5e\xd7\xbd\xa7\x0a\x24\x74\xdc\x55\x83\xb9\x9c\xd9\x47\x3c\x63\xa3\x4e\xd0\xcb\x82\xe9\x88\xe5\x12\x33\x5c\xc0\x67\xc6\x7d\xaf\x53\xe3\x3a\x1a\x31\x36\x21\xbf\xd6\x84\x3b\x2d\x72\x7f\x1a\x91\x0a\x9c\xe3\x65\xee\x55\xe0\x7b\x10\x79\x1b\xec\x78\xc4\xc7\x6f\x6c\x13\xa9\x28\xdb\x97\x6d\x1f\x1e\x7e\x51\xa1\x82\x20\xe1\x88\x50\xb5\x98\x17\x90\xee\xfc\x34\xf5\xc4\x9f\xb5\x8f\x35\x57\x6b\x71\xd4\x6e\x9c\xf0\xed\x22\x57\xdd\x12\x85\x03\xba\xc9\x16\x51\xf1\xd9\x6f\x50\xb2\x68\xc7\x3e\x97\x3c\xc5\xc3\x4d\xd2\x74\xb4\xd5\x06\xf7\xc7\x0f\xff\xc4\x66\x70\xfa\xb0\x0f\xb0\x2f\x02\x68\x0b\x4a\x2b\x14\x4b\xb6\x99\xc8\xb5\x92\xbc\x53\xab\xf3\xfe\x47\xbd\x20\xbd\x31\x73\x35\x56\x65\x53\x5b\x6c\x44\x4b\x5a\x4a\x0b\x1b\xc5\xd9\x7d\xb9\x14\xb9\x14\xa8\x47\x0a\xcf\x31\xfb\xdc\xa0\xea\x2a\x5e\x16\x9b\x1f\x16\x51\x9a\x0c\x16\x41\x83\x8c\xd1\x99\x79\xed\x0c\xdf\xea\x6b\x40\xa5\xfc\x4a\xd5\x25\xc3\xdf\x18\xfe\x36\x65\x6f\x78\x74\x2f\x64\xcc\xb2\xb4\x5c\x27\x44\x10\x83\xe6\x7e\x52\xbd\xd8\x57\x1b\x86\xb6\x05\x96\x6f\x8e\xa1\xb9\xdc\xf2\x7b\x24\x26\x27\x23\xd2\xdc\x1c\xba\xe8\x05\x9d\xab\x64\x91\x34\xe7\xee\xde\xd1\x72\xe7\x61\xb3\x98\xfa\xdc\xd3\x25\xe6\xcb\x3d\x6e\x14\xa1\x8c\x2a\x9e\x9a\x11\x0b\xd7\xcd\xd6\x06\x8f\x97\xe5\x5a\x71\xca\xb4\x54\x19\x5c\xbd\x10\xc2\x03\x72\xfd\x52\x32\x0e\x54\x60\x2f\x34\x2b\x33\x6b\x9f\x41\x6c\x29\x05\xa4\x0f\x0e\x81\xf9\x21\x4b\xa2\x7b\xc4\x96\x42\xf6\x04\x73\xcd\x6b\x08\x18\x32\xe1\x41\x8e\x6d\x5b\xc3\x0a\x89\x70\x8e\xc3\xad\x34\xb8\xf9\xf7\xcc\xd3\x81\x99\x21\xc5\x46\xc8\xc5\x01\x14\xf1\xc3\x07\xad\x92\x05\x42\x66\xb0\x8b\xd1\xb9\x2e\x2c\x65\x42\xa2\x80\xfe\x8e\xed\xf8\x8f\x93\x55\xcd\x8c\x4e\x34\xd3\xbc\x48\xb4\xd9\xcb\x5a\x7b\xdc\xd3\x0f\x1d\xd3\xeb\x7c\x1c\xe7\x51\x0b\xdf\x51\xad\x2f\x5c\xa6\xd9\x94\xbd\x83\xc8\x46\x70\x33\x50\x8e\x3d\xa8\x6b\xc3\x2a\x36\xa2\x93\x46\xf7\x29\x20\x9a\xb6\x05\xc1\xf3\xbd\x01\x2b\x97\x55\x38\x65\x33\x1f\x51\x46\xfe\x24\x8c\x15\xef\x69\x91\x48\xb5\x38\x64\xf2\x0d\x0a\xbe\x00\xea\x0a\x26\x10\x03\x4b\x4a\x9b\xbf\x7b\x55\x10\x57\xcd\x47\x48\xdc\xe7\xf7\x42\xf6\x79\xd8\x87\xd7\x10\x43\x20\xbd\x2e\x01\x17\x5b\x51\x18\x5e\x39\xa4\x82\xc3\x97\x9d\xa7\xac\x4a\x56\xa7\xa6\xcb\xcd\x35\x24\xba\xa7\x74\x41\x8c\xb0\x11\xe9\xd5\xe3\x46\xe9\x70\x9d\xd9\xf1\xc3\x9b\x6c\x5e\x3a\xe5\x07\x48\xb7\x74\x1d\x8c\x38\x4b\xa9\x42\x4e\x2c\xa8\xb5\x5b\xa4\xe8\xd6\x71\xe3\xcd\xec\x16\x0a\xdd\x00\xc8\x04\x5b\x54\x73\x35\xff\xfc\xa3\xbe\x82\x15\xfb\x14\xec\x2b\xed\x52\xdb\xc7\x67\x3e\x1d\x18\xf3\x75\x98\x5e\xaf\xd3\xcd\x63\xc7\x17\x94\xa9\x98\xf9\xe9\x35\x5e\x94\xfb\xeb\x37\xab\x26\xe6\x3d\xa8\x6d\xfb\x66\xf6\x87\x00\x18\xc6\x96\x65\x92\xc6\x48\x9f\x17\x18\x84\xca\x5a\x1c\xc0\x69\x0f\xc7\x7f\xa2\xdd\x79\xd2\x3e\xc7\x3e\xaa\xf8\x98\x89\x35\x9e\x22\xb5\x39\xaf\x07\xe4\x8d\xe8\x10\xbc\xb3\xdd\xdf\x13\x99\xea\x46\xfc\xc7\x0b\x5d\x15\x71\xeb\xa9\x30\x40\xbc\x96\xe5\xea\x06\x14\xa3\xba\x58\x88\x02\x31\x15\x9b\x56\x6c\xc6\xd9\x7c\xc6\x25\xb9\x75\x0d\x0a\x21\x86\xfc\xf1\xcf\xd9\x9f\x6f\xae\x2e\x4f\xb6\x3c\xd7\x1b\x0e\x2c\x0f\xb6\xac\x89\x15\xe1\xc4\xeb\xb1\x45\x32\x24\x72\x2e\x4f\xd8\x5a\x4d\x10\x37\xf3\x9a\x6d\x8a\x22\xd3\xaf\x4f\x4f\xd7\x49\xb1\x29\x97\xd3\x48\x6d\x4f\x7d\xd7\x9c\xf2\x2c\x39\x5d\xa6\x6a\x79\x9a\x0b\xc8\x9c\x38\x79\x35\xfd\xe1\x15\x8c\xcc\xe9\xc3\xab\x53\x40\x4b\x4c\xd7\xea\x1f\xde\xff\xf0\xcf\x7f\xfc\x27\x53\x70\xb6\x2b\x36\x4a\xbe\x26\x50\x4e\x6f\xd9\x27\x68\x95\x9f\xe2\x2b\xb5\xaf\xfc\xf3\xf4\xfb\xb0\x1a\xf4\xe8\x56\xc5\x22\xd5\xa7\x0f\xaf\x16\x76\x60\xa6\xd9\xee\xf7\x5c\x83\xaf\x96\x6b\x70\x9f\x14\xbf\xe7\x1a\x7c\xd5\x5c\x83\xe1\x16\x8e\xdb\x63\x80\xbc\xd9\xef\x8f\xe6\xef\x6e\x8f\xb4\xae\xf7\x7d\xfb\x50\xcb\xe1\x10\x66\x82\x1d\x71\x44\xdc\x8b\x51\x57\xec\x5a\x73\xdd\xd5\xa1\xc3\xc5\x36\x56\x40\xa5\xd3\x98\x1f\x45\x7c\x01\xc8\xbe\x24\x02\x72\x7e\x74\x09\x66\x3c\x69\xcb\x20\x20\x04\xeb\x31\xfd\xf7\x9c\x32\x13\x4f\xad\x2f\x41\xcd\x3d\x50\x5b\x22\xc5\xb7\x2d\xde\x56\x3d\x5a\x4d\x89\xa7\x50\x62\x18\xa8\xcd\xed\x08\xe6\x71\xf2\x40\x5d\x6c\xbd\x3a\xaa\xb1\xe1\xfa\x30\xe0\xf6\x0c\x69\x5c\x5d\x9c\x0e\x51\xaf\x89\xb6\x1f\xb4\x07\x87\x65\xc6\x31\xe7\x90\x25\xe0\xcb\xca\x3c\x53\x5a\xe8\x29\x7b\x57\x53\xaf\xf5\x60\xf4\xeb\x77\x67\xec\xd5\x8f\xff\xfc\xc7\xb9\xfc\xae\xe5\xdc\x86\xfd\x5e\xe5\x6b\xc2\xc6\xc3\x69\xbd\xe5\xba\x10\xf9\x69\xbe\x8a\x4e\x71\x97\x3b\x35\xef\x9f\xd0\x47\x4f\xd4\xea\xc4\xd1\xcc\x9f\x10\xe3\xf6\x74\x1b\x8f\x23\x8d\xa9\x4c\x3d\x3c\x6b\xe8\xa0\xd1\x70\x28\x21\xbd\x9c\x5a\x39\x41\x11\xcc\x5d\x44\xed\x21\xb5\x6a\xf9\x8f\x37\xa9\x5a\xea\x97\x8e\xd4\x92\x6b\xfb\x0d\xcf\x32\xd7\xbd\x34\x9f\x46\x71\xc2\x4e\x91\xe7\x74\x54\xd8\xbd\x24\xbc\x8e\x8c\xe9\xf8\xf6\xc5\xe6\x8f\x7b\xe4\xd8\xe1\xb9\x2a\xa5\x65\xec\x57\x52\xa8\x15\x40\x37\xc0\x12\xb6\xc8\x33\xf0\xd5\x02\x9e\xc9\xf1\xe9\xe4\x22\xc3\x03\x06\xa2\x0a\xdd\xdd\x7d\xa4\x6a\xc5\xbe\x7e\x7e\x0e\xd5\x8a\x63\xfb\x9d\x36\x94\xaf\xd4\xe1\xc7\xc2\xc3\x71\x29\x8d\x41\x55\x98\xe7\xf7\x46\x50\xdd\x3e\xe0\x15\xe5\x3c\x41\x7c\xc6\x73\x30\xd2\xc4\x49\xa1\x4e\x80\x88\x0c\xe8\xad\x50\x47\xa6\x0b\x56\x01\x91\xe7\x31\xc7\xa4\x79\x7e\x40\x3d\xd1\x30\xff\x2d\xa8\x28\xd9\x24\x1a\x69\x99\x09\x66\x9b\x48\x29\x72\x8a\xa9\xed\x3d\x51\x47\xc6\xa5\xc3\xa1\xec\x47\xd9\xfa\x9b\x68\xa8\xf1\xe1\x72\xac\x78\xb0\x09\x4c\x19\x58\x9f\x1b\xb5\x55\xc6\x9c\x51\xa5\x0e\x7e\xc4\xdb\x0b\x1c\xc2\x9d\xb6\xd7\x96\x67\x48\x3c\xfa\xf5\x5a\x63\x96\x96\xf9\x09\x9d\x7a\xe1\x43\xa3\x64\x93\x96\x55\xa1\x98\x3d\xf5\x77\x0a\x1f\xfd\xf3\x06\x50\x0f\xa8\x3d\x0a\xf2\xdf\xc4\xdb\x9f\xfc\xa7\xb9\xd7\x98\x29\xe5\x6e\x0a\xee\xe4\x46\x90\x0e\xf2\xeb\x86\x90\x34\x6b\xcd\x77\x32\x60\x94\xdb\x91\x63\xe0\x12\x47\x86\x0c\x00\x97\x98\x4a\x61\x73\x28\x4e\x5a\x93\x28\xba\xd6\xa5\x15\xdb\x8e\x17\x96\x03\x7a\x5c\x55\x6f\x5c\x01\x44\xf7\xdc\xac\xb7\xa7\xd0\x83\x8c\x1b\xec\x63\xdc\x10\xac\x6d\xd1\x05\xdc\x1c\xbf\x18\x41\x34\x6b\x4c\xdf\xc1\x47\x70\x72\x36\x7a\x30\x58\x0b\x5d\x1d\x38\xce\xc5\xd6\xe7\xb1\x6a\xc3\xec\x22\xeb\xa8\xcf\xc8\x34\xb5\x6c\x5c\x1e\xdd\x8b\x0f\x6e\x7d\x21\xa4\x71\x59\xc2\xef\x97\x57\xb7\x21\x5a\x23\xc1\xd6\x9e\x44\x1b\x11\xdd\x83\xc3\x04\x8f\x3c\x27\xc4\x4b\x0c\xa7\x73\xe9\xe5\x1c\x0b\x65\xa1\x07\x3b\xa7\x70\xe1\x54\x5e\x54\xce\xe2\x44\x67\x29\xdf\x41\x90\x57\x62\xee\x95\x0f\x10\xbb\xa4\x45\xb3\x15\xec\xf3\x17\x0f\x1f\x69\x33\x2a\x33\xff\xde\xd8\xbe\xf4\x60\x5a\xdf\x99\xcd\xfd\x80\x69\xb1\xe5\xb2\x48\xa2\xb9\xdc\x0a\x2e\x43\x54\x1e\x05\xb9\x4d\x27\xc7\x4a\x10\x07\xfc\x6a\x25\xa2\xc2\x93\xc8\x82\xf1\xee\x7a\x6a\xdf\x1a\x1c\xd7\x76\xb7\xf2\x7a\x9b\xfe\x13\xe0\x7e\x31\x46\x9f\xab\x07\xda\x86\xed\xd1\x78\x60\xf0\x06\xe4\x3f\xe9\xc8\xb5\x97\x41\xf8\x97\x9d\x53\x6c\x29\x8a\x47\x01\x1c\x29\x94\xd4\xdd\x66\xe3\x1f\x2d\x01\x73\x9c\xa2\x7b\xbb\x16\x7e\x80\x04\xc3\x05\x16\x82\xc9\x1c\x99\x9b\xac\xb1\xb2\xbd\xa0\x34\x73\xf0\xf6\xbc\x20\xbf\xd5\x0b\x38\xa6\xcd\xed\x31\x7f\x10\xf1\x5c\x56\xa9\xf2\xc8\x66\xf4\x0b\x8e\x79\x71\xc3\xa7\xd9\x6d\x6c\x1f\x0f\xf2\xe5\x9f\x03\x3d\x90\x27\x06\x76\x89\xd4\x3d\x62\x8b\xd8\xe8\xe7\xbc\x55\x59\x9d\xd7\xd0\xba\x1f\x00\xc9\x12\xda\x8a\x97\x91\xd6\x69\x05\x4f\xe1\x26\xa5\x23\x02\x43\x96\x50\x07\x80\x25\xbf\x64\xc3\xd3\xd9\x56\xc6\x5c\x5a\x86\x8c\x55\x99\x22\xf3\x73\x57\x1e\x02\xf1\x02\xda\x6c\xbe\xaf\x97\xd5\xe9\xfc\x6a\x2c\xd0\x8b\x74\xb0\x87\x00\x8c\x8c\x7b\x9d\x9d\xf5\x42\xea\x12\x4c\x0a\x2b\x15\x07\x8e\xe7\xb5\x28\xe0\x34\x8f\xcb\x14\x09\x1f\xc0\x63\x0e\x1c\x83\x3c\x4d\x59\x52\xe8\xb9\x74\x94\x88\x98\x6c\x00\x3b\xac\x75\xa9\x5b\x95\x71\xe9\xb4\xca\xe1\x67\x2e\xc1\x0e\x4b\xa2\xa4\x68\x40\xb8\x77\xa1\xbc\x52\x96\x09\x8e\xf9\xc9\x38\x6c\x73\x19\xde\xb9\xea\x83\x40\xc9\xbc\x3c\x4d\x78\x8f\x0a\xfc\x53\x4c\xdd\x99\xf9\xc4\x41\xb8\x05\x6c\x9d\xb9\x70\x59\xe5\x64\xac\x2d\x71\xa2\x10\xd2\xd2\xdc\x6a\x0a\x6d\x7d\xe4\xfe\xde\x0a\x79\x0a\x51\x99\xf2\x1c\x13\x34\x56\x65\xca\x92\x55\x20\x02\x0d\x63\x80\x84\x78\x66\xb8\x22\x05\x67\xb5\xf5\x92\x6b\xbe\x15\x01\x17\x07\xb9\x77\xd2\x00\x43\x81\x2c\xff\x18\x9c\x37\x65\xbd\x9c\xb2\xb7\x9e\xf2\x13\x47\x18\xd6\x44\x40\xa4\x9b\x68\xdc\xfe\x5c\x7d\x83\x34\x72\x68\x9d\xa9\xa2\x92\x66\x45\xba\x55\xd7\x31\x82\x20\xc8\x31\x0e\xa0\x61\xe5\x58\xfa\x51\xc3\xad\x34\x12\xe6\xd5\x1a\x6c\xc3\x2d\x88\x8e\x0a\xda\x53\x61\x64\x25\x43\x12\xe2\x03\x2a\xea\x48\x9e\x5b\x2a\xbb\xed\xd1\x9c\x86\x71\x1c\x59\xd5\x40\xc1\x6d\x7c\x45\x83\x99\x13\xc2\x71\x86\xf4\xec\x9a\x17\x63\xb1\x39\x2e\x19\x67\x7c\x45\x5b\x71\x50\x43\xaa\x09\xbb\xc7\xc8\x7a\x3a\xa1\xfd\x03\x2a\xea\xe4\xfc\xbd\xc6\x0b\x6c\x15\x82\x47\x9b\x6a\x5e\xbc\x65\xaf\x75\x2d\x80\xbc\x28\x58\x8f\xe3\x53\xfa\x67\x7e\xce\x81\x88\x1d\x33\xd5\x9f\xb2\x2b\x29\x10\x39\xa7\x56\xc1\xa1\x42\x15\x20\xb5\x3b\x10\x10\x71\xbb\xdc\xd2\x54\x4c\xde\x5b\xba\x20\xb3\xe4\x26\x8c\xfb\xd2\x61\xd7\xc3\x69\x83\xbb\x48\x87\x2d\xd9\x26\xb7\x73\x84\x79\x39\x2c\xe9\xbe\xfd\xce\x1f\x00\x50\xc7\xef\x00\x6d\xed\x18\x3e\x2c\xbd\x48\x72\x77\x8b\xb3\xf0\xf1\xea\xbc\x61\x08\x27\xdd\xd7\xbf\x1f\x37\x55\x14\xe2\x08\x71\xba\xbb\xcb\xb7\xe7\xef\x2e\x2e\xab\x8a\x72\x7f\xb9\x3b\xbf\xab\xfe\xe5\xfa\xee\xf2\xf2\xe2\xf2\x4f\xe1\x9f\x6e\xee\xce\xce\xce\xcf\xdf\x56\x9f\x7b\x37\xbb\x78\x5f\x7b\xce\xfc\xa9\xfa\xd0\xec\xcd\xd5\x75\x4d\xc3\xce\x0a\xd0\x05\x7f\xba\xbd\xf8\x70\xfe\x76\x71\x75\x57\x91\xc1\x7b\xfb\xaf\x97\xb3\x0f\x17\x67\x8b\x96\xfa\x5c\x9f\x9f\x5d\xfd\x72\x7e\xbd\x47\xc5\xce\xb7\xb7\xb5\x4b\x9f\x02\x3e\x76\xb0\xa6\xe1\x8c\xad\xf2\x44\xc8\x38\xdd\x21\xf6\xde\xde\x6c\x6b\x60\xda\xf0\xec\x4d\xb6\x42\x95\xc7\x40\xe8\x6f\x37\x82\xa9\x07\x91\x03\xb3\x11\x96\x46\x34\x08\x3e\x8b\xba\xfe\xd5\x5c\x14\x79\x33\x2a\xd0\x9b\x29\x54\xe4\x3b\x97\x8b\xd6\x57\x1d\xcf\x8a\x47\x1f\x61\x99\xc8\xfb\xea\x02\x96\x51\x5e\x66\x45\xb2\xec\x4e\x8a\x18\x9d\x4c\x3c\xf4\xee\x8d\x1c\xae\xed\x84\x57\x97\xed\x1b\x63\x25\x37\xe0\x18\xe0\x31\x94\x70\xa8\x54\xa7\x7b\xdb\x82\x35\xb3\x72\x99\x26\x11\x4b\xe2\xba\x3f\x85\x72\xfc\xc1\x65\x5c\xa7\x7a\xce\x44\x0e\xa6\xaa\xb9\x01\x64\xb9\x38\xe1\x65\xb1\x41\x5a\x42\x4a\x45\x20\x61\x8e\xb9\xd4\x22\xca\x05\xc6\x02\x84\x06\x27\x2d\x6a\x34\x06\x5f\x82\xca\x10\x2b\x47\x0c\x04\x60\xd3\x40\x76\xa3\x23\x46\x80\x6f\x62\xe9\x23\x9c\xa4\xf8\x7c\x6f\xd7\x50\x8d\x13\x5d\x17\xe8\x87\x13\x1e\x7f\xb4\x4a\x8f\xa6\xdd\x66\xa7\x76\x4a\x87\x38\xc8\x36\x77\xa3\xbd\x19\xfb\xe6\x58\x38\x51\xaa\xc9\x0c\x54\x3a\xfd\x74\x96\x0b\x38\x44\x08\x0a\x60\xfd\x17\x00\x5d\xa1\x5c\x0f\x48\xf1\x30\x57\xb5\xa5\xd8\xf0\x74\x85\x16\x87\x19\x9a\x76\xa6\x04\x2c\xff\x56\xdd\x0b\x79\x8d\x03\xf6\x55\xb6\x43\x89\x37\x1f\xcf\xd3\xe2\x3c\x42\xde\x85\x69\xea\x68\x67\x95\xcd\x75\x03\x63\xaa\xc0\x7b\x42\xf0\x33\xa6\x74\x78\x16\x76\x9b\x26\xb7\x5a\x25\xbf\x99\x02\xe7\x52\xb4\xf2\x50\x03\x5e\xc8\x32\xe6\xb9\x7d\x19\xb0\x51\x48\x3b\x76\x2f\x24\x68\x44\xa2\x84\xfc\xde\x39\x3b\xce\x7f\xde\x1c\x8b\x1e\x87\x3e\xf8\xfc\x92\x8a\x74\x66\x18\xe5\xb1\xfd\x54\x60\x8e\x8d\xe3\x15\x80\x79\x73\xf6\xfe\xe2\xfc\xf2\x76\x71\x76\x7d\xfe\xf6\xfc\xf2\xf6\x62\xf6\xfe\x66\xe8\xf2\x7b\x8a\xbc\xa8\xda\xea\xab\xa7\x07\xb9\x1d\xe2\x94\x56\x9e\x4f\xcf\x75\x8d\xf2\xcb\x0e\x86\x64\x7f\xed\x93\x38\x5b\xc4\x89\x8e\xcc\xf1\xb7\x5b\x08\x19\x03\x81\xff\x41\x53\xb5\xbd\xa8\x7a\x2b\xdc\x13\xcc\x3d\x61\x77\x10\x3c\xed\x1e\xec\x8c\x76\xbf\x03\xea\x0e\xdc\x90\xb9\x30\x8b\x3f\xae\xf0\x26\x4c\xf7\xab\x36\x99\xe2\x8e\x6b\x5b\xb5\x88\x7a\x9b\xb0\xbe\x89\xd6\x25\xd0\x33\xd8\xc7\x00\x72\xd8\xd1\x2b\xc4\xaa\x1a\xaa\x08\x24\x81\x02\x36\x4b\xf4\x5c\x6e\xb9\x8c\x79\xa1\xf2\x5d\x47\x13\x87\x6d\x9e\xe1\xb2\xa9\x6e\xa1\xe1\x91\x2d\x85\x88\xed\x28\xe0\xa3\x5c\xd6\xa7\x12\x6a\x0d\xdc\x5e\xfd\x7c\x7e\x79\xb3\x38\xbf\xfc\x65\xf1\xf1\xfa\xfc\xdd\xc5\x5f\x1d\x12\x32\xe3\xba\x4d\xf1\x36\xcb\x85\xd9\x5d\x2c\x75\x53\xeb\xfe\x82\x32\xb4\xb6\x1c\x92\x1e\x4c\x56\x73\x69\x77\x96\xdc\x17\xbf\xc9\x55\xb9\xde\xb4\x17\x54\xaf\xe5\xc7\xd9\xed\x4f\x07\x55\x13\x88\xf5\x50\xab\x12\x57\x5b\x13\x11\x9a\xac\x68\xdf\x43\x18\x69\xad\x7a\x40\x0f\x09\x8f\xb6\x45\x19\x3a\x76\xb4\x83\x6e\x2f\xcd\x4d\xab\xd7\xf8\x6f\x79\xbc\x6b\x02\xdd\x06\xfb\x66\xe5\x18\x01\x84\x32\x4a\x1e\x37\x4a\x7b\xdd\xf2\xb7\xca\x09\xf6\xc3\x49\x2a\xd6\x6b\x11\xe3\xf4\xaa\x17\x4c\x3e\x38\xda\x02\x23\x7f\xae\xb7\xf5\x22\x89\x92\x1e\x71\x30\x3b\xbc\xd7\xf0\x0d\xfc\xa3\x7b\xa5\x7d\xaf\x38\x23\x72\x1c\x88\x6f\x16\x5c\x76\x04\x92\x1f\x9a\x08\xcd\x41\x5b\xd1\x55\xce\x5c\xf2\x13\x39\x4c\x6c\xc8\xc0\xaf\x83\x2e\xc0\xcb\xf1\xb8\x50\x57\x8f\x6b\x91\xa5\x3c\x12\x2e\x87\x01\x59\x4d\xe1\x5e\x7f\x48\x00\x8f\xa4\x5f\x25\xf9\x5b\x02\x49\x58\xaf\x76\xd5\x36\x05\xc0\x73\x7b\x6d\xf7\xe3\xe7\x77\xad\xf4\x5e\xdc\x88\xcb\x10\x1c\xcd\xa8\xbd\x47\xd0\x77\xf4\x45\x81\xa0\x65\x27\x2c\x79\xd4\x74\xa8\x7d\xf9\x17\x1a\x78\xbc\x33\x57\x1d\xdd\xdc\xb2\x85\xba\xe9\xe1\x4c\xc7\x3e\x7f\x61\x51\xe4\xbd\x04\xc3\x4f\x11\x8e\xf8\x98\xab\x6d\xa2\xc5\xac\x28\xf2\x64\x59\x86\x0a\xab\x23\x01\x73\x95\xcb\x89\x6f\x70\x96\xab\xb8\x8c\x2c\x25\x10\xb4\xd6\xc3\x7e\xc8\xcb\x67\xad\x8e\x98\x9d\x98\xd9\x47\x37\x37\x11\x9f\x00\xa0\x1f\x39\xab\xda\x62\x6c\x76\x63\xec\xf0\xfd\x7d\xb4\x47\xf9\x31\x53\xb2\x65\x52\x74\x77\xa6\x9d\x03\xc3\x12\x6b\x99\x7d\x1c\x2c\xe0\x0e\xd4\x14\x4d\x97\x25\xc7\x00\x7a\xd5\x46\xe9\x62\x00\x71\x47\xcd\x38\x70\xd7\x30\x6c\x4c\x35\x63\x06\xed\x86\x0d\xd7\x68\xce\x17\xd1\xa6\x5a\x71\x68\x4d\x95\x09\xb5\x5e\x5d\x67\x1e\x1f\xe7\x36\x19\x14\x46\x9b\xa0\xa3\x21\x21\xc7\x76\x45\xd5\xd2\x49\xf4\x8e\xf3\x76\x87\x16\xa3\xbb\xd1\xe1\x61\x00\xfb\x68\xca\x4b\x19\x6d\x58\x96\x72\x4c\x26\xdf\x70\x8d\x53\xda\x62\x49\xf8\x32\x49\x93\x02\x58\x7a\x30\xc4\x59\xeb\x61\x73\xcd\xe3\xf9\xbd\x25\x3b\xe7\x9e\x92\xa9\x6f\xd2\x1f\x89\xd9\x75\xad\xfa\xa2\xa8\x5d\xbf\x64\xc3\x6d\x68\xd8\xb4\x24\xc4\xae\x1f\x0e\xb3\x11\xc3\xb4\xf4\x6d\x19\x37\xb2\x54\xe2\xc7\xfa\xeb\x95\xfe\x6e\xb1\x5e\xc6\x23\x56\x48\xc5\x63\xc4\xe9\x53\xd7\xf8\x68\x5d\x59\xab\x54\xf1\x0e\x9d\x79\x5b\x36\x4a\x76\x74\x95\x1d\xab\x72\xd9\x45\x12\x8f\xb5\xea\x2f\xbd\x2f\x18\x62\xd7\xed\x53\x39\x4b\xc3\x0d\x90\x17\xa2\x48\xc6\xf9\x7b\x82\x46\xf3\x42\x9c\xc0\xeb\xed\x85\x53\x86\xe1\xe0\x36\x37\x26\x9a\x17\x8e\x72\x46\x1b\x60\x09\xdb\x66\x57\xed\x74\x3e\x06\x13\x7e\xe4\x78\x25\x72\xcf\x54\xda\xaf\x45\xf3\xc7\x1f\x5a\xba\xa5\xd1\xe8\xbf\x94\xdc\xec\x87\x57\xab\x1b\xe4\xca\x39\xa6\xd1\x45\xd2\x5c\x56\xed\xdb\x4f\xfd\xab\xb7\xd5\xf0\x5a\x38\xf1\x07\x67\x22\xb7\xb5\xe6\xc6\xbc\x3d\x7c\x17\xba\xa8\xb8\xd1\xb2\x3c\x51\xc0\x19\xa3\x56\xc8\xc0\xd8\x4d\x21\xdc\xfa\xdd\x23\x7a\xf2\x73\x29\x4a\x61\x26\xd0\xb2\x8c\xd7\x4d\x2f\xf7\x08\x4b\xd9\x37\x69\xa3\x1e\xd9\xb6\x8c\x36\xcc\x16\xce\x62\x91\xf2\x5d\xa5\x69\x60\x24\x16\x0a\xf8\x3c\x47\x51\x67\x05\x2c\xcc\x51\xa9\x0b\xb5\x05\x80\xb1\x2f\x37\x2f\x25\xac\x72\xc6\xed\xea\x6a\xdb\xdf\x2b\xec\x72\x07\x86\x36\x6f\x3e\x9e\x9f\x5d\xbc\xbb\xa8\xc5\x15\x67\x37\x3f\x87\xff\xfe\xf5\xea\xfa\xe7\x77\xef\xaf\x7e\x0d\xff\xf6\x7e\x76\x77\x79\xf6\xd3\xe2\xe3\xfb\xd9\x65\x25\xfa\x38\xbb\x9d\xdd\x9c\xdf\xee\x09\x30\x36\xbf\xda\x3d\x10\x3c\x20\xbf\xb3\x90\x67\xab\xec\x60\xfd\x0c\xf4\xd5\xd7\x6c\x66\xa9\x00\x2b\x64\x95\x36\x48\x0c\xa8\x92\x14\xc1\x71\x18\x4b\x7e\xcb\x0b\x7e\xc6\x0b\x9e\xaa\xf5\x94\xcd\x18\x01\xc2\x11\xe8\xaf\x8d\x85\x44\x3c\x69\x66\x74\xb0\x08\x63\x26\x45\xfe\x0e\xef\xa5\x6b\xd5\x8a\x18\x0a\x53\x11\x8a\x9c\xd8\xac\xb6\xb9\x3c\x7f\x10\xb2\x28\x81\x84\x96\xa7\x29\xa3\xcf\xda\x07\x82\x8c\x7d\x5b\x4b\x9d\x6c\x93\x94\xe7\x5e\x65\xf4\x8a\xca\x82\x5b\x8a\xad\xab\x23\x68\x6a\xa6\x83\xdb\x8b\xdc\xdd\x05\x83\x7a\x9f\xbd\xbf\x00\xbb\x2f\x2a\xac\x84\x96\xfd\xf8\x5c\x22\x03\x1e\x7d\x71\xcb\x21\xf9\xa4\x50\xe4\x59\xc5\xcf\xd3\xc3\xdd\x13\xf1\x28\x2a\x70\x1b\x83\x78\xae\x1b\xa5\xab\xa4\xfd\x8f\x73\x59\xe4\xbb\xc1\xc6\xdc\x2d\x64\x5b\x6b\x30\xc8\x09\xcb\x56\x55\x1e\x45\xc7\x17\xb3\xa5\x5f\x82\x85\x67\x81\x96\x14\x97\x71\xe1\x17\xc4\xb5\x74\x5c\x3a\x52\x73\xf2\x7e\xab\xfd\x10\x12\xe2\x40\x2f\x2c\x55\x29\x63\x4d\xa8\xbb\x6d\x22\x4f\xb7\xfc\xb7\x97\xb6\xa5\x48\x30\xe1\xf4\x7f\x80\x3c\x4c\xa4\xe6\xfa\xb5\x33\x9b\x5c\x7f\x77\xcd\x65\x4f\x7f\xed\x37\x91\xed\xce\x0a\x77\x3d\x7f\x31\x47\xfc\xe0\x83\xd8\xb5\x8d\x5f\x43\xc3\x8d\x85\x44\xe4\x50\x48\x96\x0b\xf3\xa0\x03\x27\xa6\x88\x39\x75\xff\x86\x24\x84\x8a\xce\x6c\xfb\xde\x1d\xc6\xfb\x8f\x5a\x36\xad\x48\x83\xe1\x86\xcf\x60\x11\x3e\xfa\x92\x19\x33\xc4\x1d\x58\x97\x37\x25\x5d\x50\x40\xd5\x0c\xd6\x7f\xa8\x25\x5b\x41\x06\x12\x26\xda\xb1\x5c\x40\x88\x03\x86\xc2\xaa\x46\x00\xc5\x54\x03\xcc\x60\xa7\x40\x2a\x34\x38\xfe\xa5\xb9\x63\x8a\xcf\x25\xc5\x6e\x5f\x7d\x3f\xee\x9c\x2d\x90\x7a\x1c\xb9\x66\xeb\xa4\xdc\xee\x2c\x87\x7a\x95\x32\x69\xe3\x9d\xbb\x2e\xa5\x39\x8a\x9f\x02\xf6\x32\x3c\xae\x59\xfb\x28\xfd\x73\x6f\x92\x90\x75\xc9\xe7\xf8\xfc\xb3\xd1\x88\xfe\x52\x63\x0f\xa5\xcf\x01\x24\x9d\x4a\x0f\x0f\xb4\x25\x8f\xee\x1f\x79\x1e\xa3\xdf\x16\x70\x28\x53\xf6\x93\x7a\x14\x0f\x22\x9f\xb0\x48\xe4\x05\x27\xea\x2e\x0d\x81\x78\x58\x50\x54\xce\x5c\x42\x86\x06\xf2\xa0\x49\x5d\xe6\x82\x15\xc9\x7a\x63\x2e\xd1\x01\x8c\x42\xe5\x66\x3b\x2a\x90\xb5\x31\x13\x11\x91\x25\x75\x74\xc0\x2a\xe5\x0f\x4d\x2e\xb2\x43\x58\x1e\xd8\x85\x4b\x33\xb5\x71\x4a\xab\xc4\xd3\x07\x7c\xa1\x0e\xa3\x4d\x13\xe9\x6d\x26\x6c\xad\x52\x2e\xd7\xd3\xe9\x14\x58\xe7\x5f\x8e\x9a\xe8\x54\x60\x18\xf9\x74\xf0\xea\x54\x29\x2d\xd2\x9d\x23\xf8\x71\x09\x30\x80\xb8\xfc\xad\x10\x52\x27\xe8\xe7\x69\x99\xfe\x37\xf5\xa8\xc0\x97\x0d\xa2\xb4\x5f\xcf\x47\xa7\x57\x76\x94\x03\xc2\x7e\x23\x4a\xc2\xe7\xdb\x6f\x5e\x07\xa5\x0b\xb7\x97\x25\x95\x1c\x9b\x03\xfb\x8b\x4a\x3a\x62\xf8\x07\xf1\xee\xb5\x96\x44\x24\x25\x07\xe5\x0d\xb6\xf7\x59\x23\x95\xf3\x88\x2c\xce\x9e\x84\xcc\x91\xb9\x98\x43\x1c\x01\x37\xf5\xe1\x1e\xbd\x2c\xf6\x6b\x0d\xb5\x36\x68\x64\xae\xab\x4f\x4a\x1f\x63\x3a\x61\xba\x5c\xba\x83\x1b\x97\xcb\x7c\x05\x77\x7a\x1c\x84\x03\x2a\xd1\x0e\xc8\xc1\xf2\xe1\x12\x47\x1e\x15\x44\x47\x74\xa1\x72\xbe\x16\x6c\x2b\xe2\xa4\xdc\xb6\x6e\x36\xae\xba\xc7\xe0\xfe\x54\x5a\x6e\xbb\x69\xfc\x8e\x35\xa0\x7d\x25\xf1\xbf\xce\xe0\x73\x83\x0d\xe8\x99\x83\xb4\x5b\xc9\x37\xaa\x2f\xfa\xfe\xa9\xaf\xcd\x49\x99\x27\x1a\x08\x27\x0f\x49\x79\x74\xc5\x60\xd1\x10\x39\xdd\x65\xe8\x73\xae\x8c\xee\x89\x0d\x69\xd1\x2b\x1a\x47\x15\xc2\xad\xdd\x87\x42\x1d\x4d\x38\x5e\xf8\x29\x57\x65\x83\x6c\x67\x50\x84\x1b\xcc\xc6\x80\x06\x9e\xe0\x4e\x50\x20\x61\x32\x0a\xc5\x56\x36\x89\xee\x5e\x04\xb4\x64\x31\x10\xc4\x3f\x22\xc7\xcd\xcf\x3f\x6a\x8b\xde\x20\x80\x8d\xb7\x58\x0a\xff\x11\x0c\x88\x3c\xbc\xb2\xb8\x2a\x6c\x21\x16\x01\xe4\x61\x31\x97\x45\x6b\x01\x1e\x76\x08\x65\xe1\x2b\xbf\xf0\x32\x6d\x7f\x9c\xca\x87\x47\x51\x40\x70\xf6\xeb\x0d\xc3\xae\x26\x2a\xf1\xbc\xaf\xa2\x41\x21\xfb\x91\x5d\xd0\x5d\x8b\x03\x2c\xc1\xca\x38\x60\xa7\x5b\x2e\x79\xd3\xed\xa2\x88\x36\xde\xf2\x00\xf2\x34\x47\xfa\x46\xea\xb0\xd4\xce\xad\x27\x47\x47\xd0\x6c\x88\x3e\x4c\xd6\x52\x85\xba\x1e\x4a\x0a\x88\x4c\x99\x0d\x48\x85\xc5\xb2\xa4\xd8\x0f\xf1\x1a\xc9\x18\xb6\x6f\xaa\x15\x0a\xa1\x3b\xd4\xce\x4a\x80\x11\xae\x14\x09\xf2\x0c\x59\x7c\x2c\xde\x89\x48\x6c\xb4\x4e\x9a\x5d\x65\x6e\x98\xcb\xea\xa7\x1a\x9d\x64\x31\x58\x49\x2e\x90\xeb\x56\x1b\xeb\xad\x48\x1e\xcc\x42\x6d\x4e\x6b\x37\x41\x61\x07\x68\xce\xbd\xb9\xc4\x6a\x07\x84\xb9\xf7\x62\xa7\x43\x65\x53\x9a\x51\xac\x6b\x42\x26\xa6\x3d\x34\x5e\xfb\x87\x02\x3a\x6e\x91\x7b\x7d\xb2\x61\x67\x19\x7e\xf4\x83\x79\xb9\x07\xdc\xd9\x28\xdc\xcc\x41\x9f\xa5\xe8\x7d\x8a\xb4\x4d\xf8\x7e\xa6\x31\xf4\xf8\x2d\x40\xe7\x85\xf8\xbb\x30\xe5\x04\x2e\xbe\xe6\x7e\x3b\x97\xc4\xa9\x1d\x1c\x72\x66\xc3\x69\x0e\x1b\xa5\x4e\x23\x93\xef\xae\x42\xfb\x02\xb4\x87\x96\x02\xb2\xfa\x49\x1b\x6c\xb5\xc2\xd8\x73\x09\x9f\xc6\xe4\x52\xeb\xc3\x6b\xfd\xe0\x81\xa0\x40\x1a\xdc\x4e\x20\x60\x90\xc1\x85\x4f\x12\xf3\x1f\x4a\xe4\xe2\xed\x27\x12\xa6\xfb\x66\xb2\x15\x83\x67\x11\x78\x37\xe7\x67\xd7\xe7\xb7\x5f\x0c\x28\x68\x51\x7a\xa3\x91\x82\xb6\x9e\x6f\xcf\xdf\xcd\xee\xde\xdf\x2e\xde\x5e\x5c\x3f\x07\x54\x90\x7e\x3a\x00\x2b\x78\x43\x54\xfd\x67\x4a\x16\xe2\xb7\xa3\xce\xe4\xbc\x94\x0b\x3e\x22\x67\xc5\x89\x75\xf4\x99\x3b\x58\x68\x53\x6a\xc0\xe9\x00\x10\xef\x24\x9e\x68\x4e\x59\x60\xe5\x9d\x86\xab\x24\x4d\x21\x85\xd7\xb9\xd7\x29\x3d\xcc\x74\x2a\xec\x3f\x96\x6a\x93\xf6\xd4\xb9\x5c\x56\x94\x20\xc0\xe5\xb7\x31\x97\x60\x4c\xde\xcd\x4c\x07\xe4\x09\xa4\x46\xf6\xa9\x11\xac\x13\x29\x7c\x35\x50\xce\xbe\x94\xac\x93\x42\x9a\x06\xf1\x39\x21\x51\x64\x78\x0d\xb5\x35\xed\x8c\xab\xcc\x4f\x6b\x7e\xda\x1f\x5d\x0b\x71\x11\x27\x12\x0d\xd3\xca\x6a\xbe\x69\x9f\xba\xa7\x7e\x09\x40\xbf\x9b\x91\xe4\x10\x83\x00\xc5\x78\x3f\x90\x34\x10\xa8\x52\xe4\x83\x13\xf7\x09\x42\x87\xd4\xaa\xd6\xcf\x66\x2b\x34\x7d\x9d\x40\xa4\x82\x13\x2b\x49\x94\x96\xba\x10\x39\xb9\x4d\x66\xbf\xde\xcc\xe5\x1b\x73\x7c\xbd\xa4\x53\x88\x94\x6c\xf0\x13\x08\x5c\x51\x95\xef\x5b\x0b\x25\xdc\xc1\xbe\x43\x1f\xf5\x56\x70\xa9\x19\x2c\x8d\x34\x15\xb9\x9f\x19\x58\x1f\x21\x62\x52\x74\x05\x1a\x56\xff\xfe\x4b\x46\xa8\x44\xd3\x15\xa6\xbe\xf4\x6b\x2e\xb6\xaa\x68\xce\xa7\xae\x0c\x71\x80\x0a\x3f\xe7\xcc\x69\xc9\x58\x19\x3a\x8b\x08\x65\xdd\x3a\x89\xaa\xf9\x23\x83\xe6\xd2\x2d\x16\xf7\xfb\x54\x7a\xc2\xa9\x34\xe0\x5c\x0f\x4f\x09\xb6\x51\x66\x03\x75\x32\x2f\x3e\xcc\xec\x18\x2a\x52\x00\x7d\x99\x6e\x6c\x3d\x75\x6a\x52\x87\xc7\x60\x3f\xa0\xa8\xe3\xa0\xb5\xb3\x16\x2a\x1c\xaf\xa9\x65\x63\x3b\xbd\x2a\x8a\xcf\x43\x39\x37\xb3\x20\x43\xa9\x0a\x4b\x1e\xe1\x70\x7d\x04\x52\x34\x0f\x38\xd6\x92\xde\x3a\x12\x13\x88\xb5\x52\x16\x47\x2a\x91\xdd\x86\x60\xc8\x4a\x3a\x2d\xd6\x22\x4c\xc4\xb7\xc9\xf7\x8e\xbc\x63\xcc\xe4\x3b\x5c\xeb\xb2\x3a\xe7\x1c\x11\xe4\x41\x60\x87\xcb\xab\xcb\xf3\x10\xaa\x70\x71\x79\x7b\xfe\xa7\xf3\xeb\x4a\x22\xf6\xfb\xab\x59\x25\x99\xfa\xe6\xf6\xba\x96\x43\xfd\xe6\xea\xea\xfd\x79\x03\xf3\x70\x7e\x7b\xf1\xa1\x52\xf8\xdb\xbb\xeb\xd9\xed\xc5\x55\xe5\xb9\x37\x17\x97\xb3\xeb\x7f\x0d\xff\x72\x7e\x7d\x7d\x75\x5d\xfb\xde\xdd\x59\x3f\x7a\xa2\xd2\x8c\x76\xf7\x8f\x0f\xce\x06\x9c\x98\xad\xcb\xb8\xaa\x05\x7a\xc4\x2a\x1e\x88\x3c\xdb\x37\x1d\x6d\x9e\x75\x1c\x52\xe5\xe3\xc2\x30\x55\x1d\x35\xeb\x9e\x5e\xbc\xb4\xd2\x75\x19\x3f\x6e\xdb\x33\xa7\xda\xe2\x29\x90\x80\xbd\x06\xa0\xfb\x4a\xcd\x71\x4b\x5a\xc1\xd8\xb5\x19\x44\xb0\xd6\xbc\x53\xba\x47\xc6\xcf\x5e\x53\xfb\x8d\x7d\xf5\xf4\x1c\x4c\x7b\xa8\x6c\x9e\x8a\xc6\xa2\xaf\xd2\xc1\xc7\x6c\x96\x78\x12\x5b\x43\xc1\xfe\x18\x1c\xdc\xd0\x0c\x33\x73\x82\xe9\xd8\xa5\x32\xd9\x9e\x6f\xd2\x4f\x9b\x36\xb6\xfe\xf4\x91\x66\xdd\x6b\x1c\x1b\x23\xea\x0d\x5c\x47\x63\xea\x7d\xcb\xf5\xfd\xd8\x7a\xd3\x47\x9a\xf5\x06\xb3\xef\xa0\x7a\x83\xc3\xbb\x68\xe7\x3f\x19\xb1\x89\x85\xc5\x54\xab\xe7\x92\xb3\xdd\x23\x81\x98\xeb\xb0\x3a\x9a\x05\xf0\xbc\xd7\xcb\x8c\x0f\x0f\x64\x40\x6d\xdc\x72\xe5\x35\x3a\xf0\x1b\xf8\x15\x5a\xb8\xcc\x05\xbf\x8f\xd5\x23\x8d\x47\x1d\x19\xca\x06\xed\xe6\xd5\x0e\x32\x7b\xb8\x3d\x22\x8a\x9c\x22\x50\x88\x52\xf3\xc5\x03\x4c\x2e\x21\x42\x6b\xb4\xc1\x02\x15\xd2\x3a\x83\x0c\x70\xf6\x48\x3f\x3a\x73\x89\xd6\x7c\x9b\x92\xa9\x19\x55\x53\x23\xe2\x7c\x80\xa6\x3a\x1b\x1a\x83\xeb\x3a\x18\x58\x4a\xe0\x28\x73\x00\xd3\x2d\x73\xb8\x33\x41\x87\x24\x12\x9c\xc9\xb9\xb9\xf0\xe4\x22\x4a\xb4\x08\xd4\x9c\x5a\x4f\xec\xcf\xc7\x69\x3f\x14\xbc\x68\x75\xbb\x0e\xf6\x87\xf3\xa8\x28\x79\xca\x3e\x97\x22\xdf\x11\x75\x1e\xfa\x2a\xf1\x2f\x11\x97\x98\x29\x52\x88\x6d\x06\xe9\xd8\x61\x8a\xc3\x5c\xfe\x0a\x40\x09\x1c\x82\x17\x9a\xfd\x09\x20\x0f\xf6\x61\x3a\x84\xb7\xbc\x80\xb3\xf8\x2f\xf8\x0d\xf7\xdb\x74\x2e\x2b\xea\x28\xc1\x5b\x15\xa1\x94\xe9\x5c\x5a\x79\x82\x58\x45\x7a\x0a\x37\xbe\xa9\xca\xd7\xa7\x24\xec\x6b\x26\xbb\xba\x5f\x2a\x75\x7f\x2a\xe4\x29\xf8\xa4\x8a\x53\x5e\x16\xea\x14\xe0\x52\x38\xfe\xfa\xd4\xea\x7f\x5a\x01\x55\x7d\xba\x49\x1e\x04\xfc\xbf\xe9\xa6\xd8\xa6\xff\xa0\xb3\xcd\x6f\x27\xeb\x34\x3f\x31\xef\x9e\x84\xef\x9e\xd8\x77\x4f\xec\xbb\x27\xe6\x35\xfc\x7f\xd9\x0e\xc3\x3b\xe2\x37\x6e\xce\xb2\xc9\x5c\x26\x52\x8b\xbc\x00\xeb\xe7\x31\x4f\x0a\x2f\x43\xb3\x63\x2f\xfe\xeb\xbf\xd8\x34\xe7\x8f\x98\xca\xf8\x96\x17\xfc\x23\xfa\x17\xff\xfb\xbf\x5f\x40\x40\x15\x93\x7a\x32\x9e\x7f\x2e\x45\x31\x97\x5a\x98\x45\xc8\xfe\xbf\xb9\x84\x08\xec\x76\xb7\x28\xd0\xef\x8a\x3e\xc8\x58\xb3\x7f\xc1\x32\x2f\x90\x46\x32\xd6\xa6\xa4\x8e\x74\x82\x84\xa7\x2d\x92\xd1\x1d\x2e\xfa\xcf\xe9\x5b\x7a\x7e\xc4\xb2\xfe\x9c\x56\x57\xb5\x15\x42\xd1\x9f\x53\x38\x40\x53\xc5\x2d\x58\x8b\xb9\xc9\x0b\xf7\x64\xaa\x5c\xdb\x1a\x69\x40\x03\x9e\x35\x4c\xdf\xbe\x56\x6e\x90\xca\xda\x7a\xee\x1b\xdb\x08\xc4\x0a\x7c\x1c\x02\xa2\xe7\x89\x59\x21\x37\xe8\x09\x05\xcb\x0d\x5b\x0e\x36\x29\x85\xce\x5d\x79\xe8\xb8\xd0\x7f\x7c\x7d\x7a\x3a\x61\x6b\x0d\xff\xb3\xfc\x0c\xff\x03\xe8\xa1\xa7\x62\x63\x6d\x74\xa6\x03\xc2\x35\x47\x79\xff\x48\x3c\x05\x8a\xee\x4b\x10\x80\xd7\xa6\xe9\x9b\x52\xc6\xa9\xf0\x29\x90\x95\x90\x48\xaa\xac\x64\x3d\x3a\xc6\xea\x52\x2b\x30\xc6\x4b\x11\x71\xb3\xf1\x35\xbe\x8d\xe0\x52\xb5\x2a\x84\x44\x6f\x58\xee\x95\xd8\x38\x7a\xae\xc0\x2c\x06\x28\x24\x2f\x08\x72\x2e\xe0\x8f\xf0\x11\x60\xd4\x9e\xd4\x7f\x62\x3b\x55\x12\x39\x34\x50\x9e\xc6\x22\x4a\x81\x81\xdf\xd2\xbe\xb0\x5c\x14\x65\x2e\x19\x67\x19\x97\x31\xd7\x30\x03\x57\x39\x44\x3b\x73\xc6\x9b\x15\x9d\x20\x1c\x57\x95\x05\x90\x19\x21\xb2\x20\xec\x09\x64\xef\x0e\xea\x3c\x09\x2a\x81\x67\x02\x90\x08\x37\x5e\x9c\xce\xa5\xd5\x0a\x23\x2c\x1c\x7a\xca\x22\x95\xed\x88\xaa\xa6\xde\xe9\x89\xf5\x9c\x51\x77\x4f\x3c\xde\xa4\xfe\xec\x84\x25\xd5\xd0\x1a\x10\x85\x17\x81\xda\xb1\xd5\x8b\xfe\x4e\xc8\x48\xc5\x22\xd7\x2f\xcd\x32\x4c\xdc\xbd\x03\xed\x87\x44\xfb\xc1\x80\x5d\xca\x1c\x6e\xe4\x2d\x34\xc5\x3b\x45\x1d\xd3\x3b\x15\x6a\xe9\x36\x3b\x67\xff\x52\xf9\xd6\x51\x30\x6d\xf5\xa5\xff\xfc\xa2\x88\x98\x10\xd7\x69\xef\x9c\x87\xbb\x20\x70\xc9\x86\x3b\x2e\x16\x8a\x36\x0e\x19\x27\x56\x5a\x36\x29\x40\xbd\x2e\x17\xba\x98\x4b\x3a\x81\x27\x6c\x25\xb8\xb1\xf3\x26\x2c\xd2\x0f\xb8\x19\xe3\x71\x5f\x3c\x2a\x8f\xc1\xb1\xba\x24\x00\x86\xad\x14\xee\x9d\xc4\xf8\x18\x20\x0a\x78\x54\x20\xc0\xa0\x53\x85\xdc\x9a\x2a\xd0\x59\xad\x1b\xe2\x01\xfd\x60\x65\x2e\xea\x92\x52\xa1\xca\x0a\xf4\xc4\x0e\x03\xc5\xac\x5e\x0f\xfc\xc1\x6c\x3c\xd8\x3a\x84\x81\x04\x9b\x23\x58\xdc\x84\xa5\xc5\x75\xe6\x63\xb8\x21\xd7\x38\xf8\x66\xba\x16\x55\x4f\x47\x40\x05\x0e\xf3\x5b\x98\x57\xf7\x3a\xac\xb4\xc8\xad\x06\x07\xb6\x15\x99\x01\x37\x49\x1e\x9f\x64\x3c\x2f\x76\x76\xfa\xa6\xc9\x12\xa8\xfb\xd3\xe4\x5e\xb0\x59\x9e\xab\xc7\xa7\xee\x85\xce\xad\xa5\xeb\x86\x7d\x0c\x92\x7d\xec\x2d\xbf\x95\x17\xb4\xee\xee\x38\x8c\x83\xb4\xcb\xf1\xd1\xfa\x9d\x5c\x14\xf9\x6e\x61\x26\xe2\x36\xeb\xdc\x29\x06\x25\x4d\x0c\x37\x72\xc7\xd1\x9b\xd6\x5c\x18\x9d\xf4\xa6\x95\x51\xfd\x76\xe8\x4d\x5b\x98\x4b\x9b\xf4\xa6\x17\x97\x17\xb7\x17\xb3\xf7\x17\xff\xb7\x56\xe2\xaf\xb3\x8b\xdb\x8b\xcb\x3f\x2d\xde\x5d\x5d\x2f\xae\xcf\x6f\xae\xee\xae\xcf\xce\xfb\xf9\x8a\x9a\xb5\xf7\x26\xf8\x09\x0b\xbf\xf3\x9a\xdd\x06\x40\x0d\x4c\x36\x20\xfb\x9b\xb4\x2b\x61\x56\x99\xc5\x9c\xc8\xf5\x04\x16\xea\x6b\x76\x9e\xe7\x17\x5b\xbe\x16\x1f\xcb\x34\x05\x38\x15\x66\xf6\x9c\xe5\x02\x2e\x9e\x13\xf6\x51\xc5\x17\xc1\x7b\x90\x8e\xd8\xda\x0c\xf8\x3e\x8f\xe3\x5c\x68\x8d\x9f\x9f\xd0\xf7\x03\xf0\x90\x4b\x75\x24\xf0\x1c\x7f\xe0\x49\x6a\xee\x6f\xaf\xd9\x1b\x1e\xdd\xab\xd5\x0a\xd3\x67\x26\x2e\x71\x8a\x7d\x2e\x55\xc1\x99\xf8\x2d\x02\x8e\xae\xf6\x79\xf2\x5e\xad\xbf\x02\x54\x79\x40\x78\xaa\xe3\x92\x02\x1a\x65\x8b\xf6\xe3\xbc\x7d\x23\xa0\x56\x7e\xc0\x57\xdf\xe1\x9b\xed\x0e\xca\x22\x7d\x82\xf4\xf8\xf7\x6a\xdd\xae\x18\x03\xd6\x35\xc9\xdc\x50\x20\x21\x22\xb2\x0d\xb5\x66\x3a\x91\xf7\x73\xf9\xeb\x46\x48\xa6\xca\x1c\xff\x04\xd7\x7c\x63\x66\xa6\xa5\xde\x08\x90\x90\x9d\xb0\x47\xc1\xb6\x7c\x87\x66\x33\xdc\x09\x9c\xcc\x05\x4c\x19\x38\x45\xcc\xdb\x69\x22\xcd\x6e\x91\x25\x36\x2f\xa1\x3e\xf4\x4f\x71\xe3\xb2\x0c\x75\xfc\x78\x02\xd9\xbe\xf3\xb4\x82\xcf\x03\x57\x99\xc7\x4d\x5a\x80\x10\xed\xdc\xa0\xa2\xa9\xd4\x7d\x99\x79\x2e\xcb\x17\x36\x38\x09\xdd\xfd\xa0\x92\x98\xc5\x65\x96\x26\x91\xdb\x77\x1f\x55\xde\x49\xd8\x8b\x09\x34\xc3\x4f\x9d\x7a\x5a\x58\x5f\xc3\x5a\xb2\x73\x02\x24\x5d\x0f\x75\xef\x33\x93\x17\xb3\x44\x46\x69\x09\xfa\x60\xa5\x16\xf9\x49\x91\x27\xeb\x35\x18\xe0\x36\xd7\xef\xdb\x67\x37\xf6\xec\x89\xc7\xa7\xb5\x85\x49\xe7\xa9\x5a\x27\x11\x4f\x43\x70\xb3\x47\x45\x38\xfa\x54\xbb\xec\x49\x3d\x15\xf2\x20\x6c\x85\x3a\x19\x90\xb2\x5c\x00\x83\xef\x02\xb6\xf2\x05\x6d\x77\xc7\xd4\x7b\xc5\xcc\x05\x1d\xeb\x15\x92\x9b\xda\xf0\x82\x3d\xe1\xfc\xb7\xad\x84\x16\x98\x98\x28\xaf\xcd\xd4\xa3\x14\x39\x58\xb0\x00\xfb\x30\x2d\x95\x0a\x6c\x13\x27\xab\xe5\xf0\xc9\x56\x56\x6e\xe5\x80\xd8\x98\x39\xbb\x4e\x1e\x84\xfc\xf2\x6c\xd4\xc1\x07\x22\x1e\x6d\xc4\xc2\xda\xe5\x4f\xbd\x65\xb9\x03\x60\xe4\x66\x65\xf5\x2d\xc2\xad\xd4\x85\x37\xe1\xea\x84\x35\x6e\xee\x5d\x18\x48\xec\xc9\xc8\x32\x95\x58\xc4\x22\xba\xff\xe2\x5b\xb3\x07\x59\xd9\x8a\x30\xce\xde\x8a\xe8\x9e\xdd\x5d\x5f\x60\x36\x70\x52\x30\xb3\x15\xe8\x8d\xd7\xeb\xe9\xbc\xbb\x15\x7c\xfd\x0c\x8c\x4e\x43\x05\x87\x3c\xc7\xbc\x93\x59\x33\x15\x22\x40\x14\xe4\x4b\x9a\x4d\x92\x72\x69\x00\x08\xc6\x0b\x2b\x43\x03\x8e\x78\xa6\xb7\xa0\x3a\x53\x16\x81\x54\x5b\xca\x97\x22\xed\x60\x5c\xcc\x54\xbc\xb0\x71\x92\x63\xc1\x3c\x8d\xb2\xac\x1f\x83\xa2\x8e\x36\x8f\x81\x1b\x8b\xf5\x96\x1e\x64\xf7\x3f\xea\x80\x5e\x43\x85\xc4\xcf\x70\xaf\xe7\x1a\xd2\xbb\x57\xc9\xda\x46\xdb\x92\x15\x69\xe3\x60\x42\x3f\xa8\xc0\x9b\xfd\xd2\x94\xf4\x51\xc5\x04\xd3\x73\x24\x66\xc6\x0a\x12\xe4\x3d\xf1\xb8\x8a\xb0\x0a\x4e\x29\x5f\x83\x6f\x40\x17\x82\xc7\x4c\xad\xc8\x9b\x98\x65\x69\x02\x94\xbe\x31\xb2\x87\x03\x7b\x86\xae\xa2\xe3\xc3\xd2\x6c\x65\x03\x92\x8f\x8f\x16\x88\xd7\x1b\x6f\xf4\x41\x2e\xd3\xae\xaa\x93\xbb\x6e\x53\x1d\xab\x02\xe7\xf2\x91\x0e\xbd\x42\xf7\x7b\xd3\xd6\xa9\x5a\x42\x47\x75\x83\xe2\x7a\x36\x68\xb3\x3b\xe5\x49\x3c\xe6\x78\xb7\x7d\x72\xe5\x5e\xed\xab\xe0\x95\xf5\x74\xb8\x2f\xd9\x61\x66\x44\xb8\x1e\x46\xf0\x6b\x69\xec\xfb\xee\xda\x10\x20\xd4\x2e\x42\xe8\xac\xf1\x82\xe4\x06\x60\x55\xb8\xed\xb8\xe3\x5a\x5d\x6d\xcb\x51\x03\xdd\x24\x46\xd9\xd3\x97\x9e\x4b\xa5\x7f\x90\x8f\x60\xb7\xc0\x95\xeb\x28\x2e\xba\x1d\x69\x32\x16\xf1\xe2\x80\x36\x9c\xd3\xbb\xc3\xda\xe2\x7a\x1a\xab\x07\x2e\x2f\x79\x62\x4e\xc6\x98\xe7\xb1\x6f\xc7\x04\x6e\xc4\x11\xcf\xc0\xeb\x0c\x5e\xfc\x87\x57\x53\xfb\x8d\x6b\x9f\x4c\x63\xb6\x07\x4c\x71\x47\xb8\xb2\x6a\xd1\xea\xd8\x37\x8f\xdc\x24\x45\x34\xb3\x99\x39\x7e\xba\x56\xd2\x4c\x06\xcd\xdd\xfa\x0c\xb3\xfb\xd5\x31\x93\xeb\x39\xf6\x8e\xb2\x50\x3e\xb8\x01\xed\xb9\x00\x7a\xd4\x30\x81\x0d\x36\xc8\x8b\xb8\x03\x18\x61\xad\x4d\xbb\x09\x8d\x80\xdb\x8e\x02\xfc\x66\xb9\xb0\x61\xb2\x9d\x28\x1c\x8d\x41\x6a\xf5\xcf\x20\x0a\xe4\x5a\x5d\xe5\x71\xb1\x54\x0d\x8e\x7b\x0b\x62\x36\x64\xd9\x46\x6a\x9b\x29\x09\x28\x1c\x4c\xca\x9a\x4b\x2a\xdc\xaa\x58\xbb\x40\x52\x25\xb3\x6f\x42\xfe\x3b\xcc\x13\x11\x5a\xa5\x0f\x14\x31\x0c\xc4\x16\x40\xff\xce\x54\xf0\xcc\x5c\x85\xcc\xc5\x1f\x42\xd9\x74\x90\x01\xf0\xbd\x26\xe5\x9c\x8b\x75\xa2\x0b\x11\x26\x43\x86\xef\x3f\x99\xea\x66\xc5\x57\xd0\xd7\xf5\x9d\xaa\x9b\xfb\x8c\x7e\xb3\x3f\x8d\xa8\xcf\x2e\x13\xf1\x85\x7b\xaf\x7f\x32\xd4\xf2\xd5\xfd\x76\x58\x39\xef\x70\x0e\xe0\x65\x47\x23\xb3\x95\x76\x32\x09\x6e\x90\x88\x73\x88\x7b\xfc\x9e\x19\xa2\x75\xc9\x73\x2e\x0b\x21\xf4\x5c\x52\x9c\x15\x19\xda\x42\x12\x92\x1a\xee\xcf\x99\xf2\x91\xd2\x05\x12\x1e\xc1\x2b\x2b\x9e\xa4\x65\xde\x79\xbb\xc6\x59\x79\x10\xcb\x42\x5f\x2f\x9d\x41\xb1\xac\x6d\xd0\x5c\xbe\x6e\xb0\x8a\x1c\x49\x48\x3d\x4a\x5a\x4d\x67\xed\x68\x82\x3d\x5c\x86\x8f\xb7\x73\xad\x76\xa4\xf0\xfe\xa8\x17\x99\x1a\xb1\xe3\xfd\xfc\xa3\xfe\xa8\x3a\x92\x9f\xf5\xe7\x86\x0b\xb0\x07\x2d\xf0\xb9\x4b\x38\x82\xeb\x7b\x08\xb4\xed\xf3\x3c\x0c\x22\x9f\xdc\x1b\x8e\xeb\xdc\xbb\x60\xd6\x6e\xb8\x8c\x53\x73\x23\xe7\x45\xed\x04\xf2\xb0\x66\x73\x03\x28\xec\xe6\xd8\x9d\xc3\x06\x29\x21\x8b\xa8\x91\x4f\xb8\xaf\x9f\x6a\x89\x88\xbd\xd0\xc1\xda\x57\xaa\xe9\x81\x6d\x69\x29\xde\x86\x21\xb9\x56\xb7\x60\xbf\xba\xfd\x72\x1e\xd6\xfd\x0b\x99\x2f\xd5\xb5\xb6\x4a\xd6\xdf\xc0\xbd\xf9\x43\xf3\x48\x88\x68\xcf\xa1\x83\xda\x81\xf9\x8f\xdc\x75\x20\x6f\xca\xec\xda\x21\xdf\xf4\x5c\x92\x6c\x35\x06\xd3\x21\x8a\x8a\xf4\x62\x9a\xbd\x72\xc9\xb4\xaf\xfe\xd1\x92\x4b\xed\xd8\x0a\x26\x15\x30\xb8\xa9\x28\x2a\x73\x88\x74\x93\x37\x8e\x09\x3c\x84\xf5\x28\xde\x14\x30\x3d\x1c\x3e\x09\xed\xc4\x36\x33\xc9\xb9\x5f\x2b\x8d\xba\x05\xaf\x1b\x0a\x70\xbb\x43\x9f\x74\x95\x72\x5d\x30\x5d\x88\xac\x75\xfb\xad\x58\x97\x55\x8d\xf9\x23\xec\x4b\xaf\x70\x3f\x70\xe9\x8c\x38\x8c\x66\x81\x87\xe4\xcf\x37\x57\x97\x2c\xe3\x3b\x80\xfa\x15\x8a\xe1\xa3\xc0\xaf\x59\xdf\xa8\xf6\x8d\x40\xb5\xf1\xd5\x5d\x05\xfb\xd4\x62\x86\xdb\xdd\xf1\xf4\xc5\xa6\xb1\x08\x73\x86\xa6\xa4\xd9\xb3\x72\x95\x9e\x64\x29\x97\x01\x9a\x5b\x4f\x59\xed\xf3\x61\xf8\xde\x05\xf2\x08\x20\x05\x15\x00\x0f\x19\xcd\x85\xbc\x6c\xc5\xfb\x56\x65\xf3\x8f\x8a\xd8\x77\xee\x11\xbd\x38\xc6\x0f\xa8\x56\xc1\x23\xb3\x4c\x90\x2c\xc2\xa2\x10\x1c\x90\x85\x6b\xc0\x98\x8e\x18\xa8\x7e\x8d\xff\xb9\xb4\x12\xce\xea\x51\xb3\x18\xe9\x34\xca\x44\x6f\xc0\xe5\x8c\x31\x1e\xc0\x7b\xd1\xfe\x82\x60\x94\x9c\x4b\x6d\x06\x14\xdc\xd4\xe2\x41\x90\xaf\xaa\x12\x5f\xbd\x78\xfb\xde\x41\x36\x70\x90\x48\x65\xaf\xa3\xeb\x03\x0b\xf4\x98\x9b\x5a\xab\xe8\xfc\x7e\xad\x86\x0f\x3c\xeb\x4b\x04\x3c\xba\xc4\x7d\xa3\xe4\xc8\x84\xea\xe6\x35\xc8\xef\x82\xf0\x56\x25\x1b\x30\xec\xbd\x3b\x79\xe4\xf6\xd3\xca\xe7\xbd\x5f\x27\x62\xf0\x6d\x73\x58\x72\xe7\x88\xbd\x27\xe0\xf5\x73\x70\x29\x77\x31\x30\xab\x1c\x64\x8d\x80\x90\x0c\x9d\xa3\x53\x76\x23\x04\xfb\x04\x3d\x65\x3e\xf6\x89\x64\xf3\x00\x01\x5a\xf0\xa4\x55\xd5\x08\x9e\xbe\x90\x2b\x75\xdc\x66\x90\xaf\x1b\x08\xc3\xa3\x7a\xa5\xbd\x9e\xc7\x62\x18\x21\x3b\x55\x3e\x2f\xa5\x42\x6b\xbb\xf6\x20\x16\x3f\x7a\xe7\x03\x25\x5a\xda\x9a\x9a\xf3\x19\x86\xf8\x10\xd2\xae\xda\x24\x31\xad\x9c\x20\x11\xf5\xbd\x54\x8f\x12\x6d\x01\xfa\x12\xfb\xce\xac\x3f\x38\xc0\xd0\x27\x8e\x66\x41\x89\xbb\xe1\x4b\x60\xc6\x9e\xb9\x7f\xb3\x1b\x0c\xff\x61\x9d\x41\xef\x46\x83\xf1\x43\x4a\x35\xb0\x9b\x7f\x37\x9b\xb0\x37\x13\x76\x36\x61\xd3\xe9\xf4\xe5\x04\xc5\xb8\xa9\x46\xf8\x0a\x82\x01\x0b\xbe\x36\x65\x93\x02\xc8\x2a\xf8\x00\x68\x5a\x99\xc3\xca\x12\xc0\x71\xff\x54\xe0\x62\xb1\x4d\xc0\xb4\x54\xca\xa1\x21\xa8\x44\xb4\x51\x89\xaf\x14\xa0\x6e\x45\xa4\x72\x8b\xdb\xd5\x85\xca\x2d\x06\xf1\x81\xe7\x3c\x91\x90\xad\xcf\x9b\x08\x6c\xfa\x72\xc0\xd7\x2d\x7e\xe3\x5b\x68\x7f\x22\x1d\x65\xa9\xe9\xa6\x5b\x57\xff\x62\x97\x51\x8c\xe1\x31\x4f\x8a\xc2\x9c\xce\x7a\x2e\x6f\xd8\xeb\x7f\x61\xb3\x2c\x4b\x05\x9b\xb1\xbf\xb1\x37\x5c\x72\xc9\xd9\x1b\xf6\x37\x76\xc6\x65\xc1\x53\x55\x66\x82\x9d\xb1\xbf\x99\x6e\x33\xe5\x5d\x2a\x73\x1c\xee\x26\x8c\x33\x59\xa6\x78\xea\x7f\x67\xf1\x7d\x2f\x5d\xbb\xb8\x1f\x9d\xa5\x28\x1e\x85\x90\x4c\xab\x2d\x1d\x85\x7f\x75\x61\x26\x9d\xc8\x75\x2a\x0a\x9a\x0f\x55\x24\x26\x7e\xe0\x04\x5a\xfa\x7a\x2e\x9d\xd3\xf2\xaf\xa6\xc6\x7f\x65\x7f\x63\x97\x65\x9a\x9a\x2a\x99\x8d\xc6\x4c\xa4\xd7\xcc\x66\xc6\x08\x39\x7d\x4c\xee\x93\x4c\xc4\x09\x87\xdc\x18\xf3\xaf\xd3\x5b\x18\xed\x45\xe9\x69\x10\xc3\x35\xed\x34\x84\x8e\xd9\x7a\x9e\x25\xcf\xde\x29\x5c\xd9\xc1\xef\xb9\xe2\x56\x5f\x1d\x6f\x11\x79\xf2\x57\x5a\x0f\x64\xb0\xa2\xfe\x53\xa8\xa4\x75\xd0\x16\x50\x3b\x6c\x6d\x59\x2d\x47\x41\x78\xa8\x1f\xbb\xc9\x82\x2c\xdc\x93\xdf\x21\x07\xc8\x51\x0d\xdd\x72\x1b\x62\x3a\x15\xe6\x02\xb0\x25\x3d\x7b\xd3\xa0\x40\x9f\x13\xd1\xf9\xa5\xaa\x8b\x57\xe9\x62\x95\x0c\x12\x10\xac\x55\xf6\x8e\x9c\x34\x98\x73\x68\x96\x69\x92\x9e\x9a\xa5\x7a\x7a\xa9\xa4\xb9\xb6\xea\x64\x8d\x8c\x53\x70\xbb\x47\xe5\x3d\x6b\x14\xdc\x56\x4d\xd6\x60\x09\x80\x7d\x60\xaa\x84\x68\xc5\xc2\xec\x02\x66\x08\xd2\xdd\x5c\x9a\x37\xe8\x44\x82\xcc\x85\xc4\x11\x13\xe3\xd7\x88\xf7\xd7\x7e\x8b\x36\xe4\xa0\xf0\x96\x09\xd6\x97\x16\x7d\xc4\x84\xa3\x2c\xbc\x23\xdc\xff\x97\x01\x29\x1f\x95\x66\x19\x5b\x30\x94\xbd\x14\xa9\x92\x6b\x33\x2b\xba\x36\x01\xb5\xe5\xc9\x31\x58\xa1\xb0\x0a\x58\x58\x67\x0d\xcc\x61\x49\x8f\xd0\x90\x98\x73\x32\x89\xfd\xfd\x5e\x97\x4b\x63\x47\x38\xd7\xb3\x3b\x0d\xa9\x71\x5d\x39\xe2\xc7\x41\x06\xee\xb4\xc8\x81\x39\x1b\x41\x2b\x2e\xac\x81\x07\xa7\xe7\x4f\xc1\x16\x0d\x5b\x54\xbd\x58\xe7\x76\x57\x08\x85\x4d\x1a\xd9\xf2\x03\xe6\xe3\xd7\x84\x3d\x0f\x01\x43\xbf\x9b\x5d\xbc\xaf\x3d\xd7\x04\x43\xb7\x20\xa6\x6f\x2f\x3e\x9c\xbf\x5d\x5c\xdd\xdd\x36\x9e\x33\xa5\xd1\x9f\xf6\xe0\xa1\x3b\x7b\xef\x29\x10\xa1\x9f\x51\xc1\x67\xa1\x56\x36\x39\x76\xf8\x99\xde\xd0\x50\x1a\x06\x3c\x0a\x79\xd3\x43\xad\xa1\xe6\xc4\xe9\x4c\xf1\x97\x0b\x0a\xbd\x0c\xab\x6c\xbd\xc3\xae\xe4\x3b\x7c\xfd\xa3\x4a\x93\xa8\x1f\xc7\x68\x8f\xab\x8d\x7a\x6c\x01\x86\x2d\x05\x00\x7b\xc9\xff\x43\x95\x42\x0b\xbd\x10\x51\xe1\x43\x8b\xcd\xc6\xfd\xaf\xc6\x4e\xed\xbf\x83\xa3\x47\xd9\x75\x1b\x68\xaa\xba\x60\x25\x9c\xad\xc0\x99\x0a\x52\x01\xe8\x6b\x85\xf4\x48\x08\xe2\x47\x9c\x5c\xd0\x95\x9e\x87\x0d\xfa\x71\xa3\x52\x73\x17\x93\x31\xf1\xcf\xce\x65\x26\xf2\x48\x01\xe6\x08\xa9\x0d\x14\x8b\x36\x49\x1a\x7b\x3d\x9e\xef\x00\xa4\x0d\x50\xca\x97\xa4\xb4\x28\x5c\x30\xdd\x16\xdf\x73\xea\xda\x69\x67\x25\xe8\x8f\xf3\x40\x3d\x1d\xea\xb2\x6f\xda\xff\x4a\xe8\x40\xec\x0a\x62\x8c\xaa\x85\x45\x4d\xa7\x57\xea\x33\xca\xc3\x0b\x22\xf1\x2b\xab\xe7\x6a\x2f\x4e\x45\x6d\x5c\x69\x9a\xd5\xbb\x12\x78\x84\x11\x18\x87\x98\x20\x2d\xa0\x3a\x5b\xc1\xd1\x16\xf3\xac\x9e\x34\xa8\x73\xe9\x03\xc1\x2f\x74\x68\x97\xb5\x8e\x33\xd2\xe4\x5a\x5c\xe7\x84\xbd\xa8\x34\xf4\x05\xf0\xcc\x4a\x05\xdf\xa3\x60\x5d\xa5\x6b\x60\xba\x4e\x58\x52\xcc\x65\xa2\x71\x66\xe6\x22\x15\x0f\xa6\x76\xa1\xb3\x98\xe0\x4b\xf6\xee\x6c\x9b\x0d\xa9\x01\xdc\x66\x94\xd3\xb4\xa1\x45\x98\x87\x7c\xa5\x18\xa5\x8a\x85\x36\x76\x23\x28\xad\x88\xdf\xcc\x02\x48\x20\x16\x82\x38\x97\x58\x48\x5b\x3f\x80\xbf\xa0\x3c\xf1\x5c\x5e\xac\x20\xad\x17\x92\x89\xe3\x18\x6f\xa1\x56\x7b\xc3\x91\xc7\x25\xe4\x1c\x56\x74\x27\xb7\x03\x41\x42\xa1\xb8\x92\xc4\x83\xc8\x77\x05\x38\x75\xa1\x5f\xa5\xe0\xc5\x86\x25\xc5\x04\x58\xff\xec\x4e\x39\x97\x3c\x26\xf1\x79\x2a\xce\x74\x0d\xcc\xfb\x9e\x71\xa6\xdf\x97\xea\xa1\xcf\xb0\x3d\x16\xc8\x87\xab\x3a\x4b\xb9\x5c\xe0\x09\xf2\x15\xa0\x7c\x81\x86\x6b\x57\x4c\xb7\x5c\x2e\x1c\x53\xd1\x93\xd4\x33\x90\xf9\x0e\x95\x95\x8d\x1d\x6b\x3f\x34\xc1\xc9\xe0\x99\xca\xed\xf5\xc4\xf9\x69\x08\x46\x91\x33\x1b\x6a\x1e\xbe\x0b\x78\x94\x1f\xaf\x41\x2e\xec\x6c\xdd\x07\xf3\xb3\x33\xe0\x5b\x05\x62\x0d\x19\xf9\xda\x19\x52\x1f\xf6\xf1\x18\xa0\x86\x85\x78\x10\x0e\x68\x4f\xb5\x9e\x17\x0b\xd4\xe9\x47\x69\x62\x82\x6c\x6b\x83\x70\x1f\xe6\xc3\x08\xf4\xc3\x39\x37\x4f\xbb\x46\x6f\x78\x0f\x53\x2d\x70\xd9\xa7\xf4\x51\xc3\x3e\x35\xd4\x53\xe2\xd3\xe9\xa1\x5e\x53\x76\x21\x99\x35\xf7\x26\xec\x05\x4e\x2c\xfd\x82\x5c\x90\x24\xf4\x4c\xb1\xf3\x98\x56\x0f\x25\x20\xd7\x31\x27\x98\x06\xe2\x97\x1b\x46\x82\x7a\xd9\x2a\x9f\xb5\x5f\xde\x24\x90\x86\x72\x08\xd3\x00\x46\x11\x97\x58\x00\x1d\x92\x78\xed\xde\xa1\xd1\xae\xbc\x37\xdb\x37\xd8\xc6\xbb\xd8\x1b\xfb\xa2\xe9\xa2\xac\xa4\xf3\xd4\xfe\xce\x54\x3e\x97\xb6\x34\x72\x49\x6a\x94\xc7\xaa\x17\x15\xa0\xe2\xc9\xe6\x0f\x66\x2a\x80\x18\xac\x22\x1a\x08\xed\x79\x4a\xdd\xfa\x2e\x00\xa0\x88\xa5\xf0\x12\xf5\x53\x36\xf3\x5f\x33\x86\x87\x99\xe0\x5b\x3c\xe6\xeb\xb4\x9b\x69\x6a\x3a\x25\x29\x2c\xcb\x67\x90\xb1\xa2\x4b\xe0\xaa\x5d\x95\x66\x33\x0a\x08\x7d\xe7\xd2\x74\x1e\x5b\x25\x00\xe5\xa6\x7e\x99\xcb\x0f\x4a\x5b\x82\x04\xed\xfb\xc3\x82\x65\xa9\xdb\x5e\x38\x61\x38\xfa\xc3\x5b\x38\xb4\xc9\xe7\x8f\x54\x47\xee\x68\x81\x54\x25\x62\x39\xd9\xa9\x32\xf7\x8d\x8a\xb8\x9c\xcb\xff\x30\xdd\x83\xe2\xe4\x4e\xd9\x5f\xad\x70\x09\xc3\x08\x42\xb0\xe4\x13\x16\xfa\xdd\x3f\xbe\xfc\xf4\x12\x53\x0b\x4a\x0d\x5a\x9c\x93\xea\x01\xe2\xb8\xdd\xcb\x34\x85\x48\xb4\x6d\x81\xe3\x17\xf1\x9f\xe8\x85\xe5\xd0\xa5\x6e\x21\xab\x26\xc6\x90\x85\xde\x37\x83\xbd\xf3\x79\xc6\x22\x5e\x44\x9b\x13\x6b\xcb\xd1\x36\x66\x4f\x3f\x1a\x3e\x14\xe5\x33\x96\x56\x3b\xbd\xb9\xb9\x70\xe6\x5b\x47\xb8\x58\x99\x2f\xa6\x09\x00\xac\xb9\xad\x6b\xfd\x38\x3e\x58\x9c\x9c\x5e\x5b\xdf\xdb\x79\xee\x71\xab\xb4\xe7\x6f\x9c\xe4\x25\x97\x7c\x2b\x62\xf6\x02\x92\xe0\x5e\xd8\xc1\x9f\xcb\x6c\x39\x4d\x77\xab\x82\x58\xbb\x4c\xa7\x4c\x41\x93\x6a\xcf\x29\xb7\x88\x9b\xd7\xa4\x3d\x9d\xdd\x79\xd1\x6a\xb7\x75\x5c\xdf\xb8\x2f\x0d\x37\x58\xd0\xc7\xe5\x7a\xe7\xa6\x0a\x11\xaa\x92\xe3\x73\x7d\x3f\x61\xcb\x9c\x4b\x90\x13\x89\x43\xa3\xca\xaf\x4e\xb8\x3c\x23\x25\x96\xcd\x8a\x91\x3c\xdd\x41\x3a\xc0\x64\x2e\x91\x3f\x0c\x88\xa6\x77\x51\x9a\x44\x6c\x9d\xf3\x6c\x53\xb3\x83\xc4\x83\x90\x05\xa8\xd2\x5e\x0b\xae\x8f\x8b\xd6\xe7\xf5\x12\xd8\xe0\x78\xca\x4c\xc2\xed\x83\xcb\x1a\xe3\x2b\x54\xaf\xe3\x68\x01\xb8\x96\x88\x17\xe3\xd8\x5e\xf6\x72\x92\x56\x98\xee\x88\x76\x09\x22\x90\xa6\x71\xcc\x7e\x75\x5f\xf8\x1b\xfb\x95\x88\x48\x2c\xc0\xef\xd8\x90\xbd\x23\x36\x39\x8a\x9e\xf2\xa2\x6a\x45\x72\xcf\xd8\xe2\x3d\xd7\x98\xd3\x45\x9e\x0a\x8b\x8a\x76\x1b\xc7\x84\x54\x03\x81\xba\x8e\xfd\xa5\x5c\xaa\xd4\x72\xff\x5d\xbc\x65\x2a\x07\xd9\x8d\x42\xd1\x9f\x92\xb8\xcb\x3a\x48\x64\x2c\x7e\x3b\x8a\x80\xa3\xff\xa0\xb7\x66\xb3\xf9\x4c\xa0\xee\x50\x6f\x2c\xec\x4e\xb9\x30\x87\x70\x61\x6f\xc6\x8d\xa7\x74\x1d\xb9\x38\x4b\x8b\x0d\xc0\x09\x11\xb1\xef\x3b\x75\xcb\x77\x2c\xda\x70\xb9\x0e\x5c\x13\x80\xee\x12\x99\xca\x51\x9e\xf2\x01\x98\xee\x54\x6e\x13\x9c\x29\x6d\x97\xd2\x06\x5c\x20\x01\xd1\xba\xca\xe6\xe6\xf2\xf5\x3a\x17\x6b\xe0\x9c\x98\xcb\x0a\xf1\x00\xb0\xfc\x59\x65\x0c\xfc\x4e\x5f\xde\xf6\xd3\x90\x9f\x74\xdd\x06\x8b\x7c\xe7\xb2\x5e\x49\xdb\xd5\xaf\xe7\x7a\xb7\x4e\x58\x22\xa6\x13\xf6\x83\x47\x28\x8b\x48\x49\x97\x36\xdb\x91\x33\x59\x73\xf9\xb3\x3d\x57\x87\x26\x4b\x4a\x7b\xdd\xe1\xb7\x86\x42\x6c\xeb\xa4\xe9\xcd\x3b\x2e\x78\x51\x8e\x38\x83\x48\x05\xfc\xcc\xbc\x7c\x83\xef\xf6\x82\xf8\x11\x3e\x6c\x19\xaa\xcc\xf3\xe6\xe4\x34\xdf\xf6\x0c\xd6\x6d\x7d\xbd\xd7\x81\x9c\xaa\x6e\x07\xf2\x53\x98\xea\x96\x86\x64\xbf\x0f\x39\xed\xa0\xd6\xe8\x69\xd3\x58\x17\xb1\x05\xf9\x52\x9e\x82\xae\x5f\x63\x5b\x76\x80\x2c\x57\x71\x19\x89\xd8\xac\x5c\xb8\x0f\x21\x22\xc6\x31\x7c\x54\x36\xc9\xb6\x83\xb6\x42\x53\x04\xa7\xee\x97\xf2\x39\x0c\x62\x86\x76\xdd\x7f\xd7\xe1\x6f\xb0\x16\x5f\x5b\xa7\x87\xeb\x13\xfb\x29\x1f\x79\x4e\xb9\xcf\x57\xf9\x9c\x55\x9e\xac\x13\xc9\x0b\x95\xb3\xef\x5c\x1e\xef\x4b\x27\x02\xd5\x6d\x21\x8c\xdc\x26\x2a\x5d\x84\xdb\xc4\x17\x35\x3c\xda\x26\xa9\x79\x4a\x17\x7c\x9b\x85\x0c\xa9\x4e\x62\x9b\x7a\x26\xc5\x4e\x70\xb6\x09\xf8\x4e\x13\xed\x93\xf8\xe6\x92\x22\x0e\x38\x6e\x2a\x0f\x29\xbe\x3b\xcf\xe6\xac\x2c\x16\x07\xb2\xfe\xe0\xcb\xe3\x1c\x4f\x04\x43\xf8\xc0\xb3\x7e\x1e\x15\x4e\x2e\x07\xcc\x62\x72\xba\xe3\xd6\x52\xa9\xce\xcf\x7e\x11\x8d\x91\xbc\xae\xf5\xd0\xf9\xf5\x7b\x1b\x28\xf2\xf7\xc1\xca\x05\x0b\x06\x02\x09\x25\x31\x2b\x04\xaf\xf6\x6e\x5b\x33\xa7\xb8\x25\x5f\x39\x4b\x55\x19\x33\xda\xd4\x28\x0c\x9f\x4f\xf1\x74\x04\x86\xd7\xe9\xb4\x2b\xcb\x65\xa4\xb8\xaf\xdb\x7f\xe0\xbd\xf6\x15\x08\xbf\x75\xec\xc0\xbd\x4b\x9f\x7a\xf6\xd9\x86\x9e\x7a\x1a\xc6\xde\x6d\xc7\xa3\xc6\xde\x79\xc1\x81\x6e\x6e\x9c\x83\x14\xee\xa3\x49\x9c\xc2\x7a\x0b\x03\x08\x2d\x84\xb8\x95\xc0\xac\xbe\x3f\xfa\x73\x36\x29\xbd\xff\x53\x19\xcf\x85\x2c\x16\xf0\xc5\x71\x1f\x83\x8f\x7c\x84\xd7\x2b\x06\xd3\x20\x47\xf0\xbf\xdd\x2a\xf4\xef\x5b\x6e\x99\x7f\x67\x37\xe4\xd3\x32\xfb\x55\x02\x20\x52\x7d\xcf\xbe\x4b\x00\x73\x14\xc4\x42\xdd\xc0\x75\x0c\x17\x35\xe8\x80\xde\x0b\x1a\x54\xd9\xda\x07\x35\xc8\xd7\x1e\x42\xd5\x50\x0a\xb9\xf7\x28\x45\xd8\x6c\xb5\xf6\x6f\x01\xdf\xfc\x65\xe5\xdf\xc0\x0d\x6a\xc6\x2f\x65\xff\x29\x72\xe5\xd3\x41\xd0\x59\x15\x16\xdc\x6b\xaf\x1f\x2e\x95\x8b\xf6\x38\x8a\xb4\x86\x2a\x85\xf0\x17\xa2\xef\x41\x8f\xc2\x72\x67\xaf\x23\x1d\x21\xa4\x4c\x44\x8b\x0e\x49\x8a\x41\x55\x09\x2e\x9e\xa1\xc4\x44\x52\x3b\xcc\xec\x02\x3d\x05\x7f\x05\x11\x64\x6e\x79\x46\xf8\x3e\x82\x12\xd7\x83\x37\x53\x68\xc4\xbf\xfd\xf5\xdf\xa7\x5d\x22\xe8\x50\xf5\xb1\x70\x29\x57\xf9\x77\x79\x22\x64\x0c\xc1\x58\x1e\x37\xd5\x92\x64\xc5\x3b\x5f\xd9\x9e\xcd\x34\x7c\x92\xf4\xd0\xf6\xa3\x56\x2f\x70\x12\x7d\x81\x88\xbe\xdf\x64\xdd\xf2\xad\xc4\xfb\xba\x4c\x09\xbd\x88\x77\x92\x6f\x9b\xb2\xf1\xcf\x5a\xc7\x5d\x22\xd2\x18\xaa\x48\x5f\xdf\x17\x95\x8a\x45\x74\x3f\xd6\x26\x38\x98\xeb\x5d\x44\xf7\xec\xa7\xdb\x0f\xef\x51\xda\x33\xd1\x73\x79\xc9\x8b\xe4\x41\xdc\xe5\xa9\x0b\x07\x10\x79\x4f\x9e\xda\x35\x52\xe5\x1e\x0e\x78\x6e\x2c\x51\xb1\x35\x1c\x42\x6a\xf8\xed\xee\x64\x59\x46\xf7\xa2\x38\xcd\xb9\x8c\xd5\x16\x9b\x71\xaa\xcb\xd5\x2a\xf9\x6d\x5a\xf0\xbc\x83\x27\x1e\xfd\x08\x5f\xd1\xce\xf5\xea\x3f\x85\xb7\x79\xd1\xd4\x7d\x84\xac\x4f\xd2\x94\xae\x18\xb7\x70\x05\xce\xf9\x56\x00\xd1\x1f\xab\x6a\x2c\x40\x29\x98\x48\x09\x52\x84\x5a\x13\x82\x5e\x91\xd0\xf1\xa7\xc0\xb8\xff\x14\xd4\xaa\x2a\xb6\x6d\x2b\xe5\xe5\xfd\xb6\xfc\x1e\xef\x87\xeb\x5c\x68\x3d\x61\x5a\x41\x8d\xe7\xd2\x62\xd1\x6d\xbe\x14\xe0\x5e\x80\x2a\x34\xdd\xb1\x48\x65\x09\xa8\x21\xba\x76\x6d\xd4\x23\xf8\xe9\xc3\xb4\x41\x10\xb0\x2d\x65\x91\xa4\x8c\xaf\x0a\x72\xe2\x03\x2f\xba\xd5\x41\xd2\xd3\xb9\x84\x50\x6c\x04\xcd\x07\x88\x84\x0b\xbf\xb8\x46\x68\xb6\xe2\x51\x92\x26\x05\xb1\x35\x41\x92\x11\x37\xed\x35\xe7\x81\xe9\xcb\x9c\xef\x78\xea\x2f\x56\x3c\x2d\x7d\xa6\xe4\x89\x16\x3d\x6c\x80\x89\x5e\xa0\x83\xe0\x4b\xd0\x8f\x25\x61\xf0\x01\x99\x93\x67\xe6\xe3\x97\xb5\x53\xf4\x0f\xe1\xff\x56\xee\xe1\x7d\x56\xc1\x11\x17\xf2\x63\x0e\xc7\xe6\x95\xdb\x89\x07\x7b\x3b\x23\x89\x2d\x3e\xb8\x62\x8a\x7b\x12\x69\x77\x3c\x42\xcc\xa4\xe3\xd2\x3f\xb5\x92\x4f\xcd\x2f\x8c\xe8\xbd\x76\x23\xf1\x0b\xb9\x33\xba\xe8\xac\x87\x54\xdf\x7a\xe3\x3f\x2a\x95\x1e\xeb\x91\xa7\x0c\xfd\x44\xc9\x05\xa8\xa0\x1e\x73\x9d\xc4\x09\xe0\x1c\x5b\x17\x6f\x5d\xcc\xdd\xf1\x43\x57\xb5\x93\x08\x0e\x46\x55\x80\x8d\x0c\x2a\xd1\x83\x14\xd7\x59\x0b\xe8\x62\x24\xe2\x1d\xca\x40\xb4\x96\x35\xed\x9b\x21\x82\x80\xac\x81\xfb\x3a\x02\x87\x66\xad\x86\xa3\x9c\x75\xa8\x59\x5a\xfb\x94\x73\xdc\x85\x5c\xbb\xae\x1f\x83\x6f\xdb\xfe\x44\xa5\x74\x73\x7e\x92\x15\x3f\x97\x81\xc5\x8e\x04\x59\x36\xa5\xc0\xf5\x5a\x9b\x3f\xaf\x32\x0d\x8f\xf6\xe7\x1d\x43\xa8\xde\xbb\x73\xbe\x0d\xa5\xd1\x00\x0b\x12\xa9\xed\x32\x91\x36\x45\x9d\x9c\xdc\x70\xd5\x98\x59\xbe\x4a\x17\x90\xb0\x57\x06\x14\xcc\xa8\xf5\xbd\x33\x73\x42\xea\xcf\x70\xcb\xda\x77\x1d\x0f\xef\x77\x4f\xcb\xfd\xde\x11\x69\xac\xb7\xc0\x1c\x20\xe9\x23\xdf\x69\x90\x0f\x16\x66\x57\x5c\xa1\x63\xb7\x5a\xff\x49\x60\x7e\x58\x2e\x54\xd2\xe2\x2f\x49\x55\x9c\xda\x92\x20\x41\x89\x48\xad\x50\xb2\x27\x7e\x7a\xa1\xdb\x3b\xe7\xeb\xc4\x6a\xf2\xde\x58\x0d\x06\xa1\xff\x67\x84\x67\x7a\x9c\xc0\x47\xfa\xa2\x83\x63\x12\x2d\x46\x82\x09\x41\xe2\x96\x0b\x51\x4f\xd8\x96\x27\x92\x96\x01\x8a\xd1\xc5\x62\x59\xae\xd7\x9d\x2e\xd2\x6f\x3f\xd6\x52\x5d\x27\x7f\xf7\xbe\xf0\x5e\xea\xb2\xa7\xf0\x16\x5f\xd8\x2f\xa1\xfb\xda\xdc\xfb\xbe\x8c\x83\xf8\x2b\x7a\xe3\x5b\x43\x62\x8d\x49\xf4\x34\xde\xf8\x8b\x21\xde\x78\x8b\xed\x82\x14\x3b\xba\x4e\x5b\xfc\xcd\xef\x6e\xfa\x2f\xe3\xa6\x1f\x34\x29\x90\xd6\x65\x91\x54\x0d\xf4\x9e\x1a\x1e\x48\x83\xe7\x98\x61\xa1\x56\x24\xec\xaf\x85\x8c\x35\x5b\xf2\xe8\x19\x78\xf1\xe0\x74\x3c\xde\x1f\xb8\x07\xfc\x72\xa3\xb6\x82\xc1\xa7\x34\xca\x98\x30\xca\x62\x9c\x00\x5a\xd5\x34\xd0\x23\x46\x08\x8f\x02\xc7\x29\x22\x57\x62\x6f\x54\x7f\x27\xc5\x23\x33\xa7\xd5\x24\x84\xef\x05\xc3\x03\xfa\x56\x2f\x8d\x75\x58\xc1\xfa\x3b\xca\x86\x5c\xac\x79\x1e\x43\x86\x09\x2d\xc9\x94\x47\xf7\xe6\xbf\xa1\x7e\xf4\x45\x82\x18\x5a\xaa\x7d\x84\xbd\xfa\xd2\x12\x19\x21\x33\x1a\xa1\x19\x7d\xfd\xf0\x75\xcd\x78\x94\x2b\x8d\x4e\x23\x27\x0b\x0b\x19\xce\x60\xc0\x3e\x24\x71\xc9\x53\xfc\x62\xa7\xa7\x7d\x2c\x7c\xad\x0e\x38\x0a\x14\x9c\x9a\x68\x36\x1a\x0e\xe4\x28\x82\x6e\x9c\xce\xe5\x5b\x17\x30\x79\xcd\xee\xb4\x20\x94\x99\xb6\x1c\xd8\xbd\x35\x7d\x36\xf3\xa1\x81\x09\xec\xb4\x21\x7a\x3a\xc0\x82\xac\x83\x8e\xd0\xdd\x3d\xb1\x87\x5d\xf1\x98\x41\x19\xcd\x12\x7b\x11\xc8\x48\xfb\x6e\xc1\x7b\x42\x2e\x78\xbc\x0b\xa9\xd9\x12\xc9\x20\x4a\xc7\x78\xbc\x4d\xa4\x59\x04\x56\xaa\xd0\x9d\x34\x96\xb5\x1c\x21\xc7\xa0\xe8\x93\xa6\xb5\x4d\x50\x33\x29\x8c\x71\xc9\xf3\x24\xdd\xc1\x7d\x22\xcb\xc5\x49\xf0\x9d\x60\x7c\x28\xe3\x09\xf8\xd7\x89\x46\xa4\xd4\x62\x55\xa6\x78\xeb\x80\x7b\xb9\x6b\x00\xed\x48\x77\x17\x13\x63\x70\x14\xa4\xa3\x11\x7c\x18\xd5\xe9\x9e\x22\x7b\xa4\x11\xad\x1c\x17\x71\xf3\xd4\x81\x39\x80\xdc\x37\xea\xd1\xa6\xba\x3d\x72\x8f\x65\xee\x3a\x5d\x9f\x2c\xca\xd2\x6f\x87\xda\x1b\xa0\xdd\xa7\xb0\xf3\xe3\x4a\x68\x8d\x7e\x13\xb1\xdb\x9b\x12\x09\xcd\x21\x81\x57\xef\xb9\x2e\x35\x66\xcc\x99\xb1\x84\xf3\xcb\x3a\x3a\xaa\x8e\x6b\xe6\x5a\x97\x68\x25\xd9\xbc\xfc\xfe\xfb\x3f\x0a\xf6\x3d\xa4\x10\xd2\x7d\x04\xe3\x63\x40\x1e\x88\xa5\xc3\x96\xed\x3e\x20\x90\x59\xb0\x31\x22\xac\x0d\xa2\x6a\xf3\xf5\x01\xe4\xc9\xa3\x0d\xd3\xe5\x12\x11\x8c\x9c\x42\x2c\x5c\x3a\x12\xe2\xf7\x0a\xc0\x88\x78\xb2\xdb\xda\xff\x2f\x09\x28\xa0\xe4\xc1\x5c\x66\x0a\x79\xb2\x01\xfa\xb9\x14\x6c\xcb\xf3\x7b\x50\xb0\x44\xf7\x3c\xf0\x82\x7f\x97\x88\x69\x35\xbc\xf0\xb2\x52\x1f\x0a\xe8\x20\xff\x2d\xcb\x4b\x29\xad\x24\x0f\x33\x86\xa9\xf7\xf5\x4f\xe6\x72\x59\x86\x77\xcf\x4a\xb0\xc0\x4f\x2d\x08\x18\xc0\x66\xab\x80\x2b\x84\x2a\xc5\xb5\xaf\xd7\x94\x0d\x88\x1a\xcc\xe5\x13\x87\x0d\xf6\x39\xfc\x3e\x92\x0d\x66\x9d\x79\x41\xbe\x02\x34\x37\x54\x8d\x85\xe1\xc0\x69\x0f\x46\xce\x47\x90\x8e\x9d\xb0\x9f\x92\x07\x31\x61\x37\x19\xcf\xef\x27\xec\x2d\x86\xff\xfe\xac\x96\x6d\x3e\xbc\x06\xa1\xc4\xd1\x7e\xbc\xc3\xdc\x58\x7d\x44\x2b\xed\xd6\xff\xaf\x0d\x62\x00\xd6\x15\xfb\xfe\x9f\x89\xc8\xeb\xe0\xfa\xf8\x7b\xf7\x44\xec\x09\x53\xff\x0e\x5e\xfb\xbb\xbc\x15\xf7\xd3\x7c\xfc\x21\xfc\x5f\xbb\x7f\x59\x8b\x0b\x6c\x4f\xda\xe5\x5a\x51\x69\xdf\x56\x62\x73\x12\xd7\x0f\xe5\x66\x7e\xf3\xb0\xa5\x40\xe9\xe3\xb1\x4b\x6d\x1f\x01\xba\xa7\x57\x6d\x7f\x9d\xa5\x4a\x97\x79\xff\xe2\xbf\xae\xd6\xda\x7e\xbd\x85\xea\x13\x26\xdb\x76\x29\x80\xb5\x60\x28\xfc\x04\x1f\x5b\xfc\x87\x5a\x2e\x00\x6b\x75\xdc\x0a\x6f\x2b\xce\xea\x41\xb9\x88\x18\x55\xd5\x9f\x90\x37\x99\x00\xc6\x29\x6f\x8a\xfa\x80\x40\x6d\x86\x39\xd7\xc8\x5c\x5a\x02\x6e\xcc\x98\xcd\x73\x01\x4c\xc1\xb9\x00\x99\x33\x96\xf1\xdc\x01\x1e\xac\x45\x14\xdc\x7c\x3c\x28\x26\xcc\x72\x83\x64\x55\xba\x6f\x2d\x85\x90\xae\xb7\xc7\x98\x12\xc6\x3a\xa8\xf7\x3e\xa1\xdd\x1e\x85\xe5\x61\xef\x90\x64\x6c\xbc\x17\xdc\x05\xc1\xe4\x5e\x8b\x22\xd8\xcd\x6b\xa6\x45\x65\x69\x56\x22\x54\xdf\x14\xe2\xbf\x35\x06\x5d\x23\xe7\xaa\x38\x50\x06\xc5\xf4\x9e\xc2\x5f\xfe\x91\x17\x1b\xbc\xd0\x6e\x55\x21\x70\xcf\x44\x96\x20\x9c\x2f\xe8\x75\x5e\xa6\x6a\x09\xfa\x62\xe6\x97\xae\xbb\x61\x44\x4b\x7b\x50\xd7\x35\x07\x6c\xc8\xce\x60\x76\x13\xc8\xb4\xcd\x85\x06\xc2\x95\x66\x94\x6a\x28\x3e\x79\xdc\xa5\xbb\x59\x5d\xb3\xe9\xbf\x6d\x5c\xb6\x9b\x0c\xfd\x66\x59\x03\x58\xf5\xfc\x80\x0c\x9a\x86\xde\x01\x91\x15\x53\x18\x18\xf9\x4a\x6b\xed\xb5\x32\xd6\x73\x39\xc3\x5f\x82\x43\x80\x7b\xc9\x1d\x87\x07\x25\xc5\x52\xb7\xfe\x30\x7d\x95\xcd\x42\x04\x22\x79\x08\x26\xde\x97\x09\x97\x81\x09\x64\x35\xca\x22\xc9\x05\x93\x80\x42\x98\x4b\x5d\x2e\x4f\x3c\x31\x89\xb9\xc5\x3d\x00\x99\x8e\x16\x19\x87\xab\x0c\xf0\x15\x9d\xb4\x1c\xc3\xe8\x99\xf4\xd2\x19\x96\xc0\x8f\xa7\xb4\xf9\x43\xae\x24\x66\xc6\xbb\xb6\xbb\x72\xcc\x65\x0d\x6e\xd1\x16\xae\x84\x87\x5d\xdf\x7e\x01\xe2\x3e\x90\x81\x79\x8d\x28\x8a\xaf\x7d\x80\x87\xd1\xd0\xa1\x47\x37\xc4\xd3\xe6\xf2\xff\xb7\x67\x43\x37\xa8\x78\xc4\x4c\x37\x3d\x63\x8e\xa8\x4e\xb0\x73\xa5\x6e\xf6\x0a\x19\x18\x81\xdd\x95\x6a\x4c\xf9\xb6\x52\xb9\xc5\xb5\x84\x0a\x0f\x8a\xd2\x65\xe1\xd7\x87\x44\x07\x74\xdf\xf0\xb5\x1b\x21\xd8\xeb\x5c\xac\x5e\x7f\xca\xc5\x6a\x61\x47\x7a\x0a\x0d\x9a\x9a\x16\x35\x49\xbf\x07\x4e\x0e\x9d\x29\xd9\x4e\x7e\xb8\x87\x9c\xb4\xd6\x24\x2c\x27\x68\x53\xb2\x62\x5e\xdb\xd1\xb4\x07\x18\x20\x44\x5c\x67\x23\x6f\xd4\xec\x8b\x1f\x73\x5d\x48\xb0\x01\x50\xab\x0e\x4d\xc4\xbf\xff\xe3\xad\xd2\x67\x43\x8e\xb7\xdb\x2a\x64\xc6\x6e\xf6\x5c\xba\x03\xaf\x1b\x17\xfa\x65\xd1\xe9\x30\x80\x3a\xe3\x8f\x92\x78\x6c\x46\xb9\x9e\x86\x1d\x6b\x35\x00\x51\x70\xac\x35\x30\x70\x7e\x95\x49\xeb\xe9\x4b\x9c\xac\xde\x24\xd0\xde\xe6\x69\x1a\x6a\x2a\xf8\x48\xdb\x5c\xfa\xbc\x54\x63\xb5\xa6\xa9\x75\xe1\x55\xec\x0d\x62\x2d\x8a\x21\x21\x58\x4c\x2c\xe9\x0a\xd1\x15\x52\x3c\xec\x64\xc9\x41\xd8\xd5\x49\x2a\xed\x5b\xcd\x4f\x75\x89\xfc\xc6\xf2\xa2\xf7\x44\x9e\xf1\xb3\x8b\x7b\xd1\x80\x33\xef\xad\x6b\x7b\xa4\x23\xa0\x94\x80\xc5\x6c\x77\xd9\x88\xe7\xb9\x45\xf9\xd3\x57\x99\xb9\x2b\xad\x78\x54\x71\x73\x76\xd4\x73\x23\xa2\xfb\x4c\x25\x72\xf4\x5e\x54\xa1\xb8\x80\xc9\x5e\x30\x5f\x9a\xbb\x1d\x0e\x3a\x1c\x2b\xf6\x24\x36\x44\x03\xbc\xc2\x42\x43\x3d\x19\x1b\x67\x4e\x38\xb7\x7b\xda\x3d\xb5\xff\x42\xf8\xb3\xe1\x19\x7c\xb1\x2d\xf1\xa1\xda\xa9\xc2\x5b\x1c\x3b\x15\x26\x50\xde\xc8\xfe\x1a\xd8\xd9\x9c\x55\x28\x0c\x5b\xbb\x14\x5c\x90\xbf\x7b\x86\x7e\xf7\x0c\xfd\x0f\xf7\x0c\x7d\x49\xb7\x10\x60\x63\x9e\xd3\x27\xd4\x13\x20\x3f\x62\x39\xba\xaf\x1e\xab\x22\x8f\xd6\xf1\x24\xd0\x00\x0e\x32\x1d\x9b\x40\x7f\x4b\x84\x51\x80\x56\x7c\x74\x2f\x64\x67\x8c\xde\xd2\x17\x75\xca\x31\x3e\x2d\x82\xa5\x8d\x7d\x29\x78\xbb\x1f\xca\xe2\xa1\x4e\x44\x1a\xdc\x46\x08\x62\xd6\x09\xd8\x9e\xa6\xe1\x27\x00\x1a\x53\xb9\x23\xb6\xd6\x94\x85\x87\xc1\x48\xa4\x49\x42\xb0\x54\x8d\x0a\x7a\x28\x26\xce\x7e\x78\x91\x29\x95\xb6\x42\xe3\x9e\xb4\x03\x1b\x89\x32\x43\x3b\xef\x02\x8d\x51\x1d\x02\xc6\x6c\x2f\xfa\xa4\x0b\x9f\xa2\x81\xf9\x18\xa0\x85\x01\xb3\x29\x2e\x21\x97\xd2\x77\xc7\xd4\x67\x38\x71\xe7\x70\x21\x8c\xd8\x52\x44\x1c\x74\x20\x2d\x78\x2f\xe2\x2e\xfb\x24\x24\x45\x6a\xa4\x83\xe8\xe6\x77\x3a\xa2\x96\x50\xee\x22\x69\x13\xbe\x18\xbb\xb8\x6a\x16\x82\x85\x96\x63\xcd\x2d\x92\xc4\xd2\x2e\xee\xd3\x37\xb5\x1c\xd3\x8b\x28\xe5\x7a\xa0\x61\xdd\xba\xef\x5c\x50\x41\x67\x50\xce\xf0\x8d\xf4\x27\x48\xc7\xd9\x0e\x44\xee\xcc\xe5\xcc\xc9\x5e\x7a\xec\x97\x43\xee\x61\xb8\x14\x31\x8b\x8d\xa1\x41\x2e\x47\x7f\x73\x99\x30\x5d\x46\x1b\x60\xab\xac\xee\x53\xe1\xbe\xd5\x5c\xb1\x93\xb9\x34\x17\x22\x70\xb5\x6c\x39\xe4\xc5\x3f\x1a\x63\x55\x27\xff\x29\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\xd3\xb9\x47\xdb\x24\xe8\xe9\xb4\x28\x0f\x32\x99\x75\xd8\xb0\x10\xc7\x58\xdb\x69\xd3\x64\x25\xa2\x5d\xd4\xd0\x01\xea\xa7\x89\xf8\xfd\xda\xf6\x6d\x5d\xdb\x90\x65\x17\x73\x06\xc7\x74\x2d\x55\xf5\xda\xbf\x7e\x5c\xe7\x0a\x16\xd4\x44\x8f\xe8\xe7\x2f\x78\xed\x6c\xb1\x81\xc7\xd9\xf3\x83\xef\x41\xfd\xc7\x99\xbf\xd8\xfa\xc3\x3a\xa0\x40\x68\x98\x85\x61\x70\xb1\x08\xa7\x8e\x31\x68\x07\x87\xf5\xbb\x59\x66\xbe\x29\x70\xd2\x90\x8b\xab\xb1\xb8\x1d\x5c\xe9\xd2\x5a\xda\x52\xe0\x79\xd7\x63\x71\x07\xac\xee\xbc\x78\xa1\x5d\xaf\x57\x77\x40\x8b\xfd\x7f\x9f\xe8\xe2\x97\x9a\x66\xe8\x61\xa2\xa3\xcf\x66\x9a\xda\xaa\x62\x35\x87\x5a\x54\xd7\x55\x9b\x47\xad\xec\x9c\x83\xcb\x93\x55\x89\x33\xf5\x1e\x73\x0f\xfa\xe4\xfa\xeb\x13\x1e\x4d\x8f\x39\xcf\x32\x91\xdb\x83\xbc\x61\x6b\x81\xe4\x1a\x7c\x05\x34\x13\x37\x02\x85\x9b\x6b\xb7\x5c\xb3\x95\xd4\x8a\x86\xc7\xa0\xeb\xa6\xed\x23\x77\x59\xa6\x69\xe7\xc8\xed\x57\x72\xba\xbc\x7b\xff\x7e\xf1\xcb\xec\xfd\xdd\xb9\x6d\x7e\xab\x32\x52\xf0\x58\x67\x9f\xb8\x9a\x50\x9f\x78\xed\x45\xf3\x59\x61\xc5\xa3\x95\x6f\x35\x3a\xb9\xca\x34\xad\xaa\x66\xcd\xe5\x27\x2a\x07\x60\xda\xa8\x08\x6a\xfa\x8d\xf5\x76\x5c\xf5\xfb\xf0\xd8\x27\x53\xf8\x27\x7c\xf7\x84\xf9\x46\xbc\x06\x6d\x47\xd2\x8c\x6b\xef\x57\xca\x86\x39\x62\x39\x20\x18\xb8\x6b\x39\x3c\xb5\x2e\xe0\x61\xcb\xe3\x4e\x02\x23\xb9\x88\xad\x9c\xdf\x93\xac\x0e\xec\xbb\x4f\xd5\x38\xb5\xdb\xcb\x63\xbc\xd2\x40\xb9\x13\x54\x73\x03\x8d\x6a\x2f\x78\x36\x97\xe8\x03\x35\x75\x2a\x54\x77\x9d\xd8\x05\x99\xb7\x29\x97\xeb\x92\xaf\x8d\x75\x6b\x3f\x3e\x97\xdb\x64\xbd\x41\x1e\x90\x32\xf3\xf8\x64\xce\x24\xd0\xc5\xd4\xa6\x50\x0d\x9f\x9c\xc8\xb9\xa4\x36\xc9\xb5\x2f\x1e\xb1\xb2\x7f\xbe\x71\xcd\x21\x50\x3a\x16\x44\x82\x74\x72\x2e\x71\x70\x91\x9f\xc4\x46\x42\xe0\xc6\xc2\x8b\xfa\xd4\xe5\x10\xbb\x44\xd1\x76\xb3\xa7\xaf\x21\x26\x33\x97\x2e\x45\x17\x3d\x47\xd4\x86\x40\xb8\x04\xab\xb4\x7f\x3f\xb1\x83\x61\xd7\x04\xd5\xad\x7d\xd6\x1f\x7d\x06\x98\x05\xb7\x18\xa1\x3e\xdd\xdc\xc6\x06\x7a\x0b\x79\xb0\x71\x74\xf1\x36\x40\x5e\x76\x7b\x6d\x6c\xbb\xf0\x99\x4e\x68\xab\x2a\x97\xe9\x88\x2a\xe1\xf3\xbd\x95\xc2\x2d\xb9\xbf\x52\x03\xae\xc3\xd7\xb5\xa5\x65\xa6\x69\xdf\x67\x97\x4a\x75\x8c\xcb\x13\x06\x14\x2b\x95\xa2\x17\xf6\x75\x46\x19\x15\x87\xcc\x97\x01\xc9\x8a\xf5\x2e\xb2\xbb\x4f\x5f\x85\xd2\x44\x1f\x54\x1d\x6f\x3f\x0d\xae\x91\xb3\x10\xe8\xb0\x1b\xb5\xc3\xd2\x39\x57\xd9\x60\x3b\xb6\x49\x8a\x27\x59\x19\xe7\x04\xb7\x17\xb3\x78\x50\x63\xd9\xcc\xff\x89\x9b\x44\x13\x3f\x72\x13\xa8\x64\x54\xe6\xda\x6c\x97\xb4\xdf\xd1\xae\xad\x72\xc6\xe7\xd2\xa6\xaa\xd9\xed\x78\x66\xc1\xb9\xb9\xfb\x2b\x26\x80\x66\xc8\xa7\x0f\x16\x6b\xc1\x94\x14\x76\x37\x9c\x4b\xab\xfd\x3d\x61\x7c\xa9\xad\xa4\x36\x97\x3b\xa7\x73\x9d\x38\xfa\x22\x2e\x19\xa0\x9e\xf7\xef\x79\x35\x33\xa0\x72\xce\xff\xc1\xfc\xdf\x7f\xff\xe1\xff\x05\x00\x00\xff\xff\xf9\x47\xac\x28\x8a\xb5\x04\x00") func adminSwaggerJsonBytes() ([]byte, error) { return bindataRead( @@ -93,7 +93,7 @@ func adminSwaggerJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "admin.swagger.json", size: 308177, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} + info := bindataFileInfo{name: "admin.swagger.json", size: 308618, mode: os.FileMode(420), modTime: time.Unix(1562572800, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/flyteidl/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java b/flyteidl/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java index 4273fdce1e..b1301715d6 100644 --- a/flyteidl/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java +++ b/flyteidl/gen/pb-java/flyteidl/admin/NodeExecutionOuterClass.java @@ -5116,6 +5116,16 @@ public interface NodeExecutionMetaDataOrBuilder extends * bool is_dynamic = 4; */ boolean getIsDynamic(); + + /** + *
+     * Boolean flag indicating if the node is an array node. This is intended to uniquely identify
+     * array nodes from other nodes which can have is_parent_node as true.
+     * 
+ * + * bool is_array = 5; + */ + boolean getIsArray(); } /** *
@@ -5184,6 +5194,11 @@ private NodeExecutionMetaData(
               isDynamic_ = input.readBool();
               break;
             }
+            case 40: {
+
+              isArray_ = input.readBool();
+              break;
+            }
             default: {
               if (!parseUnknownField(
                   input, unknownFields, extensionRegistry, tag)) {
@@ -5333,6 +5348,20 @@ public boolean getIsDynamic() {
       return isDynamic_;
     }
 
+    public static final int IS_ARRAY_FIELD_NUMBER = 5;
+    private boolean isArray_;
+    /**
+     * 
+     * Boolean flag indicating if the node is an array node. This is intended to uniquely identify
+     * array nodes from other nodes which can have is_parent_node as true.
+     * 
+ * + * bool is_array = 5; + */ + public boolean getIsArray() { + return isArray_; + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -5359,6 +5388,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (isDynamic_ != false) { output.writeBool(4, isDynamic_); } + if (isArray_ != false) { + output.writeBool(5, isArray_); + } unknownFields.writeTo(output); } @@ -5382,6 +5414,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeBoolSize(4, isDynamic_); } + if (isArray_ != false) { + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(5, isArray_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -5405,6 +5441,8 @@ public boolean equals(final java.lang.Object obj) { .equals(other.getSpecNodeId())) return false; if (getIsDynamic() != other.getIsDynamic()) return false; + if (getIsArray() + != other.getIsArray()) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -5426,6 +5464,9 @@ public int hashCode() { hash = (37 * hash) + IS_DYNAMIC_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getIsDynamic()); + hash = (37 * hash) + IS_ARRAY_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getIsArray()); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -5571,6 +5612,8 @@ public Builder clear() { isDynamic_ = false; + isArray_ = false; + return this; } @@ -5601,6 +5644,7 @@ public flyteidl.admin.NodeExecutionOuterClass.NodeExecutionMetaData buildPartial result.isParentNode_ = isParentNode_; result.specNodeId_ = specNodeId_; result.isDynamic_ = isDynamic_; + result.isArray_ = isArray_; onBuilt(); return result; } @@ -5663,6 +5707,9 @@ public Builder mergeFrom(flyteidl.admin.NodeExecutionOuterClass.NodeExecutionMet if (other.getIsDynamic() != false) { setIsDynamic(other.getIsDynamic()); } + if (other.getIsArray() != false) { + setIsArray(other.getIsArray()); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -5964,6 +6011,47 @@ public Builder clearIsDynamic() { onChanged(); return this; } + + private boolean isArray_ ; + /** + *
+       * Boolean flag indicating if the node is an array node. This is intended to uniquely identify
+       * array nodes from other nodes which can have is_parent_node as true.
+       * 
+ * + * bool is_array = 5; + */ + public boolean getIsArray() { + return isArray_; + } + /** + *
+       * Boolean flag indicating if the node is an array node. This is intended to uniquely identify
+       * array nodes from other nodes which can have is_parent_node as true.
+       * 
+ * + * bool is_array = 5; + */ + public Builder setIsArray(boolean value) { + + isArray_ = value; + onChanged(); + return this; + } + /** + *
+       * Boolean flag indicating if the node is an array node. This is intended to uniquely identify
+       * array nodes from other nodes which can have is_parent_node as true.
+       * 
+ * + * bool is_array = 5; + */ + public Builder clearIsArray() { + + isArray_ = false; + onChanged(); + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -15715,50 +15803,51 @@ public flyteidl.admin.NodeExecutionOuterClass.NodeExecutionGetDataResponse getDe "ionIdentifier\022\021\n\tinput_uri\030\002 \001(\t\0225\n\007clos" + "ure\030\003 \001(\0132$.flyteidl.admin.NodeExecution" + "Closure\0227\n\010metadata\030\004 \001(\0132%.flyteidl.adm" + - "in.NodeExecutionMetaData\"n\n\025NodeExecutio" + - "nMetaData\022\023\n\013retry_group\030\001 \001(\t\022\026\n\016is_par" + - "ent_node\030\002 \001(\010\022\024\n\014spec_node_id\030\003 \001(\t\022\022\n\n" + - "is_dynamic\030\004 \001(\010\"Z\n\021NodeExecutionList\0226\n" + - "\017node_executions\030\001 \003(\0132\035.flyteidl.admin." + - "NodeExecution\022\r\n\005token\030\002 \001(\t\"\342\004\n\024NodeExe" + - "cutionClosure\022\030\n\noutput_uri\030\001 \001(\tB\002\030\001H\000\022" + - ".\n\005error\030\002 \001(\0132\035.flyteidl.core.Execution" + - "ErrorH\000\0224\n\013output_data\030\n \001(\0132\031.flyteidl." + - "core.LiteralMapB\002\030\001H\000\0221\n\005phase\030\003 \001(\0162\".f" + - "lyteidl.core.NodeExecution.Phase\022.\n\nstar" + - "ted_at\030\004 \001(\0132\032.google.protobuf.Timestamp" + - "\022+\n\010duration\030\005 \001(\0132\031.google.protobuf.Dur" + - "ation\022.\n\ncreated_at\030\006 \001(\0132\032.google.proto" + - "buf.Timestamp\022.\n\nupdated_at\030\007 \001(\0132\032.goog" + - "le.protobuf.Timestamp\022F\n\026workflow_node_m" + - "etadata\030\010 \001(\0132$.flyteidl.admin.WorkflowN" + - "odeMetadataH\001\022>\n\022task_node_metadata\030\t \001(" + - "\0132 .flyteidl.admin.TaskNodeMetadataH\001\022\020\n" + - "\010deck_uri\030\013 \001(\t\022\034\n\024dynamic_job_spec_uri\030" + - "\014 \001(\tB\017\n\routput_resultB\021\n\017target_metadat" + - "a\"W\n\024WorkflowNodeMetadata\022?\n\013executionId" + - "\030\001 \001(\0132*.flyteidl.core.WorkflowExecution" + - "Identifier\"\230\001\n\020TaskNodeMetadata\0227\n\014cache" + - "_status\030\001 \001(\0162!.flyteidl.core.CatalogCac" + - "heStatus\0223\n\013catalog_key\030\002 \001(\0132\036.flyteidl" + - ".core.CatalogMetadata\022\026\n\016checkpoint_uri\030" + - "\004 \001(\t\"\245\001\n\033DynamicWorkflowNodeMetadata\022%\n" + - "\002id\030\001 \001(\0132\031.flyteidl.core.Identifier\022A\n\021" + - "compiled_workflow\030\002 \001(\0132&.flyteidl.core." + - "CompiledWorkflowClosure\022\034\n\024dynamic_job_s" + - "pec_uri\030\003 \001(\t\"Q\n\033NodeExecutionGetDataReq" + - "uest\0222\n\002id\030\001 \001(\0132&.flyteidl.core.NodeExe" + - "cutionIdentifier\"\320\002\n\034NodeExecutionGetDat" + - "aResponse\022+\n\006inputs\030\001 \001(\0132\027.flyteidl.adm" + - "in.UrlBlobB\002\030\001\022,\n\007outputs\030\002 \001(\0132\027.flytei" + - "dl.admin.UrlBlobB\002\030\001\022.\n\013full_inputs\030\003 \001(" + - "\0132\031.flyteidl.core.LiteralMap\022/\n\014full_out" + - "puts\030\004 \001(\0132\031.flyteidl.core.LiteralMap\022E\n" + - "\020dynamic_workflow\030\020 \001(\0132+.flyteidl.admin" + - ".DynamicWorkflowNodeMetadata\022-\n\nflyte_ur" + - "ls\030\021 \001(\0132\031.flyteidl.admin.FlyteURLsB=Z;g" + - "ithub.com/flyteorg/flyte/flyteidl/gen/pb" + - "-go/flyteidl/adminb\006proto3" + "in.NodeExecutionMetaData\"\200\001\n\025NodeExecuti" + + "onMetaData\022\023\n\013retry_group\030\001 \001(\t\022\026\n\016is_pa" + + "rent_node\030\002 \001(\010\022\024\n\014spec_node_id\030\003 \001(\t\022\022\n" + + "\nis_dynamic\030\004 \001(\010\022\020\n\010is_array\030\005 \001(\010\"Z\n\021N" + + "odeExecutionList\0226\n\017node_executions\030\001 \003(" + + "\0132\035.flyteidl.admin.NodeExecution\022\r\n\005toke" + + "n\030\002 \001(\t\"\342\004\n\024NodeExecutionClosure\022\030\n\noutp" + + "ut_uri\030\001 \001(\tB\002\030\001H\000\022.\n\005error\030\002 \001(\0132\035.flyt" + + "eidl.core.ExecutionErrorH\000\0224\n\013output_dat" + + "a\030\n \001(\0132\031.flyteidl.core.LiteralMapB\002\030\001H\000" + + "\0221\n\005phase\030\003 \001(\0162\".flyteidl.core.NodeExec" + + "ution.Phase\022.\n\nstarted_at\030\004 \001(\0132\032.google" + + ".protobuf.Timestamp\022+\n\010duration\030\005 \001(\0132\031." + + "google.protobuf.Duration\022.\n\ncreated_at\030\006" + + " \001(\0132\032.google.protobuf.Timestamp\022.\n\nupda" + + "ted_at\030\007 \001(\0132\032.google.protobuf.Timestamp" + + "\022F\n\026workflow_node_metadata\030\010 \001(\0132$.flyte" + + "idl.admin.WorkflowNodeMetadataH\001\022>\n\022task" + + "_node_metadata\030\t \001(\0132 .flyteidl.admin.Ta" + + "skNodeMetadataH\001\022\020\n\010deck_uri\030\013 \001(\t\022\034\n\024dy" + + "namic_job_spec_uri\030\014 \001(\tB\017\n\routput_resul" + + "tB\021\n\017target_metadata\"W\n\024WorkflowNodeMeta" + + "data\022?\n\013executionId\030\001 \001(\0132*.flyteidl.cor" + + "e.WorkflowExecutionIdentifier\"\230\001\n\020TaskNo" + + "deMetadata\0227\n\014cache_status\030\001 \001(\0162!.flyte" + + "idl.core.CatalogCacheStatus\0223\n\013catalog_k" + + "ey\030\002 \001(\0132\036.flyteidl.core.CatalogMetadata" + + "\022\026\n\016checkpoint_uri\030\004 \001(\t\"\245\001\n\033DynamicWork" + + "flowNodeMetadata\022%\n\002id\030\001 \001(\0132\031.flyteidl." + + "core.Identifier\022A\n\021compiled_workflow\030\002 \001" + + "(\0132&.flyteidl.core.CompiledWorkflowClosu" + + "re\022\034\n\024dynamic_job_spec_uri\030\003 \001(\t\"Q\n\033Node" + + "ExecutionGetDataRequest\0222\n\002id\030\001 \001(\0132&.fl" + + "yteidl.core.NodeExecutionIdentifier\"\320\002\n\034" + + "NodeExecutionGetDataResponse\022+\n\006inputs\030\001" + + " \001(\0132\027.flyteidl.admin.UrlBlobB\002\030\001\022,\n\007out" + + "puts\030\002 \001(\0132\027.flyteidl.admin.UrlBlobB\002\030\001\022" + + ".\n\013full_inputs\030\003 \001(\0132\031.flyteidl.core.Lit" + + "eralMap\022/\n\014full_outputs\030\004 \001(\0132\031.flyteidl" + + ".core.LiteralMap\022E\n\020dynamic_workflow\030\020 \001" + + "(\0132+.flyteidl.admin.DynamicWorkflowNodeM" + + "etadata\022-\n\nflyte_urls\030\021 \001(\0132\031.flyteidl.a" + + "dmin.FlyteURLsB=Z;github.com/flyteorg/fl" + + "yte/flyteidl/gen/pb-go/flyteidl/adminb\006p" + + "roto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -15809,7 +15898,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_admin_NodeExecutionMetaData_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_admin_NodeExecutionMetaData_descriptor, - new java.lang.String[] { "RetryGroup", "IsParentNode", "SpecNodeId", "IsDynamic", }); + new java.lang.String[] { "RetryGroup", "IsParentNode", "SpecNodeId", "IsDynamic", "IsArray", }); internal_static_flyteidl_admin_NodeExecutionList_descriptor = getDescriptor().getMessageTypes().get(5); internal_static_flyteidl_admin_NodeExecutionList_fieldAccessorTable = new diff --git a/flyteidl/gen/pb-java/flyteidl/event/Event.java b/flyteidl/gen/pb-java/flyteidl/event/Event.java index 510997824f..142dd8bc93 100644 --- a/flyteidl/gen/pb-java/flyteidl/event/Event.java +++ b/flyteidl/gen/pb-java/flyteidl/event/Event.java @@ -2445,6 +2445,15 @@ public interface NodeExecutionEventOrBuilder extends */ com.google.protobuf.TimestampOrBuilder getReportedAtOrBuilder(); + /** + *
+     * Indicates if this node is an ArrayNode.
+     * 
+ * + * bool is_array = 22; + */ + boolean getIsArray(); + public flyteidl.event.Event.NodeExecutionEvent.InputValueCase getInputValueCase(); public flyteidl.event.Event.NodeExecutionEvent.OutputResultCase getOutputResultCase(); @@ -2694,6 +2703,11 @@ private NodeExecutionEvent( break; } + case 176: { + + isArray_ = input.readBool(); + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -3547,6 +3561,19 @@ public com.google.protobuf.TimestampOrBuilder getReportedAtOrBuilder() { return getReportedAt(); } + public static final int IS_ARRAY_FIELD_NUMBER = 22; + private boolean isArray_; + /** + *
+     * Indicates if this node is an ArrayNode.
+     * 
+ * + * bool is_array = 22; + */ + public boolean getIsArray() { + return isArray_; + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -3624,6 +3651,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (reportedAt_ != null) { output.writeMessage(21, getReportedAt()); } + if (isArray_ != false) { + output.writeBool(22, isArray_); + } unknownFields.writeTo(output); } @@ -3710,6 +3740,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(21, getReportedAt()); } + if (isArray_ != false) { + size += com.google.protobuf.CodedOutputStream + .computeBoolSize(22, isArray_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -3767,6 +3801,8 @@ public boolean equals(final java.lang.Object obj) { if (!getReportedAt() .equals(other.getReportedAt())) return false; } + if (getIsArray() + != other.getIsArray()) return false; if (!getInputValueCase().equals(other.getInputValueCase())) return false; switch (inputValueCase_) { case 5: @@ -3861,6 +3897,9 @@ public int hashCode() { hash = (37 * hash) + REPORTED_AT_FIELD_NUMBER; hash = (53 * hash) + getReportedAt().hashCode(); } + hash = (37 * hash) + IS_ARRAY_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( + getIsArray()); switch (inputValueCase_) { case 5: hash = (37 * hash) + INPUT_URI_FIELD_NUMBER; @@ -4082,6 +4121,8 @@ public Builder clear() { reportedAt_ = null; reportedAtBuilder_ = null; } + isArray_ = false; + inputValueCase_ = 0; inputValue_ = null; outputResultCase_ = 0; @@ -4189,6 +4230,7 @@ public flyteidl.event.Event.NodeExecutionEvent buildPartial() { } else { result.reportedAt_ = reportedAtBuilder_.build(); } + result.isArray_ = isArray_; result.inputValueCase_ = inputValueCase_; result.outputResultCase_ = outputResultCase_; result.targetMetadataCase_ = targetMetadataCase_; @@ -4287,6 +4329,9 @@ public Builder mergeFrom(flyteidl.event.Event.NodeExecutionEvent other) { if (other.hasReportedAt()) { mergeReportedAt(other.getReportedAt()); } + if (other.getIsArray() != false) { + setIsArray(other.getIsArray()); + } switch (other.getInputValueCase()) { case INPUT_URI: { inputValueCase_ = 5; @@ -6783,6 +6828,44 @@ public com.google.protobuf.TimestampOrBuilder getReportedAtOrBuilder() { } return reportedAtBuilder_; } + + private boolean isArray_ ; + /** + *
+       * Indicates if this node is an ArrayNode.
+       * 
+ * + * bool is_array = 22; + */ + public boolean getIsArray() { + return isArray_; + } + /** + *
+       * Indicates if this node is an ArrayNode.
+       * 
+ * + * bool is_array = 22; + */ + public Builder setIsArray(boolean value) { + + isArray_ = value; + onChanged(); + return this; + } + /** + *
+       * Indicates if this node is an ArrayNode.
+       * 
+ * + * bool is_array = 22; + */ + public Builder clearIsArray() { + + isArray_ = false; + onChanged(); + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { @@ -21619,7 +21702,7 @@ public flyteidl.event.Event.TaskExecutionMetadata getDefaultInstanceForType() { "\noutput_uri\030\005 \001(\tH\000\022.\n\005error\030\006 \001(\0132\035.fly" + "teidl.core.ExecutionErrorH\000\0220\n\013output_da" + "ta\030\007 \001(\0132\031.flyteidl.core.LiteralMapH\000B\017\n" + - "\routput_result\"\217\007\n\022NodeExecutionEvent\0222\n" + + "\routput_result\"\241\007\n\022NodeExecutionEvent\0222\n" + "\002id\030\001 \001(\0132&.flyteidl.core.NodeExecutionI" + "dentifier\022\023\n\013producer_id\030\002 \001(\t\0221\n\005phase\030" + "\003 \001(\0162\".flyteidl.core.NodeExecution.Phas" + @@ -21640,66 +21723,66 @@ public flyteidl.event.Event.TaskExecutionMetadata getDefaultInstanceForType() { "_id\030\014 \001(\t\022\021\n\tnode_name\030\r \001(\t\022\025\n\revent_ve" + "rsion\030\020 \001(\005\022\021\n\tis_parent\030\021 \001(\010\022\022\n\nis_dyn" + "amic\030\022 \001(\010\022\020\n\010deck_uri\030\023 \001(\t\022/\n\013reported" + - "_at\030\025 \001(\0132\032.google.protobuf.TimestampB\r\n" + - "\013input_valueB\017\n\routput_resultB\021\n\017target_" + - "metadata\"X\n\024WorkflowNodeMetadata\022@\n\014exec" + - "ution_id\030\001 \001(\0132*.flyteidl.core.WorkflowE" + - "xecutionIdentifier\"\245\002\n\020TaskNodeMetadata\022" + - "7\n\014cache_status\030\001 \001(\0162!.flyteidl.core.Ca" + - "talogCacheStatus\0223\n\013catalog_key\030\002 \001(\0132\036." + - "flyteidl.core.CatalogMetadata\022D\n\022reserva" + - "tion_status\030\003 \001(\0162(.flyteidl.core.Catalo" + - "gReservation.Status\022\026\n\016checkpoint_uri\030\004 " + - "\001(\t\022E\n\020dynamic_workflow\030\020 \001(\0132+.flyteidl" + - ".event.DynamicWorkflowNodeMetadata\"\245\001\n\033D" + - "ynamicWorkflowNodeMetadata\022%\n\002id\030\001 \001(\0132\031" + - ".flyteidl.core.Identifier\022A\n\021compiled_wo" + - "rkflow\030\002 \001(\0132&.flyteidl.core.CompiledWor" + - "kflowClosure\022\034\n\024dynamic_job_spec_uri\030\003 \001" + - "(\t\"Q\n\033ParentTaskExecutionMetadata\0222\n\002id\030" + - "\001 \001(\0132&.flyteidl.core.TaskExecutionIdent" + - "ifier\".\n\033ParentNodeExecutionMetadata\022\017\n\007" + - "node_id\030\001 \001(\t\"N\n\013EventReason\022\016\n\006reason\030\001" + - " \001(\t\022/\n\013occurred_at\030\002 \001(\0132\032.google.proto" + - "buf.Timestamp\"\271\006\n\022TaskExecutionEvent\022*\n\007" + - "task_id\030\001 \001(\0132\031.flyteidl.core.Identifier" + - "\022H\n\030parent_node_execution_id\030\002 \001(\0132&.fly" + - "teidl.core.NodeExecutionIdentifier\022\025\n\rre" + - "try_attempt\030\003 \001(\r\0221\n\005phase\030\004 \001(\0162\".flyte" + - "idl.core.TaskExecution.Phase\022\023\n\013producer" + - "_id\030\005 \001(\t\022$\n\004logs\030\006 \003(\0132\026.flyteidl.core." + - "TaskLog\022/\n\013occurred_at\030\007 \001(\0132\032.google.pr" + - "otobuf.Timestamp\022\023\n\tinput_uri\030\010 \001(\tH\000\022/\n" + - "\ninput_data\030\023 \001(\0132\031.flyteidl.core.Litera" + - "lMapH\000\022\024\n\noutput_uri\030\t \001(\tH\001\022.\n\005error\030\n " + - "\001(\0132\035.flyteidl.core.ExecutionErrorH\001\0220\n\013" + - "output_data\030\021 \001(\0132\031.flyteidl.core.Litera" + - "lMapH\001\022,\n\013custom_info\030\013 \001(\0132\027.google.pro" + - "tobuf.Struct\022\025\n\rphase_version\030\014 \001(\r\022\022\n\006r" + - "eason\030\r \001(\tB\002\030\001\022,\n\007reasons\030\025 \003(\0132\033.flyte" + - "idl.event.EventReason\022\021\n\ttask_type\030\016 \001(\t" + - "\0227\n\010metadata\030\020 \001(\0132%.flyteidl.event.Task" + - "ExecutionMetadata\022\025\n\revent_version\030\022 \001(\005" + - "\022/\n\013reported_at\030\024 \001(\0132\032.google.protobuf." + - "TimestampB\r\n\013input_valueB\017\n\routput_resul" + - "t\"\343\001\n\024ExternalResourceInfo\022\023\n\013external_i" + - "d\030\001 \001(\t\022\r\n\005index\030\002 \001(\r\022\025\n\rretry_attempt\030" + - "\003 \001(\r\0221\n\005phase\030\004 \001(\0162\".flyteidl.core.Tas" + - "kExecution.Phase\0227\n\014cache_status\030\005 \001(\0162!" + - ".flyteidl.core.CatalogCacheStatus\022$\n\004log" + - "s\030\006 \003(\0132\026.flyteidl.core.TaskLog\"?\n\020Resou" + - "rcePoolInfo\022\030\n\020allocation_token\030\001 \001(\t\022\021\n" + - "\tnamespace\030\002 \001(\t\"\310\002\n\025TaskExecutionMetada" + - "ta\022\026\n\016generated_name\030\001 \001(\t\022@\n\022external_r" + - "esources\030\002 \003(\0132$.flyteidl.event.External" + - "ResourceInfo\022<\n\022resource_pool_info\030\003 \003(\013" + - "2 .flyteidl.event.ResourcePoolInfo\022\031\n\021pl" + - "ugin_identifier\030\004 \001(\t\022K\n\016instance_class\030" + - "\020 \001(\01623.flyteidl.event.TaskExecutionMeta" + - "data.InstanceClass\"/\n\rInstanceClass\022\013\n\007D" + - "EFAULT\020\000\022\021\n\rINTERRUPTIBLE\020\001B=Z;github.co" + - "m/flyteorg/flyte/flyteidl/gen/pb-go/flyt" + - "eidl/eventb\006proto3" + "_at\030\025 \001(\0132\032.google.protobuf.Timestamp\022\020\n" + + "\010is_array\030\026 \001(\010B\r\n\013input_valueB\017\n\routput" + + "_resultB\021\n\017target_metadata\"X\n\024WorkflowNo" + + "deMetadata\022@\n\014execution_id\030\001 \001(\0132*.flyte" + + "idl.core.WorkflowExecutionIdentifier\"\245\002\n" + + "\020TaskNodeMetadata\0227\n\014cache_status\030\001 \001(\0162" + + "!.flyteidl.core.CatalogCacheStatus\0223\n\013ca" + + "talog_key\030\002 \001(\0132\036.flyteidl.core.CatalogM" + + "etadata\022D\n\022reservation_status\030\003 \001(\0162(.fl" + + "yteidl.core.CatalogReservation.Status\022\026\n" + + "\016checkpoint_uri\030\004 \001(\t\022E\n\020dynamic_workflo" + + "w\030\020 \001(\0132+.flyteidl.event.DynamicWorkflow" + + "NodeMetadata\"\245\001\n\033DynamicWorkflowNodeMeta" + + "data\022%\n\002id\030\001 \001(\0132\031.flyteidl.core.Identif" + + "ier\022A\n\021compiled_workflow\030\002 \001(\0132&.flyteid" + + "l.core.CompiledWorkflowClosure\022\034\n\024dynami" + + "c_job_spec_uri\030\003 \001(\t\"Q\n\033ParentTaskExecut" + + "ionMetadata\0222\n\002id\030\001 \001(\0132&.flyteidl.core." + + "TaskExecutionIdentifier\".\n\033ParentNodeExe" + + "cutionMetadata\022\017\n\007node_id\030\001 \001(\t\"N\n\013Event" + + "Reason\022\016\n\006reason\030\001 \001(\t\022/\n\013occurred_at\030\002 " + + "\001(\0132\032.google.protobuf.Timestamp\"\271\006\n\022Task" + + "ExecutionEvent\022*\n\007task_id\030\001 \001(\0132\031.flytei" + + "dl.core.Identifier\022H\n\030parent_node_execut" + + "ion_id\030\002 \001(\0132&.flyteidl.core.NodeExecuti" + + "onIdentifier\022\025\n\rretry_attempt\030\003 \001(\r\0221\n\005p" + + "hase\030\004 \001(\0162\".flyteidl.core.TaskExecution" + + ".Phase\022\023\n\013producer_id\030\005 \001(\t\022$\n\004logs\030\006 \003(" + + "\0132\026.flyteidl.core.TaskLog\022/\n\013occurred_at" + + "\030\007 \001(\0132\032.google.protobuf.Timestamp\022\023\n\tin" + + "put_uri\030\010 \001(\tH\000\022/\n\ninput_data\030\023 \001(\0132\031.fl" + + "yteidl.core.LiteralMapH\000\022\024\n\noutput_uri\030\t" + + " \001(\tH\001\022.\n\005error\030\n \001(\0132\035.flyteidl.core.Ex" + + "ecutionErrorH\001\0220\n\013output_data\030\021 \001(\0132\031.fl" + + "yteidl.core.LiteralMapH\001\022,\n\013custom_info\030" + + "\013 \001(\0132\027.google.protobuf.Struct\022\025\n\rphase_" + + "version\030\014 \001(\r\022\022\n\006reason\030\r \001(\tB\002\030\001\022,\n\007rea" + + "sons\030\025 \003(\0132\033.flyteidl.event.EventReason\022" + + "\021\n\ttask_type\030\016 \001(\t\0227\n\010metadata\030\020 \001(\0132%.f" + + "lyteidl.event.TaskExecutionMetadata\022\025\n\re" + + "vent_version\030\022 \001(\005\022/\n\013reported_at\030\024 \001(\0132" + + "\032.google.protobuf.TimestampB\r\n\013input_val" + + "ueB\017\n\routput_result\"\343\001\n\024ExternalResource" + + "Info\022\023\n\013external_id\030\001 \001(\t\022\r\n\005index\030\002 \001(\r" + + "\022\025\n\rretry_attempt\030\003 \001(\r\0221\n\005phase\030\004 \001(\0162\"" + + ".flyteidl.core.TaskExecution.Phase\0227\n\014ca" + + "che_status\030\005 \001(\0162!.flyteidl.core.Catalog" + + "CacheStatus\022$\n\004logs\030\006 \003(\0132\026.flyteidl.cor" + + "e.TaskLog\"?\n\020ResourcePoolInfo\022\030\n\020allocat" + + "ion_token\030\001 \001(\t\022\021\n\tnamespace\030\002 \001(\t\"\310\002\n\025T" + + "askExecutionMetadata\022\026\n\016generated_name\030\001" + + " \001(\t\022@\n\022external_resources\030\002 \003(\0132$.flyte" + + "idl.event.ExternalResourceInfo\022<\n\022resour" + + "ce_pool_info\030\003 \003(\0132 .flyteidl.event.Reso" + + "urcePoolInfo\022\031\n\021plugin_identifier\030\004 \001(\t\022" + + "K\n\016instance_class\030\020 \001(\01623.flyteidl.event" + + ".TaskExecutionMetadata.InstanceClass\"/\n\r" + + "InstanceClass\022\013\n\007DEFAULT\020\000\022\021\n\rINTERRUPTI" + + "BLE\020\001B=Z;github.com/flyteorg/flyte/flyte" + + "idl/gen/pb-go/flyteidl/eventb\006proto3" }; com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner = new com.google.protobuf.Descriptors.FileDescriptor. InternalDescriptorAssigner() { @@ -21731,7 +21814,7 @@ public com.google.protobuf.ExtensionRegistry assignDescriptors( internal_static_flyteidl_event_NodeExecutionEvent_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_flyteidl_event_NodeExecutionEvent_descriptor, - new java.lang.String[] { "Id", "ProducerId", "Phase", "OccurredAt", "InputUri", "InputData", "OutputUri", "Error", "OutputData", "WorkflowNodeMetadata", "TaskNodeMetadata", "ParentTaskMetadata", "ParentNodeMetadata", "RetryGroup", "SpecNodeId", "NodeName", "EventVersion", "IsParent", "IsDynamic", "DeckUri", "ReportedAt", "InputValue", "OutputResult", "TargetMetadata", }); + new java.lang.String[] { "Id", "ProducerId", "Phase", "OccurredAt", "InputUri", "InputData", "OutputUri", "Error", "OutputData", "WorkflowNodeMetadata", "TaskNodeMetadata", "ParentTaskMetadata", "ParentNodeMetadata", "RetryGroup", "SpecNodeId", "NodeName", "EventVersion", "IsParent", "IsDynamic", "DeckUri", "ReportedAt", "IsArray", "InputValue", "OutputResult", "TargetMetadata", }); internal_static_flyteidl_event_WorkflowNodeMetadata_descriptor = getDescriptor().getMessageTypes().get(2); internal_static_flyteidl_event_WorkflowNodeMetadata_fieldAccessorTable = new diff --git a/flyteidl/gen/pb-js/flyteidl.d.ts b/flyteidl/gen/pb-js/flyteidl.d.ts index 3e2e0f6793..aa22fa7a18 100644 --- a/flyteidl/gen/pb-js/flyteidl.d.ts +++ b/flyteidl/gen/pb-js/flyteidl.d.ts @@ -6973,6 +6973,9 @@ export namespace flyteidl { /** NodeExecutionEvent reportedAt */ reportedAt?: (google.protobuf.ITimestamp|null); + + /** NodeExecutionEvent isArray */ + isArray?: (boolean|null); } /** Represents a NodeExecutionEvent. */ @@ -7047,6 +7050,9 @@ export namespace flyteidl { /** NodeExecutionEvent reportedAt. */ public reportedAt?: (google.protobuf.ITimestamp|null); + /** NodeExecutionEvent isArray. */ + public isArray: boolean; + /** NodeExecutionEvent inputValue. */ public inputValue?: ("inputUri"|"inputData"); @@ -14306,6 +14312,9 @@ export namespace flyteidl { /** NodeExecutionMetaData isDynamic */ isDynamic?: (boolean|null); + + /** NodeExecutionMetaData isArray */ + isArray?: (boolean|null); } /** Represents a NodeExecutionMetaData. */ @@ -14329,6 +14338,9 @@ export namespace flyteidl { /** NodeExecutionMetaData isDynamic. */ public isDynamic: boolean; + /** NodeExecutionMetaData isArray. */ + public isArray: boolean; + /** * Creates a new NodeExecutionMetaData instance using the specified properties. * @param [properties] Properties to set diff --git a/flyteidl/gen/pb-js/flyteidl.js b/flyteidl/gen/pb-js/flyteidl.js index 3bfedddf6c..b7cd35b681 100644 --- a/flyteidl/gen/pb-js/flyteidl.js +++ b/flyteidl/gen/pb-js/flyteidl.js @@ -16720,6 +16720,7 @@ * @property {boolean|null} [isDynamic] NodeExecutionEvent isDynamic * @property {string|null} [deckUri] NodeExecutionEvent deckUri * @property {google.protobuf.ITimestamp|null} [reportedAt] NodeExecutionEvent reportedAt + * @property {boolean|null} [isArray] NodeExecutionEvent isArray */ /** @@ -16905,6 +16906,14 @@ */ NodeExecutionEvent.prototype.reportedAt = null; + /** + * NodeExecutionEvent isArray. + * @member {boolean} isArray + * @memberof flyteidl.event.NodeExecutionEvent + * @instance + */ + NodeExecutionEvent.prototype.isArray = false; + // OneOf field names bound to virtual getters and setters var $oneOfFields; @@ -17007,6 +17016,8 @@ $root.flyteidl.core.LiteralMap.encode(message.inputData, writer.uint32(/* id 20, wireType 2 =*/162).fork()).ldelim(); if (message.reportedAt != null && message.hasOwnProperty("reportedAt")) $root.google.protobuf.Timestamp.encode(message.reportedAt, writer.uint32(/* id 21, wireType 2 =*/170).fork()).ldelim(); + if (message.isArray != null && message.hasOwnProperty("isArray")) + writer.uint32(/* id 22, wireType 0 =*/176).bool(message.isArray); return writer; }; @@ -17091,6 +17102,9 @@ case 21: message.reportedAt = $root.google.protobuf.Timestamp.decode(reader, reader.uint32()); break; + case 22: + message.isArray = reader.bool(); + break; default: reader.skipType(tag & 7); break; @@ -17235,6 +17249,9 @@ if (error) return "reportedAt." + error; } + if (message.isArray != null && message.hasOwnProperty("isArray")) + if (typeof message.isArray !== "boolean") + return "isArray: boolean expected"; return null; }; @@ -34424,6 +34441,7 @@ * @property {boolean|null} [isParentNode] NodeExecutionMetaData isParentNode * @property {string|null} [specNodeId] NodeExecutionMetaData specNodeId * @property {boolean|null} [isDynamic] NodeExecutionMetaData isDynamic + * @property {boolean|null} [isArray] NodeExecutionMetaData isArray */ /** @@ -34473,6 +34491,14 @@ */ NodeExecutionMetaData.prototype.isDynamic = false; + /** + * NodeExecutionMetaData isArray. + * @member {boolean} isArray + * @memberof flyteidl.admin.NodeExecutionMetaData + * @instance + */ + NodeExecutionMetaData.prototype.isArray = false; + /** * Creates a new NodeExecutionMetaData instance using the specified properties. * @function create @@ -34505,6 +34531,8 @@ writer.uint32(/* id 3, wireType 2 =*/26).string(message.specNodeId); if (message.isDynamic != null && message.hasOwnProperty("isDynamic")) writer.uint32(/* id 4, wireType 0 =*/32).bool(message.isDynamic); + if (message.isArray != null && message.hasOwnProperty("isArray")) + writer.uint32(/* id 5, wireType 0 =*/40).bool(message.isArray); return writer; }; @@ -34538,6 +34566,9 @@ case 4: message.isDynamic = reader.bool(); break; + case 5: + message.isArray = reader.bool(); + break; default: reader.skipType(tag & 7); break; @@ -34569,6 +34600,9 @@ if (message.isDynamic != null && message.hasOwnProperty("isDynamic")) if (typeof message.isDynamic !== "boolean") return "isDynamic: boolean expected"; + if (message.isArray != null && message.hasOwnProperty("isArray")) + if (typeof message.isArray !== "boolean") + return "isArray: boolean expected"; return null; }; diff --git a/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.py b/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.py index 35f8b4dc37..17e5cbd652 100644 --- a/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.py +++ b/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.py @@ -21,7 +21,7 @@ from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#flyteidl/admin/node_execution.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\"Q\n\x17NodeExecutionGetRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\"\x99\x02\n\x18NodeExecutionListRequest\x12^\n\x15workflow_execution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x13workflowExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\x12(\n\x10unique_parent_id\x18\x06 \x01(\tR\x0euniqueParentId\"\xea\x01\n\x1fNodeExecutionForTaskListRequest\x12R\n\x11task_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x0ftaskExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\"\xe7\x01\n\rNodeExecution\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\x12\x1b\n\tinput_uri\x18\x02 \x01(\tR\x08inputUri\x12>\n\x07\x63losure\x18\x03 \x01(\x0b\x32$.flyteidl.admin.NodeExecutionClosureR\x07\x63losure\x12\x41\n\x08metadata\x18\x04 \x01(\x0b\x32%.flyteidl.admin.NodeExecutionMetaDataR\x08metadata\"\x9f\x01\n\x15NodeExecutionMetaData\x12\x1f\n\x0bretry_group\x18\x01 \x01(\tR\nretryGroup\x12$\n\x0eis_parent_node\x18\x02 \x01(\x08R\x0cisParentNode\x12 \n\x0cspec_node_id\x18\x03 \x01(\tR\nspecNodeId\x12\x1d\n\nis_dynamic\x18\x04 \x01(\x08R\tisDynamic\"q\n\x11NodeExecutionList\x12\x46\n\x0fnode_executions\x18\x01 \x03(\x0b\x32\x1d.flyteidl.admin.NodeExecutionR\x0enodeExecutions\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\xf6\x05\n\x14NodeExecutionClosure\x12#\n\noutput_uri\x18\x01 \x01(\tB\x02\x18\x01H\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12@\n\x0boutput_data\x18\n \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\noutputData\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.PhaseR\x05phase\x12\x39\n\nstarted_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x35\n\x08\x64uration\x18\x05 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\x12\x39\n\ncreated_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\\\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.admin.WorkflowNodeMetadataH\x01R\x14workflowNodeMetadata\x12P\n\x12task_node_metadata\x18\t \x01(\x0b\x32 .flyteidl.admin.TaskNodeMetadataH\x01R\x10taskNodeMetadata\x12\x19\n\x08\x64\x65\x63k_uri\x18\x0b \x01(\tR\x07\x64\x65\x63kUri\x12/\n\x14\x64ynamic_job_spec_uri\x18\x0c \x01(\tR\x11\x64ynamicJobSpecUriB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"d\n\x14WorkflowNodeMetadata\x12L\n\x0b\x65xecutionId\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xc0\x01\n\x10TaskNodeMetadata\x12\x44\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12?\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadataR\ncatalogKey\x12%\n\x0e\x63heckpoint_uri\x18\x04 \x01(\tR\rcheckpointUri\"\xce\x01\n\x1b\x44ynamicWorkflowNodeMetadata\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12S\n\x11\x63ompiled_workflow\x18\x02 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12/\n\x14\x64ynamic_job_spec_uri\x18\x03 \x01(\tR\x11\x64ynamicJobSpecUri\"U\n\x1bNodeExecutionGetDataRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\"\x96\x03\n\x1cNodeExecutionGetDataResponse\x12\x33\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x06inputs\x12\x35\n\x07outputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x07outputs\x12:\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\nfullInputs\x12<\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ullOutputs\x12V\n\x10\x64ynamic_workflow\x18\x10 \x01(\x0b\x32+.flyteidl.admin.DynamicWorkflowNodeMetadataR\x0f\x64ynamicWorkflow\x12\x38\n\nflyte_urls\x18\x11 \x01(\x0b\x32\x19.flyteidl.admin.FlyteURLsR\tflyteUrlsB\xbe\x01\n\x12\x63om.flyteidl.adminB\x12NodeExecutionProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#flyteidl/admin/node_execution.proto\x12\x0e\x66lyteidl.admin\x1a\x1b\x66lyteidl/admin/common.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1egoogle/protobuf/duration.proto\"Q\n\x17NodeExecutionGetRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\"\x99\x02\n\x18NodeExecutionListRequest\x12^\n\x15workflow_execution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x13workflowExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\x12(\n\x10unique_parent_id\x18\x06 \x01(\tR\x0euniqueParentId\"\xea\x01\n\x1fNodeExecutionForTaskListRequest\x12R\n\x11task_execution_id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x0ftaskExecutionId\x12\x14\n\x05limit\x18\x02 \x01(\rR\x05limit\x12\x14\n\x05token\x18\x03 \x01(\tR\x05token\x12\x18\n\x07\x66ilters\x18\x04 \x01(\tR\x07\x66ilters\x12-\n\x07sort_by\x18\x05 \x01(\x0b\x32\x14.flyteidl.admin.SortR\x06sortBy\"\xe7\x01\n\rNodeExecution\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\x12\x1b\n\tinput_uri\x18\x02 \x01(\tR\x08inputUri\x12>\n\x07\x63losure\x18\x03 \x01(\x0b\x32$.flyteidl.admin.NodeExecutionClosureR\x07\x63losure\x12\x41\n\x08metadata\x18\x04 \x01(\x0b\x32%.flyteidl.admin.NodeExecutionMetaDataR\x08metadata\"\xba\x01\n\x15NodeExecutionMetaData\x12\x1f\n\x0bretry_group\x18\x01 \x01(\tR\nretryGroup\x12$\n\x0eis_parent_node\x18\x02 \x01(\x08R\x0cisParentNode\x12 \n\x0cspec_node_id\x18\x03 \x01(\tR\nspecNodeId\x12\x1d\n\nis_dynamic\x18\x04 \x01(\x08R\tisDynamic\x12\x19\n\x08is_array\x18\x05 \x01(\x08R\x07isArray\"q\n\x11NodeExecutionList\x12\x46\n\x0fnode_executions\x18\x01 \x03(\x0b\x32\x1d.flyteidl.admin.NodeExecutionR\x0enodeExecutions\x12\x14\n\x05token\x18\x02 \x01(\tR\x05token\"\xf6\x05\n\x14NodeExecutionClosure\x12#\n\noutput_uri\x18\x01 \x01(\tB\x02\x18\x01H\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12@\n\x0boutput_data\x18\n \x01(\x0b\x32\x19.flyteidl.core.LiteralMapB\x02\x18\x01H\x00R\noutputData\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.PhaseR\x05phase\x12\x39\n\nstarted_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12\x35\n\x08\x64uration\x18\x05 \x01(\x0b\x32\x19.google.protobuf.DurationR\x08\x64uration\x12\x39\n\ncreated_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12\\\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.admin.WorkflowNodeMetadataH\x01R\x14workflowNodeMetadata\x12P\n\x12task_node_metadata\x18\t \x01(\x0b\x32 .flyteidl.admin.TaskNodeMetadataH\x01R\x10taskNodeMetadata\x12\x19\n\x08\x64\x65\x63k_uri\x18\x0b \x01(\tR\x07\x64\x65\x63kUri\x12/\n\x14\x64ynamic_job_spec_uri\x18\x0c \x01(\tR\x11\x64ynamicJobSpecUriB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"d\n\x14WorkflowNodeMetadata\x12L\n\x0b\x65xecutionId\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xc0\x01\n\x10TaskNodeMetadata\x12\x44\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12?\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadataR\ncatalogKey\x12%\n\x0e\x63heckpoint_uri\x18\x04 \x01(\tR\rcheckpointUri\"\xce\x01\n\x1b\x44ynamicWorkflowNodeMetadata\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12S\n\x11\x63ompiled_workflow\x18\x02 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12/\n\x14\x64ynamic_job_spec_uri\x18\x03 \x01(\tR\x11\x64ynamicJobSpecUri\"U\n\x1bNodeExecutionGetDataRequest\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\"\x96\x03\n\x1cNodeExecutionGetDataResponse\x12\x33\n\x06inputs\x18\x01 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x06inputs\x12\x35\n\x07outputs\x18\x02 \x01(\x0b\x32\x17.flyteidl.admin.UrlBlobB\x02\x18\x01R\x07outputs\x12:\n\x0b\x66ull_inputs\x18\x03 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\nfullInputs\x12<\n\x0c\x66ull_outputs\x18\x04 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapR\x0b\x66ullOutputs\x12V\n\x10\x64ynamic_workflow\x18\x10 \x01(\x0b\x32+.flyteidl.admin.DynamicWorkflowNodeMetadataR\x0f\x64ynamicWorkflow\x12\x38\n\nflyte_urls\x18\x11 \x01(\x0b\x32\x19.flyteidl.admin.FlyteURLsR\tflyteUrlsB\xbe\x01\n\x12\x63om.flyteidl.adminB\x12NodeExecutionProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/admin\xa2\x02\x03\x46\x41X\xaa\x02\x0e\x46lyteidl.Admin\xca\x02\x0e\x46lyteidl\\Admin\xe2\x02\x1a\x46lyteidl\\Admin\\GPBMetadata\xea\x02\x0f\x46lyteidl::Adminb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -47,19 +47,19 @@ _globals['_NODEEXECUTION']._serialized_start=906 _globals['_NODEEXECUTION']._serialized_end=1137 _globals['_NODEEXECUTIONMETADATA']._serialized_start=1140 - _globals['_NODEEXECUTIONMETADATA']._serialized_end=1299 - _globals['_NODEEXECUTIONLIST']._serialized_start=1301 - _globals['_NODEEXECUTIONLIST']._serialized_end=1414 - _globals['_NODEEXECUTIONCLOSURE']._serialized_start=1417 - _globals['_NODEEXECUTIONCLOSURE']._serialized_end=2175 - _globals['_WORKFLOWNODEMETADATA']._serialized_start=2177 - _globals['_WORKFLOWNODEMETADATA']._serialized_end=2277 - _globals['_TASKNODEMETADATA']._serialized_start=2280 - _globals['_TASKNODEMETADATA']._serialized_end=2472 - _globals['_DYNAMICWORKFLOWNODEMETADATA']._serialized_start=2475 - _globals['_DYNAMICWORKFLOWNODEMETADATA']._serialized_end=2681 - _globals['_NODEEXECUTIONGETDATAREQUEST']._serialized_start=2683 - _globals['_NODEEXECUTIONGETDATAREQUEST']._serialized_end=2768 - _globals['_NODEEXECUTIONGETDATARESPONSE']._serialized_start=2771 - _globals['_NODEEXECUTIONGETDATARESPONSE']._serialized_end=3177 + _globals['_NODEEXECUTIONMETADATA']._serialized_end=1326 + _globals['_NODEEXECUTIONLIST']._serialized_start=1328 + _globals['_NODEEXECUTIONLIST']._serialized_end=1441 + _globals['_NODEEXECUTIONCLOSURE']._serialized_start=1444 + _globals['_NODEEXECUTIONCLOSURE']._serialized_end=2202 + _globals['_WORKFLOWNODEMETADATA']._serialized_start=2204 + _globals['_WORKFLOWNODEMETADATA']._serialized_end=2304 + _globals['_TASKNODEMETADATA']._serialized_start=2307 + _globals['_TASKNODEMETADATA']._serialized_end=2499 + _globals['_DYNAMICWORKFLOWNODEMETADATA']._serialized_start=2502 + _globals['_DYNAMICWORKFLOWNODEMETADATA']._serialized_end=2708 + _globals['_NODEEXECUTIONGETDATAREQUEST']._serialized_start=2710 + _globals['_NODEEXECUTIONGETDATAREQUEST']._serialized_end=2795 + _globals['_NODEEXECUTIONGETDATARESPONSE']._serialized_start=2798 + _globals['_NODEEXECUTIONGETDATARESPONSE']._serialized_end=3204 # @@protoc_insertion_point(module_scope) diff --git a/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.pyi b/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.pyi index 6bb94b11d8..8cbb708f01 100644 --- a/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.pyi +++ b/flyteidl/gen/pb_python/flyteidl/admin/node_execution_pb2.pyi @@ -62,16 +62,18 @@ class NodeExecution(_message.Message): def __init__(self, id: _Optional[_Union[_identifier_pb2.NodeExecutionIdentifier, _Mapping]] = ..., input_uri: _Optional[str] = ..., closure: _Optional[_Union[NodeExecutionClosure, _Mapping]] = ..., metadata: _Optional[_Union[NodeExecutionMetaData, _Mapping]] = ...) -> None: ... class NodeExecutionMetaData(_message.Message): - __slots__ = ["retry_group", "is_parent_node", "spec_node_id", "is_dynamic"] + __slots__ = ["retry_group", "is_parent_node", "spec_node_id", "is_dynamic", "is_array"] RETRY_GROUP_FIELD_NUMBER: _ClassVar[int] IS_PARENT_NODE_FIELD_NUMBER: _ClassVar[int] SPEC_NODE_ID_FIELD_NUMBER: _ClassVar[int] IS_DYNAMIC_FIELD_NUMBER: _ClassVar[int] + IS_ARRAY_FIELD_NUMBER: _ClassVar[int] retry_group: str is_parent_node: bool spec_node_id: str is_dynamic: bool - def __init__(self, retry_group: _Optional[str] = ..., is_parent_node: bool = ..., spec_node_id: _Optional[str] = ..., is_dynamic: bool = ...) -> None: ... + is_array: bool + def __init__(self, retry_group: _Optional[str] = ..., is_parent_node: bool = ..., spec_node_id: _Optional[str] = ..., is_dynamic: bool = ..., is_array: bool = ...) -> None: ... class NodeExecutionList(_message.Message): __slots__ = ["node_executions", "token"] diff --git a/flyteidl/gen/pb_python/flyteidl/event/event_pb2.py b/flyteidl/gen/pb_python/flyteidl/event/event_pb2.py index f1fd8da613..f1740e326a 100644 --- a/flyteidl/gen/pb_python/flyteidl/event/event_pb2.py +++ b/flyteidl/gen/pb_python/flyteidl/event/event_pb2.py @@ -20,7 +20,7 @@ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/event/event.proto\x12\x0e\x66lyteidl.event\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xaa\x03\n\x16WorkflowExecutionEvent\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12<\n\x05phase\x18\x03 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1f\n\noutput_uri\x18\x05 \x01(\tH\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12<\n\x0boutput_data\x18\x07 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\noutputDataB\x0f\n\routput_result\"\x8f\t\n\x12NodeExecutionEvent\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x05 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x14 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\x06 \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\x07 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x0f \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\\\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.event.WorkflowNodeMetadataH\x02R\x14workflowNodeMetadata\x12P\n\x12task_node_metadata\x18\x0e \x01(\x0b\x32 .flyteidl.event.TaskNodeMetadataH\x02R\x10taskNodeMetadata\x12]\n\x14parent_task_metadata\x18\t \x01(\x0b\x32+.flyteidl.event.ParentTaskExecutionMetadataR\x12parentTaskMetadata\x12]\n\x14parent_node_metadata\x18\n \x01(\x0b\x32+.flyteidl.event.ParentNodeExecutionMetadataR\x12parentNodeMetadata\x12\x1f\n\x0bretry_group\x18\x0b \x01(\tR\nretryGroup\x12 \n\x0cspec_node_id\x18\x0c \x01(\tR\nspecNodeId\x12\x1b\n\tnode_name\x18\r \x01(\tR\x08nodeName\x12#\n\revent_version\x18\x10 \x01(\x05R\x0c\x65ventVersion\x12\x1b\n\tis_parent\x18\x11 \x01(\x08R\x08isParent\x12\x1d\n\nis_dynamic\x18\x12 \x01(\x08R\tisDynamic\x12\x19\n\x08\x64\x65\x63k_uri\x18\x13 \x01(\tR\x07\x64\x65\x63kUri\x12;\n\x0breported_at\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAtB\r\n\x0binput_valueB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"e\n\x14WorkflowNodeMetadata\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xf1\x02\n\x10TaskNodeMetadata\x12\x44\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12?\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadataR\ncatalogKey\x12W\n\x12reservation_status\x18\x03 \x01(\x0e\x32(.flyteidl.core.CatalogReservation.StatusR\x11reservationStatus\x12%\n\x0e\x63heckpoint_uri\x18\x04 \x01(\tR\rcheckpointUri\x12V\n\x10\x64ynamic_workflow\x18\x10 \x01(\x0b\x32+.flyteidl.event.DynamicWorkflowNodeMetadataR\x0f\x64ynamicWorkflow\"\xce\x01\n\x1b\x44ynamicWorkflowNodeMetadata\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12S\n\x11\x63ompiled_workflow\x18\x02 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12/\n\x14\x64ynamic_job_spec_uri\x18\x03 \x01(\tR\x11\x64ynamicJobSpecUri\"U\n\x1bParentTaskExecutionMetadata\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\"6\n\x1bParentNodeExecutionMetadata\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\"b\n\x0b\x45ventReason\x12\x16\n\x06reason\x18\x01 \x01(\tR\x06reason\x12;\n\x0boccurred_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\"\x97\x08\n\x12TaskExecutionEvent\x12\x32\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x06taskId\x12_\n\x18parent_node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x15parentNodeExecutionId\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x1f\n\x0bproducer_id\x18\x05 \x01(\tR\nproducerId\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\x12;\n\x0boccurred_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x08 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x13 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\t \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\n \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x11 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\x38\n\x0b\x63ustom_info\x18\x0b \x01(\x0b\x32\x17.google.protobuf.StructR\ncustomInfo\x12#\n\rphase_version\x18\x0c \x01(\rR\x0cphaseVersion\x12\x1a\n\x06reason\x18\r \x01(\tB\x02\x18\x01R\x06reason\x12\x35\n\x07reasons\x18\x15 \x03(\x0b\x32\x1b.flyteidl.event.EventReasonR\x07reasons\x12\x1b\n\ttask_type\x18\x0e \x01(\tR\x08taskType\x12\x41\n\x08metadata\x18\x10 \x01(\x0b\x32%.flyteidl.event.TaskExecutionMetadataR\x08metadata\x12#\n\revent_version\x18\x12 \x01(\x05R\x0c\x65ventVersion\x12;\n\x0breported_at\x18\x14 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAtB\r\n\x0binput_valueB\x0f\n\routput_result\"\x9e\x02\n\x14\x45xternalResourceInfo\x12\x1f\n\x0b\x65xternal_id\x18\x01 \x01(\tR\nexternalId\x12\x14\n\x05index\x18\x02 \x01(\rR\x05index\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x44\n\x0c\x63\x61\x63he_status\x18\x05 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\"[\n\x10ResourcePoolInfo\x12)\n\x10\x61llocation_token\x18\x01 \x01(\tR\x0f\x61llocationToken\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\"\x9d\x03\n\x15TaskExecutionMetadata\x12%\n\x0egenerated_name\x18\x01 \x01(\tR\rgeneratedName\x12S\n\x12\x65xternal_resources\x18\x02 \x03(\x0b\x32$.flyteidl.event.ExternalResourceInfoR\x11\x65xternalResources\x12N\n\x12resource_pool_info\x18\x03 \x03(\x0b\x32 .flyteidl.event.ResourcePoolInfoR\x10resourcePoolInfo\x12+\n\x11plugin_identifier\x18\x04 \x01(\tR\x10pluginIdentifier\x12Z\n\x0einstance_class\x18\x10 \x01(\x0e\x32\x33.flyteidl.event.TaskExecutionMetadata.InstanceClassR\rinstanceClass\"/\n\rInstanceClass\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\x11\n\rINTERRUPTIBLE\x10\x01\x42\xb6\x01\n\x12\x63om.flyteidl.eventB\nEventProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event\xa2\x02\x03\x46\x45X\xaa\x02\x0e\x46lyteidl.Event\xca\x02\x0e\x46lyteidl\\Event\xe2\x02\x1a\x46lyteidl\\Event\\GPBMetadata\xea\x02\x0f\x46lyteidl::Eventb\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1a\x66lyteidl/event/event.proto\x12\x0e\x66lyteidl.event\x1a\x1c\x66lyteidl/core/literals.proto\x1a\x1c\x66lyteidl/core/compiler.proto\x1a\x1d\x66lyteidl/core/execution.proto\x1a\x1e\x66lyteidl/core/identifier.proto\x1a\x1b\x66lyteidl/core/catalog.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xaa\x03\n\x16WorkflowExecutionEvent\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12<\n\x05phase\x18\x03 \x01(\x0e\x32&.flyteidl.core.WorkflowExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1f\n\noutput_uri\x18\x05 \x01(\tH\x00R\toutputUri\x12\x35\n\x05\x65rror\x18\x06 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x00R\x05\x65rror\x12<\n\x0boutput_data\x18\x07 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\noutputDataB\x0f\n\routput_result\"\xaa\t\n\x12NodeExecutionEvent\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x02id\x12\x1f\n\x0bproducer_id\x18\x02 \x01(\tR\nproducerId\x12\x38\n\x05phase\x18\x03 \x01(\x0e\x32\".flyteidl.core.NodeExecution.PhaseR\x05phase\x12;\n\x0boccurred_at\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x05 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x14 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\x06 \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\x07 \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x0f \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\\\n\x16workflow_node_metadata\x18\x08 \x01(\x0b\x32$.flyteidl.event.WorkflowNodeMetadataH\x02R\x14workflowNodeMetadata\x12P\n\x12task_node_metadata\x18\x0e \x01(\x0b\x32 .flyteidl.event.TaskNodeMetadataH\x02R\x10taskNodeMetadata\x12]\n\x14parent_task_metadata\x18\t \x01(\x0b\x32+.flyteidl.event.ParentTaskExecutionMetadataR\x12parentTaskMetadata\x12]\n\x14parent_node_metadata\x18\n \x01(\x0b\x32+.flyteidl.event.ParentNodeExecutionMetadataR\x12parentNodeMetadata\x12\x1f\n\x0bretry_group\x18\x0b \x01(\tR\nretryGroup\x12 \n\x0cspec_node_id\x18\x0c \x01(\tR\nspecNodeId\x12\x1b\n\tnode_name\x18\r \x01(\tR\x08nodeName\x12#\n\revent_version\x18\x10 \x01(\x05R\x0c\x65ventVersion\x12\x1b\n\tis_parent\x18\x11 \x01(\x08R\x08isParent\x12\x1d\n\nis_dynamic\x18\x12 \x01(\x08R\tisDynamic\x12\x19\n\x08\x64\x65\x63k_uri\x18\x13 \x01(\tR\x07\x64\x65\x63kUri\x12;\n\x0breported_at\x18\x15 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAt\x12\x19\n\x08is_array\x18\x16 \x01(\x08R\x07isArrayB\r\n\x0binput_valueB\x0f\n\routput_resultB\x11\n\x0ftarget_metadata\"e\n\x14WorkflowNodeMetadata\x12M\n\x0c\x65xecution_id\x18\x01 \x01(\x0b\x32*.flyteidl.core.WorkflowExecutionIdentifierR\x0b\x65xecutionId\"\xf1\x02\n\x10TaskNodeMetadata\x12\x44\n\x0c\x63\x61\x63he_status\x18\x01 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12?\n\x0b\x63\x61talog_key\x18\x02 \x01(\x0b\x32\x1e.flyteidl.core.CatalogMetadataR\ncatalogKey\x12W\n\x12reservation_status\x18\x03 \x01(\x0e\x32(.flyteidl.core.CatalogReservation.StatusR\x11reservationStatus\x12%\n\x0e\x63heckpoint_uri\x18\x04 \x01(\tR\rcheckpointUri\x12V\n\x10\x64ynamic_workflow\x18\x10 \x01(\x0b\x32+.flyteidl.event.DynamicWorkflowNodeMetadataR\x0f\x64ynamicWorkflow\"\xce\x01\n\x1b\x44ynamicWorkflowNodeMetadata\x12)\n\x02id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x02id\x12S\n\x11\x63ompiled_workflow\x18\x02 \x01(\x0b\x32&.flyteidl.core.CompiledWorkflowClosureR\x10\x63ompiledWorkflow\x12/\n\x14\x64ynamic_job_spec_uri\x18\x03 \x01(\tR\x11\x64ynamicJobSpecUri\"U\n\x1bParentTaskExecutionMetadata\x12\x36\n\x02id\x18\x01 \x01(\x0b\x32&.flyteidl.core.TaskExecutionIdentifierR\x02id\"6\n\x1bParentNodeExecutionMetadata\x12\x17\n\x07node_id\x18\x01 \x01(\tR\x06nodeId\"b\n\x0b\x45ventReason\x12\x16\n\x06reason\x18\x01 \x01(\tR\x06reason\x12;\n\x0boccurred_at\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\"\x97\x08\n\x12TaskExecutionEvent\x12\x32\n\x07task_id\x18\x01 \x01(\x0b\x32\x19.flyteidl.core.IdentifierR\x06taskId\x12_\n\x18parent_node_execution_id\x18\x02 \x01(\x0b\x32&.flyteidl.core.NodeExecutionIdentifierR\x15parentNodeExecutionId\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x1f\n\x0bproducer_id\x18\x05 \x01(\tR\nproducerId\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\x12;\n\x0boccurred_at\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\noccurredAt\x12\x1d\n\tinput_uri\x18\x08 \x01(\tH\x00R\x08inputUri\x12:\n\ninput_data\x18\x13 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x00R\tinputData\x12\x1f\n\noutput_uri\x18\t \x01(\tH\x01R\toutputUri\x12\x35\n\x05\x65rror\x18\n \x01(\x0b\x32\x1d.flyteidl.core.ExecutionErrorH\x01R\x05\x65rror\x12<\n\x0boutput_data\x18\x11 \x01(\x0b\x32\x19.flyteidl.core.LiteralMapH\x01R\noutputData\x12\x38\n\x0b\x63ustom_info\x18\x0b \x01(\x0b\x32\x17.google.protobuf.StructR\ncustomInfo\x12#\n\rphase_version\x18\x0c \x01(\rR\x0cphaseVersion\x12\x1a\n\x06reason\x18\r \x01(\tB\x02\x18\x01R\x06reason\x12\x35\n\x07reasons\x18\x15 \x03(\x0b\x32\x1b.flyteidl.event.EventReasonR\x07reasons\x12\x1b\n\ttask_type\x18\x0e \x01(\tR\x08taskType\x12\x41\n\x08metadata\x18\x10 \x01(\x0b\x32%.flyteidl.event.TaskExecutionMetadataR\x08metadata\x12#\n\revent_version\x18\x12 \x01(\x05R\x0c\x65ventVersion\x12;\n\x0breported_at\x18\x14 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\nreportedAtB\r\n\x0binput_valueB\x0f\n\routput_result\"\x9e\x02\n\x14\x45xternalResourceInfo\x12\x1f\n\x0b\x65xternal_id\x18\x01 \x01(\tR\nexternalId\x12\x14\n\x05index\x18\x02 \x01(\rR\x05index\x12#\n\rretry_attempt\x18\x03 \x01(\rR\x0cretryAttempt\x12\x38\n\x05phase\x18\x04 \x01(\x0e\x32\".flyteidl.core.TaskExecution.PhaseR\x05phase\x12\x44\n\x0c\x63\x61\x63he_status\x18\x05 \x01(\x0e\x32!.flyteidl.core.CatalogCacheStatusR\x0b\x63\x61\x63heStatus\x12*\n\x04logs\x18\x06 \x03(\x0b\x32\x16.flyteidl.core.TaskLogR\x04logs\"[\n\x10ResourcePoolInfo\x12)\n\x10\x61llocation_token\x18\x01 \x01(\tR\x0f\x61llocationToken\x12\x1c\n\tnamespace\x18\x02 \x01(\tR\tnamespace\"\x9d\x03\n\x15TaskExecutionMetadata\x12%\n\x0egenerated_name\x18\x01 \x01(\tR\rgeneratedName\x12S\n\x12\x65xternal_resources\x18\x02 \x03(\x0b\x32$.flyteidl.event.ExternalResourceInfoR\x11\x65xternalResources\x12N\n\x12resource_pool_info\x18\x03 \x03(\x0b\x32 .flyteidl.event.ResourcePoolInfoR\x10resourcePoolInfo\x12+\n\x11plugin_identifier\x18\x04 \x01(\tR\x10pluginIdentifier\x12Z\n\x0einstance_class\x18\x10 \x01(\x0e\x32\x33.flyteidl.event.TaskExecutionMetadata.InstanceClassR\rinstanceClass\"/\n\rInstanceClass\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\x11\n\rINTERRUPTIBLE\x10\x01\x42\xb6\x01\n\x12\x63om.flyteidl.eventB\nEventProtoP\x01Z;github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event\xa2\x02\x03\x46\x45X\xaa\x02\x0e\x46lyteidl.Event\xca\x02\x0e\x46lyteidl\\Event\xe2\x02\x1a\x46lyteidl\\Event\\GPBMetadata\xea\x02\x0f\x46lyteidl::Eventb\x06proto3') _globals = globals() _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals) @@ -34,27 +34,27 @@ _globals['_WORKFLOWEXECUTIONEVENT']._serialized_start=262 _globals['_WORKFLOWEXECUTIONEVENT']._serialized_end=688 _globals['_NODEEXECUTIONEVENT']._serialized_start=691 - _globals['_NODEEXECUTIONEVENT']._serialized_end=1858 - _globals['_WORKFLOWNODEMETADATA']._serialized_start=1860 - _globals['_WORKFLOWNODEMETADATA']._serialized_end=1961 - _globals['_TASKNODEMETADATA']._serialized_start=1964 - _globals['_TASKNODEMETADATA']._serialized_end=2333 - _globals['_DYNAMICWORKFLOWNODEMETADATA']._serialized_start=2336 - _globals['_DYNAMICWORKFLOWNODEMETADATA']._serialized_end=2542 - _globals['_PARENTTASKEXECUTIONMETADATA']._serialized_start=2544 - _globals['_PARENTTASKEXECUTIONMETADATA']._serialized_end=2629 - _globals['_PARENTNODEEXECUTIONMETADATA']._serialized_start=2631 - _globals['_PARENTNODEEXECUTIONMETADATA']._serialized_end=2685 - _globals['_EVENTREASON']._serialized_start=2687 - _globals['_EVENTREASON']._serialized_end=2785 - _globals['_TASKEXECUTIONEVENT']._serialized_start=2788 - _globals['_TASKEXECUTIONEVENT']._serialized_end=3835 - _globals['_EXTERNALRESOURCEINFO']._serialized_start=3838 - _globals['_EXTERNALRESOURCEINFO']._serialized_end=4124 - _globals['_RESOURCEPOOLINFO']._serialized_start=4126 - _globals['_RESOURCEPOOLINFO']._serialized_end=4217 - _globals['_TASKEXECUTIONMETADATA']._serialized_start=4220 - _globals['_TASKEXECUTIONMETADATA']._serialized_end=4633 - _globals['_TASKEXECUTIONMETADATA_INSTANCECLASS']._serialized_start=4586 - _globals['_TASKEXECUTIONMETADATA_INSTANCECLASS']._serialized_end=4633 + _globals['_NODEEXECUTIONEVENT']._serialized_end=1885 + _globals['_WORKFLOWNODEMETADATA']._serialized_start=1887 + _globals['_WORKFLOWNODEMETADATA']._serialized_end=1988 + _globals['_TASKNODEMETADATA']._serialized_start=1991 + _globals['_TASKNODEMETADATA']._serialized_end=2360 + _globals['_DYNAMICWORKFLOWNODEMETADATA']._serialized_start=2363 + _globals['_DYNAMICWORKFLOWNODEMETADATA']._serialized_end=2569 + _globals['_PARENTTASKEXECUTIONMETADATA']._serialized_start=2571 + _globals['_PARENTTASKEXECUTIONMETADATA']._serialized_end=2656 + _globals['_PARENTNODEEXECUTIONMETADATA']._serialized_start=2658 + _globals['_PARENTNODEEXECUTIONMETADATA']._serialized_end=2712 + _globals['_EVENTREASON']._serialized_start=2714 + _globals['_EVENTREASON']._serialized_end=2812 + _globals['_TASKEXECUTIONEVENT']._serialized_start=2815 + _globals['_TASKEXECUTIONEVENT']._serialized_end=3862 + _globals['_EXTERNALRESOURCEINFO']._serialized_start=3865 + _globals['_EXTERNALRESOURCEINFO']._serialized_end=4151 + _globals['_RESOURCEPOOLINFO']._serialized_start=4153 + _globals['_RESOURCEPOOLINFO']._serialized_end=4244 + _globals['_TASKEXECUTIONMETADATA']._serialized_start=4247 + _globals['_TASKEXECUTIONMETADATA']._serialized_end=4660 + _globals['_TASKEXECUTIONMETADATA_INSTANCECLASS']._serialized_start=4613 + _globals['_TASKEXECUTIONMETADATA_INSTANCECLASS']._serialized_end=4660 # @@protoc_insertion_point(module_scope) diff --git a/flyteidl/gen/pb_python/flyteidl/event/event_pb2.pyi b/flyteidl/gen/pb_python/flyteidl/event/event_pb2.pyi index 9a9837082c..3297975f5d 100644 --- a/flyteidl/gen/pb_python/flyteidl/event/event_pb2.pyi +++ b/flyteidl/gen/pb_python/flyteidl/event/event_pb2.pyi @@ -32,7 +32,7 @@ class WorkflowExecutionEvent(_message.Message): def __init__(self, execution_id: _Optional[_Union[_identifier_pb2.WorkflowExecutionIdentifier, _Mapping]] = ..., producer_id: _Optional[str] = ..., phase: _Optional[_Union[_execution_pb2.WorkflowExecution.Phase, str]] = ..., occurred_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., output_uri: _Optional[str] = ..., error: _Optional[_Union[_execution_pb2.ExecutionError, _Mapping]] = ..., output_data: _Optional[_Union[_literals_pb2.LiteralMap, _Mapping]] = ...) -> None: ... class NodeExecutionEvent(_message.Message): - __slots__ = ["id", "producer_id", "phase", "occurred_at", "input_uri", "input_data", "output_uri", "error", "output_data", "workflow_node_metadata", "task_node_metadata", "parent_task_metadata", "parent_node_metadata", "retry_group", "spec_node_id", "node_name", "event_version", "is_parent", "is_dynamic", "deck_uri", "reported_at"] + __slots__ = ["id", "producer_id", "phase", "occurred_at", "input_uri", "input_data", "output_uri", "error", "output_data", "workflow_node_metadata", "task_node_metadata", "parent_task_metadata", "parent_node_metadata", "retry_group", "spec_node_id", "node_name", "event_version", "is_parent", "is_dynamic", "deck_uri", "reported_at", "is_array"] ID_FIELD_NUMBER: _ClassVar[int] PRODUCER_ID_FIELD_NUMBER: _ClassVar[int] PHASE_FIELD_NUMBER: _ClassVar[int] @@ -54,6 +54,7 @@ class NodeExecutionEvent(_message.Message): IS_DYNAMIC_FIELD_NUMBER: _ClassVar[int] DECK_URI_FIELD_NUMBER: _ClassVar[int] REPORTED_AT_FIELD_NUMBER: _ClassVar[int] + IS_ARRAY_FIELD_NUMBER: _ClassVar[int] id: _identifier_pb2.NodeExecutionIdentifier producer_id: str phase: _execution_pb2.NodeExecution.Phase @@ -75,7 +76,8 @@ class NodeExecutionEvent(_message.Message): is_dynamic: bool deck_uri: str reported_at: _timestamp_pb2.Timestamp - def __init__(self, id: _Optional[_Union[_identifier_pb2.NodeExecutionIdentifier, _Mapping]] = ..., producer_id: _Optional[str] = ..., phase: _Optional[_Union[_execution_pb2.NodeExecution.Phase, str]] = ..., occurred_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., input_uri: _Optional[str] = ..., input_data: _Optional[_Union[_literals_pb2.LiteralMap, _Mapping]] = ..., output_uri: _Optional[str] = ..., error: _Optional[_Union[_execution_pb2.ExecutionError, _Mapping]] = ..., output_data: _Optional[_Union[_literals_pb2.LiteralMap, _Mapping]] = ..., workflow_node_metadata: _Optional[_Union[WorkflowNodeMetadata, _Mapping]] = ..., task_node_metadata: _Optional[_Union[TaskNodeMetadata, _Mapping]] = ..., parent_task_metadata: _Optional[_Union[ParentTaskExecutionMetadata, _Mapping]] = ..., parent_node_metadata: _Optional[_Union[ParentNodeExecutionMetadata, _Mapping]] = ..., retry_group: _Optional[str] = ..., spec_node_id: _Optional[str] = ..., node_name: _Optional[str] = ..., event_version: _Optional[int] = ..., is_parent: bool = ..., is_dynamic: bool = ..., deck_uri: _Optional[str] = ..., reported_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ...) -> None: ... + is_array: bool + def __init__(self, id: _Optional[_Union[_identifier_pb2.NodeExecutionIdentifier, _Mapping]] = ..., producer_id: _Optional[str] = ..., phase: _Optional[_Union[_execution_pb2.NodeExecution.Phase, str]] = ..., occurred_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., input_uri: _Optional[str] = ..., input_data: _Optional[_Union[_literals_pb2.LiteralMap, _Mapping]] = ..., output_uri: _Optional[str] = ..., error: _Optional[_Union[_execution_pb2.ExecutionError, _Mapping]] = ..., output_data: _Optional[_Union[_literals_pb2.LiteralMap, _Mapping]] = ..., workflow_node_metadata: _Optional[_Union[WorkflowNodeMetadata, _Mapping]] = ..., task_node_metadata: _Optional[_Union[TaskNodeMetadata, _Mapping]] = ..., parent_task_metadata: _Optional[_Union[ParentTaskExecutionMetadata, _Mapping]] = ..., parent_node_metadata: _Optional[_Union[ParentNodeExecutionMetadata, _Mapping]] = ..., retry_group: _Optional[str] = ..., spec_node_id: _Optional[str] = ..., node_name: _Optional[str] = ..., event_version: _Optional[int] = ..., is_parent: bool = ..., is_dynamic: bool = ..., deck_uri: _Optional[str] = ..., reported_at: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., is_array: bool = ...) -> None: ... class WorkflowNodeMetadata(_message.Message): __slots__ = ["execution_id"] diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_node_execution_meta_data.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_node_execution_meta_data.py index 659ad1f3c3..130cb4d706 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_node_execution_meta_data.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/admin_node_execution_meta_data.py @@ -34,23 +34,26 @@ class AdminNodeExecutionMetaData(object): 'retry_group': 'str', 'is_parent_node': 'bool', 'spec_node_id': 'str', - 'is_dynamic': 'bool' + 'is_dynamic': 'bool', + 'is_array': 'bool' } attribute_map = { 'retry_group': 'retry_group', 'is_parent_node': 'is_parent_node', 'spec_node_id': 'spec_node_id', - 'is_dynamic': 'is_dynamic' + 'is_dynamic': 'is_dynamic', + 'is_array': 'is_array' } - def __init__(self, retry_group=None, is_parent_node=None, spec_node_id=None, is_dynamic=None): # noqa: E501 + def __init__(self, retry_group=None, is_parent_node=None, spec_node_id=None, is_dynamic=None, is_array=None): # noqa: E501 """AdminNodeExecutionMetaData - a model defined in Swagger""" # noqa: E501 self._retry_group = None self._is_parent_node = None self._spec_node_id = None self._is_dynamic = None + self._is_array = None self.discriminator = None if retry_group is not None: @@ -61,6 +64,8 @@ def __init__(self, retry_group=None, is_parent_node=None, spec_node_id=None, is_ self.spec_node_id = spec_node_id if is_dynamic is not None: self.is_dynamic = is_dynamic + if is_array is not None: + self.is_array = is_array @property def retry_group(self): @@ -152,6 +157,29 @@ def is_dynamic(self, is_dynamic): self._is_dynamic = is_dynamic + @property + def is_array(self): + """Gets the is_array of this AdminNodeExecutionMetaData. # noqa: E501 + + Boolean flag indicating if the node is an array node. This is intended to uniquely identify array nodes from other nodes which can have is_parent_node as true. # noqa: E501 + + :return: The is_array of this AdminNodeExecutionMetaData. # noqa: E501 + :rtype: bool + """ + return self._is_array + + @is_array.setter + def is_array(self, is_array): + """Sets the is_array of this AdminNodeExecutionMetaData. + + Boolean flag indicating if the node is an array node. This is intended to uniquely identify array nodes from other nodes which can have is_parent_node as true. # noqa: E501 + + :param is_array: The is_array of this AdminNodeExecutionMetaData. # noqa: E501 + :type: bool + """ + + self._is_array = is_array + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_node_execution_event.py b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_node_execution_event.py index c62cabff79..f87d0f78be 100644 --- a/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_node_execution_event.py +++ b/flyteidl/gen/pb_python/flyteidl/service/flyteadmin/flyteadmin/models/event_node_execution_event.py @@ -60,7 +60,8 @@ class EventNodeExecutionEvent(object): 'is_parent': 'bool', 'is_dynamic': 'bool', 'deck_uri': 'str', - 'reported_at': 'datetime' + 'reported_at': 'datetime', + 'is_array': 'bool' } attribute_map = { @@ -84,10 +85,11 @@ class EventNodeExecutionEvent(object): 'is_parent': 'is_parent', 'is_dynamic': 'is_dynamic', 'deck_uri': 'deck_uri', - 'reported_at': 'reported_at' + 'reported_at': 'reported_at', + 'is_array': 'is_array' } - def __init__(self, id=None, producer_id=None, phase=None, occurred_at=None, input_uri=None, input_data=None, output_uri=None, error=None, output_data=None, workflow_node_metadata=None, task_node_metadata=None, parent_task_metadata=None, parent_node_metadata=None, retry_group=None, spec_node_id=None, node_name=None, event_version=None, is_parent=None, is_dynamic=None, deck_uri=None, reported_at=None): # noqa: E501 + def __init__(self, id=None, producer_id=None, phase=None, occurred_at=None, input_uri=None, input_data=None, output_uri=None, error=None, output_data=None, workflow_node_metadata=None, task_node_metadata=None, parent_task_metadata=None, parent_node_metadata=None, retry_group=None, spec_node_id=None, node_name=None, event_version=None, is_parent=None, is_dynamic=None, deck_uri=None, reported_at=None, is_array=None): # noqa: E501 """EventNodeExecutionEvent - a model defined in Swagger""" # noqa: E501 self._id = None @@ -111,6 +113,7 @@ def __init__(self, id=None, producer_id=None, phase=None, occurred_at=None, inpu self._is_dynamic = None self._deck_uri = None self._reported_at = None + self._is_array = None self.discriminator = None if id is not None: @@ -155,6 +158,8 @@ def __init__(self, id=None, producer_id=None, phase=None, occurred_at=None, inpu self.deck_uri = deck_uri if reported_at is not None: self.reported_at = reported_at + if is_array is not None: + self.is_array = is_array @property def id(self): @@ -615,6 +620,29 @@ def reported_at(self, reported_at): self._reported_at = reported_at + @property + def is_array(self): + """Gets the is_array of this EventNodeExecutionEvent. # noqa: E501 + + Indicates if this node is an ArrayNode. # noqa: E501 + + :return: The is_array of this EventNodeExecutionEvent. # noqa: E501 + :rtype: bool + """ + return self._is_array + + @is_array.setter + def is_array(self, is_array): + """Sets the is_array of this EventNodeExecutionEvent. + + Indicates if this node is an ArrayNode. # noqa: E501 + + :param is_array: The is_array of this EventNodeExecutionEvent. # noqa: E501 + :type: bool + """ + + self._is_array = is_array + def to_dict(self): """Returns the model properties as a dict""" result = {} diff --git a/flyteidl/gen/pb_rust/flyteidl.admin.rs b/flyteidl/gen/pb_rust/flyteidl.admin.rs index b73776a730..5ac0ff4471 100644 --- a/flyteidl/gen/pb_rust/flyteidl.admin.rs +++ b/flyteidl/gen/pb_rust/flyteidl.admin.rs @@ -1972,6 +1972,10 @@ pub struct NodeExecutionMetaData { /// This is to distinguish between subworkflows and dynamic workflows which can both have is_parent_node as true. #[prost(bool, tag="4")] pub is_dynamic: bool, + /// Boolean flag indicating if the node is an array node. This is intended to uniquely identify + /// array nodes from other nodes which can have is_parent_node as true. + #[prost(bool, tag="5")] + pub is_array: bool, } /// Request structure to retrieve a list of node execution entities. /// See :ref:`ref_flyteidl.admin.NodeExecution` for more details diff --git a/flyteidl/gen/pb_rust/flyteidl.event.rs b/flyteidl/gen/pb_rust/flyteidl.event.rs index f55ea618b1..537167cc99 100644 --- a/flyteidl/gen/pb_rust/flyteidl.event.rs +++ b/flyteidl/gen/pb_rust/flyteidl.event.rs @@ -83,6 +83,9 @@ pub struct NodeExecutionEvent { /// Extracting both of these timestamps facilitates a more accurate portrayal of the evaluation time-series. #[prost(message, optional, tag="21")] pub reported_at: ::core::option::Option<::prost_types::Timestamp>, + /// Indicates if this node is an ArrayNode. + #[prost(bool, tag="22")] + pub is_array: bool, #[prost(oneof="node_execution_event::InputValue", tags="5, 20")] pub input_value: ::core::option::Option, #[prost(oneof="node_execution_event::OutputResult", tags="6, 7, 15")] diff --git a/flyteidl/protos/flyteidl/admin/node_execution.proto b/flyteidl/protos/flyteidl/admin/node_execution.proto index 9fbf60ea9a..9c80e22efe 100644 --- a/flyteidl/protos/flyteidl/admin/node_execution.proto +++ b/flyteidl/protos/flyteidl/admin/node_execution.proto @@ -114,6 +114,10 @@ message NodeExecutionMetaData { // Boolean flag indicating if the node has contains a dynamic workflow which then produces child nodes. // This is to distinguish between subworkflows and dynamic workflows which can both have is_parent_node as true. bool is_dynamic = 4; + + // Boolean flag indicating if the node is an array node. This is intended to uniquely identify + // array nodes from other nodes which can have is_parent_node as true. + bool is_array = 5; } // Request structure to retrieve a list of node execution entities. diff --git a/flyteidl/protos/flyteidl/event/event.proto b/flyteidl/protos/flyteidl/event/event.proto index f5209f5614..4702adcd9c 100644 --- a/flyteidl/protos/flyteidl/event/event.proto +++ b/flyteidl/protos/flyteidl/event/event.proto @@ -110,6 +110,9 @@ message NodeExecutionEvent { // literal inputs are initially copied. The event however will not be sent until after the copy completes. // Extracting both of these timestamps facilitates a more accurate portrayal of the evaluation time-series. google.protobuf.Timestamp reported_at = 21; + + // Indicates if this node is an ArrayNode. + bool is_array = 22; } // For Workflow Nodes we need to send information about the workflow that's launched diff --git a/flyteplugins/go/tasks/pluginmachinery/core/exec_metadata.go b/flyteplugins/go/tasks/pluginmachinery/core/exec_metadata.go index 9ba5001386..7dc5ece5df 100644 --- a/flyteplugins/go/tasks/pluginmachinery/core/exec_metadata.go +++ b/flyteplugins/go/tasks/pluginmachinery/core/exec_metadata.go @@ -45,6 +45,6 @@ type TaskExecutionMetadata interface { GetSecurityContext() core.SecurityContext IsInterruptible() bool GetPlatformResources() *v1.ResourceRequirements - GetInterruptibleFailureThreshold() uint32 + GetInterruptibleFailureThreshold() int32 GetEnvironmentVariables() map[string]string } diff --git a/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_metadata.go b/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_metadata.go index 0e6651a2a7..b9115f00c6 100644 --- a/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_metadata.go +++ b/flyteplugins/go/tasks/pluginmachinery/core/mocks/task_execution_metadata.go @@ -92,7 +92,7 @@ type TaskExecutionMetadata_GetInterruptibleFailureThreshold struct { *mock.Call } -func (_m TaskExecutionMetadata_GetInterruptibleFailureThreshold) Return(_a0 uint32) *TaskExecutionMetadata_GetInterruptibleFailureThreshold { +func (_m TaskExecutionMetadata_GetInterruptibleFailureThreshold) Return(_a0 int32) *TaskExecutionMetadata_GetInterruptibleFailureThreshold { return &TaskExecutionMetadata_GetInterruptibleFailureThreshold{Call: _m.Call.Return(_a0)} } @@ -107,14 +107,14 @@ func (_m *TaskExecutionMetadata) OnGetInterruptibleFailureThresholdMatch(matcher } // GetInterruptibleFailureThreshold provides a mock function with given fields: -func (_m *TaskExecutionMetadata) GetInterruptibleFailureThreshold() uint32 { +func (_m *TaskExecutionMetadata) GetInterruptibleFailureThreshold() int32 { ret := _m.Called() - var r0 uint32 - if rf, ok := ret.Get(0).(func() uint32); ok { + var r0 int32 + if rf, ok := ret.Get(0).(func() int32); ok { r0 = rf() } else { - r0 = ret.Get(0).(uint32) + r0 = ret.Get(0).(int32) } return r0 diff --git a/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go b/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go index 059e10b540..beeb1a7787 100644 --- a/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go +++ b/flyteplugins/go/tasks/plugins/array/k8s/subtask_exec_context.go @@ -268,7 +268,7 @@ func NewSubTaskExecutionMetadata(taskExecutionMetadata pluginsCore.TaskExecution } subTaskExecutionID := NewSubTaskExecutionID(taskExecutionMetadata.GetTaskExecutionID(), executionIndex, retryAttempt) - interruptible := taskExecutionMetadata.IsInterruptible() && uint32(systemFailures) < taskExecutionMetadata.GetInterruptibleFailureThreshold() + interruptible := taskExecutionMetadata.IsInterruptible() && int32(systemFailures) < taskExecutionMetadata.GetInterruptibleFailureThreshold() return SubTaskExecutionMetadata{ taskExecutionMetadata, utils.UnionMaps(taskExecutionMetadata.GetAnnotations(), secretsMap), diff --git a/flytepropeller/go.mod b/flytepropeller/go.mod index c7174792ec..249353d809 100644 --- a/flytepropeller/go.mod +++ b/flytepropeller/go.mod @@ -25,7 +25,7 @@ require ( github.com/spf13/cobra v1.4.0 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.8.4 - golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e + golang.org/x/exp v0.0.0-20231005195138-3e424a577f31 golang.org/x/sync v0.1.0 golang.org/x/time v0.1.0 google.golang.org/grpc v1.56.1 @@ -124,7 +124,7 @@ require ( golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect golang.org/x/net v0.9.0 // indirect golang.org/x/oauth2 v0.7.0 // indirect - golang.org/x/sys v0.7.0 // indirect + golang.org/x/sys v0.12.0 // indirect golang.org/x/term v0.7.0 // indirect golang.org/x/text v0.9.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect diff --git a/flytepropeller/go.sum b/flytepropeller/go.sum index 41cb312151..5430099db3 100644 --- a/flytepropeller/go.sum +++ b/flytepropeller/go.sum @@ -832,8 +832,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e h1:+WEEuIdZHnUeJJmEUjyYC2gfUMj69yZXw17EnHg/otA= -golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e/go.mod h1:Kr81I6Kryrl9sr8s2FK3vxD90NdsKWRuOIl2O4CvYbA= +golang.org/x/exp v0.0.0-20231005195138-3e424a577f31 h1:9k5exFQKQglLo+RoP+4zMjOFE14P6+vyR0baDAi0Rcs= +golang.org/x/exp v0.0.0-20231005195138-3e424a577f31/go.mod h1:S2oDrQGGwySpoQPVqRShND87VCbxmc6bL1Yd2oYrm6k= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -860,7 +860,7 @@ golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= -golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= +golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc= golang.org/x/net v0.0.0-20170114055629-f2499483f923/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1023,8 +1023,8 @@ golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU= -golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.7.0 h1:BEvjmm5fURWqcfbSKTdpkDXYBrUS1c0m8agp14W48vQ= @@ -1115,7 +1115,7 @@ golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.10-0.20220218145154-897bd77cd717/go.mod h1:Uh6Zz+xoGYZom868N8YTex3t7RhtHDBrE8Gzo9bV56E= -golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= +golang.org/x/tools v0.13.0 h1:Iey4qkscZuv0VvIt8E0neZjtPVQFSc870HQ448QgEmQ= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/002_core.containerization.multi_images.my_workflow_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/002_core.containerization.multi_images.my_workflow_2_wf.yaml index 12b97cfd0e..5e9ddd0b12 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/002_core.containerization.multi_images.my_workflow_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/002_core.containerization.multi_images.my_workflow_2_wf.yaml @@ -75,8 +75,6 @@ spec: kind: task name: svm_trainer resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.containerization.multi_images.svm_trainer" ' n1: id: n1 @@ -104,8 +102,6 @@ spec: kind: task name: svm_predictor resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.containerization.multi_images.svm_predictor" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/010_core.containerization.raw_container.wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/010_core.containerization.raw_container.wf_2_wf.yaml index d73c316018..550880e7e8 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/010_core.containerization.raw_container.wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/010_core.containerization.raw_container.wf_2_wf.yaml @@ -125,8 +125,6 @@ spec: kind: task name: ellipse-area-metadata-shell resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"ellipse-area-metadata-shell" ' n1: id: n1 @@ -144,8 +142,6 @@ spec: kind: task name: ellipse-area-metadata-python resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"ellipse-area-metadata-python" ' n2: id: n2 @@ -163,8 +159,6 @@ spec: kind: task name: ellipse-area-metadata-r resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"ellipse-area-metadata-r" ' n3: id: n3 @@ -182,8 +176,6 @@ spec: kind: task name: ellipse-area-metadata-haskell resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"ellipse-area-metadata-haskell" ' n4: id: n4 @@ -201,8 +193,6 @@ spec: kind: task name: ellipse-area-metadata-julia resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"ellipse-area-metadata-julia" ' n5: id: n5 @@ -260,8 +250,6 @@ spec: kind: task name: report_all_calculated_areas resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.containerization.raw_container.report_all_calculated_areas" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/015_core.containerization.use_secrets.my_secret_workflow_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/015_core.containerization.use_secrets.my_secret_workflow_2_wf.yaml index 8c7cfb7c88..359bb67831 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/015_core.containerization.use_secrets.my_secret_workflow_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/015_core.containerization.use_secrets.my_secret_workflow_2_wf.yaml @@ -107,24 +107,18 @@ spec: kind: task name: secret_task resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.containerization.use_secrets.secret_task" ' n1: id: n1 kind: task name: user_info_task resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.containerization.use_secrets.user_info_task" ' n2: id: n2 kind: task name: secret_file_task resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.containerization.use_secrets.secret_file_task" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/019_core.control_flow.chain_tasks.chain_tasks_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/019_core.control_flow.chain_tasks.chain_tasks_wf_2_wf.yaml index ad22eceb26..ec6ceff710 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/019_core.control_flow.chain_tasks.chain_tasks_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/019_core.control_flow.chain_tasks.chain_tasks_wf_2_wf.yaml @@ -75,16 +75,12 @@ spec: kind: task name: write resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.chain_tasks.write" ' n1: id: n1 kind: task name: read resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.chain_tasks.read" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/026_core.control_flow.conditions.multiplier_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/026_core.control_flow.conditions.multiplier_2_wf.yaml index 74116d674f..854e071a58 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/026_core.control_flow.conditions.multiplier_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/026_core.control_flow.conditions.multiplier_2_wf.yaml @@ -106,8 +106,6 @@ spec: kind: branch name: fractions resources: {} - retry: - minAttempts: 1 n0-n0: id: n0-n0 inputBindings: @@ -119,8 +117,6 @@ spec: kind: task name: double resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.double" ' n0-n1: id: n0-n1 @@ -133,8 +129,6 @@ spec: kind: task name: square resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.square" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/028_core.control_flow.conditions.multiplier_2_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/028_core.control_flow.conditions.multiplier_2_2_wf.yaml index b24ad357b3..7ec08f7c34 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/028_core.control_flow.conditions.multiplier_2_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/028_core.control_flow.conditions.multiplier_2_2_wf.yaml @@ -128,8 +128,6 @@ spec: kind: branch name: fractions resources: {} - retry: - minAttempts: 1 n0-n0: id: n0-n0 inputBindings: @@ -141,8 +139,6 @@ spec: kind: task name: double resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.double" ' n0-n1: id: n0-n1 @@ -155,8 +151,6 @@ spec: kind: task name: square resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.square" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/030_core.control_flow.conditions.multiplier_3_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/030_core.control_flow.conditions.multiplier_3_2_wf.yaml index 37e8b5f33f..10d028fa4a 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/030_core.control_flow.conditions.multiplier_3_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/030_core.control_flow.conditions.multiplier_3_2_wf.yaml @@ -134,8 +134,6 @@ spec: kind: branch name: fractions resources: {} - retry: - minAttempts: 1 n0-n0: id: n0-n0 inputBindings: @@ -147,8 +145,6 @@ spec: kind: task name: double resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.double" ' n0-n1: id: n0-n1 @@ -161,8 +157,6 @@ spec: kind: task name: square resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.square" ' n1: id: n1 @@ -175,8 +169,6 @@ spec: kind: task name: double resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.double" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/035_core.control_flow.conditions.basic_boolean_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/035_core.control_flow.conditions.basic_boolean_wf_2_wf.yaml index 3856ff37fc..f46b2040e3 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/035_core.control_flow.conditions.basic_boolean_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/035_core.control_flow.conditions.basic_boolean_wf_2_wf.yaml @@ -86,8 +86,6 @@ spec: kind: task name: coin_toss resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.coin_toss" ' n1: branch: @@ -111,23 +109,17 @@ spec: kind: branch name: test resources: {} - retry: - minAttempts: 1 n1-n0: id: n1-n0 kind: task name: success resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.success" ' n1-n1: id: n1-n1 kind: task name: failed resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.failed" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/037_core.control_flow.conditions.bool_input_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/037_core.control_flow.conditions.bool_input_wf_2_wf.yaml index 03ad38cd95..3e7d789001 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/037_core.control_flow.conditions.bool_input_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/037_core.control_flow.conditions.bool_input_wf_2_wf.yaml @@ -91,23 +91,17 @@ spec: kind: branch name: test resources: {} - retry: - minAttempts: 1 n0-n0: id: n0-n0 kind: task name: success resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.success" ' n0-n1: id: n0-n1 kind: task name: failed resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.failed" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/039_core.control_flow.conditions.nested_conditions_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/039_core.control_flow.conditions.nested_conditions_2_wf.yaml index 7c13f51deb..8579f95947 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/039_core.control_flow.conditions.nested_conditions_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/039_core.control_flow.conditions.nested_conditions_2_wf.yaml @@ -132,8 +132,6 @@ spec: kind: branch name: fractions resources: {} - retry: - minAttempts: 1 n0-n0: branch: elseFail: @@ -179,8 +177,6 @@ spec: kind: branch name: inner_fractions resources: {} - retry: - minAttempts: 1 n0-n0-n0: id: n0-n0-n0 inputBindings: @@ -192,8 +188,6 @@ spec: kind: task name: double resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.double" ' n0-n0-n1: id: n0-n0-n1 @@ -206,8 +200,6 @@ spec: kind: task name: square resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.square" ' n0-n1: id: n0-n1 @@ -220,8 +212,6 @@ spec: kind: task name: square resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.square" ' n0-n2: id: n0-n2 @@ -234,8 +224,6 @@ spec: kind: task name: double resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.double" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/042_core.control_flow.conditions.consume_outputs_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/042_core.control_flow.conditions.consume_outputs_2_wf.yaml index 68f4377264..24eadb558d 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/042_core.control_flow.conditions.consume_outputs_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/042_core.control_flow.conditions.consume_outputs_2_wf.yaml @@ -100,8 +100,6 @@ spec: kind: task name: coin_toss resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.coin_toss" ' n1: branch: @@ -125,8 +123,6 @@ spec: kind: branch name: double_or_square resources: {} - retry: - minAttempts: 1 n1-n0: id: n1-n0 inputBindings: @@ -138,8 +134,6 @@ spec: kind: task name: square resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.square" ' n1-n1: id: n1-n1 @@ -157,8 +151,6 @@ spec: kind: task name: calc_sum resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.calc_sum" ' n2: id: n2 @@ -171,8 +163,6 @@ spec: kind: task name: double resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.conditions.double" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/048_core.control_flow.dynamics.wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/048_core.control_flow.dynamics.wf_2_wf.yaml index c799c28ac9..c917877e0d 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/048_core.control_flow.dynamics.wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/048_core.control_flow.dynamics.wf_2_wf.yaml @@ -89,8 +89,6 @@ spec: kind: task name: count_characters resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.dynamics.count_characters" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/053_core.control_flow.map_task.my_map_workflow_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/053_core.control_flow.map_task.my_map_workflow_2_wf.yaml index 4c5a3f70d7..d5c29c9810 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/053_core.control_flow.map_task.my_map_workflow_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/053_core.control_flow.map_task.my_map_workflow_2_wf.yaml @@ -106,8 +106,6 @@ spec: kind: task name: coalesce resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.map_task.coalesce" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/059_core.control_flow.merge_sort.merge_sort_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/059_core.control_flow.merge_sort.merge_sort_2_wf.yaml index 62ca3c514a..d99831ef8e 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/059_core.control_flow.merge_sort.merge_sort_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/059_core.control_flow.merge_sort.merge_sort_2_wf.yaml @@ -110,8 +110,6 @@ spec: kind: branch name: terminal_case resources: {} - retry: - minAttempts: 1 n0-n0: id: n0-n0 inputBindings: @@ -123,8 +121,6 @@ spec: kind: task name: sort_locally resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.merge_sort.sort_locally" ' n0-n1: id: n0-n1 @@ -142,8 +138,6 @@ spec: kind: task name: merge_sort_remotely resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.merge_sort.merge_sort_remotely" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/062_core.control_flow.subworkflows.my_subwf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/062_core.control_flow.subworkflows.my_subwf_2_wf.yaml index c50e0ed0b1..05c5b6f080 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/062_core.control_flow.subworkflows.my_subwf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/062_core.control_flow.subworkflows.my_subwf_2_wf.yaml @@ -94,8 +94,6 @@ spec: kind: task name: t1 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.subworkflows.t1" ' n1: id: n1 @@ -108,8 +106,6 @@ spec: kind: task name: t1 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.subworkflows.t1" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/069_core.control_flow.subworkflows.ext_workflow_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/069_core.control_flow.subworkflows.ext_workflow_2_wf.yaml index 3c652334ad..44b6afc5fb 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/069_core.control_flow.subworkflows.ext_workflow_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/069_core.control_flow.subworkflows.ext_workflow_2_wf.yaml @@ -80,8 +80,6 @@ spec: kind: task name: count_freq_words resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.control_flow.subworkflows.count_freq_words" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/077_core.extend_flyte.custom_task_plugin.my_workflow_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/077_core.extend_flyte.custom_task_plugin.my_workflow_2_wf.yaml index 46106f72bd..d22d9eaf90 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/077_core.extend_flyte.custom_task_plugin.my_workflow_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/077_core.extend_flyte.custom_task_plugin.my_workflow_2_wf.yaml @@ -102,8 +102,6 @@ spec: kind: task name: print_file resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.extend_flyte.custom_task_plugin.print_file" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/081_core.extend_flyte.custom_types.wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/081_core.extend_flyte.custom_types.wf_2_wf.yaml index 61f35fdf31..56b6c88316 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/081_core.extend_flyte.custom_types.wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/081_core.extend_flyte.custom_types.wf_2_wf.yaml @@ -75,8 +75,6 @@ spec: kind: task name: generate resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.extend_flyte.custom_types.generate" ' n1: id: n1 @@ -89,8 +87,6 @@ spec: kind: task name: consume resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.extend_flyte.custom_types.consume" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/085_core.flyte_basics.basic_workflow.my_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/085_core.flyte_basics.basic_workflow.my_wf_2_wf.yaml index 1f214840b1..2471c19aac 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/085_core.flyte_basics.basic_workflow.my_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/085_core.flyte_basics.basic_workflow.my_wf_2_wf.yaml @@ -101,8 +101,6 @@ spec: kind: task name: t1 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.basic_workflow.t1" ' n1: id: n1 @@ -120,8 +118,6 @@ spec: kind: task name: t2 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.basic_workflow.t2" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/089_core.flyte_basics.decorating_tasks.wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/089_core.flyte_basics.decorating_tasks.wf_2_wf.yaml index 265d00d750..bb3d279c16 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/089_core.flyte_basics.decorating_tasks.wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/089_core.flyte_basics.decorating_tasks.wf_2_wf.yaml @@ -86,8 +86,6 @@ spec: kind: task name: t1 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.decorating_tasks.t1" ' n1: id: n1 @@ -100,8 +98,6 @@ spec: kind: task name: t2 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.decorating_tasks.t2" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/095_core.flyte_basics.decorating_workflows.wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/095_core.flyte_basics.decorating_workflows.wf_2_wf.yaml index 64c2d33bdc..690370bf14 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/095_core.flyte_basics.decorating_workflows.wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/095_core.flyte_basics.decorating_workflows.wf_2_wf.yaml @@ -98,8 +98,6 @@ spec: kind: task name: setup resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.decorating_workflows.setup" ' n1: id: n1 @@ -112,8 +110,6 @@ spec: kind: task name: t1 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.decorating_workflows.t1" ' n2: id: n2 @@ -126,16 +122,12 @@ spec: kind: task name: t2 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.decorating_workflows.t2" ' n3: id: n3 kind: task name: teardown resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.decorating_workflows.teardown" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/098_core.flyte_basics.documented_workflow.sphinx_docstring_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/098_core.flyte_basics.documented_workflow.sphinx_docstring_2_wf.yaml index bea325ce83..5c33c67395 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/098_core.flyte_basics.documented_workflow.sphinx_docstring_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/098_core.flyte_basics.documented_workflow.sphinx_docstring_2_wf.yaml @@ -90,8 +90,6 @@ spec: kind: task name: add_data resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.documented_workflow.add_data" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/100_core.flyte_basics.documented_workflow.numpy_docstring_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/100_core.flyte_basics.documented_workflow.numpy_docstring_2_wf.yaml index 5bb3618837..c1d2d357da 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/100_core.flyte_basics.documented_workflow.numpy_docstring_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/100_core.flyte_basics.documented_workflow.numpy_docstring_2_wf.yaml @@ -90,8 +90,6 @@ spec: kind: task name: add_data resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.documented_workflow.add_data" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/102_core.flyte_basics.documented_workflow.google_docstring_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/102_core.flyte_basics.documented_workflow.google_docstring_2_wf.yaml index d7cf5ac8b6..2c781af52e 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/102_core.flyte_basics.documented_workflow.google_docstring_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/102_core.flyte_basics.documented_workflow.google_docstring_2_wf.yaml @@ -90,8 +90,6 @@ spec: kind: task name: add_data resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.documented_workflow.add_data" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/105_core.flyte_basics.files.normalize_csv_file_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/105_core.flyte_basics.files.normalize_csv_file_2_wf.yaml index b165329444..326658e0c0 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/105_core.flyte_basics.files.normalize_csv_file_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/105_core.flyte_basics.files.normalize_csv_file_2_wf.yaml @@ -113,8 +113,6 @@ spec: kind: task name: normalize_columns resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.files.normalize_columns" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/109_core.flyte_basics.folders.download_and_normalize_csv_files_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/109_core.flyte_basics.folders.download_and_normalize_csv_files_2_wf.yaml index 791dc12b85..421c42d822 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/109_core.flyte_basics.folders.download_and_normalize_csv_files_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/109_core.flyte_basics.folders.download_and_normalize_csv_files_2_wf.yaml @@ -107,8 +107,6 @@ spec: kind: task name: download_files resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.folders.download_files" ' n1: id: n1 @@ -131,8 +129,6 @@ spec: kind: task name: normalize_all_files resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.folders.normalize_all_files" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/112_core.flyte_basics.hello_world.my_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/112_core.flyte_basics.hello_world.my_wf_2_wf.yaml index 9cea7205bc..18b5cd57a7 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/112_core.flyte_basics.hello_world.my_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/112_core.flyte_basics.hello_world.my_wf_2_wf.yaml @@ -69,8 +69,6 @@ spec: kind: task name: say_hello resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.hello_world.say_hello" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/117_my.imperative.workflow.example_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/117_my.imperative.workflow.example_2_wf.yaml index 7ef5b34aa2..9063363372 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/117_my.imperative.workflow.example_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/117_my.imperative.workflow.example_2_wf.yaml @@ -112,16 +112,12 @@ spec: kind: task name: t1 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.imperative_wf_style.t1" ' n1: id: n1 kind: task name: t2 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.imperative_wf_style.t2" ' n2: id: n2 @@ -139,8 +135,6 @@ spec: kind: task name: t3 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.imperative_wf_style.t3" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/120_core.flyte_basics.lp.my_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/120_core.flyte_basics.lp.my_wf_2_wf.yaml index 4d461d672b..9f2e119810 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/120_core.flyte_basics.lp.my_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/120_core.flyte_basics.lp.my_wf_2_wf.yaml @@ -80,8 +80,6 @@ spec: kind: task name: square resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.lp.square" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/125_core.flyte_basics.lp.go_greet_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/125_core.flyte_basics.lp.go_greet_2_wf.yaml index 0f6aa74dda..dfd0880492 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/125_core.flyte_basics.lp.go_greet_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/125_core.flyte_basics.lp.go_greet_2_wf.yaml @@ -98,8 +98,6 @@ spec: kind: task name: greet resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.lp.greet" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/129_core.flyte_basics.named_outputs.my_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/129_core.flyte_basics.named_outputs.my_wf_2_wf.yaml index 86638b623c..753d9aa567 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/129_core.flyte_basics.named_outputs.my_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/129_core.flyte_basics.named_outputs.my_wf_2_wf.yaml @@ -83,16 +83,12 @@ spec: kind: task name: say_hello resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.named_outputs.say_hello" ' n1: id: n1 kind: task name: say_hello resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.named_outputs.say_hello" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/140_core.flyte_basics.shell_task.wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/140_core.flyte_basics.shell_task.wf_2_wf.yaml index 3e8cbbce62..db69412129 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/140_core.flyte_basics.shell_task.wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/140_core.flyte_basics.shell_task.wf_2_wf.yaml @@ -93,8 +93,6 @@ spec: kind: task name: create_entities resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.shell_task.create_entities" ' n1: id: n1 @@ -107,8 +105,6 @@ spec: kind: task name: task_1 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"task_1" ' n2: id: n2 @@ -126,8 +122,6 @@ spec: kind: task name: task_2 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"task_2" ' n3: id: n3 @@ -150,8 +144,6 @@ spec: kind: task name: task_3 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"task_3" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/147_core.flyte_basics.task_cache.cached_dataframe_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/147_core.flyte_basics.task_cache.cached_dataframe_wf_2_wf.yaml index 765b2dd800..4029e11de6 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/147_core.flyte_basics.task_cache.cached_dataframe_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/147_core.flyte_basics.task_cache.cached_dataframe_wf_2_wf.yaml @@ -87,8 +87,6 @@ spec: kind: task name: uncached_data_reading_task resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.task_cache.uncached_data_reading_task" ' n1: id: n1 @@ -101,8 +99,6 @@ spec: kind: task name: cached_data_processing_task resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.task_cache.cached_data_processing_task" ' n2: id: n2 @@ -115,8 +111,6 @@ spec: kind: task name: cached_data_processing_task resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.task_cache.cached_data_processing_task" ' n3: id: n3 @@ -134,8 +128,6 @@ spec: kind: task name: compare_dataframes resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.flyte_basics.task_cache.compare_dataframes" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/151_core.scheduled_workflows.lp_schedules.date_formatter_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/151_core.scheduled_workflows.lp_schedules.date_formatter_wf_2_wf.yaml index dfeda53b81..3a7094a8e3 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/151_core.scheduled_workflows.lp_schedules.date_formatter_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/151_core.scheduled_workflows.lp_schedules.date_formatter_wf_2_wf.yaml @@ -74,8 +74,6 @@ spec: kind: task name: format_date resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.scheduled_workflows.lp_schedules.format_date" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/155_core.scheduled_workflows.lp_schedules.positive_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/155_core.scheduled_workflows.lp_schedules.positive_wf_2_wf.yaml index 92c721784f..64e74df112 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/155_core.scheduled_workflows.lp_schedules.positive_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/155_core.scheduled_workflows.lp_schedules.positive_wf_2_wf.yaml @@ -74,8 +74,6 @@ spec: kind: task name: be_positive resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.scheduled_workflows.lp_schedules.be_positive" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/162_core.type_system.custom_objects.wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/162_core.type_system.custom_objects.wf_2_wf.yaml index b114270796..300cf2aa39 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/162_core.type_system.custom_objects.wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/162_core.type_system.custom_objects.wf_2_wf.yaml @@ -116,8 +116,6 @@ spec: kind: task name: upload_result resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.custom_objects.upload_result" ' n1: id: n1 @@ -130,8 +128,6 @@ spec: kind: task name: download_result resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.custom_objects.download_result" ' n2: id: n2 @@ -144,8 +140,6 @@ spec: kind: task name: stringify resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.custom_objects.stringify" ' n3: id: n3 @@ -158,8 +152,6 @@ spec: kind: task name: stringify resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.custom_objects.stringify" ' n4: id: n4 @@ -177,8 +169,6 @@ spec: kind: task name: add resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.custom_objects.add" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/166_core.type_system.enums.enum_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/166_core.type_system.enums.enum_wf_2_wf.yaml index 5eb063803b..176d7c573b 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/166_core.type_system.enums.enum_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/166_core.type_system.enums.enum_wf_2_wf.yaml @@ -94,8 +94,6 @@ spec: kind: task name: enum_stringify resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.enums.enum_stringify" ' n1: id: n1 @@ -108,8 +106,6 @@ spec: kind: task name: string_to_enum resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.enums.string_to_enum" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/169_core.type_system.flyte_pickle.welcome_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/169_core.type_system.flyte_pickle.welcome_2_wf.yaml index 0bcc757aab..e43de40f8c 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/169_core.type_system.flyte_pickle.welcome_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/169_core.type_system.flyte_pickle.welcome_2_wf.yaml @@ -80,8 +80,6 @@ spec: kind: task name: greet resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.flyte_pickle.greet" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/173_core.type_system.schema.df_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/173_core.type_system.schema.df_wf_2_wf.yaml index cf16bac0b9..82aae32866 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/173_core.type_system.schema.df_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/173_core.type_system.schema.df_wf_2_wf.yaml @@ -86,8 +86,6 @@ spec: kind: task name: get_df resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.schema.get_df" ' n1: id: n1 @@ -100,8 +98,6 @@ spec: kind: task name: add_df resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.schema.add_df" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/179_core.type_system.structured_dataset.pandas_compatibility_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/179_core.type_system.structured_dataset.pandas_compatibility_wf_2_wf.yaml index 12b2789192..eae182adf4 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/179_core.type_system.structured_dataset.pandas_compatibility_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/179_core.type_system.structured_dataset.pandas_compatibility_wf_2_wf.yaml @@ -92,8 +92,6 @@ spec: kind: task name: get_df resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.structured_dataset.get_df" ' n1: id: n1 @@ -106,8 +104,6 @@ spec: kind: task name: get_subset_df resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.structured_dataset.get_subset_df" ' n2: id: n2 @@ -120,8 +116,6 @@ spec: kind: task name: to_numpy resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.structured_dataset.to_numpy" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/181_core.type_system.structured_dataset.schema_compatibility_wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/181_core.type_system.structured_dataset.schema_compatibility_wf_2_wf.yaml index bde2f2892e..af5ad985af 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/181_core.type_system.structured_dataset.schema_compatibility_wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/181_core.type_system.structured_dataset.schema_compatibility_wf_2_wf.yaml @@ -92,8 +92,6 @@ spec: kind: task name: get_schema_df resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.structured_dataset.get_schema_df" ' n1: id: n1 @@ -106,8 +104,6 @@ spec: kind: task name: get_subset_df resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.structured_dataset.get_subset_df" ' n2: id: n2 @@ -120,8 +116,6 @@ spec: kind: task name: to_numpy resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.structured_dataset.to_numpy" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/185_core.type_system.typed_schema.wf_2_wf.yaml b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/185_core.type_system.typed_schema.wf_2_wf.yaml index bec4de68e4..b935136947 100755 --- a/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/185_core.type_system.typed_schema.wf_2_wf.yaml +++ b/flytepropeller/pkg/compiler/test/testdata/snacks-core/k8s/185_core.type_system.typed_schema.wf_2_wf.yaml @@ -75,8 +75,6 @@ spec: kind: task name: t1 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.typed_schema.t1" ' n1: id: n1 @@ -89,8 +87,6 @@ spec: kind: task name: t2 resources: {} - retry: - minAttempts: 1 task: 'resource_type:TASK name:"core.type_system.typed_schema.t2" ' start-node: id: start-node diff --git a/flytepropeller/pkg/compiler/transformers/k8s/utils.go b/flytepropeller/pkg/compiler/transformers/k8s/utils.go index 7669fe6cd1..963eefa614 100644 --- a/flytepropeller/pkg/compiler/transformers/k8s/utils.go +++ b/flytepropeller/pkg/compiler/transformers/k8s/utils.go @@ -19,13 +19,13 @@ func refStr(s string) *string { } func computeRetryStrategy(n *core.Node, t *core.TaskTemplate) *v1alpha1.RetryStrategy { - if n.GetMetadata() != nil && n.GetMetadata().GetRetries() != nil { + if n.GetMetadata() != nil && n.GetMetadata().GetRetries() != nil && n.GetMetadata().GetRetries().Retries != 0 { return &v1alpha1.RetryStrategy{ MinAttempts: refInt(int(n.GetMetadata().GetRetries().Retries + 1)), } } - if t != nil && t.GetMetadata() != nil && t.GetMetadata().GetRetries() != nil { + if t != nil && t.GetMetadata() != nil && t.GetMetadata().GetRetries() != nil && t.GetMetadata().GetRetries().Retries != 0 { return &v1alpha1.RetryStrategy{ MinAttempts: refInt(int(t.GetMetadata().GetRetries().Retries + 1)), } diff --git a/flytepropeller/pkg/compiler/validators/utils.go b/flytepropeller/pkg/compiler/validators/utils.go index e160a8eb84..462cb94905 100644 --- a/flytepropeller/pkg/compiler/validators/utils.go +++ b/flytepropeller/pkg/compiler/validators/utils.go @@ -2,6 +2,7 @@ package validators import ( "fmt" + "strings" "golang.org/x/exp/slices" @@ -184,7 +185,7 @@ func literalTypeForLiterals(literals []*core.Literal) *core.LiteralType { } // sort inner types to ensure consistent union types are generated - slices.SortFunc(innerType, func(a, b *core.LiteralType) bool { return a.String() < b.String() }) + slices.SortFunc(innerType, func(a, b *core.LiteralType) int { return strings.Compare(a.String(), b.String()) }) return &core.LiteralType{ Type: &core.LiteralType_UnionType{ diff --git a/flytepropeller/pkg/controller/config/config.go b/flytepropeller/pkg/controller/config/config.go index 06becf1dd1..f7d898634b 100644 --- a/flytepropeller/pkg/controller/config/config.go +++ b/flytepropeller/pkg/controller/config/config.go @@ -94,7 +94,9 @@ var ( }, NodeConfig: NodeConfig{ MaxNodeRetriesOnSystemFailures: 3, - InterruptibleFailureThreshold: 1, + InterruptibleFailureThreshold: -1, + DefaultMaxAttempts: 1, + IgnoreRetryCause: false, }, MaxStreakLength: 8, // Turbo mode is enabled by default ProfilerPort: config.Port{ @@ -111,6 +113,7 @@ var ( }, ClusterID: "propeller", CreateFlyteWorkflowCRD: false, + ArrayNodeEventVersion: 0, } ) @@ -150,6 +153,7 @@ type Config struct { ExcludeDomainLabel []string `json:"exclude-domain-label" pflag:",Exclude the specified domain label from the k8s FlyteWorkflow CRD label selector"` ClusterID string `json:"cluster-id" pflag:",Unique cluster id running this flytepropeller instance with which to annotate execution events"` CreateFlyteWorkflowCRD bool `json:"create-flyteworkflow-crd" pflag:",Enable creation of the FlyteWorkflow CRD on startup"` + ArrayNodeEventVersion int `json:"array-node-event-version" pflag:",ArrayNode eventing version. 0 => legacy (drop-in replacement for maptask), 1 => new"` } // KubeClientConfig contains the configuration used by flytepropeller to configure its internal Kubernetes Client. @@ -203,7 +207,9 @@ type WorkqueueConfig struct { type NodeConfig struct { DefaultDeadlines DefaultDeadlines `json:"default-deadlines,omitempty" pflag:",Default value for timeouts"` MaxNodeRetriesOnSystemFailures int64 `json:"max-node-retries-system-failures" pflag:"2,Maximum number of retries per node for node failure due to infra issues"` - InterruptibleFailureThreshold int64 `json:"interruptible-failure-threshold" pflag:"1,number of failures for a node to be still considered interruptible'"` + InterruptibleFailureThreshold int32 `json:"interruptible-failure-threshold" pflag:"1,number of failures for a node to be still considered interruptible. Negative numbers are treated as complementary (ex. -1 means last attempt is non-interruptible).'"` + DefaultMaxAttempts int32 `json:"default-max-attempts" pflag:"3,Default maximum number of attempts for a node"` + IgnoreRetryCause bool `json:"ignore-retry-cause" pflag:",Ignore retry cause and count all attempts toward a node's max attempts"` } // DefaultDeadlines contains default values for timeouts diff --git a/flytepropeller/pkg/controller/config/config_flags.go b/flytepropeller/pkg/controller/config/config_flags.go index 6b718c73a5..8e9c71bcdb 100755 --- a/flytepropeller/pkg/controller/config/config_flags.go +++ b/flytepropeller/pkg/controller/config/config_flags.go @@ -93,7 +93,9 @@ func (cfg Config) GetPFlagSet(prefix string) *pflag.FlagSet { cmdFlags.String(fmt.Sprintf("%v%v", prefix, "node-config.default-deadlines.node-active-deadline"), defaultConfig.NodeConfig.DefaultDeadlines.DefaultNodeActiveDeadline.String(), "Default value of node timeout that includes the time spent queued.") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "node-config.default-deadlines.workflow-active-deadline"), defaultConfig.NodeConfig.DefaultDeadlines.DefaultWorkflowActiveDeadline.String(), "Default value of workflow timeout that includes the time spent queued.") cmdFlags.Int64(fmt.Sprintf("%v%v", prefix, "node-config.max-node-retries-system-failures"), defaultConfig.NodeConfig.MaxNodeRetriesOnSystemFailures, "Maximum number of retries per node for node failure due to infra issues") - cmdFlags.Int64(fmt.Sprintf("%v%v", prefix, "node-config.interruptible-failure-threshold"), defaultConfig.NodeConfig.InterruptibleFailureThreshold, "number of failures for a node to be still considered interruptible'") + cmdFlags.Int32(fmt.Sprintf("%v%v", prefix, "node-config.interruptible-failure-threshold"), defaultConfig.NodeConfig.InterruptibleFailureThreshold, "number of failures for a node to be still considered interruptible. Negative numbers are treated as complementary (ex. -1 means last attempt is non-interruptible).'") + cmdFlags.Int32(fmt.Sprintf("%v%v", prefix, "node-config.default-max-attempts"), defaultConfig.NodeConfig.DefaultMaxAttempts, "Default maximum number of attempts for a node") + cmdFlags.Bool(fmt.Sprintf("%v%v", prefix, "node-config.ignore-retry-cause"), defaultConfig.NodeConfig.IgnoreRetryCause, "Ignore retry cause and count all attempts toward a node's max attempts") cmdFlags.Int(fmt.Sprintf("%v%v", prefix, "max-streak-length"), defaultConfig.MaxStreakLength, "Maximum number of consecutive rounds that one propeller worker can use for one workflow - >1 => turbo-mode is enabled.") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "event-config.raw-output-policy"), defaultConfig.EventConfig.RawOutputPolicy, "How output data should be passed along in execution events.") cmdFlags.Bool(fmt.Sprintf("%v%v", prefix, "event-config.fallback-to-output-reference"), defaultConfig.EventConfig.FallbackToOutputReference, "Whether output data should be sent by reference when it is too large to be sent inline in execution events.") @@ -105,5 +107,6 @@ func (cfg Config) GetPFlagSet(prefix string) *pflag.FlagSet { cmdFlags.StringSlice(fmt.Sprintf("%v%v", prefix, "exclude-domain-label"), defaultConfig.ExcludeDomainLabel, "Exclude the specified domain label from the k8s FlyteWorkflow CRD label selector") cmdFlags.String(fmt.Sprintf("%v%v", prefix, "cluster-id"), defaultConfig.ClusterID, "Unique cluster id running this flytepropeller instance with which to annotate execution events") cmdFlags.Bool(fmt.Sprintf("%v%v", prefix, "create-flyteworkflow-crd"), defaultConfig.CreateFlyteWorkflowCRD, "Enable creation of the FlyteWorkflow CRD on startup") + cmdFlags.Int(fmt.Sprintf("%v%v", prefix, "array-node-event-version"), defaultConfig.ArrayNodeEventVersion, "ArrayNode eventing version. 0 => legacy (drop-in replacement for maptask), 1 => new") return cmdFlags } diff --git a/flytepropeller/pkg/controller/config/config_flags_test.go b/flytepropeller/pkg/controller/config/config_flags_test.go index 41dc1256f7..f48d01ebea 100755 --- a/flytepropeller/pkg/controller/config/config_flags_test.go +++ b/flytepropeller/pkg/controller/config/config_flags_test.go @@ -707,8 +707,36 @@ func TestConfig_SetFlags(t *testing.T) { testValue := "1" cmdFlags.Set("node-config.interruptible-failure-threshold", testValue) - if vInt64, err := cmdFlags.GetInt64("node-config.interruptible-failure-threshold"); err == nil { - testDecodeJson_Config(t, fmt.Sprintf("%v", vInt64), &actual.NodeConfig.InterruptibleFailureThreshold) + if vInt32, err := cmdFlags.GetInt32("node-config.interruptible-failure-threshold"); err == nil { + testDecodeJson_Config(t, fmt.Sprintf("%v", vInt32), &actual.NodeConfig.InterruptibleFailureThreshold) + + } else { + assert.FailNow(t, err.Error()) + } + }) + }) + t.Run("Test_node-config.default-max-attempts", func(t *testing.T) { + + t.Run("Override", func(t *testing.T) { + testValue := "1" + + cmdFlags.Set("node-config.default-max-attempts", testValue) + if vInt32, err := cmdFlags.GetInt32("node-config.default-max-attempts"); err == nil { + testDecodeJson_Config(t, fmt.Sprintf("%v", vInt32), &actual.NodeConfig.DefaultMaxAttempts) + + } else { + assert.FailNow(t, err.Error()) + } + }) + }) + t.Run("Test_node-config.ignore-retry-cause", func(t *testing.T) { + + t.Run("Override", func(t *testing.T) { + testValue := "1" + + cmdFlags.Set("node-config.ignore-retry-cause", testValue) + if vBool, err := cmdFlags.GetBool("node-config.ignore-retry-cause"); err == nil { + testDecodeJson_Config(t, fmt.Sprintf("%v", vBool), &actual.NodeConfig.IgnoreRetryCause) } else { assert.FailNow(t, err.Error()) @@ -869,4 +897,18 @@ func TestConfig_SetFlags(t *testing.T) { } }) }) + t.Run("Test_array-node-event-version", func(t *testing.T) { + + t.Run("Override", func(t *testing.T) { + testValue := "1" + + cmdFlags.Set("array-node-event-version", testValue) + if vInt, err := cmdFlags.GetInt("array-node-event-version"); err == nil { + testDecodeJson_Config(t, fmt.Sprintf("%v", vInt), &actual.ArrayNodeEventVersion) + + } else { + assert.FailNow(t, err.Error()) + } + }) + }) } diff --git a/flytepropeller/pkg/controller/nodes/array/event_recorder.go b/flytepropeller/pkg/controller/nodes/array/event_recorder.go new file mode 100644 index 0000000000..d202fa3fbd --- /dev/null +++ b/flytepropeller/pkg/controller/nodes/array/event_recorder.go @@ -0,0 +1,209 @@ +package array + +import ( + "context" + "fmt" + "time" + + idlcore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1" + "github.com/flyteorg/flyte/flytepropeller/pkg/controller/config" + "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/common" + "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/interfaces" + "github.com/golang/protobuf/ptypes" +) + +type arrayEventRecorder interface { + interfaces.EventRecorder + process(ctx context.Context, nCtx interfaces.NodeExecutionContext, index int, retryAttempt uint32) + finalize(ctx context.Context, nCtx interfaces.NodeExecutionContext, taskPhase idlcore.TaskExecution_Phase, taskPhaseVersion uint32, eventConfig *config.EventConfig) error + finalizeRequired(ctx context.Context) bool +} + +type externalResourcesEventRecorder struct { + interfaces.EventRecorder + externalResources []*event.ExternalResourceInfo + nodeEvents []*event.NodeExecutionEvent + taskEvents []*event.TaskExecutionEvent +} + +func (e *externalResourcesEventRecorder) RecordNodeEvent(ctx context.Context, event *event.NodeExecutionEvent, eventConfig *config.EventConfig) error { + e.nodeEvents = append(e.nodeEvents, event) + return nil +} + +func (e *externalResourcesEventRecorder) RecordTaskEvent(ctx context.Context, event *event.TaskExecutionEvent, eventConfig *config.EventConfig) error { + e.taskEvents = append(e.taskEvents, event) + return nil +} + +func (e *externalResourcesEventRecorder) process(ctx context.Context, nCtx interfaces.NodeExecutionContext, index int, retryAttempt uint32) { + externalResourceID := fmt.Sprintf("%s-%d", buildSubNodeID(nCtx, index), retryAttempt) + + // process events + cacheStatus := idlcore.CatalogCacheStatus_CACHE_DISABLED + for _, nodeExecutionEvent := range e.nodeEvents { + switch target := nodeExecutionEvent.TargetMetadata.(type) { + case *event.NodeExecutionEvent_TaskNodeMetadata: + if target.TaskNodeMetadata != nil { + cacheStatus = target.TaskNodeMetadata.CacheStatus + } + } + } + + // fastcache will not emit task events for cache hits. we need to manually detect a + // transition to `SUCCEEDED` and add an `ExternalResourceInfo` for it. + if cacheStatus == idlcore.CatalogCacheStatus_CACHE_HIT && len(e.taskEvents) == 0 { + e.externalResources = append(e.externalResources, &event.ExternalResourceInfo{ + ExternalId: externalResourceID, + Index: uint32(index), + RetryAttempt: retryAttempt, + Phase: idlcore.TaskExecution_SUCCEEDED, + CacheStatus: cacheStatus, + }) + } + + for _, taskExecutionEvent := range e.taskEvents { + for _, log := range taskExecutionEvent.Logs { + log.Name = fmt.Sprintf("%s-%d", log.Name, index) + } + + e.externalResources = append(e.externalResources, &event.ExternalResourceInfo{ + ExternalId: externalResourceID, + Index: uint32(index), + Logs: taskExecutionEvent.Logs, + RetryAttempt: retryAttempt, + Phase: taskExecutionEvent.Phase, + CacheStatus: cacheStatus, + }) + } + + // clear nodeEvents and taskEvents + e.nodeEvents = e.nodeEvents[:0] + e.taskEvents = e.taskEvents[:0] +} + +func (e *externalResourcesEventRecorder) finalize(ctx context.Context, nCtx interfaces.NodeExecutionContext, + taskPhase idlcore.TaskExecution_Phase, taskPhaseVersion uint32, eventConfig *config.EventConfig) error { + + // build TaskExecutionEvent + occurredAt, err := ptypes.TimestampProto(time.Now()) + if err != nil { + return err + } + + nodeExecutionID := *nCtx.NodeExecutionMetadata().GetNodeExecutionID() + if nCtx.ExecutionContext().GetEventVersion() != v1alpha1.EventVersion0 { + currentNodeUniqueID, err := common.GenerateUniqueID(nCtx.ExecutionContext().GetParentInfo(), nodeExecutionID.NodeId) + if err != nil { + return err + } + nodeExecutionID.NodeId = currentNodeUniqueID + } + + workflowExecutionID := nodeExecutionID.ExecutionId + + taskExecutionEvent := &event.TaskExecutionEvent{ + TaskId: &idlcore.Identifier{ + ResourceType: idlcore.ResourceType_TASK, + Project: workflowExecutionID.Project, + Domain: workflowExecutionID.Domain, + Name: nCtx.NodeID(), + Version: "v1", // this value is irrelevant but necessary for the identifier to be valid + }, + ParentNodeExecutionId: &nodeExecutionID, + RetryAttempt: 0, // ArrayNode will never retry + Phase: taskPhase, + PhaseVersion: taskPhaseVersion, + OccurredAt: occurredAt, + Metadata: &event.TaskExecutionMetadata{ + ExternalResources: e.externalResources, + }, + TaskType: "k8s-array", + EventVersion: 1, + } + + // record TaskExecutionEvent + return e.EventRecorder.RecordTaskEvent(ctx, taskExecutionEvent, eventConfig) +} + +func (e *externalResourcesEventRecorder) finalizeRequired(ctx context.Context) bool { + return len(e.externalResources) > 0 +} + +type passThroughEventRecorder struct { + interfaces.EventRecorder +} + +func (*passThroughEventRecorder) process(ctx context.Context, nCtx interfaces.NodeExecutionContext, index int, retryAttempt uint32) { +} + +func (*passThroughEventRecorder) finalize(ctx context.Context, nCtx interfaces.NodeExecutionContext, + taskPhase idlcore.TaskExecution_Phase, taskPhaseVersion uint32, eventConfig *config.EventConfig) error { + return nil +} + +func (*passThroughEventRecorder) finalizeRequired(ctx context.Context) bool { + return false +} + +func newArrayEventRecorder(eventRecorder interfaces.EventRecorder) arrayEventRecorder { + if config.GetConfig().ArrayNodeEventVersion == 0 { + return &externalResourcesEventRecorder{ + EventRecorder: eventRecorder, + } + } + + return &passThroughEventRecorder{ + EventRecorder: eventRecorder, + } +} + +func sendEvents(ctx context.Context, nCtx interfaces.NodeExecutionContext, index int, retryAttempt uint32, nodePhase idlcore.NodeExecution_Phase, + taskPhase idlcore.TaskExecution_Phase, eventRecorder interfaces.EventRecorder, eventConfig *config.EventConfig) error { + + subNodeID := buildSubNodeID(nCtx, index) + timestamp := ptypes.TimestampNow() + workflowExecutionID := nCtx.ExecutionContext().GetExecutionID().WorkflowExecutionIdentifier + + // send NodeExecutionEvent + nodeExecutionEvent := &event.NodeExecutionEvent{ + Id: &idlcore.NodeExecutionIdentifier{ + NodeId: subNodeID, + ExecutionId: workflowExecutionID, + }, + Phase: nodePhase, + OccurredAt: timestamp, + ParentNodeMetadata: &event.ParentNodeExecutionMetadata{ + NodeId: nCtx.NodeID(), + }, + ReportedAt: timestamp, + } + + if err := eventRecorder.RecordNodeEvent(ctx, nodeExecutionEvent, eventConfig); err != nil { + return err + } + + // send TaskExeucutionEvent + taskExecutionEvent := &event.TaskExecutionEvent{ + TaskId: &idlcore.Identifier{ + ResourceType: idlcore.ResourceType_TASK, + Project: workflowExecutionID.Project, + Domain: workflowExecutionID.Domain, + Name: fmt.Sprintf("%s-%d", buildSubNodeID(nCtx, index), retryAttempt), + Version: "v1", // this value is irrelevant but necessary for the identifier to be valid + }, + ParentNodeExecutionId: nodeExecutionEvent.Id, + Phase: taskPhase, + TaskType: "k8s-array", + OccurredAt: timestamp, + ReportedAt: timestamp, + } + + if err := eventRecorder.RecordTaskEvent(ctx, taskExecutionEvent, eventConfig); err != nil { + return err + } + + return nil +} diff --git a/flytepropeller/pkg/controller/nodes/array/event_recorder_test.go b/flytepropeller/pkg/controller/nodes/array/event_recorder_test.go new file mode 100644 index 0000000000..9d0f6faeb5 --- /dev/null +++ b/flytepropeller/pkg/controller/nodes/array/event_recorder_test.go @@ -0,0 +1,27 @@ +package array + +import ( + "context" + + "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" + "github.com/flyteorg/flyte/flytepropeller/pkg/controller/config" +) + +type bufferedEventRecorder struct { + taskExecutionEvents []*event.TaskExecutionEvent + nodeExecutionEvents []*event.NodeExecutionEvent +} + +func (b *bufferedEventRecorder) RecordTaskEvent(ctx context.Context, taskExecutionEvent *event.TaskExecutionEvent, eventConfig *config.EventConfig) error { + b.taskExecutionEvents = append(b.taskExecutionEvents, taskExecutionEvent) + return nil +} + +func (b *bufferedEventRecorder) RecordNodeEvent(ctx context.Context, nodeExecutionEvent *event.NodeExecutionEvent, eventConfig *config.EventConfig) error { + b.nodeExecutionEvents = append(b.nodeExecutionEvents, nodeExecutionEvent) + return nil +} + +func newBufferedEventRecorder() *bufferedEventRecorder { + return &bufferedEventRecorder{} +} diff --git a/flytepropeller/pkg/controller/nodes/array/handler.go b/flytepropeller/pkg/controller/nodes/array/handler.go index 2e4982927c..b24e513857 100644 --- a/flytepropeller/pkg/controller/nodes/array/handler.go +++ b/flytepropeller/pkg/controller/nodes/array/handler.go @@ -7,7 +7,6 @@ import ( "strconv" idlcore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" - "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core" "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils" @@ -18,10 +17,10 @@ import ( "github.com/flyteorg/flyte/flytepropeller/pkg/compiler/validators" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/config" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors" + "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/common" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/errors" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/handler" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/interfaces" - "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/task" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/task/k8s" "github.com/flyteorg/flyte/flytestdlib/bitarray" @@ -70,7 +69,7 @@ func (a *arrayNodeHandler) Abort(ctx context.Context, nCtx interfaces.NodeExecut arrayNode := nCtx.Node().GetArrayNode() arrayNodeState := nCtx.NodeStateReader().GetArrayNodeState() - externalResources := make([]*event.ExternalResourceInfo, 0, len(arrayNodeState.SubNodePhases.GetItems())) + eventRecorder := newArrayEventRecorder(nCtx.EventsRecorder()) messageCollector := errorcollector.NewErrorMessageCollector() switch arrayNodeState.Phase { case v1alpha1.ArrayNodePhaseExecuting, v1alpha1.ArrayNodePhaseFailing: @@ -84,8 +83,8 @@ func (a *arrayNodeHandler) Abort(ctx context.Context, nCtx interfaces.NodeExecut } // create array contexts - arrayNodeExecutor, arrayExecutionContext, arrayDAGStructure, arrayNodeLookup, subNodeSpec, _, _, err := - a.buildArrayNodeContext(ctx, nCtx, &arrayNodeState, arrayNode, i, ¤tParallelism) + arrayNodeExecutor, arrayExecutionContext, arrayDAGStructure, arrayNodeLookup, subNodeSpec, _, err := + a.buildArrayNodeContext(ctx, nCtx, &arrayNodeState, arrayNode, i, ¤tParallelism, eventRecorder) if err != nil { return err } @@ -95,13 +94,13 @@ func (a *arrayNodeHandler) Abort(ctx context.Context, nCtx interfaces.NodeExecut if err != nil { messageCollector.Collect(i, err.Error()) } else { - externalResources = append(externalResources, &event.ExternalResourceInfo{ - ExternalId: buildSubNodeID(nCtx, i, 0), - Index: uint32(i), - Logs: nil, - RetryAttempt: 0, - Phase: idlcore.TaskExecution_ABORTED, - }) + // record events transitioning subNodes to aborted + retryAttempt := uint32(arrayNodeState.SubNodeRetryAttempts.GetItem(i)) + if err := sendEvents(ctx, nCtx, i, retryAttempt, idlcore.NodeExecution_ABORTED, idlcore.TaskExecution_ABORTED, eventRecorder, a.eventConfig); err != nil { + logger.Warnf(ctx, "failed to record ArrayNode events: %v", err) + } + + eventRecorder.process(ctx, nCtx, i, retryAttempt) } } } @@ -110,13 +109,8 @@ func (a *arrayNodeHandler) Abort(ctx context.Context, nCtx interfaces.NodeExecut return fmt.Errorf(messageCollector.Summary(events.MaxErrorMessageLength)) } - // update aborted state for subNodes - taskExecutionEvent, err := buildTaskExecutionEvent(ctx, nCtx, idlcore.TaskExecution_ABORTED, 0, externalResources) - if err != nil { - return err - } - - if err := nCtx.EventsRecorder().RecordTaskEvent(ctx, taskExecutionEvent, a.eventConfig); err != nil { + // update state for subNodes + if err := eventRecorder.finalize(ctx, nCtx, idlcore.TaskExecution_ABORTED, 0, a.eventConfig); err != nil { logger.Errorf(ctx, "ArrayNode event recording failed: [%s]", err.Error()) return err } @@ -129,6 +123,7 @@ func (a *arrayNodeHandler) Finalize(ctx context.Context, nCtx interfaces.NodeExe arrayNode := nCtx.Node().GetArrayNode() arrayNodeState := nCtx.NodeStateReader().GetArrayNodeState() + eventRecorder := newArrayEventRecorder(nCtx.EventsRecorder()) messageCollector := errorcollector.NewErrorMessageCollector() switch arrayNodeState.Phase { case v1alpha1.ArrayNodePhaseExecuting, v1alpha1.ArrayNodePhaseFailing, v1alpha1.ArrayNodePhaseSucceeding: @@ -142,8 +137,8 @@ func (a *arrayNodeHandler) Finalize(ctx context.Context, nCtx interfaces.NodeExe } // create array contexts - arrayNodeExecutor, arrayExecutionContext, arrayDAGStructure, arrayNodeLookup, subNodeSpec, _, _, err := - a.buildArrayNodeContext(ctx, nCtx, &arrayNodeState, arrayNode, i, ¤tParallelism) + arrayNodeExecutor, arrayExecutionContext, arrayDAGStructure, arrayNodeLookup, subNodeSpec, _, err := + a.buildArrayNodeContext(ctx, nCtx, &arrayNodeState, arrayNode, i, ¤tParallelism, eventRecorder) if err != nil { return err } @@ -177,8 +172,8 @@ func (a *arrayNodeHandler) Handle(ctx context.Context, nCtx interfaces.NodeExecu arrayNodeState := nCtx.NodeStateReader().GetArrayNodeState() currentArrayNodePhase := arrayNodeState.Phase - var externalResources []*event.ExternalResourceInfo taskPhaseVersion := arrayNodeState.TaskPhaseVersion + eventRecorder := newArrayEventRecorder(nCtx.EventsRecorder()) switch currentArrayNodePhase { case v1alpha1.ArrayNodePhaseNone: @@ -213,7 +208,7 @@ func (a *arrayNodeHandler) Handle(ctx context.Context, nCtx interfaces.NodeExecu } // initialize ArrayNode state - maxAttempts := task.DefaultMaxAttempts + maxAttempts := int(config.GetConfig().NodeConfig.DefaultMaxAttempts) subNodeSpec := *arrayNode.GetSubNodeSpec() if subNodeSpec.GetRetryStrategy() != nil && subNodeSpec.GetRetryStrategy().MinAttempts != nil { maxAttempts = *subNodeSpec.GetRetryStrategy().MinAttempts @@ -237,16 +232,13 @@ func (a *arrayNodeHandler) Handle(ctx context.Context, nCtx interfaces.NodeExecu } } - // initialize externalResources - externalResources = make([]*event.ExternalResourceInfo, 0, size) + // initialize subNode status by faking events for i := 0; i < size; i++ { - externalResources = append(externalResources, &event.ExternalResourceInfo{ - ExternalId: buildSubNodeID(nCtx, i, 0), - Index: uint32(i), - Logs: nil, - RetryAttempt: 0, - Phase: idlcore.TaskExecution_QUEUED, - }) + if err := sendEvents(ctx, nCtx, i, 0, idlcore.NodeExecution_QUEUED, idlcore.TaskExecution_UNDEFINED, eventRecorder, a.eventConfig); err != nil { + logger.Warnf(ctx, "failed to record ArrayNode events: %v", err) + } + + eventRecorder.process(ctx, nCtx, i, 0) } // transition ArrayNode to `ArrayNodePhaseExecuting` @@ -255,7 +247,6 @@ func (a *arrayNodeHandler) Handle(ctx context.Context, nCtx interfaces.NodeExecu // process array node subNodes currentParallelism := uint32(0) messageCollector := errorcollector.NewErrorMessageCollector() - externalResources = make([]*event.ExternalResourceInfo, 0) for i, nodePhaseUint64 := range arrayNodeState.SubNodePhases.GetItems() { nodePhase := v1alpha1.NodePhase(nodePhaseUint64) @@ -265,8 +256,8 @@ func (a *arrayNodeHandler) Handle(ctx context.Context, nCtx interfaces.NodeExecu } // create array contexts - arrayNodeExecutor, arrayExecutionContext, arrayDAGStructure, arrayNodeLookup, subNodeSpec, subNodeStatus, arrayEventRecorder, err := - a.buildArrayNodeContext(ctx, nCtx, &arrayNodeState, arrayNode, i, ¤tParallelism) + arrayNodeExecutor, arrayExecutionContext, arrayDAGStructure, arrayNodeLookup, subNodeSpec, subNodeStatus, err := + a.buildArrayNodeContext(ctx, nCtx, &arrayNodeState, arrayNode, i, ¤tParallelism, eventRecorder) if err != nil { return handler.UnknownTransition, err } @@ -283,44 +274,7 @@ func (a *arrayNodeHandler) Handle(ctx context.Context, nCtx interfaces.NodeExecu } // process events - cacheStatus := idlcore.CatalogCacheStatus_CACHE_DISABLED - for _, nodeExecutionEvent := range arrayEventRecorder.NodeEvents() { - switch target := nodeExecutionEvent.TargetMetadata.(type) { - case *event.NodeExecutionEvent_TaskNodeMetadata: - if target.TaskNodeMetadata != nil { - cacheStatus = target.TaskNodeMetadata.CacheStatus - } - } - } - - retryAttempt := subNodeStatus.GetAttempts() - - // fastcache will not emit task events for cache hits. we need to manually detect a - // transition to `SUCCEEDED` and add an `ExternalResourceInfo` for it. - if cacheStatus == idlcore.CatalogCacheStatus_CACHE_HIT && len(arrayEventRecorder.TaskEvents()) == 0 { - externalResources = append(externalResources, &event.ExternalResourceInfo{ - ExternalId: buildSubNodeID(nCtx, i, retryAttempt), - Index: uint32(i), - RetryAttempt: retryAttempt, - Phase: idlcore.TaskExecution_SUCCEEDED, - CacheStatus: cacheStatus, - }) - } - - for _, taskExecutionEvent := range arrayEventRecorder.TaskEvents() { - for _, log := range taskExecutionEvent.Logs { - log.Name = fmt.Sprintf("%s-%d", log.Name, i) - } - - externalResources = append(externalResources, &event.ExternalResourceInfo{ - ExternalId: buildSubNodeID(nCtx, i, retryAttempt), - Index: uint32(i), - Logs: taskExecutionEvent.Logs, - RetryAttempt: retryAttempt, - Phase: taskExecutionEvent.Phase, - CacheStatus: cacheStatus, - }) - } + eventRecorder.process(ctx, nCtx, i, subNodeStatus.GetAttempts()) // update subNode state arrayNodeState.SubNodePhases.SetItem(i, uint64(subNodeStatus.GetPhase())) @@ -462,9 +416,9 @@ func (a *arrayNodeHandler) Handle(ctx context.Context, nCtx interfaces.NodeExecu return handler.UnknownTransition, errors.Errorf(errors.IllegalStateError, nCtx.NodeID(), "invalid ArrayNode phase %+v", arrayNodeState.Phase) } - // if there were changes to subNode status externalResources will be populated and must be - // reported to admin through a TaskExecutionEvent. - if len(externalResources) > 0 { + // if there were changes to subNode status then the eventRecorder will require finalizing to + // report to admin through a TaskExecutionEvent. + if eventRecorder.finalizeRequired(ctx) { // determine task phase from ArrayNodePhase taskPhase := idlcore.TaskExecution_UNDEFINED switch currentArrayNodePhase { @@ -488,12 +442,7 @@ func (a *arrayNodeHandler) Handle(ctx context.Context, nCtx interfaces.NodeExecu arrayNodeState.TaskPhaseVersion = taskPhaseVersion + 1 } - taskExecutionEvent, err := buildTaskExecutionEvent(ctx, nCtx, taskPhase, taskPhaseVersion, externalResources) - if err != nil { - return handler.UnknownTransition, err - } - - if err := nCtx.EventsRecorder().RecordTaskEvent(ctx, taskExecutionEvent, a.eventConfig); err != nil { + if err := eventRecorder.finalize(ctx, nCtx, taskPhase, taskPhaseVersion, a.eventConfig); err != nil { logger.Errorf(ctx, "ArrayNode event recording failed: [%s]", err.Error()) return handler.UnknownTransition, err } @@ -541,8 +490,8 @@ func New(nodeExecutor interfaces.Node, eventConfig *config.EventConfig, scope pr // but need many different execution details, for example setting input values as a singular item rather than a collection, // injecting environment variables for flytekit maptask execution, aggregating eventing so that rather than tracking state for // each subnode individually it sends a single event for the whole ArrayNode, and many more. -func (a *arrayNodeHandler) buildArrayNodeContext(ctx context.Context, nCtx interfaces.NodeExecutionContext, arrayNodeState *handler.ArrayNodeState, arrayNode v1alpha1.ExecutableArrayNode, subNodeIndex int, currentParallelism *uint32) ( - interfaces.Node, executors.ExecutionContext, executors.DAGStructure, executors.NodeLookup, *v1alpha1.NodeSpec, *v1alpha1.NodeStatus, *arrayEventRecorder, error) { +func (a *arrayNodeHandler) buildArrayNodeContext(ctx context.Context, nCtx interfaces.NodeExecutionContext, arrayNodeState *handler.ArrayNodeState, arrayNode v1alpha1.ExecutableArrayNode, subNodeIndex int, currentParallelism *uint32, eventRecorder arrayEventRecorder) ( + interfaces.Node, executors.ExecutionContext, executors.DAGStructure, executors.NodeLookup, *v1alpha1.NodeSpec, *v1alpha1.NodeStatus, error) { nodePhase := v1alpha1.NodePhase(arrayNodeState.SubNodePhases.GetItem(subNodeIndex)) taskPhase := int(arrayNodeState.SubNodeTaskPhases.GetItem(subNodeIndex)) @@ -550,7 +499,7 @@ func (a *arrayNodeHandler) buildArrayNodeContext(ctx context.Context, nCtx inter // need to initialize the inputReader every time to ensure TaskHandler can access for cache lookups / population inputLiteralMap, err := constructLiteralMap(ctx, nCtx.InputReader(), subNodeIndex) if err != nil { - return nil, nil, nil, nil, nil, nil, nil, err + return nil, nil, nil, nil, nil, nil, err } inputReader := newStaticInputReader(nCtx.InputReader(), inputLiteralMap) @@ -558,7 +507,7 @@ func (a *arrayNodeHandler) buildArrayNodeContext(ctx context.Context, nCtx inter // wrap node lookup subNodeSpec := *arrayNode.GetSubNodeSpec() - subNodeID := fmt.Sprintf("%s-n%d", nCtx.NodeID(), subNodeIndex) + subNodeID := fmt.Sprintf("n%d", subNodeIndex) subNodeSpec.ID = subNodeID subNodeSpec.Name = subNodeID // mock the input bindings for the subNode to nil to bypass input resolution in the @@ -579,7 +528,7 @@ func (a *arrayNodeHandler) buildArrayNodeContext(ctx context.Context, nCtx inter currentAttempt := uint32(arrayNodeState.SubNodeRetryAttempts.GetItem(subNodeIndex)) subDataDir, subOutputDir, err := constructOutputReferences(ctx, nCtx, strconv.Itoa(subNodeIndex), strconv.Itoa(int(currentAttempt))) if err != nil { - return nil, nil, nil, nil, nil, nil, nil, err + return nil, nil, nil, nil, nil, nil, err } subNodeStatus := &v1alpha1.NodeStatus{ @@ -597,12 +546,17 @@ func (a *arrayNodeHandler) buildArrayNodeContext(ctx context.Context, nCtx inter // initialize mocks arrayNodeLookup := newArrayNodeLookup(nCtx.ContextualNodeLookup(), subNodeID, &subNodeSpec, subNodeStatus) - arrayExecutionContext := newArrayExecutionContext(nCtx.ExecutionContext(), subNodeIndex, currentParallelism, arrayNode.GetParallelism()) + newParentInfo, err := common.CreateParentInfo(nCtx.ExecutionContext().GetParentInfo(), nCtx.NodeID(), nCtx.CurrentAttempt()) + if err != nil { + return nil, nil, nil, nil, nil, nil, err + } + arrayExecutionContext := newArrayExecutionContext( + executors.NewExecutionContextWithParentInfo(nCtx.ExecutionContext(), newParentInfo), + subNodeIndex, currentParallelism, arrayNode.GetParallelism()) - arrayEventRecorder := newArrayEventRecorder() arrayNodeExecutionContextBuilder := newArrayNodeExecutionContextBuilder(a.nodeExecutor.GetNodeExecutionContextBuilder(), - subNodeID, subNodeIndex, subNodeStatus, inputReader, arrayEventRecorder, currentParallelism, arrayNode.GetParallelism()) + subNodeID, subNodeIndex, subNodeStatus, inputReader, currentParallelism, arrayNode.GetParallelism(), eventRecorder) arrayNodeExecutor := a.nodeExecutor.WithNodeExecutionContextBuilder(arrayNodeExecutionContextBuilder) - return arrayNodeExecutor, arrayExecutionContext, &arrayNodeLookup, &arrayNodeLookup, &subNodeSpec, subNodeStatus, arrayEventRecorder, nil + return arrayNodeExecutor, arrayExecutionContext, &arrayNodeLookup, &arrayNodeLookup, &subNodeSpec, subNodeStatus, nil } diff --git a/flytepropeller/pkg/controller/nodes/array/handler_test.go b/flytepropeller/pkg/controller/nodes/array/handler_test.go index 24ea611fbb..5dd2b1f62d 100644 --- a/flytepropeller/pkg/controller/nodes/array/handler_test.go +++ b/flytepropeller/pkg/controller/nodes/array/handler_test.go @@ -73,6 +73,7 @@ func createNodeExecutionContext(dataStore *storage.DataStore, eventRecorder inte nCtx := &mocks.NodeExecutionContext{} nCtx.OnMaxDatasetSizeBytes().Return(9999999) + nCtx.OnCurrentAttempt().Return(uint32(0)) // ContextualNodeLookup nodeLookup := &execmocks.NodeLookup{} @@ -243,7 +244,7 @@ func TestAbort(t *testing.T) { } // create NodeExecutionContext - eventRecorder := newArrayEventRecorder() + eventRecorder := newBufferedEventRecorder() nCtx := createNodeExecutionContext(dataStore, eventRecorder, nil, literalMap, &arrayNodeSpec, arrayNodeState) // evaluate node @@ -252,15 +253,15 @@ func TestAbort(t *testing.T) { nodeHandler.AssertNumberOfCalls(t, "Abort", len(test.expectedExternalResourcePhases)) if len(test.expectedExternalResourcePhases) > 0 { - assert.Equal(t, 1, len(eventRecorder.taskEvents)) + assert.Equal(t, 1, len(eventRecorder.taskExecutionEvents)) - externalResources := eventRecorder.taskEvents[0].Metadata.GetExternalResources() + externalResources := eventRecorder.taskExecutionEvents[0].Metadata.GetExternalResources() assert.Equal(t, len(test.expectedExternalResourcePhases), len(externalResources)) for i, expectedPhase := range test.expectedExternalResourcePhases { assert.Equal(t, expectedPhase, externalResources[i].Phase) } } else { - assert.Equal(t, 0, len(eventRecorder.taskEvents)) + assert.Equal(t, 0, len(eventRecorder.taskExecutionEvents)) } }) } @@ -339,7 +340,7 @@ func TestFinalize(t *testing.T) { } // create NodeExecutionContext - eventRecorder := newArrayEventRecorder() + eventRecorder := newBufferedEventRecorder() nCtx := createNodeExecutionContext(dataStore, eventRecorder, nil, literalMap, &arrayNodeSpec, arrayNodeState) // evaluate node @@ -379,7 +380,7 @@ func TestHandleArrayNodePhaseNone(t *testing.T) { }, expectedArrayNodePhase: v1alpha1.ArrayNodePhaseExecuting, expectedTransitionPhase: handler.EPhaseRunning, - expectedExternalResourcePhases: []idlcore.TaskExecution_Phase{idlcore.TaskExecution_QUEUED, idlcore.TaskExecution_QUEUED}, + expectedExternalResourcePhases: []idlcore.TaskExecution_Phase{idlcore.TaskExecution_UNDEFINED, idlcore.TaskExecution_UNDEFINED}, }, { name: "SuccessMultipleInputs", @@ -389,7 +390,7 @@ func TestHandleArrayNodePhaseNone(t *testing.T) { }, expectedArrayNodePhase: v1alpha1.ArrayNodePhaseExecuting, expectedTransitionPhase: handler.EPhaseRunning, - expectedExternalResourcePhases: []idlcore.TaskExecution_Phase{idlcore.TaskExecution_QUEUED, idlcore.TaskExecution_QUEUED, idlcore.TaskExecution_QUEUED}, + expectedExternalResourcePhases: []idlcore.TaskExecution_Phase{idlcore.TaskExecution_UNDEFINED, idlcore.TaskExecution_UNDEFINED, idlcore.TaskExecution_UNDEFINED}, }, { name: "FailureDifferentInputListLengths", @@ -406,7 +407,7 @@ func TestHandleArrayNodePhaseNone(t *testing.T) { for _, test := range tests { t.Run(test.name, func(t *testing.T) { // create NodeExecutionContext - eventRecorder := newArrayEventRecorder() + eventRecorder := newBufferedEventRecorder() literalMap := convertMapToArrayLiterals(test.inputValues) arrayNodeState := &handler.ArrayNodeState{ Phase: v1alpha1.ArrayNodePhaseNone, @@ -422,15 +423,15 @@ func TestHandleArrayNodePhaseNone(t *testing.T) { assert.Equal(t, test.expectedTransitionPhase, transition.Info().GetPhase()) if len(test.expectedExternalResourcePhases) > 0 { - assert.Equal(t, 1, len(eventRecorder.taskEvents)) + assert.Equal(t, 1, len(eventRecorder.taskExecutionEvents)) - externalResources := eventRecorder.taskEvents[0].Metadata.GetExternalResources() + externalResources := eventRecorder.taskExecutionEvents[0].Metadata.GetExternalResources() assert.Equal(t, len(test.expectedExternalResourcePhases), len(externalResources)) for i, expectedPhase := range test.expectedExternalResourcePhases { assert.Equal(t, expectedPhase, externalResources[i].Phase) } } else { - assert.Equal(t, 0, len(eventRecorder.taskEvents)) + assert.Equal(t, 0, len(eventRecorder.taskExecutionEvents)) } }) } @@ -595,7 +596,7 @@ func TestHandleArrayNodePhaseExecuting(t *testing.T) { } // create NodeExecutionContext - eventRecorder := newArrayEventRecorder() + eventRecorder := newBufferedEventRecorder() nodeSpec := arrayNodeSpec nodeSpec.ArrayNode.Parallelism = uint32(test.parallelism) @@ -607,7 +608,7 @@ func TestHandleArrayNodePhaseExecuting(t *testing.T) { nodeHandler := &mocks.NodeHandler{} nodeHandler.OnFinalizeRequired().Return(false) for i, transition := range test.subNodeTransitions { - nodeID := fmt.Sprintf("%s-n%d", nCtx.NodeID(), i) + nodeID := fmt.Sprintf("n%d", i) transitionPhase := test.expectedExternalResourcePhases[i] nodeHandler.OnHandleMatch(mock.Anything, mock.MatchedBy(func(arrayNCtx interfaces.NodeExecutionContext) bool { @@ -637,15 +638,15 @@ func TestHandleArrayNodePhaseExecuting(t *testing.T) { assert.Equal(t, test.expectedTransitionPhase, transition.Info().GetPhase()) if len(test.expectedExternalResourcePhases) > 0 { - assert.Equal(t, 1, len(eventRecorder.taskEvents)) + assert.Equal(t, 1, len(eventRecorder.taskExecutionEvents)) - externalResources := eventRecorder.taskEvents[0].Metadata.GetExternalResources() + externalResources := eventRecorder.taskExecutionEvents[0].Metadata.GetExternalResources() assert.Equal(t, len(test.expectedExternalResourcePhases), len(externalResources)) for i, expectedPhase := range test.expectedExternalResourcePhases { assert.Equal(t, expectedPhase, externalResources[i].Phase) } } else { - assert.Equal(t, 0, len(eventRecorder.taskEvents)) + assert.Equal(t, 0, len(eventRecorder.taskExecutionEvents)) } }) } @@ -705,7 +706,7 @@ func TestHandleArrayNodePhaseSucceeding(t *testing.T) { } // create NodeExecutionContext - eventRecorder := newArrayEventRecorder() + eventRecorder := newBufferedEventRecorder() literalMap := &idlcore.LiteralMap{} nCtx := createNodeExecutionContext(dataStore, eventRecorder, []string{test.outputVariable}, literalMap, &arrayNodeSpec, arrayNodeState) @@ -831,7 +832,7 @@ func TestHandleArrayNodePhaseFailing(t *testing.T) { } // create NodeExecutionContext - eventRecorder := newArrayEventRecorder() + eventRecorder := newBufferedEventRecorder() literalMap := &idlcore.LiteralMap{} nCtx := createNodeExecutionContext(dataStore, eventRecorder, nil, literalMap, &arrayNodeSpec, arrayNodeState) diff --git a/flytepropeller/pkg/controller/nodes/array/mocks/array_event_recorder.go b/flytepropeller/pkg/controller/nodes/array/mocks/array_event_recorder.go new file mode 100644 index 0000000000..b51ba86931 --- /dev/null +++ b/flytepropeller/pkg/controller/nodes/array/mocks/array_event_recorder.go @@ -0,0 +1,155 @@ +// Code generated by mockery v1.0.1. DO NOT EDIT. + +package mocks + +import ( + context "context" + + config "github.com/flyteorg/flyte/flytepropeller/pkg/controller/config" + + core "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" + + event "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" + + interfaces "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/interfaces" + + mock "github.com/stretchr/testify/mock" +) + +// arrayEventRecorder is an autogenerated mock type for the arrayEventRecorder type +type arrayEventRecorder struct { + mock.Mock +} + +type arrayEventRecorder_RecordNodeEvent struct { + *mock.Call +} + +func (_m arrayEventRecorder_RecordNodeEvent) Return(_a0 error) *arrayEventRecorder_RecordNodeEvent { + return &arrayEventRecorder_RecordNodeEvent{Call: _m.Call.Return(_a0)} +} + +func (_m *arrayEventRecorder) OnRecordNodeEvent(ctx context.Context, _a1 *event.NodeExecutionEvent, eventConfig *config.EventConfig) *arrayEventRecorder_RecordNodeEvent { + c_call := _m.On("RecordNodeEvent", ctx, _a1, eventConfig) + return &arrayEventRecorder_RecordNodeEvent{Call: c_call} +} + +func (_m *arrayEventRecorder) OnRecordNodeEventMatch(matchers ...interface{}) *arrayEventRecorder_RecordNodeEvent { + c_call := _m.On("RecordNodeEvent", matchers...) + return &arrayEventRecorder_RecordNodeEvent{Call: c_call} +} + +// RecordNodeEvent provides a mock function with given fields: ctx, _a1, eventConfig +func (_m *arrayEventRecorder) RecordNodeEvent(ctx context.Context, _a1 *event.NodeExecutionEvent, eventConfig *config.EventConfig) error { + ret := _m.Called(ctx, _a1, eventConfig) + + var r0 error + if rf, ok := ret.Get(0).(func(context.Context, *event.NodeExecutionEvent, *config.EventConfig) error); ok { + r0 = rf(ctx, _a1, eventConfig) + } else { + r0 = ret.Error(0) + } + + return r0 +} + +type arrayEventRecorder_RecordTaskEvent struct { + *mock.Call +} + +func (_m arrayEventRecorder_RecordTaskEvent) Return(_a0 error) *arrayEventRecorder_RecordTaskEvent { + return &arrayEventRecorder_RecordTaskEvent{Call: _m.Call.Return(_a0)} +} + +func (_m *arrayEventRecorder) OnRecordTaskEvent(ctx context.Context, _a1 *event.TaskExecutionEvent, eventConfig *config.EventConfig) *arrayEventRecorder_RecordTaskEvent { + c_call := _m.On("RecordTaskEvent", ctx, _a1, eventConfig) + return &arrayEventRecorder_RecordTaskEvent{Call: c_call} +} + +func (_m *arrayEventRecorder) OnRecordTaskEventMatch(matchers ...interface{}) *arrayEventRecorder_RecordTaskEvent { + c_call := _m.On("RecordTaskEvent", matchers...) + return &arrayEventRecorder_RecordTaskEvent{Call: c_call} +} + +// RecordTaskEvent provides a mock function with given fields: ctx, _a1, eventConfig +func (_m *arrayEventRecorder) RecordTaskEvent(ctx context.Context, _a1 *event.TaskExecutionEvent, eventConfig *config.EventConfig) error { + ret := _m.Called(ctx, _a1, eventConfig) + + var r0 error + if rf, ok := ret.Get(0).(func(context.Context, *event.TaskExecutionEvent, *config.EventConfig) error); ok { + r0 = rf(ctx, _a1, eventConfig) + } else { + r0 = ret.Error(0) + } + + return r0 +} + +type arrayEventRecorder_finalize struct { + *mock.Call +} + +func (_m arrayEventRecorder_finalize) Return(_a0 error) *arrayEventRecorder_finalize { + return &arrayEventRecorder_finalize{Call: _m.Call.Return(_a0)} +} + +func (_m *arrayEventRecorder) Onfinalize(ctx context.Context, nCtx interfaces.NodeExecutionContext, taskPhase core.TaskExecution_Phase, taskPhaseVersion uint32, eventConfig *config.EventConfig) *arrayEventRecorder_finalize { + c_call := _m.On("finalize", ctx, nCtx, taskPhase, taskPhaseVersion, eventConfig) + return &arrayEventRecorder_finalize{Call: c_call} +} + +func (_m *arrayEventRecorder) OnfinalizeMatch(matchers ...interface{}) *arrayEventRecorder_finalize { + c_call := _m.On("finalize", matchers...) + return &arrayEventRecorder_finalize{Call: c_call} +} + +// finalize provides a mock function with given fields: ctx, nCtx, taskPhase, taskPhaseVersion, eventConfig +func (_m *arrayEventRecorder) finalize(ctx context.Context, nCtx interfaces.NodeExecutionContext, taskPhase core.TaskExecution_Phase, taskPhaseVersion uint32, eventConfig *config.EventConfig) error { + ret := _m.Called(ctx, nCtx, taskPhase, taskPhaseVersion, eventConfig) + + var r0 error + if rf, ok := ret.Get(0).(func(context.Context, interfaces.NodeExecutionContext, core.TaskExecution_Phase, uint32, *config.EventConfig) error); ok { + r0 = rf(ctx, nCtx, taskPhase, taskPhaseVersion, eventConfig) + } else { + r0 = ret.Error(0) + } + + return r0 +} + +type arrayEventRecorder_finalizeRequired struct { + *mock.Call +} + +func (_m arrayEventRecorder_finalizeRequired) Return(_a0 bool) *arrayEventRecorder_finalizeRequired { + return &arrayEventRecorder_finalizeRequired{Call: _m.Call.Return(_a0)} +} + +func (_m *arrayEventRecorder) OnfinalizeRequired(ctx context.Context) *arrayEventRecorder_finalizeRequired { + c_call := _m.On("finalizeRequired", ctx) + return &arrayEventRecorder_finalizeRequired{Call: c_call} +} + +func (_m *arrayEventRecorder) OnfinalizeRequiredMatch(matchers ...interface{}) *arrayEventRecorder_finalizeRequired { + c_call := _m.On("finalizeRequired", matchers...) + return &arrayEventRecorder_finalizeRequired{Call: c_call} +} + +// finalizeRequired provides a mock function with given fields: ctx +func (_m *arrayEventRecorder) finalizeRequired(ctx context.Context) bool { + ret := _m.Called(ctx) + + var r0 bool + if rf, ok := ret.Get(0).(func(context.Context) bool); ok { + r0 = rf(ctx) + } else { + r0 = ret.Get(0).(bool) + } + + return r0 +} + +// process provides a mock function with given fields: ctx, nCtx, index, retryAttempt +func (_m *arrayEventRecorder) process(ctx context.Context, nCtx interfaces.NodeExecutionContext, index int, retryAttempt uint32) { + _m.Called(ctx, nCtx, index, retryAttempt) +} diff --git a/flytepropeller/pkg/controller/nodes/array/node_execution_context.go b/flytepropeller/pkg/controller/nodes/array/node_execution_context.go index 31c91e5316..c639c543e7 100644 --- a/flytepropeller/pkg/controller/nodes/array/node_execution_context.go +++ b/flytepropeller/pkg/controller/nodes/array/node_execution_context.go @@ -4,46 +4,12 @@ import ( "context" "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" - "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" - "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io" - "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1" - "github.com/flyteorg/flyte/flytepropeller/pkg/controller/config" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/executors" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/interfaces" ) -type arrayEventRecorder struct { - nodeEvents []*event.NodeExecutionEvent - taskEvents []*event.TaskExecutionEvent -} - -func (a *arrayEventRecorder) RecordNodeEvent(ctx context.Context, event *event.NodeExecutionEvent, eventConfig *config.EventConfig) error { - a.nodeEvents = append(a.nodeEvents, event) - return nil -} - -func (a *arrayEventRecorder) RecordTaskEvent(ctx context.Context, event *event.TaskExecutionEvent, eventConfig *config.EventConfig) error { - a.taskEvents = append(a.taskEvents, event) - return nil -} - -func (a *arrayEventRecorder) NodeEvents() []*event.NodeExecutionEvent { - return a.nodeEvents -} - -func (a *arrayEventRecorder) TaskEvents() []*event.TaskExecutionEvent { - return a.taskEvents -} - -func newArrayEventRecorder() *arrayEventRecorder { - return &arrayEventRecorder{ - nodeEvents: make([]*event.NodeExecutionEvent, 0), - taskEvents: make([]*event.TaskExecutionEvent, 0), - } -} - type staticInputReader struct { io.InputFilePaths input *core.LiteralMap @@ -110,7 +76,7 @@ func (a *arrayTaskReader) Read(ctx context.Context) (*core.TaskTemplate, error) type arrayNodeExecutionContext struct { interfaces.NodeExecutionContext - eventRecorder interfaces.EventRecorder + eventRecorder arrayEventRecorder executionContext executors.ExecutionContext inputReader io.InputReader nodeStatus *v1alpha1.NodeStatus @@ -137,7 +103,7 @@ func (a *arrayNodeExecutionContext) TaskReader() interfaces.TaskReader { return a.taskReader } -func newArrayNodeExecutionContext(nodeExecutionContext interfaces.NodeExecutionContext, inputReader io.InputReader, eventRecorder interfaces.EventRecorder, subNodeIndex int, nodeStatus *v1alpha1.NodeStatus, currentParallelism *uint32, maxParallelism uint32) *arrayNodeExecutionContext { +func newArrayNodeExecutionContext(nodeExecutionContext interfaces.NodeExecutionContext, inputReader io.InputReader, eventRecorder arrayEventRecorder, subNodeIndex int, nodeStatus *v1alpha1.NodeStatus, currentParallelism *uint32, maxParallelism uint32) *arrayNodeExecutionContext { arrayExecutionContext := newArrayExecutionContext(nodeExecutionContext.ExecutionContext(), subNodeIndex, currentParallelism, maxParallelism) return &arrayNodeExecutionContext{ NodeExecutionContext: nodeExecutionContext, diff --git a/flytepropeller/pkg/controller/nodes/array/node_execution_context_builder.go b/flytepropeller/pkg/controller/nodes/array/node_execution_context_builder.go index e7ac561e29..d5523253af 100644 --- a/flytepropeller/pkg/controller/nodes/array/node_execution_context_builder.go +++ b/flytepropeller/pkg/controller/nodes/array/node_execution_context_builder.go @@ -18,7 +18,7 @@ type arrayNodeExecutionContextBuilder struct { inputReader io.InputReader currentParallelism *uint32 maxParallelism uint32 - eventRecorder interfaces.EventRecorder + eventRecorder arrayEventRecorder } func (a *arrayNodeExecutionContextBuilder) BuildNodeExecutionContext(ctx context.Context, executionContext executors.ExecutionContext, @@ -38,9 +38,8 @@ func (a *arrayNodeExecutionContextBuilder) BuildNodeExecutionContext(ctx context return nCtx, nil } -func newArrayNodeExecutionContextBuilder(nCtxBuilder interfaces.NodeExecutionContextBuilder, subNodeID v1alpha1.NodeID, - subNodeIndex int, subNodeStatus *v1alpha1.NodeStatus, inputReader io.InputReader, eventRecorder interfaces.EventRecorder, - currentParallelism *uint32, maxParallelism uint32) interfaces.NodeExecutionContextBuilder { +func newArrayNodeExecutionContextBuilder(nCtxBuilder interfaces.NodeExecutionContextBuilder, subNodeID v1alpha1.NodeID, subNodeIndex int, subNodeStatus *v1alpha1.NodeStatus, + inputReader io.InputReader, currentParallelism *uint32, maxParallelism uint32, eventRecorder arrayEventRecorder) interfaces.NodeExecutionContextBuilder { return &arrayNodeExecutionContextBuilder{ nCtxBuilder: nCtxBuilder, diff --git a/flytepropeller/pkg/controller/nodes/array/utils.go b/flytepropeller/pkg/controller/nodes/array/utils.go index cbc12bfb8b..342ccca3f6 100644 --- a/flytepropeller/pkg/controller/nodes/array/utils.go +++ b/flytepropeller/pkg/controller/nodes/array/utils.go @@ -4,21 +4,14 @@ import ( "bytes" "context" "fmt" - "time" idlcore "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core" - "github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/event" - "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1" - "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/common" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/interfaces" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/task" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/task/codex" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/task/k8s" - "github.com/flyteorg/flyte/flytestdlib/storage" - - "github.com/golang/protobuf/ptypes" ) func appendLiteral(name string, literal *idlcore.Literal, outputLiterals map[string]*idlcore.Literal, length int) { @@ -39,46 +32,8 @@ func appendLiteral(name string, literal *idlcore.Literal, outputLiterals map[str collection.Literals = append(collection.Literals, literal) } -func buildTaskExecutionEvent(_ context.Context, nCtx interfaces.NodeExecutionContext, taskPhase idlcore.TaskExecution_Phase, taskPhaseVersion uint32, externalResources []*event.ExternalResourceInfo) (*event.TaskExecutionEvent, error) { - occurredAt, err := ptypes.TimestampProto(time.Now()) - if err != nil { - return nil, err - } - - nodeExecutionID := nCtx.NodeExecutionMetadata().GetNodeExecutionID() - if nCtx.ExecutionContext().GetEventVersion() != v1alpha1.EventVersion0 { - currentNodeUniqueID, err := common.GenerateUniqueID(nCtx.ExecutionContext().GetParentInfo(), nodeExecutionID.NodeId) - if err != nil { - return nil, err - } - nodeExecutionID.NodeId = currentNodeUniqueID - } - - workflowExecutionID := nodeExecutionID.ExecutionId - - return &event.TaskExecutionEvent{ - TaskId: &idlcore.Identifier{ - ResourceType: idlcore.ResourceType_TASK, - Project: workflowExecutionID.Project, - Domain: workflowExecutionID.Domain, - Name: nCtx.NodeID(), - Version: "v1", // this value is irrelevant but necessary for the identifier to be valid - }, - ParentNodeExecutionId: nodeExecutionID, - RetryAttempt: 0, // ArrayNode will never retry - Phase: taskPhase, - PhaseVersion: taskPhaseVersion, - OccurredAt: occurredAt, - Metadata: &event.TaskExecutionMetadata{ - ExternalResources: externalResources, - }, - TaskType: "k8s-array", - EventVersion: 1, - }, nil -} - -func buildSubNodeID(nCtx interfaces.NodeExecutionContext, index int, retryAttempt uint32) string { - return fmt.Sprintf("%s-n%d-%d", nCtx.NodeID(), index, retryAttempt) +func buildSubNodeID(nCtx interfaces.NodeExecutionContext, index int) string { + return fmt.Sprintf("%s-n%d", nCtx.NodeID(), index) } func bytesFromK8sPluginState(pluginState k8s.PluginState) ([]byte, error) { diff --git a/flytepropeller/pkg/controller/nodes/executor.go b/flytepropeller/pkg/controller/nodes/executor.go index 69869934d0..3a03949c0c 100644 --- a/flytepropeller/pkg/controller/nodes/executor.go +++ b/flytepropeller/pkg/controller/nodes/executor.go @@ -484,7 +484,7 @@ type nodeExecutor struct { defaultExecutionDeadline time.Duration enqueueWorkflow v1alpha1.EnqueueWorkflow eventConfig *config.EventConfig - interruptibleFailureThreshold uint32 + interruptibleFailureThreshold int32 maxDatasetSizeBytes int64 maxNodeRetriesForSystemFailures uint32 metrics *nodeMetrics @@ -795,15 +795,20 @@ func isTimeoutExpired(queuedAt *metav1.Time, timeout time.Duration) bool { } func (c *nodeExecutor) isEligibleForRetry(nCtx interfaces.NodeExecutionContext, nodeStatus v1alpha1.ExecutableNodeStatus, err *core.ExecutionError) (currentAttempt, maxAttempts uint32, isEligible bool) { - if err.Kind == core.ExecutionError_SYSTEM { - currentAttempt = nodeStatus.GetSystemFailures() - maxAttempts = c.maxNodeRetriesForSystemFailures - isEligible = currentAttempt < c.maxNodeRetriesForSystemFailures - return - } + if config.GetConfig().NodeConfig.IgnoreRetryCause { + currentAttempt = nodeStatus.GetAttempts() + 1 + } else { + if err.Kind == core.ExecutionError_SYSTEM { + currentAttempt = nodeStatus.GetSystemFailures() + maxAttempts = c.maxNodeRetriesForSystemFailures + isEligible = currentAttempt < c.maxNodeRetriesForSystemFailures + return + } - currentAttempt = (nodeStatus.GetAttempts() + 1) - nodeStatus.GetSystemFailures() - if nCtx.Node().GetRetryStrategy() != nil && nCtx.Node().GetRetryStrategy().MinAttempts != nil { + currentAttempt = (nodeStatus.GetAttempts() + 1) - nodeStatus.GetSystemFailures() + } + maxAttempts = uint32(config.GetConfig().NodeConfig.DefaultMaxAttempts) + if nCtx.Node().GetRetryStrategy() != nil && nCtx.Node().GetRetryStrategy().MinAttempts != nil && *nCtx.Node().GetRetryStrategy().MinAttempts != 1 { maxAttempts = uint32(*nCtx.Node().GetRetryStrategy().MinAttempts) } isEligible = currentAttempt < maxAttempts @@ -1432,7 +1437,7 @@ func NewExecutor(ctx context.Context, nodeConfig config.NodeConfig, store *stora defaultExecutionDeadline: nodeConfig.DefaultDeadlines.DefaultNodeExecutionDeadline.Duration, enqueueWorkflow: enQWorkflow, eventConfig: eventConfig, - interruptibleFailureThreshold: uint32(nodeConfig.InterruptibleFailureThreshold), + interruptibleFailureThreshold: nodeConfig.InterruptibleFailureThreshold, maxDatasetSizeBytes: maxDatasetSize, maxNodeRetriesForSystemFailures: uint32(nodeConfig.MaxNodeRetriesOnSystemFailures), metrics: metrics, diff --git a/flytepropeller/pkg/controller/nodes/executor_test.go b/flytepropeller/pkg/controller/nodes/executor_test.go index 670f975716..0d67edcec5 100644 --- a/flytepropeller/pkg/controller/nodes/executor_test.go +++ b/flytepropeller/pkg/controller/nodes/executor_test.go @@ -2765,3 +2765,55 @@ func TestNodeExecutor_RecursiveNodeHandler_Cache(t *testing.T) { }) } } + +func TestNodeExecutor_IsEligibleForRetry(t *testing.T) { + tests := []struct { + name string + ignoreRetryCause bool + attempts uint32 + systemFailures uint32 + maxAttempts int32 + maxSystemFailures uint32 + errorKind core.ExecutionError_ErrorKind + expectedEligibility bool + }{ + {"EligibleUserRetries", false, 0, 0, 2, 0, core.ExecutionError_USER, true}, + {"IneligibleUserRetries", false, 1, 0, 2, 0, core.ExecutionError_USER, false}, + {"EligibleSystemRetries", false, 0, 0, 1, 1, core.ExecutionError_SYSTEM, true}, + {"IneligibleSystemRetries", false, 1, 1, 1, 1, core.ExecutionError_SYSTEM, false}, + {"IgnoreCauseEligibleUserRetries", true, 0, 0, 2, 0, core.ExecutionError_USER, true}, + {"IgnoreCauseIneligibleUserRetries", true, 1, 0, 2, 0, core.ExecutionError_USER, false}, + {"IgnoreCauseEligibleSystemRetries", true, 0, 0, 2, 0, core.ExecutionError_SYSTEM, true}, + {"IgnoreCauseIneligibleSystemRetries", true, 1, 1, 2, 0, core.ExecutionError_SYSTEM, false}, + } + + for _, test := range tests { + t.Run(test.name, func(t *testing.T) { + // mock all inputs + nodeExecutor := &nodeExecutor{ + maxNodeRetriesForSystemFailures: test.maxSystemFailures, + } + + config.GetConfig().NodeConfig.IgnoreRetryCause = test.ignoreRetryCause + config.GetConfig().NodeConfig.DefaultMaxAttempts = test.maxAttempts + + node := &mocks.ExecutableNode{} + node.OnGetRetryStrategy().Return(nil) + nCtx := &nodeExecContext{node: node} + + nodeStatus := &mocks.ExecutableNodeStatus{} + nodeStatus.OnGetAttempts().Return(test.attempts) + nodeStatus.OnGetSystemFailures().Return(test.systemFailures) + + err := &core.ExecutionError{ + Kind: test.errorKind, + } + + // validate eligibility + currentAttempt, maxAttempts, isEligible := nodeExecutor.isEligibleForRetry(nCtx, nodeStatus, err) + fmt.Println(currentAttempt, maxAttempts, isEligible) + assert.Equal(t, test.expectedEligibility, isEligible) + }) + } + +} diff --git a/flytepropeller/pkg/controller/nodes/interfaces/mocks/node_execution_metadata.go b/flytepropeller/pkg/controller/nodes/interfaces/mocks/node_execution_metadata.go index 5f96520b55..c78bdfb557 100644 --- a/flytepropeller/pkg/controller/nodes/interfaces/mocks/node_execution_metadata.go +++ b/flytepropeller/pkg/controller/nodes/interfaces/mocks/node_execution_metadata.go @@ -55,7 +55,7 @@ type NodeExecutionMetadata_GetInterruptibleFailureThreshold struct { *mock.Call } -func (_m NodeExecutionMetadata_GetInterruptibleFailureThreshold) Return(_a0 uint32) *NodeExecutionMetadata_GetInterruptibleFailureThreshold { +func (_m NodeExecutionMetadata_GetInterruptibleFailureThreshold) Return(_a0 int32) *NodeExecutionMetadata_GetInterruptibleFailureThreshold { return &NodeExecutionMetadata_GetInterruptibleFailureThreshold{Call: _m.Call.Return(_a0)} } @@ -70,14 +70,14 @@ func (_m *NodeExecutionMetadata) OnGetInterruptibleFailureThresholdMatch(matcher } // GetInterruptibleFailureThreshold provides a mock function with given fields: -func (_m *NodeExecutionMetadata) GetInterruptibleFailureThreshold() uint32 { +func (_m *NodeExecutionMetadata) GetInterruptibleFailureThreshold() int32 { ret := _m.Called() - var r0 uint32 - if rf, ok := ret.Get(0).(func() uint32); ok { + var r0 int32 + if rf, ok := ret.Get(0).(func() int32); ok { r0 = rf() } else { - r0 = ret.Get(0).(uint32) + r0 = ret.Get(0).(int32) } return r0 diff --git a/flytepropeller/pkg/controller/nodes/interfaces/node_exec_context.go b/flytepropeller/pkg/controller/nodes/interfaces/node_exec_context.go index dc7f3397bc..d22619a856 100644 --- a/flytepropeller/pkg/controller/nodes/interfaces/node_exec_context.go +++ b/flytepropeller/pkg/controller/nodes/interfaces/node_exec_context.go @@ -39,7 +39,7 @@ type NodeExecutionMetadata interface { GetK8sServiceAccount() string GetSecurityContext() core.SecurityContext IsInterruptible() bool - GetInterruptibleFailureThreshold() uint32 + GetInterruptibleFailureThreshold() int32 } type NodeExecutionContext interface { diff --git a/flytepropeller/pkg/controller/nodes/node_exec_context.go b/flytepropeller/pkg/controller/nodes/node_exec_context.go index 6a93678b75..96531a7e0a 100644 --- a/flytepropeller/pkg/controller/nodes/node_exec_context.go +++ b/flytepropeller/pkg/controller/nodes/node_exec_context.go @@ -94,7 +94,7 @@ type nodeExecMetadata struct { v1alpha1.Meta nodeExecID *core.NodeExecutionIdentifier interruptible bool - interruptibleFailureThreshold uint32 + interruptibleFailureThreshold int32 nodeLabels map[string]string } @@ -114,7 +114,7 @@ func (e nodeExecMetadata) IsInterruptible() bool { return e.interruptible } -func (e nodeExecMetadata) GetInterruptibleFailureThreshold() uint32 { +func (e nodeExecMetadata) GetInterruptibleFailureThreshold() int32 { return e.interruptibleFailureThreshold } @@ -208,7 +208,7 @@ func (e nodeExecContext) MaxDatasetSizeBytes() int64 { } func newNodeExecContext(_ context.Context, store *storage.DataStore, execContext executors.ExecutionContext, nl executors.NodeLookup, - node v1alpha1.ExecutableNode, nodeStatus v1alpha1.ExecutableNodeStatus, inputs io.InputReader, interruptible bool, interruptibleFailureThreshold uint32, + node v1alpha1.ExecutableNode, nodeStatus v1alpha1.ExecutableNodeStatus, inputs io.InputReader, interruptible bool, interruptibleFailureThreshold int32, maxDatasetSize int64, taskEventRecorder events.TaskEventRecorder, nodeEventRecorder events.NodeEventRecorder, tr interfaces.TaskReader, nsm *nodeStateManager, enqueueOwner func() error, rawOutputPrefix storage.DataReference, outputShardSelector ioutils.ShardSelector) *nodeExecContext { @@ -255,6 +255,14 @@ func newNodeExecContext(_ context.Context, store *storage.DataStore, execContext } } +func isAboveInterruptibleFailureThreshold(numFailures uint32, maxAttempts uint32, interruptibleThreshold int32) bool { + if interruptibleThreshold > 0 { + return numFailures >= uint32(interruptibleThreshold) + } + + return numFailures >= maxAttempts-uint32(-interruptibleThreshold) +} + func (c *nodeExecutor) BuildNodeExecutionContext(ctx context.Context, executionContext executors.ExecutionContext, nl executors.NodeLookup, currentNodeID v1alpha1.NodeID) (interfaces.NodeExecutionContext, error) { n, ok := nl.GetNode(currentNodeID) @@ -286,10 +294,25 @@ func (c *nodeExecutor) BuildNodeExecutionContext(ctx context.Context, executionC s := nl.GetNodeExecutionStatus(ctx, currentNodeID) - // a node is not considered interruptible if the system failures have exceeded the configured threshold - if interruptible && s.GetSystemFailures() >= c.interruptibleFailureThreshold { - interruptible = false - c.metrics.InterruptedThresholdHit.Inc(ctx) + if config.GetConfig().NodeConfig.IgnoreRetryCause { + // For the unified retry behavior we execute the last interruptibleFailureThreshold attempts on a non + // interruptible machine + maxAttempts := uint32(config.GetConfig().NodeConfig.DefaultMaxAttempts) + if n.GetRetryStrategy() != nil && n.GetRetryStrategy().MinAttempts != nil && *n.GetRetryStrategy().MinAttempts != 1 { + maxAttempts = uint32(*n.GetRetryStrategy().MinAttempts) + } + + // For interruptible nodes run at least one attempt on an interruptible machine (thus s.GetAttempts() > 0) even if there won't be any retries + if interruptible && s.GetAttempts() > 0 && isAboveInterruptibleFailureThreshold(s.GetAttempts(), maxAttempts, c.interruptibleFailureThreshold) { + interruptible = false + c.metrics.InterruptedThresholdHit.Inc(ctx) + } + } else { + // Else a node is not considered interruptible if the system failures have exceeded the configured threshold + if interruptible && isAboveInterruptibleFailureThreshold(s.GetSystemFailures(), c.maxNodeRetriesForSystemFailures+1, c.interruptibleFailureThreshold) { + interruptible = false + c.metrics.InterruptedThresholdHit.Inc(ctx) + } } rawOutputPrefix := c.defaultDataSandbox diff --git a/flytepropeller/pkg/controller/nodes/node_exec_context_test.go b/flytepropeller/pkg/controller/nodes/node_exec_context_test.go index 8948fc7a24..d96942c632 100644 --- a/flytepropeller/pkg/controller/nodes/node_exec_context_test.go +++ b/flytepropeller/pkg/controller/nodes/node_exec_context_test.go @@ -375,3 +375,77 @@ func Test_NodeContext_RecordTaskEvent(t1 *testing.T) { }) } } + +func Test_NodeContext_IsInterruptible(t *testing.T) { + ctx := context.Background() + + tests := []struct { + name string + ignoreRetryCause bool + attempts uint32 + systemFailures uint32 + maxAttempts int32 + maxSystemFailures uint32 + interruptibleFailureThreshold int32 + expectedInterruptible bool + }{ + {"Interruptible", false, 0, 0, 2, 1, 1, true}, + {"NonInterruptible", false, 0, 1, 2, 1, 1, false}, + {"InterruptibleNegativeThreshold", false, 0, 0, 2, 1, -1, true}, + {"InterruptibleNegativeThreshold2", false, 3, 3, 5, 4, -1, true}, + {"NonInterruptibleNegativeThreshold", false, 1, 1, 2, 1, -1, false}, + // maxSystemFailures should be ignored if ignoreRetryCause is true + {"IgnoreCauseInterruptible", true, 0, 0, 2, 999, 1, true}, + {"IgnoreCauseInterruptibleFirstTry", true, 0, 0, 1, 999, -1, true}, // First try should always be interruptible if interruptible is set + {"IgnoreCauseInterruptibleNegativeThreshold", true, 0, 0, 2, 999, -1, true}, + {"IgnoreCauseInterruptibleNegativeThreshold2", true, 2, 1, 4, 999, -1, true}, + {"IgnoreCauseNonInterruptibleSystem", true, 1, 1, 2, 999, 1, false}, + {"IgnoreCauseNonInterruptibleUser", true, 1, 0, 2, 999, 1, false}, + {"IgnoreCauseNonInterruptibleSystemNegativeThreshold", true, 3, 3, 4, 0, -1, false}, + {"IgnoreCauseNonInterruptibleUserNegativeThreshold", true, 3, 0, 4, 0, -1, false}, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + scope := promutils.NewTestScope() + + // mock all inputs + config.GetConfig().NodeConfig.DefaultMaxAttempts = tt.maxAttempts + config.GetConfig().NodeConfig.IgnoreRetryCause = tt.ignoreRetryCause + + dataStore, _ := storage.NewDataStore(&storage.Config{Type: storage.TypeMemory}, scope.NewSubScope("dataStore")) + nodeExecutor := nodeExecutor{ + interruptibleFailureThreshold: tt.interruptibleFailureThreshold, + maxNodeRetriesForSystemFailures: tt.maxSystemFailures, + maxDatasetSizeBytes: 0, + defaultDataSandbox: "s3://bucket-a", + store: dataStore, + shardSelector: ioutils.NewConstantShardSelector([]string{"x"}), + enqueueWorkflow: func(workflowID v1alpha1.WorkflowID) {}, + metrics: &nodeMetrics{ + InterruptibleNodesRunning: labeled.NewCounter("running", "xyz", scope.NewSubScope("interruptible1")), + InterruptibleNodesTerminated: labeled.NewCounter("terminated", "xyz", scope.NewSubScope("interruptible2")), + InterruptedThresholdHit: labeled.NewCounter("thresholdHit", "xyz", scope.NewSubScope("interruptible3")), + }, + } + + w := getTestFlyteWorkflow() + + nodeLookup := &mocks2.NodeLookup{} + interruptible := true + nodeLookup.OnGetNode("node-a").Return(getTestNodeSpec(&interruptible), true) + nodeLookup.OnGetNodeExecutionStatus(ctx, "node-a").Return(&v1alpha1.NodeStatus{ + Attempts: tt.attempts, + SystemFailures: tt.systemFailures, + }) + + p := parentInfo{} + execContext := executors.NewExecutionContext(w, w, w, p, nil) + + // validate interruptible + nCtx, err := nodeExecutor.BuildNodeExecutionContext(context.Background(), execContext, nodeLookup, "node-a") + assert.NoError(t, err) + assert.Equal(t, tt.expectedInterruptible, nCtx.NodeExecutionMetadata().IsInterruptible()) + }) + } +} diff --git a/flytepropeller/pkg/controller/nodes/task/taskexec_context.go b/flytepropeller/pkg/controller/nodes/task/taskexec_context.go index 45a981577f..0d9a226cf1 100644 --- a/flytepropeller/pkg/controller/nodes/task/taskexec_context.go +++ b/flytepropeller/pkg/controller/nodes/task/taskexec_context.go @@ -13,6 +13,7 @@ import ( "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io" "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils" "github.com/flyteorg/flyte/flytepropeller/pkg/apis/flyteworkflow/v1alpha1" + controllerconfig "github.com/flyteorg/flyte/flytepropeller/pkg/controller/config" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/common" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/errors" "github.com/flyteorg/flyte/flytepropeller/pkg/controller/nodes/interfaces" @@ -29,7 +30,6 @@ var ( ) const IDMaxLength = 50 -const DefaultMaxAttempts = 1 type taskExecutionID struct { execName string @@ -276,7 +276,7 @@ func (t *Handler) newTaskExecutionContext(ctx context.Context, nCtx interfaces.N } resourceNamespacePrefix := pluginCore.ResourceNamespace(t.resourceManager.GetID()).CreateSubNamespace(pluginCore.ResourceNamespace(plugin.GetID())) - maxAttempts := uint32(DefaultMaxAttempts) + maxAttempts := uint32(controllerconfig.GetConfig().NodeConfig.DefaultMaxAttempts) if nCtx.Node().GetRetryStrategy() != nil && nCtx.Node().GetRetryStrategy().MinAttempts != nil { maxAttempts = uint32(*nCtx.Node().GetRetryStrategy().MinAttempts) } diff --git a/flytepropeller/pkg/controller/nodes/transformers.go b/flytepropeller/pkg/controller/nodes/transformers.go index b364ae02f8..047cb03b68 100644 --- a/flytepropeller/pkg/controller/nodes/transformers.go +++ b/flytepropeller/pkg/controller/nodes/transformers.go @@ -178,6 +178,9 @@ func ToNodeExecutionEvent(nodeExecID *core.NodeExecutionIdentifier, } if node.GetKind() == v1alpha1.NodeKindWorkflow && node.GetWorkflowNode() != nil && node.GetWorkflowNode().GetSubWorkflowRef() != nil { nev.IsParent = true + } else if node.GetKind() == v1alpha1.NodeKindArray { + nev.IsParent = true + nev.IsArray = true } else if dynamicNodePhase != v1alpha1.DynamicNodePhaseNone { nev.IsDynamic = true if nev.GetTaskNodeMetadata() != nil && nev.GetTaskNodeMetadata().DynamicWorkflow != nil { diff --git a/go.mod b/go.mod index 989c419b80..889bfc66ec 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,7 @@ require ( github.com/prometheus/client_golang v1.12.1 github.com/spf13/cobra v1.4.0 github.com/spf13/pflag v1.0.5 - golang.org/x/sync v0.1.0 + golang.org/x/sync v0.3.0 gorm.io/driver/postgres v1.4.5 k8s.io/client-go v0.24.1 sigs.k8s.io/controller-runtime v0.12.1 @@ -177,15 +177,15 @@ require ( go.uber.org/atomic v1.9.0 // indirect go.uber.org/multierr v1.8.0 // indirect go.uber.org/zap v1.21.0 // indirect - golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect - golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect - golang.org/x/net v0.9.0 // indirect + golang.org/x/crypto v0.13.0 // indirect + golang.org/x/exp v0.0.0-20231005195138-3e424a577f31 // indirect + golang.org/x/net v0.15.0 // indirect golang.org/x/oauth2 v0.7.0 // indirect - golang.org/x/sys v0.7.0 // indirect - golang.org/x/term v0.7.0 // indirect - golang.org/x/text v0.9.0 // indirect + golang.org/x/sys v0.12.0 // indirect + golang.org/x/term v0.12.0 // indirect + golang.org/x/text v0.13.0 // indirect golang.org/x/time v0.3.0 // indirect - golang.org/x/tools v0.6.0 // indirect + golang.org/x/tools v0.13.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect google.golang.org/api v0.114.0 // indirect diff --git a/go.sum b/go.sum index 50cbd1a202..edc4408994 100644 --- a/go.sum +++ b/go.sum @@ -1671,8 +1671,9 @@ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5y golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa h1:zuSxTR4o9y82ebqCUJYNGJbGPo6sKVl54f/TVDObg1c= golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck= +golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1687,8 +1688,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e h1:+WEEuIdZHnUeJJmEUjyYC2gfUMj69yZXw17EnHg/otA= -golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e/go.mod h1:Kr81I6Kryrl9sr8s2FK3vxD90NdsKWRuOIl2O4CvYbA= +golang.org/x/exp v0.0.0-20231005195138-3e424a577f31 h1:9k5exFQKQglLo+RoP+4zMjOFE14P6+vyR0baDAi0Rcs= +golang.org/x/exp v0.0.0-20231005195138-3e424a577f31/go.mod h1:S2oDrQGGwySpoQPVqRShND87VCbxmc6bL1Yd2oYrm6k= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= @@ -1716,7 +1717,7 @@ golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= -golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= +golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc= golang.org/x/net v0.0.0-20170114055629-f2499483f923/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1786,8 +1787,8 @@ golang.org/x/net v0.0.0-20210825183410-e898025ed96a/go.mod h1:9nx3DQGgdP8bBQD5qx golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.9.0 h1:aWJ/m6xSmxWBx+V0XRHTlrYrPG56jKsLdTFmsSsCzOM= -golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= +golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8= +golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20181003184128-c57b0facaced/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1816,8 +1817,8 @@ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= -golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E= +golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= golang.org/x/sys v0.0.0-20170830134202-bb24a47a89ea/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180816055513-1c9583448a9c/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -1921,13 +1922,13 @@ golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU= -golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.7.0 h1:BEvjmm5fURWqcfbSKTdpkDXYBrUS1c0m8agp14W48vQ= -golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= +golang.org/x/term v0.12.0 h1:/ZfYdc3zq+q02Rv9vGqTeSItdzZTSNDmfTi0mBAuidU= +golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= golang.org/x/text v0.0.0-20160726164857-2910a502d2bf/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1938,8 +1939,8 @@ golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= -golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= +golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -2059,8 +2060,8 @@ golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.10-0.20220218145154-897bd77cd717/go.mod h1:Uh6Zz+xoGYZom868N8YTex3t7RhtHDBrE8Gzo9bV56E= -golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= -golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= +golang.org/x/tools v0.13.0 h1:Iey4qkscZuv0VvIt8E0neZjtPVQFSc870HQ448QgEmQ= +golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= diff --git a/rsts/deployment/deployment/cloud_production.rst b/rsts/deployment/deployment/cloud_production.rst index 90997556c9..1736f1eb4c 100644 --- a/rsts/deployment/deployment/cloud_production.rst +++ b/rsts/deployment/deployment/cloud_production.rst @@ -23,23 +23,48 @@ guide already contains the ingress rules, but they are not enabled by default. To turn on ingress, update your ``values.yaml`` file to include the following block. -.. tabbed:: AWS - ``flyte-binary`` +.. tabs:: + + .. group-tab:: ``flyte-binary`` on EKS using NGINX - .. literalinclude:: ../../../charts/flyte-binary/eks-production.yaml - :caption: charts/flyte-binary/eks-production.yaml - :language: yaml - :lines: 123-131 + .. literalinclude:: ../../../charts/flyte-binary/eks-production.yaml + :caption: charts/flyte-binary/eks-production.yaml + :language: yaml + :lines: 127-135 + + .. group-tab:: ``flyte-binary``/ on EKS using ALB + + .. code-block:: yaml + + ingress: + create: true + commonAnnotations: + alb.ingress.kubernetes.io/certificate-arn: '' + alb.ingress.kubernetes.io/group.name: flyte + alb.ingress.kubernetes.io/listen-ports: '[{"HTTP": 80}, {"HTTPS":443}]' + alb.ingress.kubernetes.io/scheme: internet-facing + alb.ingress.kubernetes.io/ssl-redirect: '443' + alb.ingress.kubernetes.io/target-type: ip + kubernetes.io/ingress.class: alb + httpAnnotations: + alb.ingress.kubernetes.io/actions.app-root: '{"Type": "redirect", "RedirectConfig": {"Path": "/console", "StatusCode": "HTTP_302"}}' + grpcAnnotations: + alb.ingress.kubernetes.io/backend-protocol-version: GRPC + host: #use a DNS CNAME pointing to your ALB + + .. group-tab:: ``flyte-core`` on GCP using NGINX + + .. literalinclude:: ../../../charts/flyte-core/values-gcp.yaml + :caption: charts/flyte-core/values-gcp.yaml + :language: yaml + :lines: 156-164 -.. note:: - - This currently assumes that you have nginx ingress. We'll be updating these - in the near future to use the ALB ingress controller instead. *************** Authentication *************** -Authentication comes with Flyte in the form of OAuth 2. Please see the +Authentication comes with Flyte in the form of OAuth 2.0. Please see the `authentication guide `__ for instructions. .. note:: @@ -60,10 +85,3 @@ compatibility being maintained, for the most part. If you're using the :ref:`multi-cluster ` deployment model for Flyte, components should be upgraded together. - -.. note:: - - Expect to see minor version releases roughly 4-6 times a year - we aim to - release monthly, or whenever there is a large enough set of features to - warrant a release. Expect to see patch releases at more regular intervals, - especially for flytekit, the Python SDK. diff --git a/rsts/deployment/deployment/cloud_simple.rst b/rsts/deployment/deployment/cloud_simple.rst index b675df00b9..b280546708 100644 --- a/rsts/deployment/deployment/cloud_simple.rst +++ b/rsts/deployment/deployment/cloud_simple.rst @@ -115,6 +115,14 @@ hello world example: cd flytesnacks/cookbook pyflyte run --remote core/flyte_basics/hello_world.py my_wf +*********************************** +Flyte in on-premises infrastructure +*********************************** + +Sometimes, it's also helpful to be able to set up a Flyte environment in an on-premises Kubernetes environment or even on a laptop for testing and development purposes. +Check out `this community-maintained tutorial `__ to learn how to setup the required dependencies and deploy the `flyte-binary` chart to a local Kubernetes cluster. + + ************* What's Next? ************* diff --git a/rsts/deployment/deployment/index.rst b/rsts/deployment/deployment/index.rst index ac0765412a..eb06d0a6c0 100644 --- a/rsts/deployment/deployment/index.rst +++ b/rsts/deployment/deployment/index.rst @@ -49,29 +49,6 @@ deployment comes with a containerized `Minio `__, which offers - **GCP**: `GCS `__ - **Azure**: `Azure Blob Storage `__ - -Cluster Configuration -===================== - -Flyte configures K8s clusters to work with it. For example, as your Flyte userbase evolves, adding new projects is as -simple as registering them through the command line: - -.. prompt:: bash $ - - flytectl create project \ - --id my-flyte-project \ - --name "My Flyte Project" \ - --description "My first project onboarding onto Flyte" - -Once you invoke this command, this project should immediately show up in the Flyte console after refreshing. - -Flyte runs at a configurable cadence that ensures that all Kubernetes resources necessary for the new project are -created and new workflows can successfully be registered and executed within it. - -.. note:: - - For more information, see :std:ref:`flytectl `. - ************************ Flyte Deployment Paths ************************ @@ -108,7 +85,10 @@ There are three different paths for deploying a Flyte cluster: This option is appropriate if all your compute can `fit on one EKS cluster `__ . As of this writing, a single Flyte cluster can handle more than 13,000 nodes. - Whatever path you choose, note that ``FlytePropeller`` itself can be sharded as well, though typically it's not required. + Regardless of using single or multiple Kubernetes clusters for Flyte, note that ``FlytePropeller`` -the main data plane component- can be scaled out as well by using ``sharding`` if scale demands require it. + See `Automatic scale-out `__ to learn more about the sharding mechanism. + + Helm ==== @@ -156,10 +136,13 @@ Deployment Tips and Tricks Due to the many choices and constraints that you may face in your organization, the specific steps for deploying Flyte can vary significantly. For example, which cloud platform to use is typically a big fork in the road for many, and there -are many choices to make in terms of ingresses, auth providers, and versions of different dependent libraries that +are many choices to make in terms of Ingress controllers, auth providers, and versions of different dependent libraries that may interact with other parts of your stack. -In addition to searching and posting on the `Flyte Slack community `__, +Considering the above, we recommend checking out the `"Flyte The Hard Way" `__ set of community-maintained tutorials that can guide you through the process of preparing the infrastructure and +deploying Flyte. + +In addition to searching and posting on the `#flyte-deployment Slack channel `__, we have a `Github Discussion `__ section dedicated to deploying Flyte. Feel free to submit any hints you've found helpful as a discussion, ask questions, or simply document what worked or what didn't work for you. diff --git a/rsts/deployment/deployment/multicluster.rst b/rsts/deployment/deployment/multicluster.rst index 69c34989ae..e8c6b84f13 100644 --- a/rsts/deployment/deployment/multicluster.rst +++ b/rsts/deployment/deployment/multicluster.rst @@ -1,18 +1,18 @@ .. _deployment-deployment-multicluster: -################################## -Multiple K8s Cluster Deployment -################################## +###################################### +Multiple Kubernetes Cluster Deployment +###################################### .. tags:: Kubernetes, Infrastructure, Advanced .. note:: - The multicluster deployment described in this doc assumes you have deployed - the ``flyte`` Helm chart, which runs the individual Flyte services separately. + The multicluster deployment described in this section, assumes you have deployed + the ``flyte-core`` Helm chart, which runs the individual Flyte components separately. This is needed because in a multicluster setup, the execution engine is - deployed to multiple K8s clusters. This will not work with the ``flyte-binary`` - Helm chart, since that chart deploys all Flyte service as one single binary. + deployed to multiple K8s clusters; it won't work with the ``flyte-binary`` + Helm chart, since it deploys all Flyte services as one single binary. Scaling Beyond Kubernetes ------------------------- @@ -24,30 +24,162 @@ Scaling Beyond Kubernetes execution. The data plane fulfills these workflows by launching pods in Kubernetes. -At very large companies, total compute needs could exceed the limits of a single -Kubernetes cluster. -To address this, you can deploy the data plane to multiple Kubernetes clusters. -The control plane (FlyteAdmin) can be configured to load-balance workflows across -these individual data planes, protecting you from failure in a single Kubernetes -cluster increasing scalability. +.. image:: https://raw.githubusercontent.com/flyteorg/static-resources/main/common/flyte-multicluster-arch-v2.png -To achieve this, first, you have to create additional Kubernetes clusters. -For now, let's assume you have three Kubernetes clusters and that you can access -them all with ``kubectl``. +The case for multiple Kubernetes clusters may arise due to security constraints, +cost effectiveness or a need to scale out computing resources. + +To address this, you can deploy Flyte's data plane to multiple Kubernetes clusters. +The control plane (FlyteAdmin) can be configured to submit workflows to +these individual data planes. Additionally, Flyte provides the mechanisms for +administrators to retain control on the workflow placement logic while enabling +users to reap the benefits using simple abstractions like ``projects`` and ``domains``. + +Prerequisites +************* + +To make sure that your multicluster deployment is able to scale and process +requests successfully, the following environment-specific requirements should be met: + +.. tabbed:: AWS + + 1. An IAM Policy that defines the permissions needed for Flyte. A minimum set of permissions include: + + .. code-block:: json + + "Action": [ + "s3:DeleteObject*", + "s3:GetObject*", + "s3:ListBucket", + "s3:PutObject*" + ], + "Resource": [ + "arn:aws:s3:::*", + "arn:aws:s3:::*/*" + ], + + + 2. Two IAM Roles configured: one for the control plane components, and another for the data plane where the worker Pods and ``flytepropeller`` run. + + .. note:: + + Using the guidance from this document, make sure to follow your organization's policies to configure IAM resources. -Let's call these clusters ``cluster1``, ``cluster2``, and ``cluster3``. + 3. An OIDC Provider associated with each of your EKS clusters. You can use the following command to create and connect the Provider: -Next, deploy *only* the data planes to these clusters. To do this, remove the -data plane components from the ``flyte`` overlay, and create a new overlay -containing *only* the data plane resources. + .. prompt:: bash + + eksctl utils associate-iam-oidc-provider --cluster --approve + + 4. An IAM Trust Relationship that associates each EKS cluster type (control plane or data plane) with the Service Account(s) and namespaces + where the different elements of the system will run. + + Follow the steps in this section to complete the requirements indicated above: + + **Control plane role** + + 1. Use the following command to simplify the process of both creating a role and configuring an initial Trust Relationship: + + .. prompt:: bash + + eksctl create iamserviceaccount --cluster= --name=flyteadmin --role-only --role-name=flyte-controlplane-role --attach-policy-arn --approve --region --namespace flyte + + 2. Go to the **IAM** section in your **AWS Management Console** and select the role that was just created + 3. Go to the **Trust Relationships** tab and **Edit the Trust Policy** + 4. Add the ``datacatalog`` Service Account to the ``sub`` section + + .. note:: + + When caching is enabled, the ``datacatalog`` service store hashes of workflow inputs alongside with outputs on blob storage. Learn more `here `__. + + Example configuration: + + .. code-block:: json + + { + "Version": "2012-10-17", + "Statement": [ + { + "Effect": "Allow", + "Principal": { + "Federated": "arn:aws:iam:::oidc-provider/oidc.eks..amazonaws.com/id/" + }, + "Action": "sts:AssumeRoleWithWebIdentity", + "Condition": { + "StringEquals": { + "oidc.eks..amazonaws.com/id/:aud": "sts.amazonaws.com", + "oidc.eks..amazonaws.com/id/:sub": [ + "system:serviceaccount:flyte:flyteadmin", + "system:serviceaccount:flyte:datacatalog" + ] + } + } + } + ] + } + + **Data plane role** + + 1. Create the role and Trust Relationship: + + .. prompt:: bash + + eksctl create iamserviceaccount --cluster= --name=flytepropeller --role-only --role-name=flyte-dataplane-role --attach-policy-arn --approve --region --namespace flyte + + 2. Edit the **Trust Relationship** of the data plane role + + .. note:: + + By default, every Pod created for Task execution, uses the ``default`` Service Account on their respective namespace. In your cluster, you'll have as many + namespaces as ``project`` and ``domain`` combinations you may have. Hence, it might be useful to use a ``StringLike`` condition and to use a wildcard for the namespace name in the Trust Policy + + 3. Add the ``default`` Service Account: + + + Example configuration for one data plane cluster: + + .. code-block:: json + + { + "Version": "2012-10-17", + "Statement": [ + { + "Effect": "Allow", + "Principal": { + "Federated": "arn:aws:iam:::oidc-provider/oidc.eks..amazonaws.com/id/" + }, + "Action": "sts:AssumeRoleWithWebIdentity", + "Condition": { + "StringLike": { + "oidc.eks..amazonaws.com/id/.:aud": "sts.amazonaws.com", + "oidc.eks..amazonaws.com/id/.:sub": [ + "system:serviceaccount:flyte:flytepropeller", + "system:serviceaccount:*:default" + ] + } + } + } + + .. note:: + + To further refine the Trust Relationship, consider using a ``StringEquals`` condition and adding the ``default`` Service Account only for the ``project``-``domain`` + namespaces where Flyte tasks will run, instead of using a wildcard. + +.. _dataplane-deployment: Data Plane Deployment ********************* -First, add the Flyteorg Helm repo +This guide assumes that you have two Kubernetes clusters and that you can access +them all with ``kubectl``. + +Let's call these clusters ``dataplane1`` and ``dataplane2``. In this section, you'll prepare +the first cluster only. -.. code-block:: +1. Add the ``flyteorg`` Helm repo: + +.. prompt:: bash helm repo add flyteorg https://flyteorg.github.io/flyte helm repo update @@ -55,73 +187,124 @@ First, add the Flyteorg Helm repo helm fetch --untar --untardir . flyteorg/flyte-core cd flyte-core -Install Flyte data plane Helm chart +2. Open the ``values-dataplane.yaml`` file and add the following contents: + + .. code-block:: yaml + + configmap: + admin: + admin: + endpoint: :443 #indicate the URL you're using to connect to Flyte + insecure: false #enables secure communication over SSL. Requires a signed certificate + catalog: + catalog-cache: + endpoint: :443 + insecure: false + +.. note:: + + This step is needed so the ``flytepropeller`` instance in the data plane cluster is able to send notifications + back to the ``flyteadmin`` service in the control plane. The ``catalog`` service runs in the control plane and is used when caching is enabled. + +3. Install Flyte data plane Helm chart: + +.. note:: + + Use the same ``values-eks.yaml`` or ``values-gcp.yaml`` file you used to deploy the control plane. .. tabbed:: AWS .. code-block:: - helm upgrade flyte -n flyte flyteorg/flyte-core values.yaml \ - -f values-eks.yaml \ - -f values-dataplane.yaml \ - --create-namespace flyte --install + helm install flyte-core-data flyteorg/flyte-core -n flyte \ + --values values-eks.yaml --values values-dataplane.yaml \ + --create-namespace .. tabbed:: GCP .. code-block:: - helm upgrade flyte -n flyte flyteorg/flyte-core values.yaml \ - -f values-gcp.yaml \ - -f values-dataplane.yaml \ - --create-namespace flyte --install + helm install flyte-core-data -n flyte flyteorg/flyte-core \ + --values values-gcp.yaml \ + --values values-dataplane.yaml \ + --create-namespace flyte +.. _control-plane-deployment: -User and Control Plane Deployment +Control Plane configuration ********************************* -Some Flyte deployments may choose to run the control plane separate from the data -plane. FlyteAdmin is designed to create Kubernetes resources in one or more -Flyte data plane clusters. For the admin to access remote clusters, it needs -credentials to each cluster. +For ``flyteadmin`` to access and create Kubernetes resources in one or more +Flyte data plane clusters, it needs credentials to each cluster. +Flyte makes use of Kubernetes Service Accounts to enable every control plane cluster to perform +authenticated requests to the data plane Kubernetes API Server. +The default behaviour is that the Helm chart creates a `ServiceAccount `_ +in each data plane cluster. +In order to verify requests, the Kubernetes API Server expects a `signed bearer token `__ +attached to the Service Account. As of Kubernetes 1.24 and above, the bearer token has to be generated manually. -In Kubernetes, scoped service credentials are created by configuring a "Role" -resource in a Kubernetes cluster. When you attach the role to a "ServiceAccount", -Kubernetes generates a bearer token that permits access. Hence, create a -FlyteAdmin `ServiceAccount `_ -in each data plane cluster to generate these tokens. -.. warning:: - - **Never delete a ServiceAccount 🛑** +1. Use the following manifest to create a long-lived bearer token for the ``flyteadmin`` Service Account in your data plane cluster: - When you first create the FlyteAdmin ``ServiceAccount`` in a new cluster, a - bearer token is generated and will continue to allow access unless the - "ServiceAccount" is deleted. + .. prompt:: bash + + kubectl apply -f - <`__ is used). +.. code-block:: yaml + :caption: secrets.yaml -The credentials have two parts ("ca cert" and "bearer token"). Find the generated secret via: + apiVersion: v1 + kind: Secret + metadata: + name: cluster-credentials + namespace: flyte + type: Opaque + data: + +.. note:: + The credentials have two parts (``CA cert`` and ``bearer token``). + +3. Copy the bearer token of the first data plane cluster's secret to your clipboard using the following command: .. prompt:: bash $ - kubectl get secrets -n flyte | grep flyteadmin-token + kubectl get secret -n flyte dataplane1-token \ + -o jsonpath='{.data.token}' | pbcopy -Once you have the name of the secret, you can copy the ``ca cert`` to your clipboard using the following command: +4. Go to ``secrets.yaml`` and add a new entry under ``stringData`` with the data plane cluster token: -.. prompt:: bash $ +.. code-block:: yaml + :caption: secrets.yaml - kubectl get secret -n flyte {secret-name} \ - -o jsonpath='{.data.ca\.crt}' | base64 -D | pbcopy + apiVersion: v1 + kind: Secret + metadata: + name: cluster-credentials + namespace: flyte + type: Opaque + data: + dataplane_1_token: -You can copy the bearer token to your clipboard using the following command: +5. Obtain the corresponding certificate: .. prompt:: bash $ - kubectl get secret -n flyte {secret-name} \ - -o jsonpath='{.data.token}' | base64 -D | pbcopy + kubectl get secret -n flyte dataplane1-token \ + -o jsonpath='{.data.ca\.crt}' | pbcopy -Now these credentials need to be included in the control plane. Create a new -file named ``secrets.yaml`` that looks like: +6. Add another entry on your ``secrets.yaml`` file for the certificate: .. code-block:: yaml :caption: secrets.yaml @@ -133,20 +316,16 @@ file named ``secrets.yaml`` that looks like: namespace: flyte type: Opaque data: - cluster_1_token: {{ cluster 1 token here }} - cluster_1_cacert: {{ cluster 1 cacert here }} - cluster_2_token: {{ cluster 2 token here }} - cluster_2_cacert: {{ cluster 2 cacert here }} - cluster_3_token: {{ cluster 3 token here }} - cluster_3_cacert: {{ cluster 3 cacert here }} + dataplane_1_token: + dataplane_1_cacert: -Create cluster credentials secret in the control plane cluster. +7. Connect to your control plane cluster and create the ``cluster-credentials`` secret: .. prompt:: bash $ kubectl apply -f secrets.yaml -Create a file named ``values-override.yaml`` and add the following config to it: +8. Create a file named ``values-override.yaml`` and add the following config to it: .. code-block:: yaml :caption: values-override.yaml @@ -159,129 +338,324 @@ Create a file named ``values-override.yaml`` and add the following config to it: additionalVolumeMounts: - name: cluster-credentials mountPath: /var/run/credentials + initContainerClusterSyncAdditionalVolumeMounts: + - name: cluster-credentials + mountPath: /etc/credentials configmap: clusters: labelClusterMap: - team1: - - id: cluster_1 + label1: + - id: dataplane_1 weight: 1 - team2: - - id: cluster_2 - weight: 0.5 - - id: cluster_3 - weight: 0.5 clusterConfigs: - - name: "cluster_1" - endpoint: {{ your-cluster-1-kubeapi-endpoint.com }} + - name: "dataplane_1" + endpoint: https://:443 enabled: true auth: type: "file_path" - tokenPath: "/var/run/credentials/cluster_1_token" - certPath: "/var/run/credentials/cluster_1_cacert" - - name: "cluster_2" - endpoint: {{ your-cluster-2-kubeapi-endpoint.com }} - enabled: true - auth: - type: "file_path" - tokenPath: "/var/run/credentials/cluster_2_token" - certPath: "/var/run/credentials/cluster_2_cacert" - - name: "cluster_3" - endpoint: {{ your-cluster-3-kubeapi-endpoint.com }} - enabled: true - auth: - type: "file_path" - tokenPath: "/var/run/credentials/cluster_3_token" - certPath: "/var/run/credentials/cluster_3_cacert" + tokenPath: "/var/run/credentials/dataplane_1_token" + certPath: "/var/run/credentials/dataplane_1_cacert" +.. note:: + + Typically, you can obtain your Kubernetes API endpoint URL using the following command: -The ``configmap`` is used to schedule pods in different Kubernetes clusters, and -hence, acts like a "load balancer". ``team1`` and ``team2`` are the labels, where -each label can schedule a pod on multiple clusters depending on the weight. + .. prompt:: bash $ + + kubectl cluster-info -.. code-block:: yaml +In this configuration, ``label1`` and ``label2`` are just labels that we will use later in the process +to configure mappings that enable workflow executions matching those labels, to be scheduled +on one or multiple clusters depending on the weight (e.g. ``label1`` on ``dataplane_1``). The ``weight`` is the +priority of a specific cluster, relative to the other clusters under the ``labelClusterMap`` entry. The total sum of weights under a particular +label has to be 1. - configmap: - labelClusterMap: - team1: - - id: cluster_1 - weight: 1 - team2: - - id: cluster_2 - weight: 0.5 - - id: cluster_3 - weight: 0.5 - -Finally, install the Flyte control plane Helm chart. +9. Add the ``flyte-dataplane-role`` IAM Role as the ``defaultIamRole`` in your ``values-eks.yaml`` file. `See section here `__ + +10. Update the control plane Helm release: + +.. note:: + This step will disable ``flytepropeller`` in the control plane cluster, leaving no possibility of running workflows there. If you require + the control plane to run workflows, edit the ``values-controlplane.yaml`` file and set ``flytepropeller.enabled`` to ``true``. Then, perform the ``helm upgrade`` operation and complete the steps in :ref:`this section ` to configure it + as a dataplane cluster. .. tabbed:: AWS .. code-block:: - helm upgrade flyte -n flyte flyteorg/flyte-core values.yaml \ - -f values-aws.yaml \ - -f values-controlplane.yaml \ - -f values-override.yaml \ - --create-namespace flyte --install + helm upgrade flyte-core flyteorg/flyte-core \ + --values values-eks-controlplane.yaml --values values-override.yaml \ + --values values-eks.yaml -n flyte .. tabbed:: GCP .. code-block:: helm upgrade flyte -n flyte flyteorg/flyte-core values.yaml \ - -f values-gcp.yaml \ - -f values-controlplane.yaml \ - -f values-override.yaml \ - --create-namespace flyte --install + --values values-gcp.yaml \ + --values values-controlplane.yaml \ + --values values-override.yaml + +11. Verify that all Pods in the ``flyte`` namespace are ``Running``: + +Example output: + +.. prompt:: bash $ + + kubectl get pods -n flyte + NAME READY STATUS RESTARTS AGE + datacatalog-86f6b9bf64-bp2cj 1/1 Running 0 23h + datacatalog-86f6b9bf64-fjzcp 1/1 Running 0 23h + flyteadmin-84f666b6f5-7g65j 1/1 Running 0 23h + flyteadmin-84f666b6f5-sqfwv 1/1 Running 0 23h + flyteconsole-cdcb48b56-5qzlb 1/1 Running 0 23h + flyteconsole-cdcb48b56-zj75l 1/1 Running 0 23h + flytescheduler-947ccbd6-r8kg5 1/1 Running 0 23h + syncresources-6d8794bbcb-754wn 1/1 Running 0 23h + Configure Execution Cluster Labels ********************************** -The next step is to configure project-domain or workflow to schedule on a specific -Kubernetes cluster, for which the correct label needs to be added. +The next step is to configure project-domain or workflow labels to schedule on a specific +Kubernetes cluster. .. tabbed:: Configure Project & Domain - Get execution cluster label of the project and domain + 1. Create an ``ecl.yaml`` file with the following contents: + + .. code-block:: yaml - .. prompt:: bash $ + domain: development + project: project1 + value: label1 - flytectl get execution-cluster-label \ - -p flytesnacks -d development --attrFile ecl.yaml + .. note:: - Update the label in `ecl.yaml` + Change ``domain`` and ``project`` according to your environment. The ``value`` has + to match with the entry under ``labelClusterMap`` in the ``values-override.yaml`` file. + + 2. Repeat step 1 for every project-domain mapping you need to configure, creating a YAML file for each one. - .. code-block:: yaml + 3. Update the execution cluster label of the project and domain: - domain: development - project: flytesnacks - value: team1 + .. prompt:: bash $ -.. tabbed:: Configure Specific Workflow + flytectl update execution-cluster-label --attrFile ecl.yaml - Get execution cluster label of the project and domain + Example output: - .. prompt:: bash $ + .. prompt:: bash $ + + Updated attributes from team1 project and domain development + + + 4. Execute a workflow indicating project and domain: - flytectl get execution-cluster-label \ - -p flytesnacks -d development \ - core.control_flow.run_merge_sort.merge_sort \ - --attrFile ecl.yaml + .. prompt:: bash $ - Update the label in `ecl.yaml` + pyflyte run --remote --project team1 --domain development example.py training_workflow \  ✔ ╱ docs-development-env  + --hyperparameters '{"C": 0.1}' +.. tabbed:: Configure a Specific Workflow mapping + + 1. Create a ``workflow-ecl.yaml`` file with the following example contents: + .. code-block:: yaml domain: development - project: flytesnacks - workflow: core.control_flow.run_merge_sort.merge_sort - value: team1 + project: project1 + workflow: example.training_workflow + value: project1 -Lastly, update the execution cluster label. + 2. Update execution cluster label of the project and domain -.. prompt:: bash $ + .. prompt:: bash $ + + flytectl update execution-cluster-label \ + -p project1 -d development \ + example.training_workflow \ + --attrFile workflow-ecl.yaml - flytectl update execution-cluster-label --attrFile ecl.yaml + 3. Execute a workflow indicating project and domain: + + .. prompt:: bash $ + + pyflyte run --remote --project team1 --domain development example.py training_workflow \  ✔ ╱ docs-development-env  + --hyperparameters '{"C": 0.1}' Congratulations 🎉! With this, the execution of workflows belonging to a specific -project-domain or a single workflow will be scheduled on the target label +project-domain or a single specific workflow will be scheduled on the target label cluster. + +Day 2 Operations +---------------- + +Add another Kubernetes cluster +****************************** + +Find in this section the necessary steps to scale out your deployment by adding one Kubernetes cluster. +The process can be repeated for additional clusters. + +.. tabbed:: AWS + + + + 1. Create the new cluster: + + .. prompt:: bash $ + + eksctl create cluster --name flyte-dataplane-2 --region --version 1.25 --vpc-private-subnets , --without-nodegroup + + .. note:: + + This is only one of multiple ways to provision an EKS cluster. Follow your organization's policies to complete this step. + + + 2. Add a nodegroup to the cluster. Typically ``t3.xlarge`` instances provide enough resources to get started. Follow your organization's policies in this regard. + + 4. Create an OIDC Provider for the new cluster: + + .. prompt:: bash $ + + eksctl utils associate-iam-oidc-provider --cluster flyte-dataplane-2 --region --approve + + 5. Take note of the OIDC Provider ID: + + .. prompt:: bash $ + + aws eks describe-cluster --region --name flyte-dataplane-2 --query "cluster.identity.oidc.issuer" --output text + + 6. Go to the **IAM** section in the **AWS Management Console** and edit the **Trust Policy** of the ``flyte-dataplane-role`` + 7. Add a new ``Principal`` with the new cluster's OIDC Provider ID. Include the ``Action`` and ``Conditions`` section: + + .. code-block:: json + + { + "Version": "2012-10-17", + "Statement": [ + { + "Effect": "Allow", + "Principal": { + "Federated": "arn:aws:iam:::oidc-provider/oidc.eks..amazonaws.com/id/" + }, + "Action": "sts:AssumeRoleWithWebIdentity", + "Condition": { + "StringLike": { + "oidc.eks..amazonaws.com/id/:aud": "sts.amazonaws.com", + + "oidc.eks..amazonaws.com/id/:sub": [ + "system:serviceaccount:flyte:flytepropeller", + "system:serviceaccount:*:default" + ] + } + } + }, + { + "Effect": "Allow", + "Principal": { + "Federated": "arn:aws:iam:::oidc-provider/oidc.eks..amazonaws.com/id/" + }, + "Action": "sts:AssumeRoleWithWebIdentity", + "Condition": { + "StringLike": { + "oidc.eks..amazonaws.com/id/:aud": "sts.amazonaws.com", + "oidc.eks..amazonaws.com/id/:sub": [ + "system:serviceaccount:flyte:flytepropeller", + "system:serviceaccount:*:default" + ] + } + } + } + ] + } + + + + 7. Install the data plane Helm chart following the steps in the **Data plane deployment** section. See :ref:`section `. + 8. Follow steps 1-3 in the **control plane configuration** section (see :ref:`section `) to generate and populate a new section in your ``secrets.yaml`` file + + Example: + + .. code-block:: yaml + + apiVersion: v1 + kind: Secret + metadata: + name: cluster-credentials + namespace: flyte + type: Opaque + data: + dataplane_1_token: + dataplane_1_cacert: + dataplane_2_token: + dataplane_2_cacert: + + 9. Connect to the control plane cluster and update the ``cluster-credentials`` Secret: + + .. prompt:: bash $ + + kubect apply -f secrets.yaml + + 10. Go to your ``values-override.yaml`` file and add the information of the new cluster. Adding a new label is not entirely needed. + Nevertheless, in the following example a new label is created to illustrate Flyte's capability to schedule workloads on different clusters + in response to user-defined mappings of ``project``, ``domain`` and ``label``:abbr: + + .. code-block:: yaml + + ... #all the above content remains the same + configmap: + clusters: + labelClusterMap: + label1: + - id: dataplane_1 + weight: 1 + label2: + - id: dataplane_2 + weight: 1 + clusterConfigs: + - name: "dataplane_1" + endpoint: https://.com:443 + enabled: true + auth: + type: "file_path" + tokenPath: "/var/run/credentials/dataplane_1_token" + certPath: "/var/run/credentials/dataplane_1_cacert" + - name: "dataplane_2" + endpoint: https://:443 + enabled: true + auth: + type: "file_path" + tokenPath: "/var/run/credentials/dataplane_2_token" + certPath: "/var/run/credentials/dataplane_2_cacert" + + 11. Update the Helm release in the control plane cluster: + + .. prompt:: bash $ + + helm upgrade flyte-core-control flyteorg/flyte-core -n flyte --values values-controlplane.yaml --values values-eks.yaml --values values-override.yaml + + 12. Create a new execution cluster labels file with the following sample content: + + .. code-block:: yaml + + domain: production + project: team1 + value: label2 + + 13. Update the cluster execution labels for the project: + + .. prompt:: bash $ + + flytectl update execution-cluster-label --attrFile ecl-production.yaml + + 14. Finally, submit a workflow execution that matches the label of the new cluster: + + .. prompt:: bash $ + + pyflyte run --remote --project team1 --domain production example.py training_workflow \ + --hyperparameters '{"C": 0.1}' + + 15. A successful execution should be visible on the UI, confirming it ran in the new cluster: + + .. image:: https://raw.githubusercontent.com/flyteorg/static-resources/main/common/multicluster-execution.png \ No newline at end of file diff --git a/rsts/deployment/deployment/sandbox.rst b/rsts/deployment/deployment/sandbox.rst index 073125e5cc..5c40eea5eb 100644 --- a/rsts/deployment/deployment/sandbox.rst +++ b/rsts/deployment/deployment/sandbox.rst @@ -6,11 +6,11 @@ Sandbox Deployment .. tags:: Kubernetes, Infrastructure, Basic -A sandbox deployment of Flyte is bundles together portable versions of Flyte's +A sandbox deployment of Flyte bundles together portable versions of Flyte's dependencies such as a relational database and durable object store. For the blob store requirements, Flyte Sandbox uses `Minio `__, -which offers an S3 compatible interface, and for Postgres, we use the stock +which offers an S3 compatible interface, and for Postgres, it uses the stock Postgres Docker image and Helm chart. .. important:: @@ -41,7 +41,7 @@ Requirements - Install `docker `__ or any other OCI-compatible tool, like Podman or LXD. - Install `flytectl `__, the official CLI for Flyte. -While Flyte can run any OCI-compatible task image, using the default Kubernetes container runtime (cri-o), the Flyte +While Flyte can run any OCI-compatible task image using the default Kubernetes container runtime (``containerd``), the Flyte core maintainers typically use Docker. Note that the ``flytectl demo`` command does rely on Docker APIs, but as this demo environment is just one self-contained image, you can also run the image directly using another run time. @@ -79,12 +79,4 @@ who wish to dig deeper into the storage layer. 📂 The Minio API is hosted on localhost:30002. Use http://localhost:30080/minio/login for Minio console Now that you have the sandbox cluster running, you can now go to the :ref:`User Guide ` or -:ref:`Tutorials ` to run tasks and workflows written in ``flytekit``, the Python SDK for Flyte. - -************************** -Flyte Sandbox on the Cloud -************************** - -Sometimes it's also helpful to be able to install a sandboxed environment on a cloud provider. That is, you have access -to an EKS or GKE cluster, but provisioning a separate database or blob storage bucket is harder because of a lack of -infrastructure support. Instructions for how to do this will be forthcoming. +:ref:`Tutorials ` to run tasks and workflows written in ``flytekit``, the Python SDK for Flyte. \ No newline at end of file