diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index c00ec18d8b2..ddeaf135dc3 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -37373,6 +37373,13 @@ "description": "ID of the node assigned by the cloud provider in the format: \u003cProviderName\u003e://\u003cProviderSpecificNodeID\u003e", "type": "string" }, + "taints": { + "description": "If specified, the node's taints.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.kubernetes.pkg.api.v1.Taint" + } + }, "unschedulable": { "description": "Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#manual-node-administration", "type": "boolean" @@ -38165,6 +38172,13 @@ "type": "integer", "format": "int64" }, + "tolerations": { + "description": "If specified, the pod's tolerations.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.kubernetes.pkg.api.v1.Toleration" + } + }, "volumes": { "description": "List of volumes that can be mounted by containers belonging to the pod. More info: http://kubernetes.io/docs/user-guide/volumes", "type": "array", @@ -39219,6 +39233,57 @@ } } }, + "io.k8s.kubernetes.pkg.api.v1.Taint": { + "description": "The node this Taint is attached to has the effect \"effect\" on any pod that that does not tolerate the Taint.", + "required": [ + "key", + "effect" + ], + "properties": { + "effect": { + "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.", + "type": "string" + }, + "key": { + "description": "Required. The taint key to be applied to a node.", + "type": "string" + }, + "timeAdded": { + "description": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.", + "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time" + }, + "value": { + "description": "Required. The taint value corresponding to the taint key.", + "type": "string" + } + } + }, + "io.k8s.kubernetes.pkg.api.v1.Toleration": { + "description": "The pod this Toleration is attached to tolerates any taint that matches the triple \u003ckey,value,effect\u003e using the matching operator \u003coperator\u003e.", + "properties": { + "effect": { + "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", + "type": "string" + }, + "key": { + "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", + "type": "string" + }, + "operator": { + "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", + "type": "string" + }, + "tolerationSeconds": { + "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", + "type": "integer", + "format": "int64" + }, + "value": { + "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", + "type": "string" + } + } + }, "io.k8s.kubernetes.pkg.api.v1.Volume": { "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", "required": [ diff --git a/api/swagger-spec/apps_v1beta1.json b/api/swagger-spec/apps_v1beta1.json index 184aa5d2686..5f2802591ea 100644 --- a/api/swagger-spec/apps_v1beta1.json +++ b/api/swagger-spec/apps_v1beta1.json @@ -1368,6 +1368,13 @@ "schedulername": { "type": "string", "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler." + }, + "tolerations": { + "type": "array", + "items": { + "$ref": "v1.Toleration" + }, + "description": "If specified, the pod's tolerations." } } }, @@ -2999,6 +3006,33 @@ } } }, + "v1.Toleration": { + "id": "v1.Toleration", + "description": "The pod this Toleration is attached to tolerates any taint that matches the triple \u003ckey,value,effect\u003e using the matching operator \u003coperator\u003e.", + "properties": { + "key": { + "type": "string", + "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys." + }, + "operator": { + "type": "string", + "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category." + }, + "value": { + "type": "string", + "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string." + }, + "effect": { + "type": "string", + "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute." + }, + "tolerationSeconds": { + "type": "integer", + "format": "int64", + "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system." + } + } + }, "v1.PersistentVolumeClaim": { "id": "v1.PersistentVolumeClaim", "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume", diff --git a/api/swagger-spec/batch_v1.json b/api/swagger-spec/batch_v1.json index 4fba3a57036..b02cf0a63d7 100644 --- a/api/swagger-spec/batch_v1.json +++ b/api/swagger-spec/batch_v1.json @@ -1373,6 +1373,13 @@ "schedulername": { "type": "string", "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler." + }, + "tolerations": { + "type": "array", + "items": { + "$ref": "v1.Toleration" + }, + "description": "If specified, the pod's tolerations." } } }, @@ -3004,6 +3011,33 @@ } } }, + "v1.Toleration": { + "id": "v1.Toleration", + "description": "The pod this Toleration is attached to tolerates any taint that matches the triple \u003ckey,value,effect\u003e using the matching operator \u003coperator\u003e.", + "properties": { + "key": { + "type": "string", + "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys." + }, + "operator": { + "type": "string", + "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category." + }, + "value": { + "type": "string", + "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string." + }, + "effect": { + "type": "string", + "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute." + }, + "tolerationSeconds": { + "type": "integer", + "format": "int64", + "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system." + } + } + }, "v1.JobStatus": { "id": "v1.JobStatus", "description": "JobStatus represents the current state of a Job.", diff --git a/api/swagger-spec/extensions_v1beta1.json b/api/swagger-spec/extensions_v1beta1.json index 3d9a6ca315c..25756a56906 100644 --- a/api/swagger-spec/extensions_v1beta1.json +++ b/api/swagger-spec/extensions_v1beta1.json @@ -6775,6 +6775,13 @@ "schedulername": { "type": "string", "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler." + }, + "tolerations": { + "type": "array", + "items": { + "$ref": "v1.Toleration" + }, + "description": "If specified, the pod's tolerations." } } }, @@ -8406,6 +8413,33 @@ } } }, + "v1.Toleration": { + "id": "v1.Toleration", + "description": "The pod this Toleration is attached to tolerates any taint that matches the triple \u003ckey,value,effect\u003e using the matching operator \u003coperator\u003e.", + "properties": { + "key": { + "type": "string", + "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys." + }, + "operator": { + "type": "string", + "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category." + }, + "value": { + "type": "string", + "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string." + }, + "effect": { + "type": "string", + "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute." + }, + "tolerationSeconds": { + "type": "integer", + "format": "int64", + "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system." + } + } + }, "v1beta1.DaemonSetStatus": { "id": "v1beta1.DaemonSetStatus", "description": "DaemonSetStatus represents the current status of a daemon set.", diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 2779e0b81dc..9fc3e1b92ce 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -17317,6 +17317,39 @@ "unschedulable": { "type": "boolean", "description": "Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#manual-node-administration" + }, + "taints": { + "type": "array", + "items": { + "$ref": "v1.Taint" + }, + "description": "If specified, the node's taints." + } + } + }, + "v1.Taint": { + "id": "v1.Taint", + "description": "The node this Taint is attached to has the effect \"effect\" on any pod that that does not tolerate the Taint.", + "required": [ + "key", + "effect" + ], + "properties": { + "key": { + "type": "string", + "description": "Required. The taint key to be applied to a node." + }, + "value": { + "type": "string", + "description": "Required. The taint value corresponding to the taint key." + }, + "effect": { + "type": "string", + "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute." + }, + "timeAdded": { + "type": "string", + "description": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints." } } }, @@ -18499,6 +18532,13 @@ "schedulername": { "type": "string", "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler." + }, + "tolerations": { + "type": "array", + "items": { + "$ref": "v1.Toleration" + }, + "description": "If specified, the pod's tolerations." } } }, @@ -19658,6 +19698,33 @@ } } }, + "v1.Toleration": { + "id": "v1.Toleration", + "description": "The pod this Toleration is attached to tolerates any taint that matches the triple \u003ckey,value,effect\u003e using the matching operator \u003coperator\u003e.", + "properties": { + "key": { + "type": "string", + "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys." + }, + "operator": { + "type": "string", + "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category." + }, + "value": { + "type": "string", + "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string." + }, + "effect": { + "type": "string", + "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute." + }, + "tolerationSeconds": { + "type": "integer", + "format": "int64", + "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system." + } + } + }, "v1.PodStatus": { "id": "v1.PodStatus", "description": "PodStatus represents information about the status of a pod. Status may trail the actual state of a system.", diff --git a/docs/api-reference/apps/v1beta1/definitions.html b/docs/api-reference/apps/v1beta1/definitions.html index b848168c9e2..13335037229 100755 --- a/docs/api-reference/apps/v1beta1/definitions.html +++ b/docs/api-reference/apps/v1beta1/definitions.html @@ -4864,6 +4864,13 @@ The StatefulSet guarantees that a given network identity will always map to the

string

+ +

tolerations

+

If specified, the pod’s tolerations.

+

false

+

v1.Toleration array

+ + @@ -5114,6 +5121,68 @@ The StatefulSet guarantees that a given network identity will always map to the + +
+

v1.Toleration

+
+

The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

key

Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.

false

string

operator

Operator represents a key’s relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.

false

string

value

Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.

false

string

effect

Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.

false

string

tolerationSeconds

TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.

false

integer (int64)

+

v1beta1.StatefulSetList

@@ -5320,7 +5389,7 @@ Examples:
diff --git a/docs/api-reference/batch/v1/definitions.html b/docs/api-reference/batch/v1/definitions.html index 93d85e84922..b606c541816 100755 --- a/docs/api-reference/batch/v1/definitions.html +++ b/docs/api-reference/batch/v1/definitions.html @@ -4851,6 +4851,13 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

string

+ +

tolerations

+

If specified, the pod’s tolerations.

+

false

+

v1.Toleration array

+ + @@ -5101,6 +5108,68 @@ Populated by the system when a graceful deletion is requested. Read-only. More i + +
+

v1.Toleration

+
+

The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

key

Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.

false

string

operator

Operator represents a key’s relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.

false

string

value

Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.

false

string

effect

Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.

false

string

tolerationSeconds

TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.

false

integer (int64)

+

v1.StatusCause

@@ -5252,7 +5321,7 @@ Examples:
diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index badcae75888..c8f6891b416 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -4286,6 +4286,13 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

string

+ +

tolerations

+

If specified, the pod’s tolerations.

+

false

+

v1.Toleration array

+ + @@ -4426,6 +4433,68 @@ Populated by the system when a graceful deletion is requested. Read-only. More i + +
+

v1.Toleration

+
+

The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

key

Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.

false

string

operator

Operator represents a key’s relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.

false

string

value

Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.

false

string

effect

Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.

false

string

tolerationSeconds

TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.

false

integer (int64)

+

v1beta1.IngressTLS

@@ -7543,7 +7612,7 @@ Both these may change in the future. Incoming requests are matched against the h
diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index ced7c83fcc3..17ea7cfdff7 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -2047,6 +2047,61 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } + +
+

v1.Taint

+
+

The node this Taint is attached to has the effect "effect" on any pod that that does not tolerate the Taint.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

key

Required. The taint key to be applied to a node.

true

string

value

Required. The taint value corresponding to the taint key.

false

string

effect

Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.

true

string

timeAdded

TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.

false

string

+

v1.LocalObjectReference

@@ -5065,6 +5120,13 @@ The resulting set of endpoints can be viewed as:

string

+ +

tolerations

+

If specified, the pod’s tolerations.

+

false

+

v1.Toleration array

+ + @@ -5515,6 +5577,68 @@ The resulting set of endpoints can be viewed as:
+
+
+

v1.Toleration

+
+

The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.

+
+ +++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameDescriptionRequiredSchemaDefault

key

Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.

false

string

operator

Operator represents a key’s relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.

false

string

value

Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.

false

string

effect

Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.

false

string

tolerationSeconds

TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.

false

integer (int64)

+

v1.EventSource

@@ -9399,6 +9523,13 @@ Examples:

boolean

false

+ +

taints

+

If specified, the node’s taints.

+

false

+

v1.Taint array

+ + @@ -9507,7 +9638,7 @@ Examples:
diff --git a/federation/apis/openapi-spec/swagger.json b/federation/apis/openapi-spec/swagger.json index 087160be238..4a06768d4e9 100644 --- a/federation/apis/openapi-spec/swagger.json +++ b/federation/apis/openapi-spec/swagger.json @@ -12607,6 +12607,13 @@ "type": "integer", "format": "int64" }, + "tolerations": { + "description": "If specified, the pod's tolerations.", + "type": "array", + "items": { + "$ref": "#/definitions/io.k8s.kubernetes.pkg.api.v1.Toleration" + } + }, "volumes": { "description": "List of volumes that can be mounted by containers belonging to the pod. More info: http://kubernetes.io/docs/user-guide/volumes", "type": "array", @@ -13204,6 +13211,32 @@ } } }, + "io.k8s.kubernetes.pkg.api.v1.Toleration": { + "description": "The pod this Toleration is attached to tolerates any taint that matches the triple \u003ckey,value,effect\u003e using the matching operator \u003coperator\u003e.", + "properties": { + "effect": { + "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", + "type": "string" + }, + "key": { + "description": "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", + "type": "string" + }, + "operator": { + "description": "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", + "type": "string" + }, + "tolerationSeconds": { + "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", + "type": "integer", + "format": "int64" + }, + "value": { + "description": "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", + "type": "string" + } + } + }, "io.k8s.kubernetes.pkg.api.v1.Volume": { "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", "required": [ diff --git a/pkg/api/v1/generated.pb.go b/pkg/api/v1/generated.pb.go index 1c6cec9a37b..1a04dcf3b94 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -4536,6 +4536,18 @@ func (m *NodeSpec) MarshalTo(data []byte) (int, error) { data[i] = 0 } i++ + if len(m.Taints) > 0 { + for _, msg := range m.Taints { + data[i] = 0x2a + i++ + i = encodeVarintGenerated(data, i, uint64(msg.Size())) + n, err := msg.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n + } + } return i, nil } @@ -6349,6 +6361,20 @@ func (m *PodSpec) MarshalTo(data []byte) (int, error) { } i++ } + if len(m.Tolerations) > 0 { + for _, msg := range m.Tolerations { + data[i] = 0xb2 + i++ + data[i] = 0x1 + i++ + i = encodeVarintGenerated(data, i, uint64(msg.Size())) + n, err := msg.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n + } + } return i, nil } @@ -10074,6 +10100,12 @@ func (m *NodeSpec) Size() (n int) { l = len(m.ProviderID) n += 1 + l + sovGenerated(uint64(l)) n += 2 + if len(m.Taints) > 0 { + for _, e := range m.Taints { + l = e.Size() + n += 1 + l + sovGenerated(uint64(l)) + } + } return n } @@ -10756,6 +10788,12 @@ func (m *PodSpec) Size() (n int) { if m.AutomountServiceAccountToken != nil { n += 3 } + if len(m.Tolerations) > 0 { + for _, e := range m.Tolerations { + l = e.Size() + n += 2 + l + sovGenerated(uint64(l)) + } + } return n } @@ -12750,6 +12788,7 @@ func (this *NodeSpec) String() string { `ExternalID:` + fmt.Sprintf("%v", this.ExternalID) + `,`, `ProviderID:` + fmt.Sprintf("%v", this.ProviderID) + `,`, `Unschedulable:` + fmt.Sprintf("%v", this.Unschedulable) + `,`, + `Taints:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Taints), "Taint", "Taint", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -13246,6 +13285,7 @@ func (this *PodSpec) String() string { `SchedulerName:` + fmt.Sprintf("%v", this.SchedulerName) + `,`, `InitContainers:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.InitContainers), "Container", "Container", 1), `&`, ``, 1) + `,`, `AutomountServiceAccountToken:` + valueToStringGenerated(this.AutomountServiceAccountToken) + `,`, + `Tolerations:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.Tolerations), "Toleration", "Toleration", 1), `&`, ``, 1) + `,`, `}`, }, "") return s @@ -26125,6 +26165,37 @@ func (m *NodeSpec) Unmarshal(data []byte) error { } } m.Unschedulable = bool(v != 0) + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Taints", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Taints = append(m.Taints, Taint{}) + if err := m.Taints[len(m.Taints)-1].Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -32647,6 +32718,37 @@ func (m *PodSpec) Unmarshal(data []byte) error { } b := bool(v != 0) m.AutomountServiceAccountToken = &b + case 22: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Tolerations", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Tolerations = append(m.Tolerations, Toleration{}) + if err := m.Tolerations[len(m.Tolerations)-1].Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -41486,670 +41588,673 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 10633 bytes of a gzipped FileDescriptorProto + // 10679 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0xbd, 0x7d, 0x6c, 0x24, 0xc7, 0x95, 0x18, 0xee, 0x9e, 0xe1, 0xd7, 0x3c, 0x7e, 0x6e, 0xed, 0x87, 0x28, 0x5a, 0x5a, 0xae, 0x5a, 0x96, 0xbc, 0x92, 0x56, 0xa4, 0x77, 0x25, 0x59, 0x6b, 0xcb, 0x3f, 0xd9, 0x24, 0x87, 0xdc, 0xa5, 0xf7, 0x6b, 0x54, 0xc3, 0xdd, 0x95, 0x6d, 0xfd, 0x2c, 0x35, 0xa7, 0x8b, 0x64, 0x6b, 0x7b, 0xba, - 0x47, 0xdd, 0x3d, 0xdc, 0xa5, 0x1d, 0x03, 0x77, 0x8e, 0xe1, 0x4b, 0x10, 0x27, 0xf1, 0xe1, 0x62, - 0x20, 0x48, 0x02, 0xf8, 0x10, 0x20, 0x81, 0x73, 0xf9, 0x74, 0x8c, 0xb3, 0x7d, 0x88, 0x2f, 0x41, - 0x2e, 0xe7, 0x8b, 0x0f, 0x48, 0x2e, 0x06, 0x0e, 0xc9, 0x5d, 0xbe, 0x78, 0x27, 0x3a, 0x77, 0x7f, - 0xe6, 0x8f, 0xdc, 0x7f, 0x4c, 0x90, 0x04, 0xf5, 0xd9, 0x55, 0x3d, 0x33, 0xec, 0x1e, 0x6a, 0x49, - 0xcb, 0x46, 0xfe, 0x9b, 0x79, 0xef, 0xd5, 0xab, 0x8f, 0xae, 0x7a, 0xf5, 0xde, 0xab, 0x57, 0xaf, - 0xe0, 0xc2, 0xbd, 0xcb, 0xf1, 0x9c, 0x17, 0xce, 0xdf, 0x6b, 0xaf, 0x93, 0x28, 0x20, 0x09, 0x89, - 0xe7, 0x5b, 0xf7, 0x36, 0xe7, 0x9d, 0x96, 0x37, 0xbf, 0x7d, 0x71, 0x7e, 0x93, 0x04, 0x24, 0x72, - 0x12, 0xe2, 0xce, 0xb5, 0xa2, 0x30, 0x09, 0xd1, 0x63, 0x9c, 0x7a, 0x2e, 0xa5, 0x9e, 0x6b, 0xdd, - 0xdb, 0x9c, 0x73, 0x5a, 0xde, 0xdc, 0xf6, 0xc5, 0x99, 0xe7, 0x37, 0xbd, 0x64, 0xab, 0xbd, 0x3e, - 0xd7, 0x08, 0x9b, 0xf3, 0x9b, 0xe1, 0x66, 0x38, 0xcf, 0x0a, 0xad, 0xb7, 0x37, 0xd8, 0x3f, 0xf6, - 0x87, 0xfd, 0xe2, 0xcc, 0x66, 0x5e, 0x14, 0x55, 0x3b, 0x2d, 0xaf, 0xe9, 0x34, 0xb6, 0xbc, 0x80, - 0x44, 0x3b, 0xaa, 0xf2, 0x88, 0xc4, 0x61, 0x3b, 0x6a, 0x90, 0x6c, 0x13, 0x0e, 0x2c, 0x15, 0xcf, - 0x37, 0x49, 0xe2, 0x74, 0x69, 0xf8, 0xcc, 0x7c, 0xaf, 0x52, 0x51, 0x3b, 0x48, 0xbc, 0x66, 0x67, - 0x35, 0x1f, 0xcd, 0x2b, 0x10, 0x37, 0xb6, 0x48, 0xd3, 0xe9, 0x28, 0xf7, 0x42, 0xaf, 0x72, 0xed, - 0xc4, 0xf3, 0xe7, 0xbd, 0x20, 0x89, 0x93, 0xe8, 0xa0, 0x3e, 0xc5, 0x24, 0xda, 0x26, 0x51, 0xda, - 0x21, 0xf2, 0xc0, 0x69, 0xb6, 0x7c, 0xd2, 0xa5, 0x4f, 0xf6, 0x1f, 0x58, 0x70, 0x6e, 0xe1, 0x6e, - 0x7d, 0xd9, 0x77, 0xe2, 0xc4, 0x6b, 0x2c, 0xfa, 0x61, 0xe3, 0x5e, 0x3d, 0x09, 0x23, 0x72, 0x27, - 0xf4, 0xdb, 0x4d, 0x52, 0x67, 0xc3, 0x87, 0x2e, 0xc0, 0xc8, 0x36, 0xfb, 0xbf, 0x5a, 0x9d, 0xb6, - 0xce, 0x59, 0xe7, 0x2b, 0x8b, 0x53, 0x3f, 0xda, 0x9d, 0xfd, 0xc0, 0xde, 0xee, 0xec, 0xc8, 0x1d, - 0x01, 0xc7, 0x8a, 0x02, 0x3d, 0x0d, 0x43, 0x1b, 0xf1, 0xda, 0x4e, 0x8b, 0x4c, 0x97, 0x18, 0xed, - 0x84, 0xa0, 0x1d, 0x5a, 0xa9, 0x53, 0x28, 0x16, 0x58, 0x34, 0x0f, 0x95, 0x96, 0x13, 0x25, 0x5e, - 0xe2, 0x85, 0xc1, 0x74, 0xf9, 0x9c, 0x75, 0x7e, 0x70, 0xf1, 0x84, 0x20, 0xad, 0xd4, 0x24, 0x02, - 0xa7, 0x34, 0xb4, 0x19, 0x11, 0x71, 0xdc, 0x5b, 0x81, 0xbf, 0x33, 0x3d, 0x70, 0xce, 0x3a, 0x3f, - 0x92, 0x36, 0x03, 0x0b, 0x38, 0x56, 0x14, 0xf6, 0xf7, 0x4b, 0x30, 0xb2, 0xb0, 0xb1, 0xe1, 0x05, - 0x5e, 0xb2, 0x83, 0xde, 0x82, 0xb1, 0x20, 0x74, 0x89, 0xfc, 0xcf, 0x7a, 0x31, 0x7a, 0xe9, 0xd9, - 0xb9, 0x83, 0xa6, 0xe2, 0xdc, 0x4d, 0xad, 0xc4, 0xe2, 0xd4, 0xde, 0xee, 0xec, 0x98, 0x0e, 0xc1, - 0x06, 0x47, 0xf4, 0x06, 0x8c, 0xb6, 0x42, 0x57, 0x55, 0x50, 0x62, 0x15, 0x3c, 0x73, 0x70, 0x05, - 0xb5, 0xb4, 0xc0, 0xe2, 0xe4, 0xde, 0xee, 0xec, 0xa8, 0x06, 0xc0, 0x3a, 0x3b, 0xe4, 0xc3, 0x24, - 0xfd, 0x1b, 0x24, 0x9e, 0xaa, 0xa1, 0xcc, 0x6a, 0x78, 0x3e, 0xbf, 0x06, 0xad, 0xd0, 0xe2, 0xc9, - 0xbd, 0xdd, 0xd9, 0xc9, 0x0c, 0x10, 0x67, 0x59, 0xdb, 0x5f, 0x80, 0x89, 0x85, 0x24, 0x71, 0x1a, - 0x5b, 0xc4, 0xe5, 0xdf, 0x17, 0xbd, 0x08, 0x03, 0x81, 0xd3, 0x24, 0xe2, 0xeb, 0x9f, 0x13, 0xc3, - 0x3e, 0x70, 0xd3, 0x69, 0x92, 0xfd, 0xdd, 0xd9, 0xa9, 0xdb, 0x81, 0xf7, 0x4e, 0x5b, 0xcc, 0x19, - 0x0a, 0xc3, 0x8c, 0x1a, 0x5d, 0x02, 0x70, 0xc9, 0xb6, 0xd7, 0x20, 0x35, 0x27, 0xd9, 0x12, 0xb3, - 0x01, 0x89, 0xb2, 0x50, 0x55, 0x18, 0xac, 0x51, 0xd9, 0x5f, 0xb6, 0xa0, 0xb2, 0xb0, 0x1d, 0x7a, - 0x6e, 0x2d, 0x74, 0x63, 0xd4, 0x86, 0xc9, 0x56, 0x44, 0x36, 0x48, 0xa4, 0x40, 0xd3, 0xd6, 0xb9, - 0xf2, 0xf9, 0xd1, 0x4b, 0x97, 0x72, 0xfa, 0x6d, 0x16, 0x5a, 0x0e, 0x92, 0x68, 0x67, 0xf1, 0x11, - 0x51, 0xf5, 0x64, 0x06, 0x8b, 0xb3, 0x75, 0xd8, 0xbf, 0x5c, 0x82, 0xd3, 0x0b, 0x5f, 0x68, 0x47, - 0xa4, 0xea, 0xc5, 0xf7, 0xb2, 0x4b, 0xc1, 0xf5, 0xe2, 0x7b, 0x37, 0xd3, 0xc1, 0x50, 0x73, 0xb0, - 0x2a, 0xe0, 0x58, 0x51, 0xa0, 0xe7, 0x61, 0x98, 0xfe, 0xbe, 0x8d, 0x57, 0x45, 0xef, 0x4f, 0x0a, - 0xe2, 0xd1, 0xaa, 0x93, 0x38, 0x55, 0x8e, 0xc2, 0x92, 0x06, 0xdd, 0x80, 0xd1, 0x06, 0x5b, 0xef, - 0x9b, 0x37, 0x42, 0x97, 0xb0, 0x2f, 0x5c, 0x59, 0x7c, 0x8e, 0x92, 0x2f, 0xa5, 0xe0, 0xfd, 0xdd, - 0xd9, 0x69, 0xde, 0x36, 0xc1, 0x42, 0xc3, 0x61, 0xbd, 0x3c, 0xb2, 0xd5, 0x42, 0x1c, 0x60, 0x9c, - 0xa0, 0xcb, 0x22, 0x3c, 0xaf, 0xad, 0xa9, 0x41, 0xb6, 0xa6, 0xc6, 0x7a, 0xac, 0xa7, 0x5f, 0xb3, - 0xc4, 0x98, 0xac, 0x78, 0xbe, 0x29, 0x1e, 0x2e, 0x01, 0xc4, 0xa4, 0x11, 0x91, 0x44, 0x1b, 0x15, - 0xf5, 0x99, 0xeb, 0x0a, 0x83, 0x35, 0x2a, 0xba, 0xf8, 0xe3, 0x2d, 0x27, 0x62, 0xb3, 0x45, 0x8c, - 0x8d, 0x5a, 0xfc, 0x75, 0x89, 0xc0, 0x29, 0x8d, 0xb1, 0xf8, 0xcb, 0xb9, 0x8b, 0xff, 0xb7, 0x2c, - 0x18, 0x5e, 0xf4, 0x02, 0xd7, 0x0b, 0x36, 0xd1, 0x5b, 0x30, 0x42, 0x25, 0xba, 0xeb, 0x24, 0x8e, - 0x58, 0xf7, 0x1f, 0x91, 0x93, 0x47, 0x17, 0xb0, 0x72, 0xfa, 0xc4, 0x73, 0x94, 0x9a, 0x4e, 0xa2, - 0x5b, 0xeb, 0x6f, 0x93, 0x46, 0x72, 0x83, 0x24, 0x4e, 0xda, 0x9d, 0x14, 0x86, 0x15, 0x57, 0x74, - 0x1b, 0x86, 0x12, 0x27, 0xda, 0x24, 0x89, 0x58, 0xf6, 0x39, 0x8b, 0x92, 0xf3, 0xc0, 0x74, 0xca, - 0x91, 0xa0, 0x41, 0x52, 0x01, 0xb9, 0xc6, 0x98, 0x60, 0xc1, 0xcc, 0x6e, 0xc0, 0xd8, 0x92, 0xd3, - 0x72, 0xd6, 0x3d, 0xdf, 0x4b, 0x3c, 0x12, 0xa3, 0x0f, 0x43, 0xd9, 0x71, 0x5d, 0xb6, 0x00, 0x2a, - 0x8b, 0xa7, 0xf7, 0x76, 0x67, 0xcb, 0x0b, 0xae, 0xbb, 0xbf, 0x3b, 0x0b, 0x8a, 0x6a, 0x07, 0x53, - 0x0a, 0xf4, 0x2c, 0x0c, 0xb8, 0x51, 0xd8, 0x9a, 0x2e, 0x31, 0xca, 0x33, 0x74, 0xa5, 0x56, 0xa3, - 0xb0, 0x95, 0x21, 0x65, 0x34, 0xf6, 0x0f, 0x4b, 0x80, 0x96, 0x48, 0x6b, 0x6b, 0xa5, 0x6e, 0x7c, - 0xd3, 0xf3, 0x30, 0xd2, 0x0c, 0x03, 0x2f, 0x09, 0xa3, 0x58, 0x54, 0xc8, 0xe6, 0xc5, 0x0d, 0x01, - 0xc3, 0x0a, 0x8b, 0xce, 0xc1, 0x40, 0x2b, 0x5d, 0xde, 0x63, 0x52, 0x34, 0xb0, 0x85, 0xcd, 0x30, - 0x94, 0xa2, 0x1d, 0x93, 0x48, 0xcc, 0x67, 0x45, 0x71, 0x3b, 0x26, 0x11, 0x66, 0x98, 0x74, 0x06, - 0xd1, 0xb9, 0x25, 0x66, 0x6b, 0x66, 0x06, 0x51, 0x0c, 0xd6, 0xa8, 0xd0, 0x9b, 0x50, 0xe1, 0xff, - 0x30, 0xd9, 0x60, 0x53, 0x37, 0x57, 0x28, 0x5c, 0x0f, 0x1b, 0x8e, 0x9f, 0x1d, 0xfc, 0x71, 0x36, - 0xe3, 0x24, 0x23, 0x9c, 0xf2, 0x34, 0x66, 0xdc, 0x50, 0xee, 0x8c, 0xfb, 0xeb, 0x16, 0xa0, 0x25, - 0x2f, 0x70, 0x49, 0x74, 0x0c, 0x5b, 0x67, 0x7f, 0x8b, 0xe1, 0x3f, 0xd3, 0xa6, 0x85, 0xcd, 0x56, - 0x18, 0x90, 0x20, 0x59, 0x0a, 0x03, 0x97, 0x6f, 0xa7, 0x1f, 0x87, 0x81, 0x84, 0x56, 0xc5, 0x9b, - 0xf5, 0xb4, 0xfc, 0x2c, 0xb4, 0x82, 0xfd, 0xdd, 0xd9, 0x33, 0x9d, 0x25, 0x58, 0x13, 0x58, 0x19, - 0xf4, 0x31, 0x18, 0x8a, 0x13, 0x27, 0x69, 0xc7, 0xa2, 0xa1, 0x4f, 0xc8, 0x86, 0xd6, 0x19, 0x74, - 0x7f, 0x77, 0x76, 0x52, 0x15, 0xe3, 0x20, 0x2c, 0x0a, 0xa0, 0x67, 0x60, 0xb8, 0x49, 0xe2, 0xd8, - 0xd9, 0x94, 0x02, 0x6e, 0x52, 0x94, 0x1d, 0xbe, 0xc1, 0xc1, 0x58, 0xe2, 0xd1, 0x93, 0x30, 0x48, - 0xa2, 0x28, 0x8c, 0xc4, 0x8c, 0x18, 0x17, 0x84, 0x83, 0xcb, 0x14, 0x88, 0x39, 0xce, 0xfe, 0x8f, - 0x16, 0x4c, 0xaa, 0xb6, 0xf2, 0xba, 0x8e, 0x61, 0xc9, 0xbb, 0x00, 0x0d, 0xd9, 0xc1, 0x98, 0x2d, - 0x34, 0xad, 0x8e, 0xee, 0xd3, 0xaf, 0x73, 0x40, 0xd3, 0x3a, 0x14, 0x28, 0xc6, 0x1a, 0x5f, 0xfb, - 0x5f, 0x5b, 0x70, 0x32, 0xd3, 0xb7, 0xeb, 0x5e, 0x9c, 0xa0, 0x37, 0x3a, 0xfa, 0x37, 0x57, 0xac, - 0x7f, 0xb4, 0x34, 0xeb, 0x9d, 0x9a, 0x2f, 0x12, 0xa2, 0xf5, 0x0d, 0xc3, 0xa0, 0x97, 0x90, 0xa6, - 0xec, 0xd6, 0xf3, 0x05, 0xbb, 0xc5, 0xdb, 0x97, 0x7e, 0xa5, 0x55, 0xca, 0x03, 0x73, 0x56, 0xf6, - 0xff, 0xb4, 0xa0, 0xb2, 0x14, 0x06, 0x1b, 0xde, 0xe6, 0x0d, 0xa7, 0x75, 0x0c, 0xdf, 0xa7, 0x0e, - 0x03, 0x8c, 0x3b, 0xef, 0xc2, 0xc5, 0xbc, 0x2e, 0x88, 0x86, 0xcd, 0xd1, 0x3d, 0x95, 0x2b, 0x0b, - 0x4a, 0x4c, 0x51, 0x10, 0x66, 0xcc, 0x66, 0x5e, 0x86, 0x8a, 0x22, 0x40, 0x53, 0x50, 0xbe, 0x47, - 0xb8, 0x26, 0x59, 0xc1, 0xf4, 0x27, 0x3a, 0x05, 0x83, 0xdb, 0x8e, 0xdf, 0x16, 0x8b, 0x17, 0xf3, - 0x3f, 0x1f, 0x2f, 0x5d, 0xb6, 0xec, 0x1f, 0xb2, 0x15, 0x28, 0x2a, 0x59, 0x0e, 0xb6, 0x85, 0x70, - 0xf8, 0x8a, 0x05, 0xa7, 0xfc, 0x2e, 0x42, 0x49, 0x8c, 0xc9, 0x61, 0xc4, 0xd9, 0x63, 0xa2, 0xd9, - 0xa7, 0xba, 0x61, 0x71, 0xd7, 0xda, 0xa8, 0xac, 0x0f, 0x5b, 0x74, 0xc2, 0x39, 0x3e, 0x6b, 0xba, - 0xd0, 0x01, 0x6e, 0x09, 0x18, 0x56, 0x58, 0xfb, 0x4f, 0x2d, 0x38, 0xa5, 0xfa, 0x71, 0x8d, 0xec, - 0xd4, 0x89, 0x4f, 0x1a, 0x49, 0x18, 0xbd, 0x5f, 0x7a, 0xf2, 0x38, 0xff, 0x26, 0x5c, 0x26, 0x8d, - 0x0a, 0x06, 0xe5, 0x6b, 0x64, 0x87, 0x7f, 0x20, 0xbd, 0xa3, 0xe5, 0x03, 0x3b, 0xfa, 0xcf, 0x2c, - 0x18, 0x57, 0x1d, 0x3d, 0x86, 0x25, 0x77, 0xdd, 0x5c, 0x72, 0x1f, 0x2e, 0x38, 0x5f, 0x7b, 0x2c, - 0xb6, 0xbf, 0x56, 0xa2, 0x62, 0x43, 0xd0, 0xd4, 0xa2, 0x90, 0x0e, 0x12, 0x95, 0xf8, 0xef, 0x93, - 0xaf, 0xd4, 0x5f, 0x67, 0xaf, 0x91, 0x9d, 0xb5, 0x90, 0x6a, 0x13, 0xdd, 0x3b, 0x6b, 0x7c, 0xd4, - 0x81, 0x03, 0x3f, 0xea, 0xef, 0x96, 0xe0, 0xb4, 0x1a, 0x16, 0x63, 0x97, 0xfe, 0xb9, 0x1c, 0x98, - 0x8b, 0x30, 0xea, 0x92, 0x0d, 0xa7, 0xed, 0x27, 0xca, 0x9a, 0x18, 0xe4, 0x66, 0x66, 0x35, 0x05, - 0x63, 0x9d, 0xa6, 0x8f, 0xb1, 0xfc, 0xe6, 0x28, 0x93, 0xe7, 0x89, 0x43, 0x67, 0x3d, 0xd5, 0xf0, - 0x34, 0xf3, 0x70, 0x4c, 0x37, 0x0f, 0x85, 0x29, 0xf8, 0x24, 0x0c, 0x7a, 0x4d, 0xba, 0xe7, 0x97, - 0xcc, 0xad, 0x7c, 0x95, 0x02, 0x31, 0xc7, 0xa1, 0xa7, 0x60, 0xb8, 0x11, 0x36, 0x9b, 0x4e, 0xe0, - 0x4e, 0x97, 0x99, 0xce, 0x39, 0x4a, 0xd5, 0x82, 0x25, 0x0e, 0xc2, 0x12, 0x87, 0x1e, 0x83, 0x01, - 0x27, 0xda, 0x8c, 0xa7, 0x07, 0x18, 0xcd, 0x08, 0xad, 0x69, 0x21, 0xda, 0x8c, 0x31, 0x83, 0x52, - 0x5d, 0xf2, 0x7e, 0x18, 0xdd, 0xf3, 0x82, 0xcd, 0xaa, 0x17, 0x31, 0xc5, 0x50, 0xd3, 0x25, 0xef, - 0x2a, 0x0c, 0xd6, 0xa8, 0x50, 0x0d, 0x06, 0x5b, 0x61, 0x94, 0xc4, 0xd3, 0x43, 0x6c, 0xe0, 0x9f, - 0xcb, 0x5d, 0x7e, 0xbc, 0xdf, 0xb5, 0x30, 0x4a, 0xd2, 0xae, 0xd0, 0x7f, 0x31, 0xe6, 0x8c, 0xd0, - 0x12, 0x94, 0x49, 0xb0, 0x3d, 0x3d, 0xcc, 0xf8, 0x7d, 0xe8, 0x60, 0x7e, 0xcb, 0xc1, 0xf6, 0x1d, - 0x27, 0x4a, 0xe5, 0xd5, 0x72, 0xb0, 0x8d, 0x69, 0x69, 0xd4, 0x80, 0x8a, 0x74, 0x61, 0xc5, 0xd3, - 0x23, 0x45, 0xa6, 0x22, 0x16, 0xe4, 0x98, 0xbc, 0xd3, 0xf6, 0x22, 0xd2, 0x24, 0x41, 0x12, 0xa7, - 0x86, 0x95, 0xc4, 0xc6, 0x38, 0xe5, 0x8b, 0x1a, 0x30, 0xc6, 0xf5, 0xcf, 0x1b, 0x61, 0x3b, 0x48, - 0xe2, 0xe9, 0x0a, 0x6b, 0x72, 0x8e, 0xe7, 0xe2, 0x4e, 0x5a, 0x62, 0xf1, 0x94, 0x60, 0x3f, 0xa6, - 0x01, 0x63, 0x6c, 0x30, 0x45, 0x6f, 0xc0, 0xb8, 0xef, 0x6d, 0x93, 0x80, 0xc4, 0x71, 0x2d, 0x0a, - 0xd7, 0xc9, 0x34, 0xb0, 0xde, 0x3c, 0x99, 0x67, 0xc5, 0x87, 0xeb, 0x64, 0xf1, 0xc4, 0xde, 0xee, - 0xec, 0xf8, 0x75, 0xbd, 0x34, 0x36, 0x99, 0xa1, 0x37, 0x61, 0x82, 0x2a, 0xbb, 0x5e, 0xca, 0x7e, - 0xb4, 0x38, 0x7b, 0xb4, 0xb7, 0x3b, 0x3b, 0x81, 0x8d, 0xe2, 0x38, 0xc3, 0x0e, 0xad, 0x41, 0xc5, - 0xf7, 0x36, 0x48, 0x63, 0xa7, 0xe1, 0x93, 0xe9, 0x31, 0xc6, 0x3b, 0x67, 0x71, 0x5e, 0x97, 0xe4, - 0xdc, 0xc0, 0x50, 0x7f, 0x71, 0xca, 0x08, 0xdd, 0x81, 0x33, 0x09, 0x89, 0x9a, 0x5e, 0xe0, 0xd0, - 0x45, 0x25, 0xb4, 0x5f, 0xe6, 0x2a, 0x19, 0x67, 0xb3, 0xf6, 0xac, 0x18, 0xd8, 0x33, 0x6b, 0x5d, - 0xa9, 0x70, 0x8f, 0xd2, 0xe8, 0x16, 0x4c, 0xb2, 0xf5, 0x54, 0x6b, 0xfb, 0x7e, 0x2d, 0xf4, 0xbd, - 0xc6, 0xce, 0xf4, 0x04, 0x63, 0xf8, 0x94, 0x74, 0x80, 0xac, 0x9a, 0x68, 0x6a, 0x18, 0xa6, 0xff, - 0x70, 0xb6, 0x34, 0xf2, 0x61, 0x32, 0x26, 0x8d, 0x76, 0xe4, 0x25, 0x3b, 0x74, 0xee, 0x93, 0x07, - 0xc9, 0xf4, 0x64, 0x11, 0x43, 0xb7, 0x6e, 0x16, 0xe2, 0xde, 0xa7, 0x0c, 0x10, 0x67, 0x59, 0x53, - 0x51, 0x11, 0x27, 0xae, 0x17, 0x4c, 0x4f, 0x31, 0x09, 0xa4, 0xd6, 0x57, 0x9d, 0x02, 0x31, 0xc7, - 0x31, 0xff, 0x01, 0xfd, 0x71, 0x8b, 0x4a, 0xe9, 0x13, 0x8c, 0x30, 0xf5, 0x1f, 0x48, 0x04, 0x4e, - 0x69, 0xa8, 0x6a, 0x90, 0x24, 0x3b, 0xd3, 0x88, 0x91, 0xaa, 0xa5, 0xb6, 0xb6, 0xf6, 0x19, 0x4c, - 0xe1, 0xe8, 0x0e, 0x0c, 0x93, 0x60, 0x7b, 0x25, 0x0a, 0x9b, 0xd3, 0x27, 0x8b, 0xc8, 0x80, 0x65, - 0x4e, 0xcc, 0xf7, 0x8f, 0xd4, 0x84, 0x11, 0x60, 0x2c, 0x99, 0xa1, 0x07, 0x30, 0xdd, 0xe5, 0x2b, - 0xf1, 0x8f, 0x72, 0x8a, 0x7d, 0x94, 0x4f, 0x88, 0xb2, 0xd3, 0x6b, 0x3d, 0xe8, 0xf6, 0x0f, 0xc0, - 0xe1, 0x9e, 0xdc, 0xed, 0x75, 0x98, 0x50, 0x82, 0x8a, 0x7d, 0x6f, 0x34, 0x0b, 0x83, 0x54, 0x16, - 0x4b, 0x83, 0xbe, 0x42, 0x07, 0x95, 0x8a, 0xe8, 0x18, 0x73, 0x38, 0x1b, 0x54, 0xef, 0x0b, 0x64, - 0x71, 0x27, 0x21, 0xdc, 0xb0, 0x2b, 0x6b, 0x83, 0x2a, 0x11, 0x38, 0xa5, 0xb1, 0xff, 0x37, 0x57, - 0x93, 0x52, 0x69, 0x58, 0x60, 0x27, 0xb8, 0x00, 0x23, 0x5b, 0x61, 0x9c, 0x50, 0x6a, 0x56, 0xc7, - 0x60, 0xaa, 0x18, 0x5d, 0x15, 0x70, 0xac, 0x28, 0xd0, 0x2b, 0x30, 0xde, 0xd0, 0x2b, 0x10, 0xdb, - 0xd8, 0x69, 0x51, 0xc4, 0xac, 0x1d, 0x9b, 0xb4, 0xe8, 0x32, 0x8c, 0x30, 0x2f, 0x77, 0x23, 0xf4, - 0x85, 0x09, 0x29, 0x77, 0xe5, 0x91, 0x9a, 0x80, 0xef, 0x6b, 0xbf, 0xb1, 0xa2, 0xa6, 0x86, 0x38, - 0x6d, 0xc2, 0x6a, 0x4d, 0x6c, 0x20, 0xca, 0x10, 0xbf, 0xca, 0xa0, 0x58, 0x60, 0xed, 0x7f, 0x52, - 0xd2, 0x46, 0x99, 0x1a, 0x40, 0x04, 0x7d, 0x16, 0x86, 0xef, 0x3b, 0x5e, 0xe2, 0x05, 0x9b, 0x42, - 0x7b, 0x78, 0xa1, 0xe0, 0x6e, 0xc2, 0x8a, 0xdf, 0xe5, 0x45, 0xf9, 0xce, 0x27, 0xfe, 0x60, 0xc9, - 0x90, 0xf2, 0x8e, 0xda, 0x41, 0x40, 0x79, 0x97, 0xfa, 0xe7, 0x8d, 0x79, 0x51, 0xce, 0x5b, 0xfc, - 0xc1, 0x92, 0x21, 0xda, 0x00, 0x90, 0x73, 0x89, 0xb8, 0xc2, 0xbb, 0xfc, 0xd1, 0x7e, 0xd8, 0xaf, - 0xa9, 0xd2, 0x8b, 0x13, 0x74, 0xaf, 0x4d, 0xff, 0x63, 0x8d, 0xb3, 0x9d, 0x30, 0x25, 0xac, 0xb3, - 0x59, 0xe8, 0x73, 0x74, 0x49, 0x3b, 0x51, 0x42, 0xdc, 0x85, 0x24, 0xeb, 0xa0, 0x3f, 0x58, 0xc5, - 0x5e, 0xf3, 0x9a, 0x44, 0x5f, 0xfe, 0x82, 0x09, 0x4e, 0xf9, 0xd9, 0xdf, 0x2b, 0xc3, 0x74, 0xaf, - 0xe6, 0xd2, 0x29, 0x49, 0x1e, 0x78, 0xc9, 0x12, 0x55, 0x93, 0x2c, 0x73, 0x4a, 0x2e, 0x0b, 0x38, - 0x56, 0x14, 0x74, 0x6e, 0xc4, 0xde, 0xa6, 0x34, 0x96, 0x06, 0xd3, 0xb9, 0x51, 0x67, 0x50, 0x2c, - 0xb0, 0x94, 0x2e, 0x22, 0x4e, 0x2c, 0x0e, 0x37, 0xb4, 0x39, 0x84, 0x19, 0x14, 0x0b, 0xac, 0xee, - 0x10, 0x19, 0xc8, 0x71, 0x88, 0x18, 0x43, 0x34, 0xf8, 0x70, 0x87, 0x08, 0x7d, 0x1e, 0x60, 0xc3, - 0x0b, 0xbc, 0x78, 0x8b, 0x71, 0x1f, 0xea, 0x9b, 0xbb, 0x52, 0xb2, 0x56, 0x14, 0x17, 0xac, 0x71, - 0x44, 0x2f, 0xc1, 0xa8, 0x5a, 0x9e, 0xab, 0xd5, 0xe9, 0x61, 0xd3, 0x21, 0x9e, 0xca, 0xaa, 0x2a, - 0xd6, 0xe9, 0xec, 0xb7, 0xb3, 0xf3, 0x45, 0xac, 0x0a, 0x6d, 0x7c, 0xad, 0xa2, 0xe3, 0x5b, 0x3a, - 0x78, 0x7c, 0xed, 0xff, 0x50, 0x86, 0x49, 0xa3, 0xb2, 0x76, 0x5c, 0x40, 0xa2, 0xbd, 0x46, 0x37, - 0x2c, 0x27, 0x21, 0x62, 0x4d, 0x5e, 0xe8, 0x67, 0xd1, 0xe8, 0xdb, 0x1b, 0x5d, 0x0b, 0x9c, 0x13, - 0xda, 0x82, 0x8a, 0xef, 0xc4, 0xcc, 0xa5, 0x42, 0xc4, 0x5a, 0xec, 0x8f, 0x6d, 0x6a, 0x7e, 0x38, - 0x71, 0xa2, 0xed, 0x1e, 0xbc, 0x96, 0x94, 0x39, 0xdd, 0x6d, 0xa9, 0xb2, 0x23, 0x4f, 0xd4, 0x54, - 0x73, 0xa8, 0x46, 0xb4, 0x83, 0x39, 0x0e, 0x5d, 0x86, 0xb1, 0x88, 0xb0, 0x99, 0xb2, 0x44, 0xf5, - 0x39, 0x36, 0xf5, 0x06, 0x53, 0xc5, 0x0f, 0x6b, 0x38, 0x6c, 0x50, 0xa6, 0x7a, 0xff, 0xd0, 0x01, - 0x7a, 0xff, 0x33, 0x30, 0xcc, 0x7e, 0xa8, 0x59, 0xa1, 0xbe, 0xd0, 0x2a, 0x07, 0x63, 0x89, 0xcf, - 0x4e, 0xa2, 0x91, 0x82, 0x93, 0xe8, 0x59, 0x98, 0xa8, 0x3a, 0xa4, 0x19, 0x06, 0xcb, 0x81, 0xdb, - 0x0a, 0xbd, 0x20, 0x41, 0xd3, 0x30, 0xc0, 0xf6, 0x13, 0xbe, 0xde, 0x07, 0x28, 0x07, 0x3c, 0x40, - 0x75, 0x77, 0xfb, 0xff, 0x58, 0x30, 0x5e, 0x25, 0x3e, 0x49, 0x08, 0xb7, 0x7b, 0x62, 0xb4, 0x02, - 0x68, 0x33, 0x72, 0x1a, 0xa4, 0x46, 0x22, 0x2f, 0x74, 0xeb, 0xa4, 0x11, 0x06, 0xec, 0x20, 0x8a, - 0x6e, 0x90, 0x67, 0xf6, 0x76, 0x67, 0xd1, 0x95, 0x0e, 0x2c, 0xee, 0x52, 0x02, 0xb9, 0x30, 0xde, - 0x8a, 0x88, 0xe1, 0x37, 0xb4, 0xf2, 0x55, 0x8d, 0x9a, 0x5e, 0x84, 0x6b, 0xc3, 0x06, 0x08, 0x9b, - 0x4c, 0xd1, 0xa7, 0x60, 0x2a, 0x8c, 0x5a, 0x5b, 0x4e, 0x50, 0x25, 0x2d, 0x12, 0xb8, 0xd4, 0x04, - 0x10, 0xde, 0x8e, 0x53, 0x7b, 0xbb, 0xb3, 0x53, 0xb7, 0x32, 0x38, 0xdc, 0x41, 0x6d, 0xbf, 0x03, - 0xa7, 0xab, 0xe1, 0xfd, 0xe0, 0xbe, 0x13, 0xb9, 0x0b, 0xb5, 0x55, 0xcd, 0x81, 0xf0, 0xba, 0x34, - 0x50, 0xf9, 0x21, 0x5c, 0xce, 0xee, 0xa3, 0xf1, 0xe0, 0xa6, 0xc1, 0x8a, 0xe7, 0x93, 0x1e, 0x2e, - 0x8b, 0xbf, 0x5f, 0x32, 0xea, 0x4c, 0xe9, 0xd5, 0xf9, 0x82, 0xd5, 0xf3, 0x7c, 0xe1, 0x73, 0x30, - 0xb2, 0xe1, 0x11, 0xdf, 0xc5, 0x64, 0x43, 0x8c, 0xe8, 0xc5, 0x22, 0x07, 0x30, 0x2b, 0xb4, 0x8c, - 0xf4, 0x60, 0x71, 0x43, 0x77, 0x45, 0xb0, 0xc1, 0x8a, 0x21, 0x6a, 0xc3, 0x94, 0xb4, 0x95, 0x24, - 0x56, 0x2c, 0xc8, 0x17, 0x8a, 0x99, 0x62, 0x66, 0x35, 0xec, 0x13, 0xe0, 0x0c, 0x43, 0xdc, 0x51, - 0x05, 0xb5, 0x71, 0x9b, 0x74, 0x3b, 0x1a, 0x60, 0xd3, 0x93, 0xd9, 0xb8, 0xcc, 0x5c, 0x67, 0x50, - 0xfb, 0xef, 0x5a, 0xf0, 0x48, 0xc7, 0x68, 0x09, 0x5f, 0xc6, 0x91, 0x7d, 0xa3, 0xac, 0x43, 0xa1, - 0x94, 0xef, 0x50, 0xb0, 0x6f, 0xc1, 0xa9, 0xe5, 0x66, 0x2b, 0xd9, 0xa9, 0x7a, 0xe6, 0xb1, 0xc8, - 0xcb, 0x30, 0xd4, 0x24, 0xae, 0xd7, 0x6e, 0x8a, 0xcf, 0x3a, 0x2b, 0x65, 0xf7, 0x0d, 0x06, 0xdd, - 0xdf, 0x9d, 0x1d, 0xaf, 0x27, 0x61, 0xe4, 0x6c, 0x12, 0x0e, 0xc0, 0x82, 0xdc, 0x7e, 0xd7, 0x82, - 0x49, 0xb9, 0x86, 0x17, 0x5c, 0x37, 0x22, 0x71, 0x8c, 0x66, 0xa0, 0xe4, 0xb5, 0x04, 0x23, 0x10, - 0x8c, 0x4a, 0xab, 0x35, 0x5c, 0xf2, 0x5a, 0xe8, 0xb3, 0x50, 0xe1, 0xa7, 0x69, 0xe9, 0xe4, 0xe8, - 0xf3, 0x74, 0x8e, 0xd9, 0x6f, 0x6b, 0x92, 0x07, 0x4e, 0xd9, 0x49, 0x4d, 0x96, 0xed, 0x0e, 0x65, - 0xf3, 0x6c, 0xe7, 0xaa, 0x80, 0x63, 0x45, 0x81, 0xce, 0xc3, 0x48, 0x10, 0xba, 0xfc, 0xc0, 0x93, - 0xef, 0xf3, 0x6c, 0xca, 0xdd, 0x14, 0x30, 0xac, 0xb0, 0xf6, 0xd7, 0x2c, 0x18, 0x93, 0x7d, 0x2c, - 0xa8, 0x54, 0xd3, 0x45, 0x92, 0x2a, 0xd4, 0xe9, 0x22, 0xa1, 0x4a, 0x31, 0xc3, 0x18, 0xba, 0x70, - 0xb9, 0x1f, 0x5d, 0xd8, 0xfe, 0x8d, 0x12, 0x4c, 0xc8, 0xe6, 0xd4, 0xdb, 0xeb, 0x31, 0xa1, 0xaa, - 0x42, 0xc5, 0xe1, 0x83, 0x4f, 0xe4, 0x3c, 0x7b, 0x3e, 0xcf, 0x5e, 0x32, 0xbe, 0x59, 0xaa, 0x8a, - 0x2c, 0x48, 0x3e, 0x38, 0x65, 0x89, 0xb6, 0xe1, 0x44, 0x10, 0x26, 0x6c, 0x0b, 0x52, 0xf8, 0x62, - 0xa7, 0x11, 0xd9, 0x7a, 0x1e, 0x15, 0xf5, 0x9c, 0xb8, 0x99, 0xe5, 0x87, 0x3b, 0xab, 0x40, 0xb7, - 0xa4, 0x1f, 0xa8, 0xcc, 0xea, 0x7a, 0xb6, 0x58, 0x5d, 0xbd, 0xdd, 0x40, 0xf6, 0xef, 0x58, 0x50, - 0x91, 0x64, 0xc7, 0x71, 0x2c, 0x75, 0x17, 0x86, 0x63, 0xf6, 0x89, 0xe4, 0x70, 0x5d, 0x28, 0xd6, - 0x05, 0xfe, 0x5d, 0xd3, 0x7d, 0x97, 0xff, 0x8f, 0xb1, 0xe4, 0xc6, 0x1c, 0xe2, 0xaa, 0x23, 0xef, - 0x3b, 0x87, 0xb8, 0x6a, 0x59, 0xef, 0xd3, 0xa7, 0x71, 0xc3, 0x62, 0xa7, 0xca, 0x63, 0x2b, 0x22, - 0x1b, 0xde, 0x83, 0xac, 0xf2, 0x58, 0x63, 0x50, 0x2c, 0xb0, 0x68, 0x03, 0xc6, 0x1a, 0xd2, 0x65, - 0x9c, 0x8a, 0x90, 0x8f, 0x14, 0xf4, 0xcf, 0xab, 0xa3, 0x1e, 0x1e, 0x3e, 0xb4, 0xa4, 0x71, 0xc2, - 0x06, 0x5f, 0x2a, 0xa7, 0xd2, 0xd3, 0xec, 0x72, 0x41, 0xe7, 0x4a, 0x44, 0x92, 0xb4, 0x86, 0x9e, - 0x07, 0xd9, 0xf6, 0xb7, 0x2c, 0x18, 0xe2, 0x3e, 0xc6, 0x62, 0x8e, 0x5a, 0xed, 0x10, 0x2b, 0x1d, - 0xcf, 0x3b, 0x14, 0x28, 0xce, 0xb4, 0xd0, 0x5d, 0xa8, 0xb0, 0x1f, 0xcc, 0x5f, 0x52, 0x2e, 0x12, - 0x4b, 0xc5, 0xeb, 0xd7, 0x9b, 0x7a, 0x47, 0x32, 0xc0, 0x29, 0x2f, 0xfb, 0x07, 0x65, 0x2a, 0xfa, - 0x52, 0x52, 0x63, 0x6f, 0xb7, 0x8e, 0x63, 0x6f, 0x2f, 0x1d, 0xfd, 0xde, 0xfe, 0x0e, 0x4c, 0x36, - 0xb4, 0x43, 0xb4, 0xf4, 0x8b, 0x5f, 0x2a, 0x38, 0xad, 0xb4, 0x93, 0x37, 0xee, 0x53, 0x5b, 0x32, - 0xd9, 0xe1, 0x2c, 0x7f, 0x44, 0x60, 0x8c, 0xcf, 0x07, 0x51, 0xdf, 0x00, 0xab, 0x6f, 0xbe, 0xc8, - 0x0c, 0xd3, 0x2b, 0x63, 0xb3, 0xb8, 0xae, 0x31, 0xc2, 0x06, 0x5b, 0xfb, 0x6f, 0x0c, 0xc2, 0xe0, - 0xf2, 0x36, 0x09, 0x92, 0x63, 0x10, 0x75, 0x4d, 0x98, 0xf0, 0x82, 0xed, 0xd0, 0xdf, 0x26, 0x2e, - 0xc7, 0x1f, 0x6e, 0x7b, 0x3f, 0x23, 0x2a, 0x99, 0x58, 0x35, 0x98, 0xe1, 0x0c, 0xf3, 0xa3, 0xb0, - 0xe6, 0x5f, 0x83, 0x21, 0x3e, 0x33, 0x84, 0x29, 0x9f, 0xe3, 0x73, 0x67, 0x03, 0x2b, 0x56, 0x50, - 0xea, 0x73, 0xe0, 0xee, 0x7e, 0xc1, 0x08, 0xbd, 0x0d, 0x13, 0x1b, 0x5e, 0x14, 0x27, 0xd4, 0x20, - 0x8f, 0x13, 0xa7, 0xd9, 0x3a, 0x84, 0x1d, 0xaf, 0x46, 0x64, 0xc5, 0xe0, 0x84, 0x33, 0x9c, 0xd1, - 0x26, 0x8c, 0x53, 0x33, 0x32, 0xad, 0x6a, 0xb8, 0xef, 0xaa, 0x94, 0x1b, 0xef, 0xba, 0xce, 0x08, - 0x9b, 0x7c, 0xa9, 0x48, 0x6a, 0x30, 0xb3, 0x73, 0x84, 0x69, 0x37, 0x4a, 0x24, 0x71, 0x7b, 0x93, - 0xe3, 0xa8, 0x64, 0x63, 0xd1, 0x2c, 0x15, 0x53, 0xb2, 0xa5, 0x31, 0x2b, 0xf6, 0x77, 0xe8, 0x5e, - 0x4c, 0xc7, 0xf0, 0x18, 0xb6, 0xaf, 0xab, 0xe6, 0xf6, 0xf5, 0x64, 0x81, 0x2f, 0xdb, 0x63, 0xeb, - 0x7a, 0x0b, 0x46, 0xb5, 0x0f, 0x8f, 0xe6, 0xa1, 0xd2, 0x90, 0x01, 0x17, 0x42, 0x8a, 0x2b, 0x55, - 0x4a, 0x45, 0x62, 0xe0, 0x94, 0x86, 0x8e, 0x0b, 0x55, 0x41, 0xb3, 0xe1, 0x59, 0x54, 0x41, 0xc5, - 0x0c, 0x63, 0xbf, 0x00, 0xb0, 0xfc, 0x80, 0x34, 0x16, 0xb8, 0x89, 0xa7, 0x9d, 0xc1, 0x59, 0xbd, - 0xcf, 0xe0, 0xec, 0x6f, 0x5b, 0x30, 0xb1, 0xb2, 0x64, 0xe8, 0xf4, 0x73, 0x00, 0x5c, 0x37, 0xbe, - 0x7b, 0xf7, 0xa6, 0xf4, 0x31, 0x73, 0x47, 0xa0, 0x82, 0x62, 0x8d, 0x02, 0x3d, 0x0a, 0x65, 0xbf, - 0x1d, 0x08, 0x95, 0x75, 0x78, 0x6f, 0x77, 0xb6, 0x7c, 0xbd, 0x1d, 0x60, 0x0a, 0xd3, 0xe2, 0xa0, - 0xca, 0x85, 0xe3, 0xa0, 0xf2, 0x23, 0x82, 0xbf, 0x51, 0x86, 0xa9, 0x15, 0x9f, 0x3c, 0x30, 0x5a, - 0xfd, 0x34, 0x0c, 0xb9, 0x91, 0xb7, 0x4d, 0xa2, 0xac, 0x22, 0x50, 0x65, 0x50, 0x2c, 0xb0, 0x85, - 0x43, 0xb3, 0xde, 0xec, 0xdc, 0xc8, 0x8f, 0x2e, 0x2c, 0x2d, 0xb7, 0xcf, 0x68, 0x03, 0x86, 0xf9, - 0x99, 0x6d, 0x3c, 0x3d, 0xc8, 0xa6, 0xe2, 0x2b, 0x07, 0x37, 0x26, 0x3b, 0x3e, 0x73, 0xc2, 0x07, - 0xc2, 0x83, 0x62, 0x94, 0x2c, 0x13, 0x50, 0x2c, 0x99, 0xcf, 0x7c, 0x1c, 0xc6, 0x74, 0xca, 0xbe, - 0xa2, 0x63, 0xfe, 0xbc, 0x05, 0x27, 0x57, 0xfc, 0xb0, 0x71, 0x2f, 0x13, 0x3b, 0xf7, 0x12, 0x8c, - 0xd2, 0xc5, 0x14, 0x1b, 0x81, 0xa5, 0x46, 0x04, 0xad, 0x40, 0x61, 0x9d, 0x4e, 0x2b, 0x76, 0xfb, - 0xf6, 0x6a, 0xb5, 0x5b, 0xe0, 0xad, 0x40, 0x61, 0x9d, 0xce, 0xfe, 0x3d, 0x0b, 0x1e, 0xbf, 0xb2, - 0xb4, 0x5c, 0x23, 0x51, 0xec, 0xc5, 0x09, 0x09, 0x92, 0x8e, 0xd8, 0x5f, 0xaa, 0x33, 0xba, 0x5a, - 0x53, 0x52, 0x9d, 0xb1, 0xca, 0x5a, 0x21, 0xb0, 0xef, 0x97, 0x00, 0xf8, 0x6f, 0x59, 0x70, 0xf2, - 0x8a, 0x97, 0x60, 0xd2, 0x0a, 0xb3, 0xe1, 0xba, 0x11, 0x69, 0x85, 0xb1, 0x97, 0x84, 0xd1, 0x4e, - 0x36, 0x5c, 0x17, 0x2b, 0x0c, 0xd6, 0xa8, 0x78, 0xcd, 0xdb, 0x5e, 0x4c, 0x5b, 0x5a, 0x32, 0x4d, - 0x5d, 0x2c, 0xe0, 0x58, 0x51, 0xd0, 0x8e, 0xb9, 0x5e, 0xc4, 0x54, 0x86, 0x1d, 0xb1, 0x82, 0x55, - 0xc7, 0xaa, 0x12, 0x81, 0x53, 0x1a, 0xfb, 0x6f, 0x59, 0x70, 0xfa, 0x8a, 0xdf, 0x8e, 0x13, 0x12, - 0x6d, 0xc4, 0x46, 0x63, 0x5f, 0x80, 0x0a, 0x91, 0xca, 0xbd, 0x68, 0xab, 0xda, 0x34, 0x94, 0xd6, - 0xcf, 0x63, 0x85, 0x15, 0x5d, 0x81, 0x90, 0xd4, 0xfe, 0x02, 0x28, 0x7f, 0xb3, 0x04, 0xe3, 0x57, - 0xd7, 0xd6, 0x6a, 0x57, 0x48, 0x22, 0xa4, 0x64, 0xbe, 0x53, 0x0a, 0x6b, 0x16, 0xf9, 0x41, 0xca, - 0x4f, 0x3b, 0xf1, 0xfc, 0x39, 0x7e, 0xa5, 0x63, 0x6e, 0x35, 0x48, 0x6e, 0x45, 0xf5, 0x24, 0xf2, - 0x82, 0xcd, 0xae, 0x36, 0xbc, 0x94, 0xe5, 0xe5, 0x5e, 0xb2, 0x1c, 0xbd, 0x00, 0x43, 0xec, 0x4e, - 0x89, 0x54, 0x3e, 0x3e, 0xa8, 0xf4, 0x04, 0x06, 0xdd, 0xdf, 0x9d, 0xad, 0xdc, 0xc6, 0xab, 0xfc, - 0x0f, 0x16, 0xa4, 0xe8, 0x4d, 0x18, 0xdd, 0x4a, 0x92, 0xd6, 0x55, 0xe2, 0xb8, 0x24, 0x92, 0x72, - 0xe2, 0xfc, 0xc1, 0x72, 0x82, 0x0e, 0x07, 0x2f, 0x90, 0x2e, 0xad, 0x14, 0x16, 0x63, 0x9d, 0xa3, - 0x5d, 0x07, 0x48, 0x71, 0x0f, 0xc9, 0x06, 0xb1, 0x7f, 0xb1, 0x04, 0xc3, 0x57, 0x9d, 0xc0, 0xf5, - 0x49, 0x84, 0x56, 0x60, 0x80, 0x3c, 0x20, 0x0d, 0xb1, 0x91, 0xe7, 0x34, 0x3d, 0xdd, 0xec, 0xb8, - 0x5f, 0x8d, 0xfe, 0xc7, 0xac, 0x3c, 0xc2, 0x30, 0x4c, 0xdb, 0x7d, 0x45, 0x45, 0x72, 0x3f, 0x97, - 0x3f, 0x0a, 0x6a, 0x52, 0xf0, 0x9d, 0x52, 0x80, 0xb0, 0x64, 0xc4, 0x3c, 0x50, 0x8d, 0x56, 0x9d, - 0x8a, 0xb7, 0xa4, 0x98, 0x65, 0xb7, 0xb6, 0x54, 0xe3, 0xe4, 0x82, 0x2f, 0xf7, 0x40, 0x49, 0x20, - 0x4e, 0xd9, 0xd9, 0x97, 0xe1, 0x14, 0x3b, 0x33, 0x75, 0x92, 0x2d, 0x63, 0xd5, 0xe4, 0x4e, 0x4f, - 0xfb, 0x47, 0x25, 0x38, 0xb1, 0x5a, 0x5f, 0xaa, 0x9b, 0xbe, 0xc3, 0xcb, 0x30, 0xc6, 0x37, 0x68, - 0x3a, 0xe9, 0x1c, 0x5f, 0x94, 0x57, 0x7e, 0xfe, 0x35, 0x0d, 0x87, 0x0d, 0x4a, 0xf4, 0x38, 0x94, - 0xbd, 0x77, 0x82, 0x6c, 0xe4, 0xdd, 0xea, 0x6b, 0x37, 0x31, 0x85, 0x53, 0x34, 0xdd, 0xeb, 0xb9, - 0x90, 0x53, 0x68, 0xb5, 0xdf, 0xbf, 0x0a, 0x13, 0x5e, 0xdc, 0x88, 0xbd, 0xd5, 0x80, 0x4a, 0x00, - 0xa7, 0x21, 0xa7, 0x6f, 0xaa, 0x9c, 0xd3, 0xa6, 0x2a, 0x2c, 0xce, 0x50, 0x6b, 0x12, 0x77, 0xb0, - 0xb0, 0xbe, 0x90, 0x1b, 0xd2, 0x4d, 0x55, 0xa1, 0x16, 0xeb, 0x5d, 0xcc, 0xe2, 0x78, 0x84, 0x2a, - 0xc4, 0x3b, 0x1c, 0x63, 0x89, 0xb3, 0xdf, 0x86, 0x8a, 0x0a, 0xc5, 0x92, 0x11, 0x88, 0x56, 0x8f, - 0x08, 0xc4, 0x7c, 0xc9, 0x24, 0x1d, 0xbf, 0xe5, 0xae, 0x8e, 0xdf, 0x7f, 0x68, 0x41, 0x1a, 0x4b, - 0x82, 0x30, 0x54, 0x5a, 0x21, 0x3b, 0xc8, 0x89, 0xe4, 0x89, 0xe9, 0x53, 0x39, 0x13, 0x96, 0x2f, - 0x18, 0x3e, 0xa5, 0x6a, 0xb2, 0x2c, 0x4e, 0xd9, 0xa0, 0xeb, 0x30, 0xdc, 0x8a, 0x48, 0x3d, 0x61, - 0xd7, 0x07, 0xfa, 0xe0, 0xc8, 0xc7, 0x86, 0x97, 0xc4, 0x92, 0x85, 0xfd, 0xcf, 0x2d, 0x80, 0xeb, - 0x5e, 0xd3, 0x4b, 0xb0, 0x13, 0x6c, 0x92, 0x63, 0xb0, 0x0a, 0x6f, 0xc2, 0x40, 0xdc, 0x22, 0x8d, - 0x62, 0x47, 0x71, 0x69, 0xcb, 0xea, 0x2d, 0xd2, 0x48, 0x3f, 0x07, 0xfd, 0x87, 0x19, 0x1f, 0xfb, - 0xfb, 0x00, 0x13, 0x29, 0x19, 0xd5, 0xcc, 0xd1, 0xf3, 0x46, 0xdc, 0xfc, 0xa3, 0x99, 0xb8, 0xf9, - 0x0a, 0xa3, 0xd6, 0x42, 0xe5, 0x13, 0x28, 0x37, 0x9d, 0x07, 0xc2, 0x10, 0x78, 0xa9, 0x68, 0x83, - 0x68, 0x4d, 0x73, 0x37, 0x9c, 0x07, 0x5c, 0xef, 0x7a, 0x4e, 0x4e, 0xa4, 0x1b, 0xce, 0x83, 0x7d, - 0x7e, 0xe0, 0xc6, 0x16, 0x2c, 0xb5, 0x3c, 0xbe, 0xfc, 0x47, 0xe9, 0x7f, 0x26, 0x43, 0x69, 0x75, - 0xac, 0x56, 0x2f, 0x10, 0x7e, 0xcc, 0x3e, 0x6b, 0xf5, 0x82, 0x6c, 0xad, 0x5e, 0x50, 0xa0, 0x56, - 0x8f, 0x05, 0x98, 0x0e, 0x0b, 0xf7, 0x3f, 0x8b, 0xce, 0x1b, 0xbd, 0xf4, 0xb1, 0xbe, 0xaa, 0x16, - 0xe7, 0x08, 0xbc, 0xfa, 0x79, 0xa9, 0x6c, 0x0a, 0x68, 0x6e, 0x13, 0x64, 0xd5, 0xe8, 0x57, 0x2d, - 0x98, 0x10, 0xbf, 0x31, 0x79, 0xa7, 0x4d, 0xe2, 0x44, 0x6c, 0x6a, 0x9f, 0x3a, 0x4c, 0x6b, 0x04, - 0x0b, 0xde, 0xa8, 0x8f, 0x4a, 0x89, 0x64, 0x22, 0x73, 0xdb, 0x96, 0x69, 0x0f, 0xfa, 0xbe, 0x05, - 0xa7, 0x9a, 0xce, 0x03, 0x5e, 0x23, 0x87, 0x61, 0x27, 0xf1, 0x42, 0x11, 0x81, 0xb8, 0xd2, 0xef, - 0x3c, 0xe9, 0x60, 0xc4, 0x9b, 0x2b, 0x83, 0x8b, 0x4e, 0x75, 0x23, 0xc9, 0x6d, 0x74, 0xd7, 0x16, - 0xce, 0x6c, 0xc0, 0x88, 0x9c, 0x98, 0x5d, 0xd4, 0xfc, 0xaa, 0xbe, 0x77, 0xe7, 0x18, 0xd5, 0x73, - 0xd2, 0x35, 0x36, 0xf7, 0x5a, 0xdb, 0x09, 0x12, 0x2f, 0xd9, 0xd1, 0xcc, 0x02, 0x56, 0x8f, 0x98, - 0x8a, 0x47, 0x5a, 0xcf, 0xdb, 0x30, 0xa6, 0xcf, 0xbb, 0x23, 0xad, 0xeb, 0x1d, 0x38, 0xd9, 0x65, - 0x56, 0x1d, 0x69, 0x95, 0xf7, 0xe1, 0xd1, 0x9e, 0xf3, 0xe3, 0x28, 0x2b, 0xb6, 0x7f, 0xd3, 0xd2, - 0x45, 0xe7, 0x31, 0x38, 0x5d, 0x6e, 0x98, 0x4e, 0x97, 0xf3, 0x45, 0xd7, 0x50, 0x0f, 0xcf, 0xcb, - 0x86, 0xde, 0x7c, 0xba, 0x25, 0xa0, 0x35, 0x18, 0xf2, 0x29, 0x44, 0x9e, 0x79, 0x5d, 0xe8, 0x67, - 0x95, 0xa6, 0x4a, 0x09, 0x83, 0xc7, 0x58, 0xf0, 0xb2, 0xbf, 0x6f, 0xc1, 0xc0, 0x4f, 0xf1, 0x56, - 0x4f, 0x07, 0x6b, 0x71, 0x39, 0x7d, 0x0e, 0x3b, 0xf7, 0x97, 0x1f, 0x24, 0x24, 0x88, 0x99, 0x0e, - 0xda, 0xeb, 0xd4, 0x7e, 0x94, 0x56, 0x25, 0x03, 0x25, 0x5e, 0x81, 0x71, 0xdf, 0x59, 0x27, 0xbe, - 0x74, 0x18, 0x67, 0x2d, 0xb6, 0xeb, 0x3a, 0x12, 0x9b, 0xb4, 0xb4, 0xf0, 0x86, 0xee, 0x4f, 0x17, - 0x4a, 0x92, 0x2a, 0x6c, 0x38, 0xdb, 0xb1, 0x49, 0x4b, 0x4d, 0x86, 0xfb, 0x4e, 0xd2, 0xd8, 0x12, - 0xd6, 0x9c, 0x6a, 0xee, 0x5d, 0x0a, 0xc4, 0x1c, 0x87, 0x16, 0x60, 0x52, 0xce, 0xd8, 0x3b, 0xd4, - 0xcc, 0x0f, 0x03, 0xa1, 0x67, 0xaa, 0x9b, 0xc1, 0xd8, 0x44, 0xe3, 0x2c, 0x3d, 0xfa, 0x38, 0x4c, - 0xd0, 0xc1, 0x09, 0xdb, 0x89, 0x0c, 0x03, 0x19, 0x64, 0x61, 0x20, 0x2c, 0x8a, 0x78, 0xcd, 0xc0, - 0xe0, 0x0c, 0xa5, 0xfd, 0x26, 0x9c, 0xbc, 0x1e, 0x3a, 0xee, 0xa2, 0xe3, 0x3b, 0x41, 0x83, 0x44, - 0xab, 0xc1, 0x66, 0xee, 0xf1, 0xb5, 0x7e, 0xc4, 0x5c, 0xca, 0x3b, 0x62, 0xb6, 0x23, 0x40, 0x7a, - 0x05, 0x22, 0x80, 0xe9, 0x0d, 0x18, 0xf6, 0x78, 0x55, 0x62, 0xda, 0x5e, 0xcc, 0xf3, 0x47, 0x75, - 0xb4, 0x51, 0x0b, 0xc8, 0xe1, 0x00, 0x2c, 0x59, 0x52, 0x13, 0xa4, 0x9b, 0x03, 0x2b, 0xdf, 0xca, - 0xb3, 0xff, 0xa2, 0x05, 0x93, 0x37, 0x33, 0xd7, 0x4e, 0x9f, 0x86, 0x21, 0x9e, 0xbc, 0x20, 0xeb, - 0x62, 0xa9, 0x33, 0x28, 0x16, 0xd8, 0x87, 0x6e, 0xe1, 0xff, 0x4a, 0x09, 0x2a, 0x2c, 0x14, 0xb6, - 0x45, 0xcd, 0x89, 0xa3, 0x57, 0x53, 0x6f, 0x18, 0x6a, 0x6a, 0x8e, 0x95, 0xa9, 0x1a, 0xd6, 0x4b, - 0x4b, 0x45, 0xb7, 0xd5, 0x75, 0xcc, 0x42, 0x06, 0x66, 0xca, 0x90, 0x5f, 0xd9, 0x9b, 0x30, 0x6f, - 0x6f, 0xca, 0xab, 0x9a, 0xec, 0xd0, 0x57, 0xd1, 0xbe, 0xef, 0x0e, 0x7d, 0x55, 0xcb, 0x7a, 0x08, - 0xa7, 0x9a, 0xd6, 0x78, 0x26, 0xbe, 0x3f, 0xc9, 0x02, 0x1c, 0x1d, 0xdf, 0xfb, 0x02, 0x51, 0xb7, - 0x9a, 0x67, 0x45, 0xc0, 0xa2, 0x80, 0xee, 0x33, 0x39, 0x23, 0xfe, 0xf1, 0x4b, 0xeb, 0x69, 0x11, - 0xfb, 0x2a, 0x4c, 0x66, 0x86, 0x0e, 0xbd, 0x04, 0x83, 0xad, 0x2d, 0x27, 0x26, 0x99, 0x38, 0x96, - 0xc1, 0x1a, 0x05, 0xee, 0xef, 0xce, 0x4e, 0xa8, 0x02, 0x0c, 0x82, 0x39, 0xb5, 0xfd, 0x95, 0x12, - 0x0c, 0xdc, 0x0c, 0xdd, 0xe3, 0x98, 0x6a, 0x57, 0x8d, 0xa9, 0xf6, 0x74, 0x7e, 0xca, 0x8b, 0x9e, - 0xb3, 0xac, 0x96, 0x99, 0x65, 0xe7, 0x0b, 0xf0, 0x3a, 0x78, 0x82, 0x35, 0x61, 0x94, 0xa5, 0xd4, - 0x10, 0x81, 0x3c, 0x2f, 0x18, 0x96, 0xd5, 0x6c, 0xc6, 0xb2, 0x9a, 0xd4, 0x48, 0x35, 0xfb, 0xea, - 0x19, 0x18, 0x16, 0x81, 0x23, 0xd9, 0xf0, 0x4e, 0x41, 0x8b, 0x25, 0xde, 0xfe, 0xa7, 0x65, 0x30, - 0x52, 0x78, 0xa0, 0xdf, 0xb1, 0x60, 0x2e, 0xe2, 0x57, 0x65, 0xdc, 0x6a, 0x3b, 0xf2, 0x82, 0xcd, - 0x7a, 0x63, 0x8b, 0xb8, 0x6d, 0xdf, 0x0b, 0x36, 0x57, 0x37, 0x83, 0x50, 0x81, 0x97, 0x1f, 0x90, - 0x46, 0x9b, 0xf9, 0x69, 0x0b, 0x67, 0x0e, 0x51, 0x87, 0xa6, 0x97, 0xf6, 0x76, 0x67, 0xe7, 0x70, - 0x5f, 0xb5, 0xe0, 0x3e, 0x5b, 0x85, 0xfe, 0xd0, 0x82, 0x79, 0x9e, 0xc4, 0xa2, 0x78, 0x4f, 0x0a, - 0x59, 0xa4, 0x35, 0xc9, 0x34, 0x65, 0xb7, 0x46, 0xa2, 0xe6, 0xe2, 0xcb, 0x62, 0x90, 0xe7, 0x6b, - 0xfd, 0xd5, 0x8a, 0xfb, 0x6d, 0xa6, 0xfd, 0x2f, 0xcb, 0x30, 0x4e, 0xc7, 0x33, 0xbd, 0xb8, 0xfe, - 0x92, 0x31, 0x4d, 0x9e, 0xc8, 0x4c, 0x93, 0x13, 0x06, 0xf1, 0xc3, 0xb9, 0xb3, 0x1e, 0xc3, 0x09, - 0xdf, 0x89, 0x93, 0xab, 0xc4, 0x89, 0x92, 0x75, 0xe2, 0xb0, 0xb3, 0xc9, 0x6c, 0xdc, 0x43, 0x81, - 0xe3, 0x4e, 0x15, 0x8c, 0x74, 0x3d, 0xcb, 0x0c, 0x77, 0xf2, 0x47, 0xdb, 0x80, 0xd8, 0x39, 0x68, - 0xe4, 0x04, 0x31, 0xef, 0x8b, 0x27, 0xfc, 0xba, 0xfd, 0xd5, 0x3a, 0x23, 0x6a, 0x45, 0xd7, 0x3b, - 0xb8, 0xe1, 0x2e, 0x35, 0x68, 0x27, 0xdd, 0x83, 0x45, 0x4f, 0xba, 0x87, 0x72, 0xe2, 0xaa, 0xbf, - 0x6a, 0xc1, 0x49, 0xfa, 0x59, 0xcc, 0x18, 0xdc, 0x18, 0x85, 0x30, 0x49, 0xa7, 0x9d, 0x4f, 0x12, - 0x09, 0x13, 0xeb, 0x2b, 0x47, 0xb3, 0x36, 0xf9, 0xa4, 0xea, 0xdb, 0x35, 0x93, 0x19, 0xce, 0x72, - 0xb7, 0xbf, 0x6d, 0x01, 0x8b, 0xb8, 0x3b, 0x86, 0xcd, 0xec, 0x8a, 0xb9, 0x99, 0xd9, 0xf9, 0x12, - 0xa3, 0xc7, 0x3e, 0xf6, 0x22, 0x4c, 0x51, 0x6c, 0x2d, 0x0a, 0x1f, 0xec, 0x48, 0x45, 0x3b, 0xdf, - 0xc1, 0xfb, 0xd5, 0x12, 0x5f, 0x36, 0xea, 0xce, 0x1f, 0xfa, 0x25, 0x0b, 0x46, 0x1a, 0x4e, 0xcb, - 0x69, 0xf0, 0x04, 0x48, 0x05, 0xbc, 0x33, 0x46, 0xf9, 0xb9, 0x25, 0x51, 0x96, 0x7b, 0x16, 0x3e, - 0x22, 0xbb, 0x2e, 0xc1, 0xb9, 0xde, 0x04, 0x55, 0xf9, 0xcc, 0x3d, 0x18, 0x37, 0x98, 0x1d, 0xa9, - 0x19, 0xfa, 0x4b, 0x16, 0x17, 0xfa, 0xca, 0x54, 0xb8, 0x0f, 0x27, 0x02, 0xed, 0x3f, 0x15, 0x67, - 0x52, 0x33, 0x9e, 0x2b, 0x2e, 0xd6, 0x99, 0x14, 0xd4, 0xa2, 0x0b, 0x33, 0x0c, 0x71, 0x67, 0x1d, - 0xf6, 0xdf, 0xb6, 0xe0, 0x11, 0x9d, 0x50, 0xbb, 0xa4, 0x99, 0xe7, 0x37, 0xae, 0xc2, 0x48, 0xd8, - 0x22, 0x91, 0x93, 0x9a, 0x45, 0xe7, 0xe5, 0xf8, 0xdf, 0x12, 0xf0, 0xfd, 0xdd, 0xd9, 0x53, 0x3a, - 0x77, 0x09, 0xc7, 0xaa, 0x24, 0xb2, 0x61, 0x88, 0x8d, 0x4b, 0x2c, 0xae, 0xd7, 0xb2, 0x84, 0x40, - 0xec, 0x50, 0x25, 0xc6, 0x02, 0x63, 0xff, 0x55, 0x8b, 0x4f, 0x37, 0xbd, 0xe9, 0xe8, 0x8b, 0x30, - 0xd5, 0xa4, 0x16, 0xd4, 0xf2, 0x83, 0x16, 0xdd, 0x48, 0xd9, 0x71, 0xb2, 0x55, 0x64, 0xfb, 0xe8, - 0xd1, 0xdd, 0xc5, 0x69, 0xd1, 0xfa, 0xa9, 0x1b, 0x19, 0xb6, 0xb8, 0xa3, 0x22, 0xfb, 0x3f, 0x89, - 0x35, 0xcb, 0x74, 0xb8, 0x67, 0x60, 0xb8, 0x15, 0xba, 0x4b, 0xab, 0x55, 0x2c, 0xc6, 0x4a, 0x09, - 0x9d, 0x1a, 0x07, 0x63, 0x89, 0x47, 0x97, 0x00, 0xc8, 0x83, 0x84, 0x44, 0x81, 0xe3, 0xab, 0x63, - 0x60, 0xa5, 0x2a, 0x2d, 0x2b, 0x0c, 0xd6, 0xa8, 0x68, 0x99, 0x56, 0x14, 0x6e, 0x7b, 0x2e, 0xbb, - 0x5d, 0x50, 0x36, 0xcb, 0xd4, 0x14, 0x06, 0x6b, 0x54, 0xd4, 0x6e, 0x6d, 0x07, 0x31, 0xdf, 0xc6, - 0x9c, 0x75, 0x91, 0xbf, 0x66, 0x24, 0xb5, 0x5b, 0x6f, 0xeb, 0x48, 0x6c, 0xd2, 0xda, 0xff, 0xbe, - 0x02, 0x90, 0x2a, 0x4a, 0xe8, 0x2b, 0x9d, 0x6b, 0xf4, 0xa3, 0x45, 0xb5, 0xac, 0x87, 0xb7, 0x40, - 0xd1, 0xd7, 0x2d, 0x18, 0x75, 0x7c, 0x3f, 0x6c, 0x38, 0x09, 0xeb, 0x51, 0xa9, 0xa8, 0xb4, 0x10, - 0x2d, 0x59, 0x48, 0xcb, 0xf2, 0xc6, 0xbc, 0x20, 0xcf, 0x08, 0x35, 0x4c, 0x6e, 0x7b, 0xf4, 0x26, - 0xa0, 0x8f, 0x48, 0x45, 0x9b, 0x7f, 0x94, 0x99, 0xac, 0xa2, 0x5d, 0x61, 0x32, 0x52, 0xd3, 0xb1, - 0xd1, 0x9b, 0x46, 0x8a, 0x96, 0x81, 0x22, 0xb7, 0x3a, 0x0d, 0xd5, 0x21, 0x2f, 0x3b, 0x0b, 0xfa, - 0xac, 0x1e, 0x05, 0x3d, 0x58, 0xe4, 0xda, 0xb4, 0xa6, 0xc1, 0xe6, 0x44, 0x40, 0x27, 0x30, 0xe9, - 0x9a, 0x9b, 0xa5, 0x88, 0xe4, 0xba, 0x98, 0x5f, 0x43, 0x66, 0x97, 0x4d, 0xb7, 0xc7, 0x0c, 0x02, - 0x67, 0xab, 0x40, 0x9f, 0xe5, 0x31, 0xea, 0xab, 0xc1, 0x46, 0x28, 0xa2, 0xb9, 0x2e, 0x14, 0xf8, - 0xe6, 0x3b, 0x71, 0x42, 0x9a, 0xb4, 0x4c, 0xba, 0x1f, 0xde, 0x14, 0x5c, 0xb0, 0xe2, 0x87, 0xd6, - 0x60, 0x88, 0x5d, 0xe2, 0x89, 0xa7, 0x47, 0x8a, 0x38, 0xcf, 0xcc, 0xbb, 0xab, 0xa9, 0x12, 0xc2, - 0xfe, 0xc6, 0x58, 0xf0, 0x42, 0x57, 0xe5, 0xed, 0xf5, 0x78, 0x35, 0xb8, 0x1d, 0x13, 0x76, 0x7b, - 0xbd, 0xb2, 0xf8, 0xa1, 0xf4, 0x3a, 0x3a, 0x87, 0x77, 0x4d, 0x52, 0x67, 0x94, 0xa4, 0xba, 0x88, - 0xf8, 0x2f, 0x73, 0xdf, 0x4d, 0x43, 0x91, 0x86, 0x9a, 0x99, 0xf2, 0xd2, 0xc1, 0xbe, 0x63, 0x32, - 0xc3, 0x59, 0xee, 0xc7, 0xba, 0x0b, 0xce, 0x04, 0x30, 0x95, 0x5d, 0x94, 0x47, 0xba, 0xeb, 0xfe, - 0x64, 0x00, 0x26, 0xcc, 0xc9, 0x81, 0xe6, 0xa1, 0x22, 0x98, 0xa8, 0x5c, 0x58, 0x6a, 0x0d, 0xdc, - 0x90, 0x08, 0x9c, 0xd2, 0xb0, 0xac, 0x60, 0xac, 0xb8, 0x16, 0xc7, 0x93, 0x66, 0x05, 0x53, 0x18, - 0xac, 0x51, 0x51, 0xe5, 0x75, 0x3d, 0x0c, 0x13, 0x25, 0xbc, 0xd5, 0xbc, 0x59, 0x64, 0x50, 0x2c, - 0xb0, 0x54, 0x68, 0xdf, 0xa3, 0x1f, 0xd3, 0x37, 0x1d, 0x81, 0x4a, 0x68, 0x5f, 0xd3, 0x91, 0xd8, - 0xa4, 0xa5, 0x9b, 0x50, 0x18, 0xb3, 0x89, 0x28, 0x54, 0xe4, 0x34, 0x2e, 0xaa, 0xce, 0x2f, 0xb6, - 0x49, 0x3c, 0xfa, 0x0c, 0x3c, 0xa2, 0xee, 0xa1, 0x61, 0xee, 0x58, 0x95, 0x35, 0x0e, 0x19, 0x56, - 0xee, 0x23, 0x4b, 0xdd, 0xc9, 0x70, 0xaf, 0xf2, 0xe8, 0x55, 0x98, 0x10, 0xea, 0xad, 0xe4, 0x38, - 0x6c, 0x1e, 0x9a, 0x5f, 0x33, 0xb0, 0x38, 0x43, 0x8d, 0xaa, 0x30, 0x45, 0x21, 0x4c, 0xaf, 0x94, - 0x1c, 0xf8, 0x7d, 0x3a, 0xb5, 0x3b, 0x5f, 0xcb, 0xe0, 0x71, 0x47, 0x09, 0xb4, 0x00, 0x93, 0x5c, - 0xbf, 0xa0, 0xb6, 0x1c, 0xfb, 0x0e, 0x22, 0x04, 0x53, 0x2d, 0x84, 0x5b, 0x26, 0x1a, 0x67, 0xe9, - 0xd1, 0x65, 0x18, 0x73, 0xa2, 0xc6, 0x96, 0x97, 0x90, 0x46, 0xd2, 0x8e, 0x78, 0x6e, 0x08, 0x2d, - 0xea, 0x60, 0x41, 0xc3, 0x61, 0x83, 0xd2, 0xfe, 0x02, 0x9c, 0xec, 0x12, 0xef, 0x4d, 0x27, 0x8e, - 0xd3, 0xf2, 0x64, 0x9f, 0x32, 0x11, 0x4e, 0x0b, 0xb5, 0x55, 0xd9, 0x1b, 0x8d, 0x8a, 0xce, 0x4e, - 0xe6, 0x51, 0xd6, 0x52, 0x55, 0xaa, 0xd9, 0xb9, 0x22, 0x11, 0x38, 0xa5, 0xb1, 0xff, 0xac, 0x02, - 0x9a, 0xc3, 0xa5, 0x40, 0x54, 0xcb, 0x65, 0x18, 0x93, 0xd9, 0x57, 0xb5, 0xac, 0x87, 0xaa, 0x9b, - 0x57, 0x34, 0x1c, 0x36, 0x28, 0x69, 0xdb, 0x02, 0xe9, 0x46, 0xca, 0xc6, 0x53, 0x29, 0xff, 0x12, - 0x4e, 0x69, 0xd0, 0x05, 0x18, 0x89, 0x89, 0xbf, 0x71, 0xdd, 0x0b, 0xee, 0x89, 0x89, 0xad, 0x24, - 0x73, 0x5d, 0xc0, 0xb1, 0xa2, 0x40, 0x8b, 0x50, 0x6e, 0x7b, 0xae, 0x98, 0xca, 0x52, 0x6d, 0x28, - 0xdf, 0x5e, 0xad, 0xee, 0xef, 0xce, 0x3e, 0xd1, 0x2b, 0x15, 0x2d, 0x35, 0xa9, 0xe3, 0x39, 0xba, - 0xfc, 0x68, 0xe1, 0x6e, 0xae, 0xf5, 0xa1, 0x3e, 0x5d, 0xeb, 0x97, 0x00, 0x44, 0xaf, 0xe5, 0x5c, - 0x2e, 0xa7, 0x5f, 0xed, 0x8a, 0xc2, 0x60, 0x8d, 0x8a, 0x1a, 0xe6, 0x8d, 0x88, 0x38, 0xd2, 0x76, - 0xe5, 0x71, 0xc8, 0x23, 0x87, 0x37, 0xcc, 0x97, 0xb2, 0xcc, 0x70, 0x27, 0x7f, 0x14, 0xc2, 0x09, - 0x97, 0x2e, 0x24, 0xa3, 0xd2, 0x4a, 0xff, 0xc1, 0xcf, 0xb4, 0xc2, 0x6a, 0x96, 0x11, 0xee, 0xe4, - 0x8d, 0x3e, 0x0f, 0x33, 0x12, 0xd8, 0x79, 0xd3, 0x94, 0x2d, 0x97, 0xf2, 0xe2, 0xd9, 0xbd, 0xdd, - 0xd9, 0x99, 0x6a, 0x4f, 0x2a, 0x7c, 0x00, 0x07, 0xf4, 0x06, 0x0c, 0xb1, 0xa3, 0x98, 0x78, 0x7a, - 0x94, 0xed, 0x78, 0x2f, 0x16, 0x09, 0xa1, 0xa7, 0xb3, 0x7e, 0x8e, 0x1d, 0xe8, 0x88, 0xe0, 0xd0, - 0xf4, 0x7c, 0x8b, 0x01, 0xb1, 0xe0, 0x89, 0x5a, 0x30, 0xea, 0x04, 0x41, 0x98, 0x38, 0x5c, 0x11, - 0x1b, 0x2b, 0xa2, 0x4b, 0x6a, 0x55, 0x2c, 0xa4, 0x65, 0x79, 0x3d, 0x2a, 0xde, 0x4c, 0xc3, 0x60, - 0xbd, 0x0a, 0x74, 0x1f, 0x26, 0xc3, 0xfb, 0x54, 0x60, 0xca, 0xd3, 0x88, 0x78, 0x7a, 0xdc, 0xec, - 0x58, 0x8e, 0x6f, 0xd5, 0x28, 0xac, 0x49, 0x32, 0x93, 0x29, 0xce, 0xd6, 0x82, 0xe6, 0x0c, 0x0f, - 0xf3, 0x44, 0x1a, 0x02, 0x9d, 0x7a, 0x98, 0x75, 0x87, 0x32, 0xbb, 0xcd, 0xcc, 0xc3, 0x1e, 0x99, - 0x44, 0x98, 0xcc, 0xdc, 0x66, 0x4e, 0x51, 0x58, 0xa7, 0x9b, 0xf9, 0x18, 0x8c, 0x6a, 0x03, 0xdf, - 0x4f, 0xac, 0xed, 0xcc, 0xab, 0x30, 0x95, 0x1d, 0xd0, 0xbe, 0x62, 0x75, 0xff, 0x47, 0x09, 0x26, - 0xbb, 0x1c, 0xf5, 0xdc, 0xf3, 0x58, 0xbc, 0xb8, 0x21, 0xfa, 0xae, 0x79, 0x81, 0x8b, 0x19, 0xc6, - 0x14, 0x60, 0xa5, 0x02, 0x02, 0x4c, 0x4a, 0xd3, 0x72, 0x4f, 0x69, 0x2a, 0x84, 0xd6, 0xc0, 0x7b, - 0x11, 0x5a, 0xe6, 0x3e, 0x31, 0x58, 0x68, 0x9f, 0x78, 0x08, 0x82, 0xce, 0xd8, 0x6a, 0x86, 0x0b, - 0x6c, 0x35, 0xdf, 0x2a, 0xc1, 0x54, 0x1a, 0x97, 0x2c, 0x52, 0x32, 0x1f, 0xfd, 0xc9, 0xc1, 0x9a, - 0x71, 0x72, 0x90, 0x97, 0x71, 0x39, 0xd3, 0xbe, 0x9e, 0xa7, 0x08, 0x6f, 0x64, 0x4e, 0x11, 0x5e, - 0xec, 0x93, 0xef, 0xc1, 0x27, 0x0a, 0xdf, 0x2b, 0xc1, 0xe9, 0x6c, 0x91, 0x25, 0xdf, 0xf1, 0x9a, - 0xc7, 0x30, 0x5e, 0x9f, 0x31, 0xc6, 0xeb, 0xe5, 0xfe, 0xfa, 0xc5, 0x1a, 0xd9, 0x73, 0xd0, 0x9c, - 0xcc, 0xa0, 0x7d, 0xec, 0x30, 0xcc, 0x0f, 0x1e, 0xb9, 0xdf, 0xb7, 0xe0, 0xd1, 0xae, 0xe5, 0x8e, - 0xc1, 0x57, 0xfa, 0xba, 0xe9, 0x2b, 0x7d, 0xe1, 0x10, 0xbd, 0xeb, 0xe1, 0x3c, 0xfd, 0x6f, 0xa5, - 0x1e, 0xbd, 0x62, 0xde, 0xa4, 0x5b, 0x30, 0xea, 0x34, 0x1a, 0x24, 0x8e, 0x6f, 0x84, 0xae, 0xca, - 0x8b, 0xf4, 0x3c, 0xdb, 0x5b, 0x52, 0xf0, 0xfe, 0xee, 0xec, 0x4c, 0x96, 0x45, 0x8a, 0xc6, 0x3a, - 0x07, 0x33, 0x63, 0x5b, 0xe9, 0x88, 0x32, 0xb6, 0x5d, 0x02, 0xd8, 0x56, 0x56, 0x6c, 0xd6, 0x49, - 0xa5, 0xd9, 0xb7, 0x1a, 0x15, 0xfa, 0xff, 0x99, 0x46, 0xc8, 0xe3, 0x2a, 0x06, 0xcc, 0x2b, 0x8e, - 0x39, 0xdf, 0x4f, 0x8f, 0xd1, 0xe0, 0x37, 0x29, 0x95, 0x43, 0x4f, 0xb1, 0xb4, 0xbf, 0x5b, 0x86, - 0x0f, 0x1e, 0x30, 0xe9, 0xd0, 0x82, 0x79, 0x4c, 0xfa, 0x5c, 0xd6, 0x7b, 0x33, 0xd3, 0xb5, 0xb0, - 0xe1, 0xce, 0xc9, 0x7c, 0xab, 0xd2, 0x7b, 0xfe, 0x56, 0xdf, 0xd0, 0x7d, 0x6d, 0x3c, 0x50, 0xf2, - 0xca, 0xa1, 0x97, 0xd5, 0xcf, 0xaa, 0x77, 0xfc, 0xcb, 0x16, 0x3c, 0xd1, 0xb5, 0x5b, 0x46, 0x58, - 0xc6, 0x3c, 0x54, 0x1a, 0x14, 0xa8, 0x5d, 0x7e, 0x49, 0x6f, 0x9d, 0x49, 0x04, 0x4e, 0x69, 0x8c, - 0xe8, 0x8b, 0x52, 0x6e, 0xf4, 0xc5, 0xef, 0x5a, 0x70, 0x2a, 0xdb, 0x88, 0x63, 0x90, 0x3a, 0x75, - 0x53, 0xea, 0xcc, 0xf5, 0xf7, 0xf1, 0x7b, 0x08, 0x9c, 0x5f, 0x1d, 0x87, 0x33, 0x1d, 0x7b, 0x16, - 0x1f, 0xc5, 0x5f, 0xb0, 0xe0, 0xc4, 0x26, 0xd3, 0xbd, 0xb5, 0x1b, 0x46, 0xa2, 0x5f, 0x39, 0xd7, - 0xb2, 0x0e, 0xbc, 0x98, 0xc4, 0x2d, 0x89, 0x0e, 0x12, 0xdc, 0x59, 0x19, 0xfa, 0x9a, 0x05, 0xa7, - 0x9c, 0xfb, 0x71, 0xc7, 0x73, 0x1f, 0x62, 0x22, 0xbd, 0x9a, 0xe3, 0xea, 0xca, 0x79, 0x28, 0x64, - 0x71, 0x7a, 0x6f, 0x77, 0xf6, 0x54, 0x37, 0x2a, 0xdc, 0xb5, 0x56, 0xfa, 0x7d, 0xb7, 0xc4, 0xfd, - 0x85, 0x62, 0x77, 0xe5, 0xba, 0xdd, 0x76, 0xe0, 0x42, 0x49, 0x62, 0xb0, 0xe2, 0x88, 0xde, 0x82, - 0xca, 0xa6, 0xbc, 0x54, 0x94, 0x15, 0x7a, 0x3d, 0x86, 0xb9, 0xdb, 0x1d, 0x24, 0x1e, 0x2c, 0xaf, - 0x50, 0x38, 0x65, 0x8a, 0xae, 0x42, 0x39, 0xd8, 0x88, 0xc5, 0xf5, 0xdd, 0xbc, 0xa0, 0x1b, 0x33, - 0xd4, 0x89, 0xdf, 0x78, 0xbc, 0xb9, 0x52, 0xc7, 0x94, 0x05, 0xe5, 0x14, 0xad, 0xbb, 0xc2, 0xc7, - 0x9b, 0xc3, 0x09, 0x2f, 0x56, 0x3b, 0x39, 0xe1, 0xc5, 0x2a, 0xa6, 0x2c, 0x50, 0x0d, 0x06, 0xd9, - 0xed, 0x08, 0xe1, 0xc0, 0xcd, 0xb9, 0xe3, 0xdd, 0x71, 0x07, 0x84, 0xa7, 0x05, 0x64, 0x60, 0xcc, - 0x19, 0xa1, 0x35, 0x18, 0x6a, 0xb0, 0xcc, 0xf6, 0xc2, 0xb2, 0xce, 0xcb, 0x7e, 0xd0, 0x91, 0x05, - 0x9f, 0x1f, 0x34, 0x71, 0x38, 0x16, 0xbc, 0x18, 0x57, 0xd2, 0xda, 0xda, 0x88, 0x85, 0xe9, 0x9c, - 0xc7, 0xb5, 0xe3, 0x8d, 0x02, 0xc1, 0x95, 0xc1, 0xb1, 0xe0, 0x85, 0xaa, 0x50, 0xda, 0x68, 0x88, - 0xec, 0xa2, 0x39, 0x8e, 0x5b, 0xf3, 0xfa, 0xea, 0xe2, 0xd0, 0xde, 0xee, 0x6c, 0x69, 0x65, 0x09, - 0x97, 0x36, 0x1a, 0xe8, 0x75, 0x18, 0xde, 0xe0, 0x17, 0x12, 0x45, 0x26, 0xd1, 0x8b, 0x79, 0xb7, - 0x26, 0x3b, 0x6e, 0x2f, 0xf2, 0x0b, 0x11, 0x02, 0x81, 0x25, 0x3b, 0x96, 0x64, 0x4d, 0x5d, 0xb1, - 0x14, 0xa9, 0x44, 0xe7, 0xfa, 0xbb, 0x92, 0x29, 0x2c, 0x4a, 0x05, 0xc5, 0x1a, 0x47, 0x3a, 0xe7, - 0x1d, 0xf9, 0x48, 0x07, 0x4b, 0x23, 0x9a, 0x3b, 0xe7, 0xbb, 0xbe, 0xe9, 0xc1, 0xe7, 0xbc, 0x42, - 0xe1, 0x94, 0x29, 0x6a, 0xc3, 0xf8, 0x76, 0xdc, 0xda, 0x22, 0x72, 0xe9, 0xb3, 0xdc, 0xa2, 0xa3, - 0x97, 0x3e, 0x91, 0x93, 0x30, 0x56, 0x14, 0xf1, 0xa2, 0xa4, 0xed, 0xf8, 0x1d, 0x12, 0x8c, 0x65, - 0xb5, 0xba, 0xa3, 0xb3, 0xc5, 0x66, 0x2d, 0xf4, 0x93, 0xbc, 0xd3, 0x0e, 0xd7, 0x77, 0x12, 0x22, - 0x72, 0x8f, 0xe6, 0x7c, 0x92, 0xd7, 0x38, 0x71, 0xe7, 0x27, 0x11, 0x08, 0x2c, 0xd9, 0xa9, 0x21, - 0x63, 0xd2, 0x78, 0xaa, 0xf0, 0x90, 0x75, 0xf4, 0x21, 0x1d, 0x32, 0x26, 0x7d, 0x53, 0xa6, 0x4c, - 0xea, 0xb6, 0xb6, 0xc2, 0x24, 0x0c, 0x32, 0xb2, 0xff, 0x44, 0x11, 0xa9, 0x5b, 0xeb, 0x52, 0xb2, - 0x53, 0xea, 0x76, 0xa3, 0xc2, 0x5d, 0x6b, 0xb5, 0xff, 0xcb, 0x60, 0xe7, 0x76, 0xcb, 0xd4, 0xe1, - 0xbf, 0xd2, 0x79, 0xfa, 0xf8, 0xa9, 0xfe, 0xad, 0xbe, 0x87, 0x78, 0x0e, 0xf9, 0x35, 0x0b, 0xce, - 0xb4, 0xba, 0x6e, 0xa6, 0x62, 0xc3, 0xea, 0xd7, 0x78, 0xe4, 0x03, 0xa6, 0x12, 0xeb, 0x76, 0xc7, - 0xe3, 0x1e, 0x75, 0x66, 0x55, 0xd0, 0xf2, 0x7b, 0x56, 0x41, 0xef, 0xc2, 0x08, 0xd3, 0x99, 0xd2, - 0x94, 0x1c, 0x7d, 0x66, 0xaf, 0x60, 0x5b, 0xdf, 0x92, 0x60, 0x81, 0x15, 0x33, 0x3a, 0x70, 0x8f, - 0x67, 0x3b, 0x81, 0x09, 0x43, 0x8b, 0xe4, 0xb3, 0xdc, 0xdb, 0xb1, 0x22, 0x46, 0xe2, 0xf1, 0xda, - 0x41, 0xc4, 0xfb, 0x79, 0x04, 0xf8, 0xe0, 0xca, 0x8e, 0x57, 0xa5, 0xfd, 0x7b, 0x56, 0x17, 0x0d, - 0x8c, 0x9b, 0x21, 0x9f, 0x30, 0xcd, 0x90, 0xa7, 0xb3, 0x66, 0x48, 0x87, 0xeb, 0xc0, 0xb0, 0x40, - 0x8a, 0x27, 0x92, 0x2c, 0x9a, 0x2d, 0xc4, 0xf6, 0xe1, 0x5c, 0xde, 0xf2, 0x66, 0xb1, 0x3e, 0xae, - 0x3a, 0x32, 0x4b, 0x63, 0x7d, 0xdc, 0xd5, 0x2a, 0x66, 0x98, 0xa2, 0x17, 0xce, 0xed, 0x5f, 0x2c, - 0x41, 0xb9, 0x16, 0xba, 0xc7, 0xe0, 0x0a, 0xb9, 0x62, 0xb8, 0x42, 0x9e, 0xca, 0x7d, 0xa4, 0xac, - 0xa7, 0xe3, 0xe3, 0x56, 0xc6, 0xf1, 0xf1, 0xe1, 0x7c, 0x56, 0x07, 0xbb, 0x39, 0xbe, 0x5f, 0x06, - 0xfd, 0x99, 0x35, 0xf4, 0x6f, 0x0f, 0x13, 0x02, 0x5a, 0x2e, 0xf6, 0xf2, 0x9a, 0xa8, 0x83, 0x85, - 0x0a, 0xc9, 0x8b, 0x63, 0x3f, 0xb3, 0x91, 0xa0, 0x77, 0x89, 0xb7, 0xb9, 0x95, 0x10, 0x37, 0xdb, - 0xb1, 0xe3, 0x8b, 0x04, 0xfd, 0x53, 0x0b, 0x26, 0x33, 0xb5, 0x23, 0xbf, 0xdb, 0x8d, 0x93, 0x43, - 0x3a, 0x37, 0x4e, 0xe4, 0x5e, 0x51, 0x99, 0x03, 0x50, 0x3e, 0x6a, 0xe9, 0x82, 0x60, 0xda, 0x98, - 0x72, 0x62, 0xc7, 0x58, 0xa3, 0x40, 0x2f, 0xc1, 0x68, 0x12, 0xb6, 0x42, 0x3f, 0xdc, 0xdc, 0xb9, - 0x46, 0x64, 0x2a, 0x04, 0xe5, 0xdf, 0x5f, 0x4b, 0x51, 0x58, 0xa7, 0xb3, 0x7f, 0x50, 0x86, 0xec, - 0x23, 0x7d, 0xff, 0x6f, 0x9e, 0xfe, 0xec, 0xcc, 0xd3, 0x3f, 0xb0, 0x60, 0x8a, 0xd6, 0xce, 0x02, - 0x3d, 0x64, 0xc4, 0xa6, 0xca, 0x6a, 0x6f, 0x1d, 0x90, 0xd5, 0xfe, 0x69, 0x2a, 0xed, 0xdc, 0xb0, - 0x9d, 0x08, 0xa7, 0x89, 0x26, 0xc4, 0x28, 0x14, 0x0b, 0xac, 0xa0, 0x23, 0x51, 0x24, 0xae, 0xb6, - 0xe8, 0x74, 0x24, 0x8a, 0xb0, 0xc0, 0xca, 0xa4, 0xf7, 0x03, 0x3d, 0x92, 0xde, 0xb3, 0x64, 0x42, - 0x22, 0xb8, 0x40, 0x28, 0x04, 0x5a, 0x32, 0x21, 0x19, 0x75, 0x90, 0xd2, 0xd8, 0xdf, 0x29, 0xc3, - 0x58, 0x2d, 0x74, 0xd3, 0x50, 0xec, 0x17, 0x8d, 0x50, 0xec, 0x73, 0x99, 0x50, 0xec, 0x29, 0x9d, - 0xf6, 0xe1, 0x44, 0x62, 0x8b, 0xa4, 0x53, 0xec, 0x59, 0x86, 0x43, 0x46, 0x61, 0x1b, 0x49, 0xa7, - 0x14, 0x23, 0x6c, 0xf2, 0xfd, 0x79, 0x8a, 0xbe, 0xfe, 0x5f, 0x16, 0x4c, 0xd4, 0x42, 0x97, 0x4e, - 0xd0, 0x9f, 0xa7, 0xd9, 0xa8, 0xa7, 0xaa, 0x1a, 0x3a, 0x20, 0x55, 0xd5, 0x3f, 0xb6, 0x60, 0xb8, - 0x16, 0xba, 0xc7, 0xe0, 0x50, 0x5c, 0x31, 0x1d, 0x8a, 0x4f, 0xe4, 0x4a, 0xde, 0x1e, 0x3e, 0xc4, - 0xef, 0x96, 0x61, 0x9c, 0xb6, 0x38, 0xdc, 0x94, 0xdf, 0xcb, 0x18, 0x1b, 0xab, 0xc0, 0xd8, 0x50, - 0x95, 0x30, 0xf4, 0xfd, 0xf0, 0x7e, 0xf6, 0xdb, 0xad, 0x30, 0x28, 0x16, 0x58, 0x74, 0x01, 0x46, - 0x5a, 0x11, 0xd9, 0xf6, 0xc2, 0x76, 0x9c, 0xbd, 0x26, 0x57, 0x13, 0x70, 0xac, 0x28, 0xd0, 0x8b, - 0x30, 0x16, 0x7b, 0x41, 0x83, 0xc8, 0xd0, 0x83, 0x01, 0x16, 0x7a, 0xc0, 0xb3, 0x02, 0x6a, 0x70, - 0x6c, 0x50, 0xa1, 0xbb, 0x50, 0x61, 0xff, 0xd9, 0x0a, 0xea, 0x3f, 0x6b, 0x3d, 0x4f, 0x85, 0x25, - 0x19, 0xe0, 0x94, 0x17, 0xba, 0x04, 0x90, 0xc8, 0x20, 0x89, 0x58, 0x24, 0xf4, 0x50, 0x7a, 0xa9, - 0x0a, 0x9f, 0x88, 0xb1, 0x46, 0x85, 0x9e, 0x83, 0x4a, 0xe2, 0x78, 0xfe, 0x75, 0x2f, 0x20, 0xb1, - 0x08, 0x32, 0x11, 0x19, 0x7e, 0x05, 0x10, 0xa7, 0x78, 0xba, 0xdf, 0xb3, 0x4b, 0xba, 0xfc, 0x45, - 0x8c, 0x11, 0x46, 0xcd, 0xf6, 0xfb, 0xeb, 0x0a, 0x8a, 0x35, 0x0a, 0xfb, 0x32, 0x9c, 0xae, 0x85, - 0x6e, 0x2d, 0x8c, 0x92, 0x95, 0x30, 0xba, 0xef, 0x44, 0xae, 0xfc, 0x7e, 0xb3, 0x32, 0xb1, 0x2c, - 0xdd, 0x93, 0x07, 0xb9, 0x8f, 0xcd, 0x48, 0x14, 0xfb, 0x02, 0xdb, 0xf1, 0xfb, 0x8c, 0xf1, 0xff, - 0x71, 0x09, 0x50, 0x8d, 0x85, 0x71, 0x18, 0x0f, 0xa8, 0x6c, 0xc1, 0x44, 0x4c, 0xae, 0x7b, 0x41, - 0xfb, 0x81, 0x60, 0x55, 0xec, 0x52, 0x45, 0x7d, 0x59, 0x2f, 0xc3, 0x6f, 0xb4, 0x9a, 0x30, 0x9c, - 0xe1, 0x4b, 0x07, 0x33, 0x6a, 0x07, 0x0b, 0xf1, 0xed, 0x98, 0x44, 0xe2, 0xc1, 0x10, 0x36, 0x98, - 0x58, 0x02, 0x71, 0x8a, 0xa7, 0x93, 0x87, 0xfd, 0xb9, 0x19, 0x06, 0x38, 0x0c, 0x13, 0x39, 0xdd, - 0x58, 0x02, 0x79, 0x0d, 0x8e, 0x0d, 0x2a, 0xb4, 0x02, 0x28, 0x6e, 0xb7, 0x5a, 0x3e, 0x3b, 0x19, - 0x73, 0xfc, 0x2b, 0x51, 0xd8, 0x6e, 0xf1, 0x68, 0x5e, 0x91, 0x7b, 0xbd, 0xde, 0x81, 0xc5, 0x5d, - 0x4a, 0x50, 0x61, 0xb1, 0x11, 0xb3, 0xdf, 0xe2, 0xc6, 0x2e, 0xf7, 0xcf, 0xd5, 0x19, 0x08, 0x4b, - 0x9c, 0xfd, 0x25, 0xb6, 0xc1, 0xb1, 0x97, 0x1c, 0x92, 0x76, 0x44, 0x50, 0x13, 0xc6, 0x5b, 0x6c, - 0x13, 0x4b, 0xa2, 0xd0, 0xf7, 0x89, 0xd4, 0x2f, 0x0f, 0x17, 0x48, 0xc2, 0x73, 0xb7, 0xeb, 0xec, - 0xb0, 0xc9, 0xdd, 0xfe, 0xb5, 0x71, 0x26, 0xab, 0xc4, 0xe1, 0xe4, 0xb0, 0x08, 0x19, 0x15, 0x9a, - 0xdc, 0x87, 0x8a, 0xbc, 0xc9, 0x94, 0xee, 0x03, 0x22, 0x00, 0x15, 0x4b, 0x2e, 0xe8, 0x73, 0x2c, - 0x20, 0x9a, 0x0b, 0x88, 0xe2, 0x2f, 0xcd, 0x71, 0x7a, 0x23, 0x18, 0x5a, 0xb0, 0xc0, 0x1a, 0x3b, - 0x74, 0x1d, 0xc6, 0x45, 0xe2, 0x7f, 0xe1, 0x60, 0x28, 0x1b, 0x26, 0xf6, 0x38, 0xd6, 0x91, 0xfb, - 0x59, 0x00, 0x36, 0x0b, 0xa3, 0x4d, 0x78, 0x5c, 0x7b, 0xd8, 0xa6, 0x4b, 0xd0, 0x13, 0x97, 0x3c, - 0x4f, 0xec, 0xed, 0xce, 0x3e, 0xbe, 0x76, 0x10, 0x21, 0x3e, 0x98, 0x0f, 0xba, 0x05, 0xa7, 0x9d, - 0x46, 0xe2, 0x6d, 0x93, 0x2a, 0x71, 0x5c, 0xdf, 0x0b, 0x88, 0x79, 0xad, 0xfb, 0xd1, 0xbd, 0xdd, - 0xd9, 0xd3, 0x0b, 0xdd, 0x08, 0x70, 0xf7, 0x72, 0xe8, 0x13, 0x50, 0x71, 0x83, 0x58, 0x8c, 0xc1, - 0x90, 0xf1, 0x8e, 0x53, 0xa5, 0x7a, 0xb3, 0xae, 0xfa, 0x9f, 0xfe, 0xc1, 0x69, 0x01, 0xf4, 0x0e, - 0x7f, 0xa7, 0x5c, 0x59, 0x33, 0xfc, 0xfd, 0xb0, 0x97, 0x0b, 0xd9, 0xcf, 0xc6, 0x65, 0x0b, 0xee, - 0x7b, 0x53, 0xc1, 0x85, 0xc6, 0x3d, 0x0c, 0xa3, 0x0a, 0xf4, 0x69, 0x40, 0x31, 0x89, 0xb6, 0xbd, - 0x06, 0x59, 0x68, 0xb0, 0x54, 0x9a, 0xec, 0x90, 0x6f, 0xc4, 0x88, 0xb2, 0x47, 0xf5, 0x0e, 0x0a, - 0xdc, 0xa5, 0x14, 0xba, 0x4a, 0x25, 0x8f, 0x0e, 0x15, 0xb1, 0xa0, 0x52, 0x31, 0x9c, 0xae, 0x92, - 0x56, 0x44, 0x1a, 0x4e, 0x42, 0x5c, 0x93, 0x23, 0xce, 0x94, 0xa3, 0xfb, 0x92, 0xca, 0x96, 0x0e, - 0x66, 0x04, 0x63, 0x67, 0xc6, 0x74, 0x6a, 0x67, 0x6d, 0x85, 0x71, 0x72, 0x93, 0x24, 0xf7, 0xc3, - 0xe8, 0x1e, 0xf3, 0xd9, 0x8f, 0x68, 0x79, 0xc9, 0x52, 0x14, 0xd6, 0xe9, 0xa8, 0x0e, 0xc5, 0x0e, - 0x8b, 0x56, 0xab, 0xcc, 0x13, 0x3f, 0x92, 0xae, 0x9d, 0xab, 0x1c, 0x8c, 0x25, 0x5e, 0x92, 0xae, - 0xd6, 0x96, 0x98, 0x57, 0x3d, 0x43, 0xba, 0x5a, 0x5b, 0xc2, 0x12, 0x8f, 0xc2, 0xce, 0xd7, 0xb2, - 0x26, 0x8a, 0x9c, 0x70, 0x74, 0x4a, 0xf2, 0x82, 0x0f, 0x66, 0x3d, 0x80, 0x29, 0xf5, 0x62, 0x17, - 0x4f, 0x19, 0x19, 0x4f, 0x4f, 0x16, 0x79, 0x25, 0xbd, 0x6b, 0xe6, 0x49, 0x15, 0xfc, 0xbb, 0x9a, - 0xe1, 0x89, 0x3b, 0x6a, 0x31, 0xd2, 0x13, 0x4c, 0xe5, 0x66, 0xc0, 0x9f, 0x87, 0x4a, 0xdc, 0x5e, - 0x77, 0xc3, 0xa6, 0xe3, 0x05, 0xcc, 0xf5, 0xad, 0xbf, 0xf9, 0x2d, 0x11, 0x38, 0xa5, 0x41, 0x35, - 0x18, 0x71, 0xe4, 0x73, 0xf7, 0xa8, 0xc8, 0xf5, 0x65, 0xf5, 0xce, 0x3d, 0xf3, 0x8b, 0xaa, 0x07, - 0xee, 0x15, 0x17, 0xf4, 0x0a, 0x8c, 0x8b, 0xdb, 0x37, 0x24, 0x62, 0xad, 0x3e, 0x69, 0x86, 0x7d, - 0xd7, 0x25, 0x92, 0x4d, 0x30, 0x93, 0x16, 0x6d, 0xc2, 0x04, 0xe5, 0x92, 0x0a, 0xc0, 0xe9, 0x53, - 0xfd, 0xc9, 0x50, 0x2d, 0xd7, 0xb0, 0xce, 0x06, 0x67, 0xd8, 0x22, 0x17, 0x1e, 0x73, 0xda, 0x49, - 0xd8, 0xa4, 0x2b, 0xc1, 0x5c, 0x27, 0x6b, 0xe1, 0x3d, 0x12, 0x4c, 0x9f, 0x66, 0x33, 0xf0, 0xdc, - 0xde, 0xee, 0xec, 0x63, 0x0b, 0x07, 0xd0, 0xe1, 0x03, 0xb9, 0xcc, 0x7c, 0x12, 0x4e, 0x74, 0x48, - 0x8c, 0xbe, 0x62, 0x01, 0xff, 0xdd, 0x20, 0x54, 0x94, 0xc3, 0x0d, 0xcd, 0x9b, 0xbe, 0xd5, 0x47, - 0xb3, 0xbe, 0xd5, 0x11, 0xaa, 0xdf, 0xe8, 0xee, 0xd4, 0xcf, 0x77, 0x79, 0x42, 0xf9, 0xd9, 0xdc, - 0x25, 0x52, 0xfc, 0x7a, 0x4e, 0x1f, 0x0f, 0x4d, 0xa7, 0x46, 0xd7, 0xc0, 0x81, 0x46, 0x57, 0xc1, - 0x67, 0xc1, 0xa8, 0x79, 0xd5, 0x0a, 0xdd, 0xd5, 0x5a, 0xf6, 0xd5, 0x9b, 0x1a, 0x05, 0x62, 0x8e, - 0x63, 0x6a, 0x31, 0xdd, 0xf2, 0x98, 0x5a, 0x3c, 0x7c, 0x48, 0xb5, 0x58, 0x32, 0xc0, 0x29, 0x2f, - 0xb4, 0x0d, 0x27, 0x1a, 0xe6, 0x23, 0x46, 0xea, 0xd2, 0xcd, 0xf3, 0x7d, 0x3c, 0x22, 0xd4, 0xd6, - 0x5e, 0x4f, 0x58, 0xca, 0xf2, 0xc3, 0x9d, 0x55, 0xa0, 0x57, 0x60, 0xe4, 0x9d, 0x30, 0x5e, 0xf2, - 0x9d, 0x38, 0x16, 0x72, 0x5f, 0x5e, 0x6e, 0x18, 0x79, 0xed, 0x56, 0x9d, 0xc1, 0xf7, 0x77, 0x67, - 0x47, 0x6b, 0xa1, 0x2b, 0xff, 0x62, 0x55, 0x00, 0x7d, 0xd9, 0x82, 0xd3, 0xc6, 0x32, 0x50, 0x2d, - 0x87, 0xc3, 0xb4, 0xfc, 0x71, 0x51, 0xf3, 0xe9, 0xd5, 0x6e, 0x3c, 0x71, 0xf7, 0xaa, 0xec, 0xdf, - 0xe6, 0x1e, 0x46, 0xe1, 0x73, 0x20, 0x71, 0xdb, 0x3f, 0x8e, 0x4c, 0xe6, 0xb7, 0x0c, 0x77, 0xc8, - 0x43, 0xf0, 0x71, 0xff, 0x1b, 0x8b, 0xf9, 0xb8, 0xd7, 0x48, 0xb3, 0xe5, 0x3b, 0xc9, 0x71, 0x84, - 0x8a, 0x7e, 0x0e, 0x46, 0x12, 0x51, 0x5b, 0xb1, 0x34, 0xec, 0x5a, 0xf3, 0x98, 0xef, 0x5f, 0xed, - 0x1b, 0x12, 0x8a, 0x15, 0x43, 0xfb, 0x5f, 0xf0, 0xaf, 0x22, 0x31, 0xc7, 0x60, 0xc8, 0xdf, 0x34, - 0x0d, 0xf9, 0x67, 0x0a, 0xf7, 0xa5, 0x87, 0x41, 0xff, 0x03, 0xb3, 0x07, 0x4c, 0xbd, 0xff, 0xd9, - 0x39, 0x84, 0xb1, 0x6f, 0x81, 0xf9, 0xe2, 0x14, 0x7a, 0x95, 0x07, 0x5f, 0x73, 0x49, 0x7f, 0xa1, - 0xef, 0xc0, 0x6b, 0xfb, 0xd7, 0x4b, 0x70, 0x8a, 0xbb, 0x61, 0x17, 0xb6, 0x43, 0xcf, 0xad, 0x85, - 0xae, 0x08, 0x45, 0x77, 0x61, 0xac, 0xa5, 0x99, 0x5f, 0xc5, 0xb2, 0x6d, 0xe8, 0x06, 0x5b, 0xaa, - 0xf2, 0xea, 0x50, 0x6c, 0x70, 0xa5, 0xb5, 0x90, 0x6d, 0xaf, 0xa1, 0xbc, 0x7a, 0xa5, 0xbe, 0x85, - 0xaf, 0xaa, 0x65, 0x59, 0xe3, 0x83, 0x0d, 0xae, 0x47, 0xf0, 0x62, 0x80, 0xfd, 0x77, 0x2c, 0x78, - 0xa4, 0x47, 0x46, 0x0e, 0x5a, 0xdd, 0x7d, 0xe6, 0xfa, 0x16, 0x4f, 0x9a, 0xa9, 0xea, 0xb8, 0x43, - 0x1c, 0x0b, 0x2c, 0x5a, 0x07, 0xe0, 0x0e, 0x6d, 0xf6, 0xc0, 0x75, 0xa9, 0x48, 0x04, 0x4a, 0xc7, - 0xbd, 0x77, 0xed, 0x4a, 0xb4, 0x7a, 0xd2, 0x5a, 0xe3, 0x6a, 0x7f, 0xbb, 0x0c, 0x83, 0xfc, 0xe5, - 0xdc, 0x1a, 0x0c, 0x6f, 0xf1, 0x0c, 0xa1, 0xfd, 0x25, 0x28, 0x4d, 0xd5, 0x6b, 0x0e, 0xc0, 0x92, - 0x0d, 0xba, 0x01, 0x27, 0xa9, 0xf0, 0xf6, 0x1c, 0xbf, 0x4a, 0x7c, 0x67, 0x47, 0xda, 0x6b, 0x3c, - 0x8d, 0xbc, 0xcc, 0x77, 0x7c, 0x72, 0xb5, 0x93, 0x04, 0x77, 0x2b, 0x87, 0x5e, 0xed, 0x48, 0xe8, - 0xc5, 0x33, 0xaf, 0x2a, 0x5d, 0xed, 0xe0, 0xa4, 0x5e, 0x54, 0xa3, 0x6c, 0x75, 0x58, 0xa6, 0xda, - 0x03, 0xa5, 0xa6, 0x35, 0x6a, 0xd2, 0xa2, 0x2a, 0x4c, 0xc5, 0x6d, 0x16, 0x0f, 0xb0, 0xb6, 0x15, - 0x91, 0x78, 0x2b, 0xf4, 0x5d, 0xf1, 0xb6, 0x9e, 0xd2, 0xc2, 0xeb, 0x19, 0x3c, 0xee, 0x28, 0x41, - 0xb9, 0x6c, 0x38, 0x9e, 0xdf, 0x8e, 0x48, 0xca, 0x65, 0xc8, 0xe4, 0xb2, 0x92, 0xc1, 0xe3, 0x8e, - 0x12, 0x74, 0x6e, 0x9d, 0x16, 0x4f, 0xbd, 0xc9, 0xcb, 0xac, 0xe2, 0x00, 0xfa, 0x33, 0x30, 0x2c, - 0x43, 0x9a, 0x0b, 0xa5, 0x49, 0x10, 0x47, 0xe7, 0xea, 0xd9, 0x38, 0xed, 0x59, 0x21, 0x11, 0xcc, - 0x2c, 0xf9, 0x1d, 0xe6, 0x49, 0xb1, 0x3f, 0xb6, 0xe0, 0x64, 0x97, 0xe0, 0x1e, 0x1e, 0x72, 0xba, - 0xe9, 0xc5, 0x89, 0x4a, 0x6a, 0xae, 0x85, 0x9c, 0x72, 0x38, 0x56, 0x14, 0x74, 0xb5, 0x70, 0xb7, - 0x48, 0xf6, 0xc8, 0x5c, 0x84, 0x2f, 0x08, 0x6c, 0x7f, 0x69, 0xc4, 0xd0, 0x39, 0x18, 0x68, 0xc7, - 0x24, 0x92, 0xef, 0x7b, 0x49, 0x51, 0xca, 0x3c, 0x61, 0x0c, 0x43, 0x35, 0xc3, 0x4d, 0xe5, 0x84, - 0xd2, 0x34, 0x43, 0xee, 0x86, 0xe2, 0x38, 0xfb, 0x1b, 0x65, 0x98, 0xcc, 0x04, 0xf9, 0xd1, 0x86, - 0x34, 0xc3, 0xc0, 0x4b, 0x42, 0x95, 0xba, 0x8a, 0x3f, 0x29, 0x44, 0x5a, 0x5b, 0x37, 0x04, 0x1c, - 0x2b, 0x0a, 0xf4, 0xb4, 0xf9, 0xdc, 0x7a, 0xda, 0xe6, 0xc5, 0xaa, 0xf1, 0xf2, 0x62, 0xd1, 0x87, - 0x16, 0x9e, 0x84, 0x81, 0x56, 0xa8, 0x5e, 0xd1, 0x55, 0xdf, 0x13, 0x2f, 0x56, 0x6b, 0x61, 0xe8, - 0x63, 0x86, 0x44, 0x4f, 0x89, 0xde, 0x67, 0x7c, 0xf7, 0xd8, 0x71, 0xc3, 0x58, 0x1b, 0x82, 0x67, - 0x60, 0xf8, 0x1e, 0xd9, 0x89, 0xbc, 0x60, 0x33, 0x7b, 0x72, 0x71, 0x8d, 0x83, 0xb1, 0xc4, 0x9b, - 0x8f, 0x29, 0x0c, 0x1f, 0xf1, 0x63, 0x0a, 0x23, 0xb9, 0x71, 0xca, 0xdf, 0xb5, 0x60, 0x92, 0xe5, - 0x73, 0x14, 0x57, 0xa9, 0xbd, 0x30, 0x38, 0x86, 0x6d, 0xfc, 0x49, 0x18, 0x8c, 0x68, 0xa5, 0xd9, - 0x6c, 0xe8, 0xac, 0x25, 0x98, 0xe3, 0xd0, 0x63, 0x30, 0xc0, 0x9a, 0x40, 0x3f, 0xe3, 0x18, 0x4f, - 0x1b, 0x5d, 0x75, 0x12, 0x07, 0x33, 0x28, 0xbb, 0x15, 0x83, 0x49, 0xcb, 0xf7, 0x78, 0xa3, 0x53, - 0x87, 0xe3, 0xfb, 0xed, 0x56, 0x4c, 0xd7, 0x46, 0x3e, 0xac, 0x5b, 0x31, 0xdd, 0x99, 0x1f, 0xac, - 0x4a, 0xff, 0xf7, 0x12, 0x9c, 0xed, 0x5a, 0x2e, 0x3d, 0x03, 0x5d, 0x31, 0xce, 0x40, 0x2f, 0x65, - 0xce, 0x40, 0xed, 0x83, 0x4b, 0x3f, 0x9c, 0x53, 0xd1, 0xee, 0x87, 0x95, 0xe5, 0x63, 0x3c, 0xac, - 0x1c, 0x28, 0xaa, 0xe2, 0x0c, 0xe6, 0xa8, 0x38, 0xbf, 0x6f, 0xc1, 0xa3, 0x5d, 0x87, 0xec, 0x7d, - 0x77, 0x0d, 0xa9, 0x6b, 0x2b, 0x7b, 0x18, 0x00, 0xbf, 0x52, 0xee, 0xd1, 0x2b, 0x66, 0x0a, 0x9c, - 0xa7, 0x52, 0x88, 0x21, 0x63, 0xa1, 0xbc, 0x8d, 0x71, 0x09, 0xc4, 0x61, 0x58, 0x61, 0x51, 0xac, - 0x5d, 0xe3, 0xe1, 0x8d, 0x5c, 0x3e, 0xe4, 0x82, 0x9a, 0x33, 0x3d, 0xc5, 0xfa, 0xfd, 0xf0, 0xcc, - 0xe5, 0x1e, 0x74, 0x57, 0x33, 0xee, 0xca, 0x87, 0x31, 0xee, 0xc6, 0xba, 0x1b, 0x76, 0x68, 0x01, - 0x26, 0x9b, 0x5e, 0xc0, 0xde, 0x60, 0x34, 0xb5, 0x27, 0x75, 0x97, 0xf2, 0x86, 0x89, 0xc6, 0x59, - 0xfa, 0x99, 0x57, 0x60, 0xfc, 0xf0, 0x0e, 0xac, 0x77, 0xcb, 0xf0, 0xc1, 0x03, 0x84, 0x02, 0xdf, - 0x1d, 0x8c, 0xef, 0xa2, 0xed, 0x0e, 0x1d, 0xdf, 0xa6, 0x06, 0xa7, 0x36, 0xda, 0xbe, 0xbf, 0xc3, - 0x22, 0x88, 0x88, 0x2b, 0x29, 0x84, 0x52, 0xa3, 0x1e, 0x64, 0x5e, 0xe9, 0x42, 0x83, 0xbb, 0x96, - 0x44, 0x9f, 0x06, 0x14, 0xae, 0xb3, 0x8c, 0xa7, 0x6e, 0x7a, 0xff, 0x9d, 0x7d, 0x82, 0x72, 0xba, - 0x54, 0x6f, 0x75, 0x50, 0xe0, 0x2e, 0xa5, 0xa8, 0x9e, 0xca, 0xde, 0x72, 0x56, 0xcd, 0xca, 0xe8, - 0xa9, 0x58, 0x47, 0x62, 0x93, 0x16, 0x5d, 0x81, 0x13, 0xce, 0xb6, 0xe3, 0xf1, 0x0c, 0x46, 0x92, - 0x01, 0x57, 0x54, 0x95, 0x8b, 0x68, 0x21, 0x4b, 0x80, 0x3b, 0xcb, 0xa0, 0x96, 0xe1, 0xf3, 0xe3, - 0xb9, 0xce, 0x3f, 0x71, 0x88, 0x19, 0x5c, 0xd8, 0x0b, 0x68, 0xff, 0x57, 0x8b, 0x6e, 0x7d, 0x5d, - 0x9e, 0xeb, 0xa3, 0x23, 0xa2, 0x7c, 0x58, 0xda, 0xc5, 0x26, 0x35, 0x22, 0x4b, 0x3a, 0x12, 0x9b, - 0xb4, 0x7c, 0x6a, 0xc4, 0x69, 0x28, 0xb2, 0xa1, 0x6d, 0x8a, 0x1b, 0x7d, 0x8a, 0x82, 0x6a, 0xd0, - 0xae, 0xb7, 0xed, 0xc5, 0x61, 0x24, 0x16, 0x50, 0x9f, 0xe1, 0xad, 0xa9, 0xbc, 0xac, 0x72, 0x36, - 0x58, 0xf2, 0xb3, 0xbf, 0x59, 0x82, 0x71, 0x59, 0xe3, 0x6b, 0xed, 0x30, 0x71, 0x8e, 0x61, 0x4b, - 0x7f, 0xcd, 0xd8, 0xd2, 0xe7, 0x8b, 0x5d, 0x70, 0x64, 0x8d, 0xeb, 0xb9, 0x95, 0x7f, 0x26, 0xb3, - 0x95, 0x5f, 0xec, 0x87, 0xe9, 0xc1, 0x5b, 0xf8, 0xbf, 0xb2, 0xe0, 0x84, 0x41, 0x7f, 0x0c, 0x3b, - 0x49, 0xcd, 0xdc, 0x49, 0x9e, 0xeb, 0xa3, 0x37, 0x3d, 0x76, 0x90, 0xef, 0x94, 0x32, 0xbd, 0x60, - 0x3b, 0xc7, 0x17, 0x61, 0x60, 0xcb, 0x89, 0xdc, 0x62, 0xe9, 0xfc, 0x3a, 0x8a, 0xcf, 0x5d, 0x75, - 0x22, 0x97, 0xcb, 0xff, 0x0b, 0xea, 0x31, 0x21, 0x27, 0x72, 0x73, 0x23, 0xf4, 0x59, 0xa5, 0xe8, - 0x32, 0x0c, 0xc5, 0x8d, 0xb0, 0xa5, 0x22, 0x21, 0xcf, 0xf1, 0x87, 0x86, 0x28, 0x64, 0x7f, 0x77, - 0x16, 0x99, 0xd5, 0x51, 0x30, 0x16, 0xf4, 0x33, 0x9b, 0x50, 0x51, 0x55, 0x1f, 0x69, 0x2c, 0xf8, - 0x9f, 0x94, 0xe1, 0x64, 0x97, 0xb9, 0x82, 0xbe, 0x64, 0x8c, 0xdb, 0x2b, 0x7d, 0x4f, 0xb6, 0xf7, - 0x38, 0x72, 0x5f, 0x62, 0x96, 0x92, 0x2b, 0x66, 0xc7, 0x21, 0xaa, 0xbf, 0x1d, 0x93, 0x6c, 0xf5, - 0x14, 0x94, 0x5f, 0x3d, 0xad, 0xf6, 0xd8, 0x86, 0x9f, 0x56, 0xa4, 0x5a, 0x7a, 0xa4, 0xdf, 0xf9, - 0x2f, 0x0c, 0xc0, 0xa9, 0x6e, 0x37, 0xa9, 0xd1, 0x57, 0xad, 0x4c, 0xce, 0xfe, 0x57, 0xfb, 0xbf, - 0x8e, 0xcd, 0x13, 0xf9, 0x8b, 0xec, 0x23, 0x73, 0x66, 0x16, 0xff, 0xdc, 0x11, 0x17, 0xb5, 0xb3, - 0xbb, 0x35, 0x11, 0x7f, 0x7f, 0x41, 0x4a, 0x85, 0x4f, 0x1d, 0xa2, 0x29, 0xe2, 0x09, 0x87, 0x38, - 0x73, 0xb7, 0x46, 0x82, 0xf3, 0xef, 0xd6, 0xc8, 0x36, 0xcc, 0x78, 0x30, 0xaa, 0xf5, 0xeb, 0x48, - 0xa7, 0xc1, 0x3d, 0xba, 0x45, 0x69, 0xed, 0x3e, 0xd2, 0xa9, 0xf0, 0x37, 0x2d, 0xc8, 0x84, 0x2d, - 0x29, 0xb7, 0x8c, 0xd5, 0xd3, 0x2d, 0x73, 0x0e, 0x06, 0xa2, 0xd0, 0x27, 0xd9, 0x7c, 0xf2, 0x38, - 0xf4, 0x09, 0x66, 0x18, 0xf5, 0xbe, 0x68, 0xb9, 0xd7, 0xfb, 0xa2, 0xd4, 0x4e, 0xf7, 0xc9, 0x36, - 0x91, 0x4e, 0x12, 0x25, 0xc6, 0xaf, 0x53, 0x20, 0xe6, 0x38, 0xfb, 0xf7, 0xca, 0x30, 0xc4, 0x3d, - 0x11, 0xc7, 0xb0, 0x4f, 0xd7, 0x84, 0x53, 0xa0, 0xd0, 0xfd, 0x66, 0xde, 0xaa, 0xb9, 0xaa, 0x93, - 0x38, 0x7c, 0x72, 0xa9, 0x3e, 0xa6, 0x8e, 0x04, 0x34, 0x67, 0x8c, 0xc2, 0x4c, 0xc6, 0xd6, 0x05, - 0xce, 0x43, 0x1b, 0x93, 0x2d, 0x80, 0x98, 0xbd, 0x67, 0x47, 0x79, 0x88, 0x1c, 0x8c, 0x2f, 0x16, - 0x6a, 0x47, 0x5d, 0x15, 0xe3, 0xad, 0x49, 0x13, 0xbf, 0x29, 0x04, 0xd6, 0x78, 0xcf, 0xbc, 0x0c, - 0x15, 0x45, 0x9c, 0x67, 0x04, 0x8c, 0xe9, 0x93, 0xf3, 0xff, 0x83, 0xc9, 0x4c, 0x5d, 0x7d, 0xd9, - 0x10, 0xbf, 0x65, 0xc1, 0x64, 0xe6, 0x29, 0x6e, 0xf4, 0x15, 0x0b, 0x4e, 0xf9, 0x5d, 0x1c, 0x51, - 0xe2, 0x33, 0x1f, 0xc6, 0x85, 0xa5, 0xcc, 0x87, 0x6e, 0x58, 0xdc, 0xb5, 0x36, 0x6a, 0x56, 0xf2, - 0xe7, 0x39, 0x1d, 0x5f, 0x44, 0x81, 0x8e, 0xf1, 0x84, 0xb1, 0x1c, 0x86, 0x15, 0xd6, 0xfe, 0x89, - 0x05, 0x27, 0x3a, 0x5e, 0x7b, 0x7e, 0xbf, 0x74, 0x43, 0xa4, 0xc6, 0x2d, 0xf5, 0x48, 0x8d, 0xab, - 0xf7, 0xb2, 0x7c, 0x60, 0x2f, 0x7f, 0xdd, 0x02, 0x31, 0x43, 0x8f, 0x41, 0x03, 0x5c, 0x35, 0x35, - 0xc0, 0x0f, 0x15, 0x99, 0xf4, 0x3d, 0x54, 0xbf, 0x5f, 0x2e, 0xc1, 0x14, 0x27, 0x48, 0x7d, 0xea, - 0xef, 0x97, 0x8f, 0xd3, 0xdf, 0x93, 0x0d, 0xea, 0x9d, 0xbc, 0xee, 0x3d, 0x35, 0xbe, 0xe5, 0xc0, - 0x81, 0xdf, 0xf2, 0xcf, 0x2c, 0x40, 0x7c, 0x4c, 0xb2, 0x6f, 0x9b, 0x72, 0xe7, 0xae, 0x66, 0xd0, - 0xa5, 0x92, 0x43, 0x61, 0xb0, 0x46, 0xf5, 0x90, 0xbb, 0x90, 0x39, 0xd1, 0x28, 0xe7, 0x9f, 0x68, - 0xf4, 0xd1, 0xeb, 0xdf, 0x2e, 0x43, 0x36, 0x1c, 0x0c, 0xbd, 0x05, 0x63, 0x0d, 0xa7, 0xe5, 0xac, - 0x7b, 0xbe, 0x97, 0x78, 0x24, 0x2e, 0x76, 0x64, 0xba, 0xa4, 0x95, 0x10, 0x07, 0x09, 0x1a, 0x04, - 0x1b, 0x1c, 0xd1, 0x1c, 0x40, 0x2b, 0xf2, 0xb6, 0x3d, 0x9f, 0x6c, 0x32, 0x9d, 0x95, 0xc5, 0x93, - 0xf3, 0xd3, 0x3f, 0x09, 0xc5, 0x1a, 0x45, 0x97, 0xf8, 0xe3, 0xf2, 0x71, 0xc4, 0x1f, 0x0f, 0xf4, - 0x19, 0x7f, 0x3c, 0x58, 0x28, 0xfe, 0x18, 0xc3, 0x19, 0xe9, 0xff, 0xa7, 0xff, 0x57, 0x3c, 0x9f, - 0xf0, 0x74, 0xa3, 0x22, 0xde, 0x7c, 0x66, 0x6f, 0x77, 0xf6, 0x0c, 0xee, 0x4a, 0x81, 0x7b, 0x94, - 0xb4, 0xdb, 0x70, 0xb2, 0x4e, 0x22, 0x8f, 0x65, 0x81, 0x73, 0xd3, 0xb5, 0xf4, 0x79, 0xa8, 0x44, - 0x99, 0x65, 0xdc, 0xe7, 0x75, 0x60, 0x2d, 0x6f, 0x90, 0x5c, 0xb6, 0x29, 0x4b, 0xfb, 0x2f, 0x97, - 0x60, 0x58, 0x04, 0x82, 0x1d, 0x83, 0xf2, 0x71, 0xcd, 0x70, 0x12, 0x3c, 0x93, 0x27, 0xff, 0x58, - 0xb3, 0x7a, 0xba, 0x07, 0xea, 0x19, 0xf7, 0xc0, 0x73, 0xc5, 0xd8, 0x1d, 0xec, 0x18, 0xf8, 0x07, - 0x65, 0x98, 0x30, 0x03, 0xe3, 0x8e, 0x61, 0x58, 0x5e, 0x87, 0xe1, 0x58, 0xc4, 0x68, 0x96, 0x8a, - 0x04, 0x36, 0x65, 0x3f, 0x71, 0x7a, 0x96, 0x2a, 0xa2, 0x32, 0x25, 0xbb, 0xae, 0x61, 0xa0, 0xe5, - 0x63, 0x09, 0x03, 0xcd, 0x8b, 0x57, 0x1c, 0x78, 0x18, 0xf1, 0x8a, 0xf6, 0x0f, 0x99, 0xc8, 0xd7, - 0xe1, 0xc7, 0xb0, 0x8d, 0xbf, 0x66, 0x6e, 0x0e, 0x17, 0x0a, 0xcd, 0x3b, 0xd1, 0xbc, 0x1e, 0xdb, - 0xf9, 0xf7, 0x2c, 0x18, 0x15, 0x84, 0xc7, 0xd0, 0x81, 0x4f, 0x9b, 0x1d, 0x78, 0xaa, 0x50, 0x07, - 0x7a, 0xb4, 0xfc, 0x9b, 0x25, 0xd5, 0xf2, 0x9a, 0x78, 0x8f, 0x3a, 0x37, 0xe7, 0xed, 0x48, 0x2b, - 0x0a, 0x93, 0xb0, 0x11, 0xfa, 0x42, 0x81, 0x7b, 0x2c, 0xbd, 0x5e, 0xc4, 0xe1, 0xfb, 0xda, 0x6f, - 0xac, 0xa8, 0xd9, 0xed, 0x97, 0x30, 0x4a, 0xc4, 0x06, 0xda, 0xed, 0x35, 0x6c, 0x17, 0x20, 0x7d, - 0x82, 0x58, 0xdc, 0xcc, 0xeb, 0xff, 0x9d, 0xed, 0xf4, 0xbe, 0x90, 0xe2, 0x85, 0x35, 0xbe, 0x32, - 0x10, 0x9d, 0xd5, 0x31, 0x68, 0x9e, 0x01, 0xdc, 0x14, 0x70, 0xac, 0x28, 0xec, 0x97, 0x99, 0x64, - 0x67, 0x03, 0xd4, 0xdf, 0x55, 0x9e, 0xbf, 0x34, 0xa4, 0x86, 0x96, 0x39, 0xf6, 0x6e, 0xea, 0x17, - 0x86, 0x8a, 0x8a, 0x4f, 0xda, 0x04, 0x3d, 0xd8, 0x34, 0xbd, 0x5f, 0x84, 0x48, 0xc7, 0xc1, 0xd1, - 0xcb, 0x85, 0x25, 0x72, 0x1f, 0x47, 0x45, 0x2c, 0x51, 0x18, 0xcb, 0x8e, 0xb4, 0x5a, 0xcb, 0x66, - 0x2a, 0x5e, 0x92, 0x08, 0x9c, 0xd2, 0xa0, 0x79, 0x61, 0x50, 0x9a, 0xcf, 0x95, 0x4b, 0x83, 0x52, - 0x0e, 0x89, 0x66, 0x51, 0x5e, 0x84, 0x51, 0xf5, 0x5e, 0x43, 0x8d, 0xa7, 0xdd, 0xaf, 0x70, 0xfd, - 0x6a, 0x39, 0x05, 0x63, 0x9d, 0x06, 0xad, 0xc2, 0x49, 0x57, 0xdd, 0x3b, 0xa8, 0xb5, 0xd7, 0x7d, - 0xaf, 0x41, 0x8b, 0xf2, 0x3b, 0x83, 0x8f, 0xec, 0xed, 0xce, 0x9e, 0xac, 0x76, 0xa2, 0x71, 0xb7, - 0x32, 0x68, 0x0d, 0x26, 0x63, 0xfe, 0x2e, 0x85, 0x0c, 0x2e, 0x17, 0x09, 0x3c, 0x9f, 0x95, 0x27, - 0x56, 0x75, 0x13, 0xbd, 0xcf, 0x40, 0x5c, 0x2a, 0xc8, 0x70, 0xf4, 0x2c, 0x0b, 0xf4, 0x2a, 0x4c, - 0xf8, 0xfa, 0xa3, 0x7b, 0x35, 0x71, 0xfd, 0x42, 0xc5, 0x20, 0x19, 0x4f, 0xf2, 0xd5, 0x70, 0x86, - 0x1a, 0xbd, 0x0e, 0xd3, 0x3a, 0x44, 0x64, 0x31, 0x71, 0x82, 0x4d, 0x12, 0x8b, 0x84, 0xf8, 0x8f, - 0xed, 0xed, 0xce, 0x4e, 0x5f, 0xef, 0x41, 0x83, 0x7b, 0x96, 0x46, 0x97, 0x61, 0x4c, 0x8e, 0xa4, - 0x76, 0x15, 0x23, 0x8d, 0x7e, 0xd3, 0x70, 0xd8, 0xa0, 0x7c, 0x6f, 0x07, 0x73, 0x5f, 0xa4, 0x85, - 0xb5, 0x2d, 0x1c, 0xbd, 0x0d, 0x63, 0x7a, 0x1b, 0xb3, 0x7b, 0x73, 0xfe, 0x43, 0x86, 0x42, 0x15, - 0x50, 0x2d, 0xd7, 0x71, 0xd8, 0xe0, 0x6d, 0xdf, 0x82, 0xa1, 0xfa, 0x4e, 0xdc, 0x48, 0xfc, 0x87, - 0xf5, 0x52, 0x3d, 0x81, 0xc9, 0xcc, 0x93, 0xee, 0x08, 0x0b, 0xe9, 0x66, 0x1d, 0x52, 0x6a, 0x75, - 0x91, 0x87, 0xf6, 0x1f, 0x59, 0x30, 0xb8, 0xe6, 0x78, 0xf9, 0x8f, 0xc9, 0x14, 0x69, 0x34, 0x7a, - 0x09, 0x86, 0xc8, 0xc6, 0x06, 0x69, 0x24, 0x62, 0x19, 0xcb, 0x80, 0xea, 0xa1, 0x65, 0x06, 0xa5, - 0x8b, 0x93, 0x55, 0xc6, 0xff, 0x62, 0x41, 0x8c, 0x3e, 0x07, 0x95, 0xc4, 0x6b, 0x92, 0x05, 0xd7, - 0x25, 0xee, 0x21, 0x6e, 0x4b, 0x2b, 0x61, 0xb1, 0x26, 0x99, 0xe0, 0x94, 0x9f, 0xfd, 0xf5, 0x12, - 0xc0, 0x5a, 0xe8, 0xcb, 0x23, 0xcd, 0x9c, 0x6e, 0x2e, 0x76, 0xbc, 0x99, 0xf3, 0x74, 0x97, 0x37, - 0x73, 0x50, 0xca, 0xb0, 0xcb, 0x8b, 0x39, 0x6a, 0xa8, 0xca, 0x85, 0x86, 0x6a, 0xa0, 0x9f, 0xa1, - 0x5a, 0x82, 0x13, 0x89, 0xaa, 0xdb, 0xbc, 0x76, 0xc6, 0x12, 0xfa, 0xad, 0x65, 0x91, 0xb8, 0x93, - 0xde, 0xfe, 0xba, 0x05, 0x22, 0x64, 0xad, 0xc0, 0x6c, 0x75, 0xe5, 0x63, 0x19, 0x46, 0x0e, 0xa5, - 0x67, 0x8b, 0x44, 0xf3, 0x89, 0xcc, 0x49, 0x6a, 0xfd, 0x18, 0xf9, 0x92, 0x0c, 0xae, 0xf6, 0x6f, - 0x58, 0x30, 0xca, 0xd1, 0x37, 0x98, 0x4e, 0x9d, 0xdf, 0xae, 0xbe, 0xb2, 0x45, 0xb2, 0x77, 0x24, - 0x28, 0x63, 0x95, 0x35, 0x50, 0x7f, 0x47, 0x42, 0x22, 0x70, 0x4a, 0x83, 0x9e, 0x81, 0xe1, 0xb8, - 0xbd, 0xce, 0xc8, 0x33, 0xf1, 0x6b, 0x75, 0x0e, 0xc6, 0x12, 0x6f, 0xff, 0xa3, 0x12, 0x4c, 0x65, - 0xc3, 0x17, 0x11, 0x86, 0x21, 0xae, 0x63, 0x67, 0xd5, 0xb3, 0x83, 0x7c, 0x39, 0x5a, 0xf8, 0x23, - 0xf0, 0x07, 0x4c, 0x59, 0xcc, 0x99, 0xe0, 0x84, 0x36, 0x60, 0xd4, 0x0d, 0xef, 0x07, 0xf7, 0x9d, - 0xc8, 0x5d, 0xa8, 0xad, 0x8a, 0x2f, 0x91, 0x13, 0x70, 0x52, 0x4d, 0x0b, 0xe8, 0xc1, 0x95, 0xcc, - 0xb7, 0x90, 0xa2, 0xb0, 0xce, 0x98, 0xda, 0x94, 0x8d, 0x30, 0xd8, 0xf0, 0x36, 0x6f, 0x38, 0xad, - 0x62, 0x47, 0xab, 0x4b, 0x92, 0x5c, 0xab, 0x63, 0x5c, 0xdc, 0x33, 0xe7, 0x08, 0x9c, 0xb2, 0xb4, - 0xff, 0x04, 0x81, 0x31, 0x17, 0x8c, 0x94, 0x8e, 0xd6, 0x43, 0x4f, 0xe9, 0xf8, 0x06, 0x8c, 0x90, - 0x66, 0x2b, 0xd9, 0xa9, 0x7a, 0x51, 0xb1, 0xf4, 0xba, 0xcb, 0x82, 0xba, 0x93, 0xbb, 0xc4, 0x60, - 0xc5, 0xb1, 0x47, 0x82, 0xce, 0xf2, 0xfb, 0x22, 0x41, 0xe7, 0xc0, 0x4f, 0x25, 0x41, 0xe7, 0xeb, - 0x30, 0xbc, 0xe9, 0x25, 0x98, 0xb4, 0x42, 0x71, 0x71, 0x3f, 0x67, 0xf2, 0x5c, 0xe1, 0xc4, 0x9d, - 0x59, 0xf7, 0x04, 0x02, 0x4b, 0x76, 0x68, 0x4d, 0x2d, 0xaa, 0xa1, 0x22, 0x7b, 0x79, 0xa7, 0xaf, - 0xaf, 0xeb, 0xb2, 0x12, 0x09, 0x39, 0x87, 0xdf, 0x7b, 0x42, 0x4e, 0x95, 0x46, 0x73, 0xe4, 0x61, - 0xa5, 0xd1, 0x34, 0xd2, 0x91, 0x56, 0x8e, 0x22, 0x1d, 0xe9, 0xd7, 0x2d, 0x38, 0xdd, 0xea, 0x96, - 0xcc, 0x57, 0x24, 0xc4, 0xfc, 0xe4, 0x21, 0xd2, 0x1b, 0x1b, 0x55, 0xb3, 0xeb, 0xd0, 0x5d, 0xc9, - 0x70, 0xf7, 0x8a, 0x65, 0x5e, 0xd3, 0xd1, 0xf7, 0x9e, 0xd7, 0xf4, 0xa8, 0x33, 0x67, 0xa6, 0x59, - 0x4e, 0xc7, 0x8f, 0x24, 0xcb, 0xe9, 0xc4, 0x43, 0xcc, 0x72, 0xaa, 0xe5, 0x27, 0x9d, 0x7c, 0xb8, - 0xf9, 0x49, 0xb7, 0xcc, 0x7d, 0x89, 0xa7, 0xc3, 0x7c, 0xa9, 0xf0, 0xbe, 0x64, 0xd4, 0x70, 0xf0, - 0xce, 0xc4, 0x33, 0xb5, 0x9e, 0x78, 0x8f, 0x99, 0x5a, 0x8d, 0x7c, 0xa7, 0xe8, 0x28, 0xf2, 0x9d, - 0xbe, 0xa5, 0xef, 0xa0, 0x27, 0x8b, 0xd4, 0xa0, 0x36, 0xca, 0xce, 0x1a, 0xba, 0xed, 0xa1, 0x9d, - 0x19, 0x55, 0x4f, 0x1d, 0x77, 0x46, 0xd5, 0xd3, 0x47, 0x98, 0x51, 0xf5, 0xcc, 0xb1, 0x66, 0x54, - 0x7d, 0xe4, 0xa7, 0x91, 0x51, 0x95, 0x76, 0xb8, 0x25, 0xaf, 0xce, 0x4c, 0x4f, 0x17, 0xe9, 0x70, - 0xd7, 0x9b, 0x36, 0xbc, 0xc3, 0x0a, 0x85, 0x53, 0xa6, 0xf6, 0x9f, 0x83, 0xb3, 0x07, 0x7f, 0xf0, - 0xf4, 0x55, 0x80, 0x5a, 0xea, 0x69, 0xca, 0xbc, 0x0a, 0xc0, 0x94, 0x29, 0x8d, 0xaa, 0x70, 0xe2, - 0xc8, 0xef, 0x58, 0xf0, 0x48, 0x8f, 0xbc, 0x6a, 0x85, 0xef, 0x9d, 0xb5, 0x60, 0xb2, 0x65, 0x16, - 0x2d, 0x7c, 0x53, 0xd4, 0xc8, 0xe3, 0xa6, 0x62, 0x83, 0x33, 0x08, 0x9c, 0x65, 0xbf, 0xf8, 0xa1, - 0x1f, 0xbd, 0x7b, 0xf6, 0x03, 0x3f, 0x7e, 0xf7, 0xec, 0x07, 0xfe, 0xf0, 0xdd, 0xb3, 0x1f, 0xf8, - 0x85, 0xbd, 0xb3, 0xd6, 0x8f, 0xf6, 0xce, 0x5a, 0x3f, 0xde, 0x3b, 0x6b, 0xfd, 0xf1, 0xde, 0x59, - 0xeb, 0xeb, 0x3f, 0x39, 0xfb, 0x81, 0xcf, 0x96, 0xb6, 0x2f, 0xfe, 0xdf, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x67, 0xe3, 0xa3, 0x34, 0xbd, 0xc2, 0x00, 0x00, + 0x47, 0xdd, 0x3d, 0xdc, 0xa5, 0x1d, 0x03, 0x77, 0x8e, 0xe1, 0x4b, 0x70, 0x4e, 0xe2, 0xc3, 0xc5, + 0x40, 0x90, 0x04, 0xf0, 0x21, 0x40, 0x12, 0xe7, 0x3b, 0x8e, 0x71, 0xb6, 0x0f, 0xf1, 0x25, 0xc8, + 0xe5, 0x7c, 0xf1, 0x01, 0xc9, 0xc5, 0xc0, 0x21, 0xb9, 0x0b, 0x92, 0xf0, 0x4e, 0x74, 0xee, 0xfe, + 0xcc, 0x1f, 0xb9, 0xff, 0x98, 0x20, 0x09, 0xea, 0xb3, 0xab, 0x7a, 0x66, 0xd8, 0x3d, 0xd4, 0x92, + 0x96, 0x8d, 0xfc, 0x37, 0xf3, 0xde, 0xab, 0x57, 0x1f, 0x5d, 0xf5, 0xea, 0xd5, 0xab, 0xf7, 0x5e, + 0xc1, 0x85, 0x7b, 0x97, 0xe3, 0x39, 0x2f, 0x9c, 0xbf, 0xd7, 0x5e, 0x27, 0x51, 0x40, 0x12, 0x12, + 0xcf, 0xb7, 0xee, 0x6d, 0xce, 0x3b, 0x2d, 0x6f, 0x7e, 0xfb, 0xe2, 0xfc, 0x26, 0x09, 0x48, 0xe4, + 0x24, 0xc4, 0x9d, 0x6b, 0x45, 0x61, 0x12, 0xa2, 0xc7, 0x38, 0xf5, 0x5c, 0x4a, 0x3d, 0xd7, 0xba, + 0xb7, 0x39, 0xe7, 0xb4, 0xbc, 0xb9, 0xed, 0x8b, 0x33, 0xcf, 0x6f, 0x7a, 0xc9, 0x56, 0x7b, 0x7d, + 0xae, 0x11, 0x36, 0xe7, 0x37, 0xc3, 0xcd, 0x70, 0x9e, 0x15, 0x5a, 0x6f, 0x6f, 0xb0, 0x7f, 0xec, + 0x0f, 0xfb, 0xc5, 0x99, 0xcd, 0xbc, 0x28, 0xaa, 0x76, 0x5a, 0x5e, 0xd3, 0x69, 0x6c, 0x79, 0x01, + 0x89, 0x76, 0x54, 0xe5, 0x11, 0x89, 0xc3, 0x76, 0xd4, 0x20, 0xd9, 0x26, 0x1c, 0x58, 0x2a, 0x9e, + 0x6f, 0x92, 0xc4, 0xe9, 0xd2, 0xf0, 0x99, 0xf9, 0x5e, 0xa5, 0xa2, 0x76, 0x90, 0x78, 0xcd, 0xce, + 0x6a, 0x3e, 0x9a, 0x57, 0x20, 0x6e, 0x6c, 0x91, 0xa6, 0xd3, 0x51, 0xee, 0x85, 0x5e, 0xe5, 0xda, + 0x89, 0xe7, 0xcf, 0x7b, 0x41, 0x12, 0x27, 0xd1, 0x41, 0x7d, 0x8a, 0x49, 0xb4, 0x4d, 0xa2, 0xb4, + 0x43, 0xe4, 0x81, 0xd3, 0x6c, 0xf9, 0xa4, 0x4b, 0x9f, 0xec, 0x3f, 0xb0, 0xe0, 0xdc, 0xc2, 0xdd, + 0xfa, 0xb2, 0xef, 0xc4, 0x89, 0xd7, 0x58, 0xf4, 0xc3, 0xc6, 0xbd, 0x7a, 0x12, 0x46, 0xe4, 0x4e, + 0xe8, 0xb7, 0x9b, 0xa4, 0xce, 0x86, 0x0f, 0x5d, 0x80, 0x91, 0x6d, 0xf6, 0x7f, 0xb5, 0x3a, 0x6d, + 0x9d, 0xb3, 0xce, 0x57, 0x16, 0xa7, 0x7e, 0xb4, 0x3b, 0xfb, 0x81, 0xbd, 0xdd, 0xd9, 0x91, 0x3b, + 0x02, 0x8e, 0x15, 0x05, 0x7a, 0x1a, 0x86, 0x36, 0xe2, 0xb5, 0x9d, 0x16, 0x99, 0x2e, 0x31, 0xda, + 0x09, 0x41, 0x3b, 0xb4, 0x52, 0xa7, 0x50, 0x2c, 0xb0, 0x68, 0x1e, 0x2a, 0x2d, 0x27, 0x4a, 0xbc, + 0xc4, 0x0b, 0x83, 0xe9, 0xf2, 0x39, 0xeb, 0xfc, 0xe0, 0xe2, 0x09, 0x41, 0x5a, 0xa9, 0x49, 0x04, + 0x4e, 0x69, 0x68, 0x33, 0x22, 0xe2, 0xb8, 0xb7, 0x02, 0x7f, 0x67, 0x7a, 0xe0, 0x9c, 0x75, 0x7e, + 0x24, 0x6d, 0x06, 0x16, 0x70, 0xac, 0x28, 0xec, 0xef, 0x97, 0x60, 0x64, 0x61, 0x63, 0xc3, 0x0b, + 0xbc, 0x64, 0x07, 0xbd, 0x05, 0x63, 0x41, 0xe8, 0x12, 0xf9, 0x9f, 0xf5, 0x62, 0xf4, 0xd2, 0xb3, + 0x73, 0x07, 0x4d, 0xc5, 0xb9, 0x9b, 0x5a, 0x89, 0xc5, 0xa9, 0xbd, 0xdd, 0xd9, 0x31, 0x1d, 0x82, + 0x0d, 0x8e, 0xe8, 0x0d, 0x18, 0x6d, 0x85, 0xae, 0xaa, 0xa0, 0xc4, 0x2a, 0x78, 0xe6, 0xe0, 0x0a, + 0x6a, 0x69, 0x81, 0xc5, 0xc9, 0xbd, 0xdd, 0xd9, 0x51, 0x0d, 0x80, 0x75, 0x76, 0xc8, 0x87, 0x49, + 0xfa, 0x37, 0x48, 0x3c, 0x55, 0x43, 0x99, 0xd5, 0xf0, 0x7c, 0x7e, 0x0d, 0x5a, 0xa1, 0xc5, 0x93, + 0x7b, 0xbb, 0xb3, 0x93, 0x19, 0x20, 0xce, 0xb2, 0xb6, 0xbf, 0x00, 0x13, 0x0b, 0x49, 0xe2, 0x34, + 0xb6, 0x88, 0xcb, 0xbf, 0x2f, 0x7a, 0x11, 0x06, 0x02, 0xa7, 0x49, 0xc4, 0xd7, 0x3f, 0x27, 0x86, + 0x7d, 0xe0, 0xa6, 0xd3, 0x24, 0xfb, 0xbb, 0xb3, 0x53, 0xb7, 0x03, 0xef, 0x9d, 0xb6, 0x98, 0x33, + 0x14, 0x86, 0x19, 0x35, 0xba, 0x04, 0xe0, 0x92, 0x6d, 0xaf, 0x41, 0x6a, 0x4e, 0xb2, 0x25, 0x66, + 0x03, 0x12, 0x65, 0xa1, 0xaa, 0x30, 0x58, 0xa3, 0xb2, 0xbf, 0x6c, 0x41, 0x65, 0x61, 0x3b, 0xf4, + 0xdc, 0x5a, 0xe8, 0xc6, 0xa8, 0x0d, 0x93, 0xad, 0x88, 0x6c, 0x90, 0x48, 0x81, 0xa6, 0xad, 0x73, + 0xe5, 0xf3, 0xa3, 0x97, 0x2e, 0xe5, 0xf4, 0xdb, 0x2c, 0xb4, 0x1c, 0x24, 0xd1, 0xce, 0xe2, 0x23, + 0xa2, 0xea, 0xc9, 0x0c, 0x16, 0x67, 0xeb, 0xb0, 0x7f, 0xa5, 0x04, 0xa7, 0x17, 0xbe, 0xd0, 0x8e, + 0x48, 0xd5, 0x8b, 0xef, 0x65, 0x97, 0x82, 0xeb, 0xc5, 0xf7, 0x6e, 0xa6, 0x83, 0xa1, 0xe6, 0x60, + 0x55, 0xc0, 0xb1, 0xa2, 0x40, 0xcf, 0xc3, 0x30, 0xfd, 0x7d, 0x1b, 0xaf, 0x8a, 0xde, 0x9f, 0x14, + 0xc4, 0xa3, 0x55, 0x27, 0x71, 0xaa, 0x1c, 0x85, 0x25, 0x0d, 0xba, 0x01, 0xa3, 0x0d, 0xb6, 0xde, + 0x37, 0x6f, 0x84, 0x2e, 0x61, 0x5f, 0xb8, 0xb2, 0xf8, 0x1c, 0x25, 0x5f, 0x4a, 0xc1, 0xfb, 0xbb, + 0xb3, 0xd3, 0xbc, 0x6d, 0x82, 0x85, 0x86, 0xc3, 0x7a, 0x79, 0x64, 0xab, 0x85, 0x38, 0xc0, 0x38, + 0x41, 0x97, 0x45, 0x78, 0x5e, 0x5b, 0x53, 0x83, 0x6c, 0x4d, 0x8d, 0xf5, 0x58, 0x4f, 0x7f, 0xdf, + 0x12, 0x63, 0xb2, 0xe2, 0xf9, 0xa6, 0x78, 0xb8, 0x04, 0x10, 0x93, 0x46, 0x44, 0x12, 0x6d, 0x54, + 0xd4, 0x67, 0xae, 0x2b, 0x0c, 0xd6, 0xa8, 0xe8, 0xe2, 0x8f, 0xb7, 0x9c, 0x88, 0xcd, 0x16, 0x31, + 0x36, 0x6a, 0xf1, 0xd7, 0x25, 0x02, 0xa7, 0x34, 0xc6, 0xe2, 0x2f, 0xe7, 0x2e, 0xfe, 0xdf, 0xb2, + 0x60, 0x78, 0xd1, 0x0b, 0x5c, 0x2f, 0xd8, 0x44, 0x6f, 0xc1, 0x08, 0x95, 0xe8, 0xae, 0x93, 0x38, + 0x62, 0xdd, 0x7f, 0x44, 0x4e, 0x1e, 0x5d, 0xc0, 0xca, 0xe9, 0x13, 0xcf, 0x51, 0x6a, 0x3a, 0x89, + 0x6e, 0xad, 0xbf, 0x4d, 0x1a, 0xc9, 0x0d, 0x92, 0x38, 0x69, 0x77, 0x52, 0x18, 0x56, 0x5c, 0xd1, + 0x6d, 0x18, 0x4a, 0x9c, 0x68, 0x93, 0x24, 0x62, 0xd9, 0xe7, 0x2c, 0x4a, 0xce, 0x03, 0xd3, 0x29, + 0x47, 0x82, 0x06, 0x49, 0x05, 0xe4, 0x1a, 0x63, 0x82, 0x05, 0x33, 0xbb, 0x01, 0x63, 0x4b, 0x4e, + 0xcb, 0x59, 0xf7, 0x7c, 0x2f, 0xf1, 0x48, 0x8c, 0x3e, 0x0c, 0x65, 0xc7, 0x75, 0xd9, 0x02, 0xa8, + 0x2c, 0x9e, 0xde, 0xdb, 0x9d, 0x2d, 0x2f, 0xb8, 0xee, 0xfe, 0xee, 0x2c, 0x28, 0xaa, 0x1d, 0x4c, + 0x29, 0xd0, 0xb3, 0x30, 0xe0, 0x46, 0x61, 0x6b, 0xba, 0xc4, 0x28, 0xcf, 0xd0, 0x95, 0x5a, 0x8d, + 0xc2, 0x56, 0x86, 0x94, 0xd1, 0xd8, 0x3f, 0x2c, 0x01, 0x5a, 0x22, 0xad, 0xad, 0x95, 0xba, 0xf1, + 0x4d, 0xcf, 0xc3, 0x48, 0x33, 0x0c, 0xbc, 0x24, 0x8c, 0x62, 0x51, 0x21, 0x9b, 0x17, 0x37, 0x04, + 0x0c, 0x2b, 0x2c, 0x3a, 0x07, 0x03, 0xad, 0x74, 0x79, 0x8f, 0x49, 0xd1, 0xc0, 0x16, 0x36, 0xc3, + 0x50, 0x8a, 0x76, 0x4c, 0x22, 0x31, 0x9f, 0x15, 0xc5, 0xed, 0x98, 0x44, 0x98, 0x61, 0xd2, 0x19, + 0x44, 0xe7, 0x96, 0x98, 0xad, 0x99, 0x19, 0x44, 0x31, 0x58, 0xa3, 0x42, 0x6f, 0x42, 0x85, 0xff, + 0xc3, 0x64, 0x83, 0x4d, 0xdd, 0x5c, 0xa1, 0x70, 0x3d, 0x6c, 0x38, 0x7e, 0x76, 0xf0, 0xc7, 0xd9, + 0x8c, 0x93, 0x8c, 0x70, 0xca, 0xd3, 0x98, 0x71, 0x43, 0xb9, 0x33, 0xee, 0xaf, 0x59, 0x80, 0x96, + 0xbc, 0xc0, 0x25, 0xd1, 0x31, 0x6c, 0x9d, 0xfd, 0x2d, 0x86, 0xff, 0x4c, 0x9b, 0x16, 0x36, 0x5b, + 0x61, 0x40, 0x82, 0x64, 0x29, 0x0c, 0x5c, 0xbe, 0x9d, 0x7e, 0x1c, 0x06, 0x12, 0x5a, 0x15, 0x6f, + 0xd6, 0xd3, 0xf2, 0xb3, 0xd0, 0x0a, 0xf6, 0x77, 0x67, 0xcf, 0x74, 0x96, 0x60, 0x4d, 0x60, 0x65, + 0xd0, 0xc7, 0x60, 0x28, 0x4e, 0x9c, 0xa4, 0x1d, 0x8b, 0x86, 0x3e, 0x21, 0x1b, 0x5a, 0x67, 0xd0, + 0xfd, 0xdd, 0xd9, 0x49, 0x55, 0x8c, 0x83, 0xb0, 0x28, 0x80, 0x9e, 0x81, 0xe1, 0x26, 0x89, 0x63, + 0x67, 0x53, 0x0a, 0xb8, 0x49, 0x51, 0x76, 0xf8, 0x06, 0x07, 0x63, 0x89, 0x47, 0x4f, 0xc2, 0x20, + 0x89, 0xa2, 0x30, 0x12, 0x33, 0x62, 0x5c, 0x10, 0x0e, 0x2e, 0x53, 0x20, 0xe6, 0x38, 0xfb, 0x3f, + 0x59, 0x30, 0xa9, 0xda, 0xca, 0xeb, 0x3a, 0x86, 0x25, 0xef, 0x02, 0x34, 0x64, 0x07, 0x63, 0xb6, + 0xd0, 0xb4, 0x3a, 0xba, 0x4f, 0xbf, 0xce, 0x01, 0x4d, 0xeb, 0x50, 0xa0, 0x18, 0x6b, 0x7c, 0xed, + 0x7f, 0x63, 0xc1, 0xc9, 0x4c, 0xdf, 0xae, 0x7b, 0x71, 0x82, 0xde, 0xe8, 0xe8, 0xdf, 0x5c, 0xb1, + 0xfe, 0xd1, 0xd2, 0xac, 0x77, 0x6a, 0xbe, 0x48, 0x88, 0xd6, 0x37, 0x0c, 0x83, 0x5e, 0x42, 0x9a, + 0xb2, 0x5b, 0xcf, 0x17, 0xec, 0x16, 0x6f, 0x5f, 0xfa, 0x95, 0x56, 0x29, 0x0f, 0xcc, 0x59, 0xd9, + 0xff, 0xd3, 0x82, 0xca, 0x52, 0x18, 0x6c, 0x78, 0x9b, 0x37, 0x9c, 0xd6, 0x31, 0x7c, 0x9f, 0x3a, + 0x0c, 0x30, 0xee, 0xbc, 0x0b, 0x17, 0xf3, 0xba, 0x20, 0x1a, 0x36, 0x47, 0xf7, 0x54, 0xae, 0x2c, + 0x28, 0x31, 0x45, 0x41, 0x98, 0x31, 0x9b, 0x79, 0x19, 0x2a, 0x8a, 0x00, 0x4d, 0x41, 0xf9, 0x1e, + 0xe1, 0x9a, 0x64, 0x05, 0xd3, 0x9f, 0xe8, 0x14, 0x0c, 0x6e, 0x3b, 0x7e, 0x5b, 0x2c, 0x5e, 0xcc, + 0xff, 0x7c, 0xbc, 0x74, 0xd9, 0xb2, 0x7f, 0xc8, 0x56, 0xa0, 0xa8, 0x64, 0x39, 0xd8, 0x16, 0xc2, + 0xe1, 0x2b, 0x16, 0x9c, 0xf2, 0xbb, 0x08, 0x25, 0x31, 0x26, 0x87, 0x11, 0x67, 0x8f, 0x89, 0x66, + 0x9f, 0xea, 0x86, 0xc5, 0x5d, 0x6b, 0xa3, 0xb2, 0x3e, 0x6c, 0xd1, 0x09, 0xe7, 0xf8, 0xac, 0xe9, + 0x42, 0x07, 0xb8, 0x25, 0x60, 0x58, 0x61, 0xed, 0x3f, 0xb5, 0xe0, 0x94, 0xea, 0xc7, 0x35, 0xb2, + 0x53, 0x27, 0x3e, 0x69, 0x24, 0x61, 0xf4, 0x7e, 0xe9, 0xc9, 0xe3, 0xfc, 0x9b, 0x70, 0x99, 0x34, + 0x2a, 0x18, 0x94, 0xaf, 0x91, 0x1d, 0xfe, 0x81, 0xf4, 0x8e, 0x96, 0x0f, 0xec, 0xe8, 0x3f, 0xb7, + 0x60, 0x5c, 0x75, 0xf4, 0x18, 0x96, 0xdc, 0x75, 0x73, 0xc9, 0x7d, 0xb8, 0xe0, 0x7c, 0xed, 0xb1, + 0xd8, 0xfe, 0x6a, 0x89, 0x8a, 0x0d, 0x41, 0x53, 0x8b, 0x42, 0x3a, 0x48, 0x54, 0xe2, 0xbf, 0x4f, + 0xbe, 0x52, 0x7f, 0x9d, 0xbd, 0x46, 0x76, 0xd6, 0x42, 0xaa, 0x4d, 0x74, 0xef, 0xac, 0xf1, 0x51, + 0x07, 0x0e, 0xfc, 0xa8, 0xbf, 0x5b, 0x82, 0xd3, 0x6a, 0x58, 0x8c, 0x5d, 0xfa, 0xe7, 0x72, 0x60, + 0x2e, 0xc2, 0xa8, 0x4b, 0x36, 0x9c, 0xb6, 0x9f, 0xa8, 0xd3, 0xc4, 0x20, 0x3f, 0x66, 0x56, 0x53, + 0x30, 0xd6, 0x69, 0xfa, 0x18, 0xcb, 0x6f, 0x8e, 0x32, 0x79, 0x9e, 0x38, 0x74, 0xd6, 0x53, 0x0d, + 0x4f, 0x3b, 0x1e, 0x8e, 0xe9, 0xc7, 0x43, 0x71, 0x14, 0x7c, 0x12, 0x06, 0xbd, 0x26, 0xdd, 0xf3, + 0x4b, 0xe6, 0x56, 0xbe, 0x4a, 0x81, 0x98, 0xe3, 0xd0, 0x53, 0x30, 0xdc, 0x08, 0x9b, 0x4d, 0x27, + 0x70, 0xa7, 0xcb, 0x4c, 0xe7, 0x1c, 0xa5, 0x6a, 0xc1, 0x12, 0x07, 0x61, 0x89, 0x43, 0x8f, 0xc1, + 0x80, 0x13, 0x6d, 0xc6, 0xd3, 0x03, 0x8c, 0x66, 0x84, 0xd6, 0xb4, 0x10, 0x6d, 0xc6, 0x98, 0x41, + 0xa9, 0x2e, 0x79, 0x3f, 0x8c, 0xee, 0x79, 0xc1, 0x66, 0xd5, 0x8b, 0x98, 0x62, 0xa8, 0xe9, 0x92, + 0x77, 0x15, 0x06, 0x6b, 0x54, 0xa8, 0x06, 0x83, 0xad, 0x30, 0x4a, 0xe2, 0xe9, 0x21, 0x36, 0xf0, + 0xcf, 0xe5, 0x2e, 0x3f, 0xde, 0xef, 0x5a, 0x18, 0x25, 0x69, 0x57, 0xe8, 0xbf, 0x18, 0x73, 0x46, + 0x68, 0x09, 0xca, 0x24, 0xd8, 0x9e, 0x1e, 0x66, 0xfc, 0x3e, 0x74, 0x30, 0xbf, 0xe5, 0x60, 0xfb, + 0x8e, 0x13, 0xa5, 0xf2, 0x6a, 0x39, 0xd8, 0xc6, 0xb4, 0x34, 0x6a, 0x40, 0x45, 0x9a, 0xb0, 0xe2, + 0xe9, 0x91, 0x22, 0x53, 0x11, 0x0b, 0x72, 0x4c, 0xde, 0x69, 0x7b, 0x11, 0x69, 0x92, 0x20, 0x89, + 0xd3, 0x83, 0x95, 0xc4, 0xc6, 0x38, 0xe5, 0x8b, 0x1a, 0x30, 0xc6, 0xf5, 0xcf, 0x1b, 0x61, 0x3b, + 0x48, 0xe2, 0xe9, 0x0a, 0x6b, 0x72, 0x8e, 0xe5, 0xe2, 0x4e, 0x5a, 0x62, 0xf1, 0x94, 0x60, 0x3f, + 0xa6, 0x01, 0x63, 0x6c, 0x30, 0x45, 0x6f, 0xc0, 0xb8, 0xef, 0x6d, 0x93, 0x80, 0xc4, 0x71, 0x2d, + 0x0a, 0xd7, 0xc9, 0x34, 0xb0, 0xde, 0x3c, 0x99, 0x77, 0x8a, 0x0f, 0xd7, 0xc9, 0xe2, 0x89, 0xbd, + 0xdd, 0xd9, 0xf1, 0xeb, 0x7a, 0x69, 0x6c, 0x32, 0x43, 0x6f, 0xc2, 0x04, 0x55, 0x76, 0xbd, 0x94, + 0xfd, 0x68, 0x71, 0xf6, 0x68, 0x6f, 0x77, 0x76, 0x02, 0x1b, 0xc5, 0x71, 0x86, 0x1d, 0x5a, 0x83, + 0x8a, 0xef, 0x6d, 0x90, 0xc6, 0x4e, 0xc3, 0x27, 0xd3, 0x63, 0x8c, 0x77, 0xce, 0xe2, 0xbc, 0x2e, + 0xc9, 0xf9, 0x01, 0x43, 0xfd, 0xc5, 0x29, 0x23, 0x74, 0x07, 0xce, 0x24, 0x24, 0x6a, 0x7a, 0x81, + 0x43, 0x17, 0x95, 0xd0, 0x7e, 0x99, 0xa9, 0x64, 0x9c, 0xcd, 0xda, 0xb3, 0x62, 0x60, 0xcf, 0xac, + 0x75, 0xa5, 0xc2, 0x3d, 0x4a, 0xa3, 0x5b, 0x30, 0xc9, 0xd6, 0x53, 0xad, 0xed, 0xfb, 0xb5, 0xd0, + 0xf7, 0x1a, 0x3b, 0xd3, 0x13, 0x8c, 0xe1, 0x53, 0xd2, 0x00, 0xb2, 0x6a, 0xa2, 0xe9, 0xc1, 0x30, + 0xfd, 0x87, 0xb3, 0xa5, 0x91, 0x0f, 0x93, 0x31, 0x69, 0xb4, 0x23, 0x2f, 0xd9, 0xa1, 0x73, 0x9f, + 0x3c, 0x48, 0xa6, 0x27, 0x8b, 0x1c, 0x74, 0xeb, 0x66, 0x21, 0x6e, 0x7d, 0xca, 0x00, 0x71, 0x96, + 0x35, 0x15, 0x15, 0x71, 0xe2, 0x7a, 0xc1, 0xf4, 0x14, 0x93, 0x40, 0x6a, 0x7d, 0xd5, 0x29, 0x10, + 0x73, 0x1c, 0xb3, 0x1f, 0xd0, 0x1f, 0xb7, 0xa8, 0x94, 0x3e, 0xc1, 0x08, 0x53, 0xfb, 0x81, 0x44, + 0xe0, 0x94, 0x86, 0xaa, 0x06, 0x49, 0xb2, 0x33, 0x8d, 0x18, 0xa9, 0x5a, 0x6a, 0x6b, 0x6b, 0x9f, + 0xc1, 0x14, 0x8e, 0xee, 0xc0, 0x30, 0x09, 0xb6, 0x57, 0xa2, 0xb0, 0x39, 0x7d, 0xb2, 0x88, 0x0c, + 0x58, 0xe6, 0xc4, 0x7c, 0xff, 0x48, 0x8f, 0x30, 0x02, 0x8c, 0x25, 0x33, 0xf4, 0x00, 0xa6, 0xbb, + 0x7c, 0x25, 0xfe, 0x51, 0x4e, 0xb1, 0x8f, 0xf2, 0x09, 0x51, 0x76, 0x7a, 0xad, 0x07, 0xdd, 0xfe, + 0x01, 0x38, 0xdc, 0x93, 0xbb, 0xbd, 0x0e, 0x13, 0x4a, 0x50, 0xb1, 0xef, 0x8d, 0x66, 0x61, 0x90, + 0xca, 0x62, 0x79, 0xa0, 0xaf, 0xd0, 0x41, 0xa5, 0x22, 0x3a, 0xc6, 0x1c, 0xce, 0x06, 0xd5, 0xfb, + 0x02, 0x59, 0xdc, 0x49, 0x08, 0x3f, 0xd8, 0x95, 0xb5, 0x41, 0x95, 0x08, 0x9c, 0xd2, 0xd8, 0xff, + 0x9b, 0xab, 0x49, 0xa9, 0x34, 0x2c, 0xb0, 0x13, 0x5c, 0x80, 0x91, 0xad, 0x30, 0x4e, 0x28, 0x35, + 0xab, 0x63, 0x30, 0x55, 0x8c, 0xae, 0x0a, 0x38, 0x56, 0x14, 0xe8, 0x15, 0x18, 0x6f, 0xe8, 0x15, + 0x88, 0x6d, 0xec, 0xb4, 0x28, 0x62, 0xd6, 0x8e, 0x4d, 0x5a, 0x74, 0x19, 0x46, 0x98, 0x95, 0xbb, + 0x11, 0xfa, 0xe2, 0x08, 0x29, 0x77, 0xe5, 0x91, 0x9a, 0x80, 0xef, 0x6b, 0xbf, 0xb1, 0xa2, 0xa6, + 0x07, 0x71, 0xda, 0x84, 0xd5, 0x9a, 0xd8, 0x40, 0xd4, 0x41, 0xfc, 0x2a, 0x83, 0x62, 0x81, 0xb5, + 0xff, 0x69, 0x49, 0x1b, 0x65, 0x7a, 0x00, 0x22, 0xe8, 0xb3, 0x30, 0x7c, 0xdf, 0xf1, 0x12, 0x2f, + 0xd8, 0x14, 0xda, 0xc3, 0x0b, 0x05, 0x77, 0x13, 0x56, 0xfc, 0x2e, 0x2f, 0xca, 0x77, 0x3e, 0xf1, + 0x07, 0x4b, 0x86, 0x94, 0x77, 0xd4, 0x0e, 0x02, 0xca, 0xbb, 0xd4, 0x3f, 0x6f, 0xcc, 0x8b, 0x72, + 0xde, 0xe2, 0x0f, 0x96, 0x0c, 0xd1, 0x06, 0x80, 0x9c, 0x4b, 0xc4, 0x15, 0xd6, 0xe5, 0x8f, 0xf6, + 0xc3, 0x7e, 0x4d, 0x95, 0x5e, 0x9c, 0xa0, 0x7b, 0x6d, 0xfa, 0x1f, 0x6b, 0x9c, 0xed, 0x84, 0x29, + 0x61, 0x9d, 0xcd, 0x42, 0x9f, 0xa3, 0x4b, 0xda, 0x89, 0x12, 0xe2, 0x2e, 0x24, 0x59, 0x03, 0xfd, + 0xc1, 0x2a, 0xf6, 0x9a, 0xd7, 0x24, 0xfa, 0xf2, 0x17, 0x4c, 0x70, 0xca, 0xcf, 0xfe, 0x5e, 0x19, + 0xa6, 0x7b, 0x35, 0x97, 0x4e, 0x49, 0xf2, 0xc0, 0x4b, 0x96, 0xa8, 0x9a, 0x64, 0x99, 0x53, 0x72, + 0x59, 0xc0, 0xb1, 0xa2, 0xa0, 0x73, 0x23, 0xf6, 0x36, 0xe5, 0x61, 0x69, 0x30, 0x9d, 0x1b, 0x75, + 0x06, 0xc5, 0x02, 0x4b, 0xe9, 0x22, 0xe2, 0xc4, 0xe2, 0x72, 0x43, 0x9b, 0x43, 0x98, 0x41, 0xb1, + 0xc0, 0xea, 0x06, 0x91, 0x81, 0x1c, 0x83, 0x88, 0x31, 0x44, 0x83, 0x0f, 0x77, 0x88, 0xd0, 0xe7, + 0x01, 0x36, 0xbc, 0xc0, 0x8b, 0xb7, 0x18, 0xf7, 0xa1, 0xbe, 0xb9, 0x2b, 0x25, 0x6b, 0x45, 0x71, + 0xc1, 0x1a, 0x47, 0xf4, 0x12, 0x8c, 0xaa, 0xe5, 0xb9, 0x5a, 0x9d, 0x1e, 0x36, 0x0d, 0xe2, 0xa9, + 0xac, 0xaa, 0x62, 0x9d, 0xce, 0x7e, 0x3b, 0x3b, 0x5f, 0xc4, 0xaa, 0xd0, 0xc6, 0xd7, 0x2a, 0x3a, + 0xbe, 0xa5, 0x83, 0xc7, 0xd7, 0xfe, 0x8f, 0x65, 0x98, 0x34, 0x2a, 0x6b, 0xc7, 0x05, 0x24, 0xda, + 0x6b, 0x74, 0xc3, 0x72, 0x12, 0x22, 0xd6, 0xe4, 0x85, 0x7e, 0x16, 0x8d, 0xbe, 0xbd, 0xd1, 0xb5, + 0xc0, 0x39, 0xa1, 0x2d, 0xa8, 0xf8, 0x4e, 0xcc, 0x4c, 0x2a, 0x44, 0xac, 0xc5, 0xfe, 0xd8, 0xa6, + 0xc7, 0x0f, 0x27, 0x4e, 0xb4, 0xdd, 0x83, 0xd7, 0x92, 0x32, 0xa7, 0xbb, 0x2d, 0x55, 0x76, 0xe4, + 0x8d, 0x9a, 0x6a, 0x0e, 0xd5, 0x88, 0x76, 0x30, 0xc7, 0xa1, 0xcb, 0x30, 0x16, 0x11, 0x36, 0x53, + 0x96, 0xa8, 0x3e, 0xc7, 0xa6, 0xde, 0x60, 0xaa, 0xf8, 0x61, 0x0d, 0x87, 0x0d, 0xca, 0x54, 0xef, + 0x1f, 0x3a, 0x40, 0xef, 0x7f, 0x06, 0x86, 0xd9, 0x0f, 0x35, 0x2b, 0xd4, 0x17, 0x5a, 0xe5, 0x60, + 0x2c, 0xf1, 0xd9, 0x49, 0x34, 0x52, 0x70, 0x12, 0x3d, 0x0b, 0x13, 0x55, 0x87, 0x34, 0xc3, 0x60, + 0x39, 0x70, 0x5b, 0xa1, 0x17, 0x24, 0x68, 0x1a, 0x06, 0xd8, 0x7e, 0xc2, 0xd7, 0xfb, 0x00, 0xe5, + 0x80, 0x07, 0xa8, 0xee, 0x6e, 0xff, 0x1f, 0x0b, 0xc6, 0xab, 0xc4, 0x27, 0x09, 0xe1, 0xe7, 0x9e, + 0x18, 0xad, 0x00, 0xda, 0x8c, 0x9c, 0x06, 0xa9, 0x91, 0xc8, 0x0b, 0xdd, 0x3a, 0x69, 0x84, 0x01, + 0xbb, 0x88, 0xa2, 0x1b, 0xe4, 0x99, 0xbd, 0xdd, 0x59, 0x74, 0xa5, 0x03, 0x8b, 0xbb, 0x94, 0x40, + 0x2e, 0x8c, 0xb7, 0x22, 0x62, 0xd8, 0x0d, 0xad, 0x7c, 0x55, 0xa3, 0xa6, 0x17, 0xe1, 0xda, 0xb0, + 0x01, 0xc2, 0x26, 0x53, 0xf4, 0x29, 0x98, 0x0a, 0xa3, 0xd6, 0x96, 0x13, 0x54, 0x49, 0x8b, 0x04, + 0x2e, 0x3d, 0x02, 0x08, 0x6b, 0xc7, 0xa9, 0xbd, 0xdd, 0xd9, 0xa9, 0x5b, 0x19, 0x1c, 0xee, 0xa0, + 0xb6, 0xdf, 0x81, 0xd3, 0xd5, 0xf0, 0x7e, 0x70, 0xdf, 0x89, 0xdc, 0x85, 0xda, 0xaa, 0x66, 0x40, + 0x78, 0x5d, 0x1e, 0x50, 0xf9, 0x25, 0x5c, 0xce, 0xee, 0xa3, 0xf1, 0xe0, 0x47, 0x83, 0x15, 0xcf, + 0x27, 0x3d, 0x4c, 0x16, 0xff, 0xa0, 0x64, 0xd4, 0x99, 0xd2, 0xab, 0xfb, 0x05, 0xab, 0xe7, 0xfd, + 0xc2, 0xe7, 0x60, 0x64, 0xc3, 0x23, 0xbe, 0x8b, 0xc9, 0x86, 0x18, 0xd1, 0x8b, 0x45, 0x2e, 0x60, + 0x56, 0x68, 0x19, 0x69, 0xc1, 0xe2, 0x07, 0xdd, 0x15, 0xc1, 0x06, 0x2b, 0x86, 0xa8, 0x0d, 0x53, + 0xf2, 0xac, 0x24, 0xb1, 0x62, 0x41, 0xbe, 0x50, 0xec, 0x28, 0x66, 0x56, 0xc3, 0x3e, 0x01, 0xce, + 0x30, 0xc4, 0x1d, 0x55, 0xd0, 0x33, 0x6e, 0x93, 0x6e, 0x47, 0x03, 0x6c, 0x7a, 0xb2, 0x33, 0x2e, + 0x3b, 0xae, 0x33, 0xa8, 0xfd, 0x77, 0x2c, 0x78, 0xa4, 0x63, 0xb4, 0x84, 0x2d, 0xe3, 0xc8, 0xbe, + 0x51, 0xd6, 0xa0, 0x50, 0xca, 0x37, 0x28, 0xd8, 0xb7, 0xe0, 0xd4, 0x72, 0xb3, 0x95, 0xec, 0x54, + 0x3d, 0xf3, 0x5a, 0xe4, 0x65, 0x18, 0x6a, 0x12, 0xd7, 0x6b, 0x37, 0xc5, 0x67, 0x9d, 0x95, 0xb2, + 0xfb, 0x06, 0x83, 0xee, 0xef, 0xce, 0x8e, 0xd7, 0x93, 0x30, 0x72, 0x36, 0x09, 0x07, 0x60, 0x41, + 0x6e, 0xbf, 0x6b, 0xc1, 0xa4, 0x5c, 0xc3, 0x0b, 0xae, 0x1b, 0x91, 0x38, 0x46, 0x33, 0x50, 0xf2, + 0x5a, 0x82, 0x11, 0x08, 0x46, 0xa5, 0xd5, 0x1a, 0x2e, 0x79, 0x2d, 0xf4, 0x59, 0xa8, 0xf0, 0xdb, + 0xb4, 0x74, 0x72, 0xf4, 0x79, 0x3b, 0xc7, 0xce, 0x6f, 0x6b, 0x92, 0x07, 0x4e, 0xd9, 0x49, 0x4d, + 0x96, 0xed, 0x0e, 0x65, 0xf3, 0x6e, 0xe7, 0xaa, 0x80, 0x63, 0x45, 0x81, 0xce, 0xc3, 0x48, 0x10, + 0xba, 0xfc, 0xc2, 0x93, 0xef, 0xf3, 0x6c, 0xca, 0xdd, 0x14, 0x30, 0xac, 0xb0, 0xf6, 0xd7, 0x2c, + 0x18, 0x93, 0x7d, 0x2c, 0xa8, 0x54, 0xd3, 0x45, 0x92, 0x2a, 0xd4, 0xe9, 0x22, 0xa1, 0x4a, 0x31, + 0xc3, 0x18, 0xba, 0x70, 0xb9, 0x1f, 0x5d, 0xd8, 0xfe, 0x8d, 0x12, 0x4c, 0xc8, 0xe6, 0xd4, 0xdb, + 0xeb, 0x31, 0xa1, 0xaa, 0x42, 0xc5, 0xe1, 0x83, 0x4f, 0xe4, 0x3c, 0x7b, 0x3e, 0xef, 0xbc, 0x64, + 0x7c, 0xb3, 0x54, 0x15, 0x59, 0x90, 0x7c, 0x70, 0xca, 0x12, 0x6d, 0xc3, 0x89, 0x20, 0x4c, 0xd8, + 0x16, 0xa4, 0xf0, 0xc5, 0x6e, 0x23, 0xb2, 0xf5, 0x3c, 0x2a, 0xea, 0x39, 0x71, 0x33, 0xcb, 0x0f, + 0x77, 0x56, 0x81, 0x6e, 0x49, 0x3b, 0x50, 0x99, 0xd5, 0xf5, 0x6c, 0xb1, 0xba, 0x7a, 0x9b, 0x81, + 0xec, 0xdf, 0xb1, 0xa0, 0x22, 0xc9, 0x8e, 0xe3, 0x5a, 0xea, 0x2e, 0x0c, 0xc7, 0xec, 0x13, 0xc9, + 0xe1, 0xba, 0x50, 0xac, 0x0b, 0xfc, 0xbb, 0xa6, 0xfb, 0x2e, 0xff, 0x1f, 0x63, 0xc9, 0x8d, 0x19, + 0xc4, 0x55, 0x47, 0xde, 0x77, 0x06, 0x71, 0xd5, 0xb2, 0xde, 0xb7, 0x4f, 0xe3, 0xc6, 0x89, 0x9d, + 0x2a, 0x8f, 0xad, 0x88, 0x6c, 0x78, 0x0f, 0xb2, 0xca, 0x63, 0x8d, 0x41, 0xb1, 0xc0, 0xa2, 0x0d, + 0x18, 0x6b, 0x48, 0x93, 0x71, 0x2a, 0x42, 0x3e, 0x52, 0xd0, 0x3e, 0xaf, 0xae, 0x7a, 0xb8, 0xfb, + 0xd0, 0x92, 0xc6, 0x09, 0x1b, 0x7c, 0xa9, 0x9c, 0x4a, 0x6f, 0xb3, 0xcb, 0x05, 0x8d, 0x2b, 0x11, + 0x49, 0xd2, 0x1a, 0x7a, 0x5e, 0x64, 0xdb, 0xdf, 0xb2, 0x60, 0x88, 0xdb, 0x18, 0x8b, 0x19, 0x6a, + 0xb5, 0x4b, 0xac, 0x74, 0x3c, 0xef, 0x50, 0xa0, 0xb8, 0xd3, 0x42, 0x77, 0xa1, 0xc2, 0x7e, 0x30, + 0x7b, 0x49, 0xb9, 0x88, 0x2f, 0x15, 0xaf, 0x5f, 0x6f, 0xea, 0x1d, 0xc9, 0x00, 0xa7, 0xbc, 0xec, + 0x1f, 0x94, 0xa9, 0xe8, 0x4b, 0x49, 0x8d, 0xbd, 0xdd, 0x3a, 0x8e, 0xbd, 0xbd, 0x74, 0xf4, 0x7b, + 0xfb, 0x3b, 0x30, 0xd9, 0xd0, 0x2e, 0xd1, 0xd2, 0x2f, 0x7e, 0xa9, 0xe0, 0xb4, 0xd2, 0x6e, 0xde, + 0xb8, 0x4d, 0x6d, 0xc9, 0x64, 0x87, 0xb3, 0xfc, 0x11, 0x81, 0x31, 0x3e, 0x1f, 0x44, 0x7d, 0x03, + 0xac, 0xbe, 0xf9, 0x22, 0x33, 0x4c, 0xaf, 0x8c, 0xcd, 0xe2, 0xba, 0xc6, 0x08, 0x1b, 0x6c, 0xed, + 0xbf, 0x3e, 0x08, 0x83, 0xcb, 0xdb, 0x24, 0x48, 0x8e, 0x41, 0xd4, 0x35, 0x61, 0xc2, 0x0b, 0xb6, + 0x43, 0x7f, 0x9b, 0xb8, 0x1c, 0x7f, 0xb8, 0xed, 0xfd, 0x8c, 0xa8, 0x64, 0x62, 0xd5, 0x60, 0x86, + 0x33, 0xcc, 0x8f, 0xe2, 0x34, 0xff, 0x1a, 0x0c, 0xf1, 0x99, 0x21, 0x8e, 0xf2, 0x39, 0x36, 0x77, + 0x36, 0xb0, 0x62, 0x05, 0xa5, 0x36, 0x07, 0x6e, 0xee, 0x17, 0x8c, 0xd0, 0xdb, 0x30, 0xb1, 0xe1, + 0x45, 0x71, 0x42, 0x0f, 0xe4, 0x71, 0xe2, 0x34, 0x5b, 0x87, 0x38, 0xc7, 0xab, 0x11, 0x59, 0x31, + 0x38, 0xe1, 0x0c, 0x67, 0xb4, 0x09, 0xe3, 0xf4, 0x18, 0x99, 0x56, 0x35, 0xdc, 0x77, 0x55, 0xca, + 0x8c, 0x77, 0x5d, 0x67, 0x84, 0x4d, 0xbe, 0x54, 0x24, 0x35, 0xd8, 0xb1, 0x73, 0x84, 0x69, 0x37, + 0x4a, 0x24, 0xf1, 0xf3, 0x26, 0xc7, 0x51, 0xc9, 0xc6, 0xbc, 0x59, 0x2a, 0xa6, 0x64, 0x4b, 0x7d, + 0x56, 0xec, 0xef, 0xd0, 0xbd, 0x98, 0x8e, 0xe1, 0x31, 0x6c, 0x5f, 0x57, 0xcd, 0xed, 0xeb, 0xc9, + 0x02, 0x5f, 0xb6, 0xc7, 0xd6, 0xf5, 0x16, 0x8c, 0x6a, 0x1f, 0x1e, 0xcd, 0x43, 0xa5, 0x21, 0x1d, + 0x2e, 0x84, 0x14, 0x57, 0xaa, 0x94, 0xf2, 0xc4, 0xc0, 0x29, 0x0d, 0x1d, 0x17, 0xaa, 0x82, 0x66, + 0xdd, 0xb3, 0xa8, 0x82, 0x8a, 0x19, 0xc6, 0x7e, 0x01, 0x60, 0xf9, 0x01, 0x69, 0x2c, 0xf0, 0x23, + 0x9e, 0x76, 0x07, 0x67, 0xf5, 0xbe, 0x83, 0xb3, 0xbf, 0x6d, 0xc1, 0xc4, 0xca, 0x92, 0xa1, 0xd3, + 0xcf, 0x01, 0x70, 0xdd, 0xf8, 0xee, 0xdd, 0x9b, 0xd2, 0xc6, 0xcc, 0x0d, 0x81, 0x0a, 0x8a, 0x35, + 0x0a, 0xf4, 0x28, 0x94, 0xfd, 0x76, 0x20, 0x54, 0xd6, 0xe1, 0xbd, 0xdd, 0xd9, 0xf2, 0xf5, 0x76, + 0x80, 0x29, 0x4c, 0xf3, 0x83, 0x2a, 0x17, 0xf6, 0x83, 0xca, 0xf7, 0x08, 0xfe, 0x46, 0x19, 0xa6, + 0x56, 0x7c, 0xf2, 0xc0, 0x68, 0xf5, 0xd3, 0x30, 0xe4, 0x46, 0xde, 0x36, 0x89, 0xb2, 0x8a, 0x40, + 0x95, 0x41, 0xb1, 0xc0, 0x16, 0x76, 0xcd, 0x7a, 0xb3, 0x73, 0x23, 0x3f, 0x3a, 0xb7, 0xb4, 0xdc, + 0x3e, 0xa3, 0x0d, 0x18, 0xe6, 0x77, 0xb6, 0xf1, 0xf4, 0x20, 0x9b, 0x8a, 0xaf, 0x1c, 0xdc, 0x98, + 0xec, 0xf8, 0xcc, 0x09, 0x1b, 0x08, 0x77, 0x8a, 0x51, 0xb2, 0x4c, 0x40, 0xb1, 0x64, 0x3e, 0xf3, + 0x71, 0x18, 0xd3, 0x29, 0xfb, 0xf2, 0x8e, 0xf9, 0xf3, 0x16, 0x9c, 0x5c, 0xf1, 0xc3, 0xc6, 0xbd, + 0x8c, 0xef, 0xdc, 0x4b, 0x30, 0x4a, 0x17, 0x53, 0x6c, 0x38, 0x96, 0x1a, 0x1e, 0xb4, 0x02, 0x85, + 0x75, 0x3a, 0xad, 0xd8, 0xed, 0xdb, 0xab, 0xd5, 0x6e, 0x8e, 0xb7, 0x02, 0x85, 0x75, 0x3a, 0xfb, + 0xf7, 0x2c, 0x78, 0xfc, 0xca, 0xd2, 0x72, 0x8d, 0x44, 0xb1, 0x17, 0x27, 0x24, 0x48, 0x3a, 0x7c, + 0x7f, 0xa9, 0xce, 0xe8, 0x6a, 0x4d, 0x49, 0x75, 0xc6, 0x2a, 0x6b, 0x85, 0xc0, 0xbe, 0x5f, 0x1c, + 0xe0, 0xbf, 0x65, 0xc1, 0xc9, 0x2b, 0x5e, 0x82, 0x49, 0x2b, 0xcc, 0xba, 0xeb, 0x46, 0xa4, 0x15, + 0xc6, 0x5e, 0x12, 0x46, 0x3b, 0x59, 0x77, 0x5d, 0xac, 0x30, 0x58, 0xa3, 0xe2, 0x35, 0x6f, 0x7b, + 0x31, 0x6d, 0x69, 0xc9, 0x3c, 0xea, 0x62, 0x01, 0xc7, 0x8a, 0x82, 0x76, 0xcc, 0xf5, 0x22, 0xa6, + 0x32, 0xec, 0x88, 0x15, 0xac, 0x3a, 0x56, 0x95, 0x08, 0x9c, 0xd2, 0xd8, 0x7f, 0xd3, 0x82, 0xd3, + 0x57, 0xfc, 0x76, 0x9c, 0x90, 0x68, 0x23, 0x36, 0x1a, 0xfb, 0x02, 0x54, 0x88, 0x54, 0xee, 0x45, + 0x5b, 0xd5, 0xa6, 0xa1, 0xb4, 0x7e, 0xee, 0x2b, 0xac, 0xe8, 0x0a, 0xb8, 0xa4, 0xf6, 0xe7, 0x40, + 0xf9, 0x9b, 0x25, 0x18, 0xbf, 0xba, 0xb6, 0x56, 0xbb, 0x42, 0x12, 0x21, 0x25, 0xf3, 0x8d, 0x52, + 0x58, 0x3b, 0x91, 0x1f, 0xa4, 0xfc, 0xb4, 0x13, 0xcf, 0x9f, 0xe3, 0x21, 0x1d, 0x73, 0xab, 0x41, + 0x72, 0x2b, 0xaa, 0x27, 0x91, 0x17, 0x6c, 0x76, 0x3d, 0xc3, 0x4b, 0x59, 0x5e, 0xee, 0x25, 0xcb, + 0xd1, 0x0b, 0x30, 0xc4, 0x62, 0x4a, 0xa4, 0xf2, 0xf1, 0x41, 0xa5, 0x27, 0x30, 0xe8, 0xfe, 0xee, + 0x6c, 0xe5, 0x36, 0x5e, 0xe5, 0x7f, 0xb0, 0x20, 0x45, 0x6f, 0xc2, 0xe8, 0x56, 0x92, 0xb4, 0xae, + 0x12, 0xc7, 0x25, 0x91, 0x94, 0x13, 0xe7, 0x0f, 0x96, 0x13, 0x74, 0x38, 0x78, 0x81, 0x74, 0x69, + 0xa5, 0xb0, 0x18, 0xeb, 0x1c, 0xed, 0x3a, 0x40, 0x8a, 0x7b, 0x48, 0x67, 0x10, 0xfb, 0x17, 0x4b, + 0x30, 0x7c, 0xd5, 0x09, 0x5c, 0x9f, 0x44, 0x68, 0x05, 0x06, 0xc8, 0x03, 0xd2, 0x10, 0x1b, 0x79, + 0x4e, 0xd3, 0xd3, 0xcd, 0x8e, 0xdb, 0xd5, 0xe8, 0x7f, 0xcc, 0xca, 0x23, 0x0c, 0xc3, 0xb4, 0xdd, + 0x57, 0x94, 0x27, 0xf7, 0x73, 0xf9, 0xa3, 0xa0, 0x26, 0x05, 0xdf, 0x29, 0x05, 0x08, 0x4b, 0x46, + 0xcc, 0x02, 0xd5, 0x68, 0xd5, 0xa9, 0x78, 0x4b, 0x8a, 0x9d, 0xec, 0xd6, 0x96, 0x6a, 0x9c, 0x5c, + 0xf0, 0xe5, 0x16, 0x28, 0x09, 0xc4, 0x29, 0x3b, 0xfb, 0x32, 0x9c, 0x62, 0x77, 0xa6, 0x4e, 0xb2, + 0x65, 0xac, 0x9a, 0xdc, 0xe9, 0x69, 0xff, 0xa8, 0x04, 0x27, 0x56, 0xeb, 0x4b, 0x75, 0xd3, 0x76, + 0x78, 0x19, 0xc6, 0xf8, 0x06, 0x4d, 0x27, 0x9d, 0xe3, 0x8b, 0xf2, 0xca, 0xce, 0xbf, 0xa6, 0xe1, + 0xb0, 0x41, 0x89, 0x1e, 0x87, 0xb2, 0xf7, 0x4e, 0x90, 0xf5, 0xbc, 0x5b, 0x7d, 0xed, 0x26, 0xa6, + 0x70, 0x8a, 0xa6, 0x7b, 0x3d, 0x17, 0x72, 0x0a, 0xad, 0xf6, 0xfb, 0x57, 0x61, 0xc2, 0x8b, 0x1b, + 0xb1, 0xb7, 0x1a, 0x50, 0x09, 0xe0, 0x34, 0xe4, 0xf4, 0x4d, 0x95, 0x73, 0xda, 0x54, 0x85, 0xc5, + 0x19, 0x6a, 0x4d, 0xe2, 0x0e, 0x16, 0xd6, 0x17, 0x72, 0x5d, 0xba, 0xa9, 0x2a, 0xd4, 0x62, 0xbd, + 0x8b, 0x99, 0x1f, 0x8f, 0x50, 0x85, 0x78, 0x87, 0x63, 0x2c, 0x71, 0xf6, 0xdb, 0x50, 0x51, 0xae, + 0x58, 0xd2, 0x03, 0xd1, 0xea, 0xe1, 0x81, 0x98, 0x2f, 0x99, 0xa4, 0xe1, 0xb7, 0xdc, 0xd5, 0xf0, + 0xfb, 0x8f, 0x2c, 0x48, 0x7d, 0x49, 0x10, 0x86, 0x4a, 0x2b, 0x64, 0x17, 0x39, 0x91, 0xbc, 0x31, + 0x7d, 0x2a, 0x67, 0xc2, 0xf2, 0x05, 0xc3, 0xa7, 0x54, 0x4d, 0x96, 0xc5, 0x29, 0x1b, 0x74, 0x1d, + 0x86, 0x5b, 0x11, 0xa9, 0x27, 0x2c, 0x7c, 0xa0, 0x0f, 0x8e, 0x7c, 0x6c, 0x78, 0x49, 0x2c, 0x59, + 0xd8, 0xff, 0xc2, 0x02, 0xb8, 0xee, 0x35, 0xbd, 0x04, 0x3b, 0xc1, 0x26, 0x39, 0x86, 0x53, 0xe1, + 0x4d, 0x18, 0x88, 0x5b, 0xa4, 0x51, 0xec, 0x2a, 0x2e, 0x6d, 0x59, 0xbd, 0x45, 0x1a, 0xe9, 0xe7, + 0xa0, 0xff, 0x30, 0xe3, 0x63, 0x7f, 0x1f, 0x60, 0x22, 0x25, 0xa3, 0x9a, 0x39, 0x7a, 0xde, 0xf0, + 0x9b, 0x7f, 0x34, 0xe3, 0x37, 0x5f, 0x61, 0xd4, 0x9a, 0xab, 0x7c, 0x02, 0xe5, 0xa6, 0xf3, 0x40, + 0x1c, 0x04, 0x5e, 0x2a, 0xda, 0x20, 0x5a, 0xd3, 0xdc, 0x0d, 0xe7, 0x01, 0xd7, 0xbb, 0x9e, 0x93, + 0x13, 0xe9, 0x86, 0xf3, 0x60, 0x9f, 0x5f, 0xb8, 0xb1, 0x05, 0x4b, 0x4f, 0x1e, 0x5f, 0xfe, 0xa3, + 0xf4, 0x3f, 0x93, 0xa1, 0xb4, 0x3a, 0x56, 0xab, 0x17, 0x08, 0x3b, 0x66, 0x9f, 0xb5, 0x7a, 0x41, + 0xb6, 0x56, 0x2f, 0x28, 0x50, 0xab, 0xc7, 0x1c, 0x4c, 0x87, 0x85, 0xf9, 0x9f, 0x79, 0xe7, 0x8d, + 0x5e, 0xfa, 0x58, 0x5f, 0x55, 0x8b, 0x7b, 0x04, 0x5e, 0xfd, 0xbc, 0x54, 0x36, 0x05, 0x34, 0xb7, + 0x09, 0xb2, 0x6a, 0xf4, 0x6b, 0x16, 0x4c, 0x88, 0xdf, 0x98, 0xbc, 0xd3, 0x26, 0x71, 0x22, 0x36, + 0xb5, 0x4f, 0x1d, 0xa6, 0x35, 0x82, 0x05, 0x6f, 0xd4, 0x47, 0xa5, 0x44, 0x32, 0x91, 0xb9, 0x6d, + 0xcb, 0xb4, 0x07, 0x7d, 0xdf, 0x82, 0x53, 0x4d, 0xe7, 0x01, 0xaf, 0x91, 0xc3, 0xb0, 0x93, 0x78, + 0xa1, 0xf0, 0x40, 0x5c, 0xe9, 0x77, 0x9e, 0x74, 0x30, 0xe2, 0xcd, 0x95, 0xce, 0x45, 0xa7, 0xba, + 0x91, 0xe4, 0x36, 0xba, 0x6b, 0x0b, 0x67, 0x36, 0x60, 0x44, 0x4e, 0xcc, 0x2e, 0x6a, 0x7e, 0x55, + 0xdf, 0xbb, 0x73, 0x0e, 0xd5, 0x73, 0xd2, 0x34, 0x36, 0xf7, 0x5a, 0xdb, 0x09, 0x12, 0x2f, 0xd9, + 0xd1, 0x8e, 0x05, 0xac, 0x1e, 0x31, 0x15, 0x8f, 0xb4, 0x9e, 0xb7, 0x61, 0x4c, 0x9f, 0x77, 0x47, + 0x5a, 0xd7, 0x3b, 0x70, 0xb2, 0xcb, 0xac, 0x3a, 0xd2, 0x2a, 0xef, 0xc3, 0xa3, 0x3d, 0xe7, 0xc7, + 0x51, 0x56, 0x6c, 0xff, 0xa6, 0xa5, 0x8b, 0xce, 0x63, 0x30, 0xba, 0xdc, 0x30, 0x8d, 0x2e, 0xe7, + 0x8b, 0xae, 0xa1, 0x1e, 0x96, 0x97, 0x0d, 0xbd, 0xf9, 0x74, 0x4b, 0x40, 0x6b, 0x30, 0xe4, 0x53, + 0x88, 0xbc, 0xf3, 0xba, 0xd0, 0xcf, 0x2a, 0x4d, 0x95, 0x12, 0x06, 0x8f, 0xb1, 0xe0, 0x65, 0x7f, + 0xdf, 0x82, 0x81, 0x9f, 0x62, 0x54, 0x4f, 0x07, 0x6b, 0x11, 0x9c, 0x3e, 0x87, 0x9d, 0xfb, 0xcb, + 0x0f, 0x12, 0x12, 0xc4, 0x4c, 0x07, 0xed, 0x75, 0x6b, 0x3f, 0x4a, 0xab, 0x92, 0x8e, 0x12, 0xaf, + 0xc0, 0xb8, 0xef, 0xac, 0x13, 0x5f, 0x1a, 0x8c, 0xb3, 0x27, 0xb6, 0xeb, 0x3a, 0x12, 0x9b, 0xb4, + 0xb4, 0xf0, 0x86, 0x6e, 0x4f, 0x17, 0x4a, 0x92, 0x2a, 0x6c, 0x18, 0xdb, 0xb1, 0x49, 0x4b, 0x8f, + 0x0c, 0xf7, 0x9d, 0xa4, 0xb1, 0x25, 0x4e, 0x73, 0xaa, 0xb9, 0x77, 0x29, 0x10, 0x73, 0x1c, 0x5a, + 0x80, 0x49, 0x39, 0x63, 0xef, 0xd0, 0x63, 0x7e, 0x18, 0x08, 0x3d, 0x53, 0x45, 0x06, 0x63, 0x13, + 0x8d, 0xb3, 0xf4, 0xe8, 0xe3, 0x30, 0x41, 0x07, 0x27, 0x6c, 0x27, 0xd2, 0x0d, 0x64, 0x90, 0xb9, + 0x81, 0x30, 0x2f, 0xe2, 0x35, 0x03, 0x83, 0x33, 0x94, 0xf6, 0x9b, 0x70, 0xf2, 0x7a, 0xe8, 0xb8, + 0x8b, 0x8e, 0xef, 0x04, 0x0d, 0x12, 0xad, 0x06, 0x9b, 0xb9, 0xd7, 0xd7, 0xfa, 0x15, 0x73, 0x29, + 0xef, 0x8a, 0xd9, 0x8e, 0x00, 0xe9, 0x15, 0x08, 0x07, 0xa6, 0x37, 0x60, 0xd8, 0xe3, 0x55, 0x89, + 0x69, 0x7b, 0x31, 0xcf, 0x1e, 0xd5, 0xd1, 0x46, 0xcd, 0x21, 0x87, 0x03, 0xb0, 0x64, 0x49, 0x8f, + 0x20, 0xdd, 0x0c, 0x58, 0xf9, 0xa7, 0x3c, 0xfb, 0x2f, 0x5a, 0x30, 0x79, 0x33, 0x13, 0x76, 0xfa, + 0x34, 0x0c, 0xf1, 0xe4, 0x05, 0x59, 0x13, 0x4b, 0x9d, 0x41, 0xb1, 0xc0, 0x3e, 0xf4, 0x13, 0xfe, + 0xaf, 0x96, 0xa0, 0xc2, 0x5c, 0x61, 0x5b, 0xf4, 0x38, 0x71, 0xf4, 0x6a, 0xea, 0x0d, 0x43, 0x4d, + 0xcd, 0x39, 0x65, 0xaa, 0x86, 0xf5, 0xd2, 0x52, 0xd1, 0x6d, 0x15, 0x8e, 0x59, 0xe8, 0x80, 0x99, + 0x32, 0xe4, 0x21, 0x7b, 0x13, 0x66, 0xf4, 0xa6, 0x0c, 0xd5, 0x64, 0x97, 0xbe, 0x8a, 0xf6, 0x7d, + 0x77, 0xe9, 0xab, 0x5a, 0xd6, 0x43, 0x38, 0xd5, 0xb4, 0xc6, 0x33, 0xf1, 0xfd, 0x49, 0xe6, 0xe0, + 0xe8, 0xf8, 0xde, 0x17, 0x88, 0x8a, 0x6a, 0x9e, 0x15, 0x0e, 0x8b, 0x02, 0xba, 0xcf, 0xe4, 0x8c, + 0xf8, 0xc7, 0x83, 0xd6, 0xd3, 0x22, 0xf6, 0x55, 0x98, 0xcc, 0x0c, 0x1d, 0x7a, 0x09, 0x06, 0x5b, + 0x5b, 0x4e, 0x4c, 0x32, 0x7e, 0x2c, 0x83, 0x35, 0x0a, 0xdc, 0xdf, 0x9d, 0x9d, 0x50, 0x05, 0x18, + 0x04, 0x73, 0x6a, 0xfb, 0x2b, 0x25, 0x18, 0xb8, 0x19, 0xba, 0xc7, 0x31, 0xd5, 0xae, 0x1a, 0x53, + 0xed, 0xe9, 0xfc, 0x94, 0x17, 0x3d, 0x67, 0x59, 0x2d, 0x33, 0xcb, 0xce, 0x17, 0xe0, 0x75, 0xf0, + 0x04, 0x6b, 0xc2, 0x28, 0x4b, 0xa9, 0x21, 0x1c, 0x79, 0x5e, 0x30, 0x4e, 0x56, 0xb3, 0x99, 0x93, + 0xd5, 0xa4, 0x46, 0xaa, 0x9d, 0xaf, 0x9e, 0x81, 0x61, 0xe1, 0x38, 0x92, 0x75, 0xef, 0x14, 0xb4, + 0x58, 0xe2, 0xed, 0x7f, 0x56, 0x06, 0x23, 0x85, 0x07, 0xfa, 0x1d, 0x0b, 0xe6, 0x22, 0x1e, 0x2a, + 0xe3, 0x56, 0xdb, 0x91, 0x17, 0x6c, 0xd6, 0x1b, 0x5b, 0xc4, 0x6d, 0xfb, 0x5e, 0xb0, 0xb9, 0xba, + 0x19, 0x84, 0x0a, 0xbc, 0xfc, 0x80, 0x34, 0xda, 0xcc, 0x4e, 0x5b, 0x38, 0x73, 0x88, 0xba, 0x34, + 0xbd, 0xb4, 0xb7, 0x3b, 0x3b, 0x87, 0xfb, 0xaa, 0x05, 0xf7, 0xd9, 0x2a, 0xf4, 0x87, 0x16, 0xcc, + 0xf3, 0x24, 0x16, 0xc5, 0x7b, 0x52, 0xe8, 0x44, 0x5a, 0x93, 0x4c, 0x53, 0x76, 0x6b, 0x24, 0x6a, + 0x2e, 0xbe, 0x2c, 0x06, 0x79, 0xbe, 0xd6, 0x5f, 0xad, 0xb8, 0xdf, 0x66, 0xda, 0xff, 0xaa, 0x0c, + 0xe3, 0x74, 0x3c, 0xd3, 0xc0, 0xf5, 0x97, 0x8c, 0x69, 0xf2, 0x44, 0x66, 0x9a, 0x9c, 0x30, 0x88, + 0x1f, 0x4e, 0xcc, 0x7a, 0x0c, 0x27, 0x7c, 0x27, 0x4e, 0xae, 0x12, 0x27, 0x4a, 0xd6, 0x89, 0xc3, + 0xee, 0x26, 0xb3, 0x7e, 0x0f, 0x05, 0xae, 0x3b, 0x95, 0x33, 0xd2, 0xf5, 0x2c, 0x33, 0xdc, 0xc9, + 0x1f, 0x6d, 0x03, 0x62, 0xf7, 0xa0, 0x91, 0x13, 0xc4, 0xbc, 0x2f, 0x9e, 0xb0, 0xeb, 0xf6, 0x57, + 0xeb, 0x8c, 0xa8, 0x15, 0x5d, 0xef, 0xe0, 0x86, 0xbb, 0xd4, 0xa0, 0xdd, 0x74, 0x0f, 0x16, 0xbd, + 0xe9, 0x1e, 0xca, 0xf1, 0xab, 0xfe, 0xaa, 0x05, 0x27, 0xe9, 0x67, 0x31, 0x7d, 0x70, 0x63, 0x14, + 0xc2, 0x24, 0x9d, 0x76, 0x3e, 0x49, 0x24, 0x4c, 0xac, 0xaf, 0x1c, 0xcd, 0xda, 0xe4, 0x93, 0xaa, + 0x6f, 0xd7, 0x4c, 0x66, 0x38, 0xcb, 0xdd, 0xfe, 0xb6, 0x05, 0xcc, 0xe3, 0xee, 0x18, 0x36, 0xb3, + 0x2b, 0xe6, 0x66, 0x66, 0xe7, 0x4b, 0x8c, 0x1e, 0xfb, 0xd8, 0x8b, 0x30, 0x45, 0xb1, 0xb5, 0x28, + 0x7c, 0xb0, 0x23, 0x15, 0xed, 0x7c, 0x03, 0xef, 0x57, 0x4b, 0x7c, 0xd9, 0xa8, 0x98, 0x3f, 0xf4, + 0x4b, 0x16, 0x8c, 0x34, 0x9c, 0x96, 0xd3, 0xe0, 0x09, 0x90, 0x0a, 0x58, 0x67, 0x8c, 0xf2, 0x73, + 0x4b, 0xa2, 0x2c, 0xb7, 0x2c, 0x7c, 0x44, 0x76, 0x5d, 0x82, 0x73, 0xad, 0x09, 0xaa, 0xf2, 0x99, + 0x7b, 0x30, 0x6e, 0x30, 0x3b, 0xd2, 0x63, 0xe8, 0x2f, 0x59, 0x5c, 0xe8, 0xab, 0xa3, 0xc2, 0x7d, + 0x38, 0x11, 0x68, 0xff, 0xa9, 0x38, 0x93, 0x9a, 0xf1, 0x5c, 0x71, 0xb1, 0xce, 0xa4, 0xa0, 0xe6, + 0x5d, 0x98, 0x61, 0x88, 0x3b, 0xeb, 0xb0, 0xff, 0x96, 0x05, 0x8f, 0xe8, 0x84, 0x5a, 0x90, 0x66, + 0x9e, 0xdd, 0xb8, 0x0a, 0x23, 0x61, 0x8b, 0x44, 0x4e, 0x7a, 0x2c, 0x3a, 0x2f, 0xc7, 0xff, 0x96, + 0x80, 0xef, 0xef, 0xce, 0x9e, 0xd2, 0xb9, 0x4b, 0x38, 0x56, 0x25, 0x91, 0x0d, 0x43, 0x6c, 0x5c, + 0x62, 0x11, 0x5e, 0xcb, 0x12, 0x02, 0xb1, 0x4b, 0x95, 0x18, 0x0b, 0x8c, 0xfd, 0x57, 0x2c, 0x3e, + 0xdd, 0xf4, 0xa6, 0xa3, 0x2f, 0xc2, 0x54, 0x93, 0x9e, 0xa0, 0x96, 0x1f, 0xb4, 0xe8, 0x46, 0xca, + 0xae, 0x93, 0xad, 0x22, 0xdb, 0x47, 0x8f, 0xee, 0x2e, 0x4e, 0x8b, 0xd6, 0x4f, 0xdd, 0xc8, 0xb0, + 0xc5, 0x1d, 0x15, 0xd9, 0x7f, 0xb7, 0xc4, 0xd7, 0x2c, 0xd3, 0xe1, 0x9e, 0x81, 0xe1, 0x56, 0xe8, + 0x2e, 0xad, 0x56, 0xb1, 0x18, 0x2b, 0x25, 0x74, 0x6a, 0x1c, 0x8c, 0x25, 0x1e, 0x5d, 0x02, 0x20, + 0x0f, 0x12, 0x12, 0x05, 0x8e, 0xaf, 0xae, 0x81, 0x95, 0xaa, 0xb4, 0xac, 0x30, 0x58, 0xa3, 0xa2, + 0x65, 0x5a, 0x51, 0xb8, 0xed, 0xb9, 0x2c, 0xba, 0xa0, 0x6c, 0x96, 0xa9, 0x29, 0x0c, 0xd6, 0xa8, + 0xe8, 0xb9, 0xb5, 0x1d, 0xc4, 0x7c, 0x1b, 0x73, 0xd6, 0x45, 0xfe, 0x9a, 0x91, 0xf4, 0xdc, 0x7a, + 0x5b, 0x47, 0x62, 0x93, 0x16, 0x5d, 0x83, 0xa1, 0xc4, 0x61, 0x97, 0x9b, 0x83, 0x45, 0x3c, 0x45, + 0xd6, 0x28, 0xad, 0x9e, 0x30, 0x88, 0x16, 0xc5, 0x82, 0x85, 0xfd, 0x1f, 0x2a, 0x00, 0xa9, 0xd6, + 0x85, 0xbe, 0xd2, 0xb9, 0xe0, 0x3f, 0x5a, 0x54, 0x65, 0x7b, 0x78, 0xab, 0x1d, 0x7d, 0xdd, 0x82, + 0x51, 0xc7, 0xf7, 0xc3, 0x86, 0x93, 0xb0, 0xe1, 0x29, 0x15, 0x15, 0x3d, 0xa2, 0x25, 0x0b, 0x69, + 0x59, 0xde, 0x98, 0x17, 0xe4, 0x85, 0xa3, 0x86, 0xc9, 0x6d, 0x8f, 0xde, 0x04, 0xf4, 0x11, 0xa9, + 0xb5, 0xf3, 0x2f, 0x3c, 0x93, 0xd5, 0xda, 0x2b, 0x4c, 0xe0, 0x6a, 0x0a, 0x3b, 0x7a, 0xd3, 0xc8, + 0xf7, 0x32, 0x50, 0x24, 0x44, 0xd4, 0xd0, 0x43, 0xf2, 0x52, 0xbd, 0xa0, 0xcf, 0xea, 0x2e, 0xd5, + 0x83, 0x45, 0x62, 0xb0, 0x35, 0x75, 0x38, 0xc7, 0x9d, 0x3a, 0x81, 0x49, 0xd7, 0xdc, 0x79, 0x85, + 0x5b, 0xd8, 0xc5, 0xfc, 0x1a, 0x32, 0x5b, 0x76, 0xba, 0xd7, 0x66, 0x10, 0x38, 0x5b, 0x05, 0xfa, + 0x2c, 0x77, 0x78, 0x5f, 0x0d, 0x36, 0x42, 0xe1, 0x1a, 0x76, 0xa1, 0xc0, 0x37, 0xdf, 0x89, 0x13, + 0xd2, 0xa4, 0x65, 0xd2, 0xcd, 0xf5, 0xa6, 0xe0, 0x82, 0x15, 0x3f, 0xb4, 0x06, 0x43, 0x2c, 0x22, + 0x28, 0x9e, 0x1e, 0x29, 0x62, 0x89, 0x33, 0x03, 0x61, 0xd3, 0xf5, 0xc3, 0xfe, 0xc6, 0x58, 0xf0, + 0x42, 0x57, 0x65, 0x28, 0x7c, 0xbc, 0x1a, 0xdc, 0x8e, 0x09, 0x0b, 0x85, 0xaf, 0x2c, 0x7e, 0x28, + 0x8d, 0x6d, 0xe7, 0xf0, 0xae, 0x19, 0xef, 0x8c, 0x92, 0x54, 0xb1, 0x11, 0xff, 0x65, 0x22, 0xbd, + 0x69, 0x28, 0xd2, 0x50, 0x33, 0xed, 0x5e, 0x3a, 0xd8, 0x77, 0x4c, 0x66, 0x38, 0xcb, 0xfd, 0x58, + 0xb7, 0xd4, 0x99, 0x00, 0xa6, 0xb2, 0x8b, 0xf2, 0x48, 0xb7, 0xf0, 0x9f, 0x0c, 0xc0, 0x84, 0x39, + 0x39, 0xd0, 0x3c, 0x54, 0x04, 0x13, 0x95, 0x58, 0x4b, 0xad, 0x81, 0x1b, 0x12, 0x81, 0x53, 0x1a, + 0x96, 0x62, 0x8c, 0x15, 0xd7, 0x9c, 0x82, 0xd2, 0x14, 0x63, 0x0a, 0x83, 0x35, 0x2a, 0xaa, 0x09, + 0xaf, 0x87, 0x61, 0xa2, 0x76, 0x02, 0x35, 0x6f, 0x16, 0x19, 0x14, 0x0b, 0x2c, 0xdd, 0x01, 0xee, + 0xd1, 0x8f, 0xe9, 0x9b, 0x56, 0x45, 0xb5, 0x03, 0x5c, 0xd3, 0x91, 0xd8, 0xa4, 0xa5, 0x3b, 0x5a, + 0x18, 0xb3, 0x89, 0x28, 0xf4, 0xed, 0xd4, 0xc9, 0xaa, 0xce, 0xa3, 0xe4, 0x24, 0x1e, 0x7d, 0x06, + 0x1e, 0x51, 0x41, 0x6d, 0x98, 0x5b, 0x69, 0x65, 0x8d, 0x43, 0xc6, 0x91, 0xf9, 0x91, 0xa5, 0xee, + 0x64, 0xb8, 0x57, 0x79, 0xf4, 0x2a, 0x4c, 0x08, 0x5d, 0x59, 0x72, 0x1c, 0x36, 0x6f, 0xe0, 0xaf, + 0x19, 0x58, 0x9c, 0xa1, 0x46, 0x55, 0x98, 0xa2, 0x10, 0xa6, 0xa4, 0x4a, 0x0e, 0x3c, 0x38, 0x4f, + 0x6d, 0xf5, 0xd7, 0x32, 0x78, 0xdc, 0x51, 0x02, 0x2d, 0xc0, 0x24, 0x57, 0x56, 0xe8, 0xc1, 0x90, + 0x7d, 0x07, 0xe1, 0xcf, 0xa9, 0x16, 0xc2, 0x2d, 0x13, 0x8d, 0xb3, 0xf4, 0xe8, 0x32, 0x8c, 0x39, + 0x51, 0x63, 0xcb, 0x4b, 0x48, 0x23, 0x69, 0x47, 0x3c, 0xd1, 0x84, 0xe6, 0xc2, 0xb0, 0xa0, 0xe1, + 0xb0, 0x41, 0x69, 0x7f, 0x01, 0x4e, 0x76, 0x71, 0x1e, 0xa7, 0x13, 0xc7, 0x69, 0x79, 0xb2, 0x4f, + 0x19, 0x77, 0xa9, 0x85, 0xda, 0xaa, 0xec, 0x8d, 0x46, 0x45, 0x67, 0x27, 0x33, 0x4f, 0x6b, 0x79, + 0x2f, 0xd5, 0xec, 0x5c, 0x91, 0x08, 0x9c, 0xd2, 0xd8, 0x7f, 0x56, 0x01, 0xcd, 0x7a, 0x53, 0xc0, + 0x45, 0xe6, 0x32, 0x8c, 0xc9, 0x54, 0xae, 0x5a, 0x0a, 0x45, 0xd5, 0xcd, 0x2b, 0x1a, 0x0e, 0x1b, + 0x94, 0xb4, 0x6d, 0x81, 0xb4, 0x49, 0x65, 0x9d, 0xb3, 0x94, 0xb1, 0x0a, 0xa7, 0x34, 0xe8, 0x02, + 0x8c, 0xc4, 0xc4, 0xdf, 0xb8, 0xee, 0x05, 0xf7, 0xc4, 0xc4, 0x56, 0x92, 0xb9, 0x2e, 0xe0, 0x58, + 0x51, 0xa0, 0x45, 0x28, 0xb7, 0x3d, 0x57, 0x4c, 0x65, 0xa9, 0x36, 0x94, 0x6f, 0xaf, 0x56, 0xf7, + 0x77, 0x67, 0x9f, 0xe8, 0x95, 0xd7, 0x96, 0x9e, 0xcf, 0xe3, 0x39, 0xba, 0xfc, 0x68, 0xe1, 0x6e, + 0x76, 0xfa, 0xa1, 0x3e, 0xed, 0xf4, 0x97, 0x00, 0x44, 0xaf, 0xe5, 0x5c, 0x2e, 0xa7, 0x5f, 0xed, + 0x8a, 0xc2, 0x60, 0x8d, 0x8a, 0x9e, 0xf2, 0x1b, 0x11, 0x71, 0xe4, 0x41, 0x98, 0x3b, 0x35, 0x8f, + 0x1c, 0xfe, 0x94, 0xbf, 0x94, 0x65, 0x86, 0x3b, 0xf9, 0xa3, 0x10, 0x4e, 0xb8, 0x74, 0x21, 0x19, + 0x95, 0x56, 0xfa, 0xf7, 0xa4, 0xa6, 0x15, 0x56, 0xb3, 0x8c, 0x70, 0x27, 0x6f, 0xf4, 0x79, 0x98, + 0x91, 0xc0, 0xce, 0xb0, 0x55, 0xb6, 0x5c, 0xca, 0x8b, 0x67, 0xf7, 0x76, 0x67, 0x67, 0xaa, 0x3d, + 0xa9, 0xf0, 0x01, 0x1c, 0xd0, 0x1b, 0x30, 0xc4, 0xee, 0x75, 0xe2, 0xe9, 0x51, 0xb6, 0xe3, 0xbd, + 0x58, 0xc4, 0x1f, 0x9f, 0xce, 0xfa, 0x39, 0x76, 0x3b, 0x24, 0x3c, 0x4d, 0xd3, 0xcb, 0x32, 0x06, + 0xc4, 0x82, 0x27, 0x6a, 0xc1, 0xa8, 0x13, 0x04, 0x61, 0xe2, 0x70, 0x45, 0x6c, 0xac, 0x88, 0x2e, + 0xa9, 0x55, 0xb1, 0x90, 0x96, 0xe5, 0xf5, 0x28, 0xe7, 0x35, 0x0d, 0x83, 0xf5, 0x2a, 0xd0, 0x7d, + 0x98, 0x0c, 0xef, 0x53, 0x81, 0x29, 0xaf, 0x36, 0xe2, 0xe9, 0x71, 0xb3, 0x63, 0x39, 0x86, 0x5a, + 0xa3, 0xb0, 0x26, 0xc9, 0x4c, 0xa6, 0x38, 0x5b, 0x0b, 0x9a, 0x33, 0xcc, 0xd5, 0x13, 0xa9, 0x3f, + 0x75, 0x6a, 0xae, 0xd6, 0xad, 0xd3, 0x2c, 0x34, 0x9a, 0xfb, 0x50, 0x32, 0x89, 0x30, 0x99, 0x09, + 0x8d, 0x4e, 0x51, 0x58, 0xa7, 0x9b, 0xf9, 0x18, 0x8c, 0x6a, 0x03, 0xdf, 0x8f, 0xe3, 0xee, 0xcc, + 0xab, 0x30, 0x95, 0x1d, 0xd0, 0xbe, 0x1c, 0x7f, 0xff, 0x47, 0x09, 0x26, 0xbb, 0xdc, 0x1b, 0xdd, + 0xf3, 0x98, 0xf3, 0xb9, 0x21, 0xfa, 0xae, 0x79, 0x81, 0x8b, 0x19, 0xc6, 0x14, 0x60, 0xa5, 0x02, + 0x02, 0x4c, 0x4a, 0xd3, 0x72, 0x4f, 0x69, 0x2a, 0x84, 0xd6, 0xc0, 0x7b, 0x11, 0x5a, 0xe6, 0x3e, + 0x31, 0x58, 0x68, 0x9f, 0x78, 0x08, 0x82, 0xce, 0xd8, 0x6a, 0x86, 0x0b, 0x6c, 0x35, 0xdf, 0x2a, + 0xc1, 0x54, 0xea, 0xe4, 0x2c, 0xf2, 0x3b, 0x1f, 0xfd, 0x35, 0xc4, 0x9a, 0x71, 0x0d, 0x91, 0x97, + 0xbe, 0x39, 0xd3, 0xbe, 0x9e, 0x57, 0x12, 0x6f, 0x64, 0xae, 0x24, 0x5e, 0xec, 0x93, 0xef, 0xc1, + 0xd7, 0x13, 0xdf, 0x2b, 0xc1, 0xe9, 0x6c, 0x91, 0x25, 0xdf, 0xf1, 0x9a, 0xc7, 0x30, 0x5e, 0x9f, + 0x31, 0xc6, 0xeb, 0xe5, 0xfe, 0xfa, 0xc5, 0x1a, 0xd9, 0x73, 0xd0, 0x9c, 0xcc, 0xa0, 0x7d, 0xec, + 0x30, 0xcc, 0x0f, 0x1e, 0xb9, 0xdf, 0xb7, 0xe0, 0xd1, 0xae, 0xe5, 0x8e, 0xc1, 0xf0, 0xfa, 0xba, + 0x69, 0x78, 0x7d, 0xe1, 0x10, 0xbd, 0xeb, 0x61, 0x89, 0xfd, 0x6f, 0xa5, 0x1e, 0xbd, 0x62, 0xa6, + 0xa9, 0x5b, 0x30, 0xea, 0x34, 0x1a, 0x24, 0x8e, 0x6f, 0x84, 0xae, 0x4a, 0xb2, 0xf4, 0x3c, 0xdb, + 0x5b, 0x52, 0xf0, 0xfe, 0xee, 0xec, 0x4c, 0x96, 0x45, 0x8a, 0xc6, 0x3a, 0x07, 0x33, 0xfd, 0x5b, + 0xe9, 0x88, 0xd2, 0xbf, 0x5d, 0x02, 0xd8, 0x56, 0xa7, 0xd8, 0xac, 0xc5, 0x4b, 0x3b, 0xdf, 0x6a, + 0x54, 0xe8, 0xff, 0x67, 0x1a, 0x21, 0x77, 0xd2, 0x18, 0x30, 0xe3, 0x25, 0x73, 0xbe, 0x9f, 0xee, + 0xf0, 0xc1, 0xc3, 0x32, 0x95, 0x75, 0x50, 0xb1, 0xb4, 0xbf, 0x5b, 0x86, 0x0f, 0x1e, 0x30, 0xe9, + 0xd0, 0x82, 0x79, 0xe7, 0xfa, 0x5c, 0xd6, 0x7a, 0x33, 0xd3, 0xb5, 0xb0, 0x61, 0xce, 0xc9, 0x7c, + 0xab, 0xd2, 0x7b, 0xfe, 0x56, 0xdf, 0xd0, 0x6d, 0x6d, 0xdc, 0xeb, 0xf2, 0xca, 0xa1, 0x97, 0xd5, + 0xcf, 0xaa, 0xa9, 0xfd, 0xcb, 0x16, 0x3c, 0xd1, 0xb5, 0x5b, 0x86, 0x8f, 0xc7, 0x3c, 0x54, 0x1a, + 0x14, 0xa8, 0x45, 0xd2, 0xa4, 0x21, 0x6c, 0x12, 0x81, 0x53, 0x1a, 0xc3, 0x95, 0xa3, 0x94, 0xeb, + 0xca, 0xf1, 0xbb, 0x16, 0x9c, 0xca, 0x36, 0xe2, 0x18, 0xa4, 0x4e, 0xdd, 0x94, 0x3a, 0x73, 0xfd, + 0x7d, 0xfc, 0x1e, 0x02, 0xe7, 0xd7, 0xc6, 0xe1, 0x4c, 0xc7, 0x9e, 0xc5, 0x47, 0xf1, 0x17, 0x2c, + 0x38, 0xb1, 0xc9, 0x74, 0x6f, 0x2d, 0x5c, 0x49, 0xf4, 0x2b, 0x27, 0xc6, 0xeb, 0xc0, 0x28, 0x27, + 0x7e, 0x92, 0xe8, 0x20, 0xc1, 0x9d, 0x95, 0xa1, 0xaf, 0x59, 0x70, 0xca, 0xb9, 0x1f, 0x77, 0xbc, + 0x1d, 0x22, 0x26, 0xd2, 0xab, 0x39, 0xa6, 0xae, 0x9c, 0x57, 0x47, 0x16, 0xa7, 0xf7, 0x76, 0x67, + 0x4f, 0x75, 0xa3, 0xc2, 0x5d, 0x6b, 0xa5, 0xdf, 0x77, 0x4b, 0x04, 0x43, 0x14, 0x0b, 0xbc, 0xeb, + 0x16, 0x3a, 0xc1, 0x85, 0x92, 0xc4, 0x60, 0xc5, 0x11, 0xbd, 0x05, 0x95, 0x4d, 0x19, 0xa1, 0x94, + 0x15, 0x7a, 0x3d, 0x86, 0xb9, 0x5b, 0x40, 0x13, 0xf7, 0xbc, 0x57, 0x28, 0x9c, 0x32, 0x45, 0x57, + 0xa1, 0x1c, 0x6c, 0xc4, 0x22, 0x16, 0x38, 0xcf, 0x83, 0xc7, 0xf4, 0x9b, 0xe2, 0xe1, 0x93, 0x37, + 0x57, 0xea, 0x98, 0xb2, 0xa0, 0x9c, 0xa2, 0x75, 0x57, 0xd8, 0x78, 0x73, 0x38, 0xe1, 0xc5, 0x6a, + 0x27, 0x27, 0xbc, 0x58, 0xc5, 0x94, 0x05, 0xaa, 0xc1, 0x20, 0x0b, 0xb5, 0x10, 0x06, 0xdc, 0x9c, + 0x80, 0xf1, 0x8e, 0x80, 0x12, 0x9e, 0x63, 0x90, 0x81, 0x31, 0x67, 0x84, 0xd6, 0x60, 0xa8, 0xc1, + 0xd2, 0xe4, 0x8b, 0x93, 0x75, 0x5e, 0x2a, 0x85, 0x8e, 0x94, 0xfa, 0xfc, 0xd6, 0x8a, 0xc3, 0xb1, + 0xe0, 0xc5, 0xb8, 0x92, 0xd6, 0xd6, 0x46, 0x2c, 0x8e, 0xce, 0x79, 0x5c, 0x3b, 0x1e, 0x3c, 0x10, + 0x5c, 0x19, 0x1c, 0x0b, 0x5e, 0xa8, 0x0a, 0xa5, 0x8d, 0x86, 0x48, 0x55, 0x9a, 0x63, 0xb8, 0x35, + 0x63, 0x61, 0x17, 0x87, 0xf6, 0x76, 0x67, 0x4b, 0x2b, 0x4b, 0xb8, 0xb4, 0xd1, 0x40, 0xaf, 0xc3, + 0xf0, 0x06, 0x8f, 0x6e, 0x14, 0x69, 0x49, 0x2f, 0xe6, 0x85, 0x60, 0x76, 0x84, 0x42, 0xf2, 0xe8, + 0x0a, 0x81, 0xc0, 0x92, 0x1d, 0xcb, 0xd8, 0xa6, 0xe2, 0x35, 0x45, 0x5e, 0xd2, 0xb9, 0xfe, 0xe2, + 0x3b, 0xc5, 0x89, 0x52, 0x41, 0xb1, 0xc6, 0x91, 0xce, 0x79, 0x47, 0xbe, 0xf8, 0xc1, 0x72, 0x92, + 0xe6, 0xce, 0xf9, 0xae, 0x0f, 0x84, 0xf0, 0x39, 0xaf, 0x50, 0x38, 0x65, 0x8a, 0xda, 0x30, 0xbe, + 0x1d, 0xb7, 0xb6, 0x88, 0x5c, 0xfa, 0x2c, 0x51, 0xe9, 0xe8, 0xa5, 0x4f, 0xe4, 0x64, 0x9f, 0x15, + 0x45, 0xbc, 0x28, 0x69, 0x3b, 0x7e, 0x87, 0x04, 0x63, 0x29, 0xb2, 0xee, 0xe8, 0x6c, 0xb1, 0x59, + 0x0b, 0xfd, 0x24, 0xef, 0xb4, 0xc3, 0xf5, 0x9d, 0x84, 0x88, 0x44, 0xa6, 0x39, 0x9f, 0xe4, 0x35, + 0x4e, 0xdc, 0xf9, 0x49, 0x04, 0x02, 0x4b, 0x76, 0x6a, 0xc8, 0x98, 0x34, 0x9e, 0x2a, 0x3c, 0x64, + 0x1d, 0x7d, 0x48, 0x87, 0x8c, 0x49, 0xdf, 0x94, 0x29, 0x93, 0xba, 0xad, 0xad, 0x30, 0x09, 0x83, + 0x8c, 0xec, 0x3f, 0x51, 0x44, 0xea, 0xd6, 0xba, 0x94, 0xec, 0x94, 0xba, 0xdd, 0xa8, 0x70, 0xd7, + 0x5a, 0xed, 0xff, 0x32, 0xd8, 0xb9, 0xdd, 0x32, 0x75, 0xf8, 0x2f, 0x77, 0xde, 0x3e, 0x7e, 0xaa, + 0xff, 0x53, 0xdf, 0x43, 0xbc, 0x87, 0xfc, 0x9a, 0x05, 0x67, 0x5a, 0x5d, 0x37, 0x53, 0xb1, 0x61, + 0xf5, 0x7b, 0x78, 0xe4, 0x03, 0xa6, 0xb2, 0xf4, 0x76, 0xc7, 0xe3, 0x1e, 0x75, 0x66, 0x55, 0xd0, + 0xf2, 0x7b, 0x56, 0x41, 0xef, 0xc2, 0x08, 0xd3, 0x99, 0xd2, 0xfc, 0x1e, 0x7d, 0xa6, 0xc2, 0x60, + 0x5b, 0xdf, 0x92, 0x60, 0x81, 0x15, 0x33, 0x3a, 0x70, 0x8f, 0x67, 0x3b, 0x81, 0x09, 0x43, 0x8b, + 0x4c, 0xb6, 0xdc, 0xda, 0xb1, 0x22, 0x46, 0xe2, 0xf1, 0xda, 0x41, 0xc4, 0xfb, 0x79, 0x04, 0xf8, + 0xe0, 0xca, 0x8e, 0x57, 0xa5, 0xfd, 0x7b, 0x56, 0x17, 0x0d, 0x8c, 0x1f, 0x43, 0x3e, 0x61, 0x1e, + 0x43, 0x9e, 0xce, 0x1e, 0x43, 0x3a, 0x4c, 0x07, 0xc6, 0x09, 0xa4, 0x78, 0x56, 0xca, 0xa2, 0xa9, + 0x47, 0x6c, 0x1f, 0xce, 0xe5, 0x2d, 0x6f, 0xe6, 0x38, 0xe4, 0xaa, 0x2b, 0xb3, 0xd4, 0x71, 0xc8, + 0x5d, 0xad, 0x62, 0x86, 0x29, 0x1a, 0xbd, 0x6e, 0xff, 0x62, 0x09, 0xca, 0xb5, 0xd0, 0x3d, 0x06, + 0x53, 0xc8, 0x15, 0xc3, 0x14, 0xf2, 0x54, 0xee, 0x8b, 0x67, 0x3d, 0x0d, 0x1f, 0xb7, 0x32, 0x86, + 0x8f, 0x0f, 0xe7, 0xb3, 0x3a, 0xd8, 0xcc, 0xf1, 0xfd, 0x32, 0xe8, 0x6f, 0xb6, 0xa1, 0x7f, 0x77, + 0x18, 0x7f, 0xd2, 0x72, 0xb1, 0x67, 0xdc, 0x44, 0x1d, 0xcc, 0xef, 0x48, 0x46, 0xa1, 0xfd, 0xcc, + 0xba, 0x95, 0xde, 0x25, 0xde, 0xe6, 0x56, 0x42, 0xdc, 0x6c, 0xc7, 0x8e, 0xcf, 0xad, 0xf4, 0x4f, + 0x2d, 0x98, 0xcc, 0xd4, 0x8e, 0xfc, 0x6e, 0xe1, 0x2b, 0x87, 0x34, 0x6e, 0x9c, 0xc8, 0x8d, 0x77, + 0x99, 0x03, 0x50, 0x36, 0x6a, 0x69, 0x82, 0x60, 0xda, 0x98, 0x32, 0x62, 0xc7, 0x58, 0xa3, 0x40, + 0x2f, 0xc1, 0x68, 0x12, 0xb6, 0x42, 0x3f, 0xdc, 0xdc, 0xb9, 0x46, 0x64, 0x5e, 0x05, 0x65, 0xdf, + 0x5f, 0x4b, 0x51, 0x58, 0xa7, 0xb3, 0x7f, 0x50, 0x86, 0xec, 0x8b, 0x7f, 0xff, 0x6f, 0x9e, 0xfe, + 0xec, 0xcc, 0xd3, 0x3f, 0xb0, 0x60, 0x8a, 0xd6, 0xce, 0x1c, 0x3d, 0xa4, 0xfb, 0xa7, 0x4a, 0x91, + 0x6f, 0x1d, 0x90, 0x22, 0xff, 0x69, 0x2a, 0xed, 0xdc, 0xb0, 0x9d, 0x08, 0xa3, 0x89, 0x26, 0xc4, + 0x28, 0x14, 0x0b, 0xac, 0xa0, 0x23, 0x51, 0x24, 0xe2, 0x64, 0x74, 0x3a, 0x12, 0x45, 0x58, 0x60, + 0x65, 0x06, 0xfd, 0x81, 0x1e, 0x19, 0xf4, 0x59, 0x66, 0x22, 0xe1, 0x5c, 0x20, 0x14, 0x02, 0x2d, + 0x33, 0x91, 0xf4, 0x3a, 0x48, 0x69, 0xec, 0xef, 0x94, 0x61, 0xac, 0x16, 0xba, 0xa9, 0x5f, 0xf7, + 0x8b, 0x86, 0x5f, 0xf7, 0xb9, 0x8c, 0x5f, 0xf7, 0x94, 0x4e, 0xfb, 0x70, 0xdc, 0xba, 0x45, 0x06, + 0x2b, 0xf6, 0xc6, 0xc3, 0x21, 0x5d, 0xba, 0x8d, 0x0c, 0x56, 0x8a, 0x11, 0x36, 0xf9, 0xfe, 0x3c, + 0xb9, 0x72, 0xff, 0x2f, 0x0b, 0x26, 0x6a, 0xa1, 0x4b, 0x27, 0xe8, 0xcf, 0xd3, 0x6c, 0xd4, 0xf3, + 0x5e, 0x0d, 0x1d, 0x90, 0xf7, 0xea, 0x9f, 0x58, 0x30, 0x5c, 0x0b, 0xdd, 0x63, 0x30, 0x28, 0xae, + 0x98, 0x06, 0xc5, 0x27, 0x72, 0x25, 0x6f, 0x0f, 0x1b, 0xe2, 0x77, 0xcb, 0x30, 0x4e, 0x5b, 0x1c, + 0x6e, 0xca, 0xef, 0x65, 0x8c, 0x8d, 0x55, 0x60, 0x6c, 0xa8, 0x4a, 0x18, 0xfa, 0x7e, 0x78, 0x3f, + 0xfb, 0xed, 0x56, 0x18, 0x14, 0x0b, 0x2c, 0xba, 0x00, 0x23, 0xad, 0x88, 0x6c, 0x7b, 0x61, 0x3b, + 0xce, 0xc6, 0xdc, 0xd5, 0x04, 0x1c, 0x2b, 0x0a, 0xf4, 0x22, 0x8c, 0xc5, 0x5e, 0xd0, 0x20, 0xd2, + 0xf5, 0x60, 0x80, 0xb9, 0x1e, 0xf0, 0x14, 0x83, 0x1a, 0x1c, 0x1b, 0x54, 0xe8, 0x2e, 0x54, 0xd8, + 0x7f, 0xb6, 0x82, 0xfa, 0x4f, 0x81, 0xcf, 0xf3, 0x6a, 0x49, 0x06, 0x38, 0xe5, 0x85, 0x2e, 0x01, + 0x24, 0xd2, 0x49, 0x22, 0x16, 0xd9, 0x41, 0x94, 0x5e, 0xaa, 0xdc, 0x27, 0x62, 0xac, 0x51, 0xa1, + 0xe7, 0xa0, 0x92, 0x38, 0x9e, 0x7f, 0xdd, 0x0b, 0x48, 0x2c, 0x9c, 0x4c, 0x44, 0xba, 0x60, 0x01, + 0xc4, 0x29, 0x9e, 0xee, 0xf7, 0x2c, 0xe2, 0x97, 0x3f, 0xaf, 0x31, 0xc2, 0xa8, 0xd9, 0x7e, 0x7f, + 0x5d, 0x41, 0xb1, 0x46, 0x61, 0x5f, 0x86, 0xd3, 0xb5, 0xd0, 0xad, 0x85, 0x51, 0xb2, 0x12, 0x46, + 0xf7, 0x9d, 0xc8, 0x95, 0xdf, 0x6f, 0x56, 0x66, 0xa9, 0xa5, 0x7b, 0xf2, 0x20, 0xb7, 0xb1, 0x19, + 0x59, 0x67, 0x5f, 0x60, 0x3b, 0x7e, 0x9f, 0x01, 0x03, 0x3f, 0x2e, 0x01, 0xaa, 0x31, 0x37, 0x0e, + 0xe3, 0x35, 0x96, 0x2d, 0x98, 0x88, 0xc9, 0x75, 0x2f, 0x68, 0x3f, 0x10, 0xac, 0x8a, 0x45, 0x68, + 0xd4, 0x97, 0xf5, 0x32, 0x3c, 0x3c, 0xd6, 0x84, 0xe1, 0x0c, 0x5f, 0x3a, 0x98, 0x51, 0x3b, 0x58, + 0x88, 0x6f, 0xc7, 0x24, 0x12, 0xaf, 0x8f, 0xb0, 0xc1, 0xc4, 0x12, 0x88, 0x53, 0x3c, 0x9d, 0x3c, + 0xec, 0xcf, 0xcd, 0x30, 0xc0, 0x61, 0x98, 0xc8, 0xe9, 0xc6, 0xb2, 0xd1, 0x6b, 0x70, 0x6c, 0x50, + 0xa1, 0x15, 0x40, 0x71, 0xbb, 0xd5, 0xf2, 0xd9, 0xcd, 0x98, 0xe3, 0x5f, 0x89, 0xc2, 0x76, 0x8b, + 0x7b, 0xf3, 0x8a, 0x44, 0xee, 0xf5, 0x0e, 0x2c, 0xee, 0x52, 0x82, 0x0a, 0x8b, 0x8d, 0x98, 0xfd, + 0x16, 0xe1, 0xbf, 0xdc, 0x3e, 0x57, 0x67, 0x20, 0x2c, 0x71, 0xf6, 0x97, 0xd8, 0x06, 0xc7, 0x9e, + 0x85, 0x48, 0xda, 0x11, 0x41, 0x4d, 0x18, 0x6f, 0xb1, 0x4d, 0x2c, 0x89, 0x42, 0xdf, 0x27, 0x52, + 0xbf, 0x3c, 0x9c, 0x23, 0x09, 0x4f, 0x04, 0xaf, 0xb3, 0xc3, 0x26, 0x77, 0xfb, 0x97, 0x27, 0x98, + 0xac, 0x12, 0x97, 0x93, 0xc3, 0xc2, 0x65, 0x54, 0x68, 0x72, 0x1f, 0x2a, 0xf2, 0xc0, 0x53, 0xba, + 0x0f, 0x08, 0x07, 0x54, 0x2c, 0xb9, 0xa0, 0xcf, 0x31, 0x87, 0x68, 0x2e, 0x20, 0x8a, 0x3f, 0x5b, + 0xc7, 0xe9, 0x0d, 0x67, 0x68, 0xc1, 0x02, 0x6b, 0xec, 0xd0, 0x75, 0x18, 0x17, 0xaf, 0x08, 0x08, + 0x03, 0x43, 0xd9, 0x38, 0x62, 0x8f, 0x63, 0x1d, 0xb9, 0x9f, 0x05, 0x60, 0xb3, 0x30, 0xda, 0x84, + 0xc7, 0xb5, 0x57, 0x72, 0xba, 0x38, 0x3d, 0x71, 0xc9, 0xf3, 0xc4, 0xde, 0xee, 0xec, 0xe3, 0x6b, + 0x07, 0x11, 0xe2, 0x83, 0xf9, 0xa0, 0x5b, 0x70, 0xda, 0x69, 0x24, 0xde, 0x36, 0xa9, 0x12, 0xc7, + 0xf5, 0xbd, 0x80, 0x98, 0x31, 0xe2, 0x8f, 0xee, 0xed, 0xce, 0x9e, 0x5e, 0xe8, 0x46, 0x80, 0xbb, + 0x97, 0x43, 0x9f, 0x80, 0x8a, 0x1b, 0xc4, 0x62, 0x0c, 0x86, 0x8c, 0x47, 0xa1, 0x2a, 0xd5, 0x9b, + 0x75, 0xd5, 0xff, 0xf4, 0x0f, 0x4e, 0x0b, 0xa0, 0x77, 0xf8, 0xa3, 0xe7, 0xea, 0x34, 0xc3, 0x1f, + 0x23, 0x7b, 0xb9, 0xd0, 0xf9, 0xd9, 0x88, 0xdc, 0xe0, 0xb6, 0x37, 0xe5, 0x5c, 0x68, 0x04, 0x75, + 0x18, 0x55, 0xa0, 0x4f, 0x03, 0x8a, 0x49, 0xb4, 0xed, 0x35, 0xc8, 0x42, 0x83, 0xe5, 0xe5, 0x64, + 0x97, 0x7c, 0x23, 0x86, 0x97, 0x3d, 0xaa, 0x77, 0x50, 0xe0, 0x2e, 0xa5, 0xd0, 0x55, 0x2a, 0x79, + 0x74, 0xa8, 0xf0, 0x05, 0x95, 0x8a, 0xe1, 0x74, 0x95, 0xb4, 0x22, 0xd2, 0x70, 0x12, 0xe2, 0x9a, + 0x1c, 0x71, 0xa6, 0x1c, 0xdd, 0x97, 0x54, 0xea, 0x75, 0x30, 0x3d, 0x18, 0x3b, 0xd3, 0xaf, 0xd3, + 0x73, 0xd6, 0x56, 0x18, 0x27, 0x37, 0x49, 0x72, 0x3f, 0x8c, 0xee, 0x31, 0x9b, 0xfd, 0x88, 0x96, + 0xe4, 0x2c, 0x45, 0x61, 0x9d, 0x8e, 0xea, 0x50, 0xec, 0xb2, 0x68, 0xb5, 0xca, 0x2c, 0xf1, 0x23, + 0xe9, 0xda, 0xb9, 0xca, 0xc1, 0x58, 0xe2, 0x25, 0xe9, 0x6a, 0x6d, 0x89, 0x59, 0xd5, 0x33, 0xa4, + 0xab, 0xb5, 0x25, 0x2c, 0xf1, 0x28, 0xec, 0x7c, 0x7a, 0x6b, 0xa2, 0xc8, 0x0d, 0x47, 0xa7, 0x24, + 0x2f, 0xf8, 0xfa, 0xd6, 0x03, 0x98, 0x52, 0xcf, 0x7f, 0xf1, 0xfc, 0x93, 0xf1, 0xf4, 0x64, 0x91, + 0x27, 0xd7, 0xbb, 0xa6, 0xb1, 0x54, 0xce, 0xbf, 0xab, 0x19, 0x9e, 0xb8, 0xa3, 0x16, 0x23, 0xd7, + 0xc1, 0x54, 0x6e, 0x3a, 0xfd, 0x79, 0xa8, 0xc4, 0xed, 0x75, 0x37, 0x6c, 0x3a, 0x5e, 0xc0, 0x4c, + 0xdf, 0xfa, 0x03, 0xe2, 0x12, 0x81, 0x53, 0x1a, 0x54, 0x83, 0x11, 0x47, 0xbe, 0x9d, 0x8f, 0x8a, + 0xc4, 0x42, 0xab, 0x47, 0xf3, 0x99, 0x5d, 0x54, 0xbd, 0x96, 0xaf, 0xb8, 0xa0, 0x57, 0x60, 0x5c, + 0x84, 0xf2, 0x90, 0x88, 0xb5, 0xfa, 0xa4, 0xe9, 0xf6, 0x5d, 0x97, 0x48, 0x36, 0xc1, 0x4c, 0x5a, + 0xb4, 0x09, 0x13, 0x94, 0x4b, 0x2a, 0x00, 0xa7, 0x4f, 0xf5, 0x27, 0x43, 0xb5, 0xc4, 0xc5, 0x3a, + 0x1b, 0x9c, 0x61, 0x8b, 0x5c, 0x78, 0xcc, 0x69, 0x27, 0x61, 0x93, 0xae, 0x04, 0x73, 0x9d, 0xac, + 0x85, 0xf7, 0x48, 0x30, 0x7d, 0x9a, 0xcd, 0xc0, 0x73, 0x7b, 0xbb, 0xb3, 0x8f, 0x2d, 0x1c, 0x40, + 0x87, 0x0f, 0xe4, 0x82, 0xde, 0x84, 0xd1, 0x24, 0xf4, 0x85, 0x27, 0x6d, 0x3c, 0x7d, 0xa6, 0x48, + 0x06, 0x96, 0x35, 0x55, 0x40, 0x37, 0x63, 0x28, 0x26, 0x58, 0xe7, 0x38, 0xf3, 0x49, 0x38, 0xd1, + 0x21, 0x92, 0xfa, 0x72, 0x36, 0xfc, 0xf7, 0x83, 0x50, 0x51, 0x16, 0x3d, 0x34, 0x6f, 0x1a, 0x6f, + 0x1f, 0xcd, 0x1a, 0x6f, 0x47, 0xa8, 0x02, 0xa5, 0xdb, 0x6b, 0x3f, 0xdf, 0xe5, 0xc1, 0xe7, 0x67, + 0x73, 0xd7, 0x60, 0xf1, 0xf8, 0x9f, 0x3e, 0x9e, 0xc5, 0x4e, 0x4f, 0x75, 0x03, 0x07, 0x9e, 0xea, + 0x0a, 0x3e, 0x62, 0x46, 0xcf, 0x6f, 0xad, 0xd0, 0x5d, 0xad, 0x65, 0xdf, 0xe8, 0xa9, 0x51, 0x20, + 0xe6, 0x38, 0xa6, 0x77, 0xd3, 0x3d, 0x95, 0xe9, 0xdd, 0xc3, 0x87, 0xd4, 0xbb, 0x25, 0x03, 0x9c, + 0xf2, 0x42, 0xdb, 0x70, 0xa2, 0x61, 0x3e, 0xb9, 0xa4, 0xa2, 0x7a, 0x9e, 0xef, 0xe3, 0xc9, 0xa3, + 0xb6, 0xf6, 0xd6, 0xc3, 0x52, 0x96, 0x1f, 0xee, 0xac, 0x02, 0xbd, 0x02, 0x23, 0xef, 0x84, 0xf1, + 0x92, 0xef, 0xc4, 0xb1, 0xd8, 0x58, 0x64, 0xf4, 0xc4, 0xc8, 0x6b, 0xb7, 0xea, 0x0c, 0xbe, 0xbf, + 0x3b, 0x3b, 0x5a, 0x0b, 0x5d, 0xf9, 0x17, 0xab, 0x02, 0xe8, 0xcb, 0x16, 0x9c, 0x36, 0xd6, 0x99, + 0x6a, 0x39, 0x1c, 0xa6, 0xe5, 0x8f, 0x8b, 0x9a, 0x4f, 0xaf, 0x76, 0xe3, 0x89, 0xbb, 0x57, 0x65, + 0xff, 0x36, 0x37, 0x61, 0x0a, 0xa3, 0x06, 0x89, 0xdb, 0xfe, 0x71, 0xe4, 0x5d, 0xbf, 0x65, 0xd8, + 0x5b, 0x1e, 0x82, 0x11, 0xfd, 0xdf, 0x5a, 0xcc, 0x88, 0xbe, 0x46, 0x9a, 0x2d, 0xdf, 0x49, 0x8e, + 0xc3, 0x17, 0xf5, 0x73, 0x30, 0x92, 0x88, 0xda, 0x8a, 0x25, 0x8d, 0xd7, 0x9a, 0xc7, 0x2e, 0x17, + 0xd4, 0xc6, 0x24, 0xa1, 0x58, 0x31, 0xb4, 0xff, 0x25, 0xff, 0x2a, 0x12, 0x73, 0x0c, 0x96, 0x82, + 0x9b, 0xa6, 0xa5, 0xe0, 0x99, 0xc2, 0x7d, 0xe9, 0x61, 0x31, 0xf8, 0x81, 0xd9, 0x03, 0x76, 0x7e, + 0xf8, 0xd9, 0xb9, 0xe5, 0xb1, 0x6f, 0x81, 0xf9, 0x3e, 0x16, 0x7a, 0x95, 0x7b, 0x77, 0x73, 0x49, + 0x7f, 0xa1, 0x6f, 0xcf, 0x6e, 0xfb, 0xd7, 0x4b, 0x70, 0x8a, 0xdb, 0x79, 0x17, 0xb6, 0x43, 0xcf, + 0xad, 0x85, 0xae, 0xf0, 0x75, 0x77, 0x61, 0xac, 0xa5, 0x9d, 0xef, 0x8a, 0xe5, 0x06, 0xd1, 0x4f, + 0x84, 0xa9, 0x4e, 0xad, 0x43, 0xb1, 0xc1, 0x95, 0xd6, 0x42, 0xb6, 0xbd, 0x86, 0x32, 0x1b, 0x96, + 0xfa, 0x16, 0xbe, 0xaa, 0x96, 0x65, 0x8d, 0x0f, 0x36, 0xb8, 0x1e, 0xc1, 0xfb, 0x06, 0xf6, 0xdf, + 0xb6, 0xe0, 0x91, 0x1e, 0xf9, 0x43, 0x68, 0x75, 0xf7, 0x99, 0x6d, 0x5d, 0x3c, 0xc0, 0xa6, 0xaa, + 0xe3, 0x16, 0x77, 0x2c, 0xb0, 0x68, 0x1d, 0x80, 0x5b, 0xcc, 0xd9, 0x73, 0xdc, 0xa5, 0x22, 0x2e, + 0x2e, 0x1d, 0x51, 0xfa, 0x5a, 0x00, 0xb7, 0x7a, 0x80, 0x5b, 0xe3, 0x6a, 0x7f, 0xbb, 0x0c, 0x83, + 0xfc, 0x9d, 0xdf, 0x1a, 0x0c, 0x6f, 0xf1, 0x7c, 0xa6, 0xfd, 0xa5, 0x53, 0x4d, 0xf5, 0x77, 0x0e, + 0xc0, 0x92, 0x0d, 0xba, 0x01, 0x27, 0xa9, 0xf0, 0xf6, 0x1c, 0xbf, 0x4a, 0x7c, 0x67, 0x47, 0x1e, + 0x08, 0x79, 0xd2, 0x7b, 0x99, 0x9d, 0xf9, 0xe4, 0x6a, 0x27, 0x09, 0xee, 0x56, 0x0e, 0xbd, 0xda, + 0x91, 0x7e, 0x8c, 0xe7, 0x89, 0x55, 0xca, 0xe0, 0xc1, 0x29, 0xc8, 0xa8, 0xca, 0xda, 0xea, 0x38, + 0xfa, 0x6a, 0xcf, 0xa9, 0x9a, 0xc7, 0x5d, 0x93, 0x16, 0x55, 0x61, 0x2a, 0x6e, 0x33, 0x87, 0x83, + 0xb5, 0xad, 0x88, 0xc4, 0x5b, 0xa1, 0xef, 0x8a, 0x97, 0x00, 0x95, 0x9a, 0x5f, 0xcf, 0xe0, 0x71, + 0x47, 0x09, 0xca, 0x65, 0xc3, 0xf1, 0xfc, 0x76, 0x44, 0x52, 0x2e, 0x43, 0x26, 0x97, 0x95, 0x0c, + 0x1e, 0x77, 0x94, 0xa0, 0x73, 0xeb, 0xb4, 0x78, 0x98, 0x4e, 0x46, 0xcb, 0x8a, 0x1b, 0xee, 0xcf, + 0xc0, 0xb0, 0xf4, 0x99, 0x2e, 0x94, 0xd4, 0x41, 0xdc, 0xcd, 0xab, 0x47, 0xee, 0xb4, 0x47, 0x90, + 0x84, 0xb7, 0xb4, 0xe4, 0x77, 0x98, 0x07, 0xd0, 0xfe, 0xd8, 0x82, 0x93, 0x5d, 0xbc, 0x87, 0xb8, + 0x4f, 0xeb, 0xa6, 0x17, 0x27, 0x2a, 0x05, 0xbb, 0xe6, 0xd3, 0xca, 0xe1, 0x58, 0x51, 0xd0, 0xd5, + 0xc2, 0xed, 0x2e, 0xd9, 0x3b, 0x79, 0xe1, 0x1f, 0x21, 0xb0, 0xfd, 0x25, 0x3d, 0x43, 0xe7, 0x60, + 0xa0, 0x1d, 0x93, 0x48, 0xbe, 0x46, 0x26, 0x45, 0x29, 0x33, 0xb5, 0x31, 0x0c, 0xd5, 0x0c, 0x37, + 0x95, 0x95, 0x4b, 0xd3, 0x0c, 0xb9, 0x9d, 0x8b, 0xe3, 0xec, 0x6f, 0x94, 0x61, 0x32, 0xe3, 0x45, + 0x48, 0x1b, 0xd2, 0x0c, 0x03, 0x2f, 0x09, 0x55, 0xa2, 0x2d, 0xfe, 0x00, 0x12, 0x69, 0x6d, 0xdd, + 0x10, 0x70, 0xac, 0x28, 0xd0, 0xd3, 0xe6, 0xe3, 0xf0, 0x69, 0x9b, 0x17, 0xab, 0xc6, 0x3b, 0x91, + 0x45, 0x9f, 0x85, 0x78, 0x12, 0x06, 0x5a, 0xa1, 0x7a, 0xf3, 0x57, 0x7d, 0x4f, 0xbc, 0x58, 0xad, + 0x85, 0xa1, 0x8f, 0x19, 0x12, 0x3d, 0x25, 0x7a, 0x9f, 0xb9, 0x1c, 0xc0, 0x8e, 0x1b, 0xc6, 0xda, + 0x10, 0x3c, 0x03, 0xc3, 0xf7, 0xc8, 0x4e, 0xe4, 0x05, 0x9b, 0xd9, 0xab, 0x91, 0x6b, 0x1c, 0x8c, + 0x25, 0xde, 0x7c, 0xfa, 0x61, 0xf8, 0x88, 0x9f, 0x7e, 0x18, 0xc9, 0x75, 0x84, 0xfe, 0xae, 0x05, + 0x93, 0x2c, 0xfb, 0xa4, 0x88, 0xd5, 0xf6, 0xc2, 0xe0, 0x18, 0xb6, 0xf1, 0x27, 0x61, 0x30, 0xa2, + 0x95, 0x66, 0x73, 0xb7, 0xb3, 0x96, 0x60, 0x8e, 0x43, 0x8f, 0xc1, 0x00, 0x6b, 0x02, 0xfd, 0x8c, + 0x63, 0x3c, 0xc9, 0x75, 0xd5, 0x49, 0x1c, 0xcc, 0xa0, 0x2c, 0xec, 0x06, 0x93, 0x96, 0xef, 0xf1, + 0x46, 0xa7, 0x16, 0xcd, 0xf7, 0x5b, 0xd8, 0x4d, 0xd7, 0x46, 0x3e, 0xac, 0xb0, 0x9b, 0xee, 0xcc, + 0x0f, 0x56, 0xa5, 0xff, 0x7b, 0x09, 0xce, 0x76, 0x2d, 0x97, 0x5e, 0xb2, 0xae, 0x18, 0x97, 0xac, + 0x97, 0x32, 0x97, 0xac, 0xf6, 0xc1, 0xa5, 0x1f, 0xce, 0xb5, 0x6b, 0xf7, 0xdb, 0xd0, 0xf2, 0x31, + 0xde, 0x86, 0x0e, 0x14, 0x55, 0x71, 0x06, 0x73, 0x54, 0x9c, 0xdf, 0xb7, 0xe0, 0xd1, 0xae, 0x43, + 0xf6, 0xbe, 0x8b, 0x73, 0xea, 0xda, 0xca, 0x1e, 0x07, 0x80, 0x5f, 0x2d, 0xf7, 0xe8, 0x15, 0x3b, + 0x0a, 0x9c, 0xa7, 0x52, 0x88, 0x21, 0x63, 0xa1, 0xbc, 0x8d, 0x71, 0x09, 0xc4, 0x61, 0x58, 0x61, + 0x51, 0xac, 0xc5, 0x09, 0xf1, 0x46, 0x2e, 0x1f, 0x72, 0x41, 0xcd, 0x99, 0xa6, 0x68, 0x3d, 0x00, + 0x3d, 0x13, 0x3d, 0x84, 0xee, 0x6a, 0x87, 0xbb, 0xf2, 0x61, 0x0e, 0x77, 0x63, 0xdd, 0x0f, 0x76, + 0x68, 0x01, 0x26, 0x9b, 0x5e, 0xc0, 0x5e, 0x8c, 0x34, 0xb5, 0x27, 0x15, 0xac, 0x79, 0xc3, 0x44, + 0xe3, 0x2c, 0xfd, 0xcc, 0x2b, 0x30, 0x7e, 0x78, 0x03, 0xd6, 0xbb, 0x65, 0xf8, 0xe0, 0x01, 0x42, + 0x81, 0xef, 0x0e, 0xc6, 0x77, 0xd1, 0x76, 0x87, 0x8e, 0x6f, 0x53, 0x83, 0x53, 0x1b, 0x6d, 0xdf, + 0xdf, 0x61, 0x2e, 0x4a, 0xc4, 0x95, 0x14, 0x42, 0xa9, 0x51, 0xcf, 0x47, 0xaf, 0x74, 0xa1, 0xc1, + 0x5d, 0x4b, 0xa2, 0x4f, 0x03, 0x0a, 0xd7, 0x59, 0x7e, 0x56, 0x37, 0x0d, 0xb0, 0x67, 0x9f, 0xa0, + 0x9c, 0x2e, 0xd5, 0x5b, 0x1d, 0x14, 0xb8, 0x4b, 0x29, 0xaa, 0xa7, 0xb2, 0x97, 0xa7, 0x55, 0xb3, + 0x32, 0x7a, 0x2a, 0xd6, 0x91, 0xd8, 0xa4, 0x45, 0x57, 0xe0, 0x84, 0xb3, 0xed, 0x78, 0x3c, 0xdf, + 0x92, 0x64, 0xc0, 0x15, 0x55, 0x65, 0x22, 0x5a, 0xc8, 0x12, 0xe0, 0xce, 0x32, 0xa8, 0x65, 0xd8, + 0xfc, 0x78, 0x66, 0xf6, 0x4f, 0x1c, 0x62, 0x06, 0x17, 0xb6, 0x02, 0xda, 0xff, 0xd5, 0xa2, 0x5b, + 0x5f, 0x97, 0xc7, 0x05, 0xe9, 0x88, 0x28, 0x1b, 0x96, 0x16, 0x39, 0xa5, 0x46, 0x64, 0x49, 0x47, + 0x62, 0x93, 0x96, 0x4f, 0x8d, 0x38, 0xf5, 0x75, 0x36, 0xb4, 0x4d, 0x11, 0x32, 0xa8, 0x28, 0xa8, + 0x06, 0xed, 0x7a, 0xdb, 0x5e, 0x1c, 0x46, 0x62, 0x01, 0xf5, 0xe9, 0x3f, 0x9b, 0xca, 0xcb, 0x2a, + 0x67, 0x83, 0x25, 0x3f, 0xfb, 0x9b, 0x25, 0x18, 0x97, 0x35, 0xbe, 0xd6, 0x0e, 0x13, 0xe7, 0x18, + 0xb6, 0xf4, 0xd7, 0x8c, 0x2d, 0x7d, 0xbe, 0x58, 0x04, 0x25, 0x6b, 0x5c, 0xcf, 0xad, 0xfc, 0x33, + 0x99, 0xad, 0xfc, 0x62, 0x3f, 0x4c, 0x0f, 0xde, 0xc2, 0xff, 0xb5, 0x05, 0x27, 0x0c, 0xfa, 0x63, + 0xd8, 0x49, 0x6a, 0xe6, 0x4e, 0xf2, 0x5c, 0x1f, 0xbd, 0xe9, 0xb1, 0x83, 0x7c, 0xa7, 0x94, 0xe9, + 0x05, 0xdb, 0x39, 0xbe, 0x08, 0x03, 0x5b, 0x4e, 0xe4, 0x16, 0x4b, 0x3e, 0xd8, 0x51, 0x7c, 0xee, + 0xaa, 0x13, 0xb9, 0x5c, 0xfe, 0x5f, 0x50, 0x4f, 0x1f, 0x39, 0x91, 0x9b, 0x1b, 0x02, 0xc0, 0x2a, + 0x45, 0x97, 0x61, 0x28, 0x6e, 0x84, 0x2d, 0xe5, 0x6a, 0x79, 0x8e, 0x3f, 0x8b, 0x44, 0x21, 0xfb, + 0xbb, 0xb3, 0xc8, 0xac, 0x8e, 0x82, 0xb1, 0xa0, 0x9f, 0xd9, 0x84, 0x8a, 0xaa, 0xfa, 0x48, 0x9d, + 0xcd, 0xff, 0xa4, 0x0c, 0x27, 0xbb, 0xcc, 0x15, 0xf4, 0x25, 0x63, 0xdc, 0x5e, 0xe9, 0x7b, 0xb2, + 0xbd, 0xc7, 0x91, 0xfb, 0x12, 0x3b, 0x29, 0xb9, 0x62, 0x76, 0x1c, 0xa2, 0xfa, 0xdb, 0x31, 0xc9, + 0x56, 0x4f, 0x41, 0xf9, 0xd5, 0xd3, 0x6a, 0x8f, 0x6d, 0xf8, 0x69, 0x45, 0xaa, 0xa5, 0x47, 0xfa, + 0x9d, 0xff, 0xc2, 0x00, 0x9c, 0xea, 0x16, 0xaa, 0x8d, 0xbe, 0x6a, 0x65, 0x5e, 0x18, 0x78, 0xb5, + 0xff, 0x78, 0x6f, 0xfe, 0xec, 0x80, 0x48, 0x6f, 0x32, 0x67, 0xbe, 0x39, 0x90, 0x3b, 0xe2, 0xa2, + 0x76, 0x16, 0xbc, 0x13, 0xf1, 0xd7, 0x22, 0xa4, 0x54, 0xf8, 0xd4, 0x21, 0x9a, 0x22, 0x1e, 0x9c, + 0x88, 0x33, 0xc1, 0x3b, 0x12, 0x9c, 0x1f, 0xbc, 0x23, 0xdb, 0x30, 0xe3, 0xc1, 0xa8, 0xd6, 0xaf, + 0x23, 0x9d, 0x06, 0xf7, 0xe8, 0x16, 0xa5, 0xb5, 0xfb, 0x48, 0xa7, 0xc2, 0xdf, 0xb0, 0x20, 0xe3, + 0x17, 0xa5, 0xcc, 0x32, 0x56, 0x4f, 0xb3, 0xcc, 0x39, 0x18, 0x88, 0x42, 0x9f, 0x64, 0xb3, 0xdf, + 0xe3, 0xd0, 0x27, 0x98, 0x61, 0xd4, 0x6b, 0xa8, 0xe5, 0x5e, 0xaf, 0xa1, 0xd2, 0x73, 0xba, 0x4f, + 0xb6, 0x89, 0x34, 0x92, 0x28, 0x31, 0x7e, 0x9d, 0x02, 0x31, 0xc7, 0xd9, 0xbf, 0x57, 0x86, 0x21, + 0x6e, 0x89, 0x38, 0x86, 0x7d, 0xba, 0x26, 0x8c, 0x02, 0x85, 0x02, 0xa8, 0x79, 0xab, 0xe6, 0xaa, + 0x4e, 0xe2, 0xf0, 0xc9, 0xa5, 0xfa, 0x98, 0x1a, 0x12, 0xd0, 0x9c, 0x31, 0x0a, 0x33, 0x99, 0xb3, + 0x2e, 0x70, 0x1e, 0xda, 0x98, 0x6c, 0x01, 0xc4, 0xec, 0xf5, 0x3d, 0xca, 0x43, 0x24, 0x79, 0x7c, + 0xb1, 0x50, 0x3b, 0xea, 0xaa, 0x18, 0x6f, 0x4d, 0x9a, 0x59, 0x4e, 0x21, 0xb0, 0xc6, 0x7b, 0xe6, + 0x65, 0xa8, 0x28, 0xe2, 0xbc, 0x43, 0xc0, 0x98, 0x3e, 0x39, 0xff, 0x3f, 0x98, 0xcc, 0xd4, 0xd5, + 0xd7, 0x19, 0xe2, 0xb7, 0x2c, 0x98, 0xcc, 0x3c, 0x1c, 0x8e, 0xbe, 0x62, 0xc1, 0x29, 0xbf, 0x8b, + 0x21, 0x4a, 0x7c, 0xe6, 0xc3, 0x98, 0xb0, 0xd4, 0xf1, 0xa1, 0x1b, 0x16, 0x77, 0xad, 0x8d, 0x1e, + 0x2b, 0xf9, 0x63, 0xa2, 0x8e, 0x2f, 0xdc, 0x4c, 0xc7, 0x78, 0x7a, 0x5b, 0x0e, 0xc3, 0x0a, 0x6b, + 0xff, 0xc4, 0x82, 0x13, 0x1d, 0x6f, 0x53, 0xbf, 0x5f, 0xba, 0x21, 0x12, 0xf9, 0x96, 0x7a, 0x24, + 0xf2, 0xd5, 0x7b, 0x59, 0x3e, 0xb0, 0x97, 0xbf, 0x6e, 0x81, 0x98, 0xa1, 0xc7, 0xa0, 0x01, 0xae, + 0x9a, 0x1a, 0xe0, 0x87, 0x8a, 0x4c, 0xfa, 0x1e, 0xaa, 0xdf, 0xaf, 0x94, 0x60, 0x8a, 0x13, 0xa4, + 0x36, 0xf5, 0xf7, 0xcb, 0xc7, 0xe9, 0xef, 0x81, 0x09, 0xf5, 0xaa, 0x5f, 0xf7, 0x9e, 0x1a, 0xdf, + 0x72, 0xe0, 0xc0, 0x6f, 0xf9, 0x67, 0x16, 0x20, 0x3e, 0x26, 0xd9, 0x97, 0x58, 0xb9, 0x71, 0x57, + 0x3b, 0xd0, 0xa5, 0x92, 0x43, 0x61, 0xb0, 0x46, 0xf5, 0x90, 0xbb, 0x90, 0xb9, 0xd1, 0x28, 0xe7, + 0xdf, 0x68, 0xf4, 0xd1, 0xeb, 0xdf, 0x2e, 0x43, 0xd6, 0xdf, 0x0c, 0xbd, 0x05, 0x63, 0x0d, 0xa7, + 0xe5, 0xac, 0x7b, 0xbe, 0x97, 0x78, 0x24, 0x2e, 0x76, 0x65, 0xba, 0xa4, 0x95, 0x10, 0x17, 0x09, + 0x1a, 0x04, 0x1b, 0x1c, 0xd1, 0x1c, 0x40, 0x2b, 0xf2, 0xb6, 0x3d, 0x9f, 0x6c, 0x32, 0x9d, 0x95, + 0x39, 0xac, 0xf3, 0xdb, 0x3f, 0x09, 0xc5, 0x1a, 0x45, 0x17, 0x07, 0xe7, 0xf2, 0x71, 0x38, 0x38, + 0x0f, 0xf4, 0xe9, 0xe0, 0x3c, 0x58, 0xc8, 0xc1, 0x19, 0xc3, 0x19, 0x69, 0xff, 0xa7, 0xff, 0x57, + 0x3c, 0x9f, 0xf0, 0x7c, 0xa6, 0xc2, 0xa1, 0x7d, 0x66, 0x6f, 0x77, 0xf6, 0x0c, 0xee, 0x4a, 0x81, + 0x7b, 0x94, 0xb4, 0xdb, 0x70, 0xb2, 0x4e, 0x22, 0x8f, 0xa5, 0x99, 0x73, 0xd3, 0xb5, 0xf4, 0x79, + 0xa8, 0x44, 0x99, 0x65, 0xdc, 0x67, 0xbc, 0xb1, 0x96, 0x98, 0x48, 0x2e, 0xdb, 0x94, 0xa5, 0xfd, + 0x97, 0x4a, 0x30, 0x2c, 0x3c, 0xcd, 0x8e, 0x41, 0xf9, 0xb8, 0x66, 0x18, 0x09, 0x9e, 0xc9, 0x93, + 0x7f, 0xac, 0x59, 0x3d, 0xcd, 0x03, 0xf5, 0x8c, 0x79, 0xe0, 0xb9, 0x62, 0xec, 0x0e, 0x36, 0x0c, + 0xfc, 0xc3, 0x32, 0x4c, 0x98, 0x9e, 0x77, 0xc7, 0x30, 0x2c, 0xaf, 0xc3, 0x70, 0x2c, 0x9c, 0x40, + 0x4b, 0x45, 0x1c, 0x9b, 0xb2, 0x9f, 0x38, 0xbd, 0x4b, 0x15, 0x6e, 0x9f, 0x92, 0x5d, 0x57, 0x3f, + 0xd3, 0xf2, 0xb1, 0xf8, 0x99, 0xe6, 0x39, 0x44, 0x0e, 0x3c, 0x0c, 0x87, 0x48, 0xfb, 0x87, 0x4c, + 0xe4, 0xeb, 0xf0, 0x63, 0xd8, 0xc6, 0x5f, 0x33, 0x37, 0x87, 0x0b, 0x85, 0xe6, 0x9d, 0x68, 0x5e, + 0x8f, 0xed, 0xfc, 0x7b, 0x16, 0x8c, 0x0a, 0xc2, 0x63, 0xe8, 0xc0, 0xa7, 0xcd, 0x0e, 0x3c, 0x55, + 0xa8, 0x03, 0x3d, 0x5a, 0xfe, 0xcd, 0x92, 0x6a, 0x79, 0x4d, 0xbc, 0x9e, 0x9d, 0x9b, 0x54, 0x77, + 0xa4, 0x15, 0x85, 0x49, 0xd8, 0x08, 0x7d, 0xa1, 0xc0, 0x3d, 0x96, 0xc6, 0x2f, 0x71, 0xf8, 0xbe, + 0xf6, 0x1b, 0x2b, 0x6a, 0x16, 0x5e, 0x13, 0x46, 0x89, 0xd8, 0x40, 0xbb, 0xbd, 0xdd, 0xed, 0x02, + 0xa4, 0x0f, 0x26, 0x8b, 0xd0, 0xbf, 0xfe, 0x5f, 0x05, 0x4f, 0x03, 0x92, 0x14, 0x2f, 0xac, 0xf1, + 0x95, 0x9e, 0xee, 0xac, 0x8e, 0x41, 0xf3, 0x0e, 0xe0, 0xa6, 0x80, 0x63, 0x45, 0x61, 0xbf, 0xcc, + 0x24, 0x3b, 0x1b, 0xa0, 0xfe, 0x62, 0x85, 0x7e, 0x79, 0x48, 0x0d, 0x2d, 0x33, 0xec, 0xdd, 0xd4, + 0x23, 0x92, 0x8a, 0x8a, 0x4f, 0xda, 0x04, 0xdd, 0xd9, 0x34, 0x0d, 0x60, 0x42, 0xa4, 0xe3, 0xe2, + 0xe8, 0xe5, 0xc2, 0x12, 0xb9, 0x8f, 0xab, 0x22, 0x96, 0x89, 0x8c, 0xa5, 0x5f, 0x5a, 0xad, 0x65, + 0x53, 0x21, 0x2f, 0x49, 0x04, 0x4e, 0x69, 0xd0, 0xbc, 0x38, 0x50, 0x9a, 0x8f, 0xab, 0xcb, 0x03, + 0xa5, 0x1c, 0x12, 0xed, 0x44, 0x79, 0x11, 0x46, 0xd5, 0xeb, 0x12, 0x35, 0x9e, 0xd7, 0xbf, 0xc2, + 0xf5, 0xab, 0xe5, 0x14, 0x8c, 0x75, 0x1a, 0xb4, 0x0a, 0x27, 0x5d, 0x15, 0xd8, 0x50, 0x6b, 0xaf, + 0xfb, 0x5e, 0x83, 0x16, 0xe5, 0x41, 0x89, 0x8f, 0xec, 0xed, 0xce, 0x9e, 0xac, 0x76, 0xa2, 0x71, + 0xb7, 0x32, 0x68, 0x0d, 0x26, 0x63, 0xfe, 0x8a, 0x86, 0xf4, 0x5e, 0x17, 0x19, 0x42, 0x9f, 0x95, + 0x37, 0x56, 0x75, 0x13, 0xbd, 0xcf, 0x40, 0x5c, 0x2a, 0x48, 0x7f, 0xf7, 0x2c, 0x0b, 0xf4, 0x2a, + 0x4c, 0xf8, 0xfa, 0x13, 0x81, 0x35, 0x11, 0xdf, 0xa1, 0x7c, 0x90, 0x8c, 0x07, 0x04, 0x6b, 0x38, + 0x43, 0x8d, 0x5e, 0x87, 0x69, 0x1d, 0x22, 0xd2, 0xa4, 0x38, 0xc1, 0x26, 0x89, 0x45, 0xc6, 0xfd, + 0xc7, 0xf6, 0x76, 0x67, 0xa7, 0xaf, 0xf7, 0xa0, 0xc1, 0x3d, 0x4b, 0xa3, 0xcb, 0x30, 0x26, 0x47, + 0x52, 0x8b, 0xf5, 0x48, 0xbd, 0xdf, 0x34, 0x1c, 0x36, 0x28, 0xdf, 0xdb, 0xc5, 0xdc, 0x17, 0x69, + 0x61, 0x6d, 0x0b, 0x47, 0x6f, 0xc3, 0x98, 0xde, 0xc6, 0xec, 0xde, 0x9c, 0xff, 0xec, 0xa2, 0x50, + 0x05, 0x54, 0xcb, 0x75, 0x1c, 0x36, 0x78, 0xdb, 0xb7, 0x60, 0xa8, 0xbe, 0x13, 0x37, 0x12, 0xff, + 0x61, 0xbd, 0xab, 0x4f, 0x60, 0x32, 0xf3, 0x00, 0x3d, 0xc2, 0x42, 0xba, 0x59, 0x87, 0x94, 0x5a, + 0x5d, 0xe4, 0xa1, 0xfd, 0x47, 0x16, 0x0c, 0xb2, 0xe7, 0x4b, 0xf2, 0x9e, 0xbe, 0x29, 0xd2, 0x68, + 0xf4, 0x12, 0x0c, 0x91, 0x8d, 0x0d, 0xd2, 0x48, 0xc4, 0x32, 0x96, 0x0e, 0xd5, 0x43, 0xcb, 0x0c, + 0x4a, 0x17, 0x27, 0xab, 0x8c, 0xff, 0xc5, 0x82, 0x18, 0x7d, 0x0e, 0x2a, 0x89, 0xd7, 0x24, 0x0b, + 0xae, 0x4b, 0xdc, 0x43, 0x84, 0x63, 0x2b, 0x61, 0xb1, 0x26, 0x99, 0xe0, 0x94, 0x9f, 0xfd, 0xf5, + 0x12, 0x40, 0x1a, 0xce, 0x90, 0xd7, 0xcd, 0xc5, 0x8e, 0x17, 0x7e, 0x9e, 0xee, 0xf2, 0xc2, 0x0f, + 0x4a, 0x19, 0x76, 0x79, 0xdf, 0x47, 0x0d, 0x55, 0xb9, 0xd0, 0x50, 0x0d, 0xf4, 0x33, 0x54, 0x4b, + 0x70, 0x22, 0x0d, 0xc7, 0x30, 0xe3, 0xda, 0x58, 0xc6, 0xc0, 0xb5, 0x2c, 0x12, 0x77, 0xd2, 0xdb, + 0x5f, 0xb7, 0x40, 0xb8, 0xac, 0x15, 0x98, 0xad, 0xae, 0x7c, 0x8d, 0xc3, 0x48, 0xd2, 0xf4, 0x6c, + 0x11, 0x6f, 0x3e, 0x91, 0x9a, 0x49, 0xad, 0x1f, 0x23, 0x21, 0x93, 0xc1, 0xd5, 0xfe, 0x0d, 0x0b, + 0x46, 0x39, 0xfa, 0x06, 0xd3, 0xa9, 0xf3, 0xdb, 0xd5, 0x57, 0x3a, 0x4a, 0xf6, 0x50, 0x05, 0x65, + 0xac, 0xd2, 0x12, 0xea, 0x0f, 0x55, 0x48, 0x04, 0x4e, 0x69, 0xd0, 0x33, 0x30, 0x1c, 0xb7, 0xd7, + 0x19, 0x79, 0xc6, 0x7f, 0xad, 0xce, 0xc1, 0x58, 0xe2, 0xed, 0x7f, 0x5c, 0x82, 0xa9, 0xac, 0xfb, + 0x22, 0xc2, 0x30, 0xc4, 0x75, 0xec, 0xac, 0x7a, 0x76, 0x90, 0x2d, 0x47, 0x73, 0x7f, 0x04, 0xfe, + 0xdc, 0x2a, 0xf3, 0x39, 0x13, 0x9c, 0xd0, 0x06, 0x8c, 0xba, 0xe1, 0xfd, 0xe0, 0xbe, 0x13, 0xb9, + 0x0b, 0xb5, 0x55, 0xf1, 0x25, 0x72, 0x1c, 0x4e, 0xaa, 0x69, 0x01, 0xdd, 0xb9, 0x92, 0xd9, 0x16, + 0x52, 0x14, 0xd6, 0x19, 0xd3, 0x33, 0x65, 0x23, 0x0c, 0x36, 0xbc, 0xcd, 0x1b, 0x4e, 0xab, 0xd8, + 0xd5, 0xea, 0x92, 0x24, 0xd7, 0xea, 0x18, 0x17, 0x81, 0xec, 0x1c, 0x81, 0x53, 0x96, 0xf6, 0x9f, + 0x20, 0x30, 0xe6, 0x82, 0x91, 0x33, 0xd2, 0x7a, 0xe8, 0x39, 0x23, 0xdf, 0x80, 0x11, 0xd2, 0x6c, + 0x25, 0x3b, 0x55, 0x2f, 0x2a, 0x96, 0xbf, 0x77, 0x59, 0x50, 0x77, 0x72, 0x97, 0x18, 0xac, 0x38, + 0xf6, 0xc8, 0x00, 0x5a, 0x7e, 0x5f, 0x64, 0x00, 0x1d, 0xf8, 0xa9, 0x64, 0x00, 0x7d, 0x1d, 0x86, + 0x37, 0xbd, 0x04, 0x93, 0x56, 0x28, 0x32, 0x03, 0xe4, 0x4c, 0x9e, 0x2b, 0x9c, 0xb8, 0x33, 0xad, + 0x9f, 0x40, 0x60, 0xc9, 0x0e, 0xad, 0xa9, 0x45, 0x35, 0x54, 0x64, 0x2f, 0xef, 0xb4, 0xf5, 0x75, + 0x5d, 0x56, 0x22, 0xe3, 0xe7, 0xf0, 0x7b, 0xcf, 0xf8, 0xa9, 0xf2, 0x74, 0x8e, 0x3c, 0xac, 0x3c, + 0x9d, 0x46, 0xbe, 0xd3, 0xca, 0x51, 0xe4, 0x3b, 0xfd, 0xba, 0x05, 0xa7, 0x5b, 0xdd, 0xb2, 0x05, + 0x8b, 0x8c, 0x9b, 0x9f, 0x3c, 0x44, 0xfe, 0x64, 0xa3, 0x6a, 0x16, 0x6f, 0xdd, 0x95, 0x0c, 0x77, + 0xaf, 0x58, 0x26, 0x4e, 0x1d, 0x7d, 0xef, 0x89, 0x53, 0x8f, 0x3a, 0x35, 0x67, 0x9a, 0x46, 0x75, + 0xfc, 0x48, 0xd2, 0xa8, 0x4e, 0x3c, 0xc4, 0x34, 0xaa, 0x5a, 0x02, 0xd4, 0xc9, 0x87, 0x9b, 0x00, + 0x75, 0xcb, 0xdc, 0x97, 0x78, 0xbe, 0xcd, 0x97, 0x0a, 0xef, 0x4b, 0x46, 0x0d, 0x07, 0xef, 0x4c, + 0x3c, 0x15, 0xec, 0x89, 0xf7, 0x98, 0x0a, 0xd6, 0x48, 0xa8, 0x8a, 0x8e, 0x22, 0xa1, 0xea, 0x5b, + 0xfa, 0x0e, 0x7a, 0xb2, 0x48, 0x0d, 0x6a, 0xa3, 0xec, 0xac, 0xa1, 0xdb, 0x1e, 0xda, 0x99, 0xb2, + 0xf5, 0xd4, 0x71, 0xa7, 0x6c, 0x3d, 0x7d, 0x84, 0x29, 0x5b, 0xcf, 0x1c, 0x6b, 0xca, 0xd6, 0x47, + 0x7e, 0x1a, 0x29, 0x5b, 0x69, 0x87, 0x5b, 0x32, 0x74, 0x66, 0x7a, 0xba, 0x48, 0x87, 0xbb, 0x46, + 0xda, 0xf0, 0x0e, 0x2b, 0x14, 0x4e, 0x99, 0xda, 0x7f, 0x0e, 0xce, 0x1e, 0xfc, 0xc1, 0xd3, 0x67, + 0x07, 0x6a, 0xa9, 0xa5, 0x29, 0xf3, 0xec, 0x00, 0x53, 0xa6, 0x34, 0xaa, 0xc2, 0x99, 0x29, 0xbf, + 0x63, 0xc1, 0x23, 0x3d, 0x12, 0xb7, 0x15, 0x8e, 0x3b, 0x6b, 0xc1, 0x64, 0xcb, 0x2c, 0x5a, 0x38, + 0x52, 0xd4, 0x48, 0x14, 0xa7, 0x7c, 0x83, 0x33, 0x08, 0x9c, 0x65, 0xbf, 0xf8, 0xa1, 0x1f, 0xbd, + 0x7b, 0xf6, 0x03, 0x3f, 0x7e, 0xf7, 0xec, 0x07, 0xfe, 0xf0, 0xdd, 0xb3, 0x1f, 0xf8, 0x85, 0xbd, + 0xb3, 0xd6, 0x8f, 0xf6, 0xce, 0x5a, 0x3f, 0xde, 0x3b, 0x6b, 0xfd, 0xf1, 0xde, 0x59, 0xeb, 0xeb, + 0x3f, 0x39, 0xfb, 0x81, 0xcf, 0x96, 0xb6, 0x2f, 0xfe, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb3, + 0xae, 0x2f, 0x54, 0x6b, 0xc3, 0x00, 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index 0bb9dbfa36c..fa2b95ae258 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -1622,6 +1622,10 @@ message NodeSpec { // More info: http://releases.k8s.io/HEAD/docs/admin/node.md#manual-node-administration // +optional optional bool unschedulable = 4; + + // If specified, the node's taints. + // +optional + repeated Taint taints = 5; } // NodeStatus is information about the current status of a node. @@ -2662,6 +2666,10 @@ message PodSpec { // If not specified, the pod will be dispatched by default scheduler. // +optional optional string schedulername = 19; + + // If specified, the pod's tolerations. + // +optional + repeated Toleration tolerations = 22; } // PodStatus represents information about the status of a pod. Status may trail the actual diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index 675f4b00c3b..472008018dc 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -32099,7 +32099,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2 := !z.EncBinary() yy2arr2 := z.EncBasicHandle().StructToArray - var yyq2 [21]bool + var yyq2 [22]bool _, _, _ = yysep2, yyq2, yy2arr2 const yyr2 bool = false yyq2[0] = len(x.Volumes) != 0 @@ -32122,9 +32122,10 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { yyq2[18] = x.Subdomain != "" yyq2[19] = x.Affinity != nil yyq2[20] = x.SchedulerName != "" + yyq2[21] = len(x.Tolerations) != 0 var yynn2 int if yyr2 || yy2arr2 { - r.EncodeArrayStart(21) + r.EncodeArrayStart(22) } else { yynn2 = 1 for _, b := range yyq2 { @@ -32700,6 +32701,39 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } + if yyr2 || yy2arr2 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2[21] { + if x.Tolerations == nil { + r.EncodeNil() + } else { + yym73 := z.EncBinary() + _ = yym73 + if false { + } else { + h.encSliceToleration(([]Toleration)(x.Tolerations), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[21] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("tolerations")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Tolerations == nil { + r.EncodeNil() + } else { + yym74 := z.EncBinary() + _ = yym74 + if false { + } else { + h.encSliceToleration(([]Toleration)(x.Tolerations), e) + } + } + } + } if yyr2 || yy2arr2 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -33013,6 +33047,18 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { *((*string)(yyv40)) = r.DecodeString() } } + case "tolerations": + if r.TryDecodeAsNil() { + x.Tolerations = nil + } else { + yyv42 := &x.Tolerations + yym43 := z.DecBinary() + _ = yym43 + if false { + } else { + h.decSliceToleration((*[]Toleration)(yyv42), d) + } + } default: z.DecStructFieldNotFound(-1, yys3) } // end switch yys3 @@ -33024,16 +33070,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj42 int - var yyb42 bool - var yyhl42 bool = l >= 0 - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + var yyj44 int + var yyb44 bool + var yyhl44 bool = l >= 0 + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33041,21 +33087,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv43 := &x.Volumes - yym44 := z.DecBinary() - _ = yym44 + yyv45 := &x.Volumes + yym46 := z.DecBinary() + _ = yym46 if false { } else { - h.decSliceVolume((*[]Volume)(yyv43), d) + h.decSliceVolume((*[]Volume)(yyv45), d) } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33063,29 +33109,7 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InitContainers = nil } else { - yyv45 := &x.InitContainers - yym46 := z.DecBinary() - _ = yym46 - if false { - } else { - h.decSliceContainer((*[]Container)(yyv45), d) - } - } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l - } else { - yyb42 = r.CheckBreak() - } - if yyb42 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Containers = nil - } else { - yyv47 := &x.Containers + yyv47 := &x.InitContainers yym48 := z.DecBinary() _ = yym48 if false { @@ -33093,13 +33117,35 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { h.decSliceContainer((*[]Container)(yyv47), d) } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Containers = nil + } else { + yyv49 := &x.Containers + yym50 := z.DecBinary() + _ = yym50 + if false { + } else { + h.decSliceContainer((*[]Container)(yyv49), d) + } + } + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l + } else { + yyb44 = r.CheckBreak() + } + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33107,16 +33153,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.RestartPolicy = "" } else { - yyv49 := &x.RestartPolicy - yyv49.CodecDecodeSelf(d) + yyv51 := &x.RestartPolicy + yyv51.CodecDecodeSelf(d) } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33129,20 +33175,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym51 := z.DecBinary() - _ = yym51 + yym53 := z.DecBinary() + _ = yym53 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33155,20 +33201,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym53 := z.DecBinary() - _ = yym53 + yym55 := z.DecBinary() + _ = yym55 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33176,16 +33222,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DNSPolicy = "" } else { - yyv54 := &x.DNSPolicy - yyv54.CodecDecodeSelf(d) + yyv56 := &x.DNSPolicy + yyv56.CodecDecodeSelf(d) } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33193,21 +33239,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv55 := &x.NodeSelector - yym56 := z.DecBinary() - _ = yym56 + yyv57 := &x.NodeSelector + yym58 := z.DecBinary() + _ = yym58 if false { } else { - z.F.DecMapStringStringX(yyv55, false, d) + z.F.DecMapStringStringX(yyv57, false, d) } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33215,29 +33261,7 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ServiceAccountName = "" } else { - yyv57 := &x.ServiceAccountName - yym58 := z.DecBinary() - _ = yym58 - if false { - } else { - *((*string)(yyv57)) = r.DecodeString() - } - } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l - } else { - yyb42 = r.CheckBreak() - } - if yyb42 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.DeprecatedServiceAccount = "" - } else { - yyv59 := &x.DeprecatedServiceAccount + yyv59 := &x.ServiceAccountName yym60 := z.DecBinary() _ = yym60 if false { @@ -33245,13 +33269,35 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { *((*string)(yyv59)) = r.DecodeString() } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.DeprecatedServiceAccount = "" + } else { + yyv61 := &x.DeprecatedServiceAccount + yym62 := z.DecBinary() + _ = yym62 + if false { + } else { + *((*string)(yyv61)) = r.DecodeString() + } + } + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l + } else { + yyb44 = r.CheckBreak() + } + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33264,20 +33310,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.AutomountServiceAccountToken == nil { x.AutomountServiceAccountToken = new(bool) } - yym62 := z.DecBinary() - _ = yym62 + yym64 := z.DecBinary() + _ = yym64 if false { } else { *((*bool)(x.AutomountServiceAccountToken)) = r.DecodeBool() } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33285,21 +33331,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeName = "" } else { - yyv63 := &x.NodeName - yym64 := z.DecBinary() - _ = yym64 + yyv65 := &x.NodeName + yym66 := z.DecBinary() + _ = yym66 if false { } else { - *((*string)(yyv63)) = r.DecodeString() + *((*string)(yyv65)) = r.DecodeString() } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33307,29 +33353,7 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.HostNetwork = false } else { - yyv65 := &x.HostNetwork - yym66 := z.DecBinary() - _ = yym66 - if false { - } else { - *((*bool)(yyv65)) = r.DecodeBool() - } - } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l - } else { - yyb42 = r.CheckBreak() - } - if yyb42 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.HostPID = false - } else { - yyv67 := &x.HostPID + yyv67 := &x.HostNetwork yym68 := z.DecBinary() _ = yym68 if false { @@ -33337,21 +33361,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { *((*bool)(yyv67)) = r.DecodeBool() } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.HostIPC = false + x.HostPID = false } else { - yyv69 := &x.HostIPC + yyv69 := &x.HostPID yym70 := z.DecBinary() _ = yym70 if false { @@ -33359,13 +33383,35 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { *((*bool)(yyv69)) = r.DecodeBool() } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.HostIPC = false + } else { + yyv71 := &x.HostIPC + yym72 := z.DecBinary() + _ = yym72 + if false { + } else { + *((*bool)(yyv71)) = r.DecodeBool() + } + } + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l + } else { + yyb44 = r.CheckBreak() + } + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33380,13 +33426,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33394,21 +33440,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv72 := &x.ImagePullSecrets - yym73 := z.DecBinary() - _ = yym73 + yyv74 := &x.ImagePullSecrets + yym75 := z.DecBinary() + _ = yym75 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv72), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv74), d) } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33416,29 +33462,7 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Hostname = "" } else { - yyv74 := &x.Hostname - yym75 := z.DecBinary() - _ = yym75 - if false { - } else { - *((*string)(yyv74)) = r.DecodeString() - } - } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l - } else { - yyb42 = r.CheckBreak() - } - if yyb42 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.Subdomain = "" - } else { - yyv76 := &x.Subdomain + yyv76 := &x.Hostname yym77 := z.DecBinary() _ = yym77 if false { @@ -33446,13 +33470,35 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { *((*string)(yyv76)) = r.DecodeString() } } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Subdomain = "" + } else { + yyv78 := &x.Subdomain + yym79 := z.DecBinary() + _ = yym79 + if false { + } else { + *((*string)(yyv78)) = r.DecodeString() + } + } + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l + } else { + yyb44 = r.CheckBreak() + } + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33467,13 +33513,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Affinity.CodecDecodeSelf(d) } - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33481,26 +33527,48 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.SchedulerName = "" } else { - yyv79 := &x.SchedulerName - yym80 := z.DecBinary() - _ = yym80 + yyv81 := &x.SchedulerName + yym82 := z.DecBinary() + _ = yym82 if false { } else { - *((*string)(yyv79)) = r.DecodeString() + *((*string)(yyv81)) = r.DecodeString() + } + } + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l + } else { + yyb44 = r.CheckBreak() + } + if yyb44 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Tolerations = nil + } else { + yyv83 := &x.Tolerations + yym84 := z.DecBinary() + _ = yym84 + if false { + } else { + h.decSliceToleration((*[]Toleration)(yyv83), d) } } for { - yyj42++ - if yyhl42 { - yyb42 = yyj42 > l + yyj44++ + if yyhl44 { + yyb44 = yyj44 > l } else { - yyb42 = r.CheckBreak() + yyb44 = r.CheckBreak() } - if yyb42 { + if yyb44 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj42-1, "") + z.DecStructFieldNotFound(yyj44-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43983,16 +44051,17 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2 := !z.EncBinary() yy2arr2 := z.EncBasicHandle().StructToArray - var yyq2 [4]bool + var yyq2 [5]bool _, _, _ = yysep2, yyq2, yy2arr2 const yyr2 bool = false yyq2[0] = x.PodCIDR != "" yyq2[1] = x.ExternalID != "" yyq2[2] = x.ProviderID != "" yyq2[3] = x.Unschedulable != false + yyq2[4] = len(x.Taints) != 0 var yynn2 int if yyr2 || yy2arr2 { - r.EncodeArrayStart(4) + r.EncodeArrayStart(5) } else { yynn2 = 0 for _, b := range yyq2 { @@ -44103,6 +44172,39 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } + if yyr2 || yy2arr2 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2[4] { + if x.Taints == nil { + r.EncodeNil() + } else { + yym16 := z.EncBinary() + _ = yym16 + if false { + } else { + h.encSliceTaint(([]Taint)(x.Taints), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("taints")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Taints == nil { + r.EncodeNil() + } else { + yym17 := z.EncBinary() + _ = yym17 + if false { + } else { + h.encSliceTaint(([]Taint)(x.Taints), e) + } + } + } + } if yyr2 || yy2arr2 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -44212,6 +44314,18 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { *((*bool)(yyv10)) = r.DecodeBool() } } + case "taints": + if r.TryDecodeAsNil() { + x.Taints = nil + } else { + yyv12 := &x.Taints + yym13 := z.DecBinary() + _ = yym13 + if false { + } else { + h.decSliceTaint((*[]Taint)(yyv12), d) + } + } default: z.DecStructFieldNotFound(-1, yys3) } // end switch yys3 @@ -44223,16 +44337,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj12 int - var yyb12 bool - var yyhl12 bool = l >= 0 - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l + var yyj14 int + var yyb14 bool + var yyhl14 bool = l >= 0 + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l } else { - yyb12 = r.CheckBreak() + yyb14 = r.CheckBreak() } - if yyb12 { + if yyb14 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44240,29 +44354,7 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PodCIDR = "" } else { - yyv13 := &x.PodCIDR - yym14 := z.DecBinary() - _ = yym14 - if false { - } else { - *((*string)(yyv13)) = r.DecodeString() - } - } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l - } else { - yyb12 = r.CheckBreak() - } - if yyb12 { - z.DecSendContainerState(codecSelfer_containerArrayEnd1234) - return - } - z.DecSendContainerState(codecSelfer_containerArrayElem1234) - if r.TryDecodeAsNil() { - x.ExternalID = "" - } else { - yyv15 := &x.ExternalID + yyv15 := &x.PodCIDR yym16 := z.DecBinary() _ = yym16 if false { @@ -44270,21 +44362,21 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { *((*string)(yyv15)) = r.DecodeString() } } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l } else { - yyb12 = r.CheckBreak() + yyb14 = r.CheckBreak() } - if yyb12 { + if yyb14 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } z.DecSendContainerState(codecSelfer_containerArrayElem1234) if r.TryDecodeAsNil() { - x.ProviderID = "" + x.ExternalID = "" } else { - yyv17 := &x.ProviderID + yyv17 := &x.ExternalID yym18 := z.DecBinary() _ = yym18 if false { @@ -44292,13 +44384,35 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { *((*string)(yyv17)) = r.DecodeString() } } - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l } else { - yyb12 = r.CheckBreak() + yyb14 = r.CheckBreak() } - if yyb12 { + if yyb14 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.ProviderID = "" + } else { + yyv19 := &x.ProviderID + yym20 := z.DecBinary() + _ = yym20 + if false { + } else { + *((*string)(yyv19)) = r.DecodeString() + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44306,26 +44420,48 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Unschedulable = false } else { - yyv19 := &x.Unschedulable - yym20 := z.DecBinary() - _ = yym20 + yyv21 := &x.Unschedulable + yym22 := z.DecBinary() + _ = yym22 if false { } else { - *((*bool)(yyv19)) = r.DecodeBool() + *((*bool)(yyv21)) = r.DecodeBool() + } + } + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l + } else { + yyb14 = r.CheckBreak() + } + if yyb14 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + x.Taints = nil + } else { + yyv23 := &x.Taints + yym24 := z.DecBinary() + _ = yym24 + if false { + } else { + h.decSliceTaint((*[]Taint)(yyv23), d) } } for { - yyj12++ - if yyhl12 { - yyb12 = yyj12 > l + yyj14++ + if yyhl14 { + yyb14 = yyj14 > l } else { - yyb12 = r.CheckBreak() + yyb14 = r.CheckBreak() } - if yyb12 { + if yyb14 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj12-1, "") + z.DecStructFieldNotFound(yyj14-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -67244,6 +67380,125 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } +func (x codecSelfer1234) encSliceToleration(v []Toleration, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv1 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy2 := &yyv1 + yy2.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceToleration(v *[]Toleration, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []Toleration{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else if yyl1 > 0 { + var yyrr1, yyrl1 int + var yyrt1 bool + _, _ = yyrl1, yyrt1 + yyrr1 = yyl1 // len(yyv1) + if yyl1 > cap(yyv1) { + + yyrg1 := len(yyv1) > 0 + yyv21 := yyv1 + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 72) + if yyrt1 { + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]Toleration, yyrl1) + } + } else { + yyv1 = make([]Toleration, yyrl1) + } + yyc1 = true + yyrr1 = len(yyv1) + if yyrg1 { + copy(yyv1, yyv21) + } + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + yyj1 := 0 + for ; yyj1 < yyrr1; yyj1++ { + yyh1.ElemContainerState(yyj1) + if r.TryDecodeAsNil() { + yyv1[yyj1] = Toleration{} + } else { + yyv2 := &yyv1[yyj1] + yyv2.CodecDecodeSelf(d) + } + + } + if yyrt1 { + for ; yyj1 < yyl1; yyj1++ { + yyv1 = append(yyv1, Toleration{}) + yyh1.ElemContainerState(yyj1) + if r.TryDecodeAsNil() { + yyv1[yyj1] = Toleration{} + } else { + yyv3 := &yyv1[yyj1] + yyv3.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj1 := 0 + for ; !r.CheckBreak(); yyj1++ { + + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, Toleration{}) // var yyz1 Toleration + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + if yyj1 < len(yyv1) { + if r.TryDecodeAsNil() { + yyv1[yyj1] = Toleration{} + } else { + yyv4 := &yyv1[yyj1] + yyv4.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = []Toleration{} + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -67521,7 +67776,7 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { yyrg1 := len(yyv1) > 0 yyv21 := yyv1 - yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 712) + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 736) if yyrt1 { if yyrl1 <= cap(yyv1) { yyv1 = yyv1[:yyrl1] @@ -67640,7 +67895,7 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco yyrg1 := len(yyv1) > 0 yyv21 := yyv1 - yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 760) + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 784) if yyrt1 { if yyrl1 <= cap(yyv1) { yyv1 = yyv1[:yyrl1] @@ -69029,6 +69284,125 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } +func (x codecSelfer1234) encSliceTaint(v []Taint, e *codec1978.Encoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperEncoder(e) + _, _, _ = h, z, r + r.EncodeArrayStart(len(v)) + for _, yyv1 := range v { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + yy2 := &yyv1 + yy2.CodecEncodeSelf(e) + } + z.EncSendContainerState(codecSelfer_containerArrayEnd1234) +} + +func (x codecSelfer1234) decSliceTaint(v *[]Taint, d *codec1978.Decoder) { + var h codecSelfer1234 + z, r := codec1978.GenHelperDecoder(d) + _, _, _ = h, z, r + + yyv1 := *v + yyh1, yyl1 := z.DecSliceHelperStart() + var yyc1 bool + _ = yyc1 + if yyl1 == 0 { + if yyv1 == nil { + yyv1 = []Taint{} + yyc1 = true + } else if len(yyv1) != 0 { + yyv1 = yyv1[:0] + yyc1 = true + } + } else if yyl1 > 0 { + var yyrr1, yyrl1 int + var yyrt1 bool + _, _ = yyrl1, yyrt1 + yyrr1 = yyl1 // len(yyv1) + if yyl1 > cap(yyv1) { + + yyrg1 := len(yyv1) > 0 + yyv21 := yyv1 + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 72) + if yyrt1 { + if yyrl1 <= cap(yyv1) { + yyv1 = yyv1[:yyrl1] + } else { + yyv1 = make([]Taint, yyrl1) + } + } else { + yyv1 = make([]Taint, yyrl1) + } + yyc1 = true + yyrr1 = len(yyv1) + if yyrg1 { + copy(yyv1, yyv21) + } + } else if yyl1 != len(yyv1) { + yyv1 = yyv1[:yyl1] + yyc1 = true + } + yyj1 := 0 + for ; yyj1 < yyrr1; yyj1++ { + yyh1.ElemContainerState(yyj1) + if r.TryDecodeAsNil() { + yyv1[yyj1] = Taint{} + } else { + yyv2 := &yyv1[yyj1] + yyv2.CodecDecodeSelf(d) + } + + } + if yyrt1 { + for ; yyj1 < yyl1; yyj1++ { + yyv1 = append(yyv1, Taint{}) + yyh1.ElemContainerState(yyj1) + if r.TryDecodeAsNil() { + yyv1[yyj1] = Taint{} + } else { + yyv3 := &yyv1[yyj1] + yyv3.CodecDecodeSelf(d) + } + + } + } + + } else { + yyj1 := 0 + for ; !r.CheckBreak(); yyj1++ { + + if yyj1 >= len(yyv1) { + yyv1 = append(yyv1, Taint{}) // var yyz1 Taint + yyc1 = true + } + yyh1.ElemContainerState(yyj1) + if yyj1 < len(yyv1) { + if r.TryDecodeAsNil() { + yyv1[yyj1] = Taint{} + } else { + yyv4 := &yyv1[yyj1] + yyv4.CodecDecodeSelf(d) + } + + } else { + z.DecSwallow() + } + + } + if yyj1 < len(yyv1) { + yyv1 = yyv1[:yyj1] + yyc1 = true + } else if yyj1 == 0 && yyv1 == nil { + yyv1 = []Taint{} + yyc1 = true + } + } + yyh1.End() + if yyc1 { + *v = yyv1 + } +} + func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) @@ -69892,7 +70266,7 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { yyrg1 := len(yyv1) > 0 yyv21 := yyv1 - yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 632) + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 656) if yyrt1 { if yyrl1 <= cap(yyv1) { yyv1 = yyv1[:yyrl1] diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index e237915f904..218d8024d32 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -936,6 +936,7 @@ var map_NodeSpec = map[string]string{ "externalID": "External ID of the node assigned by some machine database (e.g. a cloud provider). Deprecated.", "providerID": "ID of the node assigned by the cloud provider in the format: ://", "unschedulable": "Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#manual-node-administration", + "taints": "If specified, the node's taints.", } func (NodeSpec) SwaggerDoc() map[string]string { @@ -1331,6 +1332,7 @@ var map_PodSpec = map[string]string{ "subdomain": "If specified, the fully qualified Pod hostname will be \"...svc.\". If not specified, the pod will not have a domainname at all.", "affinity": "If specified, the pod's scheduling constraints", "schedulername": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", + "tolerations": "If specified, the pod's tolerations.", } func (PodSpec) SwaggerDoc() map[string]string { diff --git a/pkg/api/v1/zz_generated.conversion.go b/pkg/api/v1/zz_generated.conversion.go index 409514b6877..91df9500b48 100644 --- a/pkg/api/v1/zz_generated.conversion.go +++ b/pkg/api/v1/zz_generated.conversion.go @@ -2299,6 +2299,7 @@ func autoConvert_v1_NodeSpec_To_api_NodeSpec(in *NodeSpec, out *api.NodeSpec, s out.ExternalID = in.ExternalID out.ProviderID = in.ProviderID out.Unschedulable = in.Unschedulable + out.Taints = *(*[]api.Taint)(unsafe.Pointer(&in.Taints)) return nil } @@ -2311,6 +2312,7 @@ func autoConvert_api_NodeSpec_To_v1_NodeSpec(in *api.NodeSpec, out *NodeSpec, s out.ExternalID = in.ExternalID out.ProviderID = in.ProviderID out.Unschedulable = in.Unschedulable + out.Taints = *(*[]Taint)(unsafe.Pointer(&in.Taints)) return nil } @@ -3159,6 +3161,7 @@ func autoConvert_v1_PodSpec_To_api_PodSpec(in *PodSpec, out *api.PodSpec, s conv out.Subdomain = in.Subdomain out.Affinity = (*api.Affinity)(unsafe.Pointer(in.Affinity)) out.SchedulerName = in.SchedulerName + out.Tolerations = *(*[]api.Toleration)(unsafe.Pointer(&in.Tolerations)) return nil } @@ -3198,6 +3201,7 @@ func autoConvert_api_PodSpec_To_v1_PodSpec(in *api.PodSpec, out *PodSpec, s conv out.Subdomain = in.Subdomain out.Affinity = (*Affinity)(unsafe.Pointer(in.Affinity)) out.SchedulerName = in.SchedulerName + out.Tolerations = *(*[]Toleration)(unsafe.Pointer(&in.Tolerations)) return nil } diff --git a/pkg/api/v1/zz_generated.deepcopy.go b/pkg/api/v1/zz_generated.deepcopy.go index 4d0a1996cf6..558c315a309 100644 --- a/pkg/api/v1/zz_generated.deepcopy.go +++ b/pkg/api/v1/zz_generated.deepcopy.go @@ -1472,6 +1472,9 @@ func DeepCopy_v1_Node(in interface{}, out interface{}, c *conversion.Cloner) err } else { out.ObjectMeta = *newVal.(*meta_v1.ObjectMeta) } + if err := DeepCopy_v1_NodeSpec(&in.Spec, &out.Spec, c); err != nil { + return err + } if err := DeepCopy_v1_NodeStatus(&in.Status, &out.Status, c); err != nil { return err } @@ -1631,6 +1634,15 @@ func DeepCopy_v1_NodeSpec(in interface{}, out interface{}, c *conversion.Cloner) in := in.(*NodeSpec) out := out.(*NodeSpec) *out = *in + if in.Taints != nil { + in, out := &in.Taints, &out.Taints + *out = make([]Taint, len(*in)) + for i := range *in { + if err := DeepCopy_v1_Taint(&(*in)[i], &(*out)[i], c); err != nil { + return err + } + } + } return nil } } @@ -2373,6 +2385,15 @@ func DeepCopy_v1_PodSpec(in interface{}, out interface{}, c *conversion.Cloner) return err } } + if in.Tolerations != nil { + in, out := &in.Tolerations, &out.Tolerations + *out = make([]Toleration, len(*in)) + for i := range *in { + if err := DeepCopy_v1_Toleration(&(*in)[i], &(*out)[i], c); err != nil { + return err + } + } + } return nil } } diff --git a/pkg/api/zz_generated.deepcopy.go b/pkg/api/zz_generated.deepcopy.go index f677111be51..39faf13d072 100644 --- a/pkg/api/zz_generated.deepcopy.go +++ b/pkg/api/zz_generated.deepcopy.go @@ -1516,6 +1516,9 @@ func DeepCopy_api_Node(in interface{}, out interface{}, c *conversion.Cloner) er } else { out.ObjectMeta = *newVal.(*v1.ObjectMeta) } + if err := DeepCopy_api_NodeSpec(&in.Spec, &out.Spec, c); err != nil { + return err + } if err := DeepCopy_api_NodeStatus(&in.Status, &out.Status, c); err != nil { return err } @@ -1675,6 +1678,15 @@ func DeepCopy_api_NodeSpec(in interface{}, out interface{}, c *conversion.Cloner in := in.(*NodeSpec) out := out.(*NodeSpec) *out = *in + if in.Taints != nil { + in, out := &in.Taints, &out.Taints + *out = make([]Taint, len(*in)) + for i := range *in { + if err := DeepCopy_api_Taint(&(*in)[i], &(*out)[i], c); err != nil { + return err + } + } + } return nil } } @@ -2417,6 +2429,15 @@ func DeepCopy_api_PodSpec(in interface{}, out interface{}, c *conversion.Cloner) return err } } + if in.Tolerations != nil { + in, out := &in.Tolerations, &out.Tolerations + *out = make([]Toleration, len(*in)) + for i := range *in { + if err := DeepCopy_api_Toleration(&(*in)[i], &(*out)[i], c); err != nil { + return err + } + } + } return nil } } diff --git a/pkg/apis/apps/v1beta1/types.generated.go b/pkg/apis/apps/v1beta1/types.generated.go index 5e30ebb38ca..894580cb57a 100644 --- a/pkg/apis/apps/v1beta1/types.generated.go +++ b/pkg/apis/apps/v1beta1/types.generated.go @@ -1679,7 +1679,7 @@ func (x codecSelfer1234) decSliceStatefulSet(v *[]StatefulSet, d *codec1978.Deco yyrg1 := len(yyv1) > 0 yyv21 := yyv1 - yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 832) + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 856) if yyrt1 { if yyrl1 <= cap(yyv1) { yyv1 = yyv1[:yyrl1] diff --git a/pkg/apis/batch/v1/types.generated.go b/pkg/apis/batch/v1/types.generated.go index d8a0868b2cb..1c1bb67171d 100644 --- a/pkg/apis/batch/v1/types.generated.go +++ b/pkg/apis/batch/v1/types.generated.go @@ -2481,7 +2481,7 @@ func (x codecSelfer1234) decSliceJob(v *[]Job, d *codec1978.Decoder) { yyrg1 := len(yyv1) > 0 yyv21 := yyv1 - yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 856) + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 880) if yyrt1 { if yyrl1 <= cap(yyv1) { yyv1 = yyv1[:yyrl1] diff --git a/pkg/apis/batch/v2alpha1/types.generated.go b/pkg/apis/batch/v2alpha1/types.generated.go index f1139834d13..8efab7a6762 100644 --- a/pkg/apis/batch/v2alpha1/types.generated.go +++ b/pkg/apis/batch/v2alpha1/types.generated.go @@ -4534,7 +4534,7 @@ func (x codecSelfer1234) decSliceJob(v *[]Job, d *codec1978.Decoder) { yyrg1 := len(yyv1) > 0 yyv21 := yyv1 - yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 856) + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 880) if yyrt1 { if yyrl1 <= cap(yyv1) { yyv1 = yyv1[:yyrl1] @@ -4772,7 +4772,7 @@ func (x codecSelfer1234) decSliceCronJob(v *[]CronJob, d *codec1978.Decoder) { yyrg1 := len(yyv1) > 0 yyv21 := yyv1 - yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 1104) + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 1128) if yyrt1 { if yyrl1 <= cap(yyv1) { yyv1 = yyv1[:yyrl1] diff --git a/pkg/apis/extensions/v1beta1/types.generated.go b/pkg/apis/extensions/v1beta1/types.generated.go index b14417a330d..698ea412510 100644 --- a/pkg/apis/extensions/v1beta1/types.generated.go +++ b/pkg/apis/extensions/v1beta1/types.generated.go @@ -18858,7 +18858,7 @@ func (x codecSelfer1234) decSliceDeployment(v *[]Deployment, d *codec1978.Decode yyrg1 := len(yyv1) > 0 yyv21 := yyv1 - yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 896) + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 920) if yyrt1 { if yyrl1 <= cap(yyv1) { yyv1 = yyv1[:yyrl1] @@ -18977,7 +18977,7 @@ func (x codecSelfer1234) decSliceDaemonSet(v *[]DaemonSet, d *codec1978.Decoder) yyrg1 := len(yyv1) > 0 yyv21 := yyv1 - yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 792) + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 816) if yyrt1 { if yyrl1 <= cap(yyv1) { yyv1 = yyv1[:yyrl1] @@ -19691,7 +19691,7 @@ func (x codecSelfer1234) decSliceReplicaSet(v *[]ReplicaSet, d *codec1978.Decode yyrg1 := len(yyv1) > 0 yyv21 := yyv1 - yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 832) + yyrl1, yyrt1 = z.DecInferLen(yyl1, z.DecBasicHandle().MaxInitLen, 856) if yyrt1 { if yyrl1 <= cap(yyv1) { yyv1 = yyv1[:yyrl1] diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index bab308674cb..9419fb040f9 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -4555,10 +4555,24 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope Format: "", }, }, + "taints": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, the node's taints.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/kubernetes/pkg/api/v1.Taint"), + }, + }, + }, + }, + }, }, }, }, - Dependencies: []string{}, + Dependencies: []string{ + "k8s.io/kubernetes/pkg/api/v1.Taint"}, }, "k8s.io/kubernetes/pkg/api/v1.NodeStatus": { Schema: spec.Schema{ @@ -6526,12 +6540,25 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope Format: "", }, }, + "tolerations": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, the pod's tolerations.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/kubernetes/pkg/api/v1.Toleration"), + }, + }, + }, + }, + }, }, Required: []string{"containers"}, }, }, Dependencies: []string{ - "k8s.io/kubernetes/pkg/api/v1.Affinity", "k8s.io/kubernetes/pkg/api/v1.Container", "k8s.io/kubernetes/pkg/api/v1.LocalObjectReference", "k8s.io/kubernetes/pkg/api/v1.PodSecurityContext", "k8s.io/kubernetes/pkg/api/v1.Volume"}, + "k8s.io/kubernetes/pkg/api/v1.Affinity", "k8s.io/kubernetes/pkg/api/v1.Container", "k8s.io/kubernetes/pkg/api/v1.LocalObjectReference", "k8s.io/kubernetes/pkg/api/v1.PodSecurityContext", "k8s.io/kubernetes/pkg/api/v1.Toleration", "k8s.io/kubernetes/pkg/api/v1.Volume"}, }, "k8s.io/kubernetes/pkg/api/v1.PodStatus": { Schema: spec.Schema{