From e636ada2ebbc1fd9c9e64fac6db278fd603cde17 Mon Sep 17 00:00:00 2001 From: SzymonZebrowski <25105608+SzymonZebrowski@users.noreply.github.com> Date: Tue, 14 Jan 2025 19:24:14 +0100 Subject: [PATCH] feat: Added support for kafka OAuth authentication (#2257) Signed-off-by: SzymonZebrowski <25105608+SzymonZebrowski@users.noreply.github.com> --- api/json-schema/schema.json | 26 + api/openapi-spec/swagger.json | 26 + .../numaflow.numaproj.io_monovertices.yaml | 105 ++ .../full/numaflow.numaproj.io_pipelines.yaml | 105 ++ .../full/numaflow.numaproj.io_vertices.yaml | 105 ++ config/install.yaml | 315 ++++ config/namespace-install.yaml | 315 ++++ docs/APIs.md | 119 ++ docs/user-guide/sinks/kafka.md | 10 +- docs/user-guide/sources/kafka.md | 10 +- pkg/apis/numaflow/v1alpha1/generated.pb.go | 1407 ++++++++++------- pkg/apis/numaflow/v1alpha1/generated.proto | 15 + pkg/apis/numaflow/v1alpha1/sasl.go | 12 + .../v1alpha1/zz_generated.deepcopy.go | 31 + .../numaflow/v1alpha1/zz_generated.openapi.go | 44 +- pkg/shared/util/sasl_config.go | 64 + pkg/shared/util/sasl_config_test.go | 37 +- rust/numaflow-models/src/models/mod.rs | 2 + rust/numaflow-models/src/models/sasl.rs | 3 + rust/numaflow-models/src/models/saslo_auth.rs | 42 + 20 files changed, 2247 insertions(+), 546 deletions(-) create mode 100644 rust/numaflow-models/src/models/saslo_auth.rs diff --git a/api/json-schema/schema.json b/api/json-schema/schema.json index ffc4bbcfee..e99999e5f8 100644 --- a/api/json-schema/schema.json +++ b/api/json-schema/schema.json @@ -21748,6 +21748,10 @@ "description": "SASL mechanism to use", "type": "string" }, + "oauth": { + "$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.SASLOAuth", + "description": "OAuth contains the oauth config" + }, "plain": { "$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.SASLPlain", "description": "SASLPlain contains the sasl plain config" @@ -21766,6 +21770,28 @@ ], "type": "object" }, + "io.numaproj.numaflow.v1alpha1.SASLOAuth": { + "properties": { + "clientID": { + "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector", + "description": "ClientID refers to the secret that contains the client id" + }, + "clientSecret": { + "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector", + "description": "ClientSecret refers to the secret that contains the client secret" + }, + "tokenEndpoint": { + "description": "TokenEndpoint refers to the token endpoint", + "type": "string" + } + }, + "required": [ + "clientID", + "clientSecret", + "tokenEndpoint" + ], + "type": "object" + }, "io.numaproj.numaflow.v1alpha1.SASLPlain": { "properties": { "handshake": { diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 196054ee6f..1d018e9c3c 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -21738,6 +21738,10 @@ "description": "SASL mechanism to use", "type": "string" }, + "oauth": { + "description": "OAuth contains the oauth config", + "$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.SASLOAuth" + }, "plain": { "description": "SASLPlain contains the sasl plain config", "$ref": "#/definitions/io.numaproj.numaflow.v1alpha1.SASLPlain" @@ -21752,6 +21756,28 @@ } } }, + "io.numaproj.numaflow.v1alpha1.SASLOAuth": { + "type": "object", + "required": [ + "clientID", + "clientSecret", + "tokenEndpoint" + ], + "properties": { + "clientID": { + "description": "ClientID refers to the secret that contains the client id", + "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector" + }, + "clientSecret": { + "description": "ClientSecret refers to the secret that contains the client secret", + "$ref": "#/definitions/io.k8s.api.core.v1.SecretKeySelector" + }, + "tokenEndpoint": { + "description": "TokenEndpoint refers to the token endpoint", + "type": "string" + } + } + }, "io.numaproj.numaflow.v1alpha1.SASLPlain": { "type": "object", "required": [ diff --git a/config/base/crds/full/numaflow.numaproj.io_monovertices.yaml b/config/base/crds/full/numaflow.numaproj.io_monovertices.yaml index 79ffec3919..f5ecffc0f3 100644 --- a/config/base/crds/full/numaflow.numaproj.io_monovertices.yaml +++ b/config/base/crds/full/numaflow.numaproj.io_monovertices.yaml @@ -3474,6 +3474,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -4009,6 +4044,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -4723,6 +4793,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: diff --git a/config/base/crds/full/numaflow.numaproj.io_pipelines.yaml b/config/base/crds/full/numaflow.numaproj.io_pipelines.yaml index d035799a96..9297b80ad9 100644 --- a/config/base/crds/full/numaflow.numaproj.io_pipelines.yaml +++ b/config/base/crds/full/numaflow.numaproj.io_pipelines.yaml @@ -8158,6 +8158,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -8693,6 +8728,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -9407,6 +9477,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: diff --git a/config/base/crds/full/numaflow.numaproj.io_vertices.yaml b/config/base/crds/full/numaflow.numaproj.io_vertices.yaml index 0dfad151d6..597f3cde0a 100644 --- a/config/base/crds/full/numaflow.numaproj.io_vertices.yaml +++ b/config/base/crds/full/numaflow.numaproj.io_vertices.yaml @@ -2942,6 +2942,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -3477,6 +3512,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -4191,6 +4261,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: diff --git a/config/install.yaml b/config/install.yaml index 5706567078..6fa4852186 100644 --- a/config/install.yaml +++ b/config/install.yaml @@ -6661,6 +6661,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -7196,6 +7231,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -7910,6 +7980,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -17896,6 +18001,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -18431,6 +18571,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -19145,6 +19320,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -24306,6 +24516,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -24841,6 +25086,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -25555,6 +25835,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: diff --git a/config/namespace-install.yaml b/config/namespace-install.yaml index 38af8d0245..0ebf53670d 100644 --- a/config/namespace-install.yaml +++ b/config/namespace-install.yaml @@ -6661,6 +6661,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -7196,6 +7231,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -7910,6 +7980,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -17896,6 +18001,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -18431,6 +18571,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -19145,6 +19320,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -24306,6 +24516,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -24841,6 +25086,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: @@ -25555,6 +25835,41 @@ spec: type: object mechanism: type: string + oauth: + properties: + clientID: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + clientSecret: + properties: + key: + type: string + name: + default: "" + type: string + optional: + type: boolean + required: + - key + type: object + x-kubernetes-map-type: atomic + tokenEndpoint: + type: string + required: + - clientID + - clientSecret + - tokenEndpoint + type: object plain: properties: handshake: diff --git a/docs/APIs.md b/docs/APIs.md index 57c594c67b..8c1dfd4b16 100644 --- a/docs/APIs.md +++ b/docs/APIs.md @@ -9101,6 +9101,125 @@ SASLSCRAMSHA512 contains the sasl plain config + + + + +oauth
+ SASLOAuth + + + + +(Optional) +

+ +OAuth contains the oauth config +

+ + + + + + + + + +

+ +SASLOAuth +

+ +

+ +(Appears on: +SASL) +

+ +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +Field + + +Description +
+ +clientID
+ +Kubernetes core/v1.SecretKeySelector +
+ +

+ +ClientID refers to the secret that contains the client id +

+ +
+ +clientSecret
+ +Kubernetes core/v1.SecretKeySelector +
+ +

+ +ClientSecret refers to the secret that contains the client secret +

+ +
+ +tokenEndpoint
string +
+ +

+ +TokenEndpoint refers to the token endpoint +

+ +
diff --git a/docs/user-guide/sinks/kafka.md b/docs/user-guide/sinks/kafka.md index 6837f262ff..6b610b828c 100644 --- a/docs/user-guide/sinks/kafka.md +++ b/docs/user-guide/sinks/kafka.md @@ -34,7 +34,7 @@ spec: name: my-pk key: my-pk-key sasl: # Optional - mechanism: GSSAPI # PLAIN, GSSAPI, SCRAM-SHA-256 or SCRAM-SHA-512, other mechanisms not supported + mechanism: GSSAPI # PLAIN, GSSAPI, OAUTHBEARER, SCRAM-SHA-256 or SCRAM-SHA-512 other mechanisms not supported gssapi: # Optional, for GSSAPI mechanism serviceName: my-service realm: my-realm @@ -85,6 +85,14 @@ spec: # Send the Kafka SASL handshake first if enabled (defaults to true) # Set this to false if using a non-Kafka SASL proxy handshake: true + oauth: #Optional, for OAUTHBEARER mechanism + clientID: # Pointing to a secret reference which contains the client id + name: kafka-oauth-client + key: clientid + clientSecret: # Pointing to a secret reference which contains the client secret + name: kafka-oauth-client + key: clientsecret + tokenEndpoint: https://oauth-token.com/v1/token # Optional, a yaml format string which could apply more configuration for the sink. # The configuration hierarchy follows the Struct of sarama.Config at https://github.com/IBM/sarama/blob/main/config.go. config: | diff --git a/docs/user-guide/sources/kafka.md b/docs/user-guide/sources/kafka.md index 3fdd9b2c4f..5a28c41bc4 100644 --- a/docs/user-guide/sources/kafka.md +++ b/docs/user-guide/sources/kafka.md @@ -79,7 +79,15 @@ spec: key: scram-sha-512-password-key # Send the Kafka SASL handshake first if enabled (defaults to true) # Set this to false if using a non-Kafka SASL proxy - handshake: true + handshake: true + oauth: #Optional, for OAUTHBEARER mechanism + clientID: # Pointing to a secret reference which contains the client id + name: kafka-oauth-client + key: clientid + clientSecret: # Pointing to a secret reference which contains the client secret + name: kafka-oauth-client + key: clientsecret + tokenEndpoint: https://oauth-token.com/v1/token ``` ## FAQ diff --git a/pkg/apis/numaflow/v1alpha1/generated.pb.go b/pkg/apis/numaflow/v1alpha1/generated.pb.go index cc34329198..6a394b2105 100644 --- a/pkg/apis/numaflow/v1alpha1/generated.pb.go +++ b/pkg/apis/numaflow/v1alpha1/generated.pb.go @@ -1926,10 +1926,38 @@ func (m *SASL) XXX_DiscardUnknown() { var xxx_messageInfo_SASL proto.InternalMessageInfo +func (m *SASLOAuth) Reset() { *m = SASLOAuth{} } +func (*SASLOAuth) ProtoMessage() {} +func (*SASLOAuth) Descriptor() ([]byte, []int) { + return fileDescriptor_9d0d1b17d3865563, []int{67} +} +func (m *SASLOAuth) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SASLOAuth) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil +} +func (m *SASLOAuth) XXX_Merge(src proto.Message) { + xxx_messageInfo_SASLOAuth.Merge(m, src) +} +func (m *SASLOAuth) XXX_Size() int { + return m.Size() +} +func (m *SASLOAuth) XXX_DiscardUnknown() { + xxx_messageInfo_SASLOAuth.DiscardUnknown(m) +} + +var xxx_messageInfo_SASLOAuth proto.InternalMessageInfo + func (m *SASLPlain) Reset() { *m = SASLPlain{} } func (*SASLPlain) ProtoMessage() {} func (*SASLPlain) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{67} + return fileDescriptor_9d0d1b17d3865563, []int{68} } func (m *SASLPlain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1957,7 +1985,7 @@ var xxx_messageInfo_SASLPlain proto.InternalMessageInfo func (m *Scale) Reset() { *m = Scale{} } func (*Scale) ProtoMessage() {} func (*Scale) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{68} + return fileDescriptor_9d0d1b17d3865563, []int{69} } func (m *Scale) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1985,7 +2013,7 @@ var xxx_messageInfo_Scale proto.InternalMessageInfo func (m *ServingSource) Reset() { *m = ServingSource{} } func (*ServingSource) ProtoMessage() {} func (*ServingSource) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{69} + return fileDescriptor_9d0d1b17d3865563, []int{70} } func (m *ServingSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2013,7 +2041,7 @@ var xxx_messageInfo_ServingSource proto.InternalMessageInfo func (m *ServingStore) Reset() { *m = ServingStore{} } func (*ServingStore) ProtoMessage() {} func (*ServingStore) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{70} + return fileDescriptor_9d0d1b17d3865563, []int{71} } func (m *ServingStore) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2041,7 +2069,7 @@ var xxx_messageInfo_ServingStore proto.InternalMessageInfo func (m *SessionWindow) Reset() { *m = SessionWindow{} } func (*SessionWindow) ProtoMessage() {} func (*SessionWindow) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{71} + return fileDescriptor_9d0d1b17d3865563, []int{72} } func (m *SessionWindow) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2069,7 +2097,7 @@ var xxx_messageInfo_SessionWindow proto.InternalMessageInfo func (m *SideInput) Reset() { *m = SideInput{} } func (*SideInput) ProtoMessage() {} func (*SideInput) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{72} + return fileDescriptor_9d0d1b17d3865563, []int{73} } func (m *SideInput) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2097,7 +2125,7 @@ var xxx_messageInfo_SideInput proto.InternalMessageInfo func (m *SideInputTrigger) Reset() { *m = SideInputTrigger{} } func (*SideInputTrigger) ProtoMessage() {} func (*SideInputTrigger) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{73} + return fileDescriptor_9d0d1b17d3865563, []int{74} } func (m *SideInputTrigger) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2125,7 +2153,7 @@ var xxx_messageInfo_SideInputTrigger proto.InternalMessageInfo func (m *SideInputsManagerTemplate) Reset() { *m = SideInputsManagerTemplate{} } func (*SideInputsManagerTemplate) ProtoMessage() {} func (*SideInputsManagerTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{74} + return fileDescriptor_9d0d1b17d3865563, []int{75} } func (m *SideInputsManagerTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2153,7 +2181,7 @@ var xxx_messageInfo_SideInputsManagerTemplate proto.InternalMessageInfo func (m *Sink) Reset() { *m = Sink{} } func (*Sink) ProtoMessage() {} func (*Sink) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{75} + return fileDescriptor_9d0d1b17d3865563, []int{76} } func (m *Sink) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2181,7 +2209,7 @@ var xxx_messageInfo_Sink proto.InternalMessageInfo func (m *SlidingWindow) Reset() { *m = SlidingWindow{} } func (*SlidingWindow) ProtoMessage() {} func (*SlidingWindow) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{76} + return fileDescriptor_9d0d1b17d3865563, []int{77} } func (m *SlidingWindow) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2209,7 +2237,7 @@ var xxx_messageInfo_SlidingWindow proto.InternalMessageInfo func (m *Source) Reset() { *m = Source{} } func (*Source) ProtoMessage() {} func (*Source) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{77} + return fileDescriptor_9d0d1b17d3865563, []int{78} } func (m *Source) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2237,7 +2265,7 @@ var xxx_messageInfo_Source proto.InternalMessageInfo func (m *Status) Reset() { *m = Status{} } func (*Status) ProtoMessage() {} func (*Status) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{78} + return fileDescriptor_9d0d1b17d3865563, []int{79} } func (m *Status) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2265,7 +2293,7 @@ var xxx_messageInfo_Status proto.InternalMessageInfo func (m *TLS) Reset() { *m = TLS{} } func (*TLS) ProtoMessage() {} func (*TLS) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{79} + return fileDescriptor_9d0d1b17d3865563, []int{80} } func (m *TLS) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2293,7 +2321,7 @@ var xxx_messageInfo_TLS proto.InternalMessageInfo func (m *TagConditions) Reset() { *m = TagConditions{} } func (*TagConditions) ProtoMessage() {} func (*TagConditions) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{80} + return fileDescriptor_9d0d1b17d3865563, []int{81} } func (m *TagConditions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2321,7 +2349,7 @@ var xxx_messageInfo_TagConditions proto.InternalMessageInfo func (m *Templates) Reset() { *m = Templates{} } func (*Templates) ProtoMessage() {} func (*Templates) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{81} + return fileDescriptor_9d0d1b17d3865563, []int{82} } func (m *Templates) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2349,7 +2377,7 @@ var xxx_messageInfo_Templates proto.InternalMessageInfo func (m *Transformer) Reset() { *m = Transformer{} } func (*Transformer) ProtoMessage() {} func (*Transformer) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{82} + return fileDescriptor_9d0d1b17d3865563, []int{83} } func (m *Transformer) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2377,7 +2405,7 @@ var xxx_messageInfo_Transformer proto.InternalMessageInfo func (m *UDF) Reset() { *m = UDF{} } func (*UDF) ProtoMessage() {} func (*UDF) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{83} + return fileDescriptor_9d0d1b17d3865563, []int{84} } func (m *UDF) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2405,7 +2433,7 @@ var xxx_messageInfo_UDF proto.InternalMessageInfo func (m *UDSink) Reset() { *m = UDSink{} } func (*UDSink) ProtoMessage() {} func (*UDSink) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{84} + return fileDescriptor_9d0d1b17d3865563, []int{85} } func (m *UDSink) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2433,7 +2461,7 @@ var xxx_messageInfo_UDSink proto.InternalMessageInfo func (m *UDSource) Reset() { *m = UDSource{} } func (*UDSource) ProtoMessage() {} func (*UDSource) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{85} + return fileDescriptor_9d0d1b17d3865563, []int{86} } func (m *UDSource) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2461,7 +2489,7 @@ var xxx_messageInfo_UDSource proto.InternalMessageInfo func (m *UDTransformer) Reset() { *m = UDTransformer{} } func (*UDTransformer) ProtoMessage() {} func (*UDTransformer) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{86} + return fileDescriptor_9d0d1b17d3865563, []int{87} } func (m *UDTransformer) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2489,7 +2517,7 @@ var xxx_messageInfo_UDTransformer proto.InternalMessageInfo func (m *UpdateStrategy) Reset() { *m = UpdateStrategy{} } func (*UpdateStrategy) ProtoMessage() {} func (*UpdateStrategy) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{87} + return fileDescriptor_9d0d1b17d3865563, []int{88} } func (m *UpdateStrategy) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2517,7 +2545,7 @@ var xxx_messageInfo_UpdateStrategy proto.InternalMessageInfo func (m *Vertex) Reset() { *m = Vertex{} } func (*Vertex) ProtoMessage() {} func (*Vertex) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{88} + return fileDescriptor_9d0d1b17d3865563, []int{89} } func (m *Vertex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2545,7 +2573,7 @@ var xxx_messageInfo_Vertex proto.InternalMessageInfo func (m *VertexInstance) Reset() { *m = VertexInstance{} } func (*VertexInstance) ProtoMessage() {} func (*VertexInstance) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{89} + return fileDescriptor_9d0d1b17d3865563, []int{90} } func (m *VertexInstance) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2573,7 +2601,7 @@ var xxx_messageInfo_VertexInstance proto.InternalMessageInfo func (m *VertexLimits) Reset() { *m = VertexLimits{} } func (*VertexLimits) ProtoMessage() {} func (*VertexLimits) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{90} + return fileDescriptor_9d0d1b17d3865563, []int{91} } func (m *VertexLimits) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2601,7 +2629,7 @@ var xxx_messageInfo_VertexLimits proto.InternalMessageInfo func (m *VertexList) Reset() { *m = VertexList{} } func (*VertexList) ProtoMessage() {} func (*VertexList) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{91} + return fileDescriptor_9d0d1b17d3865563, []int{92} } func (m *VertexList) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2629,7 +2657,7 @@ var xxx_messageInfo_VertexList proto.InternalMessageInfo func (m *VertexSpec) Reset() { *m = VertexSpec{} } func (*VertexSpec) ProtoMessage() {} func (*VertexSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{92} + return fileDescriptor_9d0d1b17d3865563, []int{93} } func (m *VertexSpec) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2657,7 +2685,7 @@ var xxx_messageInfo_VertexSpec proto.InternalMessageInfo func (m *VertexStatus) Reset() { *m = VertexStatus{} } func (*VertexStatus) ProtoMessage() {} func (*VertexStatus) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{93} + return fileDescriptor_9d0d1b17d3865563, []int{94} } func (m *VertexStatus) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2685,7 +2713,7 @@ var xxx_messageInfo_VertexStatus proto.InternalMessageInfo func (m *VertexTemplate) Reset() { *m = VertexTemplate{} } func (*VertexTemplate) ProtoMessage() {} func (*VertexTemplate) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{94} + return fileDescriptor_9d0d1b17d3865563, []int{95} } func (m *VertexTemplate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2713,7 +2741,7 @@ var xxx_messageInfo_VertexTemplate proto.InternalMessageInfo func (m *Watermark) Reset() { *m = Watermark{} } func (*Watermark) ProtoMessage() {} func (*Watermark) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{95} + return fileDescriptor_9d0d1b17d3865563, []int{96} } func (m *Watermark) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2741,7 +2769,7 @@ var xxx_messageInfo_Watermark proto.InternalMessageInfo func (m *Window) Reset() { *m = Window{} } func (*Window) ProtoMessage() {} func (*Window) Descriptor() ([]byte, []int) { - return fileDescriptor_9d0d1b17d3865563, []int{96} + return fileDescriptor_9d0d1b17d3865563, []int{97} } func (m *Window) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2842,6 +2870,7 @@ func init() { proto.RegisterType((*RetryStrategy)(nil), "github.com.numaproj.numaflow.pkg.apis.numaflow.v1alpha1.RetryStrategy") proto.RegisterType((*RollingUpdateStrategy)(nil), "github.com.numaproj.numaflow.pkg.apis.numaflow.v1alpha1.RollingUpdateStrategy") proto.RegisterType((*SASL)(nil), "github.com.numaproj.numaflow.pkg.apis.numaflow.v1alpha1.SASL") + proto.RegisterType((*SASLOAuth)(nil), "github.com.numaproj.numaflow.pkg.apis.numaflow.v1alpha1.SASLOAuth") proto.RegisterType((*SASLPlain)(nil), "github.com.numaproj.numaflow.pkg.apis.numaflow.v1alpha1.SASLPlain") proto.RegisterType((*Scale)(nil), "github.com.numaproj.numaflow.pkg.apis.numaflow.v1alpha1.Scale") proto.RegisterType((*ServingSource)(nil), "github.com.numaproj.numaflow.pkg.apis.numaflow.v1alpha1.ServingSource") @@ -2880,518 +2909,522 @@ func init() { } var fileDescriptor_9d0d1b17d3865563 = []byte{ - // 8167 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5d, 0x6c, 0x24, 0x57, - 0x76, 0x9e, 0xfa, 0x8f, 0xdd, 0x7d, 0x9a, 0x7f, 0xba, 0x33, 0x1a, 0x71, 0xb8, 0xa3, 0xe9, 0xd9, - 0x5a, 0xaf, 0x76, 0x1c, 0xdb, 0x64, 0x44, 0xaf, 0xb4, 0x5a, 0xdb, 0xbb, 0x12, 0x9b, 0x1c, 0x72, - 0xa8, 0x21, 0x67, 0xb8, 0xa7, 0xc9, 0x91, 0xd6, 0x8a, 0x57, 0x29, 0x56, 0x5d, 0x36, 0x4b, 0xac, - 0xae, 0xea, 0xad, 0xaa, 0xe6, 0x0c, 0xe5, 0x18, 0x6b, 0xef, 0x26, 0xd0, 0x06, 0x49, 0x90, 0xc0, - 0x4f, 0x06, 0x02, 0x27, 0x48, 0x10, 0xc0, 0x0f, 0x86, 0xf3, 0x60, 0x64, 0xf3, 0x10, 0x20, 0x3f, - 0x0e, 0x82, 0x64, 0xf3, 0xbf, 0x08, 0x02, 0x44, 0x79, 0x08, 0x91, 0x65, 0x90, 0x87, 0x04, 0x48, - 0xe0, 0xc4, 0x48, 0x9c, 0x0c, 0x8c, 0x38, 0xb8, 0x7f, 0xf5, 0xd7, 0xd5, 0x33, 0x64, 0x57, 0x73, - 0x34, 0x5a, 0xeb, 0xad, 0xea, 0x9e, 0x73, 0xbf, 0x73, 0xeb, 0xd6, 0xfd, 0x39, 0xf7, 0x9c, 0x73, - 0xef, 0x85, 0xf5, 0x8e, 0x15, 0x1c, 0xf4, 0xf7, 0x16, 0x0c, 0xb7, 0xbb, 0xe8, 0xf4, 0xbb, 0x7a, - 0xcf, 0x73, 0xdf, 0xe7, 0x0f, 0xfb, 0xb6, 0xfb, 0x60, 0xb1, 0x77, 0xd8, 0x59, 0xd4, 0x7b, 0x96, - 0x1f, 0xa5, 0x1c, 0xbd, 0xa2, 0xdb, 0xbd, 0x03, 0xfd, 0x95, 0xc5, 0x0e, 0x75, 0xa8, 0xa7, 0x07, - 0xd4, 0x5c, 0xe8, 0x79, 0x6e, 0xe0, 0x92, 0x2f, 0x45, 0x40, 0x0b, 0x0a, 0x68, 0x41, 0x65, 0x5b, - 0xe8, 0x1d, 0x76, 0x16, 0x18, 0x50, 0x94, 0xa2, 0x80, 0xe6, 0x7f, 0x2a, 0x56, 0x82, 0x8e, 0xdb, - 0x71, 0x17, 0x39, 0xde, 0x5e, 0x7f, 0x9f, 0xbf, 0xf1, 0x17, 0xfe, 0x24, 0xe4, 0xcc, 0x6b, 0x87, - 0xaf, 0xfb, 0x0b, 0x96, 0xcb, 0x8a, 0xb5, 0x68, 0xb8, 0x1e, 0x5d, 0x3c, 0x1a, 0x28, 0xcb, 0xfc, - 0x17, 0x23, 0x9e, 0xae, 0x6e, 0x1c, 0x58, 0x0e, 0xf5, 0x8e, 0xd5, 0xb7, 0x2c, 0x7a, 0xd4, 0x77, - 0xfb, 0x9e, 0x41, 0xcf, 0x95, 0xcb, 0x5f, 0xec, 0xd2, 0x40, 0xcf, 0x92, 0xb5, 0x38, 0x2c, 0x97, - 0xd7, 0x77, 0x02, 0xab, 0x3b, 0x28, 0xe6, 0xb5, 0x27, 0x65, 0xf0, 0x8d, 0x03, 0xda, 0xd5, 0x07, - 0xf2, 0xfd, 0xf4, 0xb0, 0x7c, 0xfd, 0xc0, 0xb2, 0x17, 0x2d, 0x27, 0xf0, 0x03, 0x2f, 0x9d, 0x49, - 0xfb, 0x1d, 0x80, 0x4b, 0xcb, 0x7b, 0x7e, 0xe0, 0xe9, 0x46, 0xb0, 0xed, 0x9a, 0x3b, 0xb4, 0xdb, - 0xb3, 0xf5, 0x80, 0x92, 0x43, 0xa8, 0xb1, 0x0f, 0x32, 0xf5, 0x40, 0x9f, 0x2b, 0xdc, 0x28, 0xdc, - 0x6c, 0x2c, 0x2d, 0x2f, 0x8c, 0xf8, 0x03, 0x17, 0xb6, 0x24, 0x50, 0x6b, 0xf2, 0xf4, 0xa4, 0x59, - 0x53, 0x6f, 0x18, 0x0a, 0x20, 0xbf, 0x56, 0x80, 0x49, 0xc7, 0x35, 0x69, 0x9b, 0xda, 0xd4, 0x08, - 0x5c, 0x6f, 0xae, 0x78, 0xa3, 0x74, 0xb3, 0xb1, 0xf4, 0x8d, 0x91, 0x25, 0x66, 0x7c, 0xd1, 0xc2, - 0xdd, 0x98, 0x80, 0x5b, 0x4e, 0xe0, 0x1d, 0xb7, 0x2e, 0x7f, 0xff, 0xa4, 0xf9, 0xdc, 0xe9, 0x49, - 0x73, 0x32, 0x4e, 0xc2, 0x44, 0x49, 0xc8, 0x2e, 0x34, 0x02, 0xd7, 0x66, 0x55, 0x66, 0xb9, 0x8e, - 0x3f, 0x57, 0xe2, 0x05, 0xbb, 0xbe, 0x20, 0xaa, 0x9a, 0x89, 0x5f, 0x60, 0x6d, 0x6c, 0xe1, 0xe8, - 0x95, 0x85, 0x9d, 0x90, 0xad, 0x75, 0x49, 0x02, 0x37, 0xa2, 0x34, 0x1f, 0xe3, 0x38, 0x84, 0xc2, - 0x8c, 0x4f, 0x8d, 0xbe, 0x67, 0x05, 0xc7, 0x2b, 0xae, 0x13, 0xd0, 0x87, 0xc1, 0x5c, 0x99, 0xd7, - 0xf2, 0xcb, 0x59, 0xd0, 0xdb, 0xae, 0xd9, 0x4e, 0x72, 0xb7, 0x2e, 0x9d, 0x9e, 0x34, 0x67, 0x52, - 0x89, 0x98, 0xc6, 0x24, 0x0e, 0xcc, 0x5a, 0x5d, 0xbd, 0x43, 0xb7, 0xfb, 0xb6, 0xdd, 0xa6, 0x86, - 0x47, 0x03, 0x7f, 0xae, 0xc2, 0x3f, 0xe1, 0x66, 0x96, 0x9c, 0x4d, 0xd7, 0xd0, 0xed, 0x7b, 0x7b, - 0xef, 0x53, 0x23, 0x40, 0xba, 0x4f, 0x3d, 0xea, 0x18, 0xb4, 0x35, 0x27, 0x3f, 0x66, 0x76, 0x23, - 0x85, 0x84, 0x03, 0xd8, 0x64, 0x1d, 0x9e, 0xef, 0x79, 0x96, 0xcb, 0x8b, 0x60, 0xeb, 0xbe, 0x7f, - 0x57, 0xef, 0xd2, 0xb9, 0x89, 0x1b, 0x85, 0x9b, 0xf5, 0xd6, 0x55, 0x09, 0xf3, 0xfc, 0x76, 0x9a, - 0x01, 0x07, 0xf3, 0x90, 0x9b, 0x50, 0x53, 0x89, 0x73, 0xd5, 0x1b, 0x85, 0x9b, 0x15, 0xd1, 0x76, - 0x54, 0x5e, 0x0c, 0xa9, 0x64, 0x0d, 0x6a, 0xfa, 0xfe, 0xbe, 0xe5, 0x30, 0xce, 0x1a, 0xaf, 0xc2, - 0x6b, 0x59, 0x9f, 0xb6, 0x2c, 0x79, 0x04, 0x8e, 0x7a, 0xc3, 0x30, 0x2f, 0x79, 0x0b, 0x88, 0x4f, - 0xbd, 0x23, 0xcb, 0xa0, 0xcb, 0x86, 0xe1, 0xf6, 0x9d, 0x80, 0x97, 0xbd, 0xce, 0xcb, 0x3e, 0x2f, - 0xcb, 0x4e, 0xda, 0x03, 0x1c, 0x98, 0x91, 0x8b, 0xbc, 0x09, 0xb3, 0xb2, 0xaf, 0x46, 0xb5, 0x00, - 0x1c, 0xe9, 0x32, 0xab, 0x48, 0x4c, 0xd1, 0x70, 0x80, 0x9b, 0x98, 0x70, 0x4d, 0xef, 0x07, 0x6e, - 0x97, 0x41, 0x26, 0x85, 0xee, 0xb8, 0x87, 0xd4, 0x99, 0x6b, 0xdc, 0x28, 0xdc, 0xac, 0xb5, 0x6e, - 0x9c, 0x9e, 0x34, 0xaf, 0x2d, 0x3f, 0x86, 0x0f, 0x1f, 0x8b, 0x42, 0xee, 0x41, 0xdd, 0x74, 0xfc, - 0x6d, 0xd7, 0xb6, 0x8c, 0xe3, 0xb9, 0x49, 0x5e, 0xc0, 0x57, 0xe4, 0xa7, 0xd6, 0x57, 0xef, 0xb6, - 0x05, 0xe1, 0xd1, 0x49, 0xf3, 0xda, 0xe0, 0x90, 0xba, 0x10, 0xd2, 0x31, 0xc2, 0x20, 0x5b, 0x1c, - 0x70, 0xc5, 0x75, 0xf6, 0xad, 0xce, 0xdc, 0x14, 0xff, 0x1b, 0x37, 0x86, 0x34, 0xe8, 0xd5, 0xbb, - 0x6d, 0xc1, 0xd7, 0x9a, 0x92, 0xe2, 0xc4, 0x2b, 0x46, 0x08, 0xc4, 0x84, 0x69, 0x35, 0x18, 0xaf, - 0xd8, 0xba, 0xd5, 0xf5, 0xe7, 0xa6, 0x79, 0xe3, 0xfd, 0xb1, 0x21, 0x98, 0x18, 0x67, 0x6e, 0x5d, - 0x91, 0x9f, 0x32, 0x9d, 0x48, 0xf6, 0x31, 0x85, 0x39, 0xff, 0x06, 0x3c, 0x3f, 0x30, 0x36, 0x90, - 0x59, 0x28, 0x1d, 0xd2, 0x63, 0x3e, 0xf4, 0xd5, 0x91, 0x3d, 0x92, 0xcb, 0x50, 0x39, 0xd2, 0xed, - 0x3e, 0x9d, 0x2b, 0xf2, 0x34, 0xf1, 0xf2, 0x33, 0xc5, 0xd7, 0x0b, 0xda, 0x5f, 0x2f, 0xc1, 0xa4, - 0x1a, 0x71, 0xda, 0x96, 0x73, 0x48, 0xde, 0x86, 0x92, 0xed, 0x76, 0xe4, 0xb8, 0xf9, 0x73, 0x23, - 0x8f, 0x62, 0x9b, 0x6e, 0xa7, 0x55, 0x3d, 0x3d, 0x69, 0x96, 0x36, 0xdd, 0x0e, 0x32, 0x44, 0x62, - 0x40, 0xe5, 0x50, 0xdf, 0x3f, 0xd4, 0x79, 0x19, 0x1a, 0x4b, 0xad, 0x91, 0xa1, 0xef, 0x30, 0x14, - 0x56, 0xd6, 0x56, 0xfd, 0xf4, 0xa4, 0x59, 0xe1, 0xaf, 0x28, 0xb0, 0x89, 0x0b, 0xf5, 0x3d, 0x5b, - 0x37, 0x0e, 0x0f, 0x5c, 0x9b, 0xce, 0x95, 0x72, 0x0a, 0x6a, 0x29, 0x24, 0xf1, 0x9b, 0xc3, 0x57, - 0x8c, 0x64, 0x10, 0x03, 0x26, 0xfa, 0xa6, 0x6f, 0x39, 0x87, 0x72, 0x0c, 0x7c, 0x63, 0x64, 0x69, - 0xbb, 0xab, 0xfc, 0x9b, 0xe0, 0xf4, 0xa4, 0x39, 0x21, 0x9e, 0x51, 0x42, 0x6b, 0xff, 0x67, 0x12, - 0xa6, 0xd5, 0x4f, 0xba, 0x4f, 0xbd, 0x80, 0x3e, 0x24, 0x37, 0xa0, 0xec, 0xb0, 0xae, 0xc9, 0x7f, - 0x72, 0x6b, 0x52, 0x36, 0x97, 0x32, 0xef, 0x92, 0x9c, 0xc2, 0x4a, 0x26, 0x9a, 0x8a, 0xac, 0xf0, - 0xd1, 0x4b, 0xd6, 0xe6, 0x30, 0xa2, 0x64, 0xe2, 0x19, 0x25, 0x34, 0x79, 0x17, 0xca, 0xfc, 0xe3, - 0x45, 0x55, 0x7f, 0x65, 0x74, 0x11, 0xec, 0xd3, 0x6b, 0xec, 0x0b, 0xf8, 0x87, 0x73, 0x50, 0xd6, - 0x14, 0xfb, 0xe6, 0xbe, 0xac, 0xd8, 0x9f, 0xcb, 0x51, 0xb1, 0x6b, 0xa2, 0x29, 0xee, 0xae, 0xae, - 0x21, 0x43, 0x24, 0x7f, 0xb1, 0x00, 0xcf, 0x1b, 0xae, 0x13, 0xe8, 0x4c, 0xcf, 0x50, 0x93, 0xec, - 0x5c, 0x85, 0xcb, 0x79, 0x6b, 0x64, 0x39, 0x2b, 0x69, 0xc4, 0xd6, 0x0b, 0x6c, 0xce, 0x18, 0x48, - 0xc6, 0x41, 0xd9, 0xe4, 0x2f, 0x17, 0xe0, 0x05, 0x36, 0x96, 0x0f, 0x30, 0xf3, 0x19, 0x68, 0xbc, - 0xa5, 0xba, 0x7a, 0x7a, 0xd2, 0x7c, 0x61, 0x23, 0x4b, 0x18, 0x66, 0x97, 0x81, 0x95, 0xee, 0x92, - 0x3e, 0xa8, 0x96, 0xf0, 0xd9, 0xad, 0xb1, 0xb4, 0x39, 0x4e, 0x55, 0xa7, 0xf5, 0x19, 0xd9, 0x94, - 0xb3, 0x34, 0x3b, 0xcc, 0x2a, 0x05, 0xb9, 0x05, 0xd5, 0x23, 0xd7, 0xee, 0x77, 0xa9, 0x3f, 0x57, - 0xe3, 0x43, 0xec, 0x7c, 0xd6, 0x10, 0x7b, 0x9f, 0xb3, 0xb4, 0x66, 0x24, 0x7c, 0x55, 0xbc, 0xfb, - 0xa8, 0xf2, 0x12, 0x0b, 0x26, 0x6c, 0xab, 0x6b, 0x05, 0x3e, 0x9f, 0x38, 0x1b, 0x4b, 0xb7, 0x46, - 0xfe, 0x2c, 0xd1, 0x45, 0x37, 0x39, 0x98, 0xe8, 0x35, 0xe2, 0x19, 0xa5, 0x00, 0x36, 0x14, 0xfa, - 0x86, 0x6e, 0x8b, 0x89, 0xb5, 0xb1, 0xf4, 0xd5, 0xd1, 0xbb, 0x0d, 0x43, 0x69, 0x4d, 0xc9, 0x6f, - 0xaa, 0xf0, 0x57, 0x14, 0xd8, 0xe4, 0x17, 0x60, 0x3a, 0xf1, 0x37, 0xfd, 0xb9, 0x06, 0xaf, 0x9d, - 0x97, 0xb2, 0x6a, 0x27, 0xe4, 0x8a, 0x66, 0x9e, 0x44, 0x0b, 0xf1, 0x31, 0x05, 0x46, 0xee, 0x40, - 0xcd, 0xb7, 0x4c, 0x6a, 0xe8, 0x9e, 0x3f, 0x37, 0x79, 0x16, 0xe0, 0x59, 0x09, 0x5c, 0x6b, 0xcb, - 0x6c, 0x18, 0x02, 0x90, 0x05, 0x80, 0x9e, 0xee, 0x05, 0x96, 0x50, 0x54, 0xa7, 0xb8, 0xd2, 0x34, - 0x7d, 0x7a, 0xd2, 0x84, 0xed, 0x30, 0x15, 0x63, 0x1c, 0x8c, 0x9f, 0xe5, 0xdd, 0x70, 0x7a, 0xfd, - 0x40, 0x4c, 0xac, 0x75, 0xc1, 0xdf, 0x0e, 0x53, 0x31, 0xc6, 0x41, 0x7e, 0xab, 0x00, 0x9f, 0x89, - 0x5e, 0x07, 0x3b, 0xd9, 0xcc, 0xd8, 0x3b, 0x59, 0xf3, 0xf4, 0xa4, 0xf9, 0x99, 0xf6, 0x70, 0x91, - 0xf8, 0xb8, 0xf2, 0x90, 0x0f, 0x0b, 0x30, 0xdd, 0xef, 0x99, 0x7a, 0x40, 0xdb, 0x01, 0x5b, 0xf1, - 0x74, 0x8e, 0xe7, 0x66, 0x79, 0x11, 0xd7, 0x47, 0x1f, 0x05, 0x13, 0x70, 0xd1, 0x6f, 0x4e, 0xa6, - 0x63, 0x4a, 0xac, 0xf6, 0x36, 0x4c, 0x2d, 0xf7, 0x83, 0x03, 0xd7, 0xb3, 0x3e, 0xe0, 0xea, 0x3f, - 0x59, 0x83, 0x4a, 0xc0, 0xd5, 0x38, 0xa1, 0x21, 0x7c, 0x3e, 0xeb, 0xa7, 0x0b, 0x95, 0xfa, 0x0e, - 0x3d, 0x56, 0x7a, 0x89, 0x98, 0xa9, 0x85, 0x5a, 0x27, 0xb2, 0x6b, 0x7f, 0xba, 0x00, 0xd5, 0x96, - 0x6e, 0x1c, 0xba, 0xfb, 0xfb, 0xe4, 0x1d, 0xa8, 0x59, 0x4e, 0x40, 0xbd, 0x23, 0xdd, 0x96, 0xb0, - 0x0b, 0x31, 0xd8, 0x70, 0x41, 0x18, 0x7d, 0x1e, 0x5b, 0x7d, 0x31, 0x41, 0xab, 0x7d, 0xb9, 0x6a, - 0xe1, 0x9a, 0xf1, 0x86, 0xc4, 0xc0, 0x10, 0x8d, 0x34, 0xa1, 0xe2, 0x07, 0xb4, 0xe7, 0xf3, 0x39, - 0x70, 0x4a, 0x14, 0xa3, 0xcd, 0x12, 0x50, 0xa4, 0x6b, 0x7f, 0xad, 0x00, 0xf5, 0x96, 0xee, 0x5b, - 0x06, 0xfb, 0x4a, 0xb2, 0x02, 0xe5, 0xbe, 0x4f, 0xbd, 0xf3, 0x7d, 0x1b, 0x9f, 0xb6, 0x76, 0x7d, - 0xea, 0x21, 0xcf, 0x4c, 0xee, 0x41, 0xad, 0xa7, 0xfb, 0xfe, 0x03, 0xd7, 0x33, 0xe5, 0xd4, 0x7b, - 0x46, 0x20, 0xb1, 0x4c, 0x90, 0x59, 0x31, 0x04, 0xd1, 0x1a, 0x10, 0xe9, 0x1e, 0xda, 0xef, 0x15, - 0xe0, 0x52, 0xab, 0xbf, 0xbf, 0x4f, 0x3d, 0xa9, 0x15, 0x4b, 0x7d, 0x93, 0x42, 0xc5, 0xa3, 0xa6, - 0xe5, 0xcb, 0xb2, 0xaf, 0x8e, 0xdc, 0x50, 0x90, 0xa1, 0x48, 0xf5, 0x96, 0xd7, 0x17, 0x4f, 0x40, - 0x81, 0x4e, 0xfa, 0x50, 0x7f, 0x9f, 0xb2, 0xd5, 0x38, 0xd5, 0xbb, 0xf2, 0xeb, 0x6e, 0x8f, 0x2c, - 0xea, 0x2d, 0x1a, 0xb4, 0x39, 0x52, 0x5c, 0x9b, 0x0e, 0x13, 0x31, 0x92, 0xa4, 0xfd, 0x4e, 0x05, - 0x26, 0x57, 0xdc, 0xee, 0x9e, 0xe5, 0x50, 0xf3, 0x96, 0xd9, 0xa1, 0xe4, 0x3d, 0x28, 0x53, 0xb3, - 0x43, 0xe5, 0xd7, 0x8e, 0xae, 0x78, 0x30, 0xb0, 0x48, 0x7d, 0x62, 0x6f, 0xc8, 0x81, 0xc9, 0x26, - 0x4c, 0xef, 0x7b, 0x6e, 0x57, 0x8c, 0xe5, 0x3b, 0xc7, 0x3d, 0xa9, 0x3b, 0xb7, 0x7e, 0x4c, 0x75, - 0x9c, 0xb5, 0x04, 0xf5, 0xd1, 0x49, 0x13, 0xa2, 0x37, 0x4c, 0xe5, 0x25, 0xef, 0xc0, 0x5c, 0x94, - 0x12, 0x0e, 0x6a, 0x2b, 0x6c, 0x39, 0xc3, 0x75, 0xa7, 0x4a, 0xeb, 0xda, 0xe9, 0x49, 0x73, 0x6e, - 0x6d, 0x08, 0x0f, 0x0e, 0xcd, 0xcd, 0x86, 0x8a, 0xd9, 0x88, 0x28, 0x26, 0x1a, 0xa9, 0x32, 0x8d, - 0x69, 0x06, 0xe3, 0xeb, 0xbe, 0xb5, 0x94, 0x08, 0x1c, 0x10, 0x4a, 0xd6, 0x60, 0x32, 0x70, 0x63, - 0xf5, 0x55, 0xe1, 0xf5, 0xa5, 0x29, 0x43, 0xc5, 0x8e, 0x3b, 0xb4, 0xb6, 0x12, 0xf9, 0x08, 0xc2, - 0x15, 0xf5, 0x9e, 0xaa, 0xa9, 0x09, 0x5e, 0x53, 0xf3, 0xa7, 0x27, 0xcd, 0x2b, 0x3b, 0x99, 0x1c, - 0x38, 0x24, 0x27, 0xf9, 0x95, 0x02, 0x4c, 0x2b, 0x92, 0xac, 0xa3, 0xea, 0x38, 0xeb, 0x88, 0xb0, - 0x16, 0xb1, 0x93, 0x10, 0x80, 0x29, 0x81, 0xda, 0xf7, 0xaa, 0x50, 0x0f, 0x87, 0x7a, 0xf2, 0x39, - 0xa8, 0x70, 0x13, 0x84, 0xd4, 0xe0, 0xc3, 0x39, 0x9c, 0x5b, 0x2a, 0x50, 0xd0, 0xc8, 0xe7, 0xa1, - 0x6a, 0xb8, 0xdd, 0xae, 0xee, 0x98, 0xdc, 0xac, 0x54, 0x6f, 0x35, 0x98, 0xea, 0xb2, 0x22, 0x92, - 0x50, 0xd1, 0xc8, 0x35, 0x28, 0xeb, 0x5e, 0x47, 0x58, 0x78, 0xea, 0x62, 0x3c, 0x5a, 0xf6, 0x3a, - 0x3e, 0xf2, 0x54, 0xf2, 0x65, 0x28, 0x51, 0xe7, 0x68, 0xae, 0x3c, 0x5c, 0x37, 0xba, 0xe5, 0x1c, - 0xdd, 0xd7, 0xbd, 0x56, 0x43, 0x96, 0xa1, 0x74, 0xcb, 0x39, 0x42, 0x96, 0x87, 0x6c, 0x42, 0x95, - 0x3a, 0x47, 0xec, 0xdf, 0x4b, 0xd3, 0xcb, 0x67, 0x87, 0x64, 0x67, 0x2c, 0x72, 0x99, 0x10, 0x6a, - 0x58, 0x32, 0x19, 0x15, 0x04, 0xf9, 0x3a, 0x4c, 0x0a, 0x65, 0x6b, 0x8b, 0xfd, 0x13, 0x7f, 0x6e, - 0x82, 0x43, 0x36, 0x87, 0x6b, 0x6b, 0x9c, 0x2f, 0x32, 0x75, 0xc5, 0x12, 0x7d, 0x4c, 0x40, 0x91, - 0xaf, 0x43, 0x5d, 0xad, 0x8c, 0xd5, 0x9f, 0xcd, 0xb4, 0x12, 0xa9, 0xe5, 0x34, 0xd2, 0x6f, 0xf6, - 0x2d, 0x8f, 0x76, 0xa9, 0x13, 0xf8, 0xad, 0xe7, 0x95, 0xdd, 0x40, 0x51, 0x7d, 0x8c, 0xd0, 0xc8, - 0xde, 0xa0, 0xb9, 0x4b, 0xd8, 0x6a, 0x3e, 0x37, 0x64, 0x54, 0x1f, 0xc1, 0xd6, 0xf5, 0x0d, 0x98, - 0x09, 0xed, 0x51, 0xd2, 0xa4, 0x21, 0xac, 0x37, 0x5f, 0x64, 0xd9, 0x37, 0x92, 0xa4, 0x47, 0x27, - 0xcd, 0x97, 0x32, 0x8c, 0x1a, 0x11, 0x03, 0xa6, 0xc1, 0xc8, 0x07, 0x30, 0xed, 0x51, 0xdd, 0xb4, - 0x1c, 0xea, 0xfb, 0xdb, 0x9e, 0xbb, 0x97, 0x5f, 0xf3, 0xe4, 0x28, 0xa2, 0xd9, 0x63, 0x02, 0x19, - 0x53, 0x92, 0xc8, 0x03, 0x98, 0xb2, 0xad, 0x23, 0x1a, 0x89, 0x6e, 0x8c, 0x45, 0xf4, 0xf3, 0xa7, - 0x27, 0xcd, 0xa9, 0xcd, 0x38, 0x30, 0x26, 0xe5, 0x30, 0x4d, 0xa5, 0xe7, 0x7a, 0x81, 0x52, 0x4f, - 0x3f, 0xfb, 0x58, 0xf5, 0x74, 0xdb, 0xf5, 0x82, 0xa8, 0x13, 0xb2, 0x37, 0x1f, 0x45, 0x76, 0xed, - 0x6f, 0x55, 0x60, 0x70, 0x11, 0x97, 0x6c, 0x71, 0x85, 0x71, 0xb7, 0xb8, 0x74, 0x6b, 0x10, 0x73, - 0xcf, 0xeb, 0x32, 0xdb, 0x18, 0x5a, 0x44, 0x46, 0xab, 0x2e, 0x8d, 0xbb, 0x55, 0x3f, 0x33, 0x03, - 0xcf, 0x60, 0xf3, 0x9f, 0xf8, 0xf8, 0x9a, 0x7f, 0xf5, 0xe9, 0x34, 0x7f, 0xed, 0xbb, 0x65, 0x98, - 0x5e, 0xd5, 0x69, 0xd7, 0x75, 0x9e, 0xb8, 0x8e, 0x2f, 0x3c, 0x13, 0xeb, 0xf8, 0x9b, 0x50, 0xf3, - 0x68, 0xcf, 0xb6, 0x0c, 0x5d, 0xa8, 0xeb, 0xd2, 0x6e, 0x8e, 0x32, 0x0d, 0x43, 0xea, 0x10, 0xfb, - 0x4d, 0xe9, 0x99, 0xb4, 0xdf, 0x94, 0x3f, 0x7e, 0xfb, 0x8d, 0xf6, 0x2b, 0x45, 0xe0, 0xaa, 0x2d, - 0xb9, 0x01, 0x65, 0xa6, 0xb6, 0xa5, 0xad, 0x86, 0xbc, 0xb7, 0x70, 0x0a, 0x99, 0x87, 0x62, 0xe0, - 0xca, 0xe1, 0x06, 0x24, 0xbd, 0xb8, 0xe3, 0x62, 0x31, 0x70, 0xc9, 0x07, 0x00, 0x86, 0xeb, 0x98, - 0x96, 0x72, 0x27, 0xe5, 0xfb, 0xb0, 0x35, 0xd7, 0x7b, 0xa0, 0x7b, 0xe6, 0x4a, 0x88, 0x28, 0x56, - 0xf0, 0xd1, 0x3b, 0xc6, 0xa4, 0x91, 0x37, 0x60, 0xc2, 0x75, 0xd6, 0xfa, 0xb6, 0xcd, 0x2b, 0xb4, - 0xde, 0xfa, 0xc2, 0xe9, 0x49, 0x73, 0xe2, 0x1e, 0x4f, 0x79, 0x74, 0xd2, 0xbc, 0x2a, 0x56, 0x44, - 0xec, 0xed, 0x6d, 0xcf, 0x0a, 0x2c, 0xa7, 0x13, 0x2e, 0x68, 0x65, 0x36, 0xed, 0x57, 0x0b, 0xd0, - 0x58, 0xb3, 0x1e, 0x52, 0xf3, 0x6d, 0xcb, 0x31, 0xdd, 0x07, 0x04, 0x61, 0xc2, 0xa6, 0x4e, 0x27, - 0x38, 0x18, 0x71, 0xc5, 0x29, 0xec, 0x3a, 0x1c, 0x01, 0x25, 0x12, 0x59, 0x84, 0xba, 0x58, 0xaf, - 0x58, 0x4e, 0x87, 0xd7, 0x61, 0x2d, 0x1a, 0xe9, 0xdb, 0x8a, 0x80, 0x11, 0x8f, 0x76, 0x0c, 0xcf, - 0x0f, 0x54, 0x03, 0x31, 0xa1, 0x1c, 0xe8, 0x1d, 0x35, 0xa9, 0xac, 0x8d, 0x5c, 0xc1, 0x3b, 0x7a, - 0x27, 0x56, 0xb9, 0x5c, 0x2b, 0xdc, 0xd1, 0x99, 0x56, 0xc8, 0xd0, 0xb5, 0x3f, 0x28, 0x40, 0x6d, - 0xad, 0xef, 0x18, 0x7c, 0x51, 0xff, 0x64, 0x6b, 0xb2, 0x52, 0x31, 0x8b, 0x99, 0x2a, 0x66, 0x1f, - 0x26, 0x0e, 0x1f, 0x84, 0x2a, 0x68, 0x63, 0x69, 0x6b, 0xf4, 0x56, 0x21, 0x8b, 0xb4, 0x70, 0x87, - 0xe3, 0x09, 0x67, 0xe7, 0xb4, 0x2c, 0xd0, 0xc4, 0x9d, 0xb7, 0xb9, 0x50, 0x29, 0x6c, 0xfe, 0xcb, - 0xd0, 0x88, 0xb1, 0x9d, 0xcb, 0xef, 0xf1, 0xb7, 0xcb, 0x30, 0xb1, 0xde, 0x6e, 0x2f, 0x6f, 0x6f, - 0x90, 0x57, 0xa1, 0x21, 0xfd, 0x60, 0x77, 0xa3, 0x3a, 0x08, 0xdd, 0xa0, 0xed, 0x88, 0x84, 0x71, - 0x3e, 0xa6, 0xc0, 0x7b, 0x54, 0xb7, 0xbb, 0xb2, 0xb3, 0x84, 0xba, 0x03, 0xb2, 0x44, 0x14, 0x34, - 0xa2, 0xc3, 0x74, 0xdf, 0xa7, 0x1e, 0xab, 0x42, 0xb1, 0xde, 0x97, 0xdd, 0xe6, 0x8c, 0x16, 0x01, - 0x3e, 0xc1, 0xec, 0x26, 0x00, 0x30, 0x05, 0x48, 0x5e, 0x87, 0x9a, 0xde, 0x0f, 0x0e, 0xf8, 0x92, - 0x4b, 0xf4, 0x8d, 0x6b, 0xdc, 0x4d, 0x28, 0xd3, 0x1e, 0x9d, 0x34, 0x27, 0xef, 0x60, 0xeb, 0x55, - 0xf5, 0x8e, 0x21, 0x37, 0x2b, 0x9c, 0xb2, 0x31, 0xc8, 0xc2, 0x55, 0xce, 0x5d, 0xb8, 0xed, 0x04, - 0x00, 0xa6, 0x00, 0xc9, 0xbb, 0x30, 0x79, 0x48, 0x8f, 0x03, 0x7d, 0x4f, 0x0a, 0x98, 0x38, 0x8f, - 0x80, 0x59, 0xa6, 0xf4, 0xdf, 0x89, 0x65, 0xc7, 0x04, 0x18, 0xf1, 0xe1, 0xf2, 0x21, 0xf5, 0xf6, - 0xa8, 0xe7, 0x4a, 0x7b, 0x85, 0x14, 0x52, 0x3d, 0x8f, 0x90, 0xb9, 0xd3, 0x93, 0xe6, 0xe5, 0x3b, - 0x19, 0x30, 0x98, 0x09, 0xae, 0xfd, 0xdf, 0x22, 0xcc, 0xac, 0x8b, 0x40, 0x04, 0xd7, 0x13, 0x9a, - 0x07, 0xb9, 0x0a, 0x25, 0xaf, 0xd7, 0xe7, 0x2d, 0xa7, 0x24, 0x5c, 0x0d, 0xb8, 0xbd, 0x8b, 0x2c, - 0x8d, 0xbc, 0x03, 0x35, 0x53, 0x0e, 0x19, 0xd2, 0x5c, 0x32, 0x92, 0x69, 0x4b, 0xbd, 0x61, 0x88, - 0xc6, 0xd6, 0x86, 0x5d, 0xbf, 0xd3, 0xb6, 0x3e, 0xa0, 0xd2, 0x82, 0xc0, 0xd7, 0x86, 0x5b, 0x22, - 0x09, 0x15, 0x8d, 0xcd, 0xaa, 0x87, 0xf4, 0x58, 0xac, 0x9f, 0xcb, 0xd1, 0xac, 0x7a, 0x47, 0xa6, - 0x61, 0x48, 0x25, 0x4d, 0xd5, 0x59, 0x58, 0x2b, 0x28, 0x0b, 0xdb, 0xcf, 0x7d, 0x96, 0x20, 0xfb, - 0x0d, 0x1b, 0x32, 0xdf, 0xb7, 0x82, 0x80, 0x7a, 0xf2, 0x37, 0x8e, 0x34, 0x64, 0xbe, 0xc5, 0x11, - 0x50, 0x22, 0x91, 0x9f, 0x80, 0x3a, 0x07, 0x6f, 0xd9, 0xee, 0x1e, 0xff, 0x71, 0x75, 0x61, 0x05, - 0xba, 0xaf, 0x12, 0x31, 0xa2, 0x6b, 0x7f, 0x58, 0x84, 0x2b, 0xeb, 0x34, 0x10, 0x5a, 0xcd, 0x2a, - 0xed, 0xd9, 0xee, 0x31, 0xd3, 0xa7, 0x91, 0x7e, 0x93, 0xbc, 0x09, 0x60, 0xf9, 0x7b, 0xed, 0x23, - 0x83, 0xf7, 0x03, 0xd1, 0x87, 0x6f, 0xc8, 0x2e, 0x09, 0x1b, 0xed, 0x96, 0xa4, 0x3c, 0x4a, 0xbc, - 0x61, 0x2c, 0x4f, 0xb4, 0x20, 0x2f, 0x3e, 0x66, 0x41, 0xde, 0x06, 0xe8, 0x45, 0x5a, 0x79, 0x89, - 0x73, 0xfe, 0xb4, 0x12, 0x73, 0x1e, 0x85, 0x3c, 0x06, 0x93, 0x47, 0x4f, 0x76, 0x60, 0xd6, 0xa4, - 0xfb, 0x7a, 0xdf, 0x0e, 0xc2, 0x95, 0x84, 0xec, 0xc4, 0x67, 0x5f, 0x8c, 0x84, 0x41, 0x12, 0xab, - 0x29, 0x24, 0x1c, 0xc0, 0xd6, 0xfe, 0x4e, 0x09, 0xe6, 0xd7, 0x69, 0x10, 0xda, 0xe8, 0xe4, 0xe8, - 0xd8, 0xee, 0x51, 0x83, 0xfd, 0x85, 0x0f, 0x0b, 0x30, 0x61, 0xeb, 0x7b, 0xd4, 0x66, 0xb3, 0x17, - 0xfb, 0x9a, 0xf7, 0x46, 0x9e, 0x08, 0x86, 0x4b, 0x59, 0xd8, 0xe4, 0x12, 0x52, 0x53, 0x83, 0x48, - 0x44, 0x29, 0x9e, 0x0d, 0xea, 0x86, 0xdd, 0xf7, 0x03, 0xb1, 0xb2, 0x93, 0xfa, 0x64, 0x38, 0xa8, - 0xaf, 0x44, 0x24, 0x8c, 0xf3, 0x91, 0x25, 0x00, 0xc3, 0xb6, 0xa8, 0x13, 0xf0, 0x5c, 0xa2, 0x5f, - 0x11, 0xf5, 0x7f, 0x57, 0x42, 0x0a, 0xc6, 0xb8, 0x98, 0xa8, 0xae, 0xeb, 0x58, 0x81, 0x2b, 0x44, - 0x95, 0x93, 0xa2, 0xb6, 0x22, 0x12, 0xc6, 0xf9, 0x78, 0x36, 0x1a, 0x78, 0x96, 0xe1, 0xf3, 0x6c, - 0x95, 0x54, 0xb6, 0x88, 0x84, 0x71, 0x3e, 0x36, 0xe7, 0xc5, 0xbe, 0xff, 0x5c, 0x73, 0xde, 0x6f, - 0xd6, 0xe1, 0x7a, 0xa2, 0x5a, 0x03, 0x3d, 0xa0, 0xfb, 0x7d, 0xbb, 0x4d, 0x03, 0xf5, 0x03, 0x47, - 0x9c, 0x0b, 0xff, 0x5c, 0xf4, 0xdf, 0x45, 0xf8, 0x93, 0x31, 0x9e, 0xff, 0x3e, 0x50, 0xc0, 0x33, - 0xfd, 0xfb, 0x45, 0xa8, 0x3b, 0x7a, 0xe0, 0xf3, 0x8e, 0x2b, 0xfb, 0x68, 0xa8, 0x86, 0xdd, 0x55, - 0x04, 0x8c, 0x78, 0xc8, 0x36, 0x5c, 0x96, 0x55, 0x7c, 0xeb, 0x21, 0x5b, 0xf3, 0x53, 0x4f, 0xe4, - 0x95, 0xd3, 0xa9, 0xcc, 0x7b, 0x79, 0x2b, 0x83, 0x07, 0x33, 0x73, 0x92, 0x2d, 0xb8, 0x64, 0x88, - 0x90, 0x10, 0x6a, 0xbb, 0xba, 0xa9, 0x00, 0x85, 0x49, 0x34, 0x5c, 0x1a, 0xad, 0x0c, 0xb2, 0x60, - 0x56, 0xbe, 0x74, 0x6b, 0x9e, 0x18, 0xa9, 0x35, 0x57, 0x47, 0x69, 0xcd, 0xb5, 0xd1, 0x5a, 0x73, - 0xfd, 0x6c, 0xad, 0x99, 0xd5, 0x3c, 0x6b, 0x47, 0xd4, 0x63, 0xea, 0x89, 0x98, 0x61, 0x63, 0x11, - 0x47, 0x61, 0xcd, 0xb7, 0x33, 0x78, 0x30, 0x33, 0x27, 0xd9, 0x83, 0x79, 0x91, 0x7e, 0xcb, 0x31, - 0xbc, 0xe3, 0x1e, 0x9b, 0x78, 0x62, 0xb8, 0x8d, 0x84, 0x4d, 0x7a, 0xbe, 0x3d, 0x94, 0x13, 0x1f, - 0x83, 0x42, 0x7e, 0x16, 0xa6, 0xc4, 0x5f, 0xda, 0xd2, 0x7b, 0x1c, 0x56, 0xc4, 0x1f, 0xbd, 0x20, - 0x61, 0xa7, 0x56, 0xe2, 0x44, 0x4c, 0xf2, 0x92, 0x65, 0x98, 0xe9, 0x1d, 0x19, 0xec, 0x71, 0x63, - 0xff, 0x2e, 0xa5, 0x26, 0x35, 0xb9, 0xc3, 0xb3, 0xde, 0x7a, 0x51, 0x59, 0x77, 0xb6, 0x93, 0x64, - 0x4c, 0xf3, 0x93, 0xd7, 0x61, 0xd2, 0x0f, 0x74, 0x2f, 0x90, 0x86, 0xe0, 0xb9, 0x69, 0x11, 0x9f, - 0xa5, 0xec, 0xa4, 0xed, 0x18, 0x0d, 0x13, 0x9c, 0x99, 0xf3, 0xc5, 0xcc, 0xc5, 0xcd, 0x17, 0x79, - 0x46, 0xab, 0x7f, 0x52, 0x84, 0x1b, 0xeb, 0x34, 0xd8, 0x72, 0x1d, 0x69, 0x46, 0xcf, 0x9a, 0xf6, - 0xcf, 0x64, 0x45, 0x4f, 0x4e, 0xda, 0xc5, 0xb1, 0x4e, 0xda, 0xa5, 0x31, 0x4d, 0xda, 0xe5, 0x0b, - 0x9c, 0xb4, 0xff, 0x5e, 0x11, 0x5e, 0x4c, 0xd4, 0xe4, 0xb6, 0x6b, 0xaa, 0x01, 0xff, 0xd3, 0x0a, - 0x3c, 0x43, 0x05, 0x3e, 0x12, 0x7a, 0x27, 0x77, 0x84, 0xa6, 0x34, 0x9e, 0xef, 0xa4, 0x35, 0x9e, - 0x77, 0xf3, 0xcc, 0x7c, 0x19, 0x12, 0xce, 0x34, 0xe3, 0xbd, 0x05, 0xc4, 0x93, 0x6e, 0xdb, 0xc8, - 0x9c, 0x2d, 0x95, 0x9e, 0x30, 0x00, 0x14, 0x07, 0x38, 0x30, 0x23, 0x17, 0x69, 0xc3, 0x0b, 0x3e, - 0x75, 0x02, 0xcb, 0xa1, 0x76, 0x12, 0x4e, 0x68, 0x43, 0x2f, 0x49, 0xb8, 0x17, 0xda, 0x59, 0x4c, - 0x98, 0x9d, 0x37, 0xcf, 0x38, 0xf0, 0x2f, 0x80, 0xab, 0x9c, 0xa2, 0x6a, 0xc6, 0xa6, 0xb1, 0x7c, - 0x98, 0xd6, 0x58, 0xde, 0xcb, 0xff, 0xdf, 0x46, 0xd3, 0x56, 0x96, 0x00, 0xf8, 0x5f, 0x88, 0xab, - 0x2b, 0xe1, 0x24, 0x8d, 0x21, 0x05, 0x63, 0x5c, 0x6c, 0x02, 0x52, 0xf5, 0x1c, 0xd7, 0x54, 0xc2, - 0x09, 0xa8, 0x1d, 0x27, 0x62, 0x92, 0x77, 0xa8, 0xb6, 0x53, 0x19, 0x59, 0xdb, 0x79, 0x0b, 0x48, - 0xc2, 0xf0, 0x28, 0xf0, 0x26, 0x92, 0xf1, 0xc7, 0x1b, 0x03, 0x1c, 0x98, 0x91, 0x6b, 0x48, 0x53, - 0xae, 0x8e, 0xb7, 0x29, 0xd7, 0x46, 0x6f, 0xca, 0xe4, 0x3d, 0xb8, 0xca, 0x45, 0xc9, 0xfa, 0x49, - 0x02, 0x0b, 0xbd, 0xe7, 0xb3, 0x12, 0xf8, 0x2a, 0x0e, 0x63, 0xc4, 0xe1, 0x18, 0xec, 0xff, 0x18, - 0x1e, 0x35, 0x99, 0x70, 0xdd, 0x1e, 0xae, 0x13, 0xad, 0x64, 0xf0, 0x60, 0x66, 0x4e, 0xd6, 0xc4, - 0x02, 0xd6, 0x0c, 0xf5, 0x3d, 0x9b, 0x9a, 0x32, 0xfe, 0x3a, 0x6c, 0x62, 0x3b, 0x9b, 0x6d, 0x49, - 0xc1, 0x18, 0x57, 0x96, 0x9a, 0x32, 0x79, 0x4e, 0x35, 0x65, 0x9d, 0x5b, 0xe9, 0xf7, 0x13, 0xda, - 0x90, 0xd4, 0x75, 0xc2, 0x88, 0xfa, 0x95, 0x34, 0x03, 0x0e, 0xe6, 0xe1, 0x5a, 0xa2, 0xe1, 0x59, - 0xbd, 0xc0, 0x4f, 0x62, 0x4d, 0xa7, 0xb4, 0xc4, 0x0c, 0x1e, 0xcc, 0xcc, 0xc9, 0xf4, 0xf3, 0x03, - 0xaa, 0xdb, 0xc1, 0x41, 0x12, 0x70, 0x26, 0xa9, 0x9f, 0xdf, 0x1e, 0x64, 0xc1, 0xac, 0x7c, 0x99, - 0x13, 0xd2, 0xec, 0xb3, 0xa9, 0x56, 0x7d, 0xbb, 0x04, 0x57, 0xd7, 0x69, 0x10, 0x86, 0xa6, 0x7d, - 0x6a, 0x46, 0xf9, 0x18, 0xcc, 0x28, 0xbf, 0x51, 0x81, 0x4b, 0xeb, 0x34, 0x18, 0xd0, 0xc6, 0xfe, - 0x88, 0x56, 0xff, 0x16, 0x5c, 0x8a, 0xa2, 0x21, 0xdb, 0x81, 0xeb, 0x89, 0xb9, 0x3c, 0xb5, 0x5a, - 0x6e, 0x0f, 0xb2, 0x60, 0x56, 0x3e, 0xf2, 0x75, 0x78, 0x91, 0x4f, 0xf5, 0x4e, 0x47, 0xd8, 0x67, - 0x85, 0x31, 0x21, 0xb6, 0x9f, 0xa7, 0x29, 0x21, 0x5f, 0x6c, 0x67, 0xb3, 0xe1, 0xb0, 0xfc, 0xe4, - 0x5b, 0x30, 0xd9, 0xb3, 0x7a, 0xd4, 0xb6, 0x1c, 0xae, 0x9f, 0xe5, 0x0e, 0x22, 0xda, 0x8e, 0x81, - 0x45, 0x0b, 0xb8, 0x78, 0x2a, 0x26, 0x04, 0x66, 0xb6, 0xd4, 0xda, 0x05, 0xb6, 0xd4, 0xff, 0x59, - 0x84, 0xea, 0xba, 0xe7, 0xf6, 0x7b, 0xad, 0x63, 0xd2, 0x81, 0x89, 0x07, 0xdc, 0x79, 0x26, 0x5d, - 0x53, 0xa3, 0xef, 0x28, 0x10, 0x3e, 0xb8, 0x48, 0x25, 0x12, 0xef, 0x28, 0xe1, 0x59, 0x23, 0x3e, - 0xa4, 0xc7, 0xd4, 0x94, 0x3e, 0xb4, 0xb0, 0x11, 0xdf, 0x61, 0x89, 0x28, 0x68, 0xa4, 0x0b, 0x33, - 0xba, 0x6d, 0xbb, 0x0f, 0xa8, 0xb9, 0xa9, 0x07, 0xdc, 0xef, 0x2d, 0x7d, 0x2b, 0xe7, 0x35, 0x4b, - 0xf3, 0x60, 0x86, 0xe5, 0x24, 0x14, 0xa6, 0xb1, 0xc9, 0xfb, 0x50, 0xf5, 0x03, 0xd7, 0x53, 0xca, - 0x56, 0x63, 0x69, 0x65, 0xf4, 0x9f, 0xde, 0xfa, 0x5a, 0x5b, 0x40, 0x09, 0x9b, 0xbd, 0x7c, 0x41, - 0x25, 0x40, 0xfb, 0xf5, 0x02, 0xc0, 0xed, 0x9d, 0x9d, 0x6d, 0xe9, 0x5e, 0x30, 0xa1, 0xac, 0xf7, - 0x43, 0x47, 0xe5, 0xe8, 0x0e, 0xc1, 0x44, 0x20, 0xaf, 0xf4, 0xe1, 0xf5, 0x83, 0x03, 0xe4, 0xe8, - 0xe4, 0xc7, 0xa1, 0x2a, 0x15, 0x64, 0x59, 0xed, 0x61, 0x3c, 0x85, 0x54, 0xa2, 0x51, 0xd1, 0xb5, - 0xdf, 0x2e, 0x02, 0x6c, 0x98, 0x36, 0x6d, 0xab, 0x4d, 0x20, 0xf5, 0xe0, 0xc0, 0xa3, 0xfe, 0x81, - 0x6b, 0x9b, 0x23, 0x7a, 0x53, 0xb9, 0xcd, 0x7f, 0x47, 0x81, 0x60, 0x84, 0x47, 0x4c, 0x98, 0xf4, - 0x03, 0xda, 0x53, 0xb1, 0xbd, 0x23, 0x3a, 0x51, 0x66, 0x85, 0x5d, 0x24, 0xc2, 0xc1, 0x04, 0x2a, - 0xd1, 0xa1, 0x61, 0x39, 0x86, 0xe8, 0x20, 0xad, 0xe3, 0x11, 0x1b, 0xd2, 0x0c, 0x5b, 0x71, 0x6c, - 0x44, 0x30, 0x18, 0xc7, 0xd4, 0x7e, 0xb7, 0x08, 0x57, 0xb8, 0x3c, 0x56, 0x8c, 0x44, 0x04, 0x2f, - 0xf9, 0x93, 0x03, 0x1b, 0x56, 0xff, 0xf8, 0xd9, 0x44, 0x8b, 0xfd, 0x8e, 0x5b, 0x34, 0xd0, 0x23, - 0x7d, 0x2e, 0x4a, 0x8b, 0xed, 0x52, 0xed, 0x43, 0xd9, 0x67, 0xe3, 0x95, 0xa8, 0xbd, 0xf6, 0xc8, - 0x4d, 0x28, 0xfb, 0x03, 0xf8, 0xe8, 0x15, 0x7a, 0x8d, 0xf9, 0xa8, 0xc5, 0xc5, 0x91, 0x5f, 0x82, - 0x09, 0x3f, 0xd0, 0x83, 0xbe, 0xea, 0x9a, 0xbb, 0xe3, 0x16, 0xcc, 0xc1, 0xa3, 0x71, 0x44, 0xbc, - 0xa3, 0x14, 0xaa, 0xfd, 0x6e, 0x01, 0xe6, 0xb3, 0x33, 0x6e, 0x5a, 0x7e, 0x40, 0xfe, 0xc4, 0x40, - 0xb5, 0x9f, 0xf1, 0x8f, 0xb3, 0xdc, 0xbc, 0xd2, 0xc3, 0x3d, 0x0d, 0x2a, 0x25, 0x56, 0xe5, 0x01, - 0x54, 0xac, 0x80, 0x76, 0xd5, 0xfa, 0xf2, 0xde, 0x98, 0x3f, 0x3d, 0x36, 0xb5, 0x33, 0x29, 0x28, - 0x84, 0x69, 0xdf, 0x2d, 0x0e, 0xfb, 0x64, 0x3e, 0x7d, 0xd8, 0xc9, 0x28, 0xf1, 0x3b, 0xf9, 0xa2, - 0xc4, 0x93, 0x05, 0x1a, 0x0c, 0x16, 0xff, 0x53, 0x83, 0xc1, 0xe2, 0xf7, 0xf2, 0x07, 0x8b, 0xa7, - 0xaa, 0x61, 0x68, 0xcc, 0xf8, 0x47, 0x25, 0xb8, 0xf6, 0xb8, 0x66, 0xc3, 0xe6, 0x33, 0xd9, 0x3a, - 0xf3, 0xce, 0x67, 0x8f, 0x6f, 0x87, 0x64, 0x09, 0x2a, 0xbd, 0x03, 0xdd, 0x57, 0x4a, 0xd9, 0xb5, - 0x30, 0xcc, 0x90, 0x25, 0x3e, 0x62, 0x83, 0x06, 0x57, 0xe6, 0xf8, 0x2b, 0x0a, 0x56, 0x36, 0x1c, - 0x77, 0xa9, 0xef, 0x47, 0x36, 0x81, 0x70, 0x38, 0xde, 0x12, 0xc9, 0xa8, 0xe8, 0x24, 0x80, 0x09, - 0x61, 0x62, 0x96, 0x33, 0xd3, 0xe8, 0x81, 0x5c, 0x19, 0x1b, 0x0b, 0xa2, 0x8f, 0x92, 0xde, 0x0a, - 0x29, 0x8b, 0x2c, 0x40, 0x39, 0x88, 0xc2, 0xbc, 0xd5, 0xd2, 0xbc, 0x9c, 0xa1, 0x9f, 0x72, 0x3e, - 0xb6, 0xb0, 0x77, 0xf7, 0xb8, 0x51, 0xdd, 0x94, 0xfe, 0x73, 0xcb, 0x75, 0xb8, 0x42, 0x56, 0x8a, - 0x16, 0xf6, 0xf7, 0x06, 0x38, 0x30, 0x23, 0x97, 0xf6, 0xaf, 0x6b, 0x70, 0x25, 0xbb, 0x3d, 0xb0, - 0x7a, 0x3b, 0xa2, 0x9e, 0xcf, 0xb0, 0x0b, 0xc9, 0x7a, 0xbb, 0x2f, 0x92, 0x51, 0xd1, 0x3f, 0xd1, - 0x01, 0x67, 0xbf, 0x51, 0x80, 0xab, 0x9e, 0xf4, 0x11, 0x3d, 0x8d, 0xa0, 0xb3, 0x97, 0x84, 0x39, - 0x63, 0x88, 0x40, 0x1c, 0x5e, 0x16, 0xf2, 0x37, 0x0a, 0x30, 0xd7, 0x4d, 0xd9, 0x39, 0x2e, 0x70, - 0xcf, 0x25, 0xdf, 0x47, 0xb1, 0x35, 0x44, 0x1e, 0x0e, 0x2d, 0x09, 0xf9, 0x16, 0x34, 0x7a, 0xac, - 0x5d, 0xf8, 0x01, 0x75, 0x0c, 0x15, 0x20, 0x3a, 0x7a, 0x4f, 0xda, 0x8e, 0xb0, 0xc2, 0x3d, 0x57, - 0x5c, 0x3f, 0x88, 0x11, 0x30, 0x2e, 0xf1, 0x19, 0xdf, 0x64, 0x79, 0x13, 0x6a, 0x3e, 0x0d, 0x02, - 0xcb, 0xe9, 0x88, 0xf5, 0x46, 0x5d, 0xf4, 0x95, 0xb6, 0x4c, 0xc3, 0x90, 0x4a, 0x7e, 0x02, 0xea, - 0xdc, 0xe5, 0xb4, 0xec, 0x75, 0xfc, 0xb9, 0x3a, 0x0f, 0x17, 0x9b, 0x12, 0x01, 0x70, 0x32, 0x11, - 0x23, 0x3a, 0xf9, 0x22, 0x4c, 0xee, 0xf1, 0xee, 0x2b, 0xf7, 0xdd, 0x0b, 0x1b, 0x17, 0xd7, 0xd6, - 0x5a, 0xb1, 0x74, 0x4c, 0x70, 0x91, 0x25, 0x00, 0x1a, 0xfa, 0xe5, 0xd2, 0xf6, 0xac, 0xc8, 0x63, - 0x87, 0x31, 0x2e, 0xf2, 0x12, 0x94, 0x02, 0xdb, 0xe7, 0x36, 0xac, 0x5a, 0xb4, 0x04, 0xdd, 0xd9, - 0x6c, 0x23, 0x4b, 0xd7, 0xfe, 0xb0, 0x00, 0x33, 0xa9, 0xed, 0x48, 0x2c, 0x4b, 0xdf, 0xb3, 0xe5, - 0x30, 0x12, 0x66, 0xd9, 0xc5, 0x4d, 0x64, 0xe9, 0xe4, 0x3d, 0xa9, 0x96, 0x17, 0x73, 0x1e, 0x31, - 0x72, 0x57, 0x0f, 0x7c, 0xa6, 0x87, 0x0f, 0x68, 0xe4, 0xdc, 0xcd, 0x17, 0x95, 0x47, 0xce, 0x03, - 0x31, 0x37, 0x5f, 0x44, 0xc3, 0x04, 0x67, 0xca, 0xe0, 0x57, 0x3e, 0x8b, 0xc1, 0x4f, 0xfb, 0xd5, - 0x62, 0xac, 0x06, 0xa4, 0x66, 0xff, 0x84, 0x1a, 0x78, 0x99, 0x4d, 0xa0, 0xe1, 0xe4, 0x5e, 0x8f, - 0xcf, 0x7f, 0x7c, 0x32, 0x96, 0x54, 0xf2, 0xb6, 0xa8, 0xfb, 0x52, 0xce, 0x8d, 0xdc, 0x3b, 0x9b, - 0x6d, 0x11, 0x5d, 0xa5, 0xfe, 0x5a, 0xf8, 0x0b, 0xca, 0x17, 0xf4, 0x0b, 0xb4, 0x7f, 0x56, 0x82, - 0xc6, 0x5b, 0xee, 0xde, 0x27, 0x24, 0x82, 0x3a, 0x7b, 0x9a, 0x2a, 0x7e, 0x8c, 0xd3, 0xd4, 0x2e, - 0xbc, 0x18, 0x04, 0x76, 0x9b, 0x1a, 0xae, 0x63, 0xfa, 0xcb, 0xfb, 0x01, 0xf5, 0xd6, 0x2c, 0xc7, - 0xf2, 0x0f, 0xa8, 0x29, 0xdd, 0x49, 0x9f, 0x39, 0x3d, 0x69, 0xbe, 0xb8, 0xb3, 0xb3, 0x99, 0xc5, - 0x82, 0xc3, 0xf2, 0xf2, 0x61, 0x43, 0xec, 0x1d, 0xe5, 0x7b, 0xab, 0x64, 0xcc, 0x8d, 0x18, 0x36, - 0x62, 0xe9, 0x98, 0xe0, 0xd2, 0xfe, 0x43, 0x11, 0xea, 0xe1, 0xe1, 0x11, 0xe4, 0xf3, 0x50, 0xdd, - 0xf3, 0xdc, 0x43, 0xea, 0x09, 0xcf, 0x9d, 0xdc, 0x5b, 0xd5, 0x12, 0x49, 0xa8, 0x68, 0xe4, 0x73, - 0x50, 0x09, 0xdc, 0x9e, 0x65, 0xa4, 0x0d, 0x6a, 0x3b, 0x2c, 0x11, 0x05, 0x8d, 0x77, 0x04, 0x1e, - 0x56, 0xc8, 0xbf, 0xaa, 0x16, 0xeb, 0x08, 0x3c, 0x15, 0x25, 0x55, 0x75, 0x84, 0xf2, 0xd8, 0x3b, - 0xc2, 0xcb, 0xa1, 0x0a, 0x58, 0x49, 0xf6, 0xc4, 0x94, 0xd2, 0xf6, 0x2e, 0x94, 0x7d, 0xdd, 0xb7, - 0xe5, 0xf4, 0x96, 0xe3, 0xbc, 0x86, 0xe5, 0xf6, 0xa6, 0x3c, 0xaf, 0x61, 0xb9, 0xbd, 0x89, 0x1c, - 0x54, 0xfb, 0xed, 0x12, 0x34, 0x44, 0xfd, 0x8a, 0xd1, 0x63, 0x9c, 0x35, 0xfc, 0x06, 0x0f, 0xb9, - 0xf0, 0xfb, 0x5d, 0xea, 0x71, 0x73, 0x94, 0x1c, 0x0c, 0xe3, 0x7e, 0x84, 0x88, 0x18, 0x86, 0x5d, - 0x44, 0x49, 0x3f, 0xda, 0x55, 0xcf, 0xa6, 0x0a, 0x7e, 0x00, 0x8a, 0xd4, 0x71, 0x65, 0x24, 0x65, - 0x38, 0x55, 0xdc, 0x89, 0xd1, 0x30, 0xc1, 0xa9, 0xfd, 0x8f, 0x22, 0xd4, 0x37, 0xad, 0x7d, 0x6a, - 0x1c, 0x1b, 0x36, 0x25, 0xdf, 0x80, 0x79, 0x93, 0xda, 0x94, 0xcd, 0x98, 0xeb, 0x9e, 0x6e, 0xd0, - 0x6d, 0xea, 0x59, 0xfc, 0x00, 0x27, 0xd6, 0x07, 0x65, 0x80, 0xeb, 0xf5, 0xd3, 0x93, 0xe6, 0xfc, - 0xea, 0x50, 0x2e, 0x7c, 0x0c, 0x02, 0xd9, 0x80, 0x49, 0x93, 0xfa, 0x96, 0x47, 0xcd, 0xed, 0xd8, - 0x82, 0xe8, 0xf3, 0xaa, 0x9c, 0xab, 0x31, 0xda, 0xa3, 0x93, 0xe6, 0x94, 0x32, 0x84, 0x8a, 0x95, - 0x51, 0x22, 0x2b, 0x1b, 0x5a, 0x7a, 0x7a, 0xdf, 0xa7, 0x19, 0xe5, 0x2c, 0xf1, 0x72, 0xf2, 0xa1, - 0x65, 0x3b, 0x9b, 0x05, 0x87, 0xe5, 0x25, 0x7b, 0x30, 0xc7, 0xcb, 0x9f, 0x85, 0x5b, 0xe6, 0xb8, - 0x2f, 0x9f, 0x9e, 0x34, 0xb5, 0x55, 0xda, 0xf3, 0xa8, 0xa1, 0x07, 0xd4, 0x5c, 0x1d, 0xc2, 0x8d, - 0x43, 0x71, 0xb4, 0x0a, 0x94, 0x36, 0xdd, 0x8e, 0xf6, 0xdd, 0x12, 0x84, 0x27, 0x8a, 0x91, 0x3f, - 0x5b, 0x80, 0x86, 0xee, 0x38, 0x6e, 0x20, 0x4f, 0xeb, 0x12, 0xd1, 0x04, 0x98, 0xfb, 0xe0, 0xb2, - 0x85, 0xe5, 0x08, 0x54, 0x38, 0xa2, 0x43, 0xe7, 0x78, 0x8c, 0x82, 0x71, 0xd9, 0xa4, 0x9f, 0xf2, - 0x8d, 0x6f, 0xe5, 0x2f, 0xc5, 0x19, 0x3c, 0xe1, 0xf3, 0x5f, 0x85, 0xd9, 0x74, 0x61, 0xcf, 0xe3, - 0xda, 0xca, 0x15, 0x64, 0x50, 0x04, 0x88, 0xe2, 0x63, 0x9e, 0x82, 0x41, 0xce, 0x4a, 0x18, 0xe4, - 0x46, 0x3f, 0xd6, 0x21, 0x2a, 0xf4, 0x50, 0x23, 0xdc, 0x37, 0x53, 0x46, 0xb8, 0x8d, 0x71, 0x08, - 0x7b, 0xbc, 0xe1, 0x6d, 0x0f, 0x2e, 0x45, 0xbc, 0xd1, 0xe8, 0x72, 0x27, 0xd5, 0xfb, 0x85, 0x5e, - 0xf9, 0x85, 0x21, 0xbd, 0x7f, 0x26, 0x16, 0xb0, 0x34, 0xd8, 0xff, 0xb5, 0xbf, 0x59, 0x80, 0xd9, - 0xb8, 0x10, 0xbe, 0x07, 0xfd, 0x4b, 0x30, 0xe5, 0x51, 0xdd, 0x6c, 0xe9, 0x81, 0x71, 0xc0, 0x43, - 0xe3, 0x0b, 0x3c, 0x96, 0x9d, 0xef, 0x96, 0xc3, 0x38, 0x01, 0x93, 0x7c, 0x44, 0x87, 0x06, 0x4b, - 0xd8, 0xb1, 0xba, 0xd4, 0xed, 0x07, 0x23, 0x5a, 0x99, 0xf9, 0x02, 0x0f, 0x23, 0x18, 0x8c, 0x63, - 0x6a, 0x1f, 0x15, 0x60, 0x3a, 0x5e, 0xe0, 0x0b, 0xb7, 0x40, 0x1e, 0x24, 0x2d, 0x90, 0x2b, 0x63, - 0xf8, 0xef, 0x43, 0xac, 0x8e, 0xdf, 0x6e, 0xc4, 0x3f, 0x8d, 0x5b, 0x1a, 0xe3, 0xc6, 0x95, 0xc2, - 0x63, 0x8d, 0x2b, 0x9f, 0xfc, 0x83, 0xaa, 0x86, 0xad, 0x0a, 0xca, 0xcf, 0xf0, 0xaa, 0xe0, 0xe3, - 0x3c, 0xed, 0x2a, 0x76, 0x62, 0xd3, 0x44, 0x8e, 0x13, 0x9b, 0xba, 0xe1, 0x89, 0x4d, 0xd5, 0xb1, - 0x0d, 0x6c, 0x67, 0x39, 0xb5, 0xa9, 0xf6, 0x54, 0x4f, 0x6d, 0xaa, 0x5f, 0xd4, 0xa9, 0x4d, 0x90, - 0xf7, 0xd4, 0xa6, 0xef, 0x14, 0x60, 0xda, 0x4c, 0xec, 0x30, 0x96, 0x7b, 0xfb, 0x47, 0x9f, 0xce, - 0x92, 0x1b, 0x96, 0xc5, 0x16, 0xb3, 0x64, 0x1a, 0xa6, 0x44, 0x66, 0x9d, 0x95, 0x34, 0xf9, 0xb1, - 0x9c, 0x95, 0x44, 0x7e, 0x09, 0xea, 0xb6, 0x9a, 0xeb, 0xe4, 0x09, 0x92, 0x9b, 0x63, 0x69, 0x92, - 0x12, 0x33, 0xda, 0xc5, 0x10, 0x26, 0x61, 0x24, 0x51, 0xfb, 0xfd, 0x6a, 0x7c, 0x42, 0x7c, 0xda, - 0x3e, 0x8e, 0xd7, 0x92, 0x3e, 0x8e, 0x1b, 0x69, 0x1f, 0xc7, 0xc0, 0x6c, 0x2e, 0xfd, 0x1c, 0x3f, - 0x19, 0x9b, 0x27, 0x4a, 0xfc, 0x90, 0xa6, 0xb0, 0xc9, 0x65, 0xcc, 0x15, 0xcb, 0x30, 0x23, 0x95, - 0x00, 0x45, 0xe4, 0x83, 0xec, 0x54, 0x14, 0x95, 0xb6, 0x9a, 0x24, 0x63, 0x9a, 0x9f, 0x09, 0xf4, - 0xd5, 0x59, 0xbd, 0x62, 0xc5, 0x16, 0xb5, 0x71, 0x75, 0x8e, 0x6e, 0xc8, 0xc1, 0x56, 0x77, 0x1e, - 0xd5, 0x7d, 0xe9, 0xa9, 0x88, 0xad, 0xee, 0x90, 0xa7, 0xa2, 0xa4, 0xc6, 0xdd, 0x35, 0xd5, 0x27, - 0xb8, 0x6b, 0x74, 0x68, 0xd8, 0xba, 0x1f, 0x88, 0xc6, 0x64, 0xca, 0xd1, 0xe4, 0x8f, 0x9d, 0x6d, - 0xde, 0x67, 0xba, 0x44, 0xa4, 0xc0, 0x6f, 0x46, 0x30, 0x18, 0xc7, 0x24, 0x26, 0x4c, 0xb2, 0x57, - 0x3e, 0xb2, 0x98, 0xcb, 0x81, 0x3c, 0xd1, 0xee, 0x3c, 0x32, 0xc2, 0xa5, 0xe3, 0x66, 0x0c, 0x07, - 0x13, 0xa8, 0x43, 0x3c, 0x3a, 0x30, 0x8a, 0x47, 0x87, 0xfc, 0xac, 0x50, 0xdc, 0x8e, 0xc3, 0xdf, - 0xda, 0xe0, 0xbf, 0x35, 0x8c, 0x68, 0xc5, 0x38, 0x11, 0x93, 0xbc, 0xac, 0x55, 0xf4, 0x65, 0x35, - 0xa8, 0xec, 0x93, 0xc9, 0x56, 0xb1, 0x9b, 0x24, 0x63, 0x9a, 0x9f, 0x6c, 0xc3, 0xe5, 0x30, 0x29, - 0x5e, 0x8c, 0x29, 0x8e, 0x13, 0x86, 0x18, 0xee, 0x66, 0xf0, 0x60, 0x66, 0x4e, 0xbe, 0x67, 0xa7, - 0xef, 0x79, 0xd4, 0x09, 0x6e, 0xeb, 0xfe, 0x81, 0x8c, 0x55, 0x8c, 0xf6, 0xec, 0x44, 0x24, 0x8c, - 0xf3, 0x91, 0x25, 0x00, 0x01, 0xc7, 0x73, 0xcd, 0x24, 0xc3, 0x81, 0x77, 0x43, 0x0a, 0xc6, 0xb8, - 0xb4, 0xef, 0xd4, 0xa1, 0x71, 0x57, 0x0f, 0xac, 0x23, 0xca, 0xdd, 0xaf, 0x17, 0xe3, 0x03, 0xfb, - 0x2b, 0x05, 0xb8, 0x92, 0x8c, 0xb1, 0xbd, 0x40, 0x47, 0x18, 0x3f, 0xe3, 0x09, 0x33, 0xa5, 0xe1, - 0x90, 0x52, 0x70, 0x97, 0xd8, 0x40, 0xc8, 0xee, 0x45, 0xbb, 0xc4, 0xda, 0xc3, 0x04, 0xe2, 0xf0, - 0xb2, 0x7c, 0x52, 0x5c, 0x62, 0xcf, 0xf6, 0xa1, 0xa4, 0x29, 0x87, 0x5d, 0xf5, 0x99, 0x71, 0xd8, - 0xd5, 0x9e, 0x09, 0xad, 0xbf, 0x17, 0x73, 0xd8, 0xd5, 0x73, 0x06, 0x8e, 0xc9, 0x6d, 0x29, 0x02, - 0x6d, 0x98, 0xe3, 0x8f, 0x9f, 0x28, 0xa1, 0x1c, 0x29, 0x4c, 0x59, 0xde, 0xd3, 0x7d, 0xcb, 0x90, - 0x6a, 0x47, 0x8e, 0x43, 0x98, 0xd5, 0xe1, 0x8c, 0x22, 0xbe, 0x84, 0xbf, 0xa2, 0xc0, 0x8e, 0xce, - 0xa2, 0x2c, 0xe6, 0x3a, 0x8b, 0x92, 0xac, 0x40, 0xd9, 0x39, 0xa4, 0xc7, 0xe7, 0x3b, 0x9b, 0x81, - 0x2f, 0x02, 0xef, 0xde, 0xa1, 0xc7, 0xc8, 0x33, 0x6b, 0xdf, 0x2b, 0x02, 0xb0, 0xcf, 0x3f, 0x9b, - 0xeb, 0xec, 0xc7, 0xa1, 0xea, 0xf7, 0xb9, 0x61, 0x48, 0x2a, 0x4c, 0x51, 0xb4, 0x9d, 0x48, 0x46, - 0x45, 0x27, 0x9f, 0x83, 0xca, 0x37, 0xfb, 0xb4, 0xaf, 0xe2, 0x40, 0xc2, 0x75, 0xc3, 0xd7, 0x58, - 0x22, 0x0a, 0xda, 0xc5, 0x99, 0xb7, 0x95, 0x8b, 0xad, 0x72, 0x51, 0x2e, 0xb6, 0x3a, 0x54, 0xef, - 0xba, 0x3c, 0x78, 0x57, 0xfb, 0xaf, 0x45, 0x80, 0x28, 0x38, 0x92, 0xfc, 0x7a, 0x01, 0x5e, 0x08, - 0x3b, 0x5c, 0x20, 0x96, 0x7f, 0xfc, 0xdc, 0xf3, 0xdc, 0xee, 0xb6, 0xac, 0xce, 0xce, 0x47, 0xa0, - 0xed, 0x2c, 0x71, 0x98, 0x5d, 0x0a, 0x82, 0x50, 0xa3, 0xdd, 0x5e, 0x70, 0xbc, 0x6a, 0x79, 0xb2, - 0x05, 0x66, 0xc6, 0xe0, 0xde, 0x92, 0x3c, 0x22, 0xab, 0xb4, 0x51, 0xf0, 0x4e, 0xa4, 0x28, 0x18, - 0xe2, 0x90, 0x03, 0xa8, 0x39, 0xee, 0x7b, 0x3e, 0xab, 0x0e, 0xd9, 0x1c, 0xdf, 0x1c, 0xbd, 0xca, - 0x45, 0xb5, 0x0a, 0xb7, 0x8b, 0x7c, 0xc1, 0xaa, 0x23, 0x2b, 0xfb, 0xd7, 0x8a, 0x70, 0x29, 0xa3, - 0x1e, 0xc8, 0x9b, 0x30, 0x2b, 0xe3, 0x50, 0xa3, 0x0b, 0x00, 0x0a, 0xd1, 0x05, 0x00, 0xed, 0x14, - 0x0d, 0x07, 0xb8, 0xc9, 0x7b, 0x00, 0xba, 0x61, 0x50, 0xdf, 0xdf, 0x72, 0x4d, 0xb5, 0x1e, 0x78, - 0x83, 0xa9, 0x2f, 0xcb, 0x61, 0xea, 0xa3, 0x93, 0xe6, 0x4f, 0x65, 0x85, 0x96, 0xa7, 0xea, 0x39, - 0xca, 0x80, 0x31, 0x48, 0xf2, 0x0d, 0x00, 0x61, 0x03, 0x08, 0x4f, 0xbf, 0x78, 0x82, 0xe1, 0x6c, - 0x41, 0x1d, 0xae, 0xb6, 0xf0, 0xb5, 0xbe, 0xee, 0x04, 0x56, 0x70, 0x2c, 0x0e, 0x1b, 0xba, 0x1f, - 0xa2, 0x60, 0x0c, 0x51, 0xfb, 0xc7, 0x45, 0xa8, 0x29, 0xd7, 0xc3, 0x53, 0xb0, 0x05, 0x77, 0x12, - 0xb6, 0xe0, 0x31, 0x05, 0x93, 0x67, 0x59, 0x82, 0xdd, 0x94, 0x25, 0x78, 0x3d, 0xbf, 0xa8, 0xc7, - 0xdb, 0x81, 0x7f, 0xab, 0x08, 0xd3, 0x8a, 0x35, 0xaf, 0x85, 0xf6, 0x2b, 0x30, 0x23, 0x82, 0x40, - 0xb6, 0xf4, 0x87, 0xe2, 0xdc, 0x25, 0x5e, 0x61, 0x65, 0x11, 0xbf, 0xdd, 0x4a, 0x92, 0x30, 0xcd, - 0xcb, 0x9a, 0xb5, 0x48, 0xda, 0x65, 0x8b, 0x30, 0xe1, 0x36, 0x16, 0xeb, 0x4d, 0xde, 0xac, 0x5b, - 0x29, 0x1a, 0x0e, 0x70, 0xa7, 0x4d, 0xc4, 0xe5, 0x0b, 0x30, 0x11, 0xff, 0xdb, 0x02, 0x4c, 0x46, - 0xf5, 0x75, 0xe1, 0x06, 0xe2, 0xfd, 0xa4, 0x81, 0x78, 0x39, 0x77, 0x73, 0x18, 0x62, 0x1e, 0xfe, - 0x0b, 0x55, 0x48, 0xec, 0x69, 0x20, 0x7b, 0x30, 0x6f, 0x65, 0x46, 0x66, 0xc6, 0x46, 0x9b, 0x70, - 0x93, 0xfe, 0xc6, 0x50, 0x4e, 0x7c, 0x0c, 0x0a, 0xe9, 0x43, 0xed, 0x88, 0x7a, 0x81, 0x65, 0x50, - 0xf5, 0x7d, 0xeb, 0xb9, 0x55, 0x32, 0x69, 0x04, 0x0f, 0xeb, 0xf4, 0xbe, 0x14, 0x80, 0xa1, 0x28, - 0xb2, 0x07, 0x15, 0x6a, 0x76, 0xa8, 0x3a, 0x09, 0x2b, 0xe7, 0xc9, 0xc4, 0x61, 0x7d, 0xb2, 0x37, - 0x1f, 0x05, 0x34, 0xf1, 0xe3, 0x86, 0xa6, 0x72, 0x4e, 0x05, 0xeb, 0x8c, 0xe6, 0x25, 0x72, 0x18, - 0x5a, 0x5b, 0x2b, 0x63, 0x1a, 0x3c, 0x1e, 0x63, 0x6b, 0xf5, 0xa1, 0xfe, 0x40, 0x0f, 0xa8, 0xd7, - 0xd5, 0xbd, 0x43, 0xb9, 0xda, 0x18, 0xfd, 0x0b, 0xdf, 0x56, 0x48, 0xd1, 0x17, 0x86, 0x49, 0x18, - 0xc9, 0x21, 0x2e, 0xd4, 0x03, 0xa9, 0x3e, 0x2b, 0x93, 0xf2, 0xe8, 0x42, 0x95, 0x22, 0xee, 0xcb, - 0xbd, 0x0d, 0xea, 0x15, 0x23, 0x19, 0xe4, 0x28, 0x71, 0x8c, 0xbd, 0xb8, 0xbc, 0xa0, 0x95, 0xc3, - 0x35, 0x21, 0xa1, 0xa2, 0xe9, 0x26, 0xfb, 0x38, 0x7c, 0xed, 0x7f, 0x55, 0xa2, 0x61, 0xf9, 0x69, - 0xdb, 0x09, 0xbf, 0x98, 0xb4, 0x13, 0x5e, 0x4f, 0xdb, 0x09, 0x53, 0x3e, 0xff, 0xf3, 0x47, 0x43, - 0xa7, 0xcc, 0x6b, 0xe5, 0x0b, 0x30, 0xaf, 0xbd, 0x02, 0x8d, 0x23, 0x3e, 0x12, 0x88, 0x63, 0xb5, - 0x2a, 0x7c, 0x1a, 0xe1, 0x23, 0xfb, 0xfd, 0x28, 0x19, 0xe3, 0x3c, 0x2c, 0x8b, 0xbc, 0xb8, 0x27, - 0x3c, 0xc9, 0x5a, 0x66, 0x69, 0x47, 0xc9, 0x18, 0xe7, 0xe1, 0x81, 0x94, 0x96, 0x73, 0x28, 0x32, - 0x54, 0x79, 0x06, 0x11, 0x48, 0xa9, 0x12, 0x31, 0xa2, 0x93, 0x9b, 0x50, 0xeb, 0x9b, 0xfb, 0x82, - 0xb7, 0xc6, 0x79, 0xb9, 0x86, 0xb9, 0xbb, 0xba, 0x26, 0x8f, 0xf9, 0x52, 0x54, 0x56, 0x92, 0xae, - 0xde, 0x53, 0x04, 0xbe, 0x36, 0x94, 0x25, 0xd9, 0x8a, 0x92, 0x31, 0xce, 0x43, 0x7e, 0x06, 0xa6, - 0x3d, 0x6a, 0xf6, 0x0d, 0x1a, 0xe6, 0x02, 0x9e, 0x4b, 0x9e, 0x7f, 0x1a, 0xa7, 0x60, 0x8a, 0x73, - 0x88, 0x91, 0xb0, 0x31, 0x92, 0x91, 0xf0, 0xab, 0x30, 0x6d, 0x7a, 0xba, 0xe5, 0x50, 0xf3, 0x9e, - 0xc3, 0x03, 0x3b, 0x64, 0x38, 0x67, 0x68, 0xa0, 0x5f, 0x4d, 0x50, 0x31, 0xc5, 0xad, 0xfd, 0xf3, - 0x22, 0x54, 0xc4, 0xa9, 0xac, 0x1b, 0x70, 0xc9, 0x72, 0xac, 0xc0, 0xd2, 0xed, 0x55, 0x6a, 0xeb, - 0xc7, 0xf1, 0x00, 0x97, 0x4a, 0xeb, 0x45, 0xb6, 0xd0, 0xde, 0x18, 0x24, 0x63, 0x56, 0x1e, 0x56, - 0x39, 0x81, 0x98, 0xbe, 0x15, 0x8a, 0xb0, 0xa3, 0x89, 0x23, 0xc1, 0x13, 0x14, 0x4c, 0x71, 0x32, - 0x65, 0xa8, 0x37, 0x10, 0xb9, 0x52, 0x11, 0xca, 0x50, 0x32, 0x98, 0x24, 0xc9, 0xc7, 0x95, 0xf4, - 0x3e, 0x57, 0x88, 0xc3, 0x4d, 0x53, 0x32, 0x08, 0x4e, 0x28, 0xe9, 0x29, 0x1a, 0x0e, 0x70, 0x33, - 0x84, 0x7d, 0xdd, 0xb2, 0xfb, 0x1e, 0x8d, 0x10, 0x2a, 0x11, 0xc2, 0x5a, 0x8a, 0x86, 0x03, 0xdc, - 0xda, 0x7f, 0x2f, 0x00, 0x19, 0xdc, 0x06, 0x42, 0x0e, 0x60, 0xc2, 0xe1, 0xb6, 0xc8, 0xdc, 0x37, - 0x11, 0xc4, 0x4c, 0x9a, 0x62, 0x92, 0x90, 0x09, 0x12, 0x9f, 0x38, 0x50, 0xa3, 0x0f, 0x03, 0xea, - 0x39, 0xe1, 0xb6, 0xb0, 0xf1, 0xdc, 0x7a, 0x20, 0xd6, 0x66, 0x12, 0x19, 0x43, 0x19, 0xda, 0xef, - 0x15, 0xa1, 0x11, 0xe3, 0x7b, 0xd2, 0x12, 0x9f, 0x9f, 0x4c, 0x21, 0x4c, 0x80, 0xbb, 0x9e, 0x2d, - 0xc7, 0xbb, 0xd8, 0xc9, 0x14, 0x92, 0x84, 0x9b, 0x18, 0xe7, 0x23, 0x4b, 0x00, 0x5d, 0xdd, 0x0f, - 0xa8, 0xc7, 0x75, 0xa1, 0xd4, 0x79, 0x10, 0x5b, 0x21, 0x05, 0x63, 0x5c, 0xe4, 0x86, 0xbc, 0xb7, - 0xa2, 0x9c, 0x3c, 0xbf, 0x73, 0xc8, 0xa5, 0x14, 0x95, 0x31, 0x5c, 0x4a, 0x41, 0x3a, 0x30, 0xab, - 0x4a, 0xad, 0xa8, 0xe7, 0x3b, 0xdd, 0x51, 0x34, 0xd4, 0x14, 0x04, 0x0e, 0x80, 0x6a, 0xdf, 0x2b, - 0xc0, 0x54, 0xc2, 0x00, 0x25, 0x4e, 0xde, 0x54, 0x9b, 0x98, 0x12, 0x27, 0x6f, 0xc6, 0xf6, 0x1e, - 0xbd, 0x0c, 0x13, 0xa2, 0x82, 0xd2, 0xb1, 0xc9, 0xa2, 0x0a, 0x51, 0x52, 0xd9, 0xcc, 0x22, 0x4d, - 0xdc, 0xe9, 0x99, 0x45, 0xda, 0xc0, 0x51, 0xd1, 0x85, 0xe7, 0x48, 0x94, 0x4e, 0xd6, 0x74, 0xcc, - 0x73, 0x24, 0xd2, 0x31, 0xe4, 0xd0, 0xfe, 0x3e, 0x2f, 0x77, 0xe0, 0x1d, 0x87, 0x2b, 0xeb, 0x0e, - 0x54, 0x65, 0x3c, 0xaa, 0xec, 0x1a, 0x6f, 0xe6, 0xb0, 0x8a, 0x71, 0x1c, 0x19, 0x51, 0xa9, 0x1b, - 0x87, 0xf7, 0xf6, 0xf7, 0x51, 0xa1, 0x93, 0x5b, 0x50, 0x77, 0x1d, 0xd9, 0x83, 0xe5, 0xe7, 0x7f, - 0x81, 0xcd, 0x1c, 0xf7, 0x54, 0xe2, 0xa3, 0x93, 0xe6, 0x95, 0xf0, 0x25, 0x51, 0x48, 0x8c, 0x72, - 0x6a, 0x7f, 0xa6, 0x00, 0x2f, 0xa0, 0x6b, 0xdb, 0x96, 0xd3, 0x49, 0x7a, 0x3e, 0x89, 0x0d, 0xd3, - 0x5d, 0xfd, 0xe1, 0xae, 0xa3, 0x1f, 0xe9, 0x96, 0xad, 0xef, 0xd9, 0xf4, 0x89, 0x2b, 0xe3, 0x7e, - 0x60, 0xd9, 0x0b, 0xe2, 0x1e, 0xcf, 0x85, 0x0d, 0x27, 0xb8, 0xe7, 0xb5, 0x03, 0xcf, 0x72, 0x3a, - 0x62, 0x94, 0xdc, 0x4a, 0x60, 0x61, 0x0a, 0x5b, 0xfb, 0xfd, 0x12, 0xf0, 0x58, 0x47, 0xf2, 0x25, - 0xa8, 0x77, 0xa9, 0x71, 0xa0, 0x3b, 0x96, 0xaf, 0xce, 0x30, 0xbe, 0xca, 0xbe, 0x6b, 0x4b, 0x25, - 0x3e, 0x62, 0xbf, 0x62, 0xb9, 0xbd, 0xc9, 0xb7, 0x1d, 0x45, 0xbc, 0xc4, 0x80, 0x89, 0x8e, 0xef, - 0xeb, 0x3d, 0x2b, 0x77, 0x88, 0x89, 0x38, 0x33, 0x56, 0x0c, 0x47, 0xe2, 0x19, 0x25, 0x34, 0x31, - 0xa0, 0xd2, 0xb3, 0x75, 0xcb, 0xc9, 0x7d, 0xef, 0x1c, 0xfb, 0x82, 0x6d, 0x86, 0x24, 0x4c, 0x95, - 0xfc, 0x11, 0x05, 0x36, 0xe9, 0x43, 0xc3, 0x37, 0x3c, 0xbd, 0xeb, 0x1f, 0xe8, 0x4b, 0xaf, 0xbe, - 0x96, 0x5b, 0xf9, 0x8f, 0x44, 0x09, 0x5d, 0x64, 0x05, 0x97, 0xb7, 0xda, 0xb7, 0x97, 0x97, 0x5e, - 0x7d, 0x0d, 0xe3, 0x72, 0xe2, 0x62, 0x5f, 0x7d, 0x65, 0x49, 0x8e, 0x20, 0x63, 0x17, 0xfb, 0xea, - 0x2b, 0x4b, 0x18, 0x97, 0xa3, 0xfd, 0xef, 0x02, 0xd4, 0x43, 0x5e, 0xb2, 0x0b, 0xc0, 0xc6, 0x32, - 0x79, 0xca, 0xeb, 0xb9, 0xee, 0xe8, 0xe1, 0xd6, 0x9e, 0xdd, 0x30, 0x33, 0xc6, 0x80, 0x32, 0x8e, - 0xc1, 0x2d, 0x8e, 0xfb, 0x18, 0xdc, 0x45, 0xa8, 0x1f, 0xe8, 0x8e, 0xe9, 0x1f, 0xe8, 0x87, 0x54, - 0x86, 0x88, 0x87, 0x4b, 0x91, 0xdb, 0x8a, 0x80, 0x11, 0x8f, 0xf6, 0x0f, 0x27, 0x40, 0xc4, 0x85, - 0xb0, 0x41, 0xc7, 0xb4, 0x7c, 0xb1, 0x91, 0xa3, 0xc0, 0x73, 0x86, 0x83, 0xce, 0xaa, 0x4c, 0xc7, - 0x90, 0x83, 0x5c, 0x85, 0x52, 0xd7, 0x72, 0xa4, 0x06, 0xc2, 0x0d, 0xb9, 0x5b, 0x96, 0x83, 0x2c, - 0x8d, 0x93, 0xf4, 0x87, 0x52, 0xc3, 0x10, 0x24, 0xfd, 0x21, 0xb2, 0x34, 0xf2, 0x15, 0x98, 0xb1, - 0x5d, 0xf7, 0x90, 0x0d, 0x1f, 0xf1, 0x50, 0xd7, 0x29, 0x61, 0x5a, 0xd9, 0x4c, 0x92, 0x30, 0xcd, - 0x4b, 0x76, 0xe1, 0xc5, 0x0f, 0xa8, 0xe7, 0xca, 0xf1, 0xb2, 0x6d, 0x53, 0xda, 0x53, 0x30, 0x42, - 0x35, 0xe6, 0x91, 0xb8, 0x3f, 0x9f, 0xcd, 0x82, 0xc3, 0xf2, 0xf2, 0xbd, 0x03, 0xba, 0xd7, 0xa1, - 0xc1, 0xb6, 0xe7, 0x32, 0xdd, 0xc5, 0x72, 0x3a, 0x0a, 0x76, 0x22, 0x82, 0xdd, 0xc9, 0x66, 0xc1, - 0x61, 0x79, 0xc9, 0x3b, 0x30, 0x27, 0x48, 0x42, 0x6d, 0x59, 0x16, 0xc3, 0x8c, 0x65, 0xab, 0xeb, - 0x5a, 0xa7, 0x84, 0xbf, 0x6c, 0x67, 0x08, 0x0f, 0x0e, 0xcd, 0x4d, 0xde, 0x82, 0x59, 0xe5, 0x2d, - 0xdd, 0xa6, 0x5e, 0x3b, 0x8c, 0x15, 0x9a, 0x52, 0x21, 0xd3, 0x2a, 0x64, 0x18, 0x53, 0x5c, 0x38, - 0x90, 0x8f, 0x20, 0x5c, 0xe1, 0x01, 0x41, 0xbb, 0xbd, 0x15, 0xd7, 0xb5, 0x4d, 0xf7, 0x81, 0xa3, - 0xbe, 0x5d, 0x28, 0xec, 0xdc, 0x41, 0xda, 0xce, 0xe4, 0xc0, 0x21, 0x39, 0xd9, 0x97, 0x73, 0xca, - 0xaa, 0xfb, 0xc0, 0x49, 0xa3, 0x42, 0xf4, 0xe5, 0xed, 0x21, 0x3c, 0x38, 0x34, 0x37, 0x59, 0x03, - 0x92, 0xfe, 0x82, 0xdd, 0x9e, 0x74, 0xe1, 0x5f, 0x11, 0x07, 0x36, 0xa5, 0xa9, 0x98, 0x91, 0x83, - 0x6c, 0xc2, 0xe5, 0x74, 0x2a, 0x13, 0x27, 0xbd, 0xf9, 0xfc, 0xa8, 0x66, 0xcc, 0xa0, 0x63, 0x66, - 0x2e, 0xed, 0x1f, 0x15, 0x61, 0x2a, 0x71, 0xc2, 0xc7, 0x33, 0x77, 0x92, 0x02, 0x5b, 0x3c, 0x74, - 0xfd, 0xce, 0xc6, 0xea, 0x6d, 0xaa, 0x9b, 0xd4, 0x53, 0x1b, 0x48, 0xea, 0x72, 0x5a, 0x4c, 0x50, - 0x30, 0xc5, 0x49, 0xf6, 0xa1, 0x22, 0xfc, 0x04, 0x79, 0x6f, 0x7b, 0x52, 0x75, 0xc4, 0x9d, 0x05, - 0xf2, 0x8a, 0x34, 0xd7, 0xa3, 0x28, 0xe0, 0xb5, 0x00, 0x26, 0xe3, 0x1c, 0x6c, 0x20, 0x89, 0xd4, - 0xde, 0x6a, 0x42, 0xe5, 0xdd, 0x80, 0x52, 0x10, 0x8c, 0x7a, 0x46, 0x83, 0xf0, 0x3b, 0xed, 0x6c, - 0x22, 0xc3, 0xd0, 0xf6, 0xd9, 0xbf, 0xf3, 0x7d, 0xcb, 0x75, 0xe4, 0x81, 0xfd, 0xbb, 0x50, 0x95, - 0xab, 0xa7, 0x11, 0xcf, 0x98, 0xe0, 0xba, 0x92, 0x32, 0xbb, 0x2a, 0x2c, 0xed, 0xdf, 0x15, 0xa1, - 0x1e, 0x9a, 0x49, 0xce, 0x70, 0x10, 0xbe, 0x0b, 0xf5, 0x30, 0xa0, 0x31, 0xf7, 0x55, 0xb6, 0x51, - 0x9c, 0x1d, 0x5f, 0xd9, 0x87, 0xaf, 0x18, 0xc9, 0x88, 0x07, 0x4b, 0x96, 0x72, 0x04, 0x4b, 0xf6, - 0xa0, 0x1a, 0x78, 0x56, 0xa7, 0x23, 0x57, 0x09, 0x79, 0xa2, 0x25, 0xc3, 0xea, 0xda, 0x11, 0x80, - 0xb2, 0x66, 0xc5, 0x0b, 0x2a, 0x31, 0xda, 0xfb, 0x30, 0x9b, 0xe6, 0xe4, 0x2a, 0xb4, 0x71, 0x40, - 0xcd, 0xbe, 0xad, 0xea, 0x38, 0x52, 0xa1, 0x65, 0x3a, 0x86, 0x1c, 0xe4, 0x26, 0xd4, 0xd8, 0x6f, - 0xfa, 0xc0, 0x75, 0x94, 0x1a, 0xcb, 0x57, 0x23, 0x3b, 0x32, 0x0d, 0x43, 0xaa, 0xf6, 0x5f, 0x4a, - 0x70, 0x35, 0x32, 0x76, 0x6d, 0xe9, 0x8e, 0xde, 0x39, 0xc3, 0xfd, 0xa5, 0x9f, 0xee, 0xda, 0x3b, - 0xef, 0x6d, 0x26, 0xa5, 0x67, 0xe0, 0x36, 0x93, 0xff, 0x57, 0x04, 0x1e, 0x7c, 0x4d, 0xbe, 0x05, - 0x93, 0x7a, 0xec, 0xea, 0x6a, 0xf9, 0x3b, 0x6f, 0xe5, 0xfe, 0x9d, 0x3c, 0xc6, 0x3b, 0x0c, 0x80, - 0x8b, 0xa7, 0x62, 0x42, 0x20, 0x71, 0xa1, 0xb6, 0xaf, 0xdb, 0x36, 0xd3, 0x85, 0x72, 0x3b, 0xef, - 0x12, 0xc2, 0x79, 0x33, 0x5f, 0x93, 0xd0, 0x18, 0x0a, 0x21, 0xdf, 0x29, 0xc0, 0x94, 0x17, 0x5f, - 0xae, 0xc9, 0x1f, 0x92, 0x27, 0xb4, 0x23, 0x86, 0x16, 0x0f, 0xb7, 0x8b, 0xaf, 0x09, 0x93, 0x32, - 0xb5, 0xff, 0x5c, 0x80, 0xa9, 0xb6, 0x6d, 0x99, 0x96, 0xd3, 0xb9, 0xc0, 0xcb, 0x54, 0xee, 0x41, - 0xc5, 0xb7, 0x2d, 0x93, 0x8e, 0x38, 0x9b, 0x88, 0x79, 0x8c, 0x01, 0xa0, 0xc0, 0x49, 0xde, 0xce, - 0x52, 0x3a, 0xc3, 0xed, 0x2c, 0x7f, 0x30, 0x01, 0x72, 0x1b, 0x01, 0xe9, 0x43, 0xbd, 0xa3, 0x2e, - 0x7d, 0x90, 0xdf, 0x78, 0x3b, 0xc7, 0x81, 0xa1, 0x89, 0xeb, 0x23, 0xc4, 0xd8, 0x1f, 0x26, 0x62, - 0x24, 0x89, 0xd0, 0xe4, 0x9d, 0xe9, 0xab, 0x39, 0xef, 0x4c, 0x17, 0xe2, 0x06, 0x6f, 0x4d, 0xd7, - 0xa1, 0x7c, 0x10, 0x04, 0x3d, 0xd9, 0x98, 0x46, 0xdf, 0x27, 0x12, 0x9d, 0x59, 0x25, 0x74, 0x22, - 0xf6, 0x8e, 0x1c, 0x9a, 0x89, 0x70, 0xf4, 0xf0, 0x66, 0xca, 0x95, 0x5c, 0x61, 0x24, 0x71, 0x11, - 0xec, 0x1d, 0x39, 0x34, 0xf9, 0x45, 0x68, 0x04, 0x9e, 0xee, 0xf8, 0xfb, 0xae, 0xd7, 0xa5, 0x9e, - 0x5c, 0xa3, 0xae, 0xe5, 0xb8, 0x36, 0x7c, 0x27, 0x42, 0x13, 0x26, 0xd9, 0x44, 0x12, 0xc6, 0xa5, - 0x91, 0x43, 0xa8, 0xf5, 0x4d, 0x51, 0x30, 0x69, 0x06, 0x5b, 0xce, 0x73, 0x13, 0x7c, 0x2c, 0x48, - 0x44, 0xbd, 0x61, 0x28, 0x20, 0x79, 0x09, 0x6b, 0x75, 0x5c, 0x97, 0xb0, 0xc6, 0x5b, 0x63, 0xd6, - 0x81, 0x3a, 0xa4, 0x2b, 0xf5, 0x5a, 0xa7, 0x23, 0x63, 0xdc, 0xd6, 0x72, 0xab, 0x9c, 0x42, 0x64, - 0x23, 0xd4, 0x8d, 0x9d, 0x0e, 0x2a, 0x19, 0x5a, 0x17, 0xa4, 0xef, 0x88, 0x18, 0x89, 0x8b, 0xa7, - 0xc4, 0xce, 0xc8, 0xc5, 0xb3, 0x8d, 0x07, 0xe1, 0x0d, 0x48, 0xb1, 0x83, 0xef, 0x33, 0x6f, 0x98, - 0xd2, 0xfe, 0x7d, 0x11, 0x4a, 0x3b, 0x9b, 0x6d, 0x71, 0x98, 0x2d, 0xbf, 0xca, 0x8e, 0xb6, 0x0f, - 0xad, 0xde, 0x7d, 0xea, 0x59, 0xfb, 0xc7, 0x72, 0xe9, 0x1d, 0x3b, 0xcc, 0x36, 0xcd, 0x81, 0x19, - 0xb9, 0xc8, 0xbb, 0x30, 0x69, 0xe8, 0x2b, 0xd4, 0x0b, 0x46, 0x31, 0x2c, 0xf0, 0xed, 0xec, 0x2b, - 0xcb, 0x51, 0x76, 0x4c, 0x80, 0x91, 0x5d, 0x00, 0x23, 0x82, 0x2e, 0x9d, 0xdb, 0x1c, 0x12, 0x03, - 0x8e, 0x01, 0x11, 0x84, 0xfa, 0x21, 0x63, 0xe5, 0xa8, 0xe5, 0xf3, 0xa0, 0xf2, 0x96, 0x73, 0x47, - 0xe5, 0xc5, 0x08, 0x46, 0x73, 0x60, 0x2a, 0x71, 0x1b, 0x15, 0xf9, 0x32, 0xd4, 0xdc, 0x5e, 0x6c, - 0x38, 0xad, 0xf3, 0x68, 0xda, 0xda, 0x3d, 0x99, 0xf6, 0xe8, 0xa4, 0x39, 0xb5, 0xe9, 0x76, 0x2c, - 0x43, 0x25, 0x60, 0xc8, 0x4e, 0x34, 0x98, 0xe0, 0xfb, 0x36, 0xd5, 0x5d, 0x54, 0x7c, 0xee, 0xe0, - 0xd7, 0xc5, 0xf8, 0x28, 0x29, 0xda, 0x2f, 0x97, 0x21, 0xf2, 0xb8, 0x12, 0x1f, 0x26, 0xc4, 0x9e, - 0x11, 0x39, 0x72, 0x5f, 0xe8, 0xf6, 0x14, 0x29, 0x8a, 0x74, 0xa0, 0xf4, 0xbe, 0xbb, 0x97, 0x7b, - 0xe0, 0x8e, 0x1d, 0x3e, 0x21, 0x6c, 0x65, 0xb1, 0x04, 0x64, 0x12, 0xc8, 0x5f, 0x2d, 0xc0, 0xf3, - 0x7e, 0x5a, 0xf5, 0x95, 0xcd, 0x01, 0xf3, 0xeb, 0xf8, 0x69, 0x65, 0x5a, 0x86, 0x3d, 0x0f, 0x23, - 0xe3, 0x60, 0x59, 0x58, 0xfd, 0x0b, 0x57, 0xa8, 0x6c, 0x4e, 0xeb, 0x39, 0xef, 0xdc, 0x4d, 0xd6, - 0x7f, 0x32, 0x0d, 0xa5, 0x28, 0xed, 0xdb, 0x45, 0x68, 0xc4, 0x46, 0xeb, 0xdc, 0x57, 0x9c, 0x3d, - 0x4c, 0x5d, 0x71, 0xb6, 0x3d, 0x7a, 0x64, 0x40, 0x54, 0xaa, 0x8b, 0xbe, 0xe5, 0xec, 0x9f, 0x16, - 0xa1, 0xb4, 0xbb, 0xba, 0x96, 0x5c, 0xb4, 0x16, 0x9e, 0xc2, 0xa2, 0xf5, 0x00, 0xaa, 0x7b, 0x7d, - 0xcb, 0x0e, 0x2c, 0x27, 0xf7, 0xf1, 0x38, 0xea, 0x46, 0x38, 0xe9, 0xeb, 0x10, 0xa8, 0xa8, 0xe0, - 0x49, 0x07, 0xaa, 0x1d, 0x71, 0x3e, 0x69, 0xee, 0x78, 0x49, 0x79, 0xce, 0xa9, 0x10, 0x24, 0x5f, - 0x50, 0xa1, 0x6b, 0xc7, 0x30, 0xb1, 0xbb, 0x2a, 0xd5, 0xfe, 0xa7, 0x5b, 0x9b, 0xda, 0x2f, 0x42, - 0xa8, 0x05, 0x3c, 0x7d, 0xe1, 0xff, 0xad, 0x00, 0x49, 0xc5, 0xe7, 0xe9, 0xb7, 0xa6, 0xc3, 0x74, - 0x6b, 0x5a, 0x1d, 0x47, 0xe7, 0xcb, 0x6e, 0x50, 0xda, 0xbf, 0x29, 0x40, 0x6a, 0xa3, 0x1f, 0x79, - 0x4d, 0x1e, 0x75, 0x97, 0x0c, 0x4c, 0x53, 0x47, 0xdd, 0x91, 0x24, 0x77, 0xec, 0xc8, 0xbb, 0x0f, - 0xd9, 0x72, 0x2d, 0xee, 0x40, 0x93, 0xc5, 0xbf, 0x3b, 0xfa, 0x72, 0x2d, 0xcb, 0x1d, 0x27, 0x83, - 0x27, 0xe3, 0x24, 0x4c, 0xca, 0xd5, 0xfe, 0x41, 0x11, 0x26, 0x9e, 0xda, 0xd9, 0x06, 0x34, 0x11, - 0xcf, 0xba, 0x92, 0x73, 0xb4, 0x1f, 0x1a, 0xcd, 0xda, 0x4d, 0x45, 0xb3, 0xe6, 0xbd, 0xca, 0xfd, - 0x09, 0xb1, 0xac, 0xff, 0xaa, 0x00, 0x72, 0xae, 0xd9, 0x70, 0xfc, 0x40, 0x77, 0x0c, 0x4a, 0x8c, - 0x70, 0x62, 0xcb, 0x1b, 0x34, 0x25, 0x03, 0x0b, 0x85, 0x2e, 0xc3, 0x9f, 0xd5, 0x44, 0x46, 0x7e, - 0x12, 0x6a, 0x07, 0xae, 0x1f, 0xf0, 0xc9, 0xab, 0x98, 0x34, 0x99, 0xdd, 0x96, 0xe9, 0x18, 0x72, - 0xa4, 0xdd, 0xd9, 0x95, 0xe1, 0xee, 0x6c, 0xed, 0x37, 0x8b, 0x30, 0xf9, 0x49, 0x39, 0x3c, 0x21, - 0x2b, 0xfa, 0xb7, 0x94, 0x33, 0xfa, 0xb7, 0x7c, 0x9e, 0xe8, 0x5f, 0xed, 0x07, 0x05, 0x80, 0xa7, - 0x76, 0x72, 0x83, 0x99, 0x0c, 0xcc, 0xcd, 0xdd, 0xae, 0xb2, 0xc3, 0x72, 0xff, 0x6e, 0x45, 0x7d, - 0x12, 0x0f, 0xca, 0xfd, 0xb0, 0x00, 0xd3, 0x7a, 0x22, 0xd0, 0x35, 0xb7, 0xbe, 0x9c, 0x8a, 0x9b, - 0x0d, 0xe3, 0xb4, 0x92, 0xe9, 0x98, 0x12, 0x4b, 0x5e, 0x8f, 0x4e, 0x59, 0xbf, 0x1b, 0x35, 0xfb, - 0x81, 0xe3, 0xd1, 0xb9, 0xee, 0x96, 0xe0, 0x7c, 0x42, 0x60, 0x71, 0x69, 0x2c, 0x81, 0xc5, 0xf1, - 0x2d, 0x93, 0xe5, 0xc7, 0x6e, 0x99, 0x3c, 0x82, 0xfa, 0xbe, 0xe7, 0x76, 0x79, 0xec, 0xae, 0xbc, - 0xc7, 0xfc, 0x56, 0x8e, 0x89, 0xb2, 0xbb, 0x67, 0x39, 0xd4, 0xe4, 0x71, 0xc1, 0xa1, 0xe1, 0x6a, - 0x4d, 0xe1, 0x63, 0x24, 0x8a, 0xdb, 0xfa, 0x5d, 0x21, 0x75, 0x62, 0x9c, 0x52, 0xc3, 0xb1, 0x64, - 0x47, 0xa0, 0xa3, 0x12, 0x93, 0x8c, 0xd7, 0xad, 0x3e, 0x9d, 0x78, 0x5d, 0xed, 0xcf, 0x57, 0xd5, - 0x00, 0xf6, 0xcc, 0x1d, 0xe8, 0xfb, 0xe9, 0x46, 0xf7, 0x0e, 0x1d, 0xd8, 0x85, 0x5e, 0x7b, 0x8a, - 0xbb, 0xd0, 0xeb, 0xe3, 0xd9, 0x85, 0x0e, 0xf9, 0x76, 0xa1, 0x37, 0xc6, 0xb4, 0x0b, 0x7d, 0x72, - 0x5c, 0xbb, 0xd0, 0xa7, 0x46, 0xda, 0x85, 0x3e, 0x7d, 0xa6, 0x5d, 0xe8, 0x27, 0x25, 0x48, 0x2d, - 0xc6, 0x3f, 0x75, 0xbc, 0xfd, 0x48, 0x39, 0xde, 0xbe, 0x5b, 0x84, 0x68, 0x20, 0x3e, 0x67, 0x60, - 0xd2, 0x3b, 0x50, 0xeb, 0xea, 0x0f, 0x79, 0xe0, 0x74, 0x9e, 0x7b, 0xb0, 0xb7, 0x24, 0x06, 0x86, - 0x68, 0xc4, 0x07, 0xb0, 0xc2, 0xbb, 0x28, 0x72, 0xbb, 0x30, 0xa2, 0x6b, 0x2d, 0x84, 0x91, 0x34, - 0x7a, 0xc7, 0x98, 0x18, 0xed, 0x5f, 0x16, 0x41, 0x5e, 0x5a, 0x42, 0x28, 0x54, 0xf6, 0xad, 0x87, - 0xd4, 0xcc, 0x1d, 0xee, 0xbc, 0xc6, 0x50, 0xe4, 0xcd, 0x28, 0xdc, 0x47, 0xc3, 0x13, 0x50, 0xa0, - 0x73, 0xe3, 0xbb, 0xf0, 0xb9, 0xc9, 0xfa, 0xcb, 0x61, 0x7c, 0x8f, 0xfb, 0xee, 0xa4, 0xf1, 0x5d, - 0x24, 0xa1, 0x92, 0x21, 0x6c, 0xfd, 0x3c, 0xfc, 0x22, 0xb7, 0x8b, 0x31, 0x11, 0xc6, 0xa1, 0x6c, - 0xfd, 0xbe, 0x38, 0x86, 0x42, 0xca, 0x68, 0xfd, 0xc2, 0xf7, 0x7f, 0x78, 0xfd, 0xb9, 0x1f, 0xfc, - 0xf0, 0xfa, 0x73, 0x1f, 0xfd, 0xf0, 0xfa, 0x73, 0xbf, 0x7c, 0x7a, 0xbd, 0xf0, 0xfd, 0xd3, 0xeb, - 0x85, 0x1f, 0x9c, 0x5e, 0x2f, 0x7c, 0x74, 0x7a, 0xbd, 0xf0, 0x1f, 0x4f, 0xaf, 0x17, 0xfe, 0xd2, - 0x7f, 0xba, 0xfe, 0xdc, 0xcf, 0x7f, 0x29, 0x2a, 0xc2, 0xa2, 0x2a, 0xc2, 0xa2, 0x12, 0xb8, 0xd8, - 0x3b, 0xec, 0x2c, 0xb2, 0x22, 0x44, 0x29, 0xaa, 0x08, 0xff, 0x3f, 0x00, 0x00, 0xff, 0xff, 0xa1, - 0x3f, 0x0d, 0xca, 0x09, 0xa0, 0x00, 0x00, + // 8238 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6b, 0x6c, 0x24, 0x49, + 0x72, 0xde, 0xf6, 0xbb, 0x3b, 0x9a, 0xaf, 0xc9, 0x79, 0x71, 0x78, 0xb3, 0xd3, 0x73, 0x75, 0xba, + 0xbd, 0x91, 0x25, 0x91, 0x5e, 0xea, 0x76, 0x6f, 0x4f, 0xa7, 0xbb, 0x5d, 0x36, 0x39, 0xe4, 0x70, + 0x86, 0x9c, 0xe1, 0x45, 0x93, 0xb3, 0x7b, 0x5a, 0xeb, 0xd6, 0xc5, 0xae, 0x64, 0xb3, 0x96, 0xd5, + 0x55, 0x7d, 0x55, 0xd5, 0x9c, 0xe1, 0xca, 0xc2, 0x49, 0x77, 0x36, 0xf6, 0x0c, 0xdb, 0xb0, 0xa1, + 0x5f, 0x02, 0x0c, 0xd9, 0xb0, 0x61, 0x40, 0x3f, 0x04, 0xf9, 0x87, 0xe0, 0xf3, 0x0f, 0x03, 0x7e, + 0xc8, 0x30, 0xec, 0xf3, 0xfb, 0x60, 0x18, 0xf0, 0x1a, 0xb0, 0x09, 0x1f, 0x0d, 0xff, 0xb0, 0x01, + 0x1b, 0xb2, 0x05, 0xbf, 0x06, 0x82, 0x65, 0xe4, 0xab, 0x5e, 0x5d, 0x3d, 0x43, 0x76, 0x35, 0x67, + 0x67, 0xa5, 0xfd, 0x57, 0x95, 0x11, 0xf9, 0x45, 0x66, 0x56, 0x56, 0x66, 0x64, 0x44, 0x64, 0x26, + 0xac, 0x75, 0x4c, 0x7f, 0xbf, 0xbf, 0x3b, 0xdf, 0x76, 0xba, 0x0b, 0x76, 0xbf, 0xab, 0xf7, 0x5c, + 0xe7, 0x7d, 0xfe, 0xb0, 0x67, 0x39, 0x8f, 0x16, 0x7a, 0x07, 0x9d, 0x05, 0xbd, 0x67, 0x7a, 0x61, + 0xca, 0xe1, 0xab, 0xba, 0xd5, 0xdb, 0xd7, 0x5f, 0x5d, 0xe8, 0x50, 0x9b, 0xba, 0xba, 0x4f, 0x8d, + 0xf9, 0x9e, 0xeb, 0xf8, 0x0e, 0xf9, 0x52, 0x08, 0x34, 0xaf, 0x80, 0xe6, 0x55, 0xb6, 0xf9, 0xde, + 0x41, 0x67, 0x9e, 0x01, 0x85, 0x29, 0x0a, 0x68, 0xee, 0xa7, 0x22, 0x25, 0xe8, 0x38, 0x1d, 0x67, + 0x81, 0xe3, 0xed, 0xf6, 0xf7, 0xf8, 0x1b, 0x7f, 0xe1, 0x4f, 0x42, 0xce, 0x9c, 0x76, 0xf0, 0x86, + 0x37, 0x6f, 0x3a, 0xac, 0x58, 0x0b, 0x6d, 0xc7, 0xa5, 0x0b, 0x87, 0x03, 0x65, 0x99, 0xfb, 0x62, + 0xc8, 0xd3, 0xd5, 0xdb, 0xfb, 0xa6, 0x4d, 0xdd, 0x23, 0x55, 0x97, 0x05, 0x97, 0x7a, 0x4e, 0xdf, + 0x6d, 0xd3, 0x33, 0xe5, 0xf2, 0x16, 0xba, 0xd4, 0xd7, 0xd3, 0x64, 0x2d, 0x0c, 0xcb, 0xe5, 0xf6, + 0x6d, 0xdf, 0xec, 0x0e, 0x8a, 0x79, 0xfd, 0x59, 0x19, 0xbc, 0xf6, 0x3e, 0xed, 0xea, 0x03, 0xf9, + 0x7e, 0x7a, 0x58, 0xbe, 0xbe, 0x6f, 0x5a, 0x0b, 0xa6, 0xed, 0x7b, 0xbe, 0x9b, 0xcc, 0xa4, 0xfd, + 0x36, 0xc0, 0xc5, 0xa5, 0x5d, 0xcf, 0x77, 0xf5, 0xb6, 0xbf, 0xe5, 0x18, 0xdb, 0xb4, 0xdb, 0xb3, + 0x74, 0x9f, 0x92, 0x03, 0xa8, 0xb2, 0x0a, 0x19, 0xba, 0xaf, 0xcf, 0xe6, 0x6e, 0xe6, 0x6e, 0xd5, + 0x17, 0x97, 0xe6, 0x47, 0xfc, 0x80, 0xf3, 0x9b, 0x12, 0xa8, 0x39, 0x71, 0x72, 0xdc, 0xa8, 0xaa, + 0x37, 0x0c, 0x04, 0x90, 0x5f, 0xcd, 0xc1, 0x84, 0xed, 0x18, 0xb4, 0x45, 0x2d, 0xda, 0xf6, 0x1d, + 0x77, 0x36, 0x7f, 0xb3, 0x70, 0xab, 0xbe, 0xf8, 0xcd, 0x91, 0x25, 0xa6, 0xd4, 0x68, 0xfe, 0x7e, + 0x44, 0xc0, 0x6d, 0xdb, 0x77, 0x8f, 0x9a, 0x97, 0x7e, 0x70, 0xdc, 0x78, 0xe9, 0xe4, 0xb8, 0x31, + 0x11, 0x25, 0x61, 0xac, 0x24, 0x64, 0x07, 0xea, 0xbe, 0x63, 0xb1, 0x26, 0x33, 0x1d, 0xdb, 0x9b, + 0x2d, 0xf0, 0x82, 0xdd, 0x98, 0x17, 0x4d, 0xcd, 0xc4, 0xcf, 0xb3, 0x3e, 0x36, 0x7f, 0xf8, 0xea, + 0xfc, 0x76, 0xc0, 0xd6, 0xbc, 0x28, 0x81, 0xeb, 0x61, 0x9a, 0x87, 0x51, 0x1c, 0x42, 0x61, 0xda, + 0xa3, 0xed, 0xbe, 0x6b, 0xfa, 0x47, 0xcb, 0x8e, 0xed, 0xd3, 0xc7, 0xfe, 0x6c, 0x91, 0xb7, 0xf2, + 0x2b, 0x69, 0xd0, 0x5b, 0x8e, 0xd1, 0x8a, 0x73, 0x37, 0x2f, 0x9e, 0x1c, 0x37, 0xa6, 0x13, 0x89, + 0x98, 0xc4, 0x24, 0x36, 0xcc, 0x98, 0x5d, 0xbd, 0x43, 0xb7, 0xfa, 0x96, 0xd5, 0xa2, 0x6d, 0x97, + 0xfa, 0xde, 0x6c, 0x89, 0x57, 0xe1, 0x56, 0x9a, 0x9c, 0x0d, 0xa7, 0xad, 0x5b, 0x0f, 0x76, 0xdf, + 0xa7, 0x6d, 0x1f, 0xe9, 0x1e, 0x75, 0xa9, 0xdd, 0xa6, 0xcd, 0x59, 0x59, 0x99, 0x99, 0xf5, 0x04, + 0x12, 0x0e, 0x60, 0x93, 0x35, 0xb8, 0xd0, 0x73, 0x4d, 0x87, 0x17, 0xc1, 0xd2, 0x3d, 0xef, 0xbe, + 0xde, 0xa5, 0xb3, 0xe5, 0x9b, 0xb9, 0x5b, 0xb5, 0xe6, 0x35, 0x09, 0x73, 0x61, 0x2b, 0xc9, 0x80, + 0x83, 0x79, 0xc8, 0x2d, 0xa8, 0xaa, 0xc4, 0xd9, 0xca, 0xcd, 0xdc, 0xad, 0x92, 0xe8, 0x3b, 0x2a, + 0x2f, 0x06, 0x54, 0xb2, 0x0a, 0x55, 0x7d, 0x6f, 0xcf, 0xb4, 0x19, 0x67, 0x95, 0x37, 0xe1, 0xf5, + 0xb4, 0xaa, 0x2d, 0x49, 0x1e, 0x81, 0xa3, 0xde, 0x30, 0xc8, 0x4b, 0xee, 0x02, 0xf1, 0xa8, 0x7b, + 0x68, 0xb6, 0xe9, 0x52, 0xbb, 0xed, 0xf4, 0x6d, 0x9f, 0x97, 0xbd, 0xc6, 0xcb, 0x3e, 0x27, 0xcb, + 0x4e, 0x5a, 0x03, 0x1c, 0x98, 0x92, 0x8b, 0xbc, 0x05, 0x33, 0xf2, 0x5f, 0x0d, 0x5b, 0x01, 0x38, + 0xd2, 0x25, 0xd6, 0x90, 0x98, 0xa0, 0xe1, 0x00, 0x37, 0x31, 0xe0, 0xba, 0xde, 0xf7, 0x9d, 0x2e, + 0x83, 0x8c, 0x0b, 0xdd, 0x76, 0x0e, 0xa8, 0x3d, 0x5b, 0xbf, 0x99, 0xbb, 0x55, 0x6d, 0xde, 0x3c, + 0x39, 0x6e, 0x5c, 0x5f, 0x7a, 0x0a, 0x1f, 0x3e, 0x15, 0x85, 0x3c, 0x80, 0x9a, 0x61, 0x7b, 0x5b, + 0x8e, 0x65, 0xb6, 0x8f, 0x66, 0x27, 0x78, 0x01, 0x5f, 0x95, 0x55, 0xad, 0xad, 0xdc, 0x6f, 0x09, + 0xc2, 0x93, 0xe3, 0xc6, 0xf5, 0xc1, 0x21, 0x75, 0x3e, 0xa0, 0x63, 0x88, 0x41, 0x36, 0x39, 0xe0, + 0xb2, 0x63, 0xef, 0x99, 0x9d, 0xd9, 0x49, 0xfe, 0x35, 0x6e, 0x0e, 0xe9, 0xd0, 0x2b, 0xf7, 0x5b, + 0x82, 0xaf, 0x39, 0x29, 0xc5, 0x89, 0x57, 0x0c, 0x11, 0x88, 0x01, 0x53, 0x6a, 0x30, 0x5e, 0xb6, + 0x74, 0xb3, 0xeb, 0xcd, 0x4e, 0xf1, 0xce, 0xfb, 0x63, 0x43, 0x30, 0x31, 0xca, 0xdc, 0xbc, 0x22, + 0xab, 0x32, 0x15, 0x4b, 0xf6, 0x30, 0x81, 0x39, 0xf7, 0x26, 0x5c, 0x18, 0x18, 0x1b, 0xc8, 0x0c, + 0x14, 0x0e, 0xe8, 0x11, 0x1f, 0xfa, 0x6a, 0xc8, 0x1e, 0xc9, 0x25, 0x28, 0x1d, 0xea, 0x56, 0x9f, + 0xce, 0xe6, 0x79, 0x9a, 0x78, 0xf9, 0x99, 0xfc, 0x1b, 0x39, 0xed, 0xaf, 0x16, 0x60, 0x42, 0x8d, + 0x38, 0x2d, 0xd3, 0x3e, 0x20, 0x6f, 0x43, 0xc1, 0x72, 0x3a, 0x72, 0xdc, 0xfc, 0xd9, 0x91, 0x47, + 0xb1, 0x0d, 0xa7, 0xd3, 0xac, 0x9c, 0x1c, 0x37, 0x0a, 0x1b, 0x4e, 0x07, 0x19, 0x22, 0x69, 0x43, + 0xe9, 0x40, 0xdf, 0x3b, 0xd0, 0x79, 0x19, 0xea, 0x8b, 0xcd, 0x91, 0xa1, 0xef, 0x31, 0x14, 0x56, + 0xd6, 0x66, 0xed, 0xe4, 0xb8, 0x51, 0xe2, 0xaf, 0x28, 0xb0, 0x89, 0x03, 0xb5, 0x5d, 0x4b, 0x6f, + 0x1f, 0xec, 0x3b, 0x16, 0x9d, 0x2d, 0x64, 0x14, 0xd4, 0x54, 0x48, 0xe2, 0x33, 0x07, 0xaf, 0x18, + 0xca, 0x20, 0x6d, 0x28, 0xf7, 0x0d, 0xcf, 0xb4, 0x0f, 0xe4, 0x18, 0xf8, 0xe6, 0xc8, 0xd2, 0x76, + 0x56, 0x78, 0x9d, 0xe0, 0xe4, 0xb8, 0x51, 0x16, 0xcf, 0x28, 0xa1, 0xb5, 0xff, 0x33, 0x01, 0x53, + 0xea, 0x23, 0x3d, 0xa4, 0xae, 0x4f, 0x1f, 0x93, 0x9b, 0x50, 0xb4, 0xd9, 0xaf, 0xc9, 0x3f, 0x72, + 0x73, 0x42, 0x76, 0x97, 0x22, 0xff, 0x25, 0x39, 0x85, 0x95, 0x4c, 0x74, 0x15, 0xd9, 0xe0, 0xa3, + 0x97, 0xac, 0xc5, 0x61, 0x44, 0xc9, 0xc4, 0x33, 0x4a, 0x68, 0xf2, 0x2e, 0x14, 0x79, 0xe5, 0x45, + 0x53, 0x7f, 0x75, 0x74, 0x11, 0xac, 0xea, 0x55, 0x56, 0x03, 0x5e, 0x71, 0x0e, 0xca, 0xba, 0x62, + 0xdf, 0xd8, 0x93, 0x0d, 0xfb, 0xb3, 0x19, 0x1a, 0x76, 0x55, 0x74, 0xc5, 0x9d, 0x95, 0x55, 0x64, + 0x88, 0xe4, 0xcf, 0xe7, 0xe0, 0x42, 0xdb, 0xb1, 0x7d, 0x9d, 0xe9, 0x19, 0x6a, 0x92, 0x9d, 0x2d, + 0x71, 0x39, 0x77, 0x47, 0x96, 0xb3, 0x9c, 0x44, 0x6c, 0x5e, 0x66, 0x73, 0xc6, 0x40, 0x32, 0x0e, + 0xca, 0x26, 0x7f, 0x31, 0x07, 0x97, 0xd9, 0x58, 0x3e, 0xc0, 0xcc, 0x67, 0xa0, 0xf1, 0x96, 0xea, + 0xda, 0xc9, 0x71, 0xe3, 0xf2, 0x7a, 0x9a, 0x30, 0x4c, 0x2f, 0x03, 0x2b, 0xdd, 0x45, 0x7d, 0x50, + 0x2d, 0xe1, 0xb3, 0x5b, 0x7d, 0x71, 0x63, 0x9c, 0xaa, 0x4e, 0xf3, 0x33, 0xb2, 0x2b, 0xa7, 0x69, + 0x76, 0x98, 0x56, 0x0a, 0x72, 0x1b, 0x2a, 0x87, 0x8e, 0xd5, 0xef, 0x52, 0x6f, 0xb6, 0xca, 0x87, + 0xd8, 0xb9, 0xb4, 0x21, 0xf6, 0x21, 0x67, 0x69, 0x4e, 0x4b, 0xf8, 0x8a, 0x78, 0xf7, 0x50, 0xe5, + 0x25, 0x26, 0x94, 0x2d, 0xb3, 0x6b, 0xfa, 0x1e, 0x9f, 0x38, 0xeb, 0x8b, 0xb7, 0x47, 0xae, 0x96, + 0xf8, 0x45, 0x37, 0x38, 0x98, 0xf8, 0x6b, 0xc4, 0x33, 0x4a, 0x01, 0x6c, 0x28, 0xf4, 0xda, 0xba, + 0x25, 0x26, 0xd6, 0xfa, 0xe2, 0xd7, 0x46, 0xff, 0x6d, 0x18, 0x4a, 0x73, 0x52, 0xd6, 0xa9, 0xc4, + 0x5f, 0x51, 0x60, 0x93, 0x9f, 0x87, 0xa9, 0xd8, 0xd7, 0xf4, 0x66, 0xeb, 0xbc, 0x75, 0x5e, 0x4e, + 0x6b, 0x9d, 0x80, 0x2b, 0x9c, 0x79, 0x62, 0x3d, 0xc4, 0xc3, 0x04, 0x18, 0xb9, 0x07, 0x55, 0xcf, + 0x34, 0x68, 0x5b, 0x77, 0xbd, 0xd9, 0x89, 0xd3, 0x00, 0xcf, 0x48, 0xe0, 0x6a, 0x4b, 0x66, 0xc3, + 0x00, 0x80, 0xcc, 0x03, 0xf4, 0x74, 0xd7, 0x37, 0x85, 0xa2, 0x3a, 0xc9, 0x95, 0xa6, 0xa9, 0x93, + 0xe3, 0x06, 0x6c, 0x05, 0xa9, 0x18, 0xe1, 0x60, 0xfc, 0x2c, 0xef, 0xba, 0xdd, 0xeb, 0xfb, 0x62, + 0x62, 0xad, 0x09, 0xfe, 0x56, 0x90, 0x8a, 0x11, 0x0e, 0xf2, 0x9b, 0x39, 0xf8, 0x4c, 0xf8, 0x3a, + 0xf8, 0x93, 0x4d, 0x8f, 0xfd, 0x27, 0x6b, 0x9c, 0x1c, 0x37, 0x3e, 0xd3, 0x1a, 0x2e, 0x12, 0x9f, + 0x56, 0x1e, 0xf2, 0x61, 0x0e, 0xa6, 0xfa, 0x3d, 0x43, 0xf7, 0x69, 0xcb, 0x67, 0x2b, 0x9e, 0xce, + 0xd1, 0xec, 0x0c, 0x2f, 0xe2, 0xda, 0xe8, 0xa3, 0x60, 0x0c, 0x2e, 0xfc, 0xcc, 0xf1, 0x74, 0x4c, + 0x88, 0xd5, 0xde, 0x86, 0xc9, 0xa5, 0xbe, 0xbf, 0xef, 0xb8, 0xe6, 0x07, 0x5c, 0xfd, 0x27, 0xab, + 0x50, 0xf2, 0xb9, 0x1a, 0x27, 0x34, 0x84, 0xcf, 0xa7, 0x7d, 0x74, 0xa1, 0x52, 0xdf, 0xa3, 0x47, + 0x4a, 0x2f, 0x11, 0x33, 0xb5, 0x50, 0xeb, 0x44, 0x76, 0xed, 0x4f, 0xe6, 0xa0, 0xd2, 0xd4, 0xdb, + 0x07, 0xce, 0xde, 0x1e, 0x79, 0x07, 0xaa, 0xa6, 0xed, 0x53, 0xf7, 0x50, 0xb7, 0x24, 0xec, 0x7c, + 0x04, 0x36, 0x58, 0x10, 0x86, 0xd5, 0x63, 0xab, 0x2f, 0x26, 0x68, 0xa5, 0x2f, 0x57, 0x2d, 0x5c, + 0x33, 0x5e, 0x97, 0x18, 0x18, 0xa0, 0x91, 0x06, 0x94, 0x3c, 0x9f, 0xf6, 0x3c, 0x3e, 0x07, 0x4e, + 0x8a, 0x62, 0xb4, 0x58, 0x02, 0x8a, 0x74, 0xed, 0xaf, 0xe4, 0xa0, 0xd6, 0xd4, 0x3d, 0xb3, 0xcd, + 0x6a, 0x49, 0x96, 0xa1, 0xd8, 0xf7, 0xa8, 0x7b, 0xb6, 0xba, 0xf1, 0x69, 0x6b, 0xc7, 0xa3, 0x2e, + 0xf2, 0xcc, 0xe4, 0x01, 0x54, 0x7b, 0xba, 0xe7, 0x3d, 0x72, 0x5c, 0x43, 0x4e, 0xbd, 0xa7, 0x04, + 0x12, 0xcb, 0x04, 0x99, 0x15, 0x03, 0x10, 0xad, 0x0e, 0xa1, 0xee, 0xa1, 0xfd, 0x6e, 0x0e, 0x2e, + 0x36, 0xfb, 0x7b, 0x7b, 0xd4, 0x95, 0x5a, 0xb1, 0xd4, 0x37, 0x29, 0x94, 0x5c, 0x6a, 0x98, 0x9e, + 0x2c, 0xfb, 0xca, 0xc8, 0x1d, 0x05, 0x19, 0x8a, 0x54, 0x6f, 0x79, 0x7b, 0xf1, 0x04, 0x14, 0xe8, + 0xa4, 0x0f, 0xb5, 0xf7, 0x29, 0x5b, 0x8d, 0x53, 0xbd, 0x2b, 0x6b, 0x77, 0x67, 0x64, 0x51, 0x77, + 0xa9, 0xdf, 0xe2, 0x48, 0x51, 0x6d, 0x3a, 0x48, 0xc4, 0x50, 0x92, 0xf6, 0xdb, 0x25, 0x98, 0x58, + 0x76, 0xba, 0xbb, 0xa6, 0x4d, 0x8d, 0xdb, 0x46, 0x87, 0x92, 0xf7, 0xa0, 0x48, 0x8d, 0x0e, 0x95, + 0xb5, 0x1d, 0x5d, 0xf1, 0x60, 0x60, 0xa1, 0xfa, 0xc4, 0xde, 0x90, 0x03, 0x93, 0x0d, 0x98, 0xda, + 0x73, 0x9d, 0xae, 0x18, 0xcb, 0xb7, 0x8f, 0x7a, 0x52, 0x77, 0x6e, 0xfe, 0x98, 0xfa, 0x71, 0x56, + 0x63, 0xd4, 0x27, 0xc7, 0x0d, 0x08, 0xdf, 0x30, 0x91, 0x97, 0xbc, 0x03, 0xb3, 0x61, 0x4a, 0x30, + 0xa8, 0x2d, 0xb3, 0xe5, 0x0c, 0xd7, 0x9d, 0x4a, 0xcd, 0xeb, 0x27, 0xc7, 0x8d, 0xd9, 0xd5, 0x21, + 0x3c, 0x38, 0x34, 0x37, 0x1b, 0x2a, 0x66, 0x42, 0xa2, 0x98, 0x68, 0xa4, 0xca, 0x34, 0xa6, 0x19, + 0x8c, 0xaf, 0xfb, 0x56, 0x13, 0x22, 0x70, 0x40, 0x28, 0x59, 0x85, 0x09, 0xdf, 0x89, 0xb4, 0x57, + 0x89, 0xb7, 0x97, 0xa6, 0x0c, 0x15, 0xdb, 0xce, 0xd0, 0xd6, 0x8a, 0xe5, 0x23, 0x08, 0x57, 0xd4, + 0x7b, 0xa2, 0xa5, 0xca, 0xbc, 0xa5, 0xe6, 0x4e, 0x8e, 0x1b, 0x57, 0xb6, 0x53, 0x39, 0x70, 0x48, + 0x4e, 0xf2, 0xcb, 0x39, 0x98, 0x52, 0x24, 0xd9, 0x46, 0x95, 0x71, 0xb6, 0x11, 0x61, 0x3d, 0x62, + 0x3b, 0x26, 0x00, 0x13, 0x02, 0xb5, 0xef, 0x57, 0xa0, 0x16, 0x0c, 0xf5, 0xe4, 0x73, 0x50, 0xe2, + 0x26, 0x08, 0xa9, 0xc1, 0x07, 0x73, 0x38, 0xb7, 0x54, 0xa0, 0xa0, 0x91, 0xcf, 0x43, 0xa5, 0xed, + 0x74, 0xbb, 0xba, 0x6d, 0x70, 0xb3, 0x52, 0xad, 0x59, 0x67, 0xaa, 0xcb, 0xb2, 0x48, 0x42, 0x45, + 0x23, 0xd7, 0xa1, 0xa8, 0xbb, 0x1d, 0x61, 0xe1, 0xa9, 0x89, 0xf1, 0x68, 0xc9, 0xed, 0x78, 0xc8, + 0x53, 0xc9, 0x97, 0xa1, 0x40, 0xed, 0xc3, 0xd9, 0xe2, 0x70, 0xdd, 0xe8, 0xb6, 0x7d, 0xf8, 0x50, + 0x77, 0x9b, 0x75, 0x59, 0x86, 0xc2, 0x6d, 0xfb, 0x10, 0x59, 0x1e, 0xb2, 0x01, 0x15, 0x6a, 0x1f, + 0xb2, 0x6f, 0x2f, 0x4d, 0x2f, 0x9f, 0x1d, 0x92, 0x9d, 0xb1, 0xc8, 0x65, 0x42, 0xa0, 0x61, 0xc9, + 0x64, 0x54, 0x10, 0xe4, 0x1b, 0x30, 0x21, 0x94, 0xad, 0x4d, 0xf6, 0x4d, 0xbc, 0xd9, 0x32, 0x87, + 0x6c, 0x0c, 0xd7, 0xd6, 0x38, 0x5f, 0x68, 0xea, 0x8a, 0x24, 0x7a, 0x18, 0x83, 0x22, 0xdf, 0x80, + 0x9a, 0x5a, 0x19, 0xab, 0x2f, 0x9b, 0x6a, 0x25, 0x52, 0xcb, 0x69, 0xa4, 0xdf, 0xea, 0x9b, 0x2e, + 0xed, 0x52, 0xdb, 0xf7, 0x9a, 0x17, 0x94, 0xdd, 0x40, 0x51, 0x3d, 0x0c, 0xd1, 0xc8, 0xee, 0xa0, + 0xb9, 0x4b, 0xd8, 0x6a, 0x3e, 0x37, 0x64, 0x54, 0x1f, 0xc1, 0xd6, 0xf5, 0x4d, 0x98, 0x0e, 0xec, + 0x51, 0xd2, 0xa4, 0x21, 0xac, 0x37, 0x5f, 0x64, 0xd9, 0xd7, 0xe3, 0xa4, 0x27, 0xc7, 0x8d, 0x97, + 0x53, 0x8c, 0x1a, 0x21, 0x03, 0x26, 0xc1, 0xc8, 0x07, 0x30, 0xe5, 0x52, 0xdd, 0x30, 0x6d, 0xea, + 0x79, 0x5b, 0xae, 0xb3, 0x9b, 0x5d, 0xf3, 0xe4, 0x28, 0xa2, 0xdb, 0x63, 0x0c, 0x19, 0x13, 0x92, + 0xc8, 0x23, 0x98, 0xb4, 0xcc, 0x43, 0x1a, 0x8a, 0xae, 0x8f, 0x45, 0xf4, 0x85, 0x93, 0xe3, 0xc6, + 0xe4, 0x46, 0x14, 0x18, 0xe3, 0x72, 0x98, 0xa6, 0xd2, 0x73, 0x5c, 0x5f, 0xa9, 0xa7, 0x9f, 0x7d, + 0xaa, 0x7a, 0xba, 0xe5, 0xb8, 0x7e, 0xf8, 0x13, 0xb2, 0x37, 0x0f, 0x45, 0x76, 0xed, 0x6f, 0x94, + 0x60, 0x70, 0x11, 0x17, 0xef, 0x71, 0xb9, 0x71, 0xf7, 0xb8, 0x64, 0x6f, 0x10, 0x73, 0xcf, 0x1b, + 0x32, 0xdb, 0x18, 0x7a, 0x44, 0x4a, 0xaf, 0x2e, 0x8c, 0xbb, 0x57, 0xbf, 0x30, 0x03, 0xcf, 0x60, + 0xf7, 0x2f, 0x7f, 0x7c, 0xdd, 0xbf, 0xf2, 0x7c, 0xba, 0xbf, 0xf6, 0xbd, 0x22, 0x4c, 0xad, 0xe8, + 0xb4, 0xeb, 0xd8, 0xcf, 0x5c, 0xc7, 0xe7, 0x5e, 0x88, 0x75, 0xfc, 0x2d, 0xa8, 0xba, 0xb4, 0x67, + 0x99, 0x6d, 0x5d, 0xa8, 0xeb, 0xd2, 0x6e, 0x8e, 0x32, 0x0d, 0x03, 0xea, 0x10, 0xfb, 0x4d, 0xe1, + 0x85, 0xb4, 0xdf, 0x14, 0x3f, 0x7e, 0xfb, 0x8d, 0xf6, 0xcb, 0x79, 0xe0, 0xaa, 0x2d, 0xb9, 0x09, + 0x45, 0xa6, 0xb6, 0x25, 0xad, 0x86, 0xfc, 0x6f, 0xe1, 0x14, 0x32, 0x07, 0x79, 0xdf, 0x91, 0xc3, + 0x0d, 0x48, 0x7a, 0x7e, 0xdb, 0xc1, 0xbc, 0xef, 0x90, 0x0f, 0x00, 0xda, 0x8e, 0x6d, 0x98, 0xca, + 0x9d, 0x94, 0xad, 0x62, 0xab, 0x8e, 0xfb, 0x48, 0x77, 0x8d, 0xe5, 0x00, 0x51, 0xac, 0xe0, 0xc3, + 0x77, 0x8c, 0x48, 0x23, 0x6f, 0x42, 0xd9, 0xb1, 0x57, 0xfb, 0x96, 0xc5, 0x1b, 0xb4, 0xd6, 0xfc, + 0xc2, 0xc9, 0x71, 0xa3, 0xfc, 0x80, 0xa7, 0x3c, 0x39, 0x6e, 0x5c, 0x13, 0x2b, 0x22, 0xf6, 0xf6, + 0xb6, 0x6b, 0xfa, 0xa6, 0xdd, 0x09, 0x16, 0xb4, 0x32, 0x9b, 0xf6, 0x2b, 0x39, 0xa8, 0xaf, 0x9a, + 0x8f, 0xa9, 0xf1, 0xb6, 0x69, 0x1b, 0xce, 0x23, 0x82, 0x50, 0xb6, 0xa8, 0xdd, 0xf1, 0xf7, 0x47, + 0x5c, 0x71, 0x0a, 0xbb, 0x0e, 0x47, 0x40, 0x89, 0x44, 0x16, 0xa0, 0x26, 0xd6, 0x2b, 0xa6, 0xdd, + 0xe1, 0x6d, 0x58, 0x0d, 0x47, 0xfa, 0x96, 0x22, 0x60, 0xc8, 0xa3, 0x1d, 0xc1, 0x85, 0x81, 0x66, + 0x20, 0x06, 0x14, 0x7d, 0xbd, 0xa3, 0x26, 0x95, 0xd5, 0x91, 0x1b, 0x78, 0x5b, 0xef, 0x44, 0x1a, + 0x97, 0x6b, 0x85, 0xdb, 0x3a, 0xd3, 0x0a, 0x19, 0xba, 0xf6, 0x7b, 0x39, 0xa8, 0xae, 0xf6, 0xed, + 0x36, 0x5f, 0xd4, 0x3f, 0xdb, 0x9a, 0xac, 0x54, 0xcc, 0x7c, 0xaa, 0x8a, 0xd9, 0x87, 0xf2, 0xc1, + 0xa3, 0x40, 0x05, 0xad, 0x2f, 0x6e, 0x8e, 0xde, 0x2b, 0x64, 0x91, 0xe6, 0xef, 0x71, 0x3c, 0xe1, + 0xec, 0x9c, 0x92, 0x05, 0x2a, 0xdf, 0x7b, 0x9b, 0x0b, 0x95, 0xc2, 0xe6, 0xbe, 0x0c, 0xf5, 0x08, + 0xdb, 0x99, 0xfc, 0x1e, 0x7f, 0xb3, 0x08, 0xe5, 0xb5, 0x56, 0x6b, 0x69, 0x6b, 0x9d, 0xbc, 0x06, + 0x75, 0xe9, 0x07, 0xbb, 0x1f, 0xb6, 0x41, 0xe0, 0x06, 0x6d, 0x85, 0x24, 0x8c, 0xf2, 0x31, 0x05, + 0xde, 0xa5, 0xba, 0xd5, 0x95, 0x3f, 0x4b, 0xa0, 0x3b, 0x20, 0x4b, 0x44, 0x41, 0x23, 0x3a, 0x4c, + 0xf5, 0x3d, 0xea, 0xb2, 0x26, 0x14, 0xeb, 0x7d, 0xf9, 0xdb, 0x9c, 0xd2, 0x22, 0xc0, 0x27, 0x98, + 0x9d, 0x18, 0x00, 0x26, 0x00, 0xc9, 0x1b, 0x50, 0xd5, 0xfb, 0xfe, 0x3e, 0x5f, 0x72, 0x89, 0x7f, + 0xe3, 0x3a, 0x77, 0x13, 0xca, 0xb4, 0x27, 0xc7, 0x8d, 0x89, 0x7b, 0xd8, 0x7c, 0x4d, 0xbd, 0x63, + 0xc0, 0xcd, 0x0a, 0xa7, 0x6c, 0x0c, 0xb2, 0x70, 0xa5, 0x33, 0x17, 0x6e, 0x2b, 0x06, 0x80, 0x09, + 0x40, 0xf2, 0x2e, 0x4c, 0x1c, 0xd0, 0x23, 0x5f, 0xdf, 0x95, 0x02, 0xca, 0x67, 0x11, 0x30, 0xc3, + 0x94, 0xfe, 0x7b, 0x91, 0xec, 0x18, 0x03, 0x23, 0x1e, 0x5c, 0x3a, 0xa0, 0xee, 0x2e, 0x75, 0x1d, + 0x69, 0xaf, 0x90, 0x42, 0x2a, 0x67, 0x11, 0x32, 0x7b, 0x72, 0xdc, 0xb8, 0x74, 0x2f, 0x05, 0x06, + 0x53, 0xc1, 0xb5, 0xff, 0x9b, 0x87, 0xe9, 0x35, 0x11, 0x88, 0xe0, 0xb8, 0x42, 0xf3, 0x20, 0xd7, + 0xa0, 0xe0, 0xf6, 0xfa, 0xbc, 0xe7, 0x14, 0x84, 0xab, 0x01, 0xb7, 0x76, 0x90, 0xa5, 0x91, 0x77, + 0xa0, 0x6a, 0xc8, 0x21, 0x43, 0x9a, 0x4b, 0x46, 0x32, 0x6d, 0xa9, 0x37, 0x0c, 0xd0, 0xd8, 0xda, + 0xb0, 0xeb, 0x75, 0x5a, 0xe6, 0x07, 0x54, 0x5a, 0x10, 0xf8, 0xda, 0x70, 0x53, 0x24, 0xa1, 0xa2, + 0xb1, 0x59, 0xf5, 0x80, 0x1e, 0x89, 0xf5, 0x73, 0x31, 0x9c, 0x55, 0xef, 0xc9, 0x34, 0x0c, 0xa8, + 0xa4, 0xa1, 0x7e, 0x16, 0xd6, 0x0b, 0x8a, 0xc2, 0xf6, 0xf3, 0x90, 0x25, 0xc8, 0xff, 0x86, 0x0d, + 0x99, 0xef, 0x9b, 0xbe, 0x4f, 0x5d, 0xf9, 0x19, 0x47, 0x1a, 0x32, 0xef, 0x72, 0x04, 0x94, 0x48, + 0xe4, 0x27, 0xa0, 0xc6, 0xc1, 0x9b, 0x96, 0xb3, 0xcb, 0x3f, 0x5c, 0x4d, 0x58, 0x81, 0x1e, 0xaa, + 0x44, 0x0c, 0xe9, 0xda, 0xef, 0xe7, 0xe1, 0xca, 0x1a, 0xf5, 0x85, 0x56, 0xb3, 0x42, 0x7b, 0x96, + 0x73, 0xc4, 0xf4, 0x69, 0xa4, 0xdf, 0x22, 0x6f, 0x01, 0x98, 0xde, 0x6e, 0xeb, 0xb0, 0xcd, 0xff, + 0x03, 0xf1, 0x0f, 0xdf, 0x94, 0xbf, 0x24, 0xac, 0xb7, 0x9a, 0x92, 0xf2, 0x24, 0xf6, 0x86, 0x91, + 0x3c, 0xe1, 0x82, 0x3c, 0xff, 0x94, 0x05, 0x79, 0x0b, 0xa0, 0x17, 0x6a, 0xe5, 0x05, 0xce, 0xf9, + 0xd3, 0x4a, 0xcc, 0x59, 0x14, 0xf2, 0x08, 0x4c, 0x16, 0x3d, 0xd9, 0x86, 0x19, 0x83, 0xee, 0xe9, + 0x7d, 0xcb, 0x0f, 0x56, 0x12, 0xf2, 0x27, 0x3e, 0xfd, 0x62, 0x24, 0x08, 0x92, 0x58, 0x49, 0x20, + 0xe1, 0x00, 0xb6, 0xf6, 0xb7, 0x0a, 0x30, 0xb7, 0x46, 0xfd, 0xc0, 0x46, 0x27, 0x47, 0xc7, 0x56, + 0x8f, 0xb6, 0xd9, 0x57, 0xf8, 0x30, 0x07, 0x65, 0x4b, 0xdf, 0xa5, 0x16, 0x9b, 0xbd, 0x58, 0x6d, + 0xde, 0x1b, 0x79, 0x22, 0x18, 0x2e, 0x65, 0x7e, 0x83, 0x4b, 0x48, 0x4c, 0x0d, 0x22, 0x11, 0xa5, + 0x78, 0x36, 0xa8, 0xb7, 0xad, 0xbe, 0xe7, 0x8b, 0x95, 0x9d, 0xd4, 0x27, 0x83, 0x41, 0x7d, 0x39, + 0x24, 0x61, 0x94, 0x8f, 0x2c, 0x02, 0xb4, 0x2d, 0x93, 0xda, 0x3e, 0xcf, 0x25, 0xfe, 0x2b, 0xa2, + 0xbe, 0xef, 0x72, 0x40, 0xc1, 0x08, 0x17, 0x13, 0xd5, 0x75, 0x6c, 0xd3, 0x77, 0x84, 0xa8, 0x62, + 0x5c, 0xd4, 0x66, 0x48, 0xc2, 0x28, 0x1f, 0xcf, 0x46, 0x7d, 0xd7, 0x6c, 0x7b, 0x3c, 0x5b, 0x29, + 0x91, 0x2d, 0x24, 0x61, 0x94, 0x8f, 0xcd, 0x79, 0x91, 0xfa, 0x9f, 0x69, 0xce, 0xfb, 0x8d, 0x1a, + 0xdc, 0x88, 0x35, 0xab, 0xaf, 0xfb, 0x74, 0xaf, 0x6f, 0xb5, 0xa8, 0xaf, 0x3e, 0xe0, 0x88, 0x73, + 0xe1, 0x9f, 0x09, 0xbf, 0xbb, 0x08, 0x7f, 0x6a, 0x8f, 0xe7, 0xbb, 0x0f, 0x14, 0xf0, 0x54, 0xdf, + 0x7e, 0x01, 0x6a, 0xb6, 0xee, 0x7b, 0xfc, 0xc7, 0x95, 0xff, 0x68, 0xa0, 0x86, 0xdd, 0x57, 0x04, + 0x0c, 0x79, 0xc8, 0x16, 0x5c, 0x92, 0x4d, 0x7c, 0xfb, 0x31, 0x5b, 0xf3, 0x53, 0x57, 0xe4, 0x95, + 0xd3, 0xa9, 0xcc, 0x7b, 0x69, 0x33, 0x85, 0x07, 0x53, 0x73, 0x92, 0x4d, 0xb8, 0xd8, 0x16, 0x21, + 0x21, 0xd4, 0x72, 0x74, 0x43, 0x01, 0x0a, 0x93, 0x68, 0xb0, 0x34, 0x5a, 0x1e, 0x64, 0xc1, 0xb4, + 0x7c, 0xc9, 0xde, 0x5c, 0x1e, 0xa9, 0x37, 0x57, 0x46, 0xe9, 0xcd, 0xd5, 0xd1, 0x7a, 0x73, 0xed, + 0x74, 0xbd, 0x99, 0xb5, 0x3c, 0xeb, 0x47, 0xd4, 0x65, 0xea, 0x89, 0x98, 0x61, 0x23, 0x11, 0x47, + 0x41, 0xcb, 0xb7, 0x52, 0x78, 0x30, 0x35, 0x27, 0xd9, 0x85, 0x39, 0x91, 0x7e, 0xdb, 0x6e, 0xbb, + 0x47, 0x3d, 0x36, 0xf1, 0x44, 0x70, 0xeb, 0x31, 0x9b, 0xf4, 0x5c, 0x6b, 0x28, 0x27, 0x3e, 0x05, + 0x85, 0x7c, 0x05, 0x26, 0xc5, 0x57, 0xda, 0xd4, 0x7b, 0x1c, 0x56, 0xc4, 0x1f, 0x5d, 0x96, 0xb0, + 0x93, 0xcb, 0x51, 0x22, 0xc6, 0x79, 0xc9, 0x12, 0x4c, 0xf7, 0x0e, 0xdb, 0xec, 0x71, 0x7d, 0xef, + 0x3e, 0xa5, 0x06, 0x35, 0xb8, 0xc3, 0xb3, 0xd6, 0xbc, 0xaa, 0xac, 0x3b, 0x5b, 0x71, 0x32, 0x26, + 0xf9, 0xc9, 0x1b, 0x30, 0xe1, 0xf9, 0xba, 0xeb, 0x4b, 0x43, 0xf0, 0xec, 0x94, 0x88, 0xcf, 0x52, + 0x76, 0xd2, 0x56, 0x84, 0x86, 0x31, 0xce, 0xd4, 0xf9, 0x62, 0xfa, 0xfc, 0xe6, 0x8b, 0x2c, 0xa3, + 0xd5, 0x3f, 0xca, 0xc3, 0xcd, 0x35, 0xea, 0x6f, 0x3a, 0xb6, 0x34, 0xa3, 0xa7, 0x4d, 0xfb, 0xa7, + 0xb2, 0xa2, 0xc7, 0x27, 0xed, 0xfc, 0x58, 0x27, 0xed, 0xc2, 0x98, 0x26, 0xed, 0xe2, 0x39, 0x4e, + 0xda, 0x7f, 0x27, 0x0f, 0x57, 0x63, 0x2d, 0xb9, 0xe5, 0x18, 0x6a, 0xc0, 0xff, 0xb4, 0x01, 0x4f, + 0xd1, 0x80, 0x4f, 0x84, 0xde, 0xc9, 0x1d, 0xa1, 0x09, 0x8d, 0xe7, 0xbb, 0x49, 0x8d, 0xe7, 0xdd, + 0x2c, 0x33, 0x5f, 0x8a, 0x84, 0x53, 0xcd, 0x78, 0x77, 0x81, 0xb8, 0xd2, 0x6d, 0x1b, 0x9a, 0xb3, + 0xa5, 0xd2, 0x13, 0x04, 0x80, 0xe2, 0x00, 0x07, 0xa6, 0xe4, 0x22, 0x2d, 0xb8, 0xec, 0x51, 0xdb, + 0x37, 0x6d, 0x6a, 0xc5, 0xe1, 0x84, 0x36, 0xf4, 0xb2, 0x84, 0xbb, 0xdc, 0x4a, 0x63, 0xc2, 0xf4, + 0xbc, 0x59, 0xc6, 0x81, 0x7f, 0x06, 0x5c, 0xe5, 0x14, 0x4d, 0x33, 0x36, 0x8d, 0xe5, 0xc3, 0xa4, + 0xc6, 0xf2, 0x5e, 0xf6, 0xef, 0x36, 0x9a, 0xb6, 0xb2, 0x08, 0xc0, 0xbf, 0x42, 0x54, 0x5d, 0x09, + 0x26, 0x69, 0x0c, 0x28, 0x18, 0xe1, 0x62, 0x13, 0x90, 0x6a, 0xe7, 0xa8, 0xa6, 0x12, 0x4c, 0x40, + 0xad, 0x28, 0x11, 0xe3, 0xbc, 0x43, 0xb5, 0x9d, 0xd2, 0xc8, 0xda, 0xce, 0x5d, 0x20, 0x31, 0xc3, + 0xa3, 0xc0, 0x2b, 0xc7, 0xe3, 0x8f, 0xd7, 0x07, 0x38, 0x30, 0x25, 0xd7, 0x90, 0xae, 0x5c, 0x19, + 0x6f, 0x57, 0xae, 0x8e, 0xde, 0x95, 0xc9, 0x7b, 0x70, 0x8d, 0x8b, 0x92, 0xed, 0x13, 0x07, 0x16, + 0x7a, 0xcf, 0x67, 0x25, 0xf0, 0x35, 0x1c, 0xc6, 0x88, 0xc3, 0x31, 0xd8, 0xf7, 0x69, 0xbb, 0xd4, + 0x60, 0xc2, 0x75, 0x6b, 0xb8, 0x4e, 0xb4, 0x9c, 0xc2, 0x83, 0xa9, 0x39, 0x59, 0x17, 0xf3, 0x59, + 0x37, 0xd4, 0x77, 0x2d, 0x6a, 0xc8, 0xf8, 0xeb, 0xa0, 0x8b, 0x6d, 0x6f, 0xb4, 0x24, 0x05, 0x23, + 0x5c, 0x69, 0x6a, 0xca, 0xc4, 0x19, 0xd5, 0x94, 0x35, 0x6e, 0xa5, 0xdf, 0x8b, 0x69, 0x43, 0x52, + 0xd7, 0x09, 0x22, 0xea, 0x97, 0x93, 0x0c, 0x38, 0x98, 0x87, 0x6b, 0x89, 0x6d, 0xd7, 0xec, 0xf9, + 0x5e, 0x1c, 0x6b, 0x2a, 0xa1, 0x25, 0xa6, 0xf0, 0x60, 0x6a, 0x4e, 0xa6, 0x9f, 0xef, 0x53, 0xdd, + 0xf2, 0xf7, 0xe3, 0x80, 0xd3, 0x71, 0xfd, 0xfc, 0xce, 0x20, 0x0b, 0xa6, 0xe5, 0x4b, 0x9d, 0x90, + 0x66, 0x5e, 0x4c, 0xb5, 0xea, 0x3b, 0x05, 0xb8, 0xb6, 0x46, 0xfd, 0x20, 0x34, 0xed, 0x53, 0x33, + 0xca, 0xc7, 0x60, 0x46, 0xf9, 0xf5, 0x12, 0x5c, 0x5c, 0xa3, 0xfe, 0x80, 0x36, 0xf6, 0x87, 0xb4, + 0xf9, 0x37, 0xe1, 0x62, 0x18, 0x0d, 0xd9, 0xf2, 0x1d, 0x57, 0xcc, 0xe5, 0x89, 0xd5, 0x72, 0x6b, + 0x90, 0x05, 0xd3, 0xf2, 0x91, 0x6f, 0xc0, 0x55, 0x3e, 0xd5, 0xdb, 0x1d, 0x61, 0x9f, 0x15, 0xc6, + 0x84, 0xc8, 0x7e, 0x9e, 0x86, 0x84, 0xbc, 0xda, 0x4a, 0x67, 0xc3, 0x61, 0xf9, 0xc9, 0xb7, 0x61, + 0xa2, 0x67, 0xf6, 0xa8, 0x65, 0xda, 0x5c, 0x3f, 0xcb, 0x1c, 0x44, 0xb4, 0x15, 0x01, 0x0b, 0x17, + 0x70, 0xd1, 0x54, 0x8c, 0x09, 0x4c, 0xed, 0xa9, 0xd5, 0x73, 0xec, 0xa9, 0xff, 0x23, 0x0f, 0x95, + 0x35, 0xd7, 0xe9, 0xf7, 0x9a, 0x47, 0xa4, 0x03, 0xe5, 0x47, 0xdc, 0x79, 0x26, 0x5d, 0x53, 0xa3, + 0xef, 0x28, 0x10, 0x3e, 0xb8, 0x50, 0x25, 0x12, 0xef, 0x28, 0xe1, 0x59, 0x27, 0x3e, 0xa0, 0x47, + 0xd4, 0x90, 0x3e, 0xb4, 0xa0, 0x13, 0xdf, 0x63, 0x89, 0x28, 0x68, 0xa4, 0x0b, 0xd3, 0xba, 0x65, + 0x39, 0x8f, 0xa8, 0xb1, 0xa1, 0xfb, 0xdc, 0xef, 0x2d, 0x7d, 0x2b, 0x67, 0x35, 0x4b, 0xf3, 0x60, + 0x86, 0xa5, 0x38, 0x14, 0x26, 0xb1, 0xc9, 0xfb, 0x50, 0xf1, 0x7c, 0xc7, 0x55, 0xca, 0x56, 0x7d, + 0x71, 0x79, 0xf4, 0x8f, 0xde, 0xfc, 0x7a, 0x4b, 0x40, 0x09, 0x9b, 0xbd, 0x7c, 0x41, 0x25, 0x40, + 0xfb, 0xb5, 0x1c, 0xc0, 0x9d, 0xed, 0xed, 0x2d, 0xe9, 0x5e, 0x30, 0xa0, 0xa8, 0xf7, 0x03, 0x47, + 0xe5, 0xe8, 0x0e, 0xc1, 0x58, 0x20, 0xaf, 0xf4, 0xe1, 0xf5, 0xfd, 0x7d, 0xe4, 0xe8, 0xe4, 0xc7, + 0xa1, 0x22, 0x15, 0x64, 0xd9, 0xec, 0x41, 0x3c, 0x85, 0x54, 0xa2, 0x51, 0xd1, 0xb5, 0xdf, 0xca, + 0x03, 0xac, 0x1b, 0x16, 0x6d, 0xa9, 0x4d, 0x20, 0x35, 0x7f, 0xdf, 0xa5, 0xde, 0xbe, 0x63, 0x19, + 0x23, 0x7a, 0x53, 0xb9, 0xcd, 0x7f, 0x5b, 0x81, 0x60, 0x88, 0x47, 0x0c, 0x98, 0xf0, 0x7c, 0xda, + 0x53, 0xb1, 0xbd, 0x23, 0x3a, 0x51, 0x66, 0x84, 0x5d, 0x24, 0xc4, 0xc1, 0x18, 0x2a, 0xd1, 0xa1, + 0x6e, 0xda, 0x6d, 0xf1, 0x83, 0x34, 0x8f, 0x46, 0xec, 0x48, 0xd3, 0x6c, 0xc5, 0xb1, 0x1e, 0xc2, + 0x60, 0x14, 0x53, 0xfb, 0x9d, 0x3c, 0x5c, 0xe1, 0xf2, 0x58, 0x31, 0x62, 0x11, 0xbc, 0xe4, 0x8f, + 0x0f, 0x6c, 0x58, 0xfd, 0xa3, 0xa7, 0x13, 0x2d, 0xf6, 0x3b, 0x6e, 0x52, 0x5f, 0x0f, 0xf5, 0xb9, + 0x30, 0x2d, 0xb2, 0x4b, 0xb5, 0x0f, 0x45, 0x8f, 0x8d, 0x57, 0xa2, 0xf5, 0x5a, 0x23, 0x77, 0xa1, + 0xf4, 0x0a, 0xf0, 0xd1, 0x2b, 0xf0, 0x1a, 0xf3, 0x51, 0x8b, 0x8b, 0x23, 0xbf, 0x08, 0x65, 0xcf, + 0xd7, 0xfd, 0xbe, 0xfa, 0x35, 0x77, 0xc6, 0x2d, 0x98, 0x83, 0x87, 0xe3, 0x88, 0x78, 0x47, 0x29, + 0x54, 0xfb, 0x9d, 0x1c, 0xcc, 0xa5, 0x67, 0xdc, 0x30, 0x3d, 0x9f, 0xfc, 0xb1, 0x81, 0x66, 0x3f, + 0xe5, 0x17, 0x67, 0xb9, 0x79, 0xa3, 0x07, 0x7b, 0x1a, 0x54, 0x4a, 0xa4, 0xc9, 0x7d, 0x28, 0x99, + 0x3e, 0xed, 0xaa, 0xf5, 0xe5, 0x83, 0x31, 0x57, 0x3d, 0x32, 0xb5, 0x33, 0x29, 0x28, 0x84, 0x69, + 0xdf, 0xcb, 0x0f, 0xab, 0x32, 0x9f, 0x3e, 0xac, 0x78, 0x94, 0xf8, 0xbd, 0x6c, 0x51, 0xe2, 0xf1, + 0x02, 0x0d, 0x06, 0x8b, 0xff, 0x89, 0xc1, 0x60, 0xf1, 0x07, 0xd9, 0x83, 0xc5, 0x13, 0xcd, 0x30, + 0x34, 0x66, 0xfc, 0xa3, 0x02, 0x5c, 0x7f, 0x5a, 0xb7, 0x61, 0xf3, 0x99, 0xec, 0x9d, 0x59, 0xe7, + 0xb3, 0xa7, 0xf7, 0x43, 0xb2, 0x08, 0xa5, 0xde, 0xbe, 0xee, 0x29, 0xa5, 0xec, 0x7a, 0x10, 0x66, + 0xc8, 0x12, 0x9f, 0xb0, 0x41, 0x83, 0x2b, 0x73, 0xfc, 0x15, 0x05, 0x2b, 0x1b, 0x8e, 0xbb, 0xd4, + 0xf3, 0x42, 0x9b, 0x40, 0x30, 0x1c, 0x6f, 0x8a, 0x64, 0x54, 0x74, 0xe2, 0x43, 0x59, 0x98, 0x98, + 0xe5, 0xcc, 0x34, 0x7a, 0x20, 0x57, 0xca, 0xc6, 0x82, 0xb0, 0x52, 0xd2, 0x5b, 0x21, 0x65, 0x91, + 0x79, 0x28, 0xfa, 0x61, 0x98, 0xb7, 0x5a, 0x9a, 0x17, 0x53, 0xf4, 0x53, 0xce, 0xc7, 0x16, 0xf6, + 0xce, 0x2e, 0x37, 0xaa, 0x1b, 0xd2, 0x7f, 0x6e, 0x3a, 0x36, 0x57, 0xc8, 0x0a, 0xe1, 0xc2, 0xfe, + 0xc1, 0x00, 0x07, 0xa6, 0xe4, 0xd2, 0xfe, 0x65, 0x15, 0xae, 0xa4, 0xf7, 0x07, 0xd6, 0x6e, 0x87, + 0xd4, 0xf5, 0x18, 0x76, 0x2e, 0xde, 0x6e, 0x0f, 0x45, 0x32, 0x2a, 0xfa, 0x27, 0x3a, 0xe0, 0xec, + 0xd7, 0x73, 0x70, 0xcd, 0x95, 0x3e, 0xa2, 0xe7, 0x11, 0x74, 0xf6, 0xb2, 0x30, 0x67, 0x0c, 0x11, + 0x88, 0xc3, 0xcb, 0x42, 0xfe, 0x5a, 0x0e, 0x66, 0xbb, 0x09, 0x3b, 0xc7, 0x39, 0xee, 0xb9, 0xe4, + 0xfb, 0x28, 0x36, 0x87, 0xc8, 0xc3, 0xa1, 0x25, 0x21, 0xdf, 0x86, 0x7a, 0x8f, 0xf5, 0x0b, 0xcf, + 0xa7, 0x76, 0x5b, 0x05, 0x88, 0x8e, 0xfe, 0x27, 0x6d, 0x85, 0x58, 0xc1, 0x9e, 0x2b, 0xae, 0x1f, + 0x44, 0x08, 0x18, 0x95, 0xf8, 0x82, 0x6f, 0xb2, 0xbc, 0x05, 0x55, 0x8f, 0xfa, 0xbe, 0x69, 0x77, + 0xc4, 0x7a, 0xa3, 0x26, 0xfe, 0x95, 0x96, 0x4c, 0xc3, 0x80, 0x4a, 0x7e, 0x02, 0x6a, 0xdc, 0xe5, + 0xb4, 0xe4, 0x76, 0xbc, 0xd9, 0x1a, 0x0f, 0x17, 0x9b, 0x14, 0x01, 0x70, 0x32, 0x11, 0x43, 0x3a, + 0xf9, 0x22, 0x4c, 0xec, 0xf2, 0xdf, 0x57, 0xee, 0xbb, 0x17, 0x36, 0x2e, 0xae, 0xad, 0x35, 0x23, + 0xe9, 0x18, 0xe3, 0x22, 0x8b, 0x00, 0x34, 0xf0, 0xcb, 0x25, 0xed, 0x59, 0xa1, 0xc7, 0x0e, 0x23, + 0x5c, 0xe4, 0x65, 0x28, 0xf8, 0x96, 0xc7, 0x6d, 0x58, 0xd5, 0x70, 0x09, 0xba, 0xbd, 0xd1, 0x42, + 0x96, 0xae, 0xfd, 0x7e, 0x0e, 0xa6, 0x13, 0xdb, 0x91, 0x58, 0x96, 0xbe, 0x6b, 0xc9, 0x61, 0x24, + 0xc8, 0xb2, 0x83, 0x1b, 0xc8, 0xd2, 0xc9, 0x7b, 0x52, 0x2d, 0xcf, 0x67, 0x3c, 0x62, 0xe4, 0xbe, + 0xee, 0x7b, 0x4c, 0x0f, 0x1f, 0xd0, 0xc8, 0xb9, 0x9b, 0x2f, 0x2c, 0x8f, 0x9c, 0x07, 0x22, 0x6e, + 0xbe, 0x90, 0x86, 0x31, 0xce, 0x84, 0xc1, 0xaf, 0x78, 0x1a, 0x83, 0x9f, 0xf6, 0x2b, 0xf9, 0x48, + 0x0b, 0x48, 0xcd, 0xfe, 0x19, 0x2d, 0xf0, 0x0a, 0x9b, 0x40, 0x83, 0xc9, 0xbd, 0x16, 0x9d, 0xff, + 0xf8, 0x64, 0x2c, 0xa9, 0xe4, 0x6d, 0xd1, 0xf6, 0x85, 0x8c, 0x1b, 0xb9, 0xb7, 0x37, 0x5a, 0x22, + 0xba, 0x4a, 0x7d, 0xb5, 0xe0, 0x13, 0x14, 0xcf, 0xe9, 0x13, 0x68, 0xff, 0xa4, 0x00, 0xf5, 0xbb, + 0xce, 0xee, 0x27, 0x24, 0x82, 0x3a, 0x7d, 0x9a, 0xca, 0x7f, 0x8c, 0xd3, 0xd4, 0x0e, 0x5c, 0xf5, + 0x7d, 0xab, 0x45, 0xdb, 0x8e, 0x6d, 0x78, 0x4b, 0x7b, 0x3e, 0x75, 0x57, 0x4d, 0xdb, 0xf4, 0xf6, + 0xa9, 0x21, 0xdd, 0x49, 0x9f, 0x39, 0x39, 0x6e, 0x5c, 0xdd, 0xde, 0xde, 0x48, 0x63, 0xc1, 0x61, + 0x79, 0xf9, 0xb0, 0x21, 0xf6, 0x8e, 0xf2, 0xbd, 0x55, 0x32, 0xe6, 0x46, 0x0c, 0x1b, 0x91, 0x74, + 0x8c, 0x71, 0x69, 0xff, 0x3e, 0x0f, 0xb5, 0xe0, 0xf0, 0x08, 0xf2, 0x79, 0xa8, 0xec, 0xba, 0xce, + 0x01, 0x75, 0x85, 0xe7, 0x4e, 0xee, 0xad, 0x6a, 0x8a, 0x24, 0x54, 0x34, 0xf2, 0x39, 0x28, 0xf9, + 0x4e, 0xcf, 0x6c, 0x27, 0x0d, 0x6a, 0xdb, 0x2c, 0x11, 0x05, 0x8d, 0xff, 0x08, 0x3c, 0xac, 0x90, + 0xd7, 0xaa, 0x1a, 0xf9, 0x11, 0x78, 0x2a, 0x4a, 0xaa, 0xfa, 0x11, 0x8a, 0x63, 0xff, 0x11, 0x5e, + 0x09, 0x54, 0xc0, 0x52, 0xfc, 0x4f, 0x4c, 0x28, 0x6d, 0xef, 0x42, 0xd1, 0xd3, 0x3d, 0x4b, 0x4e, + 0x6f, 0x19, 0xce, 0x6b, 0x58, 0x6a, 0x6d, 0xc8, 0xf3, 0x1a, 0x96, 0x5a, 0x1b, 0xc8, 0x41, 0xb5, + 0xdf, 0x2a, 0x40, 0x5d, 0xb4, 0xaf, 0x18, 0x3d, 0xc6, 0xd9, 0xc2, 0x6f, 0xf2, 0x90, 0x0b, 0xaf, + 0xdf, 0xa5, 0x2e, 0x37, 0x47, 0xc9, 0xc1, 0x30, 0xea, 0x47, 0x08, 0x89, 0x41, 0xd8, 0x45, 0x98, + 0xf4, 0x07, 0xbb, 0xe9, 0xd9, 0x54, 0xc1, 0x0f, 0x40, 0x91, 0x3a, 0xae, 0x8c, 0xa4, 0x0c, 0xa6, + 0x8a, 0x7b, 0x11, 0x1a, 0xc6, 0x38, 0xb5, 0xff, 0x9e, 0x87, 0xda, 0x86, 0xb9, 0x47, 0xdb, 0x47, + 0x6d, 0x8b, 0x92, 0x6f, 0xc2, 0x9c, 0x41, 0x2d, 0xca, 0x66, 0xcc, 0x35, 0x57, 0x6f, 0xd3, 0x2d, + 0xea, 0x9a, 0xfc, 0x00, 0x27, 0xf6, 0x0f, 0xca, 0x00, 0xd7, 0x1b, 0x27, 0xc7, 0x8d, 0xb9, 0x95, + 0xa1, 0x5c, 0xf8, 0x14, 0x04, 0xb2, 0x0e, 0x13, 0x06, 0xf5, 0x4c, 0x97, 0x1a, 0x5b, 0x91, 0x05, + 0xd1, 0xe7, 0x55, 0x39, 0x57, 0x22, 0xb4, 0x27, 0xc7, 0x8d, 0x49, 0x65, 0x08, 0x15, 0x2b, 0xa3, + 0x58, 0x56, 0x36, 0xb4, 0xf4, 0xf4, 0xbe, 0x47, 0x53, 0xca, 0x59, 0xe0, 0xe5, 0xe4, 0x43, 0xcb, + 0x56, 0x3a, 0x0b, 0x0e, 0xcb, 0x4b, 0x76, 0x61, 0x96, 0x97, 0x3f, 0x0d, 0xb7, 0xc8, 0x71, 0x5f, + 0x39, 0x39, 0x6e, 0x68, 0x2b, 0xb4, 0xe7, 0xd2, 0xb6, 0xee, 0x53, 0x63, 0x65, 0x08, 0x37, 0x0e, + 0xc5, 0xd1, 0x4a, 0x50, 0xd8, 0x70, 0x3a, 0xda, 0xf7, 0x0a, 0x10, 0x9c, 0x28, 0x46, 0xfe, 0x74, + 0x0e, 0xea, 0xba, 0x6d, 0x3b, 0xbe, 0x3c, 0xad, 0x4b, 0x44, 0x13, 0x60, 0xe6, 0x83, 0xcb, 0xe6, + 0x97, 0x42, 0x50, 0xe1, 0x88, 0x0e, 0x9c, 0xe3, 0x11, 0x0a, 0x46, 0x65, 0x93, 0x7e, 0xc2, 0x37, + 0xbe, 0x99, 0xbd, 0x14, 0xa7, 0xf0, 0x84, 0xcf, 0x7d, 0x0d, 0x66, 0x92, 0x85, 0x3d, 0x8b, 0x6b, + 0x2b, 0x53, 0x90, 0x41, 0x1e, 0x20, 0x8c, 0x8f, 0x79, 0x0e, 0x06, 0x39, 0x33, 0x66, 0x90, 0x1b, + 0xfd, 0x58, 0x87, 0xb0, 0xd0, 0x43, 0x8d, 0x70, 0xdf, 0x4a, 0x18, 0xe1, 0xd6, 0xc7, 0x21, 0xec, + 0xe9, 0x86, 0xb7, 0x5d, 0xb8, 0x18, 0xf2, 0x86, 0xa3, 0xcb, 0xbd, 0xc4, 0xdf, 0x2f, 0xf4, 0xca, + 0x2f, 0x0c, 0xf9, 0xfb, 0xa7, 0x23, 0x01, 0x4b, 0x83, 0xff, 0xbf, 0xf6, 0xd7, 0x73, 0x30, 0x13, + 0x15, 0xc2, 0xf7, 0xa0, 0x7f, 0x09, 0x26, 0x5d, 0xaa, 0x1b, 0x4d, 0xdd, 0x6f, 0xef, 0xf3, 0xd0, + 0xf8, 0x1c, 0x8f, 0x65, 0xe7, 0xbb, 0xe5, 0x30, 0x4a, 0xc0, 0x38, 0x1f, 0xd1, 0xa1, 0xce, 0x12, + 0xb6, 0xcd, 0x2e, 0x75, 0xfa, 0xfe, 0x88, 0x56, 0x66, 0xbe, 0xc0, 0xc3, 0x10, 0x06, 0xa3, 0x98, + 0xda, 0x47, 0x39, 0x98, 0x8a, 0x16, 0xf8, 0xdc, 0x2d, 0x90, 0xfb, 0x71, 0x0b, 0xe4, 0xf2, 0x18, + 0xbe, 0xfb, 0x10, 0xab, 0xe3, 0x77, 0xea, 0xd1, 0xaa, 0x71, 0x4b, 0x63, 0xd4, 0xb8, 0x92, 0x7b, + 0xaa, 0x71, 0xe5, 0x93, 0x7f, 0x50, 0xd5, 0xb0, 0x55, 0x41, 0xf1, 0x05, 0x5e, 0x15, 0x7c, 0x9c, + 0xa7, 0x5d, 0x45, 0x4e, 0x6c, 0x2a, 0x67, 0x38, 0xb1, 0xa9, 0x1b, 0x9c, 0xd8, 0x54, 0x19, 0xdb, + 0xc0, 0x76, 0x9a, 0x53, 0x9b, 0xaa, 0xcf, 0xf5, 0xd4, 0xa6, 0xda, 0x79, 0x9d, 0xda, 0x04, 0x59, + 0x4f, 0x6d, 0xfa, 0x6e, 0x0e, 0xa6, 0x8c, 0xd8, 0x0e, 0x63, 0xb9, 0xb7, 0x7f, 0xf4, 0xe9, 0x2c, + 0xbe, 0x61, 0x59, 0x6c, 0x31, 0x8b, 0xa7, 0x61, 0x42, 0x64, 0xda, 0x59, 0x49, 0x13, 0x1f, 0xcb, + 0x59, 0x49, 0xe4, 0x17, 0xa1, 0x66, 0xa9, 0xb9, 0x4e, 0x9e, 0x20, 0xb9, 0x31, 0x96, 0x2e, 0x29, + 0x31, 0xc3, 0x5d, 0x0c, 0x41, 0x12, 0x86, 0x12, 0xb5, 0xff, 0x5d, 0x89, 0x4e, 0x88, 0xcf, 0xdb, + 0xc7, 0xf1, 0x7a, 0xdc, 0xc7, 0x71, 0x33, 0xe9, 0xe3, 0x18, 0x98, 0xcd, 0xa5, 0x9f, 0xe3, 0x27, + 0x23, 0xf3, 0x44, 0x81, 0x1f, 0xd2, 0x14, 0x74, 0xb9, 0x94, 0xb9, 0x62, 0x09, 0xa6, 0xa5, 0x12, + 0xa0, 0x88, 0x7c, 0x90, 0x9d, 0x0c, 0xa3, 0xd2, 0x56, 0xe2, 0x64, 0x4c, 0xf2, 0x33, 0x81, 0x9e, + 0x3a, 0xab, 0x57, 0xac, 0xd8, 0xc2, 0x3e, 0xae, 0xce, 0xd1, 0x0d, 0x38, 0xd8, 0xea, 0xce, 0xa5, + 0xba, 0x27, 0x3d, 0x15, 0x91, 0xd5, 0x1d, 0xf2, 0x54, 0x94, 0xd4, 0xa8, 0xbb, 0xa6, 0xf2, 0x0c, + 0x77, 0x8d, 0x0e, 0x75, 0x4b, 0xf7, 0x7c, 0xd1, 0x99, 0x0c, 0x39, 0x9a, 0xfc, 0x91, 0xd3, 0xcd, + 0xfb, 0x4c, 0x97, 0x08, 0x15, 0xf8, 0x8d, 0x10, 0x06, 0xa3, 0x98, 0xc4, 0x80, 0x09, 0xf6, 0xca, + 0x47, 0x16, 0x63, 0xc9, 0x97, 0x27, 0xda, 0x9d, 0x45, 0x46, 0xb0, 0x74, 0xdc, 0x88, 0xe0, 0x60, + 0x0c, 0x75, 0x88, 0x47, 0x07, 0x46, 0xf1, 0xe8, 0x90, 0xaf, 0x08, 0xc5, 0xed, 0x28, 0xf8, 0xac, + 0x75, 0xfe, 0x59, 0x83, 0x88, 0x56, 0x8c, 0x12, 0x31, 0xce, 0xcb, 0x7a, 0x45, 0x5f, 0x36, 0x83, + 0xca, 0x3e, 0x11, 0xef, 0x15, 0x3b, 0x71, 0x32, 0x26, 0xf9, 0xc9, 0x16, 0x5c, 0x0a, 0x92, 0xa2, + 0xc5, 0x98, 0xe4, 0x38, 0x41, 0x88, 0xe1, 0x4e, 0x0a, 0x0f, 0xa6, 0xe6, 0xe4, 0x7b, 0x76, 0xfa, + 0xae, 0x4b, 0x6d, 0xff, 0x8e, 0xee, 0xed, 0xcb, 0x58, 0xc5, 0x70, 0xcf, 0x4e, 0x48, 0xc2, 0x28, + 0x1f, 0x59, 0x04, 0x10, 0x70, 0x3c, 0xd7, 0x74, 0x3c, 0x1c, 0x78, 0x27, 0xa0, 0x60, 0x84, 0x4b, + 0xfb, 0x6e, 0x0d, 0xea, 0xf7, 0x75, 0xdf, 0x3c, 0xa4, 0xdc, 0xfd, 0x7a, 0x3e, 0x3e, 0xb0, 0xbf, + 0x94, 0x83, 0x2b, 0xf1, 0x18, 0xdb, 0x73, 0x74, 0x84, 0xf1, 0x33, 0x9e, 0x30, 0x55, 0x1a, 0x0e, + 0x29, 0x05, 0x77, 0x89, 0x0d, 0x84, 0xec, 0x9e, 0xb7, 0x4b, 0xac, 0x35, 0x4c, 0x20, 0x0e, 0x2f, + 0xcb, 0x27, 0xc5, 0x25, 0xf6, 0x62, 0x1f, 0x4a, 0x9a, 0x70, 0xd8, 0x55, 0x5e, 0x18, 0x87, 0x5d, + 0xf5, 0x85, 0xd0, 0xfa, 0x7b, 0x11, 0x87, 0x5d, 0x2d, 0x63, 0xe0, 0x98, 0xdc, 0x96, 0x22, 0xd0, + 0x86, 0x39, 0xfe, 0xf8, 0x89, 0x12, 0xca, 0x91, 0xc2, 0x94, 0xe5, 0x5d, 0xdd, 0x33, 0xdb, 0x52, + 0xed, 0xc8, 0x70, 0x08, 0xb3, 0x3a, 0x9c, 0x51, 0xc4, 0x97, 0xf0, 0x57, 0x14, 0xd8, 0xe1, 0x59, + 0x94, 0xf9, 0x4c, 0x67, 0x51, 0x92, 0x65, 0x28, 0xda, 0x07, 0xf4, 0xe8, 0x6c, 0x67, 0x33, 0xf0, + 0x45, 0xe0, 0xfd, 0x7b, 0xf4, 0x08, 0x79, 0x66, 0xed, 0xfb, 0x79, 0x00, 0x56, 0xfd, 0xd3, 0xb9, + 0xce, 0x7e, 0x1c, 0x2a, 0x5e, 0x9f, 0x1b, 0x86, 0xa4, 0xc2, 0x14, 0x46, 0xdb, 0x89, 0x64, 0x54, + 0x74, 0xf2, 0x39, 0x28, 0x7d, 0xab, 0x4f, 0xfb, 0x2a, 0x0e, 0x24, 0x58, 0x37, 0x7c, 0x9d, 0x25, + 0xa2, 0xa0, 0x9d, 0x9f, 0x79, 0x5b, 0xb9, 0xd8, 0x4a, 0xe7, 0xe5, 0x62, 0xab, 0x41, 0xe5, 0xbe, + 0xc3, 0x83, 0x77, 0xb5, 0xff, 0x92, 0x07, 0x08, 0x83, 0x23, 0xc9, 0xaf, 0xe5, 0xe0, 0x72, 0xf0, + 0xc3, 0xf9, 0x62, 0xf9, 0xc7, 0xcf, 0x3d, 0xcf, 0xec, 0x6e, 0x4b, 0xfb, 0xd9, 0xf9, 0x08, 0xb4, + 0x95, 0x26, 0x0e, 0xd3, 0x4b, 0x41, 0x10, 0xaa, 0xb4, 0xdb, 0xf3, 0x8f, 0x56, 0x4c, 0x57, 0xf6, + 0xc0, 0xd4, 0x18, 0xdc, 0xdb, 0x92, 0x47, 0x64, 0x95, 0x36, 0x0a, 0xfe, 0x13, 0x29, 0x0a, 0x06, + 0x38, 0x64, 0x1f, 0xaa, 0xb6, 0xf3, 0x9e, 0xc7, 0x9a, 0x43, 0x76, 0xc7, 0xb7, 0x46, 0x6f, 0x72, + 0xd1, 0xac, 0xc2, 0xed, 0x22, 0x5f, 0xb0, 0x62, 0xcb, 0xc6, 0xfe, 0xd5, 0x3c, 0x5c, 0x4c, 0x69, + 0x07, 0xf2, 0x16, 0xcc, 0xc8, 0x38, 0xd4, 0xf0, 0x02, 0x80, 0x5c, 0x78, 0x01, 0x40, 0x2b, 0x41, + 0xc3, 0x01, 0x6e, 0xf2, 0x1e, 0x80, 0xde, 0x6e, 0x53, 0xcf, 0xdb, 0x74, 0x0c, 0xb5, 0x1e, 0x78, + 0x93, 0xa9, 0x2f, 0x4b, 0x41, 0xea, 0x93, 0xe3, 0xc6, 0x4f, 0xa5, 0x85, 0x96, 0x27, 0xda, 0x39, + 0xcc, 0x80, 0x11, 0x48, 0xf2, 0x4d, 0x00, 0x61, 0x03, 0x08, 0x4e, 0xbf, 0x78, 0x86, 0xe1, 0x6c, + 0x5e, 0x1d, 0xae, 0x36, 0xff, 0xf5, 0xbe, 0x6e, 0xfb, 0xa6, 0x7f, 0x24, 0x0e, 0x1b, 0x7a, 0x18, + 0xa0, 0x60, 0x04, 0x51, 0xfb, 0x87, 0x79, 0xa8, 0x2a, 0xd7, 0xc3, 0x73, 0xb0, 0x05, 0x77, 0x62, + 0xb6, 0xe0, 0x31, 0x05, 0x93, 0xa7, 0x59, 0x82, 0x9d, 0x84, 0x25, 0x78, 0x2d, 0xbb, 0xa8, 0xa7, + 0xdb, 0x81, 0x7f, 0x33, 0x0f, 0x53, 0x8a, 0x35, 0xab, 0x85, 0xf6, 0xab, 0x30, 0x2d, 0x82, 0x40, + 0x36, 0xf5, 0xc7, 0xe2, 0xdc, 0x25, 0xde, 0x60, 0x45, 0x11, 0xbf, 0xdd, 0x8c, 0x93, 0x30, 0xc9, + 0xcb, 0xba, 0xb5, 0x48, 0xda, 0x61, 0x8b, 0x30, 0xe1, 0x36, 0x16, 0xeb, 0x4d, 0xde, 0xad, 0x9b, + 0x09, 0x1a, 0x0e, 0x70, 0x27, 0x4d, 0xc4, 0xc5, 0x73, 0x30, 0x11, 0xff, 0xeb, 0x1c, 0x4c, 0x84, + 0xed, 0x75, 0xee, 0x06, 0xe2, 0xbd, 0xb8, 0x81, 0x78, 0x29, 0x73, 0x77, 0x18, 0x62, 0x1e, 0xfe, + 0x73, 0x15, 0x88, 0xed, 0x69, 0x20, 0xbb, 0x30, 0x67, 0xa6, 0x46, 0x66, 0x46, 0x46, 0x9b, 0x60, + 0x93, 0xfe, 0xfa, 0x50, 0x4e, 0x7c, 0x0a, 0x0a, 0xe9, 0x43, 0xf5, 0x90, 0xba, 0xbe, 0xd9, 0xa6, + 0xaa, 0x7e, 0x6b, 0x99, 0x55, 0x32, 0x69, 0x04, 0x0f, 0xda, 0xf4, 0xa1, 0x14, 0x80, 0x81, 0x28, + 0xb2, 0x0b, 0x25, 0x6a, 0x74, 0xa8, 0x3a, 0x09, 0x2b, 0xe3, 0xc9, 0xc4, 0x41, 0x7b, 0xb2, 0x37, + 0x0f, 0x05, 0x34, 0xf1, 0xa2, 0x86, 0xa6, 0x62, 0x46, 0x05, 0xeb, 0x94, 0xe6, 0x25, 0x72, 0x10, + 0x58, 0x5b, 0x4b, 0x63, 0x1a, 0x3c, 0x9e, 0x62, 0x6b, 0xf5, 0xa0, 0xf6, 0x48, 0xf7, 0xa9, 0xdb, + 0xd5, 0xdd, 0x03, 0xb9, 0xda, 0x18, 0xbd, 0x86, 0x6f, 0x2b, 0xa4, 0xb0, 0x86, 0x41, 0x12, 0x86, + 0x72, 0x88, 0x03, 0x35, 0x5f, 0xaa, 0xcf, 0xca, 0xa4, 0x3c, 0xba, 0x50, 0xa5, 0x88, 0x7b, 0x72, + 0x6f, 0x83, 0x7a, 0xc5, 0x50, 0x06, 0x39, 0x8c, 0x1d, 0x63, 0x2f, 0x2e, 0x2f, 0x68, 0x66, 0x70, + 0x4d, 0x48, 0xa8, 0x70, 0xba, 0x49, 0x3f, 0x0e, 0x5f, 0xfb, 0x9f, 0xa5, 0x70, 0x58, 0x7e, 0xde, + 0x76, 0xc2, 0x2f, 0xc6, 0xed, 0x84, 0x37, 0x92, 0x76, 0xc2, 0x84, 0xcf, 0xff, 0xec, 0xd1, 0xd0, + 0x09, 0xf3, 0x5a, 0xf1, 0x1c, 0xcc, 0x6b, 0xaf, 0x42, 0xfd, 0x90, 0x8f, 0x04, 0xe2, 0x58, 0xad, + 0x12, 0x9f, 0x46, 0xf8, 0xc8, 0xfe, 0x30, 0x4c, 0xc6, 0x28, 0x0f, 0xcb, 0x22, 0x2f, 0xee, 0x09, + 0x4e, 0xb2, 0x96, 0x59, 0x5a, 0x61, 0x32, 0x46, 0x79, 0x78, 0x20, 0xa5, 0x69, 0x1f, 0x88, 0x0c, + 0x15, 0x9e, 0x41, 0x04, 0x52, 0xaa, 0x44, 0x0c, 0xe9, 0xe4, 0x16, 0x54, 0xfb, 0xc6, 0x9e, 0xe0, + 0xad, 0x72, 0x5e, 0xae, 0x61, 0xee, 0xac, 0xac, 0xca, 0x63, 0xbe, 0x14, 0x95, 0x95, 0xa4, 0xab, + 0xf7, 0x14, 0x81, 0xaf, 0x0d, 0x65, 0x49, 0x36, 0xc3, 0x64, 0x8c, 0xf2, 0x90, 0x9f, 0x81, 0x29, + 0x97, 0x1a, 0xfd, 0x36, 0x0d, 0x72, 0x01, 0xcf, 0x25, 0xcf, 0x3f, 0x8d, 0x52, 0x30, 0xc1, 0x39, + 0xc4, 0x48, 0x58, 0x1f, 0xc9, 0x48, 0xf8, 0x35, 0x98, 0x32, 0x5c, 0xdd, 0xb4, 0xa9, 0xf1, 0xc0, + 0xe6, 0x81, 0x1d, 0x32, 0x9c, 0x33, 0x30, 0xd0, 0xaf, 0xc4, 0xa8, 0x98, 0xe0, 0xd6, 0xfe, 0x69, + 0x1e, 0x4a, 0xe2, 0x54, 0xd6, 0x75, 0xb8, 0x68, 0xda, 0xa6, 0x6f, 0xea, 0xd6, 0x0a, 0xb5, 0xf4, + 0xa3, 0x68, 0x80, 0x4b, 0xa9, 0x79, 0x95, 0x2d, 0xb4, 0xd7, 0x07, 0xc9, 0x98, 0x96, 0x87, 0x35, + 0x8e, 0x2f, 0xa6, 0x6f, 0x85, 0x22, 0xec, 0x68, 0xe2, 0x48, 0xf0, 0x18, 0x05, 0x13, 0x9c, 0x4c, + 0x19, 0xea, 0x0d, 0x44, 0xae, 0x94, 0x84, 0x32, 0x14, 0x0f, 0x26, 0x89, 0xf3, 0x71, 0x25, 0xbd, + 0xcf, 0x15, 0xe2, 0x60, 0xd3, 0x94, 0x0c, 0x82, 0x13, 0x4a, 0x7a, 0x82, 0x86, 0x03, 0xdc, 0x0c, + 0x61, 0x4f, 0x37, 0xad, 0xbe, 0x4b, 0x43, 0x84, 0x52, 0x88, 0xb0, 0x9a, 0xa0, 0xe1, 0x00, 0xb7, + 0xf6, 0xdf, 0x72, 0x40, 0x06, 0xb7, 0x81, 0x90, 0x7d, 0x28, 0xdb, 0xdc, 0x16, 0x99, 0xf9, 0x26, + 0x82, 0x88, 0x49, 0x53, 0x4c, 0x12, 0x32, 0x41, 0xe2, 0x13, 0x1b, 0xaa, 0xf4, 0xb1, 0x4f, 0x5d, + 0x3b, 0xd8, 0x16, 0x36, 0x9e, 0x5b, 0x0f, 0xc4, 0xda, 0x4c, 0x22, 0x63, 0x20, 0x43, 0xfb, 0xdd, + 0x3c, 0xd4, 0x23, 0x7c, 0xcf, 0x5a, 0xe2, 0xf3, 0x93, 0x29, 0x84, 0x09, 0x70, 0xc7, 0xb5, 0xe4, + 0x78, 0x17, 0x39, 0x99, 0x42, 0x92, 0x70, 0x03, 0xa3, 0x7c, 0x64, 0x11, 0xa0, 0xab, 0x7b, 0x3e, + 0x75, 0xb9, 0x2e, 0x94, 0x38, 0x0f, 0x62, 0x33, 0xa0, 0x60, 0x84, 0x8b, 0xdc, 0x94, 0xf7, 0x56, + 0x14, 0xe3, 0xe7, 0x77, 0x0e, 0xb9, 0x94, 0xa2, 0x34, 0x86, 0x4b, 0x29, 0x48, 0x07, 0x66, 0x54, + 0xa9, 0x15, 0xf5, 0x6c, 0xa7, 0x3b, 0x8a, 0x8e, 0x9a, 0x80, 0xc0, 0x01, 0x50, 0xed, 0xfb, 0x39, + 0x98, 0x8c, 0x19, 0xa0, 0xc4, 0xc9, 0x9b, 0x6a, 0x13, 0x53, 0xec, 0xe4, 0xcd, 0xc8, 0xde, 0xa3, + 0x57, 0xa0, 0x2c, 0x1a, 0x28, 0x19, 0x9b, 0x2c, 0x9a, 0x10, 0x25, 0x95, 0xcd, 0x2c, 0xd2, 0xc4, + 0x9d, 0x9c, 0x59, 0xa4, 0x0d, 0x1c, 0x15, 0x5d, 0x78, 0x8e, 0x44, 0xe9, 0x64, 0x4b, 0x47, 0x3c, + 0x47, 0x22, 0x1d, 0x03, 0x0e, 0xed, 0xef, 0xf2, 0x72, 0xfb, 0xee, 0x51, 0xb0, 0xb2, 0xee, 0x40, + 0x45, 0xc6, 0xa3, 0xca, 0x5f, 0xe3, 0xad, 0x0c, 0x56, 0x31, 0x8e, 0x23, 0x23, 0x2a, 0xf5, 0xf6, + 0xc1, 0x83, 0xbd, 0x3d, 0x54, 0xe8, 0xe4, 0x36, 0xd4, 0x1c, 0x5b, 0xfe, 0xc1, 0xb2, 0xfa, 0x5f, + 0x60, 0x33, 0xc7, 0x03, 0x95, 0xf8, 0xe4, 0xb8, 0x71, 0x25, 0x78, 0x89, 0x15, 0x12, 0xc3, 0x9c, + 0xda, 0x9f, 0xca, 0xc1, 0x65, 0x74, 0x2c, 0xcb, 0xb4, 0x3b, 0x71, 0xcf, 0x27, 0xb1, 0x60, 0xaa, + 0xab, 0x3f, 0xde, 0xb1, 0xf5, 0x43, 0xdd, 0xb4, 0xf4, 0x5d, 0x8b, 0x3e, 0x73, 0x65, 0xdc, 0xf7, + 0x4d, 0x6b, 0x5e, 0xdc, 0xe3, 0x39, 0xbf, 0x6e, 0xfb, 0x0f, 0xdc, 0x96, 0xef, 0x9a, 0x76, 0x47, + 0x8c, 0x92, 0x9b, 0x31, 0x2c, 0x4c, 0x60, 0x6b, 0xff, 0xae, 0x08, 0x3c, 0xd6, 0x91, 0x7c, 0x09, + 0x6a, 0x5d, 0xda, 0xde, 0xd7, 0x6d, 0xd3, 0x53, 0x67, 0x18, 0x5f, 0x63, 0xf5, 0xda, 0x54, 0x89, + 0x4f, 0xd8, 0xa7, 0x58, 0x6a, 0x6d, 0xf0, 0x6d, 0x47, 0x21, 0x2f, 0x69, 0x43, 0xb9, 0xe3, 0x79, + 0x7a, 0xcf, 0xcc, 0x1c, 0x62, 0x22, 0xce, 0x8c, 0x15, 0xc3, 0x91, 0x78, 0x46, 0x09, 0x4d, 0xda, + 0x50, 0xea, 0x59, 0xba, 0x69, 0x67, 0xbe, 0x77, 0x8e, 0xd5, 0x60, 0x8b, 0x21, 0x09, 0x53, 0x25, + 0x7f, 0x44, 0x81, 0x4d, 0xfa, 0x50, 0xf7, 0xda, 0xae, 0xde, 0xf5, 0xf6, 0xf5, 0xc5, 0xd7, 0x5e, + 0xcf, 0xac, 0xfc, 0x87, 0xa2, 0x84, 0x2e, 0xb2, 0x8c, 0x4b, 0x9b, 0xad, 0x3b, 0x4b, 0x8b, 0xaf, + 0xbd, 0x8e, 0x51, 0x39, 0x51, 0xb1, 0xaf, 0xbd, 0xba, 0x28, 0x47, 0x90, 0xb1, 0x8b, 0x7d, 0xed, + 0xd5, 0x45, 0x8c, 0xca, 0x61, 0x4d, 0xea, 0x70, 0xeb, 0x63, 0x79, 0x0c, 0x02, 0x1f, 0x84, 0x56, + 0x64, 0xfe, 0x88, 0x02, 0x5b, 0xfb, 0x5f, 0x39, 0xa8, 0x05, 0x74, 0x36, 0x50, 0x8a, 0xd3, 0xf0, + 0xd6, 0x57, 0xce, 0x76, 0x0d, 0x10, 0x1f, 0x28, 0x97, 0x65, 0x56, 0x0c, 0x40, 0xc8, 0xbb, 0x30, + 0x21, 0x9e, 0xe5, 0xe9, 0xb4, 0xf9, 0x33, 0x1f, 0x81, 0xbb, 0x1c, 0xc9, 0x8e, 0x31, 0x30, 0xf2, + 0x15, 0x98, 0xe4, 0x26, 0xec, 0xdb, 0xb6, 0xd1, 0x73, 0x4c, 0x79, 0x99, 0x4c, 0xe4, 0x20, 0xa0, + 0xed, 0x28, 0x11, 0xe3, 0xbc, 0x41, 0xc5, 0xf9, 0x97, 0x20, 0x3b, 0x00, 0x6c, 0xa6, 0x90, 0xa5, + 0x3c, 0x53, 0xd5, 0xb9, 0x2d, 0x6d, 0x27, 0xc8, 0x8c, 0x11, 0xa0, 0x94, 0x43, 0x86, 0xf3, 0xe3, + 0x3e, 0x64, 0x78, 0x01, 0x6a, 0xfb, 0xba, 0x6d, 0x78, 0xfb, 0xfa, 0x01, 0x95, 0x01, 0xf8, 0xc1, + 0x42, 0xef, 0x8e, 0x22, 0x60, 0xc8, 0xa3, 0xfd, 0xfd, 0x32, 0x88, 0xa8, 0x1b, 0x36, 0xa4, 0x1b, + 0xa6, 0x27, 0xb6, 0xc9, 0xe4, 0x78, 0xce, 0x60, 0x48, 0x5f, 0x91, 0xe9, 0x18, 0x70, 0x90, 0x6b, + 0x50, 0xe8, 0x9a, 0xb6, 0xd4, 0xef, 0xb8, 0x99, 0x7c, 0xd3, 0xb4, 0x91, 0xa5, 0x71, 0x92, 0xfe, + 0x58, 0xea, 0x6f, 0x82, 0xa4, 0x3f, 0x46, 0x96, 0x46, 0xbe, 0x0a, 0xd3, 0x96, 0xe3, 0x1c, 0xb0, + 0xc1, 0x39, 0x1a, 0x48, 0x3c, 0x29, 0x0c, 0x57, 0x1b, 0x71, 0x12, 0x26, 0x79, 0xc9, 0x0e, 0x5c, + 0xfd, 0x80, 0xba, 0x8e, 0x9c, 0x8d, 0x5a, 0x16, 0xa5, 0x3d, 0x05, 0x23, 0x16, 0x1e, 0x3c, 0xce, + 0xf9, 0xe7, 0xd2, 0x59, 0x70, 0x58, 0x5e, 0xbe, 0x33, 0x43, 0x77, 0x3b, 0xd4, 0xdf, 0x72, 0x1d, + 0xa6, 0x19, 0x9a, 0x76, 0x47, 0xc1, 0x96, 0x43, 0xd8, 0xed, 0x74, 0x16, 0x1c, 0x96, 0x97, 0xbc, + 0x03, 0xb3, 0x82, 0x24, 0x94, 0xc2, 0x25, 0x31, 0x88, 0x9b, 0x96, 0xba, 0x0c, 0x77, 0x52, 0x78, + 0x23, 0xb7, 0x87, 0xf0, 0xe0, 0xd0, 0xdc, 0xe4, 0x2e, 0xcc, 0x28, 0x5f, 0xf4, 0x16, 0x75, 0x5b, + 0x41, 0x24, 0xd6, 0xa4, 0x0a, 0x48, 0x57, 0x01, 0xd9, 0x98, 0xe0, 0xc2, 0x81, 0x7c, 0x04, 0xe1, + 0x0a, 0x0f, 0xb7, 0xda, 0xe9, 0x2d, 0x3b, 0x8e, 0x65, 0x38, 0x8f, 0x6c, 0x55, 0x77, 0xb1, 0x1c, + 0xe2, 0xee, 0xe7, 0x56, 0x2a, 0x07, 0x0e, 0xc9, 0xc9, 0x6a, 0xce, 0x29, 0x2b, 0xce, 0x23, 0x3b, + 0x89, 0x0a, 0x61, 0xcd, 0x5b, 0x43, 0x78, 0x70, 0x68, 0x6e, 0xb2, 0x0a, 0x24, 0x59, 0x83, 0x9d, + 0x9e, 0x0c, 0x90, 0xb8, 0x22, 0x8e, 0xc3, 0x4a, 0x52, 0x31, 0x25, 0x07, 0xd9, 0x80, 0x4b, 0xc9, + 0x54, 0x26, 0x4e, 0xc6, 0x4a, 0xf0, 0x83, 0xb0, 0x31, 0x85, 0x8e, 0xa9, 0xb9, 0xb4, 0x7f, 0x90, + 0x87, 0xc9, 0xd8, 0xf9, 0x29, 0x2f, 0xdc, 0x39, 0x15, 0x6c, 0x69, 0xd6, 0xf5, 0x3a, 0xeb, 0x2b, + 0x77, 0xa8, 0x6e, 0x50, 0x57, 0x6d, 0xcf, 0xa9, 0x49, 0xa5, 0x23, 0x46, 0xc1, 0x04, 0x27, 0xd9, + 0x83, 0x92, 0xf0, 0xc2, 0x64, 0xbd, 0x4b, 0x4b, 0xb5, 0x11, 0x77, 0xc5, 0xc8, 0x0b, 0xe8, 0x1c, + 0x97, 0xa2, 0x80, 0xd7, 0x7c, 0x98, 0x88, 0x72, 0xb0, 0x81, 0x24, 0x5c, 0x54, 0x54, 0x62, 0x0b, + 0x8a, 0x75, 0x28, 0xf8, 0xfe, 0xa8, 0x27, 0x60, 0x08, 0xaf, 0xde, 0xf6, 0x06, 0x32, 0x0c, 0x6d, + 0x8f, 0x7d, 0x3b, 0xcf, 0x33, 0x1d, 0x5b, 0x5e, 0x87, 0xb0, 0x03, 0x15, 0xb9, 0x36, 0x1d, 0xf1, + 0x04, 0x0f, 0xae, 0x89, 0x2a, 0xa3, 0xb6, 0xc2, 0xd2, 0xfe, 0x4d, 0x1e, 0x6a, 0x81, 0x11, 0xea, + 0x14, 0xd7, 0x0c, 0x38, 0x50, 0x0b, 0xc2, 0x45, 0x33, 0x5f, 0x14, 0x1c, 0x46, 0x31, 0x72, 0xbb, + 0x49, 0xf0, 0x8a, 0xa1, 0x8c, 0x68, 0x28, 0x6a, 0x21, 0x43, 0x28, 0x6a, 0x0f, 0x2a, 0xbe, 0x6b, + 0x76, 0x3a, 0x72, 0x0d, 0x96, 0x25, 0x16, 0x35, 0x68, 0xae, 0x6d, 0x01, 0x28, 0x5b, 0x56, 0xbc, + 0xa0, 0x12, 0xa3, 0xbd, 0x0f, 0x33, 0x49, 0x4e, 0xbe, 0x40, 0x69, 0xef, 0x53, 0xa3, 0x6f, 0xa9, + 0x36, 0x0e, 0x17, 0x28, 0x32, 0x1d, 0x03, 0x0e, 0x72, 0x0b, 0xaa, 0xec, 0x33, 0x7d, 0xe0, 0xd8, + 0x6a, 0x91, 0xc0, 0x55, 0x98, 0x6d, 0x99, 0x86, 0x01, 0x55, 0xfb, 0xcf, 0x05, 0xb8, 0x16, 0x9a, + 0x12, 0x37, 0x75, 0x5b, 0xef, 0x9c, 0xe2, 0x76, 0xd8, 0x4f, 0xf7, 0x44, 0x9e, 0xf5, 0xae, 0x98, + 0xc2, 0x0b, 0x70, 0x57, 0xcc, 0xff, 0xcb, 0x03, 0x0f, 0x6d, 0x27, 0xdf, 0x86, 0x09, 0x3d, 0x72, + 0x31, 0xb8, 0xfc, 0x9c, 0xb7, 0x33, 0x7f, 0x4e, 0x1e, 0x41, 0x1f, 0x84, 0x17, 0x46, 0x53, 0x31, + 0x26, 0x90, 0x38, 0x50, 0xdd, 0xd3, 0x2d, 0x8b, 0xe9, 0x42, 0x99, 0x5d, 0xa3, 0x31, 0xe1, 0xbc, + 0x9b, 0xaf, 0x4a, 0x68, 0x0c, 0x84, 0x90, 0xef, 0xe6, 0x60, 0xd2, 0x8d, 0x2e, 0x86, 0xe5, 0x07, + 0xc9, 0x12, 0x38, 0x13, 0x41, 0x8b, 0x06, 0x33, 0x46, 0x57, 0xdc, 0x71, 0x99, 0xda, 0x7f, 0xca, + 0xc1, 0x64, 0xcb, 0x32, 0x0d, 0xd3, 0xee, 0x9c, 0xe3, 0x55, 0x35, 0x0f, 0xa0, 0xe4, 0x59, 0xa6, + 0x41, 0x47, 0x9c, 0x4d, 0xc4, 0x3c, 0xc6, 0x00, 0x50, 0xe0, 0xc4, 0xef, 0xbe, 0x29, 0x9c, 0xe2, + 0xee, 0x9b, 0xdf, 0x2b, 0x83, 0xdc, 0xa4, 0x41, 0xfa, 0x50, 0xeb, 0xa8, 0x2b, 0x35, 0x64, 0x1d, + 0xef, 0x64, 0x38, 0x8e, 0x35, 0x76, 0x39, 0x87, 0x18, 0xfb, 0x83, 0x44, 0x0c, 0x25, 0x11, 0x1a, + 0xbf, 0x91, 0x7e, 0x25, 0xe3, 0x8d, 0xf4, 0x42, 0xdc, 0xe0, 0x9d, 0xf4, 0x3a, 0x14, 0xf7, 0x7d, + 0xbf, 0x27, 0x3b, 0xd3, 0xe8, 0xbb, 0x70, 0xc2, 0x13, 0xc1, 0x84, 0x4e, 0xc4, 0xde, 0x91, 0x43, + 0x33, 0x11, 0xb6, 0x1e, 0xdc, 0xfb, 0xb9, 0x9c, 0x29, 0x48, 0x27, 0x2a, 0x82, 0xbd, 0x23, 0x87, + 0x26, 0xbf, 0x00, 0x75, 0xdf, 0xd5, 0x6d, 0x6f, 0xcf, 0x71, 0xbb, 0xd4, 0x95, 0x16, 0x80, 0xd5, + 0x0c, 0x97, 0xb2, 0x6f, 0x87, 0x68, 0xc2, 0xe0, 0x1d, 0x4b, 0xc2, 0xa8, 0x34, 0x72, 0x00, 0xd5, + 0xbe, 0x21, 0x0a, 0x26, 0x4d, 0x01, 0x4b, 0x59, 0xee, 0xd9, 0x8f, 0x84, 0xe0, 0xa8, 0x37, 0x0c, + 0x04, 0xc4, 0xaf, 0xb8, 0xad, 0x8c, 0xeb, 0x8a, 0xdb, 0x68, 0x6f, 0x4c, 0x3b, 0xae, 0x88, 0x74, + 0xa5, 0x5e, 0x6b, 0x77, 0x64, 0x04, 0xe1, 0x6a, 0x66, 0x95, 0x53, 0x88, 0xac, 0x07, 0xba, 0xb1, + 0xdd, 0x41, 0x25, 0x43, 0xeb, 0x82, 0xf4, 0xcc, 0x91, 0x76, 0xec, 0x5a, 0x2f, 0xb1, 0xef, 0x74, + 0xe1, 0x74, 0xe3, 0x41, 0x70, 0xbf, 0x54, 0xe4, 0x5a, 0x81, 0xd4, 0xfb, 0xbb, 0xb4, 0x7f, 0x9b, + 0x87, 0xc2, 0xf6, 0x46, 0x4b, 0x1c, 0x15, 0xcc, 0x2f, 0x0a, 0xa4, 0xad, 0x03, 0xb3, 0xf7, 0x90, + 0xba, 0xe6, 0xde, 0x91, 0x5c, 0x7a, 0x47, 0x8e, 0x0a, 0x4e, 0x72, 0x60, 0x4a, 0x2e, 0x6e, 0x59, + 0xd1, 0x97, 0xa9, 0x9b, 0xc1, 0xb2, 0xb2, 0x14, 0x66, 0xc7, 0x18, 0x18, 0xd9, 0x01, 0x68, 0x87, + 0xd0, 0x85, 0x33, 0x9b, 0x43, 0x22, 0xc0, 0x11, 0x20, 0x82, 0x50, 0x3b, 0x60, 0xac, 0x1c, 0xb5, + 0x78, 0x16, 0x54, 0xde, 0x73, 0xee, 0xa9, 0xbc, 0x18, 0xc2, 0x68, 0x36, 0x4c, 0xc6, 0xee, 0xfa, + 0x22, 0x5f, 0x86, 0xaa, 0xd3, 0x8b, 0x0c, 0xa7, 0x35, 0x1e, 0xab, 0x5c, 0x7d, 0x20, 0xd3, 0x9e, + 0x1c, 0x37, 0x26, 0x37, 0x9c, 0x8e, 0xd9, 0x56, 0x09, 0x18, 0xb0, 0x13, 0x0d, 0xca, 0x7c, 0x57, + 0xac, 0xba, 0xe9, 0x8b, 0xcf, 0x1d, 0xfc, 0x32, 0x1e, 0x0f, 0x25, 0x45, 0xfb, 0xa5, 0x22, 0x84, + 0xfe, 0x6c, 0xe2, 0x41, 0x59, 0xec, 0xc8, 0x91, 0x23, 0xf7, 0xb9, 0x6e, 0xfe, 0x91, 0xa2, 0x48, + 0x07, 0x0a, 0xef, 0x3b, 0xbb, 0x99, 0x07, 0xee, 0xc8, 0xd1, 0x1e, 0xc2, 0x12, 0x19, 0x49, 0x40, + 0x26, 0x81, 0xfc, 0xe5, 0x1c, 0x5c, 0xf0, 0x92, 0xaa, 0xaf, 0xec, 0x0e, 0x98, 0x5d, 0xc7, 0x4f, + 0x2a, 0xd3, 0x32, 0xa8, 0x7c, 0x18, 0x19, 0x07, 0xcb, 0xc2, 0xda, 0x5f, 0x38, 0x9a, 0x65, 0x77, + 0x5a, 0xcb, 0x78, 0xa3, 0x71, 0xbc, 0xfd, 0xe3, 0x69, 0x28, 0x45, 0x69, 0xdf, 0xc9, 0x43, 0x3d, + 0x32, 0x5a, 0x67, 0xbe, 0x40, 0xee, 0x71, 0xe2, 0x02, 0xb9, 0xad, 0xd1, 0xe3, 0x2e, 0xc2, 0x52, + 0x9d, 0xf7, 0x1d, 0x72, 0xff, 0x38, 0x0f, 0x85, 0x9d, 0x95, 0xd5, 0xf8, 0xa2, 0x35, 0xf7, 0x1c, + 0x16, 0xad, 0xfb, 0x50, 0xd9, 0xed, 0x9b, 0x96, 0x6f, 0xda, 0x99, 0x0f, 0x1f, 0x52, 0xf7, 0xed, + 0x49, 0x4f, 0x92, 0x40, 0x45, 0x05, 0x4f, 0x3a, 0x50, 0xe9, 0x88, 0xd3, 0x5f, 0x33, 0x47, 0xa3, + 0xca, 0x53, 0x64, 0x85, 0x20, 0xf9, 0x82, 0x0a, 0x5d, 0x3b, 0x82, 0xf2, 0xce, 0x8a, 0x54, 0xfb, + 0x9f, 0x6f, 0x6b, 0x6a, 0xbf, 0x00, 0x81, 0x16, 0xf0, 0xfc, 0x85, 0xff, 0xd7, 0x1c, 0xc4, 0x15, + 0x9f, 0xe7, 0xdf, 0x9b, 0x0e, 0x92, 0xbd, 0x69, 0x65, 0x1c, 0x3f, 0x5f, 0x7a, 0x87, 0xd2, 0xfe, + 0x55, 0x0e, 0x12, 0xdb, 0x28, 0xc9, 0xeb, 0xf2, 0x20, 0xc1, 0x78, 0xd8, 0x9f, 0x3a, 0x48, 0x90, + 0xc4, 0xb9, 0x23, 0x07, 0x0a, 0x7e, 0xc8, 0x96, 0x6b, 0x51, 0xf7, 0xa4, 0x2c, 0xfe, 0xfd, 0xd1, + 0x97, 0x6b, 0x69, 0xce, 0x4e, 0x19, 0x9a, 0x1a, 0x25, 0x61, 0x5c, 0xae, 0xf6, 0xf7, 0xf2, 0x50, + 0x7e, 0x6e, 0x27, 0x47, 0xd0, 0x58, 0xb4, 0xf0, 0x72, 0xc6, 0xd1, 0x7e, 0x68, 0xac, 0x70, 0x37, + 0x11, 0x2b, 0x9c, 0xf5, 0xa2, 0xfc, 0x67, 0x44, 0x0a, 0xff, 0x8b, 0x1c, 0xc8, 0xb9, 0x66, 0xdd, + 0xf6, 0x7c, 0xdd, 0x6e, 0x53, 0xd2, 0x0e, 0x26, 0xb6, 0xac, 0x21, 0x69, 0x32, 0x6c, 0x53, 0xe8, + 0x32, 0xfc, 0x59, 0x4d, 0x64, 0xe4, 0x27, 0xa1, 0xba, 0xef, 0x78, 0x3e, 0x9f, 0xbc, 0xf2, 0x71, + 0x93, 0xd9, 0x1d, 0x99, 0x8e, 0x01, 0x47, 0x32, 0x58, 0xa0, 0x34, 0x3c, 0x58, 0x40, 0xfb, 0x8d, + 0x3c, 0x4c, 0x7c, 0x52, 0x8e, 0xa6, 0x48, 0x8b, 0xad, 0x2e, 0x64, 0x8c, 0xad, 0x2e, 0x9e, 0x25, + 0xb6, 0x5a, 0xfb, 0x61, 0x0e, 0xe0, 0xb9, 0x9d, 0x8b, 0x61, 0xc4, 0xc3, 0x9e, 0x33, 0xf7, 0xab, + 0xf4, 0xa0, 0xe7, 0xbf, 0x5d, 0x52, 0x55, 0xe2, 0x21, 0xcf, 0x1f, 0xe6, 0x60, 0x4a, 0x8f, 0x85, + 0x11, 0x67, 0xd6, 0x97, 0x13, 0x51, 0xc9, 0x41, 0x14, 0x5c, 0x3c, 0x1d, 0x13, 0x62, 0xc9, 0x1b, + 0xe1, 0x19, 0xf6, 0xf7, 0xc3, 0x6e, 0x3f, 0x70, 0xf8, 0x3c, 0xd7, 0xdd, 0x62, 0x9c, 0xcf, 0x08, + 0xdb, 0x2e, 0x8c, 0x25, 0x6c, 0x3b, 0xba, 0x21, 0xb5, 0xf8, 0xd4, 0x0d, 0xa9, 0x87, 0x50, 0xdb, + 0x73, 0x9d, 0x2e, 0x8f, 0x8c, 0x96, 0xb7, 0xc4, 0xdf, 0xce, 0x30, 0x51, 0x76, 0x77, 0x4d, 0x9b, + 0x1a, 0x3c, 0xea, 0x3a, 0x30, 0x5c, 0xad, 0x2a, 0x7c, 0x0c, 0x45, 0x71, 0x5b, 0xbf, 0x23, 0xa4, + 0x96, 0xc7, 0x29, 0x35, 0x18, 0x4b, 0xb6, 0x05, 0x3a, 0x2a, 0x31, 0xf1, 0x68, 0xe8, 0xca, 0xf3, + 0x89, 0x86, 0xd6, 0xfe, 0x6c, 0x45, 0x0d, 0x60, 0x2f, 0xdc, 0x71, 0xc9, 0x9f, 0x1e, 0x23, 0xd0, + 0xa1, 0x03, 0x7b, 0xfc, 0xab, 0xcf, 0x71, 0x8f, 0x7f, 0x6d, 0x3c, 0x7b, 0xfc, 0x21, 0xdb, 0x1e, + 0xff, 0xfa, 0x98, 0xf6, 0xf8, 0x4f, 0x8c, 0x6b, 0x8f, 0xff, 0xe4, 0x48, 0x7b, 0xfc, 0xa7, 0x4e, + 0xb5, 0xc7, 0xff, 0xb8, 0x00, 0x89, 0xc5, 0xf8, 0xa7, 0x8e, 0xb7, 0x3f, 0x50, 0x8e, 0xb7, 0xef, + 0xe5, 0x21, 0x1c, 0x88, 0xcf, 0x18, 0x98, 0xf4, 0x0e, 0x54, 0xbb, 0xfa, 0x63, 0x1e, 0x96, 0x9e, + 0xe5, 0x96, 0xf1, 0x4d, 0x89, 0x81, 0x01, 0x1a, 0xf1, 0x00, 0xcc, 0xe0, 0xa6, 0x8f, 0xcc, 0x2e, + 0x8c, 0xf0, 0xd2, 0x10, 0x61, 0x24, 0x0d, 0xdf, 0x31, 0x22, 0x46, 0xfb, 0xe7, 0x79, 0x90, 0x57, + 0xc2, 0x10, 0x0a, 0xa5, 0x3d, 0xf3, 0x31, 0x35, 0x32, 0x07, 0x93, 0xaf, 0x32, 0x14, 0x79, 0xef, + 0x0c, 0xf7, 0xd1, 0xf0, 0x04, 0x14, 0xe8, 0xdc, 0xf8, 0x2e, 0x7c, 0x6e, 0xb2, 0xfd, 0x32, 0x18, + 0xdf, 0xa3, 0xbe, 0x3b, 0x69, 0x7c, 0x17, 0x49, 0xa8, 0x64, 0x08, 0x5b, 0x3f, 0x0f, 0xbf, 0xc8, + 0xec, 0x62, 0x8c, 0x85, 0x71, 0x28, 0x5b, 0xbf, 0x27, 0x0e, 0xf9, 0x90, 0x32, 0x9a, 0x3f, 0xff, + 0x83, 0x1f, 0xdd, 0x78, 0xe9, 0x87, 0x3f, 0xba, 0xf1, 0xd2, 0x47, 0x3f, 0xba, 0xf1, 0xd2, 0x2f, + 0x9d, 0xdc, 0xc8, 0xfd, 0xe0, 0xe4, 0x46, 0xee, 0x87, 0x27, 0x37, 0x72, 0x1f, 0x9d, 0xdc, 0xc8, + 0xfd, 0x87, 0x93, 0x1b, 0xb9, 0xbf, 0xf0, 0x1f, 0x6f, 0xbc, 0xf4, 0x73, 0x5f, 0x0a, 0x8b, 0xb0, + 0xa0, 0x8a, 0xb0, 0xa0, 0x04, 0x2e, 0xf4, 0x0e, 0x3a, 0x0b, 0xac, 0x08, 0x61, 0x8a, 0x2a, 0xc2, + 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x4f, 0x99, 0x80, 0x31, 0x67, 0xa1, 0x00, 0x00, } func (m *AbstractPodTemplate) Marshal() (dAtA []byte, err error) { @@ -7875,6 +7908,18 @@ func (m *SASL) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.OAuth != nil { + { + size, err := m.OAuth.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x32 + } if m.SCRAMSHA512 != nil { { size, err := m.SCRAMSHA512.MarshalToSizedBuffer(dAtA[:i]) @@ -7933,6 +7978,58 @@ func (m *SASL) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *SASLOAuth) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *SASLOAuth) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SASLOAuth) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + i -= len(m.TokenEndpoint) + copy(dAtA[i:], m.TokenEndpoint) + i = encodeVarintGenerated(dAtA, i, uint64(len(m.TokenEndpoint))) + i-- + dAtA[i] = 0x1a + if m.ClientSecret != nil { + { + size, err := m.ClientSecret.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.ClientID != nil { + { + size, err := m.ClientID.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenerated(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *SASLPlain) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -11313,6 +11410,29 @@ func (m *SASL) Size() (n int) { l = m.SCRAMSHA512.Size() n += 1 + l + sovGenerated(uint64(l)) } + if m.OAuth != nil { + l = m.OAuth.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + return n +} + +func (m *SASLOAuth) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ClientID != nil { + l = m.ClientID.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + if m.ClientSecret != nil { + l = m.ClientSecret.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + l = len(m.TokenEndpoint) + n += 1 + l + sovGenerated(uint64(l)) return n } @@ -13093,6 +13213,19 @@ func (this *SASL) String() string { `Plain:` + strings.Replace(this.Plain.String(), "SASLPlain", "SASLPlain", 1) + `,`, `SCRAMSHA256:` + strings.Replace(this.SCRAMSHA256.String(), "SASLPlain", "SASLPlain", 1) + `,`, `SCRAMSHA512:` + strings.Replace(this.SCRAMSHA512.String(), "SASLPlain", "SASLPlain", 1) + `,`, + `OAuth:` + strings.Replace(this.OAuth.String(), "SASLOAuth", "SASLOAuth", 1) + `,`, + `}`, + }, "") + return s +} +func (this *SASLOAuth) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&SASLOAuth{`, + `ClientID:` + strings.Replace(fmt.Sprintf("%v", this.ClientID), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`, + `ClientSecret:` + strings.Replace(fmt.Sprintf("%v", this.ClientSecret), "SecretKeySelector", "v1.SecretKeySelector", 1) + `,`, + `TokenEndpoint:` + fmt.Sprintf("%v", this.TokenEndpoint) + `,`, `}`, }, "") return s @@ -28120,6 +28253,196 @@ func (m *SASL) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field OAuth", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.OAuth == nil { + m.OAuth = &SASLOAuth{} + } + if err := m.OAuth.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipGenerated(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthGenerated + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *SASLOAuth) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: SASLOAuth: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SASLOAuth: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ClientID", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ClientID == nil { + m.ClientID = &v1.SecretKeySelector{} + } + if err := m.ClientID.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ClientSecret", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ClientSecret == nil { + m.ClientSecret = &v1.SecretKeySelector{} + } + if err := m.ClientSecret.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TokenEndpoint", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.TokenEndpoint = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/pkg/apis/numaflow/v1alpha1/generated.proto b/pkg/apis/numaflow/v1alpha1/generated.proto index dfe8339b6b..018ea9e7b4 100644 --- a/pkg/apis/numaflow/v1alpha1/generated.proto +++ b/pkg/apis/numaflow/v1alpha1/generated.proto @@ -1413,6 +1413,21 @@ message SASL { // SASLSCRAMSHA512 contains the sasl plain config // +optional optional SASLPlain scramsha512 = 5; + + // OAuth contains the oauth config + // +optional + optional SASLOAuth oauth = 6; +} + +message SASLOAuth { + // ClientID refers to the secret that contains the client id + optional .k8s.io.api.core.v1.SecretKeySelector clientID = 1; + + // ClientSecret refers to the secret that contains the client secret + optional .k8s.io.api.core.v1.SecretKeySelector clientSecret = 2; + + // TokenEndpoint refers to the token endpoint + optional string tokenEndpoint = 3; } message SASLPlain { diff --git a/pkg/apis/numaflow/v1alpha1/sasl.go b/pkg/apis/numaflow/v1alpha1/sasl.go index 813d2303f4..108791fe27 100644 --- a/pkg/apis/numaflow/v1alpha1/sasl.go +++ b/pkg/apis/numaflow/v1alpha1/sasl.go @@ -33,6 +33,9 @@ type SASL struct { // SASLSCRAMSHA512 contains the sasl plain config // +optional SCRAMSHA512 *SASLPlain `json:"scramsha512" protobuf:"bytes,5,opt,name=scramsha512"` + // OAuth contains the oauth config + // +optional + OAuth *SASLOAuth `json:"oauth" protobuf:"bytes,6,opt,name=oauth"` } // SASLType describes the SASL type @@ -96,3 +99,12 @@ type SASLPlain struct { PasswordSecret *corev1.SecretKeySelector `json:"passwordSecret" protobuf:"bytes,2,opt,name=passwordSecret"` Handshake bool `json:"handshake" protobuf:"bytes,3,opt,name=handshake"` } + +type SASLOAuth struct { + // ClientID refers to the secret that contains the client id + ClientID *corev1.SecretKeySelector `json:"clientID" protobuf:"bytes,1,opt,name=clientID"` + // ClientSecret refers to the secret that contains the client secret + ClientSecret *corev1.SecretKeySelector `json:"clientSecret" protobuf:"bytes,2,opt,name=clientSecret"` + // TokenEndpoint refers to the token endpoint + TokenEndpoint string `json:"tokenEndpoint" protobuf:"bytes,3,opt,name=tokenEndpoint"` +} diff --git a/pkg/apis/numaflow/v1alpha1/zz_generated.deepcopy.go b/pkg/apis/numaflow/v1alpha1/zz_generated.deepcopy.go index 2576898f49..2c02c96330 100644 --- a/pkg/apis/numaflow/v1alpha1/zz_generated.deepcopy.go +++ b/pkg/apis/numaflow/v1alpha1/zz_generated.deepcopy.go @@ -2149,6 +2149,11 @@ func (in *SASL) DeepCopyInto(out *SASL) { *out = new(SASLPlain) (*in).DeepCopyInto(*out) } + if in.OAuth != nil { + in, out := &in.OAuth, &out.OAuth + *out = new(SASLOAuth) + (*in).DeepCopyInto(*out) + } return } @@ -2162,6 +2167,32 @@ func (in *SASL) DeepCopy() *SASL { return out } +// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. +func (in *SASLOAuth) DeepCopyInto(out *SASLOAuth) { + *out = *in + if in.ClientID != nil { + in, out := &in.ClientID, &out.ClientID + *out = new(v1.SecretKeySelector) + (*in).DeepCopyInto(*out) + } + if in.ClientSecret != nil { + in, out := &in.ClientSecret, &out.ClientSecret + *out = new(v1.SecretKeySelector) + (*in).DeepCopyInto(*out) + } + return +} + +// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SASLOAuth. +func (in *SASLOAuth) DeepCopy() *SASLOAuth { + if in == nil { + return nil + } + out := new(SASLOAuth) + in.DeepCopyInto(out) + return out +} + // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *SASLPlain) DeepCopyInto(out *SASLPlain) { *out = *in diff --git a/pkg/apis/numaflow/v1alpha1/zz_generated.openapi.go b/pkg/apis/numaflow/v1alpha1/zz_generated.openapi.go index 1cd2d83b7f..99d77a5174 100644 --- a/pkg/apis/numaflow/v1alpha1/zz_generated.openapi.go +++ b/pkg/apis/numaflow/v1alpha1/zz_generated.openapi.go @@ -95,6 +95,7 @@ func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenA "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.RetryStrategy": schema_pkg_apis_numaflow_v1alpha1_RetryStrategy(ref), "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.RollingUpdateStrategy": schema_pkg_apis_numaflow_v1alpha1_RollingUpdateStrategy(ref), "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.SASL": schema_pkg_apis_numaflow_v1alpha1_SASL(ref), + "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.SASLOAuth": schema_pkg_apis_numaflow_v1alpha1_SASLOAuth(ref), "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.SASLPlain": schema_pkg_apis_numaflow_v1alpha1_SASLPlain(ref), "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.Scale": schema_pkg_apis_numaflow_v1alpha1_Scale(ref), "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.ServingSource": schema_pkg_apis_numaflow_v1alpha1_ServingSource(ref), @@ -4516,12 +4517,53 @@ func schema_pkg_apis_numaflow_v1alpha1_SASL(ref common.ReferenceCallback) common Ref: ref("github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.SASLPlain"), }, }, + "oauth": { + SchemaProps: spec.SchemaProps{ + Description: "OAuth contains the oauth config", + Ref: ref("github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.SASLOAuth"), + }, + }, }, Required: []string{"mechanism"}, }, }, Dependencies: []string{ - "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.GSSAPI", "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.SASLPlain"}, + "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.GSSAPI", "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.SASLOAuth", "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1.SASLPlain"}, + } +} + +func schema_pkg_apis_numaflow_v1alpha1_SASLOAuth(ref common.ReferenceCallback) common.OpenAPIDefinition { + return common.OpenAPIDefinition{ + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + Properties: map[string]spec.Schema{ + "clientID": { + SchemaProps: spec.SchemaProps{ + Description: "ClientID refers to the secret that contains the client id", + Ref: ref("k8s.io/api/core/v1.SecretKeySelector"), + }, + }, + "clientSecret": { + SchemaProps: spec.SchemaProps{ + Description: "ClientSecret refers to the secret that contains the client secret", + Ref: ref("k8s.io/api/core/v1.SecretKeySelector"), + }, + }, + "tokenEndpoint": { + SchemaProps: spec.SchemaProps{ + Description: "TokenEndpoint refers to the token endpoint", + Default: "", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"clientID", "clientSecret", "tokenEndpoint"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.SecretKeySelector"}, } } diff --git a/pkg/shared/util/sasl_config.go b/pkg/shared/util/sasl_config.go index fdf2067924..556d451808 100644 --- a/pkg/shared/util/sasl_config.go +++ b/pkg/shared/util/sasl_config.go @@ -17,6 +17,7 @@ limitations under the License. package util import ( + "context" "crypto/sha256" "crypto/sha512" "fmt" @@ -25,6 +26,9 @@ import ( "github.com/IBM/sarama" dfv1 "github.com/numaproj/numaflow/pkg/apis/numaflow/v1alpha1" "github.com/xdg-go/scram" + "golang.org/x/oauth2" + "golang.org/x/oauth2/clientcredentials" + corev1 "k8s.io/api/core/v1" ) @@ -102,6 +106,15 @@ func getSASLStrategy(saslConfig *dfv1.SASL, strategy volumeReader) (*struct { } config.Net.SASL.Handshake = scram.Handshake } + case dfv1.SASLTypeOAuth: + if oauth := saslConfig.OAuth; oauth != nil { + config.Net.SASL.Enable = true + config.Net.SASL.Mechanism = sarama.SASLTypeOAuth + err := setOAuthClient(config, oauth, strategy) + if err != nil { + return nil, fmt.Errorf("error constructing oauth client, %w", err) + } + } default: return nil, fmt.Errorf("SASL mechanism not supported: %s", *saslConfig.Mechanism) } @@ -226,3 +239,54 @@ func (x *XDGSCRAMClient) Step(challenge string) (response string, err error) { func (x *XDGSCRAMClient) Done() bool { return x.ClientConversation.Done() } + +func setOAuthClient(config *sarama.Config, oauthconfig *dfv1.SASLOAuth, strategy volumeReader) error { + if oauthconfig.ClientID == nil { + return fmt.Errorf("clientID is required for SASL/OAuth") + } + + clientID, err := strategy.getSecretFromVolume(oauthconfig.ClientID) + if err != nil { + return err + } + + if oauthconfig.ClientSecret == nil { + return fmt.Errorf("clientSecret is required for SASL/OAuth") + } + + clientSecret, err := strategy.getSecretFromVolume(oauthconfig.ClientSecret) + if err != nil { + return err + } + + config.Net.SASL.TokenProvider = NewTokenProvider(clientID, clientSecret, oauthconfig.TokenEndpoint) + + return nil +} + +type OAUTHTokenProvider struct { + tokenSource oauth2.TokenSource +} + +func NewTokenProvider(clientID, clientSecret, tokenEndpoint string) sarama.AccessTokenProvider { + cfg := clientcredentials.Config{ + ClientID: clientID, + ClientSecret: clientSecret, + TokenURL: tokenEndpoint, + } + + return &OAUTHTokenProvider{ + tokenSource: cfg.TokenSource(context.Background()), + } +} + +func (o *OAUTHTokenProvider) Token() (*sarama.AccessToken, error) { + t, err := o.tokenSource.Token() + if err != nil { + return nil, err + } + + return &sarama.AccessToken{ + Token: t.AccessToken, + }, nil +} diff --git a/pkg/shared/util/sasl_config_test.go b/pkg/shared/util/sasl_config_test.go index 219338a9a9..cfe5c2eb8f 100644 --- a/pkg/shared/util/sasl_config_test.go +++ b/pkg/shared/util/sasl_config_test.go @@ -41,6 +41,14 @@ func TestSaslConfiguration(t *testing.T) { objectName: "password-secret-name", key: "password", }: "password", + { + objectName: "oauth-client-secret", + key: "clientid", + }: "clientid", + { + objectName: "oauth-client-secret", + key: "clientsecret", + }: "clientsecret", }, } @@ -60,6 +68,22 @@ func TestSaslConfiguration(t *testing.T) { Handshake: true, } + oauthcredentials := &dfv1.SASLOAuth{ + ClientID: &corev1.SecretKeySelector{ + LocalObjectReference: corev1.LocalObjectReference{ + Name: "oauth-client-secret", + }, + Key: "clientid", + }, + ClientSecret: &corev1.SecretKeySelector{ + LocalObjectReference: corev1.LocalObjectReference{ + Name: "oauth-client-secret", + }, + Key: "clientsecret", + }, + TokenEndpoint: "https://token-endpoint/token", + } + t.Run("Plain produces right values", func(t *testing.T) { plain := dfv1.SASLTypePlaintext config, err := getSASLStrategy(&dfv1.SASL{ @@ -109,6 +133,18 @@ func TestSaslConfiguration(t *testing.T) { assert.Nil(t, config) }) + + t.Run("OAuth produces right values", func(t *testing.T) { + oauth := dfv1.SASLTypeOAuth + config, err := getSASLStrategy(&dfv1.SASL{ + Mechanism: &oauth, + OAuth: oauthcredentials, + }, mockedVolumes) + assert.NoError(t, err) + assert.Equal(t, true, config.Enable) + assert.Equal(t, sarama.SASLTypeOAuth, string(config.Mechanism)) + assert.NotNil(t, config.TokenProvider) + }) } func TestGetGSSAPIConfig_InvalidAuthType(t *testing.T) { @@ -172,7 +208,6 @@ type mockGSSAPI struct { } func TestGetGSSAPIConfig(t *testing.T) { - authType := dfv1.KRB5UserAuth tests := []struct { name string diff --git a/rust/numaflow-models/src/models/mod.rs b/rust/numaflow-models/src/models/mod.rs index bfbcd121d0..1c6a0df925 100644 --- a/rust/numaflow-models/src/models/mod.rs +++ b/rust/numaflow-models/src/models/mod.rs @@ -138,6 +138,8 @@ pub mod sasl; pub use self::sasl::Sasl; pub mod sasl_plain; pub use self::sasl_plain::SaslPlain; +pub mod saslo_auth; +pub use self::saslo_auth::SasloAuth; pub mod scale; pub use self::scale::Scale; pub mod serving_source; diff --git a/rust/numaflow-models/src/models/sasl.rs b/rust/numaflow-models/src/models/sasl.rs index a2941f2e93..adc2c80e22 100644 --- a/rust/numaflow-models/src/models/sasl.rs +++ b/rust/numaflow-models/src/models/sasl.rs @@ -23,6 +23,8 @@ pub struct Sasl { /// SASL mechanism to use #[serde(rename = "mechanism")] pub mechanism: String, + #[serde(rename = "oauth", skip_serializing_if = "Option::is_none")] + pub oauth: Option>, #[serde(rename = "plain", skip_serializing_if = "Option::is_none")] pub plain: Option>, #[serde(rename = "scramsha256", skip_serializing_if = "Option::is_none")] @@ -36,6 +38,7 @@ impl Sasl { Sasl { gssapi: None, mechanism, + oauth: None, plain: None, scramsha256: None, scramsha512: None, diff --git a/rust/numaflow-models/src/models/saslo_auth.rs b/rust/numaflow-models/src/models/saslo_auth.rs new file mode 100644 index 0000000000..506002f654 --- /dev/null +++ b/rust/numaflow-models/src/models/saslo_auth.rs @@ -0,0 +1,42 @@ +/* +Copyright 2022 The Numaproj Authors. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +// Code generated by Openapi Generator. DO NOT EDIT. + +#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)] +pub struct SasloAuth { + #[serde(rename = "clientID")] + pub client_id: k8s_openapi::api::core::v1::SecretKeySelector, + #[serde(rename = "clientSecret")] + pub client_secret: k8s_openapi::api::core::v1::SecretKeySelector, + /// TokenEndpoint refers to the token endpoint + #[serde(rename = "tokenEndpoint")] + pub token_endpoint: String, +} + +impl SasloAuth { + pub fn new( + client_id: k8s_openapi::api::core::v1::SecretKeySelector, + client_secret: k8s_openapi::api::core::v1::SecretKeySelector, + token_endpoint: String, + ) -> SasloAuth { + SasloAuth { + client_id, + client_secret, + token_endpoint, + } + } +}