From 340627059538af49f095e497fdef1b9e888f393d Mon Sep 17 00:00:00 2001
From: Derek Wang
Date: Mon, 28 Mar 2022 15:18:02 -0700
Subject: [PATCH] fix: redis event source to be able to parameterize (#1754)
* fix: redis events to be able to use json
Signed-off-by: Derek Wang
---
api/event-source.html | 13 +
api/event-source.md | 12 +
api/jsonschema/schema.json | 4 +
api/openapi-spec/swagger.json | 4 +
eventsources/common/common.go | 4 +-
eventsources/common/webhook/webhook.go | 4 +-
eventsources/eventing.go | 4 +-
eventsources/sources/amqp/start.go | 4 +-
eventsources/sources/awssns/start.go | 2 +-
eventsources/sources/awssqs/start.go | 4 +-
eventsources/sources/azureeventshub/start.go | 2 +-
eventsources/sources/bitbucket/start.go | 2 +-
eventsources/sources/bitbucketserver/start.go | 2 +-
eventsources/sources/calendar/start.go | 2 +-
eventsources/sources/emitter/start.go | 2 +-
eventsources/sources/file/start.go | 6 +-
eventsources/sources/gcppubsub/start.go | 2 +-
eventsources/sources/generic/start.go | 4 +-
eventsources/sources/github/start.go | 2 +-
eventsources/sources/gitlab/start.go | 2 +-
eventsources/sources/hdfs/start.go | 4 +-
eventsources/sources/kafka/start.go | 8 +-
eventsources/sources/minio/start.go | 4 +-
eventsources/sources/mqtt/start.go | 2 +-
eventsources/sources/nats/start.go | 2 +-
eventsources/sources/nsq/start.go | 4 +-
eventsources/sources/pulsar/start.go | 4 +-
eventsources/sources/redis/start.go | 9 +-
eventsources/sources/redis/start_test.go | 57 ++
eventsources/sources/redisStream/start.go | 4 +-
eventsources/sources/resource/start.go | 2 +-
eventsources/sources/slack/start.go | 2 +-
eventsources/sources/storagegrid/start.go | 2 +-
eventsources/sources/stripe/start.go | 2 +-
eventsources/sources/webhook/start.go | 2 +-
go.mod | 5 +-
go.sum | 9 +-
pkg/apis/events/event-data.go | 2 +-
pkg/apis/eventsource/v1alpha1/generated.pb.go | 832 +++++++++---------
pkg/apis/eventsource/v1alpha1/generated.proto | 5 +
.../eventsource/v1alpha1/openapi_generated.go | 7 +
pkg/apis/eventsource/v1alpha1/types.go | 4 +
42 files changed, 600 insertions(+), 453 deletions(-)
create mode 100644 eventsources/sources/redis/start_test.go
diff --git a/api/event-source.html b/api/event-source.html
index fb12dc33fd..4360eb2f50 100644
--- a/api/event-source.html
+++ b/api/event-source.html
@@ -4269,6 +4269,19 @@ RedisEventSource
Filter
+
+
+jsonBody
+
+bool
+
+ |
+
+(Optional)
+ JSONBody specifies that all event body payload coming from this
+source will be JSON
+ |
+
RedisStreamEventSource
diff --git a/api/event-source.md b/api/event-source.md
index 2cea64f37e..deefc2b65e 100644
--- a/api/event-source.md
+++ b/api/event-source.md
@@ -4354,6 +4354,18 @@ Filter
+
+
+jsonBody bool
+ |
+
+(Optional)
+
+JSONBody specifies that all event body payload coming from this source
+will be JSON
+
+ |
+
diff --git a/api/jsonschema/schema.json b/api/jsonschema/schema.json
index f5542373ab..7b4f3025e4 100644
--- a/api/jsonschema/schema.json
+++ b/api/jsonschema/schema.json
@@ -2173,6 +2173,10 @@
"description": "HostAddress refers to the address of the Redis host/server",
"type": "string"
},
+ "jsonBody": {
+ "description": "JSONBody specifies that all event body payload coming from this source will be JSON",
+ "type": "boolean"
+ },
"metadata": {
"additionalProperties": {
"type": "string"
diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json
index f0928180f3..56164eef93 100644
--- a/api/openapi-spec/swagger.json
+++ b/api/openapi-spec/swagger.json
@@ -2161,6 +2161,10 @@
"description": "HostAddress refers to the address of the Redis host/server",
"type": "string"
},
+ "jsonBody": {
+ "description": "JSONBody specifies that all event body payload coming from this source will be JSON",
+ "type": "boolean"
+ },
"metadata": {
"description": "Metadata holds the user defined metadata which will passed along the event payload.",
"type": "object",
diff --git a/eventsources/common/common.go b/eventsources/common/common.go
index d4d23327e0..cf2b08bc4e 100644
--- a/eventsources/common/common.go
+++ b/eventsources/common/common.go
@@ -2,10 +2,10 @@ package common
import "github.com/cloudevents/sdk-go/v2/event"
-type Options func(*event.Event) error
+type Option func(*event.Event) error
// Option to set different ID for event
-func WithID(id string) Options {
+func WithID(id string) Option {
return func(e *event.Event) error {
e.SetID(id)
return nil
diff --git a/eventsources/common/webhook/webhook.go b/eventsources/common/webhook/webhook.go
index 25ee684a8d..9dc7c1c87a 100644
--- a/eventsources/common/webhook/webhook.go
+++ b/eventsources/common/webhook/webhook.go
@@ -178,7 +178,7 @@ func activateRoute(router Router, controller *Controller) {
}
// manageRouteChannels consumes data from route's data channel and stops the processing when the event source is stopped/removed
-func manageRouteChannels(router Router, dispatch func([]byte, ...eventsourcecommon.Options) error) {
+func manageRouteChannels(router Router, dispatch func([]byte, ...eventsourcecommon.Option) error) {
route := router.GetRoute()
logger := route.Logger
for {
@@ -199,7 +199,7 @@ func manageRouteChannels(router Router, dispatch func([]byte, ...eventsourcecomm
}
// ManagerRoute manages the lifecycle of a route
-func ManageRoute(ctx context.Context, router Router, controller *Controller, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func ManageRoute(ctx context.Context, router Router, controller *Controller, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
route := router.GetRoute()
logger := route.Logger
diff --git a/eventsources/eventing.go b/eventsources/eventing.go
index 73a0974c29..14fda3ae94 100644
--- a/eventsources/eventing.go
+++ b/eventsources/eventing.go
@@ -67,7 +67,7 @@ type EventingServer interface {
GetEventSourceType() apicommon.EventSourceType
// Function to start listening events.
- StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error
+ StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error
}
// GetEventingServers returns the mapping of event source type and list of eventing servers
@@ -477,7 +477,7 @@ func (e *EventSourceAdaptor) run(ctx context.Context, servers map[apicommon.Even
Jitter: &jitter,
}
if err = common.Connect(&backoff, func() error {
- return s.StartListening(ctx, func(data []byte, opts ...eventsourcecommon.Options) error {
+ return s.StartListening(ctx, func(data []byte, opts ...eventsourcecommon.Option) error {
if filter, ok := filters[s.GetEventName()]; ok {
proceed, err := filterEvent(data, filter)
if err != nil {
diff --git a/eventsources/sources/amqp/start.go b/eventsources/sources/amqp/start.go
index 648b41c745..bc5303bf46 100644
--- a/eventsources/sources/amqp/start.go
+++ b/eventsources/sources/amqp/start.go
@@ -61,7 +61,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
@@ -156,7 +156,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt
}
}
-func (el *EventListener) handleOne(amqpEventSource *v1alpha1.AMQPEventSource, msg amqplib.Delivery, dispatch func([]byte, ...eventsourcecommon.Options) error, log *zap.SugaredLogger) error {
+func (el *EventListener) handleOne(amqpEventSource *v1alpha1.AMQPEventSource, msg amqplib.Delivery, dispatch func([]byte, ...eventsourcecommon.Option) error, log *zap.SugaredLogger) error {
defer func(start time.Time) {
el.Metrics.EventProcessingDuration(el.GetEventSourceName(), el.GetEventName(), float64(time.Since(start)/time.Millisecond))
}(time.Now())
diff --git a/eventsources/sources/awssns/start.go b/eventsources/sources/awssns/start.go
index d6abb3a72a..713be9a44f 100644
--- a/eventsources/sources/awssns/start.go
+++ b/eventsources/sources/awssns/start.go
@@ -269,7 +269,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening starts an SNS event source
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
logger := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
diff --git a/eventsources/sources/awssqs/start.go b/eventsources/sources/awssqs/start.go
index 6f5d8891c3..0711fe39e7 100644
--- a/eventsources/sources/awssqs/start.go
+++ b/eventsources/sources/awssqs/start.go
@@ -61,7 +61,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
log.Info("started processing the AWS SQS event source...")
@@ -129,7 +129,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt
}
}
-func (el *EventListener) processMessage(ctx context.Context, message *sqslib.Message, dispatch func([]byte, ...eventsourcecommon.Options) error, ack func(), log *zap.SugaredLogger) {
+func (el *EventListener) processMessage(ctx context.Context, message *sqslib.Message, dispatch func([]byte, ...eventsourcecommon.Option) error, ack func(), log *zap.SugaredLogger) {
defer func(start time.Time) {
el.Metrics.EventProcessingDuration(el.GetEventSourceName(), el.GetEventName(), float64(time.Since(start)/time.Millisecond))
}(time.Now())
diff --git a/eventsources/sources/azureeventshub/start.go b/eventsources/sources/azureeventshub/start.go
index 540c572ee8..db80bc9a12 100644
--- a/eventsources/sources/azureeventshub/start.go
+++ b/eventsources/sources/azureeventshub/start.go
@@ -60,7 +60,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
log.Info("started processing the Azure Events Hub event source...")
diff --git a/eventsources/sources/bitbucket/start.go b/eventsources/sources/bitbucket/start.go
index 406e33af72..24b218cefb 100644
--- a/eventsources/sources/bitbucket/start.go
+++ b/eventsources/sources/bitbucket/start.go
@@ -126,7 +126,7 @@ func (router *Router) PostInactivate() error {
}
// StartListening starts an event source
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
defer sources.Recover(el.GetEventName())
bitbucketEventSource := &el.BitbucketEventSource
diff --git a/eventsources/sources/bitbucketserver/start.go b/eventsources/sources/bitbucketserver/start.go
index 0630d433e3..1a13d6ec38 100644
--- a/eventsources/sources/bitbucketserver/start.go
+++ b/eventsources/sources/bitbucketserver/start.go
@@ -161,7 +161,7 @@ func (router *Router) PostInactivate() error {
}
// StartListening starts an event source
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
defer sources.Recover(el.GetEventName())
bitbucketserverEventSource := &el.BitbucketServerEventSource
diff --git a/eventsources/sources/calendar/start.go b/eventsources/sources/calendar/start.go
index 4fceb8f4a7..5a025b117e 100644
--- a/eventsources/sources/calendar/start.go
+++ b/eventsources/sources/calendar/start.go
@@ -135,7 +135,7 @@ func (el *EventListener) getExecutionTime() (time.Time, error) {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
el.log = logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
el.log.Info("started processing the calendar event source...")
diff --git a/eventsources/sources/emitter/start.go b/eventsources/sources/emitter/start.go
index fb8ebe8032..46a1fc1fcf 100644
--- a/eventsources/sources/emitter/start.go
+++ b/eventsources/sources/emitter/start.go
@@ -59,7 +59,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
log.Info("started processing the Emitter event source...")
diff --git a/eventsources/sources/file/start.go b/eventsources/sources/file/start.go
index a0d0b8350b..7e9c88416a 100644
--- a/eventsources/sources/file/start.go
+++ b/eventsources/sources/file/start.go
@@ -61,7 +61,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
defer sources.Recover(el.GetEventName())
@@ -82,7 +82,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt
}
// listenEvents listen to file related events.
-func (el *EventListener) listenEvents(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error, log *zap.SugaredLogger) error {
+func (el *EventListener) listenEvents(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error, log *zap.SugaredLogger) error {
fileEventSource := &el.FileEventSource
// create new fs watcher
@@ -162,7 +162,7 @@ func (el *EventListener) listenEvents(ctx context.Context, dispatch func([]byte,
}
// listenEvents listen to file related events using polling.
-func (el *EventListener) listenEventsPolling(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error, log *zap.SugaredLogger) error {
+func (el *EventListener) listenEventsPolling(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error, log *zap.SugaredLogger) error {
fileEventSource := &el.FileEventSource
// create new fs watcher
diff --git a/eventsources/sources/gcppubsub/start.go b/eventsources/sources/gcppubsub/start.go
index 69af5d6c5a..9703dd15f4 100644
--- a/eventsources/sources/gcppubsub/start.go
+++ b/eventsources/sources/gcppubsub/start.go
@@ -66,7 +66,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening listens to GCP PubSub events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
// In order to listen events from GCP PubSub,
// 1. Parse the event source that contains configuration to connect to GCP PubSub
// 2. Create a new PubSub client
diff --git a/eventsources/sources/generic/start.go b/eventsources/sources/generic/start.go
index e50b6f2435..9555f11918 100644
--- a/eventsources/sources/generic/start.go
+++ b/eventsources/sources/generic/start.go
@@ -49,7 +49,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening listens to generic events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
logger := logging.FromContext(ctx).
With(zap.String(logging.LabelEventSourceType, string(el.GetEventSourceType())),
zap.String(logging.LabelEventName, el.GetEventName()),
@@ -95,7 +95,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt
}
}
-func (el *EventListener) handleOne(event *Event, dispatch func([]byte, ...eventsourcecommon.Options) error, logger *zap.SugaredLogger) error {
+func (el *EventListener) handleOne(event *Event, dispatch func([]byte, ...eventsourcecommon.Option) error, logger *zap.SugaredLogger) error {
defer func(start time.Time) {
el.Metrics.EventProcessingDuration(el.GetEventSourceName(), el.GetEventName(), float64(time.Since(start)/time.Millisecond))
}(time.Now())
diff --git a/eventsources/sources/github/start.go b/eventsources/sources/github/start.go
index 27e9e470e1..7cc14fbbec 100644
--- a/eventsources/sources/github/start.go
+++ b/eventsources/sources/github/start.go
@@ -214,7 +214,7 @@ func (router *Router) PostInactivate() error {
}
// StartListening starts an event source
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
logger := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
logger.Info("started processing the Github event source...")
diff --git a/eventsources/sources/gitlab/start.go b/eventsources/sources/gitlab/start.go
index 719f5a584c..e5b5f7040a 100644
--- a/eventsources/sources/gitlab/start.go
+++ b/eventsources/sources/gitlab/start.go
@@ -144,7 +144,7 @@ func (router *Router) PostInactivate() error {
}
// StartListening starts an event source
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
logger := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
logger.Info("started processing the Gitlab event source...")
diff --git a/eventsources/sources/hdfs/start.go b/eventsources/sources/hdfs/start.go
index 0d0698761b..3bc7583ec3 100644
--- a/eventsources/sources/hdfs/start.go
+++ b/eventsources/sources/hdfs/start.go
@@ -65,7 +65,7 @@ func (w *WatchableHDFS) GetFileID(fi os.FileInfo) interface{} {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
log.Info("started processing the Emitter event source...")
@@ -157,7 +157,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt
}
}
-func (el *EventListener) handleOne(event fsevent.Event, dispatch func([]byte, ...eventsourcecommon.Options) error, log *zap.SugaredLogger) error {
+func (el *EventListener) handleOne(event fsevent.Event, dispatch func([]byte, ...eventsourcecommon.Option) error, log *zap.SugaredLogger) error {
defer func(start time.Time) {
el.Metrics.EventProcessingDuration(el.GetEventSourceName(), el.GetEventName(), float64(time.Since(start)/time.Millisecond))
}(time.Now())
diff --git a/eventsources/sources/kafka/start.go b/eventsources/sources/kafka/start.go
index 4469a6d8b6..1fce2effd4 100644
--- a/eventsources/sources/kafka/start.go
+++ b/eventsources/sources/kafka/start.go
@@ -72,7 +72,7 @@ func verifyPartitionAvailable(part int32, partitions []int32) bool {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
defer sources.Recover(el.GetEventName())
@@ -87,7 +87,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt
}
}
-func (el *EventListener) consumerGroupConsumer(ctx context.Context, log *zap.SugaredLogger, kafkaEventSource *v1alpha1.KafkaEventSource, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) consumerGroupConsumer(ctx context.Context, log *zap.SugaredLogger, kafkaEventSource *v1alpha1.KafkaEventSource, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
config, err := getSaramaConfig(kafkaEventSource, log)
if err != nil {
return err
@@ -157,7 +157,7 @@ func (el *EventListener) consumerGroupConsumer(ctx context.Context, log *zap.Sug
return nil
}
-func (el *EventListener) partitionConsumer(ctx context.Context, log *zap.SugaredLogger, kafkaEventSource *v1alpha1.KafkaEventSource, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) partitionConsumer(ctx context.Context, log *zap.SugaredLogger, kafkaEventSource *v1alpha1.KafkaEventSource, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
defer sources.Recover(el.GetEventName())
log.Info("start kafka event source...")
@@ -320,7 +320,7 @@ func getSaramaConfig(kafkaEventSource *v1alpha1.KafkaEventSource, log *zap.Sugar
// Consumer represents a Sarama consumer group consumer
type Consumer struct {
ready chan bool
- dispatch func([]byte, ...eventsourcecommon.Options) error
+ dispatch func([]byte, ...eventsourcecommon.Option) error
logger *zap.SugaredLogger
kafkaEventSource *v1alpha1.KafkaEventSource
eventSourceName string
diff --git a/eventsources/sources/minio/start.go b/eventsources/sources/minio/start.go
index b787cbb7ed..7d254d553c 100644
--- a/eventsources/sources/minio/start.go
+++ b/eventsources/sources/minio/start.go
@@ -60,7 +60,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName(),
zap.String("bucketName", el.MinioEventSource.Bucket.Name))
@@ -106,7 +106,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt
return nil
}
-func (el *EventListener) handleOne(notification notification.Info, dispatch func([]byte, ...eventsourcecommon.Options) error, log *zap.SugaredLogger) error {
+func (el *EventListener) handleOne(notification notification.Info, dispatch func([]byte, ...eventsourcecommon.Option) error, log *zap.SugaredLogger) error {
defer func(start time.Time) {
el.Metrics.EventProcessingDuration(el.GetEventSourceName(), el.GetEventName(), float64(time.Since(start)/time.Millisecond))
}(time.Now())
diff --git a/eventsources/sources/mqtt/start.go b/eventsources/sources/mqtt/start.go
index d2b3a43b7b..6a2c03acab 100644
--- a/eventsources/sources/mqtt/start.go
+++ b/eventsources/sources/mqtt/start.go
@@ -59,7 +59,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
defer sources.Recover(el.GetEventName())
diff --git a/eventsources/sources/nats/start.go b/eventsources/sources/nats/start.go
index f679ae117c..d83f67ace2 100644
--- a/eventsources/sources/nats/start.go
+++ b/eventsources/sources/nats/start.go
@@ -59,7 +59,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
defer sources.Recover(el.GetEventName())
diff --git a/eventsources/sources/nsq/start.go b/eventsources/sources/nsq/start.go
index 63676d7bb0..9007e22ecb 100644
--- a/eventsources/sources/nsq/start.go
+++ b/eventsources/sources/nsq/start.go
@@ -63,14 +63,14 @@ type messageHandler struct {
eventSourceName string
eventName string
metrics *metrics.Metrics
- dispatch func([]byte, ...eventsourcecommon.Options) error
+ dispatch func([]byte, ...eventsourcecommon.Option) error
logger *zap.SugaredLogger
isJSON bool
metadata map[string]string
}
// StartListening listens NSQ events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
log.Info("started processing the NSQ event source...")
diff --git a/eventsources/sources/pulsar/start.go b/eventsources/sources/pulsar/start.go
index e61a54845d..e41d5afe17 100644
--- a/eventsources/sources/pulsar/start.go
+++ b/eventsources/sources/pulsar/start.go
@@ -58,7 +58,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening listens Pulsar events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
log.Info("started processing the Pulsar event source...")
@@ -172,7 +172,7 @@ consumeMessages:
return nil
}
-func (el *EventListener) handleOne(msg pulsar.Message, dispatch func([]byte, ...eventsourcecommon.Options) error, log *zap.SugaredLogger) error {
+func (el *EventListener) handleOne(msg pulsar.Message, dispatch func([]byte, ...eventsourcecommon.Option) error, log *zap.SugaredLogger) error {
defer func(start time.Time) {
el.Metrics.EventProcessingDuration(el.GetEventSourceName(), el.GetEventName(), float64(time.Since(start)/time.Millisecond))
}(time.Now())
diff --git a/eventsources/sources/redis/start.go b/eventsources/sources/redis/start.go
index fab15d91d9..ed5a20679a 100644
--- a/eventsources/sources/redis/start.go
+++ b/eventsources/sources/redis/start.go
@@ -59,7 +59,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening listens events published by redis
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
log.Info("started processing the Redis event source...")
@@ -126,7 +126,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt
}
}
-func (el *EventListener) handleOne(message *redis.Message, dispatch func([]byte, ...eventsourcecommon.Options) error, log *zap.SugaredLogger) error {
+func (el *EventListener) handleOne(message *redis.Message, dispatch func([]byte, ...eventsourcecommon.Option) error, log *zap.SugaredLogger) error {
defer func(start time.Time) {
el.Metrics.EventProcessingDuration(el.GetEventSourceName(), el.GetEventName(), float64(time.Since(start)/time.Millisecond))
}(time.Now())
@@ -138,6 +138,11 @@ func (el *EventListener) handleOne(message *redis.Message, dispatch func([]byte,
Body: message.Payload,
Metadata: el.RedisEventSource.Metadata,
}
+ if el.RedisEventSource.JSONBody {
+ body := []byte(message.Payload)
+ eventData.Body = (*json.RawMessage)(&body)
+ }
+
eventBody, err := json.Marshal(&eventData)
if err != nil {
return errors.Wrap(err, "failed to marshal the event data, rejecting the event...")
diff --git a/eventsources/sources/redis/start_test.go b/eventsources/sources/redis/start_test.go
new file mode 100644
index 0000000000..6267890f4b
--- /dev/null
+++ b/eventsources/sources/redis/start_test.go
@@ -0,0 +1,57 @@
+package redis
+
+import (
+ "encoding/json"
+ "testing"
+
+ "github.com/go-redis/redis"
+ "github.com/stretchr/testify/assert"
+ "go.uber.org/zap/zaptest"
+
+ eventsourcecommon "github.com/argoproj/argo-events/eventsources/common"
+ metrics "github.com/argoproj/argo-events/metrics"
+ "github.com/argoproj/argo-events/pkg/apis/events"
+ "github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1"
+)
+
+func Test_HandleOne(t *testing.T) {
+ el := &EventListener{
+ EventSourceName: "esName",
+ EventName: "eName",
+ RedisEventSource: v1alpha1.RedisEventSource{},
+ Metrics: metrics.NewMetrics("ns"),
+ }
+
+ msg := &redis.Message{
+ Channel: "ch",
+ Pattern: "p",
+ Payload: `{"a": "b"}`,
+ }
+
+ getDispatcher := func(isJson bool) func(d []byte, opts ...eventsourcecommon.Option) error {
+ return func(d []byte, opts ...eventsourcecommon.Option) error {
+ eventData := &events.RedisEventData{}
+ err := json.Unmarshal(d, eventData)
+ assert.NoError(t, err)
+ assert.Equal(t, msg.Pattern, eventData.Pattern)
+ assert.Equal(t, msg.Channel, eventData.Channel)
+ if !isJson {
+ s, ok := eventData.Body.(string)
+ assert.True(t, ok)
+ assert.Equal(t, msg.Payload, s)
+ } else {
+ s, ok := eventData.Body.(map[string]interface{})
+ assert.True(t, ok)
+ assert.Equal(t, "b", s["a"])
+ }
+ return nil
+ }
+ }
+
+ err := el.handleOne(msg, getDispatcher(el.RedisEventSource.JSONBody), zaptest.NewLogger(t).Sugar())
+ assert.NoError(t, err)
+
+ el.RedisEventSource.JSONBody = true
+ err = el.handleOne(msg, getDispatcher(el.RedisEventSource.JSONBody), zaptest.NewLogger(t).Sugar())
+ assert.NoError(t, err)
+}
diff --git a/eventsources/sources/redisStream/start.go b/eventsources/sources/redisStream/start.go
index 1f47608359..e4a94f69c5 100644
--- a/eventsources/sources/redisStream/start.go
+++ b/eventsources/sources/redisStream/start.go
@@ -59,7 +59,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening listens for new data on specified redis streams
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
log.Info("started processing the Redis stream event source...")
@@ -190,7 +190,7 @@ func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byt
}
}
-func (el *EventListener) handleOne(stream string, message redis.XMessage, dispatch func([]byte, ...eventsourcecommon.Options) error, log *zap.SugaredLogger) error {
+func (el *EventListener) handleOne(stream string, message redis.XMessage, dispatch func([]byte, ...eventsourcecommon.Option) error, log *zap.SugaredLogger) error {
defer func(start time.Time) {
el.Metrics.EventProcessingDuration(el.GetEventSourceName(), el.GetEventName(), float64(time.Since(start)/time.Millisecond))
}(time.Now())
diff --git a/eventsources/sources/resource/start.go b/eventsources/sources/resource/start.go
index f1bf0257e8..12937a46e5 100644
--- a/eventsources/sources/resource/start.go
+++ b/eventsources/sources/resource/start.go
@@ -77,7 +77,7 @@ func (el *EventListener) GetEventSourceType() apicommon.EventSourceType {
}
// StartListening watches resource updates and consume those events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
defer sources.Recover(el.GetEventName())
diff --git a/eventsources/sources/slack/start.go b/eventsources/sources/slack/start.go
index 75b40de13c..27e6b7eefa 100644
--- a/eventsources/sources/slack/start.go
+++ b/eventsources/sources/slack/start.go
@@ -312,7 +312,7 @@ func (rc *Router) verifyRequest(request *http.Request) error {
}
// StartListening starts an event source
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
diff --git a/eventsources/sources/storagegrid/start.go b/eventsources/sources/storagegrid/start.go
index 4a6e6ff1a9..6e79bcdb12 100644
--- a/eventsources/sources/storagegrid/start.go
+++ b/eventsources/sources/storagegrid/start.go
@@ -337,7 +337,7 @@ func (router *Router) PostInactivate() error {
}
// StartListening starts an event source
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
log.Info("started processing the Storage Grid event source...")
diff --git a/eventsources/sources/stripe/start.go b/eventsources/sources/stripe/start.go
index 1d4d0bc7f5..d9f3a42e3b 100644
--- a/eventsources/sources/stripe/start.go
+++ b/eventsources/sources/stripe/start.go
@@ -191,7 +191,7 @@ func filterEvent(event *stripe.Event, filters []string) bool {
}
// StartListening starts an event source
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
log.Info("started processing the Stripe event source...")
diff --git a/eventsources/sources/webhook/start.go b/eventsources/sources/webhook/start.go
index e81ea57ec0..ffaf81df78 100644
--- a/eventsources/sources/webhook/start.go
+++ b/eventsources/sources/webhook/start.go
@@ -144,7 +144,7 @@ func (router *Router) PostInactivate() error {
}
// StartListening starts listening events
-func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Options) error) error {
+func (el *EventListener) StartListening(ctx context.Context, dispatch func([]byte, ...eventsourcecommon.Option) error) error {
log := logging.FromContext(ctx).
With(logging.LabelEventSourceType, el.GetEventSourceType(), logging.LabelEventName, el.GetEventName())
log.Info("started processing the webhook event source...")
diff --git a/go.mod b/go.mod
index 1ec2d683fb..f2c84449d5 100644
--- a/go.mod
+++ b/go.mod
@@ -89,6 +89,7 @@ require (
github.com/99designs/keyring v1.1.6 // indirect
github.com/AthenZ/athenz v1.10.39 // indirect
github.com/DataDog/zstd v1.5.0 // indirect
+ github.com/andybalholm/brotli v1.0.4 // indirect
github.com/apache/pulsar-client-go/oauth2 v0.0.0-20220120090717-25e59572242e // indirect
github.com/danieljoos/wincred v1.0.2 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
@@ -200,7 +201,7 @@ require (
github.com/json-iterator/go v1.1.12 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
- github.com/klauspost/compress v1.14.4 // indirect
+ github.com/klauspost/compress v1.15.0 // indirect
github.com/klauspost/cpuid v1.3.1 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
@@ -246,7 +247,7 @@ require (
github.com/tidwall/pretty v1.2.0 // indirect
github.com/toqueteos/webbrowser v1.2.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
- github.com/valyala/fasthttp v1.9.0 // indirect
+ github.com/valyala/fasthttp v1.34.0 // indirect
github.com/xanzy/ssh-agent v0.3.0 // indirect
github.com/xdg-go/scram v1.1.1
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
diff --git a/go.sum b/go.sum
index 15f3628152..cfb5683e60 100644
--- a/go.sum
+++ b/go.sum
@@ -166,6 +166,8 @@ github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk5
github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129 h1:MzBOUgng9orim59UnfUTLRjMpd09C5uEVQ6RPGeCaVI=
github.com/andres-erbsen/clock v0.0.0-20160526145045-9e14626cd129/go.mod h1:rFgpPQZYZ8vdbc+48xibu8ALc3yeyd64IhHS+PU6Yyg=
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo29Kk6CurOXKm700vrz8f0KW0JNfpkRJY/8=
+github.com/andybalholm/brotli v1.0.4 h1:V7DdXeJtZscaqfNuAdSRuRFzuiKlHSC/Zh3zl9qY3JY=
+github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig=
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 h1:kFOfPq6dUM1hTo4JG6LR5AXSUEsOjtdm0kw0FtQtMJA=
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=
github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
@@ -848,8 +850,9 @@ github.com/klauspost/compress v1.10.8/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYs
github.com/klauspost/compress v1.13.4/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg=
github.com/klauspost/compress v1.13.5/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
-github.com/klauspost/compress v1.14.4 h1:eijASRJcobkVtSt81Olfh7JX43osYLwy5krOJo6YEu4=
github.com/klauspost/compress v1.14.4/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
+github.com/klauspost/compress v1.15.0 h1:xqfchp4whNFxn5A4XFyyYtitiWI8Hy5EW59jEwcyL6U=
+github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
github.com/klauspost/cpuid v1.2.1/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek=
github.com/klauspost/cpuid v1.2.3/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek=
github.com/klauspost/cpuid v1.3.1 h1:5JNjFYYQrZeKRJ0734q51WCEEn2huer72Dc7K+R/b6s=
@@ -1212,10 +1215,12 @@ github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGr
github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI=
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
-github.com/valyala/fasthttp v1.9.0 h1:hNpmUdy/+ZXYpGy0OBfm7K0UQTzb73W0T0U4iJIVrMw=
github.com/valyala/fasthttp v1.9.0/go.mod h1:FstJa9V+Pj9vQ7OJie2qMHdwemEDaDiSdBnvPM1Su9w=
+github.com/valyala/fasthttp v1.34.0 h1:d3AAQJ2DRcxJYHm7OXNXtXt2as1vMDfxeIcFvhmGGm4=
+github.com/valyala/fasthttp v1.34.0/go.mod h1:epZA5N+7pY6ZaEKRmstzOuYJx9HI8DI1oaCGZpdH4h0=
github.com/valyala/fasttemplate v0.0.0-20170224212429-dcecefd839c4/go.mod h1:50wTf68f99/Zt14pr046Tgt3Lp2vLyFZKzbFXTOabXw=
github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio=
+github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc=
github.com/vektah/gqlparser v1.1.2/go.mod h1:1ycwN7Ij5njmMkPPAOaRFY4rET2Enx7IkVv3vaXspKw=
github.com/xanzy/go-gitlab v0.60.0 h1:HaIlc14k4t9eJjAhY0Gmq2fBHgKd1MthBn3+vzDtsbA=
github.com/xanzy/go-gitlab v0.60.0/go.mod h1:F0QEXwmqiBUxCgJm8fE9S+1veX4XC9Z4cfaAbqwk4YM=
diff --git a/pkg/apis/events/event-data.go b/pkg/apis/events/event-data.go
index 2d1abf9f52..4375a7f523 100644
--- a/pkg/apis/events/event-data.go
+++ b/pkg/apis/events/event-data.go
@@ -237,7 +237,7 @@ type RedisEventData struct {
// Message pattern
Pattern string `json:"pattern"`
// Message body
- Body string `json:"body"`
+ Body interface{} `json:"body"`
// Metadata holds the user defined metadata which will passed along the event payload.
Metadata map[string]string `json:"metadata,omitempty"`
}
diff --git a/pkg/apis/eventsource/v1alpha1/generated.pb.go b/pkg/apis/eventsource/v1alpha1/generated.pb.go
index de5a86e0c7..52f6f352bf 100644
--- a/pkg/apis/eventsource/v1alpha1/generated.pb.go
+++ b/pkg/apis/eventsource/v1alpha1/generated.pb.go
@@ -1587,407 +1587,407 @@ func init() {
}
var fileDescriptor_c9ac5d6cd016403b = []byte{
- // 6390 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x5d, 0x6c, 0x24, 0xc7,
- 0x71, 0xb0, 0x86, 0xdc, 0x5d, 0xee, 0x16, 0xff, 0x8e, 0x7d, 0xa7, 0xd3, 0x8a, 0xb6, 0xee, 0x0e,
- 0x2b, 0xf8, 0x70, 0xfa, 0x3e, 0x99, 0x17, 0x29, 0x71, 0x2c, 0x5b, 0xb6, 0x8c, 0xe5, 0xcf, 0x51,
- 0xd4, 0x91, 0x3c, 0xb2, 0x96, 0xa7, 0x1f, 0xcb, 0x96, 0x3c, 0x3b, 0xdb, 0x5c, 0x8e, 0x39, 0x3b,
- 0xb3, 0x9c, 0x99, 0xe5, 0x1d, 0x0f, 0x88, 0x6d, 0x18, 0x48, 0x62, 0x4b, 0xfe, 0x53, 0x12, 0x3b,
- 0x01, 0x02, 0xbf, 0x24, 0x81, 0x81, 0x20, 0x4f, 0x79, 0x71, 0x9e, 0x03, 0x04, 0x89, 0x83, 0xe4,
- 0xc1, 0x79, 0x33, 0x6c, 0xe0, 0x60, 0x5f, 0x80, 0x3c, 0x25, 0x0f, 0x41, 0x9e, 0x12, 0xe4, 0x21,
- 0xe8, 0x9f, 0xe9, 0xe9, 0x99, 0x1d, 0xf2, 0xb8, 0xe4, 0xec, 0x5d, 0x28, 0xe4, 0x6d, 0xb7, 0xaa,
- 0xba, 0xaa, 0x66, 0xba, 0xba, 0xaa, 0xab, 0xbb, 0xab, 0x07, 0xd6, 0xda, 0x76, 0xb8, 0xd3, 0x6b,
- 0xce, 0x59, 0x5e, 0xe7, 0xba, 0xe9, 0xb7, 0xbd, 0xae, 0xef, 0x7d, 0x99, 0xff, 0xf8, 0x38, 0xdd,
- 0xa7, 0x6e, 0x18, 0x5c, 0xef, 0xee, 0xb6, 0xaf, 0x9b, 0x5d, 0x3b, 0xb8, 0x2e, 0xfe, 0x7b, 0x3d,
- 0xdf, 0xa2, 0xd7, 0xf7, 0x5f, 0x30, 0x9d, 0xee, 0x8e, 0xf9, 0xc2, 0xf5, 0x36, 0x75, 0xa9, 0x6f,
- 0x86, 0xb4, 0x35, 0xd7, 0xf5, 0xbd, 0xd0, 0x23, 0x9f, 0x8d, 0xd9, 0xcd, 0x45, 0xec, 0xf8, 0x8f,
- 0x77, 0x45, 0xf3, 0xb9, 0xee, 0x6e, 0x7b, 0x8e, 0xb1, 0x9b, 0xd3, 0xd8, 0xcd, 0x45, 0xec, 0x66,
- 0x3f, 0x77, 0x6c, 0x6d, 0x2c, 0xaf, 0xd3, 0xf1, 0xdc, 0xb4, 0xfc, 0xd9, 0x8f, 0x6b, 0x0c, 0xda,
- 0x5e, 0xdb, 0xbb, 0xce, 0xc1, 0xcd, 0xde, 0x36, 0xff, 0xc7, 0xff, 0xf0, 0x5f, 0x92, 0xbc, 0xb6,
- 0xfb, 0x52, 0x30, 0x67, 0x7b, 0x8c, 0xe5, 0x75, 0xcb, 0xf3, 0xd9, 0x83, 0xf5, 0xb1, 0xfc, 0x8d,
- 0x98, 0xa6, 0x63, 0x5a, 0x3b, 0xb6, 0x4b, 0xfd, 0x83, 0x58, 0x8f, 0x0e, 0x0d, 0xcd, 0xac, 0x56,
- 0xd7, 0x0f, 0x6b, 0xe5, 0xf7, 0xdc, 0xd0, 0xee, 0xd0, 0xbe, 0x06, 0xbf, 0xf9, 0xb0, 0x06, 0x81,
- 0xb5, 0x43, 0x3b, 0x66, 0xba, 0x5d, 0xed, 0x3f, 0x0d, 0x98, 0xa9, 0xaf, 0x6d, 0x6e, 0x2c, 0x78,
- 0x6e, 0xd0, 0xeb, 0xd0, 0x05, 0xcf, 0xdd, 0xb6, 0xdb, 0xe4, 0x13, 0x30, 0x6e, 0x09, 0x80, 0xbf,
- 0x65, 0xb6, 0xab, 0xc6, 0x15, 0xe3, 0x5a, 0x65, 0xfe, 0xfc, 0x4f, 0xee, 0x5f, 0x7e, 0xe2, 0xc1,
- 0xfd, 0xcb, 0xe3, 0x0b, 0x31, 0x0a, 0x75, 0x3a, 0xf2, 0x1c, 0x8c, 0x99, 0xbd, 0xd0, 0xab, 0x5b,
- 0xbb, 0xd5, 0x91, 0x2b, 0xc6, 0xb5, 0xf2, 0xfc, 0xb4, 0x6c, 0x32, 0x56, 0x17, 0x60, 0x8c, 0xf0,
- 0xe4, 0x3a, 0x54, 0xe8, 0x5d, 0xcb, 0xe9, 0x05, 0xf6, 0x3e, 0xad, 0x8e, 0x72, 0xe2, 0x19, 0x49,
- 0x5c, 0x59, 0x8a, 0x10, 0x18, 0xd3, 0x30, 0xde, 0xae, 0xb7, 0xea, 0x59, 0xa6, 0x53, 0x2d, 0x24,
- 0x79, 0xaf, 0x0b, 0x30, 0x46, 0x78, 0x72, 0x15, 0x4a, 0xae, 0xf7, 0x86, 0x69, 0x87, 0xd5, 0x22,
- 0xa7, 0x9c, 0x92, 0x94, 0xa5, 0x75, 0x0e, 0x45, 0x89, 0xad, 0xfd, 0xeb, 0x38, 0x4c, 0xb3, 0x67,
- 0x5f, 0x62, 0xc6, 0xd1, 0xe0, 0xb6, 0x44, 0x9e, 0x81, 0xd1, 0x9e, 0xef, 0xc8, 0x27, 0x1e, 0x97,
- 0x0d, 0x47, 0x6f, 0xe3, 0x2a, 0x32, 0x38, 0x79, 0x09, 0x26, 0xe8, 0x5d, 0x6b, 0xc7, 0x74, 0xdb,
- 0x74, 0xdd, 0xec, 0x50, 0xfe, 0x98, 0x95, 0xf9, 0x0b, 0x92, 0x6e, 0x62, 0x49, 0xc3, 0x61, 0x82,
- 0x52, 0x6f, 0xb9, 0x75, 0xd0, 0x15, 0xcf, 0x9c, 0xd1, 0x92, 0xe1, 0x30, 0x41, 0x49, 0x5e, 0x04,
- 0xf0, 0xbd, 0x5e, 0x68, 0xbb, 0xed, 0x9b, 0xf4, 0x80, 0x3f, 0x7c, 0x65, 0x9e, 0xc8, 0x76, 0x80,
- 0x0a, 0x83, 0x1a, 0x15, 0xf9, 0x2d, 0x98, 0xb1, 0x3c, 0xd7, 0xa5, 0x56, 0x68, 0x7b, 0xee, 0xbc,
- 0x69, 0xed, 0x7a, 0xdb, 0xdb, 0xfc, 0x6d, 0x8c, 0xbf, 0xf8, 0xd2, 0xdc, 0xb1, 0x07, 0x99, 0x18,
- 0x25, 0x73, 0xb2, 0xfd, 0xfc, 0x93, 0x0f, 0xee, 0x5f, 0x9e, 0x59, 0x48, 0xb3, 0xc5, 0x7e, 0x49,
- 0xe4, 0x79, 0x28, 0x7f, 0x39, 0xf0, 0xdc, 0x79, 0xaf, 0x75, 0x50, 0x2d, 0xf1, 0x3e, 0x38, 0x27,
- 0x15, 0x2e, 0xbf, 0xd6, 0xb8, 0xb5, 0xce, 0xe0, 0xa8, 0x28, 0xc8, 0x6d, 0x18, 0x0d, 0x9d, 0xa0,
- 0x3a, 0xc6, 0xd5, 0xfb, 0xf4, 0xc0, 0xea, 0x6d, 0xad, 0x36, 0x84, 0xd9, 0xce, 0x8f, 0xb1, 0xbe,
- 0xda, 0x5a, 0x6d, 0x20, 0xe3, 0x47, 0xde, 0x33, 0xa0, 0xcc, 0xc6, 0x57, 0xcb, 0x0c, 0xcd, 0x6a,
- 0xf9, 0xca, 0xe8, 0xb5, 0xf1, 0x17, 0xbf, 0x30, 0x77, 0x2a, 0x07, 0x33, 0x97, 0xb2, 0x96, 0xb9,
- 0x35, 0xc9, 0x7e, 0xc9, 0x0d, 0xfd, 0x83, 0xf8, 0x19, 0x23, 0x30, 0x2a, 0xf9, 0xe4, 0x0f, 0x0d,
- 0x98, 0x8e, 0x7a, 0x75, 0x91, 0x5a, 0x8e, 0xe9, 0xd3, 0x6a, 0x85, 0x3f, 0xf0, 0x9b, 0x79, 0xe8,
- 0x94, 0xe4, 0x2c, 0x5f, 0xc7, 0xf9, 0x07, 0xf7, 0x2f, 0x4f, 0xa7, 0x50, 0x98, 0xd6, 0x82, 0xbc,
- 0x6f, 0xc0, 0xc4, 0x5e, 0x8f, 0xf6, 0x94, 0x5a, 0xc0, 0xd5, 0xba, 0x9d, 0x83, 0x5a, 0x9b, 0x1a,
- 0x5b, 0xa9, 0xd3, 0x39, 0x66, 0xec, 0x3a, 0x1c, 0x13, 0xc2, 0xc9, 0x57, 0xa1, 0xc2, 0xff, 0xcf,
- 0xdb, 0x6e, 0xab, 0x3a, 0xce, 0x35, 0xc1, 0xbc, 0x34, 0x61, 0x3c, 0xa5, 0x1a, 0x93, 0xcc, 0xcf,
- 0x28, 0x20, 0xc6, 0x32, 0xc9, 0x1d, 0x18, 0x93, 0x2e, 0xad, 0x3a, 0xc1, 0xc5, 0x6f, 0xe4, 0x20,
- 0x3e, 0xe1, 0x5d, 0xe7, 0xc7, 0x99, 0xd7, 0x92, 0x20, 0x8c, 0xa4, 0x91, 0x37, 0xa1, 0x60, 0xf6,
- 0xc2, 0x9d, 0xea, 0xe4, 0x09, 0x87, 0xc1, 0xbc, 0x19, 0xd8, 0x56, 0xbd, 0x17, 0xee, 0xcc, 0x97,
- 0x1f, 0xdc, 0xbf, 0x5c, 0x60, 0xbf, 0x90, 0x73, 0x24, 0x08, 0x95, 0x9e, 0xef, 0x34, 0xa8, 0xe5,
- 0xd3, 0xb0, 0x3a, 0xc5, 0xd9, 0x7f, 0x6c, 0x4e, 0xc4, 0x0b, 0xc6, 0x61, 0x8e, 0x85, 0xae, 0xb9,
- 0xfd, 0x17, 0xe6, 0x04, 0xc5, 0x4d, 0x7a, 0xd0, 0xa0, 0x0e, 0xb5, 0x42, 0xcf, 0x17, 0xaf, 0xe9,
- 0x36, 0xae, 0x0a, 0x0c, 0xc6, 0x6c, 0x48, 0x08, 0xa5, 0x6d, 0xdb, 0x09, 0xa9, 0x5f, 0x9d, 0xce,
- 0xe5, 0x2d, 0x69, 0xa3, 0xea, 0x06, 0xe7, 0x3b, 0x0f, 0xcc, 0x63, 0x8b, 0xdf, 0x28, 0x65, 0xcd,
- 0xbe, 0x0c, 0x93, 0x89, 0x21, 0x47, 0xce, 0xc1, 0xe8, 0x2e, 0x3d, 0x10, 0xee, 0x1a, 0xd9, 0x4f,
- 0x72, 0x01, 0x8a, 0xfb, 0xa6, 0xd3, 0x93, 0xae, 0x19, 0xc5, 0x9f, 0x4f, 0x8f, 0xbc, 0x64, 0xd4,
- 0x7e, 0x6a, 0xc0, 0xd3, 0x87, 0x0e, 0x16, 0x16, 0x5f, 0x5a, 0x3d, 0xdf, 0x6c, 0x3a, 0x94, 0x73,
- 0xd3, 0xe2, 0xcb, 0xa2, 0x00, 0x63, 0x84, 0x67, 0x0e, 0x99, 0x85, 0xb1, 0x45, 0xea, 0xd0, 0x90,
- 0xca, 0x48, 0xa7, 0x1c, 0x72, 0x5d, 0x61, 0x50, 0xa3, 0x62, 0x1e, 0xd1, 0x76, 0x43, 0xea, 0xbb,
- 0xa6, 0x23, 0xc3, 0x9d, 0xf2, 0x16, 0x2b, 0x12, 0x8e, 0x8a, 0x42, 0x8b, 0x60, 0x85, 0x23, 0x23,
- 0xd8, 0x67, 0xe1, 0x7c, 0x86, 0x75, 0x6b, 0xcd, 0x8d, 0x23, 0x9b, 0xff, 0xe9, 0x08, 0x5c, 0xcc,
- 0x1e, 0xa7, 0xe4, 0x0a, 0x14, 0x5c, 0x16, 0xe0, 0x44, 0x20, 0x9c, 0x90, 0x0c, 0x0a, 0x3c, 0xb0,
- 0x71, 0x8c, 0xfe, 0xc2, 0x46, 0x06, 0x7a, 0x61, 0xa3, 0xc7, 0x7a, 0x61, 0x89, 0x09, 0x42, 0xe1,
- 0x18, 0x13, 0x84, 0x63, 0x46, 0x7d, 0xc6, 0xd8, 0xf4, 0xdb, 0xbd, 0x0e, 0x33, 0x42, 0x1e, 0x9c,
- 0x2a, 0x31, 0xe3, 0x7a, 0x84, 0xc0, 0x98, 0xa6, 0xf6, 0x5e, 0x11, 0x9e, 0xae, 0xdf, 0xeb, 0xf9,
- 0x94, 0xdb, 0x68, 0xf0, 0x6a, 0xaf, 0xa9, 0x4f, 0x18, 0xae, 0x40, 0x61, 0x7b, 0xaf, 0xe5, 0xa6,
- 0x5f, 0xd4, 0x8d, 0xcd, 0xc5, 0x75, 0xe4, 0x18, 0xd2, 0x85, 0xf3, 0xc1, 0x8e, 0xe9, 0xd3, 0x56,
- 0xdd, 0xb2, 0x68, 0x10, 0xdc, 0xa4, 0x07, 0x6a, 0xea, 0x70, 0xec, 0x81, 0xf8, 0xd4, 0x83, 0xfb,
- 0x97, 0xcf, 0x37, 0xfa, 0xb9, 0x60, 0x16, 0x6b, 0xd2, 0x82, 0xe9, 0x14, 0x98, 0xbf, 0xf4, 0x63,
- 0x4b, 0xe3, 0x81, 0x23, 0x25, 0x0d, 0xd3, 0x2c, 0x99, 0x01, 0xec, 0xf4, 0x9a, 0xfc, 0x59, 0xc4,
- 0xa4, 0x44, 0x19, 0xc0, 0xab, 0x02, 0x8c, 0x11, 0x9e, 0xfc, 0x81, 0x1e, 0x8a, 0x8b, 0x3c, 0x14,
- 0x6f, 0x9f, 0xd6, 0xad, 0x1e, 0xd6, 0x23, 0x03, 0x04, 0xe5, 0xd8, 0x89, 0x95, 0xce, 0x8a, 0x13,
- 0xfb, 0xb9, 0x01, 0x93, 0xf3, 0x76, 0xd8, 0xec, 0x59, 0xbb, 0x34, 0x64, 0x3e, 0x9e, 0xf8, 0x50,
- 0x6c, 0x32, 0xd7, 0xcf, 0xdb, 0x8f, 0xbf, 0xb8, 0x79, 0xca, 0x67, 0x50, 0xcc, 0xe3, 0x78, 0x52,
- 0x79, 0x70, 0xff, 0x72, 0x91, 0xff, 0x45, 0x21, 0x8a, 0xdc, 0x06, 0xf0, 0x58, 0x68, 0xd9, 0xf2,
- 0x76, 0xa9, 0x3b, 0x98, 0x25, 0x4f, 0xb1, 0x31, 0x7f, 0xab, 0x1e, 0x35, 0x46, 0x8d, 0x51, 0xed,
- 0xc7, 0x06, 0x90, 0x7e, 0xf9, 0xe4, 0x16, 0x94, 0x7b, 0x01, 0x73, 0x8c, 0xd2, 0x1f, 0x1d, 0x5b,
- 0xd6, 0x04, 0xeb, 0xf7, 0xdb, 0xb2, 0x29, 0x2a, 0x26, 0x8c, 0x61, 0xd7, 0x0c, 0x82, 0x3b, 0x9e,
- 0xdf, 0x1a, 0x4c, 0x79, 0xce, 0x70, 0x43, 0x36, 0x45, 0xc5, 0xa4, 0xf6, 0xb7, 0x25, 0xb8, 0xa0,
- 0x14, 0xd7, 0xbd, 0xc3, 0x6b, 0x40, 0x5a, 0xdc, 0x9f, 0xbd, 0xea, 0x79, 0xbb, 0xb7, 0xdc, 0x1b,
- 0xb6, 0x6b, 0x07, 0x3b, 0xd2, 0x2b, 0xcf, 0x4a, 0xcb, 0x24, 0x8b, 0x7d, 0x14, 0x98, 0xd1, 0x8a,
- 0x7c, 0x57, 0x1f, 0x44, 0x23, 0x7c, 0x10, 0x99, 0x79, 0x75, 0xf6, 0x49, 0xc7, 0xcf, 0xd8, 0x1d,
- 0xda, 0xdc, 0xf1, 0xbc, 0x5d, 0xe9, 0x5f, 0xd6, 0x4e, 0xa9, 0xcf, 0x1b, 0x82, 0xdb, 0x82, 0xe7,
- 0x86, 0xf4, 0x6e, 0x28, 0x26, 0x4a, 0x12, 0x86, 0x91, 0x28, 0xf2, 0x65, 0x39, 0x51, 0x2a, 0x70,
- 0x91, 0xab, 0x79, 0xbd, 0x82, 0xcc, 0xa9, 0x53, 0x0d, 0x4a, 0xa2, 0x15, 0xf7, 0x5a, 0x15, 0x31,
- 0x9e, 0x85, 0xd7, 0x41, 0x89, 0x21, 0xcf, 0x42, 0xd1, 0xbb, 0xe3, 0x4a, 0x27, 0x52, 0x99, 0x9f,
- 0x94, 0x2f, 0xac, 0x78, 0x8b, 0x01, 0x51, 0xe0, 0x58, 0x08, 0x64, 0x8a, 0x51, 0x8b, 0xd9, 0x13,
- 0x4f, 0x75, 0xb4, 0x24, 0x6e, 0x43, 0x61, 0x50, 0xa3, 0x22, 0xaf, 0xc0, 0x94, 0x4f, 0xbb, 0x5e,
- 0x60, 0x87, 0x9e, 0x7f, 0xd0, 0x70, 0x7a, 0xed, 0x6a, 0x99, 0xb7, 0xbb, 0x28, 0xdb, 0x4d, 0x61,
- 0x02, 0x8b, 0x29, 0x6a, 0xcd, 0xbd, 0x55, 0xce, 0x8a, 0x7b, 0xfb, 0xef, 0x32, 0xcc, 0xaa, 0x1e,
- 0x69, 0x50, 0x7f, 0x9f, 0xfa, 0xfa, 0x70, 0xd2, 0x0c, 0xce, 0x78, 0x74, 0x06, 0xf7, 0x99, 0x44,
- 0xdf, 0x89, 0x94, 0xff, 0xa3, 0xb2, 0x0f, 0x2e, 0x2c, 0xd2, 0xae, 0x4f, 0x2d, 0x33, 0xa4, 0xad,
- 0x43, 0x7a, 0xf1, 0xd5, 0xbe, 0x5e, 0x14, 0xa9, 0xff, 0x15, 0xc9, 0xa1, 0x1a, 0x73, 0x78, 0x48,
- 0x7f, 0xfe, 0x9e, 0x01, 0x13, 0x0a, 0x64, 0xd3, 0xa0, 0x5a, 0xe0, 0x4e, 0xe0, 0xcd, 0xbc, 0x46,
- 0x80, 0x78, 0xdf, 0xb1, 0x12, 0xf1, 0xea, 0x04, 0x6a, 0x52, 0x31, 0xa1, 0xc3, 0xb1, 0x46, 0xc8,
- 0x9b, 0x30, 0x6e, 0xf2, 0x69, 0x83, 0x88, 0x17, 0xa5, 0x41, 0x5c, 0xee, 0xf4, 0x83, 0xfb, 0x97,
- 0xc7, 0xeb, 0x71, 0x6b, 0xd4, 0x59, 0x91, 0x77, 0x60, 0x52, 0xf6, 0x92, 0x4c, 0x6f, 0xc6, 0x06,
- 0xe1, 0x3d, 0xf3, 0xe0, 0xfe, 0xe5, 0xc9, 0x37, 0xf4, 0xf6, 0x98, 0x64, 0x47, 0x5e, 0x87, 0x8b,
- 0xcd, 0xe8, 0xf5, 0x04, 0xfc, 0xf5, 0xcc, 0x9b, 0x01, 0xbd, 0x8d, 0xab, 0x72, 0x28, 0x5e, 0x92,
- 0x6f, 0xe8, 0x62, 0xea, 0x25, 0x4a, 0x2a, 0x3c, 0xa4, 0xf5, 0x21, 0x71, 0xa1, 0x72, 0xa2, 0xb8,
- 0xf0, 0x7d, 0x3d, 0x2e, 0x00, 0x37, 0x89, 0x76, 0xbe, 0x26, 0x71, 0xda, 0xd9, 0xd5, 0xf8, 0x59,
- 0x71, 0x3f, 0xdf, 0x35, 0xe0, 0xe9, 0x43, 0x87, 0x43, 0xca, 0x87, 0x1b, 0x27, 0xf4, 0xe1, 0x23,
- 0x83, 0xf8, 0xf0, 0xda, 0x9f, 0x15, 0xe1, 0xfc, 0x82, 0xe9, 0x50, 0xb7, 0x65, 0x26, 0x3c, 0xe1,
- 0xf3, 0x50, 0x0e, 0xac, 0x1d, 0xda, 0xea, 0x39, 0x51, 0x8e, 0xa6, 0xba, 0xa2, 0x21, 0xe1, 0xa8,
- 0x28, 0x54, 0xf6, 0xb9, 0x6f, 0x3a, 0x52, 0x7e, 0x32, 0xfb, 0xdc, 0x57, 0xd9, 0xe7, 0xbe, 0xe9,
- 0x90, 0x4f, 0xc3, 0x94, 0x4c, 0xab, 0x3c, 0x77, 0xd1, 0x0c, 0x69, 0x50, 0x1d, 0xe5, 0x43, 0x9b,
- 0x30, 0x7d, 0x97, 0x12, 0x18, 0x4c, 0x51, 0x32, 0x49, 0xa1, 0xdd, 0xa1, 0xf7, 0x3c, 0x37, 0xca,
- 0x0a, 0x94, 0xa4, 0x2d, 0x09, 0x47, 0x45, 0x41, 0xbe, 0xd3, 0x9f, 0x17, 0x7c, 0xe9, 0x94, 0x56,
- 0x92, 0xf1, 0xb2, 0x06, 0xb0, 0xd9, 0xaf, 0x1b, 0x30, 0xde, 0xa5, 0x7e, 0x60, 0x07, 0x21, 0x75,
- 0x2d, 0x2a, 0x5d, 0xd5, 0xad, 0x3c, 0x2c, 0x77, 0x23, 0x66, 0x2b, 0x9c, 0x9a, 0x06, 0x40, 0x5d,
- 0xa8, 0x36, 0x70, 0xca, 0x67, 0x65, 0xe0, 0xdc, 0x85, 0x0b, 0x0b, 0x66, 0x68, 0xed, 0xf4, 0xba,
- 0x62, 0xfd, 0xa0, 0xe7, 0x9b, 0xa1, 0xed, 0xb9, 0x2c, 0x47, 0xa4, 0xae, 0xd9, 0x74, 0x68, 0x2b,
- 0xbd, 0xaa, 0xb2, 0x24, 0xc0, 0x18, 0xe1, 0xc9, 0x27, 0x60, 0xbc, 0x63, 0xde, 0x5d, 0x94, 0x2d,
- 0xa5, 0x99, 0xaa, 0x3d, 0x87, 0xb5, 0x18, 0x85, 0x3a, 0x5d, 0xed, 0x2b, 0x70, 0x41, 0x88, 0x5c,
- 0x33, 0xbb, 0xda, 0x1b, 0x3d, 0xc6, 0x02, 0xc6, 0x22, 0x9c, 0xb3, 0x7c, 0x6a, 0x86, 0x74, 0x65,
- 0x7b, 0xdd, 0x0b, 0x97, 0xee, 0xda, 0x41, 0x28, 0x57, 0x32, 0xaa, 0x92, 0xfa, 0xdc, 0x42, 0x0a,
- 0x8f, 0x7d, 0x2d, 0x6a, 0xdf, 0x1b, 0x03, 0xb2, 0xd4, 0xb1, 0xc3, 0x30, 0x39, 0x53, 0xb9, 0x0a,
- 0xa5, 0xa6, 0xef, 0xed, 0x52, 0x5f, 0x2a, 0xa0, 0x56, 0x23, 0xe6, 0x39, 0x14, 0x25, 0x96, 0xf9,
- 0x14, 0x6b, 0xc7, 0x74, 0x5d, 0xea, 0xc4, 0x73, 0x0b, 0xe5, 0x53, 0x16, 0x14, 0x06, 0x35, 0x2a,
- 0xbe, 0x3b, 0x23, 0xfe, 0xf1, 0xe4, 0x7b, 0x34, 0xb5, 0x3b, 0x13, 0xa3, 0x50, 0xa7, 0x4b, 0xa4,
- 0x51, 0x85, 0xbc, 0xd3, 0xa8, 0x62, 0x0e, 0x69, 0x54, 0xf6, 0xae, 0x45, 0xe9, 0xb1, 0xec, 0x5a,
- 0x8c, 0x1d, 0x77, 0xd7, 0xa2, 0x9c, 0xf3, 0xae, 0xc5, 0xb7, 0x75, 0x97, 0x58, 0xe1, 0x2e, 0xf1,
- 0xdd, 0xd3, 0x8e, 0xff, 0x3e, 0xf3, 0x3c, 0x51, 0x14, 0x87, 0xb3, 0xe2, 0x8c, 0x3e, 0x18, 0x81,
- 0x73, 0x69, 0x97, 0x4b, 0xee, 0xc1, 0x98, 0x25, 0x3c, 0x94, 0x4c, 0x1d, 0x1a, 0xa7, 0x0e, 0x34,
- 0xfd, 0xfe, 0x4e, 0x2e, 0xed, 0x0b, 0x0c, 0x46, 0x02, 0xc9, 0xd7, 0x0c, 0xa8, 0x58, 0x91, 0x93,
- 0x92, 0x2b, 0x0e, 0xa7, 0x16, 0x9f, 0xe1, 0xf4, 0xc4, 0x7a, 0xbd, 0xc2, 0x60, 0x2c, 0xb4, 0xf6,
- 0x8b, 0x11, 0x18, 0xd7, 0xfd, 0xd3, 0x97, 0x34, 0x2b, 0x13, 0xef, 0xe3, 0xd7, 0xb4, 0xb1, 0xab,
- 0xb6, 0x90, 0x63, 0x25, 0x18, 0x35, 0x1b, 0xcd, 0xb7, 0x9a, 0x6c, 0x6a, 0xc3, 0x3a, 0x27, 0xf6,
- 0x53, 0x31, 0x4c, 0x33, 0x9c, 0x2e, 0x14, 0x82, 0x2e, 0xb5, 0xe4, 0xe3, 0xae, 0xe7, 0x67, 0x36,
- 0x8d, 0x2e, 0xb5, 0x62, 0x87, 0xce, 0xfe, 0x21, 0x97, 0x44, 0xee, 0x42, 0x29, 0x08, 0xcd, 0xb0,
- 0x17, 0xc8, 0xd5, 0x88, 0x1c, 0x4d, 0xb5, 0xc1, 0xf9, 0xc6, 0x5e, 0x5c, 0xfc, 0x47, 0x29, 0xaf,
- 0xb6, 0x0c, 0x33, 0x7d, 0x76, 0xcd, 0x5c, 0x3b, 0xbd, 0xdb, 0xf5, 0x69, 0xc0, 0x66, 0x47, 0xe9,
- 0xe9, 0xe2, 0x92, 0xc2, 0xa0, 0x46, 0x55, 0xfb, 0xa5, 0x01, 0xd3, 0x1a, 0xa7, 0x55, 0x3b, 0x08,
- 0xc9, 0x17, 0xfa, 0xba, 0x6a, 0xee, 0x78, 0x5d, 0xc5, 0x5a, 0xf3, 0x8e, 0x52, 0xe3, 0x3b, 0x82,
- 0x68, 0xdd, 0xe4, 0x41, 0xd1, 0x0e, 0x69, 0x27, 0x90, 0x2b, 0x4a, 0xaf, 0xe5, 0xf7, 0xce, 0xe2,
- 0x95, 0x90, 0x15, 0x26, 0x00, 0x85, 0x9c, 0xda, 0x37, 0x3e, 0x9b, 0x78, 0x44, 0xd6, 0x7f, 0x7c,
- 0x73, 0x9c, 0x81, 0xe6, 0x7b, 0xc1, 0x7a, 0x1c, 0xb4, 0xe3, 0xcd, 0x71, 0x0d, 0x87, 0x09, 0x4a,
- 0xb2, 0x07, 0xe5, 0x90, 0x76, 0xba, 0x8e, 0x19, 0x46, 0x2b, 0xea, 0xcb, 0xa7, 0x7c, 0x82, 0x2d,
- 0xc9, 0x4e, 0x44, 0xa9, 0xe8, 0x1f, 0x2a, 0x31, 0xa4, 0x03, 0x63, 0x2c, 0x99, 0xb3, 0x2d, 0x2a,
- 0xed, 0xec, 0xc6, 0x29, 0x25, 0x36, 0x04, 0x37, 0xe1, 0x3c, 0xe4, 0x1f, 0x8c, 0x64, 0x90, 0xaf,
- 0x40, 0xb1, 0x63, 0xbb, 0xb6, 0x27, 0xb3, 0xfd, 0xb7, 0xf2, 0x1d, 0x48, 0x73, 0x6b, 0x8c, 0xb7,
- 0x08, 0x03, 0xaa, 0xbf, 0x38, 0x0c, 0x85, 0x58, 0xbe, 0x8d, 0x6e, 0xc9, 0x49, 0xb5, 0x9c, 0xa3,
- 0x7f, 0x21, 0x67, 0x1d, 0xd4, 0x9c, 0x3d, 0x19, 0x8d, 0x22, 0x30, 0x2a, 0xf9, 0xe4, 0x1e, 0x14,
- 0xb6, 0x6d, 0x87, 0xcd, 0xcb, 0xf3, 0x58, 0xf9, 0x48, 0xeb, 0x71, 0xc3, 0x76, 0xa8, 0xd0, 0x21,
- 0xde, 0xc7, 0xb1, 0x1d, 0x8a, 0x5c, 0x26, 0x7f, 0x11, 0x3e, 0x15, 0x3c, 0xaa, 0x63, 0x43, 0x79,
- 0x11, 0x28, 0xd9, 0xa7, 0x5e, 0x44, 0x04, 0x46, 0x25, 0x9f, 0xfc, 0x8e, 0x11, 0x2f, 0x85, 0x89,
- 0xb3, 0x0d, 0x6f, 0xe7, 0xac, 0x8b, 0x5c, 0x17, 0x11, 0xaa, 0xa8, 0x69, 0x7b, 0xdf, 0xe2, 0xd8,
- 0x3d, 0x28, 0x98, 0x9d, 0xbd, 0xae, 0x9c, 0xaa, 0xe4, 0xdd, 0x23, 0xf5, 0xce, 0x5e, 0x37, 0xd5,
- 0x23, 0xf5, 0xb5, 0xcd, 0x0d, 0xe4, 0x32, 0xd9, 0xd0, 0xd8, 0x35, 0xb7, 0x77, 0xa3, 0x55, 0x8f,
- 0xbc, 0x87, 0xc6, 0x4d, 0xc6, 0x3b, 0x35, 0x34, 0x38, 0x0c, 0x85, 0x58, 0xf6, 0xec, 0x9d, 0xbd,
- 0x30, 0xac, 0x8e, 0x0f, 0xe5, 0xd9, 0xd7, 0xf6, 0xc2, 0x30, 0xf5, 0xec, 0x6b, 0x9b, 0x5b, 0x5b,
- 0xc8, 0x65, 0x32, 0xd9, 0xae, 0x19, 0x06, 0xd5, 0x89, 0xa1, 0xc8, 0x5e, 0x37, 0xc3, 0x20, 0x25,
- 0x7b, 0xbd, 0xbe, 0xd5, 0x40, 0x2e, 0x93, 0xec, 0xc3, 0x68, 0xe0, 0x06, 0xd5, 0x49, 0x2e, 0xfa,
- 0x8d, 0x9c, 0x45, 0x37, 0x5c, 0x29, 0x59, 0x9d, 0xbe, 0x6a, 0xac, 0x37, 0x90, 0x09, 0xe4, 0x72,
- 0xf7, 0x82, 0xea, 0xd4, 0x70, 0xe4, 0xee, 0xf5, 0xc9, 0xdd, 0x64, 0x72, 0xf7, 0x02, 0xf2, 0x75,
- 0x03, 0x4a, 0xdd, 0x5e, 0xb3, 0xd1, 0x6b, 0x56, 0xa7, 0xb9, 0xec, 0xcf, 0xe7, 0x2c, 0x7b, 0x83,
- 0x33, 0x17, 0xe2, 0xd5, 0x1c, 0x43, 0x00, 0x51, 0x4a, 0xe6, 0x4a, 0x08, 0xa9, 0xd5, 0x73, 0x43,
- 0x51, 0x62, 0x99, 0x73, 0x4b, 0x29, 0x21, 0x80, 0x28, 0x25, 0x47, 0x4a, 0x38, 0x66, 0xb3, 0x3a,
- 0x33, 0x2c, 0x25, 0x1c, 0x33, 0x43, 0x09, 0xc7, 0x14, 0x4a, 0x38, 0x66, 0x93, 0x99, 0xfe, 0x4e,
- 0x6b, 0x3b, 0xa8, 0x92, 0xa1, 0x98, 0xfe, 0xab, 0xad, 0xed, 0xb4, 0xe9, 0xbf, 0xba, 0x78, 0xa3,
- 0x81, 0x5c, 0x26, 0x73, 0x39, 0x81, 0x63, 0x5a, 0xbb, 0xd5, 0xf3, 0x43, 0x71, 0x39, 0x0d, 0xc6,
- 0x3b, 0xe5, 0x72, 0x38, 0x0c, 0x85, 0x58, 0xf2, 0x03, 0x03, 0xc6, 0x83, 0xd0, 0xf3, 0xcd, 0x36,
- 0x5d, 0xf6, 0xed, 0x56, 0xf5, 0x42, 0x3e, 0x19, 0x62, 0x5a, 0x8d, 0x58, 0x82, 0x50, 0x46, 0xad,
- 0x2e, 0x68, 0x18, 0xd4, 0x15, 0x21, 0x7f, 0x62, 0xc0, 0x94, 0x99, 0xd8, 0x93, 0xaf, 0x3e, 0xc9,
- 0x75, 0x6b, 0xe6, 0x1d, 0x12, 0x92, 0x1b, 0xff, 0x5c, 0x3d, 0xb5, 0x9a, 0x9a, 0x44, 0x62, 0x4a,
- 0x23, 0x6e, 0xbe, 0x41, 0xe8, 0xdb, 0x5d, 0x5a, 0xbd, 0x38, 0x14, 0xf3, 0x6d, 0x70, 0xe6, 0x29,
- 0xf3, 0x15, 0x40, 0x94, 0x92, 0x79, 0xe8, 0xa6, 0x22, 0x25, 0xaf, 0x3e, 0x35, 0x94, 0xd0, 0x1d,
- 0x25, 0xfc, 0xc9, 0xd0, 0x2d, 0xa1, 0x18, 0x09, 0x67, 0xb6, 0xec, 0xd3, 0x96, 0x1d, 0x54, 0xab,
- 0x43, 0xb1, 0x65, 0x64, 0xbc, 0x53, 0xb6, 0xcc, 0x61, 0x28, 0xc4, 0x32, 0x77, 0xee, 0x06, 0x7b,
- 0xd5, 0xa7, 0x87, 0xe2, 0xce, 0xd7, 0x83, 0xbd, 0x94, 0x3b, 0x5f, 0x6f, 0x6c, 0x22, 0x13, 0x28,
- 0xdd, 0xb9, 0x13, 0x98, 0x7e, 0x75, 0x76, 0x48, 0xee, 0x9c, 0x31, 0xef, 0x73, 0xe7, 0x0c, 0x88,
- 0x52, 0x32, 0xb7, 0x02, 0x7e, 0x18, 0xdb, 0xb6, 0xaa, 0x1f, 0x19, 0x8a, 0x15, 0x2c, 0x0b, 0xee,
- 0x29, 0x2b, 0x90, 0x50, 0x8c, 0x84, 0x93, 0x6b, 0x6c, 0x56, 0xdb, 0x75, 0x6c, 0xcb, 0x0c, 0xaa,
- 0x1f, 0xbd, 0x62, 0x5c, 0x2b, 0x8a, 0xc4, 0x07, 0x25, 0x0c, 0x15, 0x96, 0xfc, 0xc8, 0x80, 0xe9,
- 0xd4, 0x7e, 0x56, 0xf5, 0x19, 0xae, 0xba, 0x95, 0xb3, 0xea, 0xf3, 0x49, 0x29, 0xe2, 0x11, 0x9e,
- 0x92, 0x8f, 0x30, 0x9d, 0xde, 0xa1, 0x49, 0x2b, 0x45, 0xbe, 0x63, 0x40, 0x45, 0xc1, 0xaa, 0x97,
- 0xb8, 0x8a, 0x5f, 0x1c, 0x96, 0x8a, 0x42, 0x39, 0x75, 0x84, 0x4c, 0xc1, 0x31, 0x56, 0x81, 0x7b,
- 0x6d, 0x6e, 0xf3, 0x8d, 0xd0, 0xa7, 0x66, 0xa7, 0x7a, 0x79, 0x28, 0x5e, 0x1b, 0x63, 0x09, 0x29,
- 0xaf, 0xad, 0x61, 0x50, 0x57, 0x64, 0xb6, 0x07, 0x10, 0x27, 0x80, 0x19, 0x8b, 0x6c, 0x9b, 0xfa,
- 0x22, 0xdb, 0xf8, 0x8b, 0x2f, 0x0f, 0xbc, 0xcc, 0xd9, 0xf8, 0xf5, 0xba, 0x1f, 0xda, 0xdb, 0xa6,
- 0x15, 0x6a, 0x2b, 0x74, 0xb3, 0xdf, 0x35, 0x60, 0x32, 0x91, 0xf4, 0x65, 0x88, 0xde, 0x49, 0x8a,
- 0xc6, 0xfc, 0xf7, 0x85, 0x74, 0x8d, 0x7e, 0xd7, 0x80, 0x8a, 0x4a, 0xff, 0x32, 0xb4, 0x69, 0x25,
- 0xb5, 0x39, 0xed, 0x72, 0x16, 0x17, 0x95, 0xad, 0x09, 0x7b, 0x37, 0x89, 0x3c, 0x70, 0xf8, 0xef,
- 0x46, 0x89, 0xcb, 0xd6, 0xe8, 0x9b, 0x06, 0x4c, 0xe8, 0xd9, 0x60, 0x86, 0x42, 0x56, 0x52, 0xa1,
- 0x7c, 0x8f, 0x65, 0xa4, 0xfb, 0x49, 0x25, 0x85, 0xc3, 0xef, 0xa7, 0xd4, 0x81, 0xff, 0xd4, 0x5b,
- 0x81, 0x38, 0x43, 0xcc, 0x50, 0x85, 0x26, 0x55, 0x39, 0xed, 0x26, 0xa2, 0x90, 0x75, 0xb8, 0xf5,
- 0xaa, 0x74, 0x71, 0xf8, 0x6f, 0x85, 0xa5, 0xa1, 0x87, 0x68, 0xf2, 0x0d, 0x03, 0x2a, 0x2a, 0x79,
- 0x1c, 0xfe, 0x4b, 0x61, 0x49, 0xa9, 0x98, 0xde, 0xf5, 0xab, 0xf2, 0xdb, 0x06, 0x94, 0xa3, 0x64,
- 0x72, 0xf8, 0x26, 0xdb, 0x58, 0x6f, 0x1c, 0xf2, 0x4a, 0xb8, 0x1e, 0x7b, 0x8f, 0x4c, 0x8f, 0xcd,
- 0xc3, 0xf4, 0x78, 0xdf, 0x80, 0x71, 0x2d, 0xd1, 0xcc, 0x50, 0x65, 0x3b, 0xa9, 0xca, 0x69, 0xd7,
- 0xcf, 0xa5, 0xb0, 0xc3, 0xb5, 0xd1, 0x32, 0xce, 0xe1, 0x6b, 0x23, 0x85, 0x1d, 0xa9, 0x4d, 0x94,
- 0x7a, 0x3e, 0x12, 0x6d, 0x98, 0xb0, 0xc3, 0x87, 0xb3, 0x4a, 0x43, 0x87, 0x3f, 0x9c, 0x59, 0x7a,
- 0x7b, 0x84, 0x93, 0x8b, 0x73, 0xd2, 0xe1, 0x8f, 0x67, 0x21, 0x2b, 0x5b, 0x97, 0xef, 0x1b, 0x70,
- 0x2e, 0x9d, 0x98, 0x66, 0x68, 0xb4, 0x9b, 0xd4, 0xe8, 0xb4, 0x75, 0x4c, 0xba, 0xc4, 0x6c, 0xbd,
- 0xfe, 0xd8, 0x80, 0xf3, 0x19, 0x49, 0x69, 0x86, 0x6a, 0x6e, 0x52, 0xb5, 0x37, 0x87, 0x75, 0x04,
- 0x3e, 0x6d, 0xd9, 0x5a, 0x56, 0x3a, 0x7c, 0xcb, 0x96, 0xc2, 0xb2, 0xb5, 0xf9, 0xb6, 0x01, 0x13,
- 0x7a, 0x76, 0x9a, 0xa1, 0x4e, 0x3b, 0xa9, 0xce, 0x66, 0xee, 0x9b, 0xdf, 0x69, 0xfb, 0x8e, 0xf3,
- 0xd4, 0xe1, 0xdb, 0xb7, 0x90, 0x75, 0x78, 0x9c, 0x88, 0xb2, 0xd6, 0xe1, 0xc7, 0x89, 0xf5, 0xc6,
- 0xe6, 0x91, 0x71, 0x42, 0x65, 0xb0, 0x8f, 0x22, 0x4e, 0x70, 0x61, 0x87, 0x5b, 0x8c, 0x9e, 0xc9,
- 0x0e, 0xdf, 0x62, 0x22, 0x69, 0xd9, 0xfa, 0xfc, 0xd0, 0xd0, 0x8e, 0xfa, 0x6b, 0xe9, 0x69, 0x86,
- 0x5e, 0x5e, 0x52, 0xaf, 0xb7, 0x86, 0x76, 0x28, 0x53, 0xd7, 0xef, 0x03, 0x03, 0xa6, 0x92, 0xb9,
- 0x69, 0x86, 0x66, 0x76, 0x52, 0xb3, 0xc6, 0x10, 0xca, 0x08, 0xd2, 0x9e, 0x3b, 0x9d, 0x9c, 0x0e,
- 0xdf, 0x73, 0xeb, 0x12, 0x33, 0xf5, 0xaa, 0x85, 0x89, 0x6d, 0x7b, 0xb1, 0xa7, 0x4f, 0xde, 0x55,
- 0xa7, 0x08, 0xc4, 0x66, 0xfb, 0x27, 0x07, 0xcf, 0x79, 0x8f, 0x3e, 0x2c, 0xf0, 0xd7, 0x05, 0x98,
- 0x4e, 0xe5, 0x7f, 0xbc, 0xda, 0x8d, 0xfd, 0xe5, 0xa5, 0xe1, 0x46, 0xb2, 0x28, 0x6d, 0x29, 0x42,
- 0x60, 0x4c, 0x43, 0x3e, 0x30, 0x60, 0xfa, 0x8e, 0x19, 0x5a, 0x3b, 0x1b, 0x66, 0xb8, 0x23, 0x4e,
- 0x7c, 0xe4, 0x34, 0x1b, 0x78, 0x23, 0xc9, 0x35, 0x5e, 0x76, 0x49, 0x21, 0x30, 0x2d, 0x9f, 0x3c,
- 0x07, 0x63, 0x5d, 0xcf, 0x71, 0x6c, 0xb7, 0x2d, 0x6b, 0xfc, 0xd4, 0xa2, 0xd3, 0x86, 0x00, 0x63,
- 0x84, 0x4f, 0xd6, 0x66, 0x17, 0x72, 0xd9, 0x4b, 0x4d, 0xbd, 0xd2, 0x13, 0x1d, 0x71, 0x2a, 0x9e,
- 0x95, 0x23, 0x4e, 0xff, 0x54, 0x00, 0xd2, 0xef, 0xa7, 0x1e, 0x76, 0x7b, 0xc1, 0x55, 0x28, 0x59,
- 0xb1, 0xa9, 0x68, 0x87, 0x12, 0x65, 0x8f, 0x4a, 0xac, 0x38, 0x2e, 0x1c, 0x50, 0xab, 0xe7, 0xd3,
- 0xfe, 0x62, 0x55, 0x01, 0x47, 0x45, 0x91, 0x38, 0x36, 0x57, 0x78, 0xe8, 0xb1, 0xb9, 0x6f, 0xf7,
- 0x1f, 0xf9, 0x7d, 0x37, 0x77, 0x87, 0x3d, 0x40, 0xe7, 0xdf, 0xe6, 0xb5, 0xa9, 0x3b, 0xb2, 0x7c,
- 0xa0, 0x34, 0x70, 0x29, 0x5b, 0x5d, 0x35, 0x46, 0x8d, 0x91, 0x66, 0x53, 0x63, 0x67, 0xc5, 0xa6,
- 0xfe, 0xd1, 0x80, 0x29, 0x91, 0x24, 0xd5, 0xbb, 0xdd, 0x05, 0x9f, 0xb6, 0x02, 0xf6, 0x72, 0xba,
- 0xbe, 0xbd, 0x6f, 0x86, 0x34, 0x3a, 0xf1, 0x3e, 0xd8, 0xcb, 0xd9, 0x50, 0x8d, 0x51, 0x63, 0x44,
- 0x9e, 0x85, 0xa2, 0xd9, 0xed, 0xae, 0x2c, 0x72, 0x1d, 0x46, 0xe3, 0xdd, 0x81, 0x3a, 0x03, 0xa2,
- 0xc0, 0x91, 0x57, 0x60, 0xca, 0x76, 0x83, 0xd0, 0x74, 0x1c, 0x7e, 0xb4, 0x6e, 0x65, 0x91, 0x9b,
- 0xe2, 0x68, 0xbc, 0xd7, 0xb3, 0x92, 0xc0, 0x62, 0x8a, 0xba, 0xf6, 0x37, 0xe3, 0x30, 0xd3, 0x97,
- 0xf3, 0x91, 0x59, 0x18, 0xb1, 0xc5, 0x59, 0xe4, 0xd1, 0x79, 0x90, 0x9c, 0x46, 0x56, 0x16, 0x71,
- 0xc4, 0x6e, 0xe9, 0xd5, 0x45, 0x23, 0x8f, 0xae, 0xba, 0xe8, 0xe3, 0x51, 0xf9, 0x98, 0x38, 0xc7,
- 0xab, 0xdc, 0x6d, 0x5c, 0x16, 0x94, 0x28, 0x24, 0xfb, 0x0c, 0x40, 0x5c, 0x22, 0x20, 0x8f, 0xd8,
- 0x67, 0x14, 0x23, 0xc5, 0x65, 0x05, 0xa8, 0xd1, 0x1f, 0xab, 0x5a, 0xe7, 0x16, 0x94, 0xcd, 0xae,
- 0x7d, 0x82, 0x52, 0x1d, 0xbe, 0x6f, 0x50, 0xdf, 0x58, 0x11, 0x75, 0x3a, 0x8a, 0xc9, 0xd0, 0x8b,
- 0x74, 0x74, 0x77, 0x55, 0x7e, 0xa8, 0xbb, 0xba, 0x0a, 0x25, 0xd3, 0x0a, 0xed, 0x7d, 0x2a, 0xcb,
- 0x6d, 0x94, 0x13, 0xac, 0x73, 0x28, 0x4a, 0xac, 0xbc, 0x03, 0x27, 0x8c, 0x82, 0x32, 0xf4, 0xdd,
- 0x81, 0x13, 0xa1, 0x50, 0xa7, 0x23, 0x2f, 0xc3, 0xa4, 0x30, 0x9a, 0xa8, 0x50, 0x68, 0x9c, 0x37,
- 0x7c, 0x52, 0x36, 0x9c, 0x5c, 0xd6, 0x91, 0x98, 0xa4, 0x25, 0x75, 0x98, 0x16, 0x80, 0xdb, 0x5d,
- 0xc7, 0x33, 0x5b, 0xac, 0xf9, 0x44, 0xd2, 0x2a, 0x96, 0x93, 0x68, 0x4c, 0xd3, 0x1f, 0x52, 0x59,
- 0x34, 0x79, 0xa2, 0xca, 0xa2, 0x6f, 0xe9, 0xbe, 0x5a, 0x9c, 0xba, 0x78, 0x27, 0xef, 0x55, 0x98,
- 0x01, 0x5c, 0xf5, 0x7b, 0xe9, 0xfa, 0x37, 0x71, 0x18, 0xe3, 0xb4, 0xae, 0x95, 0x0d, 0xaf, 0x96,
- 0x5e, 0xe1, 0x76, 0xac, 0xba, 0xb7, 0x4f, 0xc2, 0xa4, 0xe7, 0xb7, 0x4d, 0xd7, 0xbe, 0xc7, 0x1d,
- 0x4e, 0xc0, 0x0f, 0x65, 0x54, 0x84, 0xb5, 0xde, 0xd2, 0x11, 0x98, 0xa4, 0x23, 0xf7, 0xa0, 0xd2,
- 0x8e, 0xbc, 0x6c, 0x75, 0x26, 0x17, 0x3f, 0x93, 0xf4, 0xda, 0xe2, 0x14, 0xb0, 0x82, 0x61, 0x2c,
- 0x4e, 0x8b, 0x4a, 0xe4, 0xac, 0x44, 0xa5, 0x7f, 0x19, 0xe3, 0x6e, 0x3c, 0xb9, 0x58, 0xf6, 0x98,
- 0x0a, 0x41, 0x3f, 0x05, 0x15, 0x59, 0xda, 0x25, 0x63, 0x57, 0x65, 0xfe, 0x23, 0xd2, 0x54, 0xce,
- 0xf7, 0xd5, 0x81, 0xae, 0x2c, 0x62, 0x4c, 0xad, 0x39, 0xde, 0xd1, 0xe3, 0x96, 0x49, 0x16, 0xf2,
- 0x2b, 0x93, 0x6c, 0xc0, 0x93, 0xa2, 0xcc, 0xa6, 0xd1, 0x58, 0x7d, 0x9d, 0xfa, 0xf6, 0xb6, 0x6d,
- 0x89, 0x2a, 0x1b, 0x71, 0x55, 0xc6, 0x33, 0xf2, 0x21, 0x9e, 0x5c, 0xca, 0x22, 0xc2, 0xec, 0xb6,
- 0xd2, 0xd3, 0x39, 0xa6, 0xf2, 0x74, 0xa5, 0x3e, 0x4f, 0x17, 0x23, 0x31, 0x49, 0x7b, 0x88, 0x9b,
- 0x2a, 0x9f, 0xde, 0x4d, 0x55, 0xf2, 0x72, 0x53, 0x49, 0x8b, 0x1b, 0xc0, 0x4d, 0x5d, 0x83, 0xb2,
- 0xec, 0xf7, 0x80, 0x1f, 0x4c, 0xac, 0xc8, 0x7a, 0x17, 0x09, 0x43, 0x85, 0x65, 0x1d, 0x1e, 0xf0,
- 0x9e, 0x14, 0x1d, 0x3e, 0x3e, 0x70, 0x87, 0x37, 0xe2, 0xd6, 0xa8, 0xb3, 0xd2, 0x06, 0xfa, 0xc4,
- 0x59, 0x19, 0xe8, 0x3f, 0xac, 0xc0, 0x74, 0x6a, 0x25, 0x3a, 0x33, 0xcb, 0x35, 0x1e, 0x73, 0x96,
- 0x7b, 0x05, 0x0a, 0x21, 0x9b, 0x10, 0x8c, 0x24, 0x0b, 0xcb, 0xf8, 0x4c, 0x80, 0x63, 0xd8, 0xc0,
- 0xb0, 0x76, 0xa8, 0xb5, 0x1b, 0x95, 0x56, 0xca, 0x99, 0x9d, 0x1a, 0x18, 0x0b, 0x3a, 0x12, 0x93,
- 0xb4, 0xe4, 0xff, 0x43, 0xc5, 0x6c, 0xb5, 0x7c, 0x1a, 0x04, 0xb2, 0xc0, 0xbb, 0x22, 0xfc, 0x79,
- 0x3d, 0x02, 0x62, 0x8c, 0x67, 0x33, 0x9f, 0x9d, 0xd6, 0x76, 0x70, 0x3b, 0x90, 0xb9, 0xab, 0x56,
- 0x6d, 0xc9, 0x5e, 0x25, 0x83, 0xa3, 0xa2, 0x20, 0x2d, 0x98, 0xde, 0xf5, 0x9b, 0x0b, 0x0b, 0xa6,
- 0xb5, 0x43, 0x4f, 0x92, 0xef, 0xf0, 0x6b, 0x61, 0x6e, 0x26, 0x39, 0x60, 0x9a, 0xa5, 0x94, 0x72,
- 0x93, 0x1e, 0x84, 0x66, 0xf3, 0x24, 0xf3, 0xbd, 0x48, 0x8a, 0xce, 0x01, 0xd3, 0x2c, 0xd9, 0xec,
- 0x6c, 0xd7, 0x6f, 0x46, 0x45, 0x69, 0xb2, 0x1a, 0x5b, 0xcd, 0xce, 0x6e, 0xc6, 0x28, 0xd4, 0xe9,
- 0xd8, 0x0b, 0xdb, 0xf5, 0x9b, 0x48, 0x4d, 0xa7, 0xc3, 0xa7, 0x7f, 0xda, 0x0b, 0xbb, 0x29, 0xe1,
- 0xa8, 0x28, 0x48, 0x17, 0x08, 0x7b, 0x3a, 0xde, 0xef, 0xaa, 0xaa, 0x46, 0xd6, 0x41, 0x5d, 0xcb,
- 0x7a, 0x1a, 0x45, 0xa4, 0x3f, 0xd0, 0x45, 0xe6, 0xca, 0x6e, 0xf6, 0xf1, 0xc1, 0x0c, 0xde, 0xe4,
- 0x2d, 0x78, 0x6a, 0xd7, 0x6f, 0xca, 0x1a, 0x80, 0x0d, 0xdf, 0x76, 0x2d, 0xbb, 0x6b, 0x8a, 0x32,
- 0x3f, 0x31, 0x8f, 0xbc, 0x2c, 0xd5, 0x7d, 0xea, 0x66, 0x36, 0x19, 0x1e, 0xd6, 0x3e, 0xb9, 0xe4,
- 0x32, 0x91, 0xcb, 0x92, 0x4b, 0x6a, 0xb8, 0x9e, 0x68, 0xc9, 0x65, 0xf2, 0xac, 0xf8, 0xa7, 0x1f,
- 0x1b, 0x40, 0xf8, 0x1e, 0x7c, 0x74, 0xfd, 0xe5, 0xb2, 0xef, 0xf5, 0xba, 0xe4, 0x3a, 0x54, 0xda,
- 0xec, 0x87, 0x56, 0xb7, 0xa2, 0x56, 0xee, 0x96, 0x23, 0x04, 0xc6, 0x34, 0x2c, 0xff, 0xf0, 0x9c,
- 0x16, 0x55, 0xc5, 0xa6, 0x2a, 0xff, 0xb8, 0xc5, 0xa1, 0x28, 0xb1, 0x64, 0x19, 0x66, 0x7c, 0xda,
- 0x34, 0x1d, 0xd3, 0xb5, 0x68, 0x23, 0xf4, 0xcd, 0x90, 0xb6, 0x0f, 0xa4, 0x27, 0x79, 0x5a, 0x36,
- 0x99, 0xc1, 0x34, 0x01, 0xf6, 0xb7, 0xa9, 0xfd, 0x65, 0x19, 0xce, 0xa5, 0x0f, 0x0f, 0x3c, 0x6c,
- 0xa5, 0xe8, 0x3a, 0x54, 0xba, 0xa6, 0x1f, 0xda, 0x5a, 0x29, 0xae, 0x7a, 0xaa, 0x8d, 0x08, 0x81,
- 0x31, 0x0d, 0x4b, 0xe9, 0x43, 0xaf, 0x6b, 0x5b, 0x52, 0x43, 0x95, 0xd2, 0x6f, 0x31, 0x20, 0x0a,
- 0x5c, 0x76, 0x7d, 0x67, 0xe1, 0x91, 0xd5, 0x77, 0xca, 0x8a, 0xcd, 0x62, 0xce, 0x15, 0x9b, 0x83,
- 0x5d, 0x76, 0xf9, 0xbe, 0x3e, 0x0c, 0xc7, 0x72, 0x39, 0x9a, 0x96, 0xee, 0xdc, 0xc1, 0x52, 0xaa,
- 0x49, 0x4b, 0xb7, 0x67, 0x59, 0xcf, 0xba, 0x99, 0x87, 0x4a, 0x89, 0x81, 0x22, 0x32, 0xa3, 0x04,
- 0x08, 0x93, 0xa2, 0xc9, 0x06, 0x5c, 0x70, 0xec, 0x8e, 0x2d, 0x76, 0x11, 0x82, 0x0d, 0xea, 0x37,
- 0xa8, 0xe5, 0xb9, 0x2d, 0xee, 0xa8, 0x47, 0xe3, 0x45, 0x8e, 0xd5, 0x0c, 0x1a, 0xcc, 0x6c, 0x49,
- 0x9e, 0x83, 0xb1, 0x7d, 0xea, 0xf3, 0xfa, 0x3b, 0x48, 0x5e, 0x51, 0xf6, 0xba, 0x00, 0x63, 0x84,
- 0x27, 0x6f, 0x41, 0x21, 0x30, 0x03, 0x47, 0x4e, 0xc2, 0x4e, 0x70, 0xd0, 0xad, 0xde, 0x58, 0x95,
- 0xe6, 0xc1, 0x2f, 0x11, 0x62, 0xff, 0x91, 0xb3, 0x3c, 0x8b, 0x93, 0xb1, 0xbf, 0x2b, 0xc2, 0x74,
- 0xea, 0x94, 0xcf, 0xc3, 0x5c, 0x86, 0xf2, 0x00, 0x23, 0x47, 0x78, 0x80, 0xe7, 0xa1, 0x6c, 0x39,
- 0x36, 0x75, 0xc3, 0x95, 0x96, 0xf4, 0x14, 0x71, 0xb5, 0x97, 0x80, 0x2f, 0xa2, 0xa2, 0x78, 0xdc,
- 0xfe, 0x42, 0x1f, 0xd8, 0xc5, 0xe3, 0xd6, 0x83, 0x97, 0x86, 0x79, 0x8b, 0x6d, 0x3e, 0x55, 0x67,
- 0xa9, 0x8e, 0x3d, 0x51, 0xd8, 0x3e, 0x33, 0x37, 0x53, 0xfc, 0xc3, 0x08, 0x94, 0xd7, 0xeb, 0x5b,
- 0x0d, 0x7e, 0x93, 0xdc, 0xdb, 0xc9, 0xbb, 0xf2, 0x4e, 0x73, 0xc9, 0x6a, 0xff, 0xa5, 0x78, 0x37,
- 0xd8, 0x00, 0x18, 0xf8, 0x3e, 0xbc, 0x8a, 0x18, 0x23, 0x2c, 0x83, 0x13, 0xcd, 0xc9, 0x02, 0x14,
- 0xdc, 0xdd, 0x41, 0xaf, 0x6c, 0xe4, 0x3e, 0x67, 0xfd, 0x26, 0x3d, 0x40, 0xde, 0x98, 0xdc, 0x06,
- 0xb0, 0x7c, 0xda, 0xa2, 0x6e, 0x68, 0xcb, 0x1b, 0xb3, 0x07, 0x5b, 0xb9, 0x5f, 0x50, 0x8d, 0x51,
- 0x63, 0x54, 0xfb, 0x46, 0x09, 0xce, 0xa5, 0xcf, 0xdc, 0x3d, 0xcc, 0x31, 0x3c, 0x07, 0x63, 0x41,
- 0x8f, 0x57, 0x88, 0x4b, 0xd7, 0xa0, 0x9c, 0x70, 0x43, 0x80, 0x31, 0xc2, 0x67, 0x0f, 0xf8, 0xd1,
- 0xc7, 0x32, 0xe0, 0x0b, 0xc7, 0x1d, 0xf0, 0x79, 0x4f, 0x27, 0x12, 0x13, 0x84, 0x52, 0x2e, 0x13,
- 0x84, 0x74, 0x8f, 0x0d, 0x30, 0xe2, 0xa9, 0xbc, 0x6c, 0x6f, 0x2c, 0x97, 0xda, 0xea, 0x68, 0x20,
- 0xf6, 0xdd, 0xb3, 0x77, 0x06, 0x1d, 0xcb, 0xcf, 0x8b, 0x30, 0x95, 0x3c, 0x44, 0xc3, 0x92, 0xd2,
- 0x1d, 0x2f, 0x08, 0x65, 0xaa, 0x9e, 0xbe, 0x36, 0xff, 0xd5, 0x18, 0x85, 0x3a, 0xdd, 0xf1, 0x22,
- 0xe7, 0x73, 0x30, 0x26, 0x2f, 0x73, 0x91, 0x81, 0x53, 0x8d, 0x22, 0x79, 0xe1, 0x0b, 0x46, 0xf8,
- 0xff, 0x0b, 0x9b, 0x4e, 0x40, 0xbe, 0xd9, 0x1f, 0x36, 0xdf, 0xce, 0xf5, 0xc4, 0xd4, 0x87, 0x3b,
- 0x6a, 0xbe, 0x05, 0x33, 0x7d, 0xdb, 0x22, 0xf1, 0x45, 0x97, 0xc6, 0x11, 0x17, 0x5d, 0x5e, 0x86,
- 0xa2, 0x6b, 0x76, 0xa8, 0xb8, 0x4f, 0xa2, 0x22, 0xc2, 0x1b, 0xcb, 0x7b, 0x03, 0x14, 0xf0, 0xda,
- 0x8f, 0x4a, 0x30, 0xd3, 0x77, 0x32, 0x98, 0x27, 0x9c, 0x6a, 0x69, 0x3d, 0x95, 0x46, 0x67, 0x2e,
- 0xa8, 0xbf, 0x02, 0x53, 0x7c, 0x60, 0x6c, 0xa4, 0x16, 0xe4, 0xd5, 0xf6, 0xf0, 0x56, 0x02, 0x8b,
- 0x29, 0xea, 0xe3, 0x25, 0xac, 0xaf, 0xc0, 0x54, 0xd0, 0x6b, 0x06, 0x96, 0x6f, 0x77, 0xe5, 0x1e,
- 0x74, 0x21, 0x29, 0xa4, 0x91, 0xc0, 0x62, 0x8a, 0x9a, 0xb4, 0xf9, 0x15, 0x53, 0x32, 0x78, 0xca,
- 0xc5, 0xb0, 0x81, 0x6e, 0x4a, 0xba, 0x20, 0x6f, 0xa1, 0x4a, 0xb0, 0xc0, 0x3e, 0xa6, 0xa4, 0x09,
- 0xb3, 0x62, 0x61, 0x5c, 0x57, 0x48, 0x2d, 0xab, 0x8b, 0xac, 0xb4, 0x26, 0x95, 0x9e, 0x5d, 0x3c,
- 0x94, 0x12, 0x8f, 0xe0, 0x32, 0xe0, 0xf5, 0x48, 0xdf, 0xea, 0xff, 0xfa, 0xc2, 0x3b, 0x79, 0x9f,
- 0x27, 0x3f, 0xd1, 0x18, 0x3c, 0x33, 0x77, 0xa1, 0xfe, 0x7d, 0x99, 0x0d, 0x94, 0xd4, 0xd1, 0x48,
- 0x52, 0x83, 0x12, 0xb7, 0x4d, 0x16, 0x5e, 0xd4, 0x46, 0x12, 0x37, 0xda, 0x00, 0x25, 0xe6, 0x18,
- 0x4b, 0xd4, 0x72, 0xca, 0x36, 0x7a, 0xc8, 0x94, 0xad, 0x0b, 0xe7, 0x43, 0x27, 0xd8, 0xf2, 0x7b,
- 0x41, 0xb8, 0x40, 0xfd, 0x30, 0x90, 0xa6, 0x5b, 0x18, 0xf8, 0xca, 0xf2, 0xad, 0xd5, 0x46, 0x9a,
- 0x0b, 0x66, 0xb1, 0x66, 0x06, 0x1c, 0x3a, 0x41, 0xdd, 0x71, 0xbc, 0x3b, 0xd1, 0x9e, 0x7d, 0x1c,
- 0x6c, 0x64, 0x18, 0x51, 0x06, 0xbc, 0xb5, 0xda, 0x38, 0x84, 0x12, 0x8f, 0xe0, 0x42, 0xd6, 0xf8,
- 0x53, 0xbd, 0x6e, 0x3a, 0x76, 0xcb, 0x0c, 0x29, 0x0b, 0xc7, 0x7c, 0xed, 0x58, 0x8c, 0x0e, 0xb5,
- 0x91, 0xb7, 0xb5, 0xda, 0x48, 0x93, 0x60, 0x56, 0xbb, 0x61, 0x7d, 0xb6, 0x24, 0x33, 0x7a, 0x97,
- 0x1f, 0x4b, 0xf4, 0xae, 0x0c, 0x36, 0xca, 0x21, 0xa7, 0x51, 0x9e, 0x32, 0xf9, 0x01, 0x46, 0x79,
- 0x0b, 0xa6, 0xd5, 0x6d, 0xe2, 0xd2, 0x66, 0xc7, 0x07, 0xde, 0x7b, 0xa8, 0x27, 0x39, 0x60, 0x9a,
- 0xe5, 0x59, 0x5c, 0xcf, 0xf9, 0xf3, 0xa2, 0x3c, 0x81, 0x9b, 0xc3, 0x74, 0x35, 0xef, 0xdb, 0xd3,
- 0x59, 0xec, 0xe7, 0x53, 0x83, 0xae, 0x69, 0x45, 0xb7, 0x19, 0xaa, 0xd8, 0xbf, 0x1e, 0x21, 0x30,
- 0xa6, 0x21, 0xb3, 0x30, 0xd2, 0x6a, 0x72, 0x6f, 0x54, 0x8c, 0x0f, 0x71, 0x2d, 0xce, 0xe3, 0x48,
- 0xab, 0x49, 0xae, 0x41, 0x59, 0xce, 0x83, 0xa3, 0x33, 0x4e, 0x5c, 0xac, 0x9c, 0x24, 0x07, 0xa8,
- 0xb0, 0xc3, 0x9a, 0x79, 0x0e, 0x61, 0x81, 0x37, 0xdd, 0x73, 0x1f, 0xee, 0xb9, 0xe7, 0x7b, 0x25,
- 0xb8, 0x98, 0x7d, 0x76, 0xfb, 0x7f, 0x8d, 0xc5, 0x0a, 0x03, 0x1c, 0xcd, 0x34, 0xc0, 0x8f, 0xc1,
- 0x58, 0xc0, 0x15, 0x8f, 0xb6, 0x6f, 0xc5, 0xb5, 0x5e, 0x02, 0x84, 0x11, 0x8e, 0xbc, 0x06, 0xa4,
- 0x63, 0xde, 0x5d, 0x0b, 0xda, 0x0b, 0x5e, 0x8f, 0xdf, 0x54, 0x88, 0xd4, 0x14, 0xd7, 0x68, 0x16,
- 0xe3, 0x03, 0x10, 0x6b, 0x7d, 0x14, 0x98, 0xd1, 0x8a, 0x6f, 0x38, 0x27, 0x16, 0xf1, 0x53, 0x27,
- 0x31, 0x8e, 0x5c, 0x75, 0x1f, 0x52, 0x18, 0xfb, 0xa0, 0x7f, 0xfe, 0x67, 0x0d, 0xe5, 0x40, 0xff,
- 0x87, 0x7b, 0x12, 0xf8, 0x8b, 0x02, 0x9c, 0xcf, 0x28, 0xcf, 0x4e, 0xfa, 0x4c, 0xe3, 0x18, 0x3e,
- 0x73, 0x4f, 0x3d, 0x7b, 0x3e, 0x67, 0x5b, 0x23, 0xa5, 0x0e, 0x7f, 0x70, 0x36, 0x39, 0xb8, 0xc0,
- 0xf7, 0x3d, 0xa3, 0xcd, 0x96, 0xe8, 0xf2, 0xb4, 0x51, 0x69, 0x6b, 0xc7, 0xba, 0xc5, 0x70, 0x39,
- 0x83, 0x43, 0xbc, 0x19, 0x94, 0x85, 0xc5, 0x4c, 0xa9, 0x64, 0x01, 0x40, 0xd5, 0x4f, 0x44, 0x63,
- 0xf3, 0x59, 0x7e, 0x17, 0xa3, 0x82, 0xfe, 0x17, 0xdf, 0x53, 0xd5, 0xde, 0x36, 0x9f, 0x32, 0x6b,
- 0xcd, 0x86, 0x71, 0x63, 0x75, 0x46, 0xf7, 0x1e, 0xdf, 0xa6, 0x4f, 0x67, 0x5d, 0x7f, 0x31, 0x0a,
- 0x53, 0xc9, 0x8e, 0x24, 0x57, 0xa1, 0xd4, 0xf5, 0xe9, 0xb6, 0x7d, 0x37, 0x7d, 0x71, 0xf1, 0x06,
- 0x87, 0xa2, 0xc4, 0x12, 0x0f, 0x4a, 0x8e, 0xd9, 0x64, 0x51, 0x56, 0x5c, 0x1c, 0xb9, 0x7c, 0xea,
- 0x4b, 0x10, 0xa3, 0xe5, 0xe7, 0x48, 0xe0, 0x2a, 0x67, 0x8f, 0x52, 0x0c, 0x13, 0xb8, 0x6d, 0x53,
- 0xa7, 0x25, 0x4e, 0xd0, 0x0d, 0x43, 0xe0, 0x0d, 0xce, 0x1e, 0xa5, 0x18, 0xf2, 0x36, 0x54, 0xc4,
- 0x6d, 0xcf, 0xad, 0xf9, 0x03, 0x99, 0xfa, 0xfc, 0xbf, 0xe3, 0x99, 0xec, 0x96, 0xdd, 0xa1, 0xf1,
- 0x70, 0x5c, 0x88, 0x98, 0x60, 0xcc, 0x8f, 0x7f, 0x12, 0x6b, 0x3b, 0xa4, 0x7e, 0x23, 0x34, 0xfd,
- 0xe8, 0x8b, 0x55, 0xf1, 0x27, 0xb1, 0x14, 0x06, 0x35, 0xaa, 0xda, 0x5f, 0x95, 0x60, 0x2a, 0x59,
- 0x66, 0xfe, 0x98, 0xce, 0x41, 0x3e, 0x0f, 0x65, 0x9e, 0x69, 0xd6, 0x7d, 0x37, 0x7d, 0x9d, 0xfc,
- 0x96, 0x84, 0xa3, 0xa2, 0x20, 0x08, 0x15, 0xf3, 0x64, 0xdf, 0xa1, 0x12, 0x07, 0x9f, 0xd4, 0x17,
- 0xa8, 0x62, 0x36, 0x8c, 0x67, 0x10, 0x91, 0x0f, 0x96, 0x96, 0x72, 0x9e, 0x0a, 0x8c, 0x31, 0x1b,
- 0x66, 0xf9, 0x3e, 0x6d, 0x47, 0xe9, 0xa6, 0x66, 0xf9, 0xc8, 0xa1, 0x28, 0xb1, 0xe4, 0x39, 0x18,
- 0xf3, 0x3d, 0x87, 0xd6, 0x71, 0x5d, 0xc6, 0x59, 0xb5, 0x12, 0x8b, 0x02, 0x8c, 0x11, 0x7e, 0x18,
- 0xab, 0x90, 0x49, 0x03, 0x18, 0x20, 0xf8, 0x2d, 0xc3, 0xcc, 0xbe, 0x4c, 0x61, 0x1b, 0x76, 0xdb,
- 0x35, 0xc3, 0xf8, 0xb8, 0xbc, 0x3a, 0x4f, 0xf2, 0x7a, 0x9a, 0x00, 0xfb, 0xdb, 0x9c, 0xc5, 0x28,
- 0xfa, 0x6f, 0x6c, 0xe4, 0x24, 0x2e, 0x46, 0x48, 0x5a, 0xa5, 0x31, 0x04, 0xab, 0x1c, 0xc9, 0xdb,
- 0x2a, 0x47, 0x8f, 0xb4, 0xca, 0x67, 0xa1, 0xc8, 0x3f, 0x62, 0x29, 0x57, 0x28, 0xd5, 0x7a, 0x26,
- 0xff, 0xb6, 0x1f, 0x0a, 0x1c, 0xa9, 0xc3, 0xf4, 0x1d, 0xd3, 0x0e, 0x99, 0x7f, 0x12, 0x27, 0x24,
- 0xc4, 0xf6, 0xd5, 0xa8, 0x7e, 0xfc, 0x31, 0x81, 0xc6, 0x34, 0xfd, 0x20, 0xd6, 0x3f, 0xd8, 0x82,
- 0xe1, 0x2b, 0x30, 0xc5, 0x95, 0xac, 0x5b, 0x16, 0x9b, 0xdb, 0xae, 0xb4, 0xd2, 0x5f, 0x3b, 0xda,
- 0xd4, 0xb1, 0x8b, 0x98, 0xa2, 0x4e, 0x8e, 0xb5, 0x4a, 0x3e, 0x63, 0x6d, 0xf3, 0x84, 0x63, 0xed,
- 0x19, 0x18, 0x6d, 0x39, 0x7b, 0xfc, 0xcc, 0x49, 0x39, 0x5e, 0x5e, 0x5b, 0x5c, 0xdd, 0x44, 0x06,
- 0x7f, 0x3c, 0x5f, 0x46, 0x61, 0xdd, 0x41, 0xdd, 0x56, 0xd7, 0xb3, 0xdd, 0x50, 0x56, 0x95, 0xa8,
- 0x47, 0x58, 0x92, 0x70, 0x54, 0x14, 0xa7, 0x1b, 0x6f, 0x5f, 0x85, 0x72, 0x64, 0xda, 0xec, 0x5d,
- 0xa8, 0x76, 0xf1, 0xbb, 0x60, 0x56, 0xce, 0x99, 0x5c, 0x87, 0x8a, 0xd7, 0xa5, 0x89, 0x8f, 0x3e,
- 0xa8, 0xc8, 0x79, 0x2b, 0x42, 0x60, 0x4c, 0xc3, 0x0c, 0x5d, 0x48, 0x4d, 0x2d, 0xdc, 0xbf, 0xce,
- 0x80, 0x52, 0x89, 0xda, 0xd7, 0x0c, 0x88, 0x6e, 0x52, 0x26, 0x8b, 0x50, 0xec, 0x7a, 0x7e, 0x28,
- 0x16, 0x4c, 0xc7, 0x5f, 0xbc, 0x9c, 0x3d, 0x22, 0xc5, 0x89, 0x49, 0xcf, 0x0f, 0x63, 0x8e, 0xec,
- 0x5f, 0x80, 0xa2, 0x31, 0xd3, 0xd3, 0x72, 0x7a, 0x41, 0x48, 0xfd, 0x95, 0x8d, 0xb4, 0x9e, 0x0b,
- 0x11, 0x02, 0x63, 0x9a, 0xda, 0xbf, 0x17, 0xe0, 0x5c, 0xfa, 0x3a, 0x0b, 0xf2, 0x0e, 0x4c, 0x06,
- 0x76, 0xdb, 0xb5, 0xdd, 0xb6, 0x5c, 0x9e, 0x32, 0x06, 0x2e, 0x85, 0x6a, 0xe8, 0xed, 0x31, 0xc9,
- 0x2e, 0xb7, 0x33, 0x08, 0x8f, 0xe7, 0xcb, 0x6e, 0xef, 0xf7, 0x57, 0x05, 0x7f, 0x31, 0xe7, 0x0b,
- 0x45, 0x3e, 0xdc, 0x65, 0xc1, 0xff, 0x51, 0x84, 0x8b, 0xd9, 0x17, 0x96, 0x3c, 0xa6, 0x99, 0x62,
- 0x5c, 0xf6, 0x32, 0x72, 0x68, 0xd9, 0x4b, 0xfc, 0x9e, 0x47, 0x73, 0xba, 0x80, 0x44, 0xbd, 0x80,
- 0xa3, 0xbd, 0xa1, 0x9a, 0xc3, 0x16, 0x1e, 0x3a, 0x87, 0xbd, 0x0a, 0x25, 0x79, 0x9b, 0x60, 0x6a,
- 0x6e, 0x38, 0x2f, 0xee, 0xfa, 0x93, 0x58, 0x2d, 0x5a, 0x97, 0x8e, 0x8c, 0xd6, 0x6c, 0xf6, 0xa1,
- 0xbe, 0x9f, 0x39, 0x36, 0xf8, 0xec, 0x43, 0x7d, 0x3e, 0x33, 0x66, 0xc3, 0x0b, 0x1b, 0xbb, 0x76,
- 0xfc, 0x6d, 0xb2, 0xb8, 0xb0, 0x71, 0x63, 0xe5, 0x36, 0xae, 0xa2, 0xc4, 0x26, 0x57, 0x66, 0x2a,
- 0xb9, 0xac, 0xcc, 0x64, 0xdb, 0xdc, 0xa3, 0xca, 0x62, 0x2d, 0x98, 0xe9, 0xeb, 0xf3, 0x63, 0xe7,
- 0xb1, 0x57, 0xa1, 0x14, 0xf4, 0xb6, 0x19, 0x5d, 0xaa, 0x26, 0xbe, 0xc1, 0xa1, 0x28, 0xb1, 0xb5,
- 0xef, 0x15, 0x98, 0x94, 0xd4, 0xd5, 0x36, 0x8f, 0x69, 0x54, 0xbd, 0x0c, 0x93, 0x22, 0x93, 0x7c,
- 0x43, 0x2b, 0x57, 0x2e, 0x6b, 0xeb, 0x7d, 0x3a, 0x12, 0x93, 0xb4, 0x64, 0x85, 0x9b, 0xc9, 0xc0,
- 0xb9, 0x18, 0x48, 0x4b, 0x62, 0x81, 0x5b, 0x32, 0x20, 0x2f, 0xc0, 0x38, 0x7f, 0x08, 0xf1, 0xca,
- 0xe5, 0x92, 0x0a, 0x2f, 0x4c, 0x5a, 0x8a, 0xc1, 0xa8, 0xd3, 0x24, 0x37, 0x8c, 0x8a, 0xb9, 0x6c,
- 0x18, 0xf5, 0xf5, 0xca, 0xa3, 0xb2, 0xbb, 0xef, 0x94, 0x41, 0x7d, 0x1f, 0x82, 0x58, 0x7d, 0x5f,
- 0xe9, 0xf8, 0xd4, 0xc0, 0x6b, 0xa9, 0x91, 0x2a, 0x62, 0xdd, 0x39, 0x23, 0x24, 0xbd, 0x06, 0x44,
- 0x7e, 0x16, 0x42, 0xce, 0x7b, 0xd5, 0x97, 0xa4, 0x2b, 0xf1, 0xa2, 0x71, 0xa3, 0x8f, 0x02, 0x33,
- 0x5a, 0x91, 0xd7, 0xf8, 0x37, 0x69, 0x42, 0xd3, 0x76, 0x95, 0xe7, 0x7d, 0xe6, 0x90, 0x9a, 0x16,
- 0x41, 0xa4, 0xbe, 0x2e, 0x23, 0xfe, 0x62, 0xdc, 0x9c, 0x2c, 0xc1, 0xd8, 0xbe, 0xe7, 0xf4, 0x3a,
- 0xea, 0x9b, 0x94, 0xb3, 0x59, 0x9c, 0x5e, 0xe7, 0x24, 0xda, 0x19, 0x6c, 0xd1, 0x04, 0xa3, 0xb6,
- 0x84, 0xc2, 0x34, 0xdf, 0xb4, 0xb5, 0xc3, 0x03, 0x39, 0x00, 0x64, 0xe8, 0xbd, 0x9a, 0xc5, 0x6e,
- 0xc3, 0x6b, 0x35, 0x92, 0xd4, 0xf2, 0xc3, 0xd5, 0x49, 0x20, 0xa6, 0x79, 0x92, 0x1b, 0x50, 0x36,
- 0xb7, 0xb7, 0x6d, 0xd7, 0x0e, 0x0f, 0xe4, 0xee, 0xcf, 0x47, 0xb3, 0xf8, 0xd7, 0x25, 0x8d, 0xac,
- 0x6b, 0x97, 0xff, 0x50, 0xb5, 0x25, 0xb7, 0x61, 0x3c, 0xf4, 0x1c, 0x39, 0x2f, 0x0d, 0x64, 0x7e,
- 0x7f, 0x29, 0x8b, 0xd5, 0x96, 0x22, 0x8b, 0x77, 0x2b, 0x62, 0x58, 0x80, 0x3a, 0x1f, 0xf2, 0xfb,
- 0x06, 0x4c, 0xb8, 0x5e, 0x8b, 0x46, 0x43, 0x4f, 0xae, 0x9e, 0xbf, 0x95, 0xd3, 0x77, 0x4d, 0xe6,
- 0xd6, 0x35, 0xde, 0x62, 0x84, 0xa8, 0x7a, 0x67, 0x1d, 0x85, 0x09, 0x25, 0x88, 0x0b, 0xe7, 0xec,
- 0x8e, 0xd9, 0xa6, 0x1b, 0x3d, 0x47, 0x1e, 0x3a, 0x09, 0x64, 0xf0, 0xc8, 0xac, 0x84, 0x5a, 0xf5,
- 0x2c, 0xd3, 0x11, 0xdf, 0x05, 0x42, 0xba, 0x4d, 0x7d, 0xfe, 0x79, 0x22, 0xf5, 0x5d, 0xb5, 0x95,
- 0x14, 0x27, 0xec, 0xe3, 0x4d, 0x96, 0x61, 0xa6, 0xeb, 0xdb, 0x1e, 0xef, 0x37, 0xc7, 0x0c, 0xc4,
- 0x77, 0x61, 0x20, 0x59, 0xfe, 0xb2, 0x91, 0x26, 0xc0, 0xfe, 0x36, 0xa2, 0x1c, 0x53, 0x00, 0x79,
- 0xba, 0x55, 0x8c, 0xca, 0x31, 0x05, 0x0c, 0x15, 0x76, 0xf6, 0x73, 0x30, 0xd3, 0xf7, 0x6e, 0x06,
- 0x72, 0x08, 0x7f, 0x64, 0x40, 0xba, 0x7e, 0x90, 0xe5, 0x0d, 0x2d, 0xdb, 0xe7, 0x0c, 0x0f, 0xd2,
- 0x0b, 0xf5, 0x8b, 0x11, 0x02, 0x63, 0x1a, 0x72, 0x05, 0x0a, 0x5d, 0x33, 0xdc, 0x49, 0x1f, 0xde,
- 0x60, 0x2c, 0x91, 0x63, 0xf8, 0x77, 0x28, 0xd9, 0x3f, 0xda, 0xa6, 0x77, 0xbb, 0x32, 0x0d, 0x8a,
- 0xbf, 0x43, 0xa9, 0x30, 0xa8, 0x51, 0xd5, 0x7e, 0x50, 0x84, 0xa9, 0x64, 0x6c, 0x49, 0xe4, 0x83,
- 0xc6, 0xc3, 0xf2, 0x41, 0x16, 0x27, 0x3b, 0x34, 0xdc, 0xf1, 0x5a, 0xe9, 0x38, 0xb9, 0xc6, 0xa1,
- 0x28, 0xb1, 0x5c, 0x7d, 0xcf, 0x0f, 0xa5, 0x5a, 0xb1, 0xfa, 0x9e, 0x1f, 0x22, 0xc7, 0x44, 0x67,
- 0x4f, 0x0a, 0x87, 0x9c, 0x3d, 0x69, 0xc3, 0x39, 0x71, 0xad, 0xd6, 0x02, 0xf5, 0xc3, 0x13, 0x9f,
- 0x99, 0x6a, 0xa4, 0x58, 0x60, 0x1f, 0x53, 0xfe, 0x95, 0x7c, 0x0e, 0xe3, 0x8d, 0x4f, 0x58, 0x0e,
- 0xd9, 0x48, 0x72, 0xc0, 0x34, 0xcb, 0x61, 0x2c, 0x01, 0x26, 0xfb, 0xf1, 0xc4, 0x77, 0xdd, 0x94,
- 0x73, 0xba, 0xeb, 0xe6, 0x54, 0x41, 0x74, 0x7e, 0xee, 0x27, 0xbf, 0xba, 0xf4, 0xc4, 0x4f, 0x7f,
- 0x75, 0xe9, 0x89, 0x9f, 0xfd, 0xea, 0xd2, 0x13, 0x5f, 0x7b, 0x70, 0xc9, 0xf8, 0xc9, 0x83, 0x4b,
- 0xc6, 0x4f, 0x1f, 0x5c, 0x32, 0x7e, 0xf6, 0xe0, 0x92, 0xf1, 0xcb, 0x07, 0x97, 0x8c, 0xef, 0xfd,
- 0xf3, 0xa5, 0x27, 0x3e, 0x5f, 0x8e, 0x1e, 0xfe, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x33, 0x83,
- 0x01, 0xe7, 0x72, 0x8c, 0x00, 0x00,
+ // 6394 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3d, 0x5b, 0x6c, 0x24, 0xc7,
+ 0x71, 0x1a, 0x72, 0x77, 0xb9, 0x5b, 0x7c, 0x1d, 0xfb, 0x4e, 0xa7, 0x15, 0x6d, 0xdd, 0x1d, 0x56,
+ 0xf0, 0xe1, 0x94, 0xc8, 0xbc, 0x48, 0x89, 0x63, 0xd9, 0xb2, 0x65, 0x2c, 0x1f, 0x47, 0x51, 0x47,
+ 0xf2, 0xc8, 0x5a, 0x9e, 0x1e, 0x96, 0x2d, 0x79, 0x76, 0xb6, 0xb9, 0x1c, 0x73, 0x76, 0x66, 0x39,
+ 0x33, 0xcb, 0x3b, 0x1e, 0x10, 0xdb, 0x30, 0x90, 0xc4, 0x96, 0xfc, 0x52, 0x12, 0x3b, 0x01, 0x02,
+ 0xff, 0x24, 0x81, 0x7f, 0xf2, 0x95, 0x1f, 0xe7, 0x3b, 0x40, 0x90, 0x38, 0x48, 0x3e, 0x9c, 0xaf,
+ 0x18, 0x36, 0x70, 0xb0, 0x2f, 0x40, 0xbe, 0x92, 0x8f, 0x20, 0x5f, 0x09, 0xf2, 0x11, 0xf4, 0x63,
+ 0x7a, 0x7a, 0x66, 0x87, 0x3c, 0x2e, 0x39, 0x7b, 0x67, 0x1a, 0xf9, 0xdb, 0xad, 0xaa, 0xae, 0xaa,
+ 0x99, 0xae, 0xae, 0xea, 0xea, 0xee, 0xea, 0x81, 0xb5, 0xb6, 0x1d, 0xee, 0xf4, 0x9a, 0x73, 0x96,
+ 0xd7, 0xb9, 0x6e, 0xfa, 0x6d, 0xaf, 0xeb, 0x7b, 0x5f, 0xe4, 0x3f, 0x3e, 0x4a, 0xf7, 0xa9, 0x1b,
+ 0x06, 0xd7, 0xbb, 0xbb, 0xed, 0xeb, 0x66, 0xd7, 0x0e, 0xae, 0x8b, 0xff, 0x5e, 0xcf, 0xb7, 0xe8,
+ 0xf5, 0xfd, 0x17, 0x4c, 0xa7, 0xbb, 0x63, 0xbe, 0x70, 0xbd, 0x4d, 0x5d, 0xea, 0x9b, 0x21, 0x6d,
+ 0xcd, 0x75, 0x7d, 0x2f, 0xf4, 0xc8, 0xa7, 0x63, 0x76, 0x73, 0x11, 0x3b, 0xfe, 0xe3, 0x5d, 0xd1,
+ 0x7c, 0xae, 0xbb, 0xdb, 0x9e, 0x63, 0xec, 0xe6, 0x34, 0x76, 0x73, 0x11, 0xbb, 0xd9, 0xcf, 0x1c,
+ 0x5b, 0x1b, 0xcb, 0xeb, 0x74, 0x3c, 0x37, 0x2d, 0x7f, 0xf6, 0xa3, 0x1a, 0x83, 0xb6, 0xd7, 0xf6,
+ 0xae, 0x73, 0x70, 0xb3, 0xb7, 0xcd, 0xff, 0xf1, 0x3f, 0xfc, 0x97, 0x24, 0xaf, 0xed, 0xbe, 0x14,
+ 0xcc, 0xd9, 0x1e, 0x63, 0x79, 0xdd, 0xf2, 0x7c, 0xf6, 0x60, 0x7d, 0x2c, 0x7f, 0x2b, 0xa6, 0xe9,
+ 0x98, 0xd6, 0x8e, 0xed, 0x52, 0xff, 0x20, 0xd6, 0xa3, 0x43, 0x43, 0x33, 0xab, 0xd5, 0xf5, 0xc3,
+ 0x5a, 0xf9, 0x3d, 0x37, 0xb4, 0x3b, 0xb4, 0xaf, 0xc1, 0x6f, 0x3f, 0xac, 0x41, 0x60, 0xed, 0xd0,
+ 0x8e, 0x99, 0x6e, 0x57, 0xfb, 0x6f, 0x03, 0x66, 0xea, 0x6b, 0x9b, 0x1b, 0x0b, 0x9e, 0x1b, 0xf4,
+ 0x3a, 0x74, 0xc1, 0x73, 0xb7, 0xed, 0x36, 0xf9, 0x18, 0x8c, 0x5b, 0x02, 0xe0, 0x6f, 0x99, 0xed,
+ 0xaa, 0x71, 0xc5, 0xb8, 0x56, 0x99, 0x3f, 0xff, 0xa3, 0xfb, 0x97, 0x9f, 0x78, 0x70, 0xff, 0xf2,
+ 0xf8, 0x42, 0x8c, 0x42, 0x9d, 0x8e, 0x3c, 0x07, 0x63, 0x66, 0x2f, 0xf4, 0xea, 0xd6, 0x6e, 0x75,
+ 0xe4, 0x8a, 0x71, 0xad, 0x3c, 0x3f, 0x2d, 0x9b, 0x8c, 0xd5, 0x05, 0x18, 0x23, 0x3c, 0xb9, 0x0e,
+ 0x15, 0x7a, 0xd7, 0x72, 0x7a, 0x81, 0xbd, 0x4f, 0xab, 0xa3, 0x9c, 0x78, 0x46, 0x12, 0x57, 0x96,
+ 0x22, 0x04, 0xc6, 0x34, 0x8c, 0xb7, 0xeb, 0xad, 0x7a, 0x96, 0xe9, 0x54, 0x0b, 0x49, 0xde, 0xeb,
+ 0x02, 0x8c, 0x11, 0x9e, 0x5c, 0x85, 0x92, 0xeb, 0xbd, 0x61, 0xda, 0x61, 0xb5, 0xc8, 0x29, 0xa7,
+ 0x24, 0x65, 0x69, 0x9d, 0x43, 0x51, 0x62, 0x6b, 0xff, 0x3e, 0x0e, 0xd3, 0xec, 0xd9, 0x97, 0x98,
+ 0x71, 0x34, 0xb8, 0x2d, 0x91, 0x67, 0x60, 0xb4, 0xe7, 0x3b, 0xf2, 0x89, 0xc7, 0x65, 0xc3, 0xd1,
+ 0xdb, 0xb8, 0x8a, 0x0c, 0x4e, 0x5e, 0x82, 0x09, 0x7a, 0xd7, 0xda, 0x31, 0xdd, 0x36, 0x5d, 0x37,
+ 0x3b, 0x94, 0x3f, 0x66, 0x65, 0xfe, 0x82, 0xa4, 0x9b, 0x58, 0xd2, 0x70, 0x98, 0xa0, 0xd4, 0x5b,
+ 0x6e, 0x1d, 0x74, 0xc5, 0x33, 0x67, 0xb4, 0x64, 0x38, 0x4c, 0x50, 0x92, 0x17, 0x01, 0x7c, 0xaf,
+ 0x17, 0xda, 0x6e, 0xfb, 0x26, 0x3d, 0xe0, 0x0f, 0x5f, 0x99, 0x27, 0xb2, 0x1d, 0xa0, 0xc2, 0xa0,
+ 0x46, 0x45, 0x7e, 0x07, 0x66, 0x2c, 0xcf, 0x75, 0xa9, 0x15, 0xda, 0x9e, 0x3b, 0x6f, 0x5a, 0xbb,
+ 0xde, 0xf6, 0x36, 0x7f, 0x1b, 0xe3, 0x2f, 0xbe, 0x34, 0x77, 0xec, 0x41, 0x26, 0x46, 0xc9, 0x9c,
+ 0x6c, 0x3f, 0xff, 0xe4, 0x83, 0xfb, 0x97, 0x67, 0x16, 0xd2, 0x6c, 0xb1, 0x5f, 0x12, 0x79, 0x1e,
+ 0xca, 0x5f, 0x0c, 0x3c, 0x77, 0xde, 0x6b, 0x1d, 0x54, 0x4b, 0xbc, 0x0f, 0xce, 0x49, 0x85, 0xcb,
+ 0xaf, 0x35, 0x6e, 0xad, 0x33, 0x38, 0x2a, 0x0a, 0x72, 0x1b, 0x46, 0x43, 0x27, 0xa8, 0x8e, 0x71,
+ 0xf5, 0x3e, 0x39, 0xb0, 0x7a, 0x5b, 0xab, 0x0d, 0x61, 0xb6, 0xf3, 0x63, 0xac, 0xaf, 0xb6, 0x56,
+ 0x1b, 0xc8, 0xf8, 0x91, 0xf7, 0x0c, 0x28, 0xb3, 0xf1, 0xd5, 0x32, 0x43, 0xb3, 0x5a, 0xbe, 0x32,
+ 0x7a, 0x6d, 0xfc, 0xc5, 0xcf, 0xcd, 0x9d, 0xca, 0xc1, 0xcc, 0xa5, 0xac, 0x65, 0x6e, 0x4d, 0xb2,
+ 0x5f, 0x72, 0x43, 0xff, 0x20, 0x7e, 0xc6, 0x08, 0x8c, 0x4a, 0x3e, 0xf9, 0x63, 0x03, 0xa6, 0xa3,
+ 0x5e, 0x5d, 0xa4, 0x96, 0x63, 0xfa, 0xb4, 0x5a, 0xe1, 0x0f, 0xfc, 0x66, 0x1e, 0x3a, 0x25, 0x39,
+ 0xcb, 0xd7, 0x71, 0xfe, 0xc1, 0xfd, 0xcb, 0xd3, 0x29, 0x14, 0xa6, 0xb5, 0x20, 0xef, 0x1b, 0x30,
+ 0xb1, 0xd7, 0xa3, 0x3d, 0xa5, 0x16, 0x70, 0xb5, 0x6e, 0xe7, 0xa0, 0xd6, 0xa6, 0xc6, 0x56, 0xea,
+ 0x74, 0x8e, 0x19, 0xbb, 0x0e, 0xc7, 0x84, 0x70, 0xf2, 0x65, 0xa8, 0xf0, 0xff, 0xf3, 0xb6, 0xdb,
+ 0xaa, 0x8e, 0x73, 0x4d, 0x30, 0x2f, 0x4d, 0x18, 0x4f, 0xa9, 0xc6, 0x24, 0xf3, 0x33, 0x0a, 0x88,
+ 0xb1, 0x4c, 0x72, 0x07, 0xc6, 0xa4, 0x4b, 0xab, 0x4e, 0x70, 0xf1, 0x1b, 0x39, 0x88, 0x4f, 0x78,
+ 0xd7, 0xf9, 0x71, 0xe6, 0xb5, 0x24, 0x08, 0x23, 0x69, 0xe4, 0x4d, 0x28, 0x98, 0xbd, 0x70, 0xa7,
+ 0x3a, 0x79, 0xc2, 0x61, 0x30, 0x6f, 0x06, 0xb6, 0x55, 0xef, 0x85, 0x3b, 0xf3, 0xe5, 0x07, 0xf7,
+ 0x2f, 0x17, 0xd8, 0x2f, 0xe4, 0x1c, 0x09, 0x42, 0xa5, 0xe7, 0x3b, 0x0d, 0x6a, 0xf9, 0x34, 0xac,
+ 0x4e, 0x71, 0xf6, 0x1f, 0x99, 0x13, 0xf1, 0x82, 0x71, 0x98, 0x63, 0xa1, 0x6b, 0x6e, 0xff, 0x85,
+ 0x39, 0x41, 0x71, 0x93, 0x1e, 0x34, 0xa8, 0x43, 0xad, 0xd0, 0xf3, 0xc5, 0x6b, 0xba, 0x8d, 0xab,
+ 0x02, 0x83, 0x31, 0x1b, 0x12, 0x42, 0x69, 0xdb, 0x76, 0x42, 0xea, 0x57, 0xa7, 0x73, 0x79, 0x4b,
+ 0xda, 0xa8, 0xba, 0xc1, 0xf9, 0xce, 0x03, 0xf3, 0xd8, 0xe2, 0x37, 0x4a, 0x59, 0xb3, 0x2f, 0xc3,
+ 0x64, 0x62, 0xc8, 0x91, 0x73, 0x30, 0xba, 0x4b, 0x0f, 0x84, 0xbb, 0x46, 0xf6, 0x93, 0x5c, 0x80,
+ 0xe2, 0xbe, 0xe9, 0xf4, 0xa4, 0x6b, 0x46, 0xf1, 0xe7, 0x93, 0x23, 0x2f, 0x19, 0xb5, 0x1f, 0x1b,
+ 0xf0, 0xf4, 0xa1, 0x83, 0x85, 0xc5, 0x97, 0x56, 0xcf, 0x37, 0x9b, 0x0e, 0xe5, 0xdc, 0xb4, 0xf8,
+ 0xb2, 0x28, 0xc0, 0x18, 0xe1, 0x99, 0x43, 0x66, 0x61, 0x6c, 0x91, 0x3a, 0x34, 0xa4, 0x32, 0xd2,
+ 0x29, 0x87, 0x5c, 0x57, 0x18, 0xd4, 0xa8, 0x98, 0x47, 0xb4, 0xdd, 0x90, 0xfa, 0xae, 0xe9, 0xc8,
+ 0x70, 0xa7, 0xbc, 0xc5, 0x8a, 0x84, 0xa3, 0xa2, 0xd0, 0x22, 0x58, 0xe1, 0xc8, 0x08, 0xf6, 0x69,
+ 0x38, 0x9f, 0x61, 0xdd, 0x5a, 0x73, 0xe3, 0xc8, 0xe6, 0x7f, 0x3e, 0x02, 0x17, 0xb3, 0xc7, 0x29,
+ 0xb9, 0x02, 0x05, 0x97, 0x05, 0x38, 0x11, 0x08, 0x27, 0x24, 0x83, 0x02, 0x0f, 0x6c, 0x1c, 0xa3,
+ 0xbf, 0xb0, 0x91, 0x81, 0x5e, 0xd8, 0xe8, 0xb1, 0x5e, 0x58, 0x62, 0x82, 0x50, 0x38, 0xc6, 0x04,
+ 0xe1, 0x98, 0x51, 0x9f, 0x31, 0x36, 0xfd, 0x76, 0xaf, 0xc3, 0x8c, 0x90, 0x07, 0xa7, 0x4a, 0xcc,
+ 0xb8, 0x1e, 0x21, 0x30, 0xa6, 0xa9, 0xbd, 0x57, 0x84, 0xa7, 0xeb, 0xf7, 0x7a, 0x3e, 0xe5, 0x36,
+ 0x1a, 0xbc, 0xda, 0x6b, 0xea, 0x13, 0x86, 0x2b, 0x50, 0xd8, 0xde, 0x6b, 0xb9, 0xe9, 0x17, 0x75,
+ 0x63, 0x73, 0x71, 0x1d, 0x39, 0x86, 0x74, 0xe1, 0x7c, 0xb0, 0x63, 0xfa, 0xb4, 0x55, 0xb7, 0x2c,
+ 0x1a, 0x04, 0x37, 0xe9, 0x81, 0x9a, 0x3a, 0x1c, 0x7b, 0x20, 0x3e, 0xf5, 0xe0, 0xfe, 0xe5, 0xf3,
+ 0x8d, 0x7e, 0x2e, 0x98, 0xc5, 0x9a, 0xb4, 0x60, 0x3a, 0x05, 0xe6, 0x2f, 0xfd, 0xd8, 0xd2, 0x78,
+ 0xe0, 0x48, 0x49, 0xc3, 0x34, 0x4b, 0x66, 0x00, 0x3b, 0xbd, 0x26, 0x7f, 0x16, 0x31, 0x29, 0x51,
+ 0x06, 0xf0, 0xaa, 0x00, 0x63, 0x84, 0x27, 0x7f, 0xa4, 0x87, 0xe2, 0x22, 0x0f, 0xc5, 0xdb, 0xa7,
+ 0x75, 0xab, 0x87, 0xf5, 0xc8, 0x00, 0x41, 0x39, 0x76, 0x62, 0xa5, 0xb3, 0xe2, 0xc4, 0x7e, 0x6a,
+ 0xc0, 0xe4, 0xbc, 0x1d, 0x36, 0x7b, 0xd6, 0x2e, 0x0d, 0x99, 0x8f, 0x27, 0x3e, 0x14, 0x9b, 0xcc,
+ 0xf5, 0xf3, 0xf6, 0xe3, 0x2f, 0x6e, 0x9e, 0xf2, 0x19, 0x14, 0xf3, 0x38, 0x9e, 0x54, 0x1e, 0xdc,
+ 0xbf, 0x5c, 0xe4, 0x7f, 0x51, 0x88, 0x22, 0xb7, 0x01, 0x3c, 0x16, 0x5a, 0xb6, 0xbc, 0x5d, 0xea,
+ 0x0e, 0x66, 0xc9, 0x53, 0x6c, 0xcc, 0xdf, 0xaa, 0x47, 0x8d, 0x51, 0x63, 0x54, 0xfb, 0xa1, 0x01,
+ 0xa4, 0x5f, 0x3e, 0xb9, 0x05, 0xe5, 0x5e, 0xc0, 0x1c, 0xa3, 0xf4, 0x47, 0xc7, 0x96, 0x35, 0xc1,
+ 0xfa, 0xfd, 0xb6, 0x6c, 0x8a, 0x8a, 0x09, 0x63, 0xd8, 0x35, 0x83, 0xe0, 0x8e, 0xe7, 0xb7, 0x06,
+ 0x53, 0x9e, 0x33, 0xdc, 0x90, 0x4d, 0x51, 0x31, 0xa9, 0xfd, 0x5d, 0x09, 0x2e, 0x28, 0xc5, 0x75,
+ 0xef, 0xf0, 0x1a, 0x90, 0x16, 0xf7, 0x67, 0xaf, 0x7a, 0xde, 0xee, 0x2d, 0xf7, 0x86, 0xed, 0xda,
+ 0xc1, 0x8e, 0xf4, 0xca, 0xb3, 0xd2, 0x32, 0xc9, 0x62, 0x1f, 0x05, 0x66, 0xb4, 0x22, 0xdf, 0xd6,
+ 0x07, 0xd1, 0x08, 0x1f, 0x44, 0x66, 0x5e, 0x9d, 0x7d, 0xd2, 0xf1, 0x33, 0x76, 0x87, 0x36, 0x77,
+ 0x3c, 0x6f, 0x57, 0xfa, 0x97, 0xb5, 0x53, 0xea, 0xf3, 0x86, 0xe0, 0xb6, 0xe0, 0xb9, 0x21, 0xbd,
+ 0x1b, 0x8a, 0x89, 0x92, 0x84, 0x61, 0x24, 0x8a, 0x7c, 0x51, 0x4e, 0x94, 0x0a, 0x5c, 0xe4, 0x6a,
+ 0x5e, 0xaf, 0x20, 0x73, 0xea, 0x54, 0x83, 0x92, 0x68, 0xc5, 0xbd, 0x56, 0x45, 0x8c, 0x67, 0xe1,
+ 0x75, 0x50, 0x62, 0xc8, 0xb3, 0x50, 0xf4, 0xee, 0xb8, 0xd2, 0x89, 0x54, 0xe6, 0x27, 0xe5, 0x0b,
+ 0x2b, 0xde, 0x62, 0x40, 0x14, 0x38, 0x16, 0x02, 0x99, 0x62, 0xd4, 0x62, 0xf6, 0xc4, 0x53, 0x1d,
+ 0x2d, 0x89, 0xdb, 0x50, 0x18, 0xd4, 0xa8, 0xc8, 0x2b, 0x30, 0xe5, 0xd3, 0xae, 0x17, 0xd8, 0xa1,
+ 0xe7, 0x1f, 0x34, 0x9c, 0x5e, 0xbb, 0x5a, 0xe6, 0xed, 0x2e, 0xca, 0x76, 0x53, 0x98, 0xc0, 0x62,
+ 0x8a, 0x5a, 0x73, 0x6f, 0x95, 0xb3, 0xe2, 0xde, 0xfe, 0xb7, 0x0c, 0xb3, 0xaa, 0x47, 0x1a, 0xd4,
+ 0xdf, 0xa7, 0xbe, 0x3e, 0x9c, 0x34, 0x83, 0x33, 0x1e, 0x9d, 0xc1, 0x7d, 0x2a, 0xd1, 0x77, 0x22,
+ 0xe5, 0xff, 0xb0, 0xec, 0x83, 0x0b, 0x8b, 0xb4, 0xeb, 0x53, 0xcb, 0x0c, 0x69, 0xeb, 0x90, 0x5e,
+ 0x7c, 0xb5, 0xaf, 0x17, 0x45, 0xea, 0x7f, 0x45, 0x72, 0xa8, 0xc6, 0x1c, 0x1e, 0xd2, 0x9f, 0x7f,
+ 0x60, 0xc0, 0x84, 0x02, 0xd9, 0x34, 0xa8, 0x16, 0xb8, 0x13, 0x78, 0x33, 0xaf, 0x11, 0x20, 0xde,
+ 0x77, 0xac, 0x44, 0xbc, 0x3a, 0x81, 0x9a, 0x54, 0x4c, 0xe8, 0x70, 0xac, 0x11, 0xf2, 0x26, 0x8c,
+ 0x9b, 0x7c, 0xda, 0x20, 0xe2, 0x45, 0x69, 0x10, 0x97, 0x3b, 0xfd, 0xe0, 0xfe, 0xe5, 0xf1, 0x7a,
+ 0xdc, 0x1a, 0x75, 0x56, 0xe4, 0x1d, 0x98, 0x94, 0xbd, 0x24, 0xd3, 0x9b, 0xb1, 0x41, 0x78, 0xcf,
+ 0x3c, 0xb8, 0x7f, 0x79, 0xf2, 0x0d, 0xbd, 0x3d, 0x26, 0xd9, 0x91, 0xd7, 0xe1, 0x62, 0x33, 0x7a,
+ 0x3d, 0x01, 0x7f, 0x3d, 0xf3, 0x66, 0x40, 0x6f, 0xe3, 0xaa, 0x1c, 0x8a, 0x97, 0xe4, 0x1b, 0xba,
+ 0x98, 0x7a, 0x89, 0x92, 0x0a, 0x0f, 0x69, 0x7d, 0x48, 0x5c, 0xa8, 0x9c, 0x28, 0x2e, 0x7c, 0x57,
+ 0x8f, 0x0b, 0xc0, 0x4d, 0xa2, 0x9d, 0xaf, 0x49, 0x9c, 0x76, 0x76, 0x35, 0x7e, 0x56, 0xdc, 0xcf,
+ 0xb7, 0x0d, 0x78, 0xfa, 0xd0, 0xe1, 0x90, 0xf2, 0xe1, 0xc6, 0x09, 0x7d, 0xf8, 0xc8, 0x20, 0x3e,
+ 0xbc, 0xf6, 0x17, 0x45, 0x38, 0xbf, 0x60, 0x3a, 0xd4, 0x6d, 0x99, 0x09, 0x4f, 0xf8, 0x3c, 0x94,
+ 0x03, 0x6b, 0x87, 0xb6, 0x7a, 0x4e, 0x94, 0xa3, 0xa9, 0xae, 0x68, 0x48, 0x38, 0x2a, 0x0a, 0x95,
+ 0x7d, 0xee, 0x9b, 0x8e, 0x94, 0x9f, 0xcc, 0x3e, 0xf7, 0x55, 0xf6, 0xb9, 0x6f, 0x3a, 0xe4, 0x93,
+ 0x30, 0x25, 0xd3, 0x2a, 0xcf, 0x5d, 0x34, 0x43, 0x1a, 0x54, 0x47, 0xf9, 0xd0, 0x26, 0x4c, 0xdf,
+ 0xa5, 0x04, 0x06, 0x53, 0x94, 0x4c, 0x52, 0x68, 0x77, 0xe8, 0x3d, 0xcf, 0x8d, 0xb2, 0x02, 0x25,
+ 0x69, 0x4b, 0xc2, 0x51, 0x51, 0x90, 0x6f, 0xf5, 0xe7, 0x05, 0x5f, 0x38, 0xa5, 0x95, 0x64, 0xbc,
+ 0xac, 0x01, 0x6c, 0xf6, 0xab, 0x06, 0x8c, 0x77, 0xa9, 0x1f, 0xd8, 0x41, 0x48, 0x5d, 0x8b, 0x4a,
+ 0x57, 0x75, 0x2b, 0x0f, 0xcb, 0xdd, 0x88, 0xd9, 0x0a, 0xa7, 0xa6, 0x01, 0x50, 0x17, 0xaa, 0x0d,
+ 0x9c, 0xf2, 0x59, 0x19, 0x38, 0x77, 0xe1, 0xc2, 0x82, 0x19, 0x5a, 0x3b, 0xbd, 0xae, 0x58, 0x3f,
+ 0xe8, 0xf9, 0x66, 0x68, 0x7b, 0x2e, 0xcb, 0x11, 0xa9, 0x6b, 0x36, 0x1d, 0xda, 0x4a, 0xaf, 0xaa,
+ 0x2c, 0x09, 0x30, 0x46, 0x78, 0xf2, 0x31, 0x18, 0xef, 0x98, 0x77, 0x17, 0x65, 0x4b, 0x69, 0xa6,
+ 0x6a, 0xcf, 0x61, 0x2d, 0x46, 0xa1, 0x4e, 0x57, 0xfb, 0x12, 0x5c, 0x10, 0x22, 0xd7, 0xcc, 0xae,
+ 0xf6, 0x46, 0x8f, 0xb1, 0x80, 0xb1, 0x08, 0xe7, 0x2c, 0x9f, 0x9a, 0x21, 0x5d, 0xd9, 0x5e, 0xf7,
+ 0xc2, 0xa5, 0xbb, 0x76, 0x10, 0xca, 0x95, 0x8c, 0xaa, 0xa4, 0x3e, 0xb7, 0x90, 0xc2, 0x63, 0x5f,
+ 0x8b, 0xda, 0x77, 0xc6, 0x80, 0x2c, 0x75, 0xec, 0x30, 0x4c, 0xce, 0x54, 0xae, 0x42, 0xa9, 0xe9,
+ 0x7b, 0xbb, 0xd4, 0x97, 0x0a, 0xa8, 0xd5, 0x88, 0x79, 0x0e, 0x45, 0x89, 0x65, 0x3e, 0xc5, 0xda,
+ 0x31, 0x5d, 0x97, 0x3a, 0xf1, 0xdc, 0x42, 0xf9, 0x94, 0x05, 0x85, 0x41, 0x8d, 0x8a, 0xef, 0xce,
+ 0x88, 0x7f, 0x3c, 0xf9, 0x1e, 0x4d, 0xed, 0xce, 0xc4, 0x28, 0xd4, 0xe9, 0x12, 0x69, 0x54, 0x21,
+ 0xef, 0x34, 0xaa, 0x98, 0x43, 0x1a, 0x95, 0xbd, 0x6b, 0x51, 0x7a, 0x2c, 0xbb, 0x16, 0x63, 0xc7,
+ 0xdd, 0xb5, 0x28, 0xe7, 0xbc, 0x6b, 0xf1, 0x4d, 0xdd, 0x25, 0x56, 0xb8, 0x4b, 0x7c, 0xf7, 0xb4,
+ 0xe3, 0xbf, 0xcf, 0x3c, 0x4f, 0x14, 0xc5, 0xe1, 0xac, 0x38, 0xa3, 0x0f, 0x46, 0xe0, 0x5c, 0xda,
+ 0xe5, 0x92, 0x7b, 0x30, 0x66, 0x09, 0x0f, 0x25, 0x53, 0x87, 0xc6, 0xa9, 0x03, 0x4d, 0xbf, 0xbf,
+ 0x93, 0x4b, 0xfb, 0x02, 0x83, 0x91, 0x40, 0xf2, 0x15, 0x03, 0x2a, 0x56, 0xe4, 0xa4, 0xe4, 0x8a,
+ 0xc3, 0xa9, 0xc5, 0x67, 0x38, 0x3d, 0xb1, 0x5e, 0xaf, 0x30, 0x18, 0x0b, 0xad, 0xfd, 0x6c, 0x04,
+ 0xc6, 0x75, 0xff, 0xf4, 0x05, 0xcd, 0xca, 0xc4, 0xfb, 0xf8, 0x0d, 0x6d, 0xec, 0xaa, 0x2d, 0xe4,
+ 0x58, 0x09, 0x46, 0xcd, 0x46, 0xf3, 0xad, 0x26, 0x9b, 0xda, 0xb0, 0xce, 0x89, 0xfd, 0x54, 0x0c,
+ 0xd3, 0x0c, 0xa7, 0x0b, 0x85, 0xa0, 0x4b, 0x2d, 0xf9, 0xb8, 0xeb, 0xf9, 0x99, 0x4d, 0xa3, 0x4b,
+ 0xad, 0xd8, 0xa1, 0xb3, 0x7f, 0xc8, 0x25, 0x91, 0xbb, 0x50, 0x0a, 0x42, 0x33, 0xec, 0x05, 0x72,
+ 0x35, 0x22, 0x47, 0x53, 0x6d, 0x70, 0xbe, 0xb1, 0x17, 0x17, 0xff, 0x51, 0xca, 0xab, 0x2d, 0xc3,
+ 0x4c, 0x9f, 0x5d, 0x33, 0xd7, 0x4e, 0xef, 0x76, 0x7d, 0x1a, 0xb0, 0xd9, 0x51, 0x7a, 0xba, 0xb8,
+ 0xa4, 0x30, 0xa8, 0x51, 0xd5, 0x7e, 0x6e, 0xc0, 0xb4, 0xc6, 0x69, 0xd5, 0x0e, 0x42, 0xf2, 0xb9,
+ 0xbe, 0xae, 0x9a, 0x3b, 0x5e, 0x57, 0xb1, 0xd6, 0xbc, 0xa3, 0xd4, 0xf8, 0x8e, 0x20, 0x5a, 0x37,
+ 0x79, 0x50, 0xb4, 0x43, 0xda, 0x09, 0xe4, 0x8a, 0xd2, 0x6b, 0xf9, 0xbd, 0xb3, 0x78, 0x25, 0x64,
+ 0x85, 0x09, 0x40, 0x21, 0xa7, 0xf6, 0xb5, 0x4f, 0x27, 0x1e, 0x91, 0xf5, 0x1f, 0xdf, 0x1c, 0x67,
+ 0xa0, 0xf9, 0x5e, 0xb0, 0x1e, 0x07, 0xed, 0x78, 0x73, 0x5c, 0xc3, 0x61, 0x82, 0x92, 0xec, 0x41,
+ 0x39, 0xa4, 0x9d, 0xae, 0x63, 0x86, 0xd1, 0x8a, 0xfa, 0xf2, 0x29, 0x9f, 0x60, 0x4b, 0xb2, 0x13,
+ 0x51, 0x2a, 0xfa, 0x87, 0x4a, 0x0c, 0xe9, 0xc0, 0x18, 0x4b, 0xe6, 0x6c, 0x8b, 0x4a, 0x3b, 0xbb,
+ 0x71, 0x4a, 0x89, 0x0d, 0xc1, 0x4d, 0x38, 0x0f, 0xf9, 0x07, 0x23, 0x19, 0xe4, 0x4b, 0x50, 0xec,
+ 0xd8, 0xae, 0xed, 0xc9, 0x6c, 0xff, 0xad, 0x7c, 0x07, 0xd2, 0xdc, 0x1a, 0xe3, 0x2d, 0xc2, 0x80,
+ 0xea, 0x2f, 0x0e, 0x43, 0x21, 0x96, 0x6f, 0xa3, 0x5b, 0x72, 0x52, 0x2d, 0xe7, 0xe8, 0x9f, 0xcb,
+ 0x59, 0x07, 0x35, 0x67, 0x4f, 0x46, 0xa3, 0x08, 0x8c, 0x4a, 0x3e, 0xb9, 0x07, 0x85, 0x6d, 0xdb,
+ 0x61, 0xf3, 0xf2, 0x3c, 0x56, 0x3e, 0xd2, 0x7a, 0xdc, 0xb0, 0x1d, 0x2a, 0x74, 0x88, 0xf7, 0x71,
+ 0x6c, 0x87, 0x22, 0x97, 0xc9, 0x5f, 0x84, 0x4f, 0x05, 0x8f, 0xea, 0xd8, 0x50, 0x5e, 0x04, 0x4a,
+ 0xf6, 0xa9, 0x17, 0x11, 0x81, 0x51, 0xc9, 0x27, 0xbf, 0x67, 0xc4, 0x4b, 0x61, 0xe2, 0x6c, 0xc3,
+ 0xdb, 0x39, 0xeb, 0x22, 0xd7, 0x45, 0x84, 0x2a, 0x6a, 0xda, 0xde, 0xb7, 0x38, 0x76, 0x0f, 0x0a,
+ 0x66, 0x67, 0xaf, 0x2b, 0xa7, 0x2a, 0x79, 0xf7, 0x48, 0xbd, 0xb3, 0xd7, 0x4d, 0xf5, 0x48, 0x7d,
+ 0x6d, 0x73, 0x03, 0xb9, 0x4c, 0x36, 0x34, 0x76, 0xcd, 0xed, 0xdd, 0x68, 0xd5, 0x23, 0xef, 0xa1,
+ 0x71, 0x93, 0xf1, 0x4e, 0x0d, 0x0d, 0x0e, 0x43, 0x21, 0x96, 0x3d, 0x7b, 0x67, 0x2f, 0x0c, 0xab,
+ 0xe3, 0x43, 0x79, 0xf6, 0xb5, 0xbd, 0x30, 0x4c, 0x3d, 0xfb, 0xda, 0xe6, 0xd6, 0x16, 0x72, 0x99,
+ 0x4c, 0xb6, 0x6b, 0x86, 0x41, 0x75, 0x62, 0x28, 0xb2, 0xd7, 0xcd, 0x30, 0x48, 0xc9, 0x5e, 0xaf,
+ 0x6f, 0x35, 0x90, 0xcb, 0x24, 0xfb, 0x30, 0x1a, 0xb8, 0x41, 0x75, 0x92, 0x8b, 0x7e, 0x23, 0x67,
+ 0xd1, 0x0d, 0x57, 0x4a, 0x56, 0xa7, 0xaf, 0x1a, 0xeb, 0x0d, 0x64, 0x02, 0xb9, 0xdc, 0xbd, 0xa0,
+ 0x3a, 0x35, 0x1c, 0xb9, 0x7b, 0x7d, 0x72, 0x37, 0x99, 0xdc, 0xbd, 0x80, 0x7c, 0xd5, 0x80, 0x52,
+ 0xb7, 0xd7, 0x6c, 0xf4, 0x9a, 0xd5, 0x69, 0x2e, 0xfb, 0xb3, 0x39, 0xcb, 0xde, 0xe0, 0xcc, 0x85,
+ 0x78, 0x35, 0xc7, 0x10, 0x40, 0x94, 0x92, 0xb9, 0x12, 0x42, 0x6a, 0xf5, 0xdc, 0x50, 0x94, 0x58,
+ 0xe6, 0xdc, 0x52, 0x4a, 0x08, 0x20, 0x4a, 0xc9, 0x91, 0x12, 0x8e, 0xd9, 0xac, 0xce, 0x0c, 0x4b,
+ 0x09, 0xc7, 0xcc, 0x50, 0xc2, 0x31, 0x85, 0x12, 0x8e, 0xd9, 0x64, 0xa6, 0xbf, 0xd3, 0xda, 0x0e,
+ 0xaa, 0x64, 0x28, 0xa6, 0xff, 0x6a, 0x6b, 0x3b, 0x6d, 0xfa, 0xaf, 0x2e, 0xde, 0x68, 0x20, 0x97,
+ 0xc9, 0x5c, 0x4e, 0xe0, 0x98, 0xd6, 0x6e, 0xf5, 0xfc, 0x50, 0x5c, 0x4e, 0x83, 0xf1, 0x4e, 0xb9,
+ 0x1c, 0x0e, 0x43, 0x21, 0x96, 0x7c, 0xcf, 0x80, 0xf1, 0x20, 0xf4, 0x7c, 0xb3, 0x4d, 0x97, 0x7d,
+ 0xbb, 0x55, 0xbd, 0x90, 0x4f, 0x86, 0x98, 0x56, 0x23, 0x96, 0x20, 0x94, 0x51, 0xab, 0x0b, 0x1a,
+ 0x06, 0x75, 0x45, 0xc8, 0x9f, 0x19, 0x30, 0x65, 0x26, 0xf6, 0xe4, 0xab, 0x4f, 0x72, 0xdd, 0x9a,
+ 0x79, 0x87, 0x84, 0xe4, 0xc6, 0x3f, 0x57, 0x4f, 0xad, 0xa6, 0x26, 0x91, 0x98, 0xd2, 0x88, 0x9b,
+ 0x6f, 0x10, 0xfa, 0x76, 0x97, 0x56, 0x2f, 0x0e, 0xc5, 0x7c, 0x1b, 0x9c, 0x79, 0xca, 0x7c, 0x05,
+ 0x10, 0xa5, 0x64, 0x1e, 0xba, 0xa9, 0x48, 0xc9, 0xab, 0x4f, 0x0d, 0x25, 0x74, 0x47, 0x09, 0x7f,
+ 0x32, 0x74, 0x4b, 0x28, 0x46, 0xc2, 0x99, 0x2d, 0xfb, 0xb4, 0x65, 0x07, 0xd5, 0xea, 0x50, 0x6c,
+ 0x19, 0x19, 0xef, 0x94, 0x2d, 0x73, 0x18, 0x0a, 0xb1, 0xcc, 0x9d, 0xbb, 0xc1, 0x5e, 0xf5, 0xe9,
+ 0xa1, 0xb8, 0xf3, 0xf5, 0x60, 0x2f, 0xe5, 0xce, 0xd7, 0x1b, 0x9b, 0xc8, 0x04, 0x4a, 0x77, 0xee,
+ 0x04, 0xa6, 0x5f, 0x9d, 0x1d, 0x92, 0x3b, 0x67, 0xcc, 0xfb, 0xdc, 0x39, 0x03, 0xa2, 0x94, 0xcc,
+ 0xad, 0x80, 0x1f, 0xc6, 0xb6, 0xad, 0xea, 0x87, 0x86, 0x62, 0x05, 0xcb, 0x82, 0x7b, 0xca, 0x0a,
+ 0x24, 0x14, 0x23, 0xe1, 0xe4, 0x1a, 0x9b, 0xd5, 0x76, 0x1d, 0xdb, 0x32, 0x83, 0xea, 0x87, 0xaf,
+ 0x18, 0xd7, 0x8a, 0x22, 0xf1, 0x41, 0x09, 0x43, 0x85, 0x25, 0x3f, 0x30, 0x60, 0x3a, 0xb5, 0x9f,
+ 0x55, 0x7d, 0x86, 0xab, 0x6e, 0xe5, 0xac, 0xfa, 0x7c, 0x52, 0x8a, 0x78, 0x84, 0xa7, 0xe4, 0x23,
+ 0x4c, 0xa7, 0x77, 0x68, 0xd2, 0x4a, 0x91, 0x6f, 0x19, 0x50, 0x51, 0xb0, 0xea, 0x25, 0xae, 0xe2,
+ 0xe7, 0x87, 0xa5, 0xa2, 0x50, 0x4e, 0x1d, 0x21, 0x53, 0x70, 0x8c, 0x55, 0xe0, 0x5e, 0x9b, 0xdb,
+ 0x7c, 0x23, 0xf4, 0xa9, 0xd9, 0xa9, 0x5e, 0x1e, 0x8a, 0xd7, 0xc6, 0x58, 0x42, 0xca, 0x6b, 0x6b,
+ 0x18, 0xd4, 0x15, 0x99, 0xed, 0x01, 0xc4, 0x09, 0x60, 0xc6, 0x22, 0xdb, 0xa6, 0xbe, 0xc8, 0x36,
+ 0xfe, 0xe2, 0xcb, 0x03, 0x2f, 0x73, 0x36, 0x7e, 0xb3, 0xee, 0x87, 0xf6, 0xb6, 0x69, 0x85, 0xda,
+ 0x0a, 0xdd, 0xec, 0xb7, 0x0d, 0x98, 0x4c, 0x24, 0x7d, 0x19, 0xa2, 0x77, 0x92, 0xa2, 0x31, 0xff,
+ 0x7d, 0x21, 0x5d, 0xa3, 0xdf, 0x37, 0xa0, 0xa2, 0xd2, 0xbf, 0x0c, 0x6d, 0x5a, 0x49, 0x6d, 0x4e,
+ 0xbb, 0x9c, 0xc5, 0x45, 0x65, 0x6b, 0xc2, 0xde, 0x4d, 0x22, 0x0f, 0x1c, 0xfe, 0xbb, 0x51, 0xe2,
+ 0xb2, 0x35, 0xfa, 0xba, 0x01, 0x13, 0x7a, 0x36, 0x98, 0xa1, 0x90, 0x95, 0x54, 0x28, 0xdf, 0x63,
+ 0x19, 0xe9, 0x7e, 0x52, 0x49, 0xe1, 0xf0, 0xfb, 0x29, 0x75, 0xe0, 0x3f, 0xf5, 0x56, 0x20, 0xce,
+ 0x10, 0x33, 0x54, 0xa1, 0x49, 0x55, 0x4e, 0xbb, 0x89, 0x28, 0x64, 0x1d, 0x6e, 0xbd, 0x2a, 0x5d,
+ 0x1c, 0xfe, 0x5b, 0x61, 0x69, 0xe8, 0x21, 0x9a, 0x7c, 0xcd, 0x80, 0x8a, 0x4a, 0x1e, 0x87, 0xff,
+ 0x52, 0x58, 0x52, 0x2a, 0xa6, 0x77, 0xfd, 0xaa, 0xfc, 0xae, 0x01, 0xe5, 0x28, 0x99, 0x1c, 0xbe,
+ 0xc9, 0x36, 0xd6, 0x1b, 0x87, 0xbc, 0x12, 0xae, 0xc7, 0xde, 0x23, 0xd3, 0x63, 0xf3, 0x30, 0x3d,
+ 0xde, 0x37, 0x60, 0x5c, 0x4b, 0x34, 0x33, 0x54, 0xd9, 0x4e, 0xaa, 0x72, 0xda, 0xf5, 0x73, 0x29,
+ 0xec, 0x70, 0x6d, 0xb4, 0x8c, 0x73, 0xf8, 0xda, 0x48, 0x61, 0x47, 0x6a, 0x13, 0xa5, 0x9e, 0x8f,
+ 0x44, 0x1b, 0x26, 0xec, 0xf0, 0xe1, 0xac, 0xd2, 0xd0, 0xe1, 0x0f, 0x67, 0x96, 0xde, 0x1e, 0xe1,
+ 0xe4, 0xe2, 0x9c, 0x74, 0xf8, 0xe3, 0x59, 0xc8, 0xca, 0xd6, 0xe5, 0xbb, 0x06, 0x9c, 0x4b, 0x27,
+ 0xa6, 0x19, 0x1a, 0xed, 0x26, 0x35, 0x3a, 0x6d, 0x1d, 0x93, 0x2e, 0x31, 0x5b, 0xaf, 0x3f, 0x35,
+ 0xe0, 0x7c, 0x46, 0x52, 0x9a, 0xa1, 0x9a, 0x9b, 0x54, 0xed, 0xcd, 0x61, 0x1d, 0x81, 0x4f, 0x5b,
+ 0xb6, 0x96, 0x95, 0x0e, 0xdf, 0xb2, 0xa5, 0xb0, 0x6c, 0x6d, 0xbe, 0x69, 0xc0, 0x84, 0x9e, 0x9d,
+ 0x66, 0xa8, 0xd3, 0x4e, 0xaa, 0xb3, 0x99, 0xfb, 0xe6, 0x77, 0xda, 0xbe, 0xe3, 0x3c, 0x75, 0xf8,
+ 0xf6, 0x2d, 0x64, 0x1d, 0x1e, 0x27, 0xa2, 0xac, 0x75, 0xf8, 0x71, 0x62, 0xbd, 0xb1, 0x79, 0x64,
+ 0x9c, 0x50, 0x19, 0xec, 0xa3, 0x88, 0x13, 0x5c, 0xd8, 0xe1, 0x16, 0xa3, 0x67, 0xb2, 0xc3, 0xb7,
+ 0x98, 0x48, 0x5a, 0xb6, 0x3e, 0xdf, 0x37, 0xb4, 0xa3, 0xfe, 0x5a, 0x7a, 0x9a, 0xa1, 0x97, 0x97,
+ 0xd4, 0xeb, 0xad, 0xa1, 0x1d, 0xca, 0xd4, 0xf5, 0xfb, 0xc0, 0x80, 0xa9, 0x64, 0x6e, 0x9a, 0xa1,
+ 0x99, 0x9d, 0xd4, 0xac, 0x31, 0x84, 0x32, 0x82, 0xb4, 0xe7, 0x4e, 0x27, 0xa7, 0xc3, 0xf7, 0xdc,
+ 0xba, 0xc4, 0x4c, 0xbd, 0x6a, 0x61, 0x62, 0xdb, 0x5e, 0xec, 0xe9, 0x93, 0x77, 0xd5, 0x29, 0x02,
+ 0xb1, 0xd9, 0xfe, 0xf1, 0xc1, 0x73, 0xde, 0xa3, 0x0f, 0x0b, 0xfc, 0x4d, 0x01, 0xa6, 0x53, 0xf9,
+ 0x1f, 0xaf, 0x76, 0x63, 0x7f, 0x79, 0x69, 0xb8, 0x91, 0x2c, 0x4a, 0x5b, 0x8a, 0x10, 0x18, 0xd3,
+ 0x90, 0x0f, 0x0c, 0x98, 0xbe, 0x63, 0x86, 0xd6, 0xce, 0x86, 0x19, 0xee, 0x88, 0x13, 0x1f, 0x39,
+ 0xcd, 0x06, 0xde, 0x48, 0x72, 0x8d, 0x97, 0x5d, 0x52, 0x08, 0x4c, 0xcb, 0x27, 0xcf, 0xc1, 0x58,
+ 0xd7, 0x73, 0x1c, 0xdb, 0x6d, 0xcb, 0x1a, 0x3f, 0xb5, 0xe8, 0xb4, 0x21, 0xc0, 0x18, 0xe1, 0x93,
+ 0xb5, 0xd9, 0x85, 0x5c, 0xf6, 0x52, 0x53, 0xaf, 0xf4, 0x44, 0x47, 0x9c, 0x8a, 0x67, 0xe5, 0x88,
+ 0xd3, 0x3f, 0x17, 0x80, 0xf4, 0xfb, 0xa9, 0x87, 0xdd, 0x5e, 0x70, 0x15, 0x4a, 0x56, 0x6c, 0x2a,
+ 0xda, 0xa1, 0x44, 0xd9, 0xa3, 0x12, 0x2b, 0x8e, 0x0b, 0x07, 0xd4, 0xea, 0xf9, 0xb4, 0xbf, 0x58,
+ 0x55, 0xc0, 0x51, 0x51, 0x24, 0x8e, 0xcd, 0x15, 0x1e, 0x7a, 0x6c, 0xee, 0x9b, 0xfd, 0x47, 0x7e,
+ 0xdf, 0xcd, 0xdd, 0x61, 0x0f, 0xd0, 0xf9, 0xb7, 0x79, 0x6d, 0xea, 0x8e, 0x2c, 0x1f, 0x28, 0x0d,
+ 0x5c, 0xca, 0x56, 0x57, 0x8d, 0x51, 0x63, 0xa4, 0xd9, 0xd4, 0xd8, 0x59, 0xb1, 0xa9, 0x7f, 0x32,
+ 0x60, 0x4a, 0x24, 0x49, 0xf5, 0x6e, 0x77, 0xc1, 0xa7, 0xad, 0x80, 0xbd, 0x9c, 0xae, 0x6f, 0xef,
+ 0x9b, 0x21, 0x8d, 0x4e, 0xbc, 0x0f, 0xf6, 0x72, 0x36, 0x54, 0x63, 0xd4, 0x18, 0x91, 0x67, 0xa1,
+ 0x68, 0x76, 0xbb, 0x2b, 0x8b, 0x5c, 0x87, 0xd1, 0x78, 0x77, 0xa0, 0xce, 0x80, 0x28, 0x70, 0xe4,
+ 0x15, 0x98, 0xb2, 0xdd, 0x20, 0x34, 0x1d, 0x87, 0x1f, 0xad, 0x5b, 0x59, 0xe4, 0xa6, 0x38, 0x1a,
+ 0xef, 0xf5, 0xac, 0x24, 0xb0, 0x98, 0xa2, 0xae, 0xfd, 0xed, 0x38, 0xcc, 0xf4, 0xe5, 0x7c, 0x64,
+ 0x16, 0x46, 0x6c, 0x71, 0x16, 0x79, 0x74, 0x1e, 0x24, 0xa7, 0x91, 0x95, 0x45, 0x1c, 0xb1, 0x5b,
+ 0x7a, 0x75, 0xd1, 0xc8, 0xa3, 0xab, 0x2e, 0xfa, 0x68, 0x54, 0x3e, 0x26, 0xce, 0xf1, 0x2a, 0x77,
+ 0x1b, 0x97, 0x05, 0x25, 0x0a, 0xc9, 0x3e, 0x05, 0x10, 0x97, 0x08, 0xc8, 0x23, 0xf6, 0x19, 0xc5,
+ 0x48, 0x71, 0x59, 0x01, 0x6a, 0xf4, 0xc7, 0xaa, 0xd6, 0xb9, 0x05, 0x65, 0xb3, 0x6b, 0x9f, 0xa0,
+ 0x54, 0x87, 0xef, 0x1b, 0xd4, 0x37, 0x56, 0x44, 0x9d, 0x8e, 0x62, 0x32, 0xf4, 0x22, 0x1d, 0xdd,
+ 0x5d, 0x95, 0x1f, 0xea, 0xae, 0xae, 0x42, 0xc9, 0xb4, 0x42, 0x7b, 0x9f, 0xca, 0x72, 0x1b, 0xe5,
+ 0x04, 0xeb, 0x1c, 0x8a, 0x12, 0x2b, 0xef, 0xc0, 0x09, 0xa3, 0xa0, 0x0c, 0x7d, 0x77, 0xe0, 0x44,
+ 0x28, 0xd4, 0xe9, 0xc8, 0xcb, 0x30, 0x29, 0x8c, 0x26, 0x2a, 0x14, 0x1a, 0xe7, 0x0d, 0x9f, 0x94,
+ 0x0d, 0x27, 0x97, 0x75, 0x24, 0x26, 0x69, 0x49, 0x1d, 0xa6, 0x05, 0xe0, 0x76, 0xd7, 0xf1, 0xcc,
+ 0x16, 0x6b, 0x3e, 0x91, 0xb4, 0x8a, 0xe5, 0x24, 0x1a, 0xd3, 0xf4, 0x87, 0x54, 0x16, 0x4d, 0x9e,
+ 0xa8, 0xb2, 0xe8, 0x1b, 0xba, 0xaf, 0x16, 0xa7, 0x2e, 0xde, 0xc9, 0x7b, 0x15, 0x66, 0x00, 0x57,
+ 0xfd, 0x5e, 0xba, 0xfe, 0x4d, 0x1c, 0xc6, 0x38, 0xad, 0x6b, 0x65, 0xc3, 0xab, 0xa5, 0x57, 0xb8,
+ 0x1d, 0xab, 0xee, 0xed, 0xe3, 0x30, 0xe9, 0xf9, 0x6d, 0xd3, 0xb5, 0xef, 0x71, 0x87, 0x13, 0xf0,
+ 0x43, 0x19, 0x15, 0x61, 0xad, 0xb7, 0x74, 0x04, 0x26, 0xe9, 0xc8, 0x3d, 0xa8, 0xb4, 0x23, 0x2f,
+ 0x5b, 0x9d, 0xc9, 0xc5, 0xcf, 0x24, 0xbd, 0xb6, 0x38, 0x05, 0xac, 0x60, 0x18, 0x8b, 0xd3, 0xa2,
+ 0x12, 0x39, 0x2b, 0x51, 0xe9, 0xdf, 0xc6, 0xb8, 0x1b, 0x4f, 0x2e, 0x96, 0x3d, 0xa6, 0x42, 0xd0,
+ 0x4f, 0x40, 0x45, 0x96, 0x76, 0xc9, 0xd8, 0x55, 0x99, 0xff, 0x90, 0x34, 0x95, 0xf3, 0x7d, 0x75,
+ 0xa0, 0x2b, 0x8b, 0x18, 0x53, 0x6b, 0x8e, 0x77, 0xf4, 0xb8, 0x65, 0x92, 0x85, 0xfc, 0xca, 0x24,
+ 0x1b, 0xf0, 0xa4, 0x28, 0xb3, 0x69, 0x34, 0x56, 0x5f, 0xa7, 0xbe, 0xbd, 0x6d, 0x5b, 0xa2, 0xca,
+ 0x46, 0x5c, 0x95, 0xf1, 0x8c, 0x7c, 0x88, 0x27, 0x97, 0xb2, 0x88, 0x30, 0xbb, 0xad, 0xf4, 0x74,
+ 0x8e, 0xa9, 0x3c, 0x5d, 0xa9, 0xcf, 0xd3, 0xc5, 0x48, 0x4c, 0xd2, 0x1e, 0xe2, 0xa6, 0xca, 0xa7,
+ 0x77, 0x53, 0x95, 0xbc, 0xdc, 0x54, 0xd2, 0xe2, 0x06, 0x70, 0x53, 0xd7, 0xa0, 0x2c, 0xfb, 0x3d,
+ 0xe0, 0x07, 0x13, 0x2b, 0xb2, 0xde, 0x45, 0xc2, 0x50, 0x61, 0x59, 0x87, 0x07, 0xbc, 0x27, 0x45,
+ 0x87, 0x8f, 0x0f, 0xdc, 0xe1, 0x8d, 0xb8, 0x35, 0xea, 0xac, 0xb4, 0x81, 0x3e, 0x71, 0x56, 0x06,
+ 0xfa, 0xf7, 0x2b, 0x30, 0x9d, 0x5a, 0x89, 0xce, 0xcc, 0x72, 0x8d, 0xc7, 0x9c, 0xe5, 0x5e, 0x81,
+ 0x42, 0xc8, 0x26, 0x04, 0x23, 0xc9, 0xc2, 0x32, 0x3e, 0x13, 0xe0, 0x18, 0x36, 0x30, 0xac, 0x1d,
+ 0x6a, 0xed, 0x46, 0xa5, 0x95, 0x72, 0x66, 0xa7, 0x06, 0xc6, 0x82, 0x8e, 0xc4, 0x24, 0x2d, 0xf9,
+ 0x75, 0xa8, 0x98, 0xad, 0x96, 0x4f, 0x83, 0x40, 0x16, 0x78, 0x57, 0x84, 0x3f, 0xaf, 0x47, 0x40,
+ 0x8c, 0xf1, 0x6c, 0xe6, 0xb3, 0xd3, 0xda, 0x0e, 0x6e, 0x07, 0x32, 0x77, 0xd5, 0xaa, 0x2d, 0xd9,
+ 0xab, 0x64, 0x70, 0x54, 0x14, 0xa4, 0x05, 0xd3, 0xbb, 0x7e, 0x73, 0x61, 0xc1, 0xb4, 0x76, 0xe8,
+ 0x49, 0xf2, 0x1d, 0x7e, 0x2d, 0xcc, 0xcd, 0x24, 0x07, 0x4c, 0xb3, 0x94, 0x52, 0x6e, 0xd2, 0x83,
+ 0xd0, 0x6c, 0x9e, 0x64, 0xbe, 0x17, 0x49, 0xd1, 0x39, 0x60, 0x9a, 0x25, 0x9b, 0x9d, 0xed, 0xfa,
+ 0xcd, 0xa8, 0x28, 0x4d, 0x56, 0x63, 0xab, 0xd9, 0xd9, 0xcd, 0x18, 0x85, 0x3a, 0x1d, 0x7b, 0x61,
+ 0xbb, 0x7e, 0x13, 0xa9, 0xe9, 0x74, 0xf8, 0xf4, 0x4f, 0x7b, 0x61, 0x37, 0x25, 0x1c, 0x15, 0x05,
+ 0xe9, 0x02, 0x61, 0x4f, 0xc7, 0xfb, 0x5d, 0x55, 0xd5, 0xc8, 0x3a, 0xa8, 0x6b, 0x59, 0x4f, 0xa3,
+ 0x88, 0xf4, 0x07, 0xba, 0xc8, 0x5c, 0xd9, 0xcd, 0x3e, 0x3e, 0x98, 0xc1, 0x9b, 0xbc, 0x05, 0x4f,
+ 0xed, 0xfa, 0x4d, 0x59, 0x03, 0xb0, 0xe1, 0xdb, 0xae, 0x65, 0x77, 0x4d, 0x51, 0xe6, 0x27, 0xe6,
+ 0x91, 0x97, 0xa5, 0xba, 0x4f, 0xdd, 0xcc, 0x26, 0xc3, 0xc3, 0xda, 0x27, 0x97, 0x5c, 0x26, 0x72,
+ 0x59, 0x72, 0x49, 0x0d, 0xd7, 0x13, 0x2d, 0xb9, 0x4c, 0x9e, 0x15, 0xff, 0xf4, 0x43, 0x03, 0x08,
+ 0xdf, 0x83, 0x8f, 0xae, 0xbf, 0x5c, 0xf6, 0xbd, 0x5e, 0x97, 0x5c, 0x87, 0x4a, 0x9b, 0xfd, 0xd0,
+ 0xea, 0x56, 0xd4, 0xca, 0xdd, 0x72, 0x84, 0xc0, 0x98, 0x86, 0xe5, 0x1f, 0x9e, 0xd3, 0xa2, 0xaa,
+ 0xd8, 0x54, 0xe5, 0x1f, 0xb7, 0x38, 0x14, 0x25, 0x96, 0x2c, 0xc3, 0x8c, 0x4f, 0x9b, 0xa6, 0x63,
+ 0xba, 0x16, 0x6d, 0x84, 0xbe, 0x19, 0xd2, 0xf6, 0x81, 0xf4, 0x24, 0x4f, 0xcb, 0x26, 0x33, 0x98,
+ 0x26, 0xc0, 0xfe, 0x36, 0xb5, 0xbf, 0x2a, 0xc3, 0xb9, 0xf4, 0xe1, 0x81, 0x87, 0xad, 0x14, 0x5d,
+ 0x87, 0x4a, 0xd7, 0xf4, 0x43, 0x5b, 0x2b, 0xc5, 0x55, 0x4f, 0xb5, 0x11, 0x21, 0x30, 0xa6, 0x61,
+ 0x29, 0x7d, 0xe8, 0x75, 0x6d, 0x4b, 0x6a, 0xa8, 0x52, 0xfa, 0x2d, 0x06, 0x44, 0x81, 0xcb, 0xae,
+ 0xef, 0x2c, 0x3c, 0xb2, 0xfa, 0x4e, 0x59, 0xb1, 0x59, 0xcc, 0xb9, 0x62, 0x73, 0xb0, 0xcb, 0x2e,
+ 0xdf, 0xd7, 0x87, 0xe1, 0x58, 0x2e, 0x47, 0xd3, 0xd2, 0x9d, 0x3b, 0x58, 0x4a, 0x35, 0x69, 0xe9,
+ 0xf6, 0x2c, 0xeb, 0x59, 0x37, 0xf3, 0x50, 0x29, 0x31, 0x50, 0x44, 0x66, 0x94, 0x00, 0x61, 0x52,
+ 0x34, 0xd9, 0x80, 0x0b, 0x8e, 0xdd, 0xb1, 0xc5, 0x2e, 0x42, 0xb0, 0x41, 0xfd, 0x06, 0xb5, 0x3c,
+ 0xb7, 0xc5, 0x1d, 0xf5, 0x68, 0xbc, 0xc8, 0xb1, 0x9a, 0x41, 0x83, 0x99, 0x2d, 0xc9, 0x73, 0x30,
+ 0xb6, 0x4f, 0x7d, 0x5e, 0x7f, 0x07, 0xc9, 0x2b, 0xca, 0x5e, 0x17, 0x60, 0x8c, 0xf0, 0xe4, 0x2d,
+ 0x28, 0x04, 0x66, 0xe0, 0xc8, 0x49, 0xd8, 0x09, 0x0e, 0xba, 0xd5, 0x1b, 0xab, 0xd2, 0x3c, 0xf8,
+ 0x25, 0x42, 0xec, 0x3f, 0x72, 0x96, 0x67, 0x71, 0x32, 0xf6, 0xf7, 0x45, 0x98, 0x4e, 0x9d, 0xf2,
+ 0x79, 0x98, 0xcb, 0x50, 0x1e, 0x60, 0xe4, 0x08, 0x0f, 0xf0, 0x3c, 0x94, 0x2d, 0xc7, 0xa6, 0x6e,
+ 0xb8, 0xd2, 0x92, 0x9e, 0x22, 0xae, 0xf6, 0x12, 0xf0, 0x45, 0x54, 0x14, 0x8f, 0xdb, 0x5f, 0xe8,
+ 0x03, 0xbb, 0x78, 0xdc, 0x7a, 0xf0, 0xd2, 0x30, 0x6f, 0xb1, 0xcd, 0xa7, 0xea, 0x2c, 0xd5, 0xb1,
+ 0x27, 0x0a, 0xdb, 0x67, 0xe6, 0x66, 0x8a, 0x7f, 0x1c, 0x81, 0xf2, 0x7a, 0x7d, 0xab, 0xc1, 0x6f,
+ 0x92, 0x7b, 0x3b, 0x79, 0x57, 0xde, 0x69, 0x2e, 0x59, 0xed, 0xbf, 0x14, 0xef, 0x06, 0x1b, 0x00,
+ 0x03, 0xdf, 0x87, 0x57, 0x11, 0x63, 0x84, 0x65, 0x70, 0xa2, 0x39, 0x59, 0x80, 0x82, 0xbb, 0x3b,
+ 0xe8, 0x95, 0x8d, 0xdc, 0xe7, 0xac, 0xdf, 0xa4, 0x07, 0xc8, 0x1b, 0x93, 0xdb, 0x00, 0x96, 0x4f,
+ 0x5b, 0xd4, 0x0d, 0x6d, 0x79, 0x63, 0xf6, 0x60, 0x2b, 0xf7, 0x0b, 0xaa, 0x31, 0x6a, 0x8c, 0x6a,
+ 0x5f, 0x2b, 0xc1, 0xb9, 0xf4, 0x99, 0xbb, 0x87, 0x39, 0x86, 0xe7, 0x60, 0x2c, 0xe8, 0xf1, 0x0a,
+ 0x71, 0xe9, 0x1a, 0x94, 0x13, 0x6e, 0x08, 0x30, 0x46, 0xf8, 0xec, 0x01, 0x3f, 0xfa, 0x58, 0x06,
+ 0x7c, 0xe1, 0xb8, 0x03, 0x3e, 0xef, 0xe9, 0x44, 0x62, 0x82, 0x50, 0xca, 0x65, 0x82, 0x90, 0xee,
+ 0xb1, 0x01, 0x46, 0x3c, 0x95, 0x97, 0xed, 0x8d, 0xe5, 0x52, 0x5b, 0x1d, 0x0d, 0xc4, 0xbe, 0x7b,
+ 0xf6, 0xce, 0xa0, 0x63, 0xf9, 0x69, 0x11, 0xa6, 0x92, 0x87, 0x68, 0x58, 0x52, 0xba, 0xe3, 0x05,
+ 0xa1, 0x4c, 0xd5, 0xd3, 0xd7, 0xe6, 0xbf, 0x1a, 0xa3, 0x50, 0xa7, 0x3b, 0x5e, 0xe4, 0x7c, 0x0e,
+ 0xc6, 0xe4, 0x65, 0x2e, 0x32, 0x70, 0xaa, 0x51, 0x24, 0x2f, 0x7c, 0xc1, 0x08, 0xff, 0xff, 0x61,
+ 0xd3, 0x09, 0xc8, 0xd7, 0xfb, 0xc3, 0xe6, 0xdb, 0xb9, 0x9e, 0x98, 0xfa, 0xd5, 0x8e, 0x9a, 0x6f,
+ 0xc1, 0x4c, 0xdf, 0xb6, 0x48, 0x7c, 0xd1, 0xa5, 0x71, 0xc4, 0x45, 0x97, 0x97, 0xa1, 0xe8, 0x9a,
+ 0x1d, 0x2a, 0xee, 0x93, 0xa8, 0x88, 0xf0, 0xc6, 0xf2, 0xde, 0x00, 0x05, 0xbc, 0xf6, 0x83, 0x12,
+ 0xcc, 0xf4, 0x9d, 0x0c, 0xe6, 0x09, 0xa7, 0x5a, 0x5a, 0x4f, 0xa5, 0xd1, 0x99, 0x0b, 0xea, 0xaf,
+ 0xc0, 0x14, 0x1f, 0x18, 0x1b, 0xa9, 0x05, 0x79, 0xb5, 0x3d, 0xbc, 0x95, 0xc0, 0x62, 0x8a, 0xfa,
+ 0x78, 0x09, 0xeb, 0x2b, 0x30, 0x15, 0xf4, 0x9a, 0x81, 0xe5, 0xdb, 0x5d, 0xb9, 0x07, 0x5d, 0x48,
+ 0x0a, 0x69, 0x24, 0xb0, 0x98, 0xa2, 0x26, 0x6d, 0x7e, 0xc5, 0x94, 0x0c, 0x9e, 0x72, 0x31, 0x6c,
+ 0xa0, 0x9b, 0x92, 0x2e, 0xc8, 0x5b, 0xa8, 0x12, 0x2c, 0xb0, 0x8f, 0x29, 0x69, 0xc2, 0xac, 0x58,
+ 0x18, 0xd7, 0x15, 0x52, 0xcb, 0xea, 0x22, 0x2b, 0xad, 0x49, 0xa5, 0x67, 0x17, 0x0f, 0xa5, 0xc4,
+ 0x23, 0xb8, 0x0c, 0x78, 0x3d, 0xd2, 0x37, 0xfa, 0xbf, 0xbe, 0xf0, 0x4e, 0xde, 0xe7, 0xc9, 0x4f,
+ 0x34, 0x06, 0xcf, 0xcc, 0x5d, 0xa8, 0xff, 0x50, 0x66, 0x03, 0x25, 0x75, 0x34, 0x92, 0xd4, 0xa0,
+ 0xc4, 0x6d, 0x93, 0x85, 0x17, 0xb5, 0x91, 0xc4, 0x8d, 0x36, 0x40, 0x89, 0x39, 0xc6, 0x12, 0xb5,
+ 0x9c, 0xb2, 0x8d, 0x1e, 0x32, 0x65, 0xeb, 0xc2, 0xf9, 0xd0, 0x09, 0xb6, 0xfc, 0x5e, 0x10, 0x2e,
+ 0x50, 0x3f, 0x0c, 0xa4, 0xe9, 0x16, 0x06, 0xbe, 0xb2, 0x7c, 0x6b, 0xb5, 0x91, 0xe6, 0x82, 0x59,
+ 0xac, 0x99, 0x01, 0x87, 0x4e, 0x50, 0x77, 0x1c, 0xef, 0x4e, 0xb4, 0x67, 0x1f, 0x07, 0x1b, 0x19,
+ 0x46, 0x94, 0x01, 0x6f, 0xad, 0x36, 0x0e, 0xa1, 0xc4, 0x23, 0xb8, 0x90, 0x35, 0xfe, 0x54, 0xaf,
+ 0x9b, 0x8e, 0xdd, 0x32, 0x43, 0xca, 0xc2, 0x31, 0x5f, 0x3b, 0x16, 0xa3, 0x43, 0x6d, 0xe4, 0x6d,
+ 0xad, 0x36, 0xd2, 0x24, 0x98, 0xd5, 0x6e, 0x58, 0x9f, 0x2d, 0xc9, 0x8c, 0xde, 0xe5, 0xc7, 0x12,
+ 0xbd, 0x2b, 0x83, 0x8d, 0x72, 0xc8, 0x69, 0x94, 0xa7, 0x4c, 0x7e, 0x80, 0x51, 0xde, 0x82, 0x69,
+ 0x75, 0x9b, 0xb8, 0xb4, 0xd9, 0xf1, 0x81, 0xf7, 0x1e, 0xea, 0x49, 0x0e, 0x98, 0x66, 0x79, 0x16,
+ 0xd7, 0x73, 0xfe, 0xa5, 0x28, 0x4f, 0xe0, 0xe6, 0x30, 0x5d, 0xcd, 0xfb, 0xf6, 0x74, 0x16, 0xfb,
+ 0xf9, 0xd4, 0xa0, 0x6b, 0x5a, 0xd1, 0x6d, 0x86, 0x2a, 0xf6, 0xaf, 0x47, 0x08, 0x8c, 0x69, 0xc8,
+ 0x2c, 0x8c, 0xb4, 0x9a, 0xdc, 0x1b, 0x15, 0xe3, 0x43, 0x5c, 0x8b, 0xf3, 0x38, 0xd2, 0x6a, 0x92,
+ 0x6b, 0x50, 0x96, 0xf3, 0xe0, 0xe8, 0x8c, 0x13, 0x17, 0x2b, 0x27, 0xc9, 0x01, 0x2a, 0xec, 0xb0,
+ 0x66, 0x9e, 0x43, 0x58, 0xe0, 0x4d, 0xf7, 0xdc, 0x2f, 0xfb, 0xdc, 0x73, 0x30, 0x27, 0x72, 0x3a,
+ 0xcb, 0x7e, 0xaf, 0x04, 0x17, 0xb3, 0x4f, 0x7a, 0xff, 0xd2, 0xd8, 0xb7, 0x30, 0xd7, 0xd1, 0x4c,
+ 0x73, 0xfd, 0x08, 0x8c, 0x05, 0x5c, 0xf1, 0x68, 0xb3, 0x57, 0x5c, 0x02, 0x26, 0x40, 0x18, 0xe1,
+ 0xc8, 0x6b, 0x40, 0x3a, 0xe6, 0xdd, 0xb5, 0xa0, 0xbd, 0xe0, 0xf5, 0xf8, 0xbd, 0x86, 0x48, 0x4d,
+ 0x71, 0xe9, 0x66, 0x31, 0x3e, 0x2e, 0xb1, 0xd6, 0x47, 0x81, 0x19, 0xad, 0xf8, 0xf6, 0x74, 0x62,
+ 0xc9, 0x3f, 0x75, 0x6e, 0xe3, 0xc8, 0x35, 0xfa, 0x21, 0x05, 0xbd, 0x0f, 0xfa, 0x67, 0x8b, 0xd6,
+ 0x50, 0x8e, 0xff, 0xff, 0x6a, 0x4f, 0x19, 0x7f, 0x56, 0x80, 0xf3, 0x19, 0xc5, 0xdc, 0x49, 0x0f,
+ 0x6b, 0x1c, 0xc3, 0xc3, 0xee, 0xa9, 0x67, 0xcf, 0xe7, 0x24, 0x6c, 0xa4, 0xd4, 0x11, 0x3e, 0xe3,
+ 0x1b, 0x06, 0x5c, 0xe0, 0xbb, 0xa4, 0xd1, 0xd6, 0x4c, 0x74, 0xd5, 0xda, 0xa8, 0xb4, 0xb5, 0x63,
+ 0xdd, 0x79, 0xb8, 0x9c, 0xc1, 0x21, 0xde, 0x3a, 0xca, 0xc2, 0x62, 0xa6, 0x54, 0xb2, 0x00, 0xa0,
+ 0xaa, 0x2d, 0xa2, 0xb1, 0xf9, 0x2c, 0xbf, 0xb9, 0x51, 0x41, 0xff, 0x87, 0xef, 0xc0, 0x6a, 0x6f,
+ 0x9b, 0x4f, 0xb0, 0xb5, 0x66, 0xc3, 0xb8, 0xdf, 0x3a, 0xa3, 0x7b, 0x8f, 0x6f, 0xd3, 0xa7, 0xb3,
+ 0xae, 0xbf, 0x1c, 0x85, 0xa9, 0x64, 0x47, 0x92, 0xab, 0x50, 0xea, 0xfa, 0x74, 0xdb, 0xbe, 0x9b,
+ 0xbe, 0xe6, 0x78, 0x83, 0x43, 0x51, 0x62, 0x89, 0x07, 0x25, 0xc7, 0x6c, 0xb2, 0x98, 0x2c, 0xae,
+ 0x99, 0x5c, 0x3e, 0xf5, 0x95, 0x89, 0xd1, 0x62, 0x75, 0x24, 0x70, 0x95, 0xb3, 0x47, 0x29, 0x86,
+ 0x09, 0xdc, 0xb6, 0xa9, 0xd3, 0x12, 0xe7, 0xed, 0x86, 0x21, 0xf0, 0x06, 0x67, 0x8f, 0x52, 0x0c,
+ 0x79, 0x1b, 0x2a, 0xe2, 0x6e, 0xe8, 0xd6, 0xfc, 0x81, 0x4c, 0x94, 0x7e, 0xed, 0x78, 0x26, 0xbb,
+ 0x65, 0x77, 0x68, 0x3c, 0x1c, 0x17, 0x22, 0x26, 0x18, 0xf3, 0xe3, 0x1f, 0xd0, 0xda, 0x0e, 0xa9,
+ 0xdf, 0x08, 0x4d, 0x3f, 0xfa, 0xbe, 0x55, 0xfc, 0x01, 0x2d, 0x85, 0x41, 0x8d, 0xaa, 0xf6, 0xd7,
+ 0x25, 0x98, 0x4a, 0x16, 0xa5, 0x3f, 0xa6, 0x53, 0x93, 0xcf, 0x43, 0x99, 0xe7, 0xa5, 0x75, 0xdf,
+ 0x4d, 0x5f, 0x3e, 0xbf, 0x25, 0xe1, 0xa8, 0x28, 0x08, 0x42, 0xc5, 0x3c, 0xd9, 0x57, 0xab, 0xc4,
+ 0x31, 0x29, 0xf5, 0xbd, 0xaa, 0x98, 0x0d, 0xe3, 0x19, 0x44, 0xe4, 0x83, 0x25, 0xb1, 0x9c, 0xa7,
+ 0x02, 0x63, 0xcc, 0x86, 0x59, 0xbe, 0x4f, 0xdb, 0x51, 0x72, 0xaa, 0x59, 0x3e, 0x72, 0x28, 0x4a,
+ 0x2c, 0x79, 0x0e, 0xc6, 0x7c, 0xcf, 0xa1, 0x75, 0x5c, 0x97, 0x71, 0x56, 0xad, 0xdb, 0xa2, 0x00,
+ 0x63, 0x84, 0x1f, 0xc6, 0x9a, 0x65, 0xd2, 0x00, 0x06, 0x08, 0x7e, 0xcb, 0x30, 0xb3, 0x2f, 0x13,
+ 0xde, 0x86, 0xdd, 0x76, 0xcd, 0x30, 0x3e, 0x5c, 0xaf, 0x4e, 0x9f, 0xbc, 0x9e, 0x26, 0xc0, 0xfe,
+ 0x36, 0x67, 0x31, 0x8a, 0xfe, 0x07, 0x1b, 0x39, 0x89, 0x6b, 0x14, 0x92, 0x56, 0x69, 0x0c, 0xc1,
+ 0x2a, 0x47, 0xf2, 0xb6, 0xca, 0xd1, 0x23, 0xad, 0xf2, 0x59, 0x28, 0xf2, 0x4f, 0x5e, 0xca, 0xf5,
+ 0x4c, 0xb5, 0xfa, 0xc9, 0xbf, 0x04, 0x88, 0x02, 0x47, 0xea, 0x30, 0x7d, 0xc7, 0xb4, 0x43, 0xe6,
+ 0x9f, 0xc4, 0x79, 0x0a, 0xb1, 0xd9, 0x35, 0xaa, 0x1f, 0x96, 0x4c, 0xa0, 0x31, 0x4d, 0x3f, 0x88,
+ 0xf5, 0x0f, 0xb6, 0xbc, 0xf8, 0x0a, 0x4c, 0x71, 0x25, 0xeb, 0x96, 0xc5, 0xe6, 0xb6, 0x2b, 0xad,
+ 0xf4, 0xb7, 0x91, 0x36, 0x75, 0xec, 0x22, 0xa6, 0xa8, 0x93, 0x63, 0xad, 0x92, 0xcf, 0x58, 0xdb,
+ 0x3c, 0xe1, 0x58, 0x7b, 0x06, 0x46, 0x5b, 0xce, 0x1e, 0x3f, 0xa1, 0x52, 0x8e, 0x17, 0xe3, 0x16,
+ 0x57, 0x37, 0x91, 0xc1, 0x1f, 0xcf, 0x77, 0x54, 0x58, 0x77, 0x50, 0xb7, 0xd5, 0xf5, 0x6c, 0x37,
+ 0x94, 0x35, 0x28, 0xea, 0x11, 0x96, 0x24, 0x1c, 0x15, 0xc5, 0xe9, 0xc6, 0xdb, 0x97, 0xa1, 0x1c,
+ 0x99, 0x36, 0x7b, 0x17, 0xaa, 0x5d, 0xfc, 0x2e, 0x98, 0x95, 0x73, 0x26, 0xd7, 0xa1, 0xe2, 0x75,
+ 0x69, 0xe2, 0x13, 0x11, 0x2a, 0x72, 0xde, 0x8a, 0x10, 0x18, 0xd3, 0x30, 0x43, 0x17, 0x52, 0x53,
+ 0xcb, 0xfc, 0xaf, 0x33, 0xa0, 0x54, 0xa2, 0xf6, 0x15, 0x03, 0xa2, 0x7b, 0x97, 0xc9, 0x22, 0x14,
+ 0xbb, 0x9e, 0x1f, 0x8a, 0xe5, 0xd5, 0xf1, 0x17, 0x2f, 0x67, 0x8f, 0x48, 0x71, 0xbe, 0xd2, 0xf3,
+ 0xc3, 0x98, 0x23, 0xfb, 0x17, 0xa0, 0x68, 0xcc, 0xf4, 0xb4, 0x9c, 0x5e, 0x10, 0x52, 0x7f, 0x65,
+ 0x23, 0xad, 0xe7, 0x42, 0x84, 0xc0, 0x98, 0xa6, 0xf6, 0x9f, 0x05, 0x38, 0x97, 0xbe, 0xfc, 0x82,
+ 0xbc, 0x03, 0x93, 0x81, 0xdd, 0x76, 0x6d, 0xb7, 0x2d, 0x17, 0xb3, 0x8c, 0x81, 0x0b, 0xa7, 0x1a,
+ 0x7a, 0x7b, 0x4c, 0xb2, 0xcb, 0xed, 0xc4, 0xc2, 0xe3, 0xf9, 0x0e, 0xdc, 0xfb, 0xfd, 0x35, 0xc4,
+ 0x9f, 0xcf, 0xf9, 0xfa, 0x91, 0x5f, 0xed, 0x22, 0xe2, 0xff, 0x2a, 0xc2, 0xc5, 0xec, 0xeb, 0x4d,
+ 0x1e, 0xd3, 0x4c, 0x31, 0x2e, 0x92, 0x19, 0x39, 0xb4, 0x48, 0x26, 0x7e, 0xcf, 0xa3, 0x39, 0x5d,
+ 0x57, 0xa2, 0x5e, 0xc0, 0xd1, 0xde, 0x50, 0xcd, 0x61, 0x0b, 0x0f, 0x9d, 0xc3, 0x5e, 0x85, 0x92,
+ 0xbc, 0x7b, 0x30, 0x35, 0x37, 0x9c, 0x17, 0x37, 0x03, 0x4a, 0xac, 0x16, 0xad, 0x4b, 0x47, 0x46,
+ 0x6b, 0x36, 0xfb, 0x50, 0x5f, 0xdb, 0x1c, 0x1b, 0x7c, 0xf6, 0xa1, 0x3e, 0xb6, 0x19, 0xb3, 0xe1,
+ 0x65, 0x90, 0x5d, 0x3b, 0xfe, 0x92, 0x59, 0x5c, 0x06, 0xb9, 0xb1, 0x72, 0x1b, 0x57, 0x51, 0x62,
+ 0x93, 0x2b, 0x33, 0x95, 0x5c, 0x56, 0x66, 0xb2, 0x6d, 0xee, 0x51, 0x65, 0xb1, 0x16, 0xcc, 0xf4,
+ 0xf5, 0xf9, 0xb1, 0xf3, 0xd8, 0xab, 0x50, 0x0a, 0x7a, 0xdb, 0x8c, 0x2e, 0x55, 0x41, 0xdf, 0xe0,
+ 0x50, 0x94, 0xd8, 0xda, 0x77, 0x0a, 0x4c, 0x4a, 0xea, 0x22, 0x9c, 0xc7, 0x34, 0xaa, 0x5e, 0x86,
+ 0x49, 0x91, 0x49, 0xbe, 0xa1, 0x15, 0x37, 0x97, 0xb5, 0xf5, 0x3e, 0x1d, 0x89, 0x49, 0x5a, 0xb2,
+ 0xc2, 0xcd, 0x64, 0xe0, 0x5c, 0x0c, 0xa4, 0x25, 0xb1, 0xc0, 0x2d, 0x19, 0x90, 0x17, 0x60, 0x9c,
+ 0x3f, 0x84, 0x78, 0xe5, 0x72, 0x49, 0x85, 0x97, 0x31, 0x2d, 0xc5, 0x60, 0xd4, 0x69, 0x92, 0xdb,
+ 0x4b, 0xc5, 0x5c, 0xb6, 0x97, 0xfa, 0x7a, 0xe5, 0x51, 0xd9, 0xdd, 0xb7, 0xca, 0xa0, 0xbe, 0x26,
+ 0x41, 0xac, 0xbe, 0x6f, 0x7a, 0x7c, 0x62, 0xe0, 0xb5, 0xd4, 0x48, 0x15, 0xb1, 0xee, 0x9c, 0x11,
+ 0x92, 0x5e, 0x03, 0x22, 0x3f, 0x22, 0x21, 0xe7, 0xbd, 0xea, 0xbb, 0xd3, 0x95, 0x78, 0xd1, 0xb8,
+ 0xd1, 0x47, 0x81, 0x19, 0xad, 0xc8, 0x6b, 0xfc, 0x0b, 0x36, 0xa1, 0x69, 0xbb, 0xca, 0xf3, 0x3e,
+ 0x73, 0x48, 0x05, 0x8c, 0x20, 0x52, 0xdf, 0xa2, 0x11, 0x7f, 0x31, 0x6e, 0x4e, 0x96, 0x60, 0x6c,
+ 0xdf, 0x73, 0x7a, 0x1d, 0xf5, 0x05, 0xcb, 0xd9, 0x2c, 0x4e, 0xaf, 0x73, 0x12, 0xed, 0xc4, 0xb6,
+ 0x68, 0x82, 0x51, 0x5b, 0x42, 0x61, 0x9a, 0x6f, 0xf1, 0xda, 0xe1, 0x81, 0x1c, 0x00, 0x32, 0xf4,
+ 0x5e, 0xcd, 0x62, 0xb7, 0xe1, 0xb5, 0x1a, 0x49, 0x6a, 0xf9, 0x99, 0xeb, 0x24, 0x10, 0xd3, 0x3c,
+ 0xc9, 0x0d, 0x28, 0x9b, 0xdb, 0xdb, 0xb6, 0x6b, 0x87, 0x07, 0x72, 0xaf, 0xe8, 0xc3, 0x59, 0xfc,
+ 0xeb, 0x92, 0x46, 0x56, 0xc1, 0xcb, 0x7f, 0xa8, 0xda, 0x92, 0xdb, 0x30, 0x1e, 0x7a, 0x8e, 0x9c,
+ 0x97, 0x06, 0x32, 0xbf, 0xbf, 0x94, 0xc5, 0x6a, 0x4b, 0x91, 0xc5, 0xbb, 0x15, 0x31, 0x2c, 0x40,
+ 0x9d, 0x0f, 0xf9, 0x43, 0x03, 0x26, 0x5c, 0xaf, 0x45, 0xa3, 0xa1, 0x27, 0x57, 0xcf, 0xdf, 0xca,
+ 0xe9, 0x2b, 0x28, 0x73, 0xeb, 0x1a, 0x6f, 0x31, 0x42, 0x54, 0x75, 0xb4, 0x8e, 0xc2, 0x84, 0x12,
+ 0xc4, 0x85, 0x73, 0x76, 0xc7, 0x6c, 0xd3, 0x8d, 0x9e, 0x23, 0x8f, 0xa8, 0x04, 0x32, 0x78, 0x64,
+ 0xd6, 0x4d, 0xad, 0x7a, 0x96, 0xe9, 0x88, 0xaf, 0x08, 0x21, 0xdd, 0xa6, 0x3e, 0xff, 0x98, 0x91,
+ 0xfa, 0x0a, 0xdb, 0x4a, 0x8a, 0x13, 0xf6, 0xf1, 0x26, 0xcb, 0x30, 0xd3, 0xf5, 0x6d, 0x8f, 0xf7,
+ 0x9b, 0x63, 0x06, 0xe2, 0x2b, 0x32, 0x90, 0x2c, 0x96, 0xd9, 0x48, 0x13, 0x60, 0x7f, 0x1b, 0x51,
+ 0xbc, 0x29, 0x80, 0x3c, 0xdd, 0x2a, 0x46, 0xc5, 0x9b, 0x02, 0x86, 0x0a, 0x3b, 0xfb, 0x19, 0x98,
+ 0xe9, 0x7b, 0x37, 0x03, 0x39, 0x84, 0x3f, 0x31, 0x20, 0x5d, 0x6d, 0xc8, 0xf2, 0x86, 0x96, 0xed,
+ 0x73, 0x86, 0x07, 0xe9, 0x85, 0xfa, 0xc5, 0x08, 0x81, 0x31, 0x0d, 0xb9, 0x02, 0x85, 0xae, 0x19,
+ 0xee, 0xa4, 0x8f, 0x7a, 0x30, 0x96, 0xc8, 0x31, 0xfc, 0xab, 0x95, 0xec, 0x1f, 0x6d, 0xd3, 0xbb,
+ 0x5d, 0x99, 0x06, 0xc5, 0x5f, 0xad, 0x54, 0x18, 0xd4, 0xa8, 0x6a, 0xdf, 0x2b, 0xc2, 0x54, 0x32,
+ 0xb6, 0x24, 0xf2, 0x41, 0xe3, 0x61, 0xf9, 0x20, 0x8b, 0x93, 0x1d, 0x1a, 0xee, 0x78, 0xad, 0x74,
+ 0x9c, 0x5c, 0xe3, 0x50, 0x94, 0x58, 0xae, 0xbe, 0xe7, 0x87, 0x52, 0xad, 0x58, 0x7d, 0xcf, 0x0f,
+ 0x91, 0x63, 0xa2, 0x93, 0x2a, 0x85, 0x43, 0x4e, 0xaa, 0xb4, 0xe1, 0x9c, 0xb8, 0x84, 0x6b, 0x81,
+ 0xfa, 0xe1, 0x89, 0x4f, 0x58, 0x35, 0x52, 0x2c, 0xb0, 0x8f, 0x29, 0xff, 0xa6, 0x3e, 0x87, 0xf1,
+ 0xc6, 0x27, 0x2c, 0x9e, 0x6c, 0x24, 0x39, 0x60, 0x9a, 0xe5, 0x30, 0x96, 0x00, 0x93, 0xfd, 0x78,
+ 0xe2, 0x9b, 0x71, 0xca, 0x39, 0xdd, 0x8c, 0x73, 0xaa, 0x20, 0x3a, 0x3f, 0xf7, 0xa3, 0x5f, 0x5c,
+ 0x7a, 0xe2, 0xc7, 0xbf, 0xb8, 0xf4, 0xc4, 0x4f, 0x7e, 0x71, 0xe9, 0x89, 0xaf, 0x3c, 0xb8, 0x64,
+ 0xfc, 0xe8, 0xc1, 0x25, 0xe3, 0xc7, 0x0f, 0x2e, 0x19, 0x3f, 0x79, 0x70, 0xc9, 0xf8, 0xf9, 0x83,
+ 0x4b, 0xc6, 0x77, 0xfe, 0xf5, 0xd2, 0x13, 0x9f, 0x2d, 0x47, 0x0f, 0xff, 0x7f, 0x01, 0x00, 0x00,
+ 0xff, 0xff, 0xc0, 0xb3, 0xbd, 0x59, 0xa0, 0x8c, 0x00, 0x00,
}
func (m *AMQPConsumeConfig) Marshal() (dAtA []byte, err error) {
@@ -5826,6 +5826,14 @@ func (m *RedisEventSource) MarshalToSizedBuffer(dAtA []byte) (int, error) {
_ = i
var l int
_ = l
+ i--
+ if m.JSONBody {
+ dAtA[i] = 1
+ } else {
+ dAtA[i] = 0
+ }
+ i--
+ dAtA[i] = 0x48
if m.Filter != nil {
{
size, err := m.Filter.MarshalToSizedBuffer(dAtA[:i])
@@ -8445,6 +8453,7 @@ func (m *RedisEventSource) Size() (n int) {
l = m.Filter.Size()
n += 1 + l + sovGenerated(uint64(l))
}
+ n += 2
return n
}
@@ -9946,6 +9955,7 @@ func (this *RedisEventSource) String() string {
`TLS:` + strings.Replace(fmt.Sprintf("%v", this.TLS), "TLSConfig", "common.TLSConfig", 1) + `,`,
`Metadata:` + mapStringForMetadata + `,`,
`Filter:` + strings.Replace(this.Filter.String(), "EventSourceFilter", "EventSourceFilter", 1) + `,`,
+ `JSONBody:` + fmt.Sprintf("%v", this.JSONBody) + `,`,
`}`,
}, "")
return s
@@ -24422,6 +24432,26 @@ func (m *RedisEventSource) Unmarshal(dAtA []byte) error {
return err
}
iNdEx = postIndex
+ case 9:
+ if wireType != 0 {
+ return fmt.Errorf("proto: wrong wireType = %d for field JSONBody", wireType)
+ }
+ var v int
+ for shift := uint(0); ; shift += 7 {
+ if shift >= 64 {
+ return ErrIntOverflowGenerated
+ }
+ if iNdEx >= l {
+ return io.ErrUnexpectedEOF
+ }
+ b := dAtA[iNdEx]
+ iNdEx++
+ v |= int(b&0x7F) << shift
+ if b < 0x80 {
+ break
+ }
+ }
+ m.JSONBody = bool(v != 0)
default:
iNdEx = preIndex
skippy, err := skipGenerated(dAtA[iNdEx:])
diff --git a/pkg/apis/eventsource/v1alpha1/generated.proto b/pkg/apis/eventsource/v1alpha1/generated.proto
index 2d89632f7f..adbdfca346 100644
--- a/pkg/apis/eventsource/v1alpha1/generated.proto
+++ b/pkg/apis/eventsource/v1alpha1/generated.proto
@@ -1089,6 +1089,11 @@ message RedisEventSource {
// Filter
// +optional
optional EventSourceFilter filter = 8;
+
+ // JSONBody specifies that all event body payload coming from this
+ // source will be JSON
+ // +optional
+ optional bool jsonBody = 9;
}
// RedisStreamEventSource describes an event source for
diff --git a/pkg/apis/eventsource/v1alpha1/openapi_generated.go b/pkg/apis/eventsource/v1alpha1/openapi_generated.go
index 7789e85acf..bb625d59e0 100644
--- a/pkg/apis/eventsource/v1alpha1/openapi_generated.go
+++ b/pkg/apis/eventsource/v1alpha1/openapi_generated.go
@@ -2910,6 +2910,13 @@ func schema_pkg_apis_eventsource_v1alpha1_RedisEventSource(ref common.ReferenceC
Ref: ref("github.com/argoproj/argo-events/pkg/apis/eventsource/v1alpha1.EventSourceFilter"),
},
},
+ "jsonBody": {
+ SchemaProps: spec.SchemaProps{
+ Description: "JSONBody specifies that all event body payload coming from this source will be JSON",
+ Type: []string{"boolean"},
+ Format: "",
+ },
+ },
},
Required: []string{"hostAddress", "channels"},
},
diff --git a/pkg/apis/eventsource/v1alpha1/types.go b/pkg/apis/eventsource/v1alpha1/types.go
index a47277a394..f209ab19b0 100644
--- a/pkg/apis/eventsource/v1alpha1/types.go
+++ b/pkg/apis/eventsource/v1alpha1/types.go
@@ -1154,6 +1154,10 @@ type RedisEventSource struct {
// Filter
// +optional
Filter *EventSourceFilter `json:"filter,omitempty" protobuf:"bytes,8,opt,name=filter"`
+ // JSONBody specifies that all event body payload coming from this
+ // source will be JSON
+ // +optional
+ JSONBody bool `json:"jsonBody,omitempty" protobuf:"varint,9,opt,name=jsonBody"`
}
// RedisStreamEventSource describes an event source for