From 7886bf8166c3eb667c51f9c8e83292b757e2cd08 Mon Sep 17 00:00:00 2001 From: Klaus Ma Date: Wed, 22 Feb 2017 07:58:50 +0800 Subject: [PATCH 1/3] Updated spec.schedulername to spec.schedulerName. --- pkg/api/v1/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index 64842ed6cd5..306c222c4dc 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -2319,7 +2319,7 @@ type PodSpec struct { // If specified, the pod will be dispatched by specified scheduler. // If not specified, the pod will be dispatched by default scheduler. // +optional - SchedulerName string `json:"schedulername,omitempty" protobuf:"bytes,19,opt,name=schedulername"` + SchedulerName string `json:"schedulerName,omitempty" protobuf:"bytes,19,opt,name=schedulerName"` // If specified, the pod's tolerations. // +optional Tolerations []Toleration `json:"tolerations,omitempty" protobuf:"bytes,22,opt,name=tolerations"` From 8caf006d1682bab19b761260839604882fb694f5 Mon Sep 17 00:00:00 2001 From: Klaus Ma Date: Thu, 2 Mar 2017 11:15:17 +0800 Subject: [PATCH 2/3] generated codes. --- api/openapi-spec/swagger.json | 2 +- api/swagger-spec/apps_v1beta1.json | 2 +- api/swagger-spec/batch_v1.json | 2 +- api/swagger-spec/extensions_v1beta1.json | 2 +- api/swagger-spec/v1.json | 2 +- .../apps/v1beta1/definitions.html | 4 +- docs/api-reference/batch/v1/definitions.html | 4 +- .../extensions/v1beta1/definitions.html | 4 +- docs/api-reference/v1/definitions.html | 4 +- federation/apis/openapi-spec/swagger.json | 2 +- .../apis/swagger-spec/extensions_v1beta1.json | 170 +++- .../apis/swagger-spec/federation_v1beta1.json | 24 +- federation/apis/swagger-spec/v1.json | 64 +- .../extensions/v1beta1/definitions.html | 781 ++++++++++++++---- .../extensions/v1beta1/operations.html | 42 +- .../federation/v1beta1/definitions.html | 22 +- .../federation/v1beta1/operations.html | 12 +- .../docs/api-reference/v1/definitions.html | 98 ++- .../docs/api-reference/v1/operations.html | 52 +- pkg/api/v1/generated.pb.go | 371 +++++---- pkg/api/v1/generated.proto | 2 +- pkg/api/v1/types.generated.go | 4 +- pkg/api/v1/types_swagger_doc_generated.go | 2 +- pkg/generated/openapi/zz_generated.openapi.go | 2 +- 24 files changed, 1255 insertions(+), 419 deletions(-) diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index a1d851e20cc..ba2bf97aac9 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -39514,7 +39514,7 @@ "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://kubernetes.io/docs/user-guide/pod-states#restartpolicy", "type": "string" }, - "schedulername": { + "schedulerName": { "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": "string" }, diff --git a/api/swagger-spec/apps_v1beta1.json b/api/swagger-spec/apps_v1beta1.json index c874686761b..92043cafe95 100644 --- a/api/swagger-spec/apps_v1beta1.json +++ b/api/swagger-spec/apps_v1beta1.json @@ -2599,7 +2599,7 @@ "$ref": "v1.Affinity", "description": "If specified, the pod's scheduling constraints" }, - "schedulername": { + "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." }, diff --git a/api/swagger-spec/batch_v1.json b/api/swagger-spec/batch_v1.json index e7f431b83c0..32434755d40 100644 --- a/api/swagger-spec/batch_v1.json +++ b/api/swagger-spec/batch_v1.json @@ -1382,7 +1382,7 @@ "$ref": "v1.Affinity", "description": "If specified, the pod's scheduling constraints" }, - "schedulername": { + "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." }, diff --git a/api/swagger-spec/extensions_v1beta1.json b/api/swagger-spec/extensions_v1beta1.json index 35602f4132b..129c718f6d2 100644 --- a/api/swagger-spec/extensions_v1beta1.json +++ b/api/swagger-spec/extensions_v1beta1.json @@ -6846,7 +6846,7 @@ "$ref": "v1.Affinity", "description": "If specified, the pod's scheduling constraints" }, - "schedulername": { + "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." }, diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 028ac8d5c98..596a25328ca 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -18685,7 +18685,7 @@ "$ref": "v1.Affinity", "description": "If specified, the pod's scheduling constraints" }, - "schedulername": { + "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." }, diff --git a/docs/api-reference/apps/v1beta1/definitions.html b/docs/api-reference/apps/v1beta1/definitions.html index 2c44ff43c73..3430f7e8cf3 100755 --- a/docs/api-reference/apps/v1beta1/definitions.html +++ b/docs/api-reference/apps/v1beta1/definitions.html @@ -3665,7 +3665,7 @@ The StatefulSet guarantees that a given network identity will always map to the -

schedulername

+

schedulerName

If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.

false

string

@@ -6152,7 +6152,7 @@ Examples:
diff --git a/docs/api-reference/batch/v1/definitions.html b/docs/api-reference/batch/v1/definitions.html index de91476fbe9..fe6f075ce46 100755 --- a/docs/api-reference/batch/v1/definitions.html +++ b/docs/api-reference/batch/v1/definitions.html @@ -4918,7 +4918,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -

schedulername

+

schedulerName

If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.

false

string

@@ -5394,7 +5394,7 @@ Examples:
diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index 0e5aaa2ec91..928a9ffd248 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -4456,7 +4456,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -

schedulername

+

schedulerName

If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.

false

string

@@ -7799,7 +7799,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 a214c578817..e70a1498078 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -5183,7 +5183,7 @@ The resulting set of endpoints can be viewed as:
-

schedulername

+

schedulerName

If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.

false

string

@@ -9732,7 +9732,7 @@ Examples:
diff --git a/federation/apis/openapi-spec/swagger.json b/federation/apis/openapi-spec/swagger.json index c6ec1c6d550..49d56657d91 100644 --- a/federation/apis/openapi-spec/swagger.json +++ b/federation/apis/openapi-spec/swagger.json @@ -12674,7 +12674,7 @@ "description": "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: http://kubernetes.io/docs/user-guide/pod-states#restartpolicy", "type": "string" }, - "schedulername": { + "schedulerName": { "description": "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", "type": "string" }, diff --git a/federation/apis/swagger-spec/extensions_v1beta1.json b/federation/apis/swagger-spec/extensions_v1beta1.json index 9bcc6b7d581..72c2b9479b6 100644 --- a/federation/apis/swagger-spec/extensions_v1beta1.json +++ b/federation/apis/swagger-spec/extensions_v1beta1.json @@ -521,7 +521,15 @@ "type": "boolean", "paramType": "query", "name": "orphanDependents", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "required": false, + "allowMultiple": false + }, + { + "type": "string", + "paramType": "query", + "name": "propagationPolicy", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.", "required": false, "allowMultiple": false }, @@ -1491,7 +1499,15 @@ "type": "boolean", "paramType": "query", "name": "orphanDependents", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "required": false, + "allowMultiple": false + }, + { + "type": "string", + "paramType": "query", + "name": "propagationPolicy", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.", "required": false, "allowMultiple": false }, @@ -2687,7 +2703,15 @@ "type": "boolean", "paramType": "query", "name": "orphanDependents", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "required": false, + "allowMultiple": false + }, + { + "type": "string", + "paramType": "query", + "name": "propagationPolicy", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.", "required": false, "allowMultiple": false }, @@ -3657,7 +3681,15 @@ "type": "boolean", "paramType": "query", "name": "orphanDependents", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "required": false, + "allowMultiple": false + }, + { + "type": "string", + "paramType": "query", + "name": "propagationPolicy", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.", "required": false, "allowMultiple": false }, @@ -4475,6 +4507,10 @@ "controller": { "type": "boolean", "description": "If true, this reference points to the managing controller." + }, + "blockOwnerDeletion": { + "type": "boolean", + "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned." } } }, @@ -4492,6 +4528,20 @@ "template": { "$ref": "v1.PodTemplateSpec", "description": "Template is the object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: http://kubernetes.io/docs/user-guide/replication-controller#pod-template" + }, + "updateStrategy": { + "$ref": "v1beta1.DaemonSetUpdateStrategy", + "description": "UpdateStrategy to replace existing DaemonSet pods with new pods." + }, + "minReadySeconds": { + "type": "integer", + "format": "int32", + "description": "MinReadySeconds minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)." + }, + "templateGeneration": { + "type": "integer", + "format": "int64", + "description": "A sequence number representing a specific generation of the template. Populated by the system. It can be set only during the creation." } } }, @@ -4652,9 +4702,16 @@ "$ref": "v1.Affinity", "description": "If specified, the pod's scheduling constraints" }, - "schedulername": { + "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." } } }, @@ -4764,6 +4821,10 @@ "projected": { "$ref": "v1.ProjectedVolumeSource", "description": "Items for all in one resources secrets, configmaps, and downward API" + }, + "portworxVolume": { + "$ref": "v1.PortworxVolumeSource", + "description": "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine" } } }, @@ -4940,8 +5001,7 @@ "required": [ "targetPortal", "iqn", - "lun", - "portals" + "lun" ], "properties": { "targetPortal": { @@ -5524,6 +5584,27 @@ } } }, + "v1.PortworxVolumeSource": { + "id": "v1.PortworxVolumeSource", + "description": "PortworxVolumeSource represents a Portworx volume resource.", + "required": [ + "volumeID" + ], + "properties": { + "volumeID": { + "type": "string", + "description": "VolumeID uniquely identifies a Portworx volume" + }, + "fsType": { + "type": "string", + "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified." + }, + "readOnly": { + "type": "boolean", + "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts." + } + } + }, "v1.Container": { "id": "v1.Container", "description": "A single application container that you want to run within a pod.", @@ -6286,6 +6367,56 @@ } } }, + "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.DaemonSetUpdateStrategy": { + "id": "v1beta1.DaemonSetUpdateStrategy", + "properties": { + "type": { + "type": "string", + "description": "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is OnDelete." + }, + "rollingUpdate": { + "$ref": "v1beta1.RollingUpdateDaemonSet", + "description": "Rolling update config params. Present only if DaemonSetUpdateStrategy = RollingUpdate." + } + } + }, + "v1beta1.RollingUpdateDaemonSet": { + "id": "v1beta1.RollingUpdateDaemonSet", + "description": "Spec to control the desired behavior of daemon set rolling update.", + "properties": { + "maxUnavailable": { + "type": "string", + "description": "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, 30% of the currently running DaemonSet pods can be stopped for an update at any given time. The update starts by stopping at most 30% of the currently running DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are ready, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update." + } + } + }, "v1beta1.DaemonSetStatus": { "id": "v1beta1.DaemonSetStatus", "description": "DaemonSetStatus represents the current status of a daemon set.", @@ -6320,6 +6451,21 @@ "type": "integer", "format": "int64", "description": "ObservedGeneration is the most recent generation observed by the daemon set controller." + }, + "updatedNumberScheduled": { + "type": "integer", + "format": "int32", + "description": "UpdatedNumberScheduled is the total number of nodes that are running updated daemon pod" + }, + "numberAvailable": { + "type": "integer", + "format": "int32", + "description": "NumberAvailable is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least minReadySeconds)" + }, + "numberUnavailable": { + "type": "integer", + "format": "int32", + "description": "NumberUnavailable is the number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least minReadySeconds)" } } }, @@ -6453,7 +6599,11 @@ }, "orphanDependents": { "type": "boolean", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list." + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." + }, + "propagationPolicy": { + "$ref": "v1.DeletionPropagation", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both." } } }, @@ -6471,6 +6621,10 @@ "id": "types.UID", "properties": {} }, + "v1.DeletionPropagation": { + "id": "v1.DeletionPropagation", + "properties": {} + }, "v1beta1.DeploymentList": { "id": "v1beta1.DeploymentList", "description": "DeploymentList is a list of Deployments.", diff --git a/federation/apis/swagger-spec/federation_v1beta1.json b/federation/apis/swagger-spec/federation_v1beta1.json index 6e62ebde3eb..c966419be30 100644 --- a/federation/apis/swagger-spec/federation_v1beta1.json +++ b/federation/apis/swagger-spec/federation_v1beta1.json @@ -465,7 +465,15 @@ "type": "boolean", "paramType": "query", "name": "orphanDependents", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "required": false, + "allowMultiple": false + }, + { + "type": "string", + "paramType": "query", + "name": "propagationPolicy", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.", "required": false, "allowMultiple": false }, @@ -832,6 +840,10 @@ "controller": { "type": "boolean", "description": "If true, this reference points to the managing controller." + }, + "blockOwnerDeletion": { + "type": "boolean", + "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned." } } }, @@ -1071,7 +1083,11 @@ }, "orphanDependents": { "type": "boolean", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list." + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." + }, + "propagationPolicy": { + "$ref": "v1.DeletionPropagation", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both." } } }, @@ -1089,6 +1105,10 @@ "id": "types.UID", "properties": {} }, + "v1.DeletionPropagation": { + "id": "v1.DeletionPropagation", + "properties": {} + }, "v1.APIResourceList": { "id": "v1.APIResourceList", "description": "APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.", diff --git a/federation/apis/swagger-spec/v1.json b/federation/apis/swagger-spec/v1.json index 205c51b1074..b21f6c27239 100644 --- a/federation/apis/swagger-spec/v1.json +++ b/federation/apis/swagger-spec/v1.json @@ -521,7 +521,15 @@ "type": "boolean", "paramType": "query", "name": "orphanDependents", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "required": false, + "allowMultiple": false + }, + { + "type": "string", + "paramType": "query", + "name": "propagationPolicy", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.", "required": false, "allowMultiple": false }, @@ -1326,7 +1334,15 @@ "type": "boolean", "paramType": "query", "name": "orphanDependents", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "required": false, + "allowMultiple": false + }, + { + "type": "string", + "paramType": "query", + "name": "propagationPolicy", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.", "required": false, "allowMultiple": false }, @@ -2075,7 +2091,15 @@ "type": "boolean", "paramType": "query", "name": "orphanDependents", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "required": false, + "allowMultiple": false + }, + { + "type": "string", + "paramType": "query", + "name": "propagationPolicy", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.", "required": false, "allowMultiple": false }, @@ -2900,7 +2924,15 @@ "type": "boolean", "paramType": "query", "name": "orphanDependents", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "required": false, + "allowMultiple": false + }, + { + "type": "string", + "paramType": "query", + "name": "propagationPolicy", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.", "required": false, "allowMultiple": false }, @@ -3705,7 +3737,15 @@ "type": "boolean", "paramType": "query", "name": "orphanDependents", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list.", + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + "required": false, + "allowMultiple": false + }, + { + "type": "string", + "paramType": "query", + "name": "propagationPolicy", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.", "required": false, "allowMultiple": false }, @@ -4354,6 +4394,10 @@ "controller": { "type": "boolean", "description": "If true, this reference points to the managing controller." + }, + "blockOwnerDeletion": { + "type": "boolean", + "description": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned." } } }, @@ -4487,7 +4531,11 @@ }, "orphanDependents": { "type": "boolean", - "description": "Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list." + "description": "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both." + }, + "propagationPolicy": { + "$ref": "v1.DeletionPropagation", + "description": "Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both." } } }, @@ -4505,6 +4553,10 @@ "id": "types.UID", "properties": {} }, + "v1.DeletionPropagation": { + "id": "v1.DeletionPropagation", + "properties": {} + }, "v1.EventList": { "id": "v1.EventList", "description": "EventList is a list of events.", diff --git a/federation/docs/api-reference/extensions/v1beta1/definitions.html b/federation/docs/api-reference/extensions/v1beta1/definitions.html index ca0973598d2..a1ddfacef87 100755 --- a/federation/docs/api-reference/extensions/v1beta1/definitions.html +++ b/federation/docs/api-reference/extensions/v1beta1/definitions.html @@ -643,6 +643,27 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

integer (int64)

+ +

updatedNumberScheduled

+

UpdatedNumberScheduled is the total number of nodes that are running updated daemon pod

+

false

+

integer (int32)

+ + + +

numberAvailable

+

NumberAvailable is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least minReadySeconds)

+

false

+

integer (int32)

+ + + +

numberUnavailable

+

NumberUnavailable is the number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least minReadySeconds)

+

false

+

integer (int32)

+ + @@ -913,6 +934,40 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } + +
+

v1.DownwardAPIProjection

+
+

Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.

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

items

Items is a list of DownwardAPIVolume file

false

v1.DownwardAPIVolumeFile array

+

v1.LabelSelector

@@ -1539,6 +1594,54 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +
+
+

v1.PortworxVolumeSource

+
+

PortworxVolumeSource represents a Portworx volume resource.

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

volumeID

VolumeID uniquely identifies a Portworx volume

true

string

fsType

FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified.

false

string

readOnly

Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

false

boolean

false

+

v1.Capabilities

@@ -1614,6 +1717,47 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +
+
+

v1.ProjectedVolumeSource

+
+

Represents a projected volume source

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

sources

list of volume projections

true

v1.VolumeProjection array

defaultMode

Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

false

integer (int32)

+

v1.ExecAction

@@ -1648,6 +1792,40 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +
+
+

v1beta1.RollingUpdateDaemonSet

+
+

Spec to control the desired behavior of daemon set rolling update.

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

maxUnavailable

The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, 30% of the currently running DaemonSet pods can be stopped for an update at any given time. The update starts by stopping at most 30% of the currently running DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are ready, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.

false

string

+

v1.ObjectMeta

@@ -1887,6 +2065,27 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

v1.PodTemplateSpec

+ +

updateStrategy

+

UpdateStrategy to replace existing DaemonSet pods with new pods.

+

false

+

v1beta1.DaemonSetUpdateStrategy

+ + + +

minReadySeconds

+

MinReadySeconds minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).

+

false

+

integer (int32)

+ + + +

templateGeneration

+

A sequence number representing a specific generation of the template. Populated by the system. It can be set only during the creation.

+

false

+

integer (int64)

+ + @@ -2072,43 +2271,9 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

portals

- -

true

-

string array

- - - - - -
-
-

v1.EmptyDirVolumeSource

-
-

Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

-
- ------- - - - - - - - - - - - - - + - + @@ -2169,6 +2334,40 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
NameDescriptionRequiredSchemaDefault

medium

What type of storage medium should back this directory. The default is "" which means to use the node’s default medium. Must be an empty string (default) or Memory. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

iSCSI target portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).

false

string

string array

+
+
+

v1.EmptyDirVolumeSource

+
+

Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.

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

medium

What type of storage medium should back this directory. The default is "" which means to use the node’s default medium. Must be an empty string (default) or Memory. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir

false

string

+

v1beta1.ScaleSpec

@@ -2552,61 +2751,6 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -
-
-

v1.EnvVarSource

-
-

EnvVarSource represents a source for the value of an EnvVar.

-
- ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

fieldRef

Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

false

v1.ObjectFieldSelector

resourceFieldRef

Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

false

v1.ResourceFieldSelector

configMapKeyRef

Selects a key of a ConfigMap.

false

v1.ConfigMapKeySelector

secretKeyRef

Selects a key of a secret in the pod’s namespace

false

v1.SecretKeySelector

-

v1.FlexVolumeSource

@@ -2669,6 +2813,61 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.EnvVarSource

+
+

EnvVarSource represents a source for the value of an EnvVar.

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

fieldRef

Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.podIP.

false

v1.ObjectFieldSelector

resourceFieldRef

Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.

false

v1.ResourceFieldSelector

configMapKeyRef

Selects a key of a ConfigMap.

false

v1.ConfigMapKeySelector

secretKeyRef

Selects a key of a secret in the pod’s namespace

false

v1.SecretKeySelector

+

v1.LoadBalancerIngress

@@ -2820,6 +3019,44 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1beta1.DaemonSetUpdateStrategy

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

type

Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is OnDelete.

false

string

rollingUpdate

Rolling update config params. Present only if DaemonSetUpdateStrategy = RollingUpdate.

false

v1beta1.RollingUpdateDaemonSet

+

v1.VsphereVirtualDiskVolumeSource

@@ -2915,11 +3152,18 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

false

+ +

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

v1.DeletionPropagation

+ + @@ -3115,6 +3359,20 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

v1.PhotonPersistentDiskVolumeSource

+ +

projected

+

Items for all in one resources secrets, configmaps, and downward API

+

false

+

v1.ProjectedVolumeSource

+ + + +

portworxVolume

+

PortworxVolume represents a portworx volume attached and mounted on kubelets host machine

+

false

+

v1.PortworxVolumeSource

+ + @@ -3221,6 +3479,54 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.VolumeProjection

+
+

Projection that may be projected along with other supported volume types

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

secret

information about the secret data to project

false

v1.SecretProjection

downwardAPI

information about the downwardAPI data to project

false

v1.DownwardAPIProjection

configMap

information about the configMap data to project

false

v1.ConfigMapProjection

+

v1.Probe

@@ -3672,7 +3978,7 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

dnsPolicy

-

Set DNS policy for containers within the pod. One of ClusterFirst or Default. Defaults to "ClusterFirst".

+

Set DNS policy for containers within the pod. One of ClusterFirstWithHostNet, ClusterFirst or Default. Defaults to "ClusterFirst". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to ClusterFirstWithHostNet.

false

string

@@ -3699,6 +4005,13 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +

automountServiceAccountToken

+

AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.

+

false

+

boolean

+

false

+ +

nodeName

NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

false

@@ -3762,12 +4075,19 @@ Populated by the system when a graceful deletion is requested. Read-only. More i -

schedulername

+

schedulerName

If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.

false

string

+ +

tolerations

+

If specified, the pod’s tolerations.

+

false

+

v1.Toleration array

+ + @@ -3908,6 +4228,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

@@ -4146,6 +4528,57 @@ Examples:
+
+
+

v1.ConfigMapProjection

+
+

Adapts a ConfigMap into a projected volume.

+
+
+

The contents of the target ConfigMap’s Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.

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

name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

false

string

items

If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the .. path or start with ...

false

v1.KeyToPath array

optional

Specify whether the ConfigMap or it’s keys must be defined

false

boolean

false

+

v1.PhotonPersistentDiskVolumeSource

@@ -4620,6 +5053,10 @@ Examples:
+
+
+

v1.DeletionPropagation

+

v1.TCPSocketAction

@@ -5189,6 +5626,13 @@ Both these may change in the future. Incoming requests are matched against the h

boolean

false

+ +

blockOwnerDeletion

+

If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.

+

false

+

boolean

+

false

+ @@ -5467,6 +5911,57 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.SecretProjection

+
+

Adapts a secret into a projected volume.

+
+
+

The contents of the target Secret’s Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.

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

name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

false

string

items

If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the .. path or start with ...

false

v1.KeyToPath array

optional

Specify whether the Secret or its key must be defined

false

boolean

false

+

v1beta1.DaemonSet

@@ -5804,54 +6299,6 @@ Both these may change in the future. Incoming requests are matched against the h -
-
-

v1.EnvVar

-
-

EnvVar represents an environment variable present in a Container.

-
- ------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

name

Name of the environment variable. Must be a C_IDENTIFIER.

true

string

value

Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".

false

string

valueFrom

Source for the environment variable’s value. Cannot be used if value is not empty.

false

v1.EnvVarSource

-

v1.LabelSelectorRequirement

@@ -5900,6 +6347,54 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.EnvVar

+
+

EnvVar represents an environment variable present in a Container.

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

name

Name of the environment variable. Must be a C_IDENTIFIER.

true

string

value

Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".

false

string

valueFrom

Source for the environment variable’s value. Cannot be used if value is not empty.

false

v1.EnvVarSource

+

v1.ResourceRequirements

@@ -6384,7 +6879,7 @@ Both these may change in the future. Incoming requests are matched against the h
diff --git a/federation/docs/api-reference/extensions/v1beta1/operations.html b/federation/docs/api-reference/extensions/v1beta1/operations.html index a74cab836e6..47819e86043 100755 --- a/federation/docs/api-reference/extensions/v1beta1/operations.html +++ b/federation/docs/api-reference/extensions/v1beta1/operations.html @@ -1634,12 +1634,20 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

+

QueryParameter

+

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

string

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -2978,12 +2986,20 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

+

QueryParameter

+

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

string

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -4828,12 +4844,20 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

+

QueryParameter

+

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

string

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -6172,12 +6196,20 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

+

QueryParameter

+

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

string

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -9188,7 +9220,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/federation/docs/api-reference/federation/v1beta1/definitions.html b/federation/docs/api-reference/federation/v1beta1/definitions.html index d60c31c5758..4ab54bd8d66 100755 --- a/federation/docs/api-reference/federation/v1beta1/definitions.html +++ b/federation/docs/api-reference/federation/v1beta1/definitions.html @@ -496,11 +496,18 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

false

+ +

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

v1.DeletionPropagation

+ + @@ -1186,6 +1193,13 @@ Populated by the system when a graceful deletion is requested. Read-only. More i

boolean

false

+ +

blockOwnerDeletion

+

If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.

+

false

+

boolean

+

false

+ @@ -1376,6 +1390,10 @@ Examples:
+ +
+

v1.DeletionPropagation

+

v1beta1.Cluster

@@ -1450,7 +1468,7 @@ Examples:
diff --git a/federation/docs/api-reference/federation/v1beta1/operations.html b/federation/docs/api-reference/federation/v1beta1/operations.html index dfad78a36cd..843c9f2ab95 100755 --- a/federation/docs/api-reference/federation/v1beta1/operations.html +++ b/federation/docs/api-reference/federation/v1beta1/operations.html @@ -1147,12 +1147,20 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

+

QueryParameter

+

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

string

+ + +

PathParameter

name

name of the Cluster

@@ -1781,7 +1789,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/federation/docs/api-reference/v1/definitions.html b/federation/docs/api-reference/v1/definitions.html index fe4907b95b1..317e1115628 100755 --- a/federation/docs/api-reference/v1/definitions.html +++ b/federation/docs/api-reference/v1/definitions.html @@ -769,44 +769,6 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } - -
-

v1.WatchEvent

- ------- - - - - - - - - - - - - - - - - - - - - - - - - - -
NameDescriptionRequiredSchemaDefault

type

true

string

object

true

string

-

v1.Secret

@@ -876,6 +838,44 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +
+
+

v1.WatchEvent

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

type

true

string

object

true

string

+

v1.Event

@@ -1021,6 +1021,10 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } +
+
+

v1.DeletionPropagation

+

v1.NamespaceStatus

@@ -1321,11 +1325,18 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

false

+ +

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

v1.DeletionPropagation

+ + @@ -1736,6 +1747,13 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

boolean

false

+ +

blockOwnerDeletion

+

If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.

+

false

+

boolean

+

false

+ @@ -2208,7 +2226,7 @@ Examples:
diff --git a/federation/docs/api-reference/v1/operations.html b/federation/docs/api-reference/v1/operations.html index 14c441e421b..3fa99f7ef84 100755 --- a/federation/docs/api-reference/v1/operations.html +++ b/federation/docs/api-reference/v1/operations.html @@ -1888,12 +1888,20 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

+

QueryParameter

+

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

string

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -2853,12 +2861,20 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

+

QueryParameter

+

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

string

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -3818,12 +3834,20 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

+

QueryParameter

+

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

string

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -4783,12 +4807,20 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

+

QueryParameter

+

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

string

+ + +

PathParameter

namespace

object name and auth scope, such as for teams and projects

@@ -5684,12 +5716,20 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }

QueryParameter

orphanDependents

-

Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list.

+

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object’s finalizers list. Either this field or PropagationPolicy may be set, but not both.

false

boolean

+

QueryParameter

+

propagationPolicy

+

Whether and how garbage collection will be performed. Defaults to Default. Either this field or OrphanDependents may be set, but not both.

+

false

+

string

+ + +

PathParameter

name

name of the Namespace

@@ -8855,7 +8895,7 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } diff --git a/pkg/api/v1/generated.pb.go b/pkg/api/v1/generated.pb.go index a593c72286d..68628ec026c 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -41997,7 +41997,7 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 10818 bytes of a gzipped FileDescriptorProto + // 10815 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x24, 0xc7, 0x75, 0x98, 0x66, 0x17, 0x5f, 0xfb, 0xf0, 0xdd, 0x87, 0x3b, 0x82, 0x10, 0x79, 0x38, 0x0e, 0x45, 0xea, 0x48, 0x1e, 0x01, 0xdd, 0x91, 0x14, 0x4f, 0xa2, 0x42, 0x09, 0xc0, 0x02, 0x77, 0xd0, 0x7d, @@ -42490,189 +42490,188 @@ var fileDescriptorGenerated = []byte{ 0x77, 0x2a, 0xbf, 0xde, 0x6a, 0x86, 0x27, 0x6e, 0xab, 0xc5, 0xc8, 0xf1, 0x30, 0x91, 0xfb, 0x8c, 0xc0, 0x3c, 0x54, 0xe2, 0xd6, 0x1d, 0x37, 0xdc, 0x72, 0xbc, 0x80, 0x39, 0xec, 0xf5, 0x47, 0xd9, 0x25, 0x02, 0xa7, 0x34, 0xa8, 0x06, 0x43, 0x8e, 0x30, 0xe1, 0x84, 0x63, 0x3d, 0xe7, 0x0e, 0xb8, - 0x34, 0xf8, 0xb8, 0x77, 0x55, 0xfe, 0xc3, 0x8a, 0x0b, 0x7a, 0x05, 0x46, 0xc5, 0x15, 0x26, 0x12, - 0xb1, 0x56, 0x9f, 0x30, 0xc3, 0xdd, 0xeb, 0x12, 0xc9, 0x26, 0x98, 0x49, 0x8b, 0x36, 0x60, 0x8c, - 0x72, 0x49, 0x05, 0xe0, 0xf4, 0x54, 0x6f, 0x32, 0x54, 0x4b, 0xd8, 0xac, 0xb3, 0xc1, 0x19, 0xb6, - 0xc8, 0x85, 0xc7, 0x9c, 0x56, 0x12, 0x6e, 0xd1, 0x95, 0x60, 0xae, 0x93, 0xb5, 0xf0, 0x2e, 0x09, - 0xa6, 0x4f, 0xb2, 0x19, 0x78, 0x66, 0x6f, 0x77, 0xf6, 0xb1, 0x85, 0x03, 0xe8, 0xf0, 0x81, 0x5c, - 0xd0, 0x5b, 0x30, 0x9c, 0x84, 0xbe, 0x88, 0x20, 0x8e, 0xa7, 0x4f, 0x15, 0xc9, 0x3c, 0xb3, 0xa6, - 0x0a, 0xe8, 0x6e, 0x0c, 0xc5, 0x04, 0xeb, 0x1c, 0x67, 0x3e, 0x0d, 0x93, 0x6d, 0x22, 0xa9, 0xa7, - 0x20, 0xcb, 0xff, 0xda, 0x0f, 0x15, 0xe5, 0xd1, 0x43, 0xf3, 0xa6, 0xf3, 0xf6, 0xd1, 0xac, 0xf3, - 0x76, 0x88, 0x2a, 0x50, 0xba, 0xbf, 0xf6, 0x0b, 0x1d, 0x1e, 0xd1, 0x7e, 0x36, 0x77, 0x0d, 0x16, - 0xbf, 0xf7, 0xd4, 0xc3, 0x53, 0xe3, 0xa9, 0x55, 0xd7, 0x77, 0xa0, 0x55, 0x57, 0xf0, 0x61, 0x38, - 0x6a, 0xbf, 0x35, 0x43, 0x77, 0xb5, 0x96, 0x7d, 0xf7, 0xa8, 0x46, 0x81, 0x98, 0xe3, 0x98, 0xde, - 0x4d, 0xf7, 0x54, 0xa6, 0x77, 0x0f, 0x1e, 0x52, 0xef, 0x96, 0x0c, 0x70, 0xca, 0x0b, 0x6d, 0xc3, - 0x64, 0xc3, 0x7c, 0xc6, 0x4a, 0xdd, 0x66, 0x7a, 0xbe, 0x87, 0x67, 0xa4, 0x5a, 0xda, 0x1b, 0x17, - 0x4b, 0x59, 0x7e, 0xb8, 0xbd, 0x0a, 0xf4, 0x0a, 0x0c, 0xbd, 0x1b, 0xc6, 0xec, 0x58, 0x41, 0x6c, - 0x2c, 0xf2, 0xd6, 0xc8, 0xd0, 0x6b, 0x37, 0xea, 0x0c, 0xbe, 0xbf, 0x3b, 0x3b, 0x5c, 0x0b, 0x5d, - 0xf9, 0x17, 0xab, 0x02, 0xe8, 0x2b, 0x16, 0x9c, 0x34, 0xd6, 0x99, 0x6a, 0x39, 0x1c, 0xa6, 0xe5, - 0x8f, 0x8b, 0x9a, 0x4f, 0xae, 0x76, 0xe2, 0x89, 0x3b, 0x57, 0x65, 0xff, 0x36, 0x77, 0x61, 0x0a, - 0xa7, 0x06, 0x89, 0x5b, 0xfe, 0x71, 0xe4, 0x9b, 0xbf, 0x61, 0xf8, 0x5b, 0x1e, 0x80, 0x13, 0xfd, - 0x3f, 0x5b, 0xcc, 0x89, 0xbe, 0x46, 0xb6, 0x9a, 0xbe, 0x93, 0x1c, 0x47, 0x0c, 0xee, 0xe7, 0x61, - 0x28, 0x11, 0xb5, 0x15, 0x4b, 0x96, 0xaf, 0x35, 0x8f, 0x1d, 0x2e, 0xa8, 0x8d, 0x49, 0x42, 0xb1, - 0x62, 0x68, 0xff, 0x7b, 0xfe, 0x55, 0x24, 0xe6, 0x18, 0x3c, 0x05, 0xd7, 0x4d, 0x4f, 0xc1, 0x33, - 0x85, 0xfb, 0xd2, 0xc5, 0x63, 0xf0, 0x03, 0xb3, 0x07, 0xcc, 0x7e, 0xf8, 0xe9, 0x39, 0xe5, 0xb1, - 0x7f, 0xc5, 0x82, 0xa9, 0x4e, 0x87, 0xe2, 0x54, 0xc1, 0xe0, 0xd6, 0x8b, 0x3a, 0xff, 0x52, 0xa3, - 0x7a, 0x4b, 0xc0, 0xb1, 0xa2, 0x28, 0x9c, 0xbd, 0xba, 0xb7, 0x04, 0x4b, 0x37, 0xc0, 0x7c, 0x10, - 0x0d, 0xbd, 0xca, 0x43, 0xee, 0x2d, 0xf5, 0x62, 0x59, 0x6f, 0xe1, 0xf6, 0xf6, 0xaf, 0x97, 0x60, - 0x8a, 0x3b, 0xa1, 0x17, 0xb6, 0x43, 0xcf, 0xad, 0x85, 0xae, 0xb8, 0x80, 0xe0, 0xc2, 0x48, 0x53, - 0x33, 0x3e, 0x8b, 0x25, 0x6c, 0xd1, 0xcd, 0xd5, 0x54, 0xe1, 0xd7, 0xa1, 0xd8, 0xe0, 0x4a, 0x6b, - 0x21, 0xdb, 0x5e, 0x43, 0xf9, 0x34, 0x4b, 0x3d, 0xef, 0x0c, 0xaa, 0x96, 0x65, 0x8d, 0x0f, 0x36, - 0xb8, 0x1e, 0xc1, 0xa3, 0x13, 0xf6, 0x3f, 0xb2, 0xe0, 0x91, 0x2e, 0x49, 0x5d, 0x68, 0x75, 0xf7, - 0x98, 0xe3, 0x5f, 0xbc, 0xb8, 0xa7, 0xaa, 0xe3, 0xc7, 0x01, 0x58, 0x60, 0xd1, 0x1d, 0x00, 0xee, - 0xce, 0x67, 0xef, 0xaf, 0x97, 0x8a, 0x44, 0x0d, 0xb5, 0xa5, 0x4e, 0xd0, 0x6e, 0xd5, 0xab, 0x17, - 0xd7, 0x35, 0xae, 0xf6, 0xb7, 0xcb, 0xd0, 0xcf, 0x1f, 0x76, 0xae, 0xc1, 0xe0, 0x26, 0x4f, 0x32, - 0xdb, 0x5b, 0x8e, 0xdb, 0xd4, 0xb8, 0xe0, 0x00, 0x2c, 0xd9, 0xa0, 0x6b, 0x70, 0x82, 0xee, 0x2c, - 0x9e, 0xe3, 0x57, 0x89, 0xef, 0xec, 0x48, 0x6b, 0x95, 0xbf, 0x44, 0x20, 0x53, 0x66, 0x9f, 0x58, - 0x6d, 0x27, 0xc1, 0x9d, 0xca, 0xa1, 0x57, 0xdb, 0x72, 0xc2, 0xf1, 0xe4, 0xbd, 0x4a, 0x53, 0x3d, - 0x38, 0x2f, 0x1c, 0xd5, 0xa7, 0x9b, 0x6d, 0x76, 0xb9, 0xf6, 0x7e, 0xae, 0x69, 0x8b, 0x9b, 0xb4, - 0x2c, 0xb6, 0xa0, 0xc5, 0x62, 0x2a, 0xd6, 0x36, 0x23, 0x12, 0x6f, 0x86, 0xbe, 0x2b, 0x9e, 0x7e, - 0x4c, 0x63, 0x0b, 0x32, 0x78, 0xdc, 0x56, 0x82, 0x72, 0x59, 0x77, 0x3c, 0xbf, 0x15, 0x91, 0x94, - 0xcb, 0x80, 0xc9, 0x65, 0x25, 0x83, 0xc7, 0x6d, 0x25, 0xe8, 0xdc, 0x3a, 0x29, 0x5e, 0x0b, 0x94, - 0x57, 0x98, 0x85, 0x08, 0xfa, 0x1c, 0x0c, 0xca, 0x40, 0xf6, 0x42, 0x99, 0x36, 0x44, 0xe0, 0x80, - 0x7a, 0x79, 0x50, 0x7b, 0x99, 0x4a, 0x84, 0xb0, 0x4b, 0x7e, 0x87, 0x79, 0x95, 0xee, 0x4f, 0x2d, - 0x38, 0xd1, 0x21, 0x20, 0x8b, 0x8b, 0xb4, 0x0d, 0x2f, 0x4e, 0x54, 0x5e, 0x7c, 0x4d, 0xa4, 0x71, - 0x38, 0x56, 0x14, 0x74, 0xb5, 0x70, 0xa1, 0x99, 0x15, 0x94, 0x22, 0x04, 0x44, 0x60, 0x7b, 0x13, - 0x94, 0xe8, 0x0c, 0xf4, 0xb5, 0x62, 0x12, 0xc9, 0x27, 0xe2, 0xa4, 0x9c, 0x67, 0x7e, 0x40, 0x86, - 0xa1, 0x6a, 0xeb, 0x86, 0x72, 0xc1, 0x69, 0x6a, 0x2b, 0x77, 0xc2, 0x71, 0x9c, 0xfd, 0x8d, 0x32, - 0x8c, 0x67, 0x02, 0x33, 0x69, 0x43, 0xb6, 0xc2, 0xc0, 0x4b, 0x42, 0x95, 0xfd, 0x8c, 0xbf, 0x4a, - 0x45, 0x9a, 0x9b, 0xd7, 0x04, 0x1c, 0x2b, 0x0a, 0xf4, 0xb4, 0x7c, 0x15, 0x34, 0x9b, 0xef, 0x7f, - 0xb1, 0x6a, 0x3c, 0x0c, 0x5a, 0xf4, 0xad, 0x8e, 0x27, 0xa1, 0xaf, 0x19, 0xaa, 0x47, 0x9e, 0xd5, - 0xf7, 0xc4, 0x8b, 0xd5, 0x5a, 0x18, 0xfa, 0x98, 0x21, 0xd1, 0x53, 0xa2, 0xf7, 0x99, 0x93, 0x0b, - 0xec, 0xb8, 0x61, 0xac, 0x0d, 0xc1, 0x33, 0x30, 0x78, 0x97, 0xec, 0x44, 0x5e, 0xb0, 0x91, 0x3d, - 0xb7, 0xb9, 0xc2, 0xc1, 0x58, 0xe2, 0xcd, 0xf7, 0x38, 0x06, 0x8f, 0xf8, 0x3d, 0x8e, 0xa1, 0xdc, - 0x7d, 0xf0, 0xbb, 0x16, 0x8c, 0xb3, 0x94, 0xa0, 0xe2, 0x02, 0xbd, 0x17, 0x06, 0xc7, 0xa0, 0x63, - 0x3c, 0x09, 0xfd, 0x11, 0xad, 0x34, 0x9b, 0x50, 0x9f, 0xb5, 0x04, 0x73, 0x1c, 0x7a, 0x0c, 0xfa, - 0x58, 0x13, 0xe8, 0x67, 0x1c, 0xe1, 0x99, 0xc7, 0xab, 0x4e, 0xe2, 0x60, 0x06, 0x65, 0x77, 0xa1, - 0x30, 0x69, 0xfa, 0x1e, 0x6f, 0x74, 0xea, 0x6e, 0x7d, 0xd8, 0xee, 0x42, 0x75, 0x6c, 0xe4, 0x83, - 0xba, 0x0b, 0xd5, 0x99, 0xf9, 0xc1, 0x7a, 0xfe, 0xff, 0x2a, 0xc1, 0xe9, 0x8e, 0xe5, 0xd2, 0x13, - 0xe0, 0x15, 0xe3, 0x04, 0xf8, 0x42, 0xe6, 0x04, 0xd8, 0x3e, 0xb8, 0xf4, 0x83, 0x39, 0x13, 0xee, - 0x7c, 0x54, 0x5b, 0x3e, 0xc6, 0xa3, 0xda, 0xbe, 0xa2, 0x2a, 0x4e, 0x7f, 0x8e, 0x8a, 0xf3, 0xfb, - 0x16, 0x3c, 0xda, 0x71, 0xc8, 0x1e, 0xba, 0xcb, 0x67, 0x1d, 0x5b, 0xd9, 0xc5, 0x3a, 0xf9, 0xe5, - 0x72, 0x97, 0x5e, 0x31, 0x3b, 0xe5, 0x2c, 0x95, 0x42, 0x0c, 0x19, 0x0b, 0xe5, 0x6d, 0x84, 0x4b, - 0x20, 0x0e, 0xc3, 0x0a, 0x8b, 0x62, 0xed, 0xf2, 0x16, 0x6f, 0xe4, 0xf2, 0x21, 0x17, 0xd4, 0x9c, - 0xe9, 0x27, 0xd7, 0xb3, 0x02, 0x64, 0xaf, 0x74, 0xdd, 0xd6, 0x2c, 0xcf, 0xf2, 0x61, 0x2c, 0xcf, - 0x91, 0xce, 0x56, 0x27, 0x5a, 0x80, 0xf1, 0x2d, 0x2f, 0x60, 0xcf, 0x78, 0x9a, 0xda, 0x93, 0xba, - 0x41, 0x7b, 0xcd, 0x44, 0xe3, 0x2c, 0xfd, 0xcc, 0x2b, 0x30, 0x7a, 0x78, 0xef, 0xda, 0xfb, 0x65, - 0xf8, 0xf0, 0x01, 0x42, 0x81, 0xef, 0x0e, 0xc6, 0x77, 0xd1, 0x76, 0x87, 0xb6, 0x6f, 0x53, 0x83, - 0xa9, 0xf5, 0x96, 0xef, 0xef, 0xb0, 0xf8, 0x29, 0xe2, 0x4a, 0x0a, 0xa1, 0xd4, 0xa8, 0xf7, 0xc2, - 0x57, 0x3a, 0xd0, 0xe0, 0x8e, 0x25, 0xd1, 0x67, 0x01, 0x85, 0x77, 0x58, 0xd2, 0x5c, 0x37, 0xcd, - 0x7a, 0xc0, 0x3e, 0x41, 0x39, 0x5d, 0xaa, 0x37, 0xda, 0x28, 0x70, 0x87, 0x52, 0x54, 0x4f, 0x65, - 0x4f, 0x8d, 0xab, 0x66, 0x65, 0xf4, 0x54, 0xac, 0x23, 0xb1, 0x49, 0x8b, 0x2e, 0xc1, 0xa4, 0xb3, - 0xed, 0x78, 0x3c, 0x09, 0x96, 0x64, 0xc0, 0x15, 0x55, 0xe5, 0xbf, 0x5a, 0xc8, 0x12, 0xe0, 0xf6, - 0x32, 0xa8, 0x69, 0x38, 0x24, 0x79, 0xba, 0xfc, 0x4f, 0x1d, 0x62, 0x06, 0x17, 0x76, 0x51, 0xda, - 0xff, 0xc3, 0xa2, 0x5b, 0x5f, 0x87, 0x17, 0x1f, 0xe9, 0x88, 0x28, 0x07, 0x9b, 0x76, 0x19, 0x4d, - 0x8d, 0xc8, 0x92, 0x8e, 0xc4, 0x26, 0x2d, 0x9f, 0x1a, 0x71, 0x1a, 0xce, 0x6d, 0x68, 0x9b, 0xe2, - 0x1e, 0xa7, 0xa2, 0xa0, 0x1a, 0xb4, 0xeb, 0x6d, 0x7b, 0x71, 0x18, 0x89, 0x05, 0xd4, 0x63, 0x70, - 0x6f, 0x2a, 0x2f, 0xab, 0x9c, 0x0d, 0x96, 0xfc, 0xec, 0x6f, 0x96, 0x60, 0x54, 0xd6, 0xf8, 0x5a, - 0x2b, 0x4c, 0x9c, 0x63, 0xd8, 0xd2, 0x5f, 0x33, 0xb6, 0xf4, 0xf9, 0x62, 0xd7, 0x5a, 0x59, 0xe3, - 0xba, 0x6e, 0xe5, 0x9f, 0xcb, 0x6c, 0xe5, 0xe7, 0x7b, 0x61, 0x7a, 0xf0, 0x16, 0xfe, 0x1f, 0x2d, - 0x98, 0x34, 0xe8, 0x8f, 0x61, 0x27, 0xa9, 0x99, 0x3b, 0xc9, 0x73, 0x3d, 0xf4, 0xa6, 0xcb, 0x0e, - 0xf2, 0x9d, 0x52, 0xa6, 0x17, 0x6c, 0xe7, 0xf8, 0x12, 0xf4, 0x6d, 0x3a, 0x91, 0x5b, 0x2c, 0x23, - 0x64, 0x5b, 0xf1, 0xb9, 0xcb, 0x4e, 0xe4, 0x72, 0xf9, 0x7f, 0x4e, 0xbd, 0x47, 0xe5, 0x44, 0x6e, - 0xee, 0x2d, 0x07, 0x56, 0x29, 0xba, 0x08, 0x03, 0x71, 0x23, 0x6c, 0xaa, 0x38, 0xd0, 0x33, 0xfc, - 0xad, 0x2a, 0x0a, 0xd9, 0xdf, 0x9d, 0x45, 0x66, 0x75, 0x14, 0x8c, 0x05, 0xfd, 0xcc, 0x06, 0x54, - 0x54, 0xd5, 0x47, 0x1a, 0x09, 0xff, 0x3f, 0xcb, 0x70, 0xa2, 0xc3, 0x5c, 0x41, 0x5f, 0x36, 0xc6, - 0xed, 0x95, 0x9e, 0x27, 0xdb, 0x07, 0x1c, 0xb9, 0x2f, 0x33, 0x4b, 0xc9, 0x15, 0xb3, 0xe3, 0x10, - 0xd5, 0xdf, 0x8c, 0x49, 0xb6, 0x7a, 0x0a, 0xca, 0xaf, 0x9e, 0x56, 0x7b, 0x6c, 0xc3, 0x4f, 0x2b, - 0x52, 0x2d, 0x3d, 0xd2, 0xef, 0xfc, 0x37, 0xfa, 0x60, 0xaa, 0xd3, 0xfd, 0x79, 0xf4, 0x35, 0x2b, - 0xf3, 0xec, 0xc3, 0xab, 0xbd, 0x5f, 0xc2, 0xe7, 0x6f, 0x41, 0x88, 0x9c, 0x33, 0x73, 0xe6, 0x43, - 0x10, 0xb9, 0x23, 0x2e, 0x6a, 0x67, 0xf7, 0x93, 0x22, 0xfe, 0x84, 0x87, 0x94, 0x0a, 0x9f, 0x39, - 0x44, 0x53, 0xc4, 0x2b, 0x20, 0x71, 0xe6, 0x7e, 0x92, 0x04, 0xe7, 0xdf, 0x4f, 0x92, 0x6d, 0x98, - 0xf1, 0x60, 0x58, 0xeb, 0xd7, 0x91, 0x4e, 0x83, 0xbb, 0x74, 0x8b, 0xd2, 0xda, 0x7d, 0xa4, 0x53, - 0xe1, 0xef, 0x5b, 0x90, 0x09, 0xda, 0x52, 0x6e, 0x19, 0xab, 0xab, 0x5b, 0xe6, 0x0c, 0xf4, 0x45, - 0xa1, 0x4f, 0xb2, 0x4f, 0x12, 0xe0, 0xd0, 0x27, 0x98, 0x61, 0xd4, 0x13, 0xb5, 0xe5, 0x6e, 0x4f, - 0xd4, 0x52, 0x3b, 0xdd, 0x27, 0xdb, 0x44, 0x3a, 0x49, 0x94, 0x18, 0xbf, 0x4a, 0x81, 0x98, 0xe3, - 0xec, 0xdf, 0x2b, 0xc3, 0x00, 0xf7, 0x44, 0x1c, 0xc3, 0x3e, 0x5d, 0x13, 0x4e, 0x81, 0x42, 0x77, - 0xd2, 0x79, 0xab, 0xe6, 0xaa, 0x4e, 0xe2, 0xf0, 0xc9, 0xa5, 0xfa, 0x98, 0x3a, 0x12, 0xd0, 0x9c, - 0x31, 0x0a, 0x33, 0x19, 0x5b, 0x17, 0x38, 0x0f, 0x6d, 0x4c, 0x36, 0x01, 0x62, 0xf6, 0x24, 0x22, - 0xe5, 0x21, 0x32, 0x6f, 0xbe, 0x58, 0xa8, 0x1d, 0x75, 0x55, 0x8c, 0xb7, 0x26, 0x4d, 0xf7, 0xa7, - 0x10, 0x58, 0xe3, 0x3d, 0xf3, 0x32, 0x54, 0x14, 0x71, 0x9e, 0x11, 0x30, 0xa2, 0x4f, 0xce, 0xbf, - 0x02, 0xe3, 0x99, 0xba, 0x7a, 0xb2, 0x21, 0x7e, 0xcb, 0x82, 0xf1, 0xcc, 0x6b, 0xee, 0xe8, 0xab, - 0x16, 0x4c, 0xf9, 0x1d, 0x1c, 0x51, 0xe2, 0x33, 0x1f, 0xc6, 0x85, 0xa5, 0xcc, 0x87, 0x4e, 0x58, - 0xdc, 0xb1, 0x36, 0x6a, 0x56, 0xf2, 0x17, 0x5e, 0x1d, 0x5f, 0xc4, 0xc0, 0x8e, 0xf0, 0x9c, 0xc3, - 0x1c, 0x86, 0x15, 0xd6, 0xfe, 0x89, 0x05, 0x93, 0x6d, 0x0f, 0x86, 0x3f, 0x2c, 0xdd, 0x10, 0xd9, - 0x95, 0x4b, 0x5d, 0xb2, 0x2b, 0xeb, 0xbd, 0x2c, 0x1f, 0xd8, 0xcb, 0x5f, 0xb7, 0x40, 0xcc, 0xd0, - 0x63, 0xd0, 0x00, 0x57, 0x4d, 0x0d, 0xf0, 0x23, 0x45, 0x26, 0x7d, 0x17, 0xd5, 0xef, 0x97, 0x4a, - 0x30, 0xc1, 0x09, 0x52, 0x9f, 0xfa, 0xc3, 0xf2, 0x71, 0x7a, 0x7b, 0xf5, 0x43, 0x3d, 0xb5, 0xd8, - 0xb9, 0xa7, 0xc6, 0xb7, 0xec, 0x3b, 0xf0, 0x5b, 0xfe, 0xb9, 0x05, 0x88, 0x8f, 0x49, 0xf6, 0x79, - 0x5c, 0xee, 0xdc, 0xd5, 0x0c, 0xba, 0x54, 0x72, 0x28, 0x0c, 0xd6, 0xa8, 0x1e, 0x70, 0x17, 0x32, - 0x27, 0x1a, 0xe5, 0xfc, 0x13, 0x8d, 0x1e, 0x7a, 0xfd, 0xdb, 0x65, 0xc8, 0x06, 0xc3, 0xa1, 0xb7, - 0x61, 0xa4, 0xe1, 0x34, 0x9d, 0x3b, 0x9e, 0xef, 0x25, 0x1e, 0x89, 0x8b, 0x1d, 0x99, 0x2e, 0x69, - 0x25, 0xc4, 0x41, 0x82, 0x06, 0xc1, 0x06, 0x47, 0x34, 0x07, 0xd0, 0x8c, 0xbc, 0x6d, 0xcf, 0x27, - 0x1b, 0x4c, 0x67, 0x65, 0xd1, 0xf4, 0xfc, 0xf4, 0x4f, 0x42, 0xb1, 0x46, 0xd1, 0x21, 0xfa, 0xba, - 0x7c, 0x1c, 0xd1, 0xd7, 0x7d, 0x3d, 0x46, 0x5f, 0xf7, 0x17, 0x8a, 0xbe, 0xc6, 0x70, 0x4a, 0xfa, - 0xff, 0xe9, 0xff, 0x15, 0xcf, 0x27, 0x3c, 0xc9, 0xac, 0x88, 0xb6, 0x9f, 0xd9, 0xdb, 0x9d, 0x3d, - 0x85, 0x3b, 0x52, 0xe0, 0x2e, 0x25, 0xed, 0x16, 0x9c, 0xa8, 0x93, 0xc8, 0x63, 0xb9, 0xff, 0xdc, - 0x74, 0x2d, 0x7d, 0x01, 0x2a, 0x51, 0x66, 0x19, 0xf7, 0x78, 0xa5, 0x5a, 0xcb, 0x16, 0x25, 0x97, - 0x6d, 0xca, 0xd2, 0xfe, 0x5b, 0x25, 0x18, 0x14, 0x61, 0x70, 0xc7, 0xa0, 0x7c, 0x5c, 0x31, 0x9c, - 0x04, 0xcf, 0xe4, 0xc9, 0x3f, 0xd6, 0xac, 0xae, 0xee, 0x81, 0x7a, 0xc6, 0x3d, 0xf0, 0x5c, 0x31, - 0x76, 0x07, 0x3b, 0x06, 0xfe, 0x79, 0x19, 0xc6, 0xcc, 0xb0, 0xc0, 0x63, 0x18, 0x96, 0xd7, 0x61, - 0x30, 0x16, 0x11, 0xaa, 0xa5, 0x22, 0x51, 0x57, 0xd9, 0x4f, 0x9c, 0x9e, 0xa5, 0x8a, 0x98, 0x54, - 0xc9, 0xae, 0x63, 0x10, 0x6c, 0xf9, 0x58, 0x82, 0x60, 0xf3, 0xa2, 0x35, 0xfb, 0x1e, 0x44, 0xb4, - 0xa6, 0xfd, 0x43, 0x26, 0xf2, 0x75, 0xf8, 0x31, 0x6c, 0xe3, 0xaf, 0x99, 0x9b, 0xc3, 0xb9, 0x42, - 0xf3, 0x4e, 0x34, 0xaf, 0xcb, 0x76, 0xfe, 0x3d, 0x0b, 0x86, 0x05, 0xe1, 0x31, 0x74, 0xe0, 0xb3, - 0x66, 0x07, 0x9e, 0x2a, 0xd4, 0x81, 0x2e, 0x2d, 0xff, 0x66, 0x49, 0xb5, 0xbc, 0x26, 0x9e, 0x34, - 0xcf, 0xcd, 0x74, 0x3c, 0xd4, 0x8c, 0xc2, 0x24, 0x6c, 0x84, 0xbe, 0x50, 0xe0, 0x1e, 0x4b, 0x2f, - 0x57, 0x71, 0xf8, 0xbe, 0xf6, 0x1b, 0x2b, 0x6a, 0x76, 0xf7, 0x27, 0x8c, 0x12, 0xb1, 0x81, 0x76, - 0x7a, 0x50, 0xdd, 0x05, 0x48, 0x5f, 0xb1, 0x16, 0xf7, 0x12, 0x7b, 0x7f, 0xaa, 0x3d, 0xbd, 0x2d, - 0xa5, 0x78, 0x61, 0x8d, 0xaf, 0x0c, 0xc3, 0x67, 0x75, 0xf4, 0x9b, 0x67, 0x00, 0xd7, 0x05, 0x1c, - 0x2b, 0x0a, 0xfb, 0x65, 0x26, 0xd9, 0xd9, 0x00, 0xf5, 0x76, 0x91, 0xe9, 0x17, 0x07, 0xd4, 0xd0, - 0x32, 0xc7, 0xde, 0x75, 0xfd, 0xba, 0x54, 0x51, 0xf1, 0x49, 0x9b, 0xa0, 0x47, 0xc2, 0xa6, 0xb7, - 0xab, 0x10, 0x69, 0x3b, 0x38, 0x7a, 0xb9, 0xb0, 0x44, 0xee, 0xe1, 0xa8, 0x88, 0x25, 0x77, 0x63, - 0x19, 0xad, 0x56, 0x6b, 0xd9, 0xfc, 0xd4, 0x4b, 0x12, 0x81, 0x53, 0x1a, 0x34, 0x2f, 0x0c, 0x4a, - 0xf3, 0xc5, 0x7b, 0x69, 0x50, 0xca, 0x21, 0xd1, 0x2c, 0xca, 0xf3, 0x30, 0xac, 0x9e, 0xfc, 0xa8, - 0xf1, 0xc7, 0x16, 0x2a, 0x5c, 0xbf, 0x5a, 0x4e, 0xc1, 0x58, 0xa7, 0x41, 0xab, 0x70, 0xc2, 0x55, - 0xb7, 0x2e, 0x6a, 0xad, 0x3b, 0xbe, 0xd7, 0xa0, 0x45, 0xf9, 0x8d, 0xc9, 0x47, 0xf6, 0x76, 0x67, - 0x4f, 0x54, 0xdb, 0xd1, 0xb8, 0x53, 0x19, 0xb4, 0x06, 0xe3, 0x31, 0x7f, 0xda, 0x44, 0x86, 0xd6, - 0x8b, 0xb4, 0xad, 0xcf, 0xca, 0x13, 0xab, 0xba, 0x89, 0xde, 0x67, 0x20, 0x2e, 0x15, 0x64, 0x30, - 0x7e, 0x96, 0x05, 0x7a, 0x15, 0xc6, 0x7c, 0xfd, 0xdd, 0xc6, 0x9a, 0xb8, 0x7c, 0xa2, 0x62, 0x90, - 0x8c, 0x57, 0x1d, 0x6b, 0x38, 0x43, 0x8d, 0x5e, 0x87, 0x69, 0x1d, 0x22, 0x32, 0xc1, 0x38, 0xc1, - 0x06, 0x89, 0xc5, 0x33, 0x08, 0x8f, 0xed, 0xed, 0xce, 0x4e, 0x5f, 0xed, 0x42, 0x83, 0xbb, 0x96, - 0x46, 0x17, 0x61, 0x44, 0x8e, 0xa4, 0x76, 0x11, 0x25, 0x8d, 0x7e, 0xd3, 0x70, 0xd8, 0xa0, 0xfc, - 0x60, 0x07, 0x73, 0x5f, 0xa2, 0x85, 0xb5, 0x2d, 0x1c, 0xbd, 0x03, 0x23, 0x7a, 0x1b, 0xb3, 0x7b, - 0x73, 0xfe, 0x5b, 0x98, 0x42, 0x15, 0x50, 0x2d, 0xd7, 0x71, 0xd8, 0xe0, 0x6d, 0xdf, 0x80, 0x81, - 0xfa, 0x4e, 0xdc, 0x48, 0xfc, 0x02, 0xf2, 0xed, 0x49, 0xa3, 0x0b, 0xe9, 0xda, 0x63, 0xef, 0xf2, - 0x88, 0x1e, 0xd9, 0x04, 0xc6, 0xd7, 0x96, 0x6a, 0xfc, 0xd5, 0xff, 0x05, 0x6e, 0xbd, 0x61, 0x21, - 0xdd, 0xac, 0x43, 0x4a, 0xad, 0x0e, 0xf2, 0xd0, 0xfe, 0x13, 0x0b, 0xfa, 0xd9, 0x9b, 0x32, 0x79, - 0xef, 0x11, 0x15, 0x69, 0x34, 0x7a, 0x09, 0x06, 0xc8, 0xfa, 0x3a, 0x69, 0x24, 0x62, 0x19, 0xcb, - 0x68, 0xef, 0x81, 0x65, 0x06, 0xa5, 0x8b, 0x93, 0x55, 0xc6, 0xff, 0x62, 0x41, 0x8c, 0x3e, 0x0f, - 0x95, 0xc4, 0xdb, 0x22, 0x0b, 0xae, 0x4b, 0xdc, 0x43, 0xdc, 0x15, 0x57, 0xc2, 0x62, 0x4d, 0x32, - 0xc1, 0x29, 0x3f, 0xfb, 0xbd, 0x12, 0x40, 0x7a, 0xd7, 0x22, 0xaf, 0x9b, 0x8b, 0x6d, 0xcf, 0x2e, - 0x3d, 0xdd, 0xe1, 0xd9, 0x25, 0x94, 0x32, 0xec, 0xf0, 0xe8, 0x92, 0x1a, 0xaa, 0x72, 0xa1, 0xa1, - 0xea, 0xeb, 0x65, 0xa8, 0x96, 0x60, 0x32, 0xbd, 0x2b, 0x62, 0x5e, 0xba, 0x63, 0x49, 0x18, 0xd7, - 0xb2, 0x48, 0xdc, 0x4e, 0x6f, 0xbf, 0x67, 0x81, 0x08, 0x59, 0x2b, 0x30, 0x5b, 0x5d, 0xf9, 0x44, - 0x8a, 0x91, 0x87, 0xea, 0xd9, 0x22, 0xd1, 0x7c, 0x22, 0xfb, 0x94, 0x5a, 0x3f, 0x46, 0xce, 0x29, - 0x83, 0xab, 0xfd, 0x1b, 0x16, 0x0c, 0x73, 0xf4, 0x35, 0xa6, 0x53, 0xe7, 0xb7, 0xab, 0xa7, 0x0c, - 0x9f, 0xec, 0xf5, 0x10, 0xca, 0x58, 0x65, 0x7a, 0xd4, 0x5f, 0x0f, 0x91, 0x08, 0x9c, 0xd2, 0xa0, - 0x67, 0x60, 0x30, 0x6e, 0xdd, 0x61, 0xe4, 0x99, 0xf8, 0xb5, 0x3a, 0x07, 0x63, 0x89, 0xb7, 0xff, - 0x65, 0x09, 0x26, 0xb2, 0xe1, 0x8b, 0x08, 0xc3, 0x00, 0xd7, 0xb1, 0xb3, 0xea, 0xd9, 0x41, 0xbe, - 0x1c, 0x2d, 0xfc, 0x11, 0xf8, 0x1b, 0xb8, 0x2c, 0xe6, 0x4c, 0x70, 0x42, 0xeb, 0x30, 0xec, 0x86, - 0xf7, 0x82, 0x7b, 0x4e, 0xe4, 0x2e, 0xd4, 0x56, 0xc5, 0x97, 0xc8, 0x09, 0x38, 0xa9, 0xa6, 0x05, - 0xf4, 0xe0, 0x4a, 0xe6, 0x5b, 0x48, 0x51, 0x58, 0x67, 0x4c, 0x6d, 0xca, 0x46, 0x18, 0xac, 0x7b, - 0x1b, 0xd7, 0x9c, 0x66, 0xb1, 0xa3, 0xd5, 0x25, 0x49, 0xae, 0xd5, 0x31, 0x2a, 0x6e, 0xd9, 0x73, - 0x04, 0x4e, 0x59, 0xda, 0x7f, 0x70, 0x02, 0x8c, 0xb9, 0x60, 0xa4, 0xe1, 0xb4, 0x1e, 0x78, 0x1a, - 0xce, 0x37, 0x61, 0x88, 0x6c, 0x35, 0x93, 0x9d, 0xaa, 0x17, 0x15, 0x4b, 0xaa, 0xbc, 0x2c, 0xa8, - 0xdb, 0xb9, 0x4b, 0x0c, 0x56, 0x1c, 0xbb, 0x24, 0x55, 0x2d, 0x3f, 0x14, 0x49, 0x55, 0xfb, 0xfe, - 0x42, 0x92, 0xaa, 0xbe, 0x0e, 0x83, 0x1b, 0x5e, 0x82, 0x49, 0x33, 0x14, 0x69, 0x0b, 0x72, 0x26, - 0xcf, 0x25, 0x4e, 0xdc, 0x9e, 0x29, 0x51, 0x20, 0xb0, 0x64, 0x87, 0xd6, 0xd4, 0xa2, 0x1a, 0x28, - 0xb2, 0x97, 0xb7, 0xfb, 0xfa, 0x3a, 0x2e, 0x2b, 0x91, 0x44, 0x75, 0xf0, 0x83, 0x27, 0x51, 0x55, - 0xa9, 0x4f, 0x87, 0x1e, 0x54, 0xea, 0x53, 0x23, 0x85, 0x6c, 0xe5, 0x28, 0x52, 0xc8, 0xbe, 0x67, - 0xc1, 0xc9, 0x66, 0xa7, 0x04, 0xcc, 0x22, 0x89, 0xe9, 0xa7, 0x0f, 0x91, 0x92, 0xda, 0xa8, 0x9a, - 0x5d, 0x06, 0xef, 0x48, 0x86, 0x3b, 0x57, 0x2c, 0x73, 0xd1, 0x0e, 0x7f, 0xf0, 0x5c, 0xb4, 0x47, - 0x9d, 0xed, 0x34, 0xcd, 0x4c, 0x3b, 0x7a, 0x24, 0x99, 0x69, 0xc7, 0x1e, 0x60, 0x66, 0x5a, 0x2d, - 0xa7, 0xec, 0xf8, 0x83, 0xcd, 0x29, 0xbb, 0x69, 0xee, 0x4b, 0x3c, 0x85, 0xe9, 0x4b, 0x85, 0xf7, - 0x25, 0xa3, 0x86, 0x83, 0x77, 0x26, 0x9e, 0x5d, 0x77, 0xf2, 0x03, 0x66, 0xd7, 0x35, 0x72, 0xd4, - 0xa2, 0xa3, 0xc8, 0x51, 0xfb, 0xb6, 0xbe, 0x83, 0x9e, 0x28, 0x52, 0x83, 0xda, 0x28, 0xdb, 0x6b, - 0xe8, 0xb4, 0x87, 0xb6, 0x67, 0xc1, 0x9d, 0x3a, 0xee, 0x2c, 0xb8, 0x27, 0x8f, 0x30, 0x0b, 0xee, - 0xa9, 0x63, 0xcd, 0x82, 0xfb, 0xc8, 0x43, 0x92, 0x05, 0x77, 0xfa, 0x28, 0xb3, 0xe0, 0xd2, 0x01, - 0x6e, 0xca, 0xab, 0x3a, 0xd3, 0x8f, 0x16, 0x19, 0xe0, 0x8e, 0x37, 0x7b, 0xf8, 0x00, 0x2b, 0x14, - 0x4e, 0x99, 0xda, 0x7f, 0x0d, 0x4e, 0x1f, 0x3c, 0xc1, 0xd2, 0xb7, 0x27, 0x6a, 0xa9, 0x67, 0x2b, - 0xf3, 0xf6, 0x04, 0x53, 0xde, 0x34, 0xaa, 0xc2, 0x69, 0x3a, 0xbf, 0x63, 0xc1, 0x23, 0x5d, 0xb2, - 0xd8, 0x15, 0xbe, 0xe7, 0xd6, 0x84, 0xf1, 0xa6, 0x59, 0xb4, 0xf0, 0xb5, 0x59, 0x23, 0x6b, 0x9e, - 0x8a, 0x45, 0xce, 0x20, 0x70, 0x96, 0xfd, 0xe2, 0x47, 0x7e, 0xf4, 0xfe, 0xe9, 0x0f, 0xfd, 0xf8, - 0xfd, 0xd3, 0x1f, 0xfa, 0xa3, 0xf7, 0x4f, 0x7f, 0xe8, 0xe7, 0xf6, 0x4e, 0x5b, 0x3f, 0xda, 0x3b, - 0x6d, 0xfd, 0x78, 0xef, 0xb4, 0xf5, 0xa7, 0x7b, 0xa7, 0xad, 0xf7, 0x7e, 0x72, 0xfa, 0x43, 0x6f, - 0x94, 0xb6, 0xcf, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb2, 0xb1, 0xc5, 0x2d, 0xcc, 0xc5, - 0x00, 0x00, + 0x34, 0xf8, 0xb8, 0x77, 0x55, 0xfe, 0xc3, 0x8a, 0x0b, 0x7a, 0x05, 0x46, 0xc5, 0x15, 0x26, 0x11, + 0x6a, 0x78, 0xc2, 0x0c, 0x77, 0xaf, 0xeb, 0x48, 0x6c, 0xd2, 0xa2, 0x0d, 0x18, 0xa3, 0x5c, 0x52, + 0x01, 0x38, 0x3d, 0xd5, 0x9b, 0x0c, 0xd5, 0x12, 0x36, 0xeb, 0x6c, 0x70, 0x86, 0x2d, 0x72, 0xe1, + 0x31, 0xa7, 0x95, 0x84, 0x5b, 0x74, 0x25, 0x98, 0xeb, 0x64, 0x2d, 0xbc, 0x4b, 0x82, 0xe9, 0x93, + 0x6c, 0x06, 0x9e, 0xd9, 0xdb, 0x9d, 0x7d, 0x6c, 0xe1, 0x00, 0x3a, 0x7c, 0x20, 0x17, 0xf4, 0x16, + 0x0c, 0x27, 0xa1, 0x2f, 0x22, 0x88, 0xe3, 0xe9, 0x53, 0x45, 0x32, 0xcf, 0xac, 0xa9, 0x02, 0xba, + 0x1b, 0x43, 0x31, 0xc1, 0x3a, 0xc7, 0x99, 0x4f, 0xc3, 0x64, 0x9b, 0x48, 0xea, 0x29, 0xc8, 0xf2, + 0xbf, 0xf6, 0x43, 0x45, 0x79, 0xf4, 0xd0, 0xbc, 0xe9, 0xbc, 0x7d, 0x34, 0xeb, 0xbc, 0x1d, 0xa2, + 0x0a, 0x94, 0xee, 0xaf, 0xfd, 0x42, 0x87, 0x47, 0xb4, 0x9f, 0xcd, 0x5d, 0x83, 0xc5, 0xef, 0x3d, + 0xf5, 0xf0, 0xd4, 0x78, 0x6a, 0xd5, 0xf5, 0x1d, 0x68, 0xd5, 0x15, 0x7c, 0x18, 0x8e, 0xda, 0x6f, + 0xcd, 0xd0, 0x5d, 0xad, 0x65, 0xdf, 0x3d, 0xaa, 0x51, 0x20, 0xe6, 0x38, 0xa6, 0x77, 0xd3, 0x3d, + 0x95, 0xe9, 0xdd, 0x83, 0x87, 0xd4, 0xbb, 0x25, 0x03, 0x9c, 0xf2, 0x42, 0xdb, 0x30, 0xd9, 0x30, + 0x9f, 0xb1, 0x52, 0xb7, 0x99, 0x9e, 0xef, 0xe1, 0x19, 0xa9, 0x96, 0xf6, 0xc6, 0xc5, 0x52, 0x96, + 0x1f, 0x6e, 0xaf, 0x02, 0xbd, 0x02, 0x43, 0xef, 0x86, 0x31, 0x3b, 0x56, 0x10, 0x1b, 0x8b, 0xbc, + 0x35, 0x32, 0xf4, 0xda, 0x8d, 0x3a, 0x83, 0xef, 0xef, 0xce, 0x0e, 0xd7, 0x42, 0x57, 0xfe, 0xc5, + 0xaa, 0x00, 0xfa, 0x8a, 0x05, 0x27, 0x8d, 0x75, 0xa6, 0x5a, 0x0e, 0x87, 0x69, 0xf9, 0xe3, 0xa2, + 0xe6, 0x93, 0xab, 0x9d, 0x78, 0xe2, 0xce, 0x55, 0xd9, 0xbf, 0xcd, 0x5d, 0x98, 0xc2, 0xa9, 0x41, + 0xe2, 0x96, 0x7f, 0x1c, 0xf9, 0xe6, 0x6f, 0x18, 0xfe, 0x96, 0x07, 0xe0, 0x44, 0xff, 0xcf, 0x16, + 0x73, 0xa2, 0xaf, 0x91, 0xad, 0xa6, 0xef, 0x24, 0xc7, 0x11, 0x83, 0xfb, 0x79, 0x18, 0x4a, 0x44, + 0x6d, 0xc5, 0x92, 0xe5, 0x6b, 0xcd, 0x63, 0x87, 0x0b, 0x6a, 0x63, 0x92, 0x50, 0xac, 0x18, 0xda, + 0xff, 0x9e, 0x7f, 0x15, 0x89, 0x39, 0x06, 0x4f, 0xc1, 0x75, 0xd3, 0x53, 0xf0, 0x4c, 0xe1, 0xbe, + 0x74, 0xf1, 0x18, 0xfc, 0xc0, 0xec, 0x01, 0xb3, 0x1f, 0x7e, 0x7a, 0x4e, 0x79, 0xec, 0x5f, 0xb1, + 0x60, 0xaa, 0xd3, 0xa1, 0x38, 0x55, 0x30, 0xb8, 0xf5, 0xa2, 0xce, 0xbf, 0xd4, 0xa8, 0xde, 0x12, + 0x70, 0xac, 0x28, 0x0a, 0x67, 0xaf, 0xee, 0x2d, 0xc1, 0xd2, 0x0d, 0x30, 0x1f, 0x44, 0x43, 0xaf, + 0xf2, 0x90, 0x7b, 0x4b, 0xbd, 0x58, 0xd6, 0x5b, 0xb8, 0xbd, 0xfd, 0xeb, 0x25, 0x98, 0xe2, 0x4e, + 0xe8, 0x85, 0xed, 0xd0, 0x73, 0x6b, 0xa1, 0x2b, 0x2e, 0x20, 0xb8, 0x30, 0xd2, 0xd4, 0x8c, 0xcf, + 0x62, 0x09, 0x5b, 0x74, 0x73, 0x35, 0x55, 0xf8, 0x75, 0x28, 0x36, 0xb8, 0xd2, 0x5a, 0xc8, 0xb6, + 0xd7, 0x50, 0x3e, 0xcd, 0x52, 0xcf, 0x3b, 0x83, 0xaa, 0x65, 0x59, 0xe3, 0x83, 0x0d, 0xae, 0x47, + 0xf0, 0xe8, 0x84, 0xfd, 0x8f, 0x2c, 0x78, 0xa4, 0x4b, 0x52, 0x17, 0x5a, 0xdd, 0x3d, 0xe6, 0xf8, + 0x17, 0x2f, 0xee, 0xa9, 0xea, 0xf8, 0x71, 0x00, 0x16, 0x58, 0x74, 0x07, 0x80, 0xbb, 0xf3, 0xd9, + 0xfb, 0xeb, 0xa5, 0x22, 0x51, 0x43, 0x6d, 0xa9, 0x13, 0xb4, 0x5b, 0xf5, 0xea, 0xc5, 0x75, 0x8d, + 0xab, 0xfd, 0xed, 0x32, 0xf4, 0xf3, 0x87, 0x9d, 0x6b, 0x30, 0xb8, 0xc9, 0x93, 0xcc, 0xf6, 0x96, + 0xe3, 0x36, 0x35, 0x2e, 0x38, 0x00, 0x4b, 0x36, 0xe8, 0x1a, 0x9c, 0xa0, 0x3b, 0x8b, 0xe7, 0xf8, + 0x55, 0xe2, 0x3b, 0x3b, 0xd2, 0x5a, 0xe5, 0x2f, 0x11, 0xc8, 0x94, 0xd9, 0x27, 0x56, 0xdb, 0x49, + 0x70, 0xa7, 0x72, 0xe8, 0xd5, 0xb6, 0x9c, 0x70, 0x3c, 0x79, 0xaf, 0xd2, 0x54, 0x0f, 0xce, 0x0b, + 0x47, 0xf5, 0xe9, 0x66, 0x9b, 0x5d, 0xae, 0xbd, 0x9f, 0x6b, 0xda, 0xe2, 0x26, 0x2d, 0x8b, 0x2d, + 0x68, 0xb1, 0x98, 0x8a, 0xb5, 0xcd, 0x88, 0xc4, 0x9b, 0xa1, 0xef, 0x8a, 0xa7, 0x1f, 0xd3, 0xd8, + 0x82, 0x0c, 0x1e, 0xb7, 0x95, 0xa0, 0x5c, 0xd6, 0x1d, 0xcf, 0x6f, 0x45, 0x24, 0xe5, 0x32, 0x60, + 0x72, 0x59, 0xc9, 0xe0, 0x71, 0x5b, 0x09, 0x3a, 0xb7, 0x4e, 0x8a, 0xd7, 0x02, 0xe5, 0x15, 0x66, + 0x21, 0x82, 0x3e, 0x07, 0x83, 0x32, 0x90, 0xbd, 0x50, 0xa6, 0x0d, 0x11, 0x38, 0xa0, 0x5e, 0x1e, + 0xd4, 0x5e, 0xa6, 0x12, 0x21, 0xec, 0x92, 0xdf, 0x61, 0x5e, 0xa5, 0xfb, 0x53, 0x0b, 0x4e, 0x74, + 0x08, 0xc8, 0xe2, 0x22, 0x6d, 0xc3, 0x8b, 0x13, 0x95, 0x17, 0x5f, 0x13, 0x69, 0x1c, 0x8e, 0x15, + 0x05, 0x5d, 0x2d, 0x5c, 0x68, 0x66, 0x05, 0xa5, 0x08, 0x01, 0x11, 0xd8, 0xde, 0x04, 0x25, 0x3a, + 0x03, 0x7d, 0xad, 0x98, 0x44, 0xf2, 0x89, 0x38, 0x29, 0xe7, 0x99, 0x1f, 0x90, 0x61, 0xa8, 0xda, + 0xba, 0xa1, 0x5c, 0x70, 0x9a, 0xda, 0xca, 0x9d, 0x70, 0x1c, 0x67, 0x7f, 0xa3, 0x0c, 0xe3, 0x99, + 0xc0, 0x4c, 0xda, 0x90, 0xad, 0x30, 0xf0, 0x92, 0x50, 0x65, 0x3f, 0xe3, 0xaf, 0x52, 0x91, 0xe6, + 0xe6, 0x35, 0x01, 0xc7, 0x8a, 0x02, 0x3d, 0x2d, 0x5f, 0x05, 0xcd, 0xe6, 0xfb, 0x5f, 0xac, 0x1a, + 0x0f, 0x83, 0x16, 0x7d, 0xab, 0xe3, 0x49, 0xe8, 0x6b, 0x86, 0xea, 0x91, 0x67, 0xf5, 0x3d, 0xf1, + 0x62, 0xb5, 0x16, 0x86, 0x3e, 0x66, 0x48, 0xf4, 0x94, 0xe8, 0x7d, 0xe6, 0xe4, 0x02, 0x3b, 0x6e, + 0x18, 0x6b, 0x43, 0xf0, 0x0c, 0x0c, 0xde, 0x25, 0x3b, 0x91, 0x17, 0x6c, 0x64, 0xcf, 0x6d, 0xae, + 0x70, 0x30, 0x96, 0x78, 0xf3, 0x3d, 0x8e, 0xc1, 0x23, 0x7e, 0x8f, 0x63, 0x28, 0x77, 0x1f, 0xfc, + 0xae, 0x05, 0xe3, 0x2c, 0x25, 0xa8, 0xb8, 0x40, 0xef, 0x85, 0xc1, 0x31, 0xe8, 0x18, 0x4f, 0x42, + 0x7f, 0x44, 0x2b, 0xcd, 0x26, 0xd4, 0x67, 0x2d, 0xc1, 0x1c, 0x87, 0x1e, 0x83, 0x3e, 0xd6, 0x04, + 0xfa, 0x19, 0x47, 0x78, 0xe6, 0xf1, 0xaa, 0x93, 0x38, 0x98, 0x41, 0xd9, 0x5d, 0x28, 0x4c, 0x9a, + 0xbe, 0xc7, 0x1b, 0x9d, 0xba, 0x5b, 0x1f, 0xb6, 0xbb, 0x50, 0x1d, 0x1b, 0xf9, 0xa0, 0xee, 0x42, + 0x75, 0x66, 0x7e, 0xb0, 0x9e, 0xff, 0xbf, 0x4a, 0x70, 0xba, 0x63, 0xb9, 0xf4, 0x04, 0x78, 0xc5, + 0x38, 0x01, 0xbe, 0x90, 0x39, 0x01, 0xb6, 0x0f, 0x2e, 0xfd, 0x60, 0xce, 0x84, 0x3b, 0x1f, 0xd5, + 0x96, 0x8f, 0xf1, 0xa8, 0xb6, 0xaf, 0xa8, 0x8a, 0xd3, 0x9f, 0xa3, 0xe2, 0xfc, 0xbe, 0x05, 0x8f, + 0x76, 0x1c, 0xb2, 0x87, 0xee, 0xf2, 0x59, 0xc7, 0x56, 0x76, 0xb1, 0x4e, 0x7e, 0xb9, 0xdc, 0xa5, + 0x57, 0xcc, 0x4e, 0x39, 0x4b, 0xa5, 0x10, 0x43, 0xc6, 0x42, 0x79, 0x1b, 0xe1, 0x12, 0x88, 0xc3, + 0xb0, 0xc2, 0xa2, 0x58, 0xbb, 0xbc, 0xc5, 0x1b, 0xb9, 0x7c, 0xc8, 0x05, 0x35, 0x67, 0xfa, 0xc9, + 0xf5, 0xac, 0x00, 0xd9, 0x2b, 0x5d, 0xb7, 0x35, 0xcb, 0xb3, 0x7c, 0x18, 0xcb, 0x73, 0xa4, 0xb3, + 0xd5, 0x89, 0x16, 0x60, 0x7c, 0xcb, 0x0b, 0xd8, 0x33, 0x9e, 0xa6, 0xf6, 0xa4, 0x6e, 0xd0, 0x5e, + 0x33, 0xd1, 0x38, 0x4b, 0x3f, 0xf3, 0x0a, 0x8c, 0x1e, 0xde, 0xbb, 0xf6, 0x7e, 0x19, 0x3e, 0x7c, + 0x80, 0x50, 0xe0, 0xbb, 0x83, 0xf1, 0x5d, 0xb4, 0xdd, 0xa1, 0xed, 0xdb, 0xd4, 0x60, 0x6a, 0xbd, + 0xe5, 0xfb, 0x3b, 0x2c, 0x7e, 0x8a, 0xb8, 0x92, 0x42, 0x28, 0x35, 0xea, 0xbd, 0xf0, 0x95, 0x0e, + 0x34, 0xb8, 0x63, 0x49, 0xf4, 0x59, 0x40, 0xe1, 0x1d, 0x96, 0x34, 0xd7, 0x4d, 0xb3, 0x1e, 0xb0, + 0x4f, 0x50, 0x4e, 0x97, 0xea, 0x8d, 0x36, 0x0a, 0xdc, 0xa1, 0x14, 0xd5, 0x53, 0xd9, 0x53, 0xe3, + 0xaa, 0x59, 0x19, 0x3d, 0x15, 0xeb, 0x48, 0x6c, 0xd2, 0xa2, 0x4b, 0x30, 0xe9, 0x6c, 0x3b, 0x1e, + 0x4f, 0x82, 0x25, 0x19, 0x70, 0x45, 0x55, 0xf9, 0xaf, 0x16, 0xb2, 0x04, 0xb8, 0xbd, 0x0c, 0x6a, + 0x1a, 0x0e, 0x49, 0x9e, 0x2e, 0xff, 0x53, 0x87, 0x98, 0xc1, 0x85, 0x5d, 0x94, 0xf6, 0xff, 0xb0, + 0xe8, 0xd6, 0xd7, 0xe1, 0xc5, 0x47, 0x3a, 0x22, 0xca, 0xc1, 0xa6, 0x5d, 0x46, 0x53, 0x23, 0xb2, + 0xa4, 0x23, 0xb1, 0x49, 0xcb, 0xa7, 0x46, 0x9c, 0x86, 0x73, 0x1b, 0xda, 0xa6, 0xb8, 0xc7, 0xa9, + 0x28, 0xa8, 0x06, 0xed, 0x7a, 0xdb, 0x5e, 0x1c, 0x46, 0x62, 0x01, 0xf5, 0x18, 0xdc, 0x9b, 0xca, + 0xcb, 0x2a, 0x67, 0x83, 0x25, 0x3f, 0xfb, 0x9b, 0x25, 0x18, 0x95, 0x35, 0xbe, 0xd6, 0x0a, 0x13, + 0xe7, 0x18, 0xb6, 0xf4, 0xd7, 0x8c, 0x2d, 0x7d, 0xbe, 0xd8, 0xb5, 0x56, 0xd6, 0xb8, 0xae, 0x5b, + 0xf9, 0xe7, 0x32, 0x5b, 0xf9, 0xf9, 0x5e, 0x98, 0x1e, 0xbc, 0x85, 0xff, 0x47, 0x0b, 0x26, 0x0d, + 0xfa, 0x63, 0xd8, 0x49, 0x6a, 0xe6, 0x4e, 0xf2, 0x5c, 0x0f, 0xbd, 0xe9, 0xb2, 0x83, 0x7c, 0xa7, + 0x94, 0xe9, 0x05, 0xdb, 0x39, 0xbe, 0x04, 0x7d, 0x9b, 0x4e, 0xe4, 0x16, 0xcb, 0x08, 0xd9, 0x56, + 0x7c, 0xee, 0xb2, 0x13, 0xb9, 0x5c, 0xfe, 0x9f, 0x53, 0xef, 0x51, 0x39, 0x91, 0x9b, 0x7b, 0xcb, + 0x81, 0x55, 0x8a, 0x2e, 0xc2, 0x40, 0xdc, 0x08, 0x9b, 0x2a, 0x0e, 0xf4, 0x0c, 0x7f, 0xab, 0x8a, + 0x42, 0xf6, 0x77, 0x67, 0x91, 0x59, 0x1d, 0x05, 0x63, 0x41, 0x3f, 0xb3, 0x01, 0x15, 0x55, 0xf5, + 0x91, 0x46, 0xc2, 0xff, 0xcf, 0x32, 0x9c, 0xe8, 0x30, 0x57, 0xd0, 0x97, 0x8d, 0x71, 0x7b, 0xa5, + 0xe7, 0xc9, 0xf6, 0x01, 0x47, 0xee, 0xcb, 0xcc, 0x52, 0x72, 0xc5, 0xec, 0x38, 0x44, 0xf5, 0x37, + 0x63, 0x92, 0xad, 0x9e, 0x82, 0xf2, 0xab, 0xa7, 0xd5, 0x1e, 0xdb, 0xf0, 0xd3, 0x8a, 0x54, 0x4b, + 0x8f, 0xf4, 0x3b, 0xff, 0x8d, 0x3e, 0x98, 0xea, 0x74, 0x7f, 0x1e, 0x7d, 0xcd, 0xca, 0x3c, 0xfb, + 0xf0, 0x6a, 0xef, 0x97, 0xf0, 0xf9, 0x5b, 0x10, 0x22, 0xe7, 0xcc, 0x9c, 0xf9, 0x10, 0x44, 0xee, + 0x88, 0x8b, 0xda, 0xd9, 0xfd, 0xa4, 0x88, 0x3f, 0xe1, 0x21, 0xa5, 0xc2, 0x67, 0x0e, 0xd1, 0x14, + 0xf1, 0x0a, 0x48, 0x9c, 0xb9, 0x9f, 0x24, 0xc1, 0xf9, 0xf7, 0x93, 0x64, 0x1b, 0x66, 0x3c, 0x18, + 0xd6, 0xfa, 0x75, 0xa4, 0xd3, 0xe0, 0x2e, 0xdd, 0xa2, 0xb4, 0x76, 0x1f, 0xe9, 0x54, 0xf8, 0xfb, + 0x16, 0x64, 0x82, 0xb6, 0x94, 0x5b, 0xc6, 0xea, 0xea, 0x96, 0x39, 0x03, 0x7d, 0x51, 0xe8, 0x93, + 0xec, 0x93, 0x04, 0x38, 0xf4, 0x09, 0x66, 0x18, 0xf5, 0x44, 0x6d, 0xb9, 0xdb, 0x13, 0xb5, 0xd4, + 0x4e, 0xf7, 0xc9, 0x36, 0x91, 0x4e, 0x12, 0x25, 0xc6, 0xaf, 0x52, 0x20, 0xe6, 0x38, 0xfb, 0xf7, + 0xca, 0x30, 0xc0, 0x3d, 0x11, 0xc7, 0xb0, 0x4f, 0xd7, 0x84, 0x53, 0xa0, 0xd0, 0x9d, 0x74, 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, 0x4d, 0x80, 0x98, 0x3d, 0x89, 0x48, 0x79, 0x88, + 0xcc, 0x9b, 0x2f, 0x16, 0x6a, 0x47, 0x5d, 0x15, 0xe3, 0xad, 0x49, 0xd3, 0xfd, 0x29, 0x04, 0xd6, + 0x78, 0xcf, 0xbc, 0x0c, 0x15, 0x45, 0x9c, 0x67, 0x04, 0x8c, 0xe8, 0x93, 0xf3, 0xaf, 0xc0, 0x78, + 0xa6, 0xae, 0x9e, 0x6c, 0x88, 0xdf, 0xb2, 0x60, 0x3c, 0xf3, 0x9a, 0x3b, 0xfa, 0xaa, 0x05, 0x53, + 0x7e, 0x07, 0x47, 0x94, 0xf8, 0xcc, 0x87, 0x71, 0x61, 0x29, 0xf3, 0xa1, 0x13, 0x16, 0x77, 0xac, + 0x8d, 0x9a, 0x95, 0xfc, 0x85, 0x57, 0xc7, 0x17, 0x31, 0xb0, 0x23, 0x3c, 0xe7, 0x30, 0x87, 0x61, + 0x85, 0xb5, 0x7f, 0x62, 0xc1, 0x64, 0xdb, 0x83, 0xe1, 0x0f, 0x4b, 0x37, 0x44, 0x76, 0xe5, 0x52, + 0x97, 0xec, 0xca, 0x7a, 0x2f, 0xcb, 0x07, 0xf6, 0xf2, 0xd7, 0x2d, 0x10, 0x33, 0xf4, 0x18, 0x34, + 0xc0, 0x55, 0x53, 0x03, 0xfc, 0x48, 0x91, 0x49, 0xdf, 0x45, 0xf5, 0xfb, 0xa5, 0x12, 0x4c, 0x70, + 0x82, 0xd4, 0xa7, 0xfe, 0xb0, 0x7c, 0x9c, 0xde, 0x5e, 0xfd, 0x50, 0x4f, 0x2d, 0x76, 0xee, 0xa9, + 0xf1, 0x2d, 0xfb, 0x0e, 0xfc, 0x96, 0x7f, 0x6e, 0x01, 0xe2, 0x63, 0x92, 0x7d, 0x1e, 0x97, 0x3b, + 0x77, 0x35, 0x83, 0x2e, 0x95, 0x1c, 0x0a, 0x83, 0x35, 0xaa, 0x07, 0xdc, 0x85, 0xcc, 0x89, 0x46, + 0x39, 0xff, 0x44, 0xa3, 0x87, 0x5e, 0xff, 0x76, 0x19, 0xb2, 0xc1, 0x70, 0xe8, 0x6d, 0x18, 0x69, + 0x38, 0x4d, 0xe7, 0x8e, 0xe7, 0x7b, 0x89, 0x47, 0xe2, 0x62, 0x47, 0xa6, 0x4b, 0x5a, 0x09, 0x71, + 0x90, 0xa0, 0x41, 0xb0, 0xc1, 0x11, 0xcd, 0x01, 0x34, 0x23, 0x6f, 0xdb, 0xf3, 0xc9, 0x06, 0xd3, + 0x59, 0x59, 0x34, 0x3d, 0x3f, 0xfd, 0x93, 0x50, 0xac, 0x51, 0x74, 0x88, 0xbe, 0x2e, 0x1f, 0x47, + 0xf4, 0x75, 0x5f, 0x8f, 0xd1, 0xd7, 0xfd, 0x85, 0xa2, 0xaf, 0x31, 0x9c, 0x92, 0xfe, 0x7f, 0xfa, + 0x7f, 0xc5, 0xf3, 0x09, 0x4f, 0x32, 0x2b, 0xa2, 0xed, 0x67, 0xf6, 0x76, 0x67, 0x4f, 0xe1, 0x8e, + 0x14, 0xb8, 0x4b, 0x49, 0xbb, 0x05, 0x27, 0xea, 0x24, 0xf2, 0x58, 0xee, 0x3f, 0x37, 0x5d, 0x4b, + 0x5f, 0x80, 0x4a, 0x94, 0x59, 0xc6, 0x3d, 0x5e, 0xa9, 0xd6, 0xb2, 0x45, 0xc9, 0x65, 0x9b, 0xb2, + 0xb4, 0xff, 0x56, 0x09, 0x06, 0x45, 0x18, 0xdc, 0x31, 0x28, 0x1f, 0x57, 0x0c, 0x27, 0xc1, 0x33, + 0x79, 0xf2, 0x8f, 0x35, 0xab, 0xab, 0x7b, 0xa0, 0x9e, 0x71, 0x0f, 0x3c, 0x57, 0x8c, 0xdd, 0xc1, + 0x8e, 0x81, 0x7f, 0x5e, 0x86, 0x31, 0x33, 0x2c, 0xf0, 0x18, 0x86, 0xe5, 0x75, 0x18, 0x8c, 0x45, + 0x84, 0x6a, 0xa9, 0x48, 0xd4, 0x55, 0xf6, 0x13, 0xa7, 0x67, 0xa9, 0x22, 0x26, 0x55, 0xb2, 0xeb, + 0x18, 0x04, 0x5b, 0x3e, 0x96, 0x20, 0xd8, 0xbc, 0x68, 0xcd, 0xbe, 0x07, 0x11, 0xad, 0x69, 0xff, + 0x90, 0x89, 0x7c, 0x1d, 0x7e, 0x0c, 0xdb, 0xf8, 0x6b, 0xe6, 0xe6, 0x70, 0xae, 0xd0, 0xbc, 0x13, + 0xcd, 0xeb, 0xb2, 0x9d, 0x7f, 0xcf, 0x82, 0x61, 0x41, 0x78, 0x0c, 0x1d, 0xf8, 0xac, 0xd9, 0x81, + 0xa7, 0x0a, 0x75, 0xa0, 0x4b, 0xcb, 0xbf, 0x59, 0x52, 0x2d, 0xaf, 0x89, 0x27, 0xcd, 0x73, 0x33, + 0x1d, 0x0f, 0x35, 0xa3, 0x30, 0x09, 0x1b, 0xa1, 0x2f, 0x14, 0xb8, 0xc7, 0xd2, 0xcb, 0x55, 0x1c, + 0xbe, 0xaf, 0xfd, 0xc6, 0x8a, 0x9a, 0xdd, 0xfd, 0x09, 0xa3, 0x44, 0x6c, 0xa0, 0x9d, 0x1e, 0x54, + 0x77, 0x01, 0xd2, 0x57, 0xac, 0xc5, 0xbd, 0xc4, 0xde, 0x9f, 0x6a, 0x4f, 0x6f, 0x4b, 0x29, 0x5e, + 0x58, 0xe3, 0x2b, 0xc3, 0xf0, 0x59, 0x1d, 0xfd, 0xe6, 0x19, 0xc0, 0x75, 0x01, 0xc7, 0x8a, 0xc2, + 0x7e, 0x99, 0x49, 0x76, 0x36, 0x40, 0xbd, 0x5d, 0x64, 0xfa, 0xc5, 0x01, 0x35, 0xb4, 0xcc, 0xb1, + 0x77, 0x5d, 0xbf, 0x2e, 0x55, 0x54, 0x7c, 0xd2, 0x26, 0xe8, 0x91, 0xb0, 0xe9, 0xed, 0x2a, 0x44, + 0xda, 0x0e, 0x8e, 0x5e, 0x2e, 0x2c, 0x91, 0x7b, 0x38, 0x2a, 0x62, 0xc9, 0xdd, 0x58, 0x46, 0xab, + 0xd5, 0x5a, 0x36, 0x3f, 0xf5, 0x92, 0x44, 0xe0, 0x94, 0x06, 0xcd, 0x0b, 0x83, 0xd2, 0x7c, 0xf1, + 0x5e, 0x1a, 0x94, 0x72, 0x48, 0x34, 0x8b, 0xf2, 0x3c, 0x0c, 0xab, 0x27, 0x3f, 0x6a, 0xfc, 0xb1, + 0x85, 0x0a, 0xd7, 0xaf, 0x96, 0x53, 0x30, 0xd6, 0x69, 0xd0, 0x2a, 0x9c, 0x70, 0xd5, 0xad, 0x8b, + 0x5a, 0xeb, 0x8e, 0xef, 0x35, 0x68, 0x51, 0x7e, 0x63, 0xf2, 0x91, 0xbd, 0xdd, 0xd9, 0x13, 0xd5, + 0x76, 0x34, 0xee, 0x54, 0x06, 0xad, 0xc1, 0x78, 0xcc, 0x9f, 0x36, 0x91, 0xa1, 0xf5, 0x22, 0x6d, + 0xeb, 0xb3, 0xf2, 0xc4, 0xaa, 0x6e, 0xa2, 0xf7, 0x19, 0x88, 0x4b, 0x05, 0x19, 0x8c, 0x9f, 0x65, + 0x81, 0x5e, 0x85, 0x31, 0x5f, 0x7f, 0xb7, 0xb1, 0x26, 0x2e, 0x9f, 0xa8, 0x18, 0x24, 0xe3, 0x55, + 0xc7, 0x1a, 0xce, 0x50, 0xa3, 0xd7, 0x61, 0x5a, 0x87, 0x88, 0x4c, 0x30, 0x4e, 0xb0, 0x41, 0x62, + 0xf1, 0x0c, 0xc2, 0x63, 0x7b, 0xbb, 0xb3, 0xd3, 0x57, 0xbb, 0xd0, 0xe0, 0xae, 0xa5, 0xd1, 0x45, + 0x18, 0x91, 0x23, 0xa9, 0x5d, 0x44, 0x49, 0xa3, 0xdf, 0x34, 0x1c, 0x36, 0x28, 0x3f, 0xd8, 0xc1, + 0xdc, 0x97, 0x68, 0x61, 0x6d, 0x0b, 0x47, 0xef, 0xc0, 0x88, 0xde, 0xc6, 0xec, 0xde, 0x9c, 0xff, + 0x16, 0xa6, 0x50, 0x05, 0x54, 0xcb, 0x75, 0x1c, 0x36, 0x78, 0xdb, 0x37, 0x60, 0xa0, 0xbe, 0x13, + 0x37, 0x12, 0xbf, 0x80, 0x7c, 0x7b, 0xd2, 0xe8, 0x42, 0xba, 0xf6, 0xd8, 0xbb, 0x3c, 0xa2, 0x47, + 0x36, 0x81, 0xf1, 0xb5, 0xa5, 0x1a, 0x7f, 0xf5, 0x7f, 0x81, 0x5b, 0x6f, 0x58, 0x48, 0x37, 0xeb, + 0x90, 0x52, 0xab, 0x83, 0x3c, 0xb4, 0xff, 0xc4, 0x82, 0x7e, 0xf6, 0xa6, 0x4c, 0xde, 0x7b, 0x44, + 0x45, 0x1a, 0x8d, 0x5e, 0x82, 0x01, 0xb2, 0xbe, 0x4e, 0x1a, 0x89, 0x58, 0xc6, 0x32, 0xda, 0x7b, + 0x60, 0x99, 0x41, 0xe9, 0xe2, 0x64, 0x95, 0xf1, 0xbf, 0x58, 0x10, 0xa3, 0xcf, 0x43, 0x25, 0xf1, + 0xb6, 0xc8, 0x82, 0xeb, 0x12, 0xf7, 0x10, 0x77, 0xc5, 0x95, 0xb0, 0x58, 0x93, 0x4c, 0x70, 0xca, + 0xcf, 0x7e, 0xaf, 0x04, 0x90, 0xde, 0xb5, 0xc8, 0xeb, 0xe6, 0x62, 0xdb, 0xb3, 0x4b, 0x4f, 0x77, + 0x78, 0x76, 0x09, 0xa5, 0x0c, 0x3b, 0x3c, 0xba, 0xa4, 0x86, 0xaa, 0x5c, 0x68, 0xa8, 0xfa, 0x7a, + 0x19, 0xaa, 0x25, 0x98, 0x4c, 0xef, 0x8a, 0x98, 0x97, 0xee, 0x58, 0x12, 0xc6, 0xb5, 0x2c, 0x12, + 0xb7, 0xd3, 0xdb, 0xef, 0x59, 0x20, 0x42, 0xd6, 0x0a, 0xcc, 0x56, 0x57, 0x3e, 0x91, 0x62, 0xe4, + 0xa1, 0x7a, 0xb6, 0x48, 0x34, 0x9f, 0xc8, 0x3e, 0xa5, 0xd6, 0x8f, 0x91, 0x73, 0xca, 0xe0, 0x6a, + 0xff, 0x86, 0x05, 0xc3, 0x1c, 0x7d, 0x8d, 0xe9, 0xd4, 0xf9, 0xed, 0xea, 0x29, 0xc3, 0x27, 0x7b, + 0x3d, 0x84, 0x32, 0x56, 0x99, 0x1e, 0xf5, 0xd7, 0x43, 0x24, 0x02, 0xa7, 0x34, 0xe8, 0x19, 0x18, + 0x8c, 0x5b, 0x77, 0x18, 0x79, 0x26, 0x7e, 0xad, 0xce, 0xc1, 0x58, 0xe2, 0xed, 0x7f, 0x59, 0x82, + 0x89, 0x6c, 0xf8, 0x22, 0xc2, 0x30, 0xc0, 0x75, 0xec, 0xac, 0x7a, 0x76, 0x90, 0x2f, 0x47, 0x0b, + 0x7f, 0x04, 0xfe, 0x06, 0x2e, 0x8b, 0x39, 0x13, 0x9c, 0xd0, 0x3a, 0x0c, 0xbb, 0xe1, 0xbd, 0xe0, + 0x9e, 0x13, 0xb9, 0x0b, 0xb5, 0x55, 0xf1, 0x25, 0x72, 0x02, 0x4e, 0xaa, 0x69, 0x01, 0x3d, 0xb8, + 0x92, 0xf9, 0x16, 0x52, 0x14, 0xd6, 0x19, 0x53, 0x9b, 0xb2, 0x11, 0x06, 0xeb, 0xde, 0xc6, 0x35, + 0xa7, 0x59, 0xec, 0x68, 0x75, 0x49, 0x92, 0x6b, 0x75, 0x8c, 0x8a, 0x5b, 0xf6, 0x1c, 0x81, 0x53, + 0x96, 0xf6, 0x1f, 0x9c, 0x00, 0x63, 0x2e, 0x18, 0x69, 0x38, 0xad, 0x07, 0x9e, 0x86, 0xf3, 0x4d, + 0x18, 0x22, 0x5b, 0xcd, 0x64, 0xa7, 0xea, 0x45, 0xc5, 0x92, 0x2a, 0x2f, 0x0b, 0xea, 0x76, 0xee, + 0x12, 0x83, 0x15, 0xc7, 0x2e, 0x49, 0x55, 0xcb, 0x0f, 0x45, 0x52, 0xd5, 0xbe, 0xbf, 0x90, 0xa4, + 0xaa, 0xaf, 0xc3, 0xe0, 0x86, 0x97, 0x60, 0xd2, 0x0c, 0x45, 0xda, 0x82, 0x9c, 0xc9, 0x73, 0x89, + 0x13, 0xb7, 0x67, 0x4a, 0x14, 0x08, 0x2c, 0xd9, 0xa1, 0x35, 0xb5, 0xa8, 0x06, 0x8a, 0xec, 0xe5, + 0xed, 0xbe, 0xbe, 0x8e, 0xcb, 0x4a, 0x24, 0x51, 0x1d, 0xfc, 0xe0, 0x49, 0x54, 0x55, 0xea, 0xd3, + 0xa1, 0x07, 0x95, 0xfa, 0xd4, 0x48, 0x21, 0x5b, 0x39, 0x8a, 0x14, 0xb2, 0xef, 0x59, 0x70, 0xb2, + 0xd9, 0x29, 0x01, 0xb3, 0x48, 0x62, 0xfa, 0xe9, 0x43, 0xa4, 0xa4, 0x36, 0xaa, 0x66, 0x97, 0xc1, + 0x3b, 0x92, 0xe1, 0xce, 0x15, 0xcb, 0x5c, 0xb4, 0xc3, 0x1f, 0x3c, 0x17, 0xed, 0x51, 0x67, 0x3b, + 0x4d, 0x33, 0xd3, 0x8e, 0x1e, 0x49, 0x66, 0xda, 0xb1, 0x07, 0x98, 0x99, 0x56, 0xcb, 0x29, 0x3b, + 0xfe, 0x60, 0x73, 0xca, 0x6e, 0x9a, 0xfb, 0x12, 0x4f, 0x61, 0xfa, 0x52, 0xe1, 0x7d, 0xc9, 0xa8, + 0xe1, 0xe0, 0x9d, 0x89, 0x67, 0xd7, 0x9d, 0xfc, 0x80, 0xd9, 0x75, 0x8d, 0x1c, 0xb5, 0xe8, 0x28, + 0x72, 0xd4, 0xbe, 0xad, 0xef, 0xa0, 0x27, 0x8a, 0xd4, 0xa0, 0x36, 0xca, 0xf6, 0x1a, 0x3a, 0xed, + 0xa1, 0xed, 0x59, 0x70, 0xa7, 0x8e, 0x3b, 0x0b, 0xee, 0xc9, 0x23, 0xcc, 0x82, 0x7b, 0xea, 0x58, + 0xb3, 0xe0, 0x3e, 0xf2, 0x90, 0x64, 0xc1, 0x9d, 0x3e, 0xca, 0x2c, 0xb8, 0x74, 0x80, 0x9b, 0xf2, + 0xaa, 0xce, 0xf4, 0xa3, 0x45, 0x06, 0xb8, 0xe3, 0xcd, 0x1e, 0x3e, 0xc0, 0x0a, 0x85, 0x53, 0xa6, + 0xf6, 0x5f, 0x83, 0xd3, 0x07, 0x4f, 0xb0, 0xf4, 0xed, 0x89, 0x5a, 0xea, 0xd9, 0xca, 0xbc, 0x3d, + 0xc1, 0x94, 0x37, 0x8d, 0xaa, 0x70, 0x9a, 0xce, 0xef, 0x58, 0xf0, 0x48, 0x97, 0x2c, 0x76, 0x85, + 0xef, 0xb9, 0x35, 0x61, 0xbc, 0x69, 0x16, 0x2d, 0x7c, 0x6d, 0xd6, 0xc8, 0x9a, 0xa7, 0x62, 0x91, + 0x33, 0x08, 0x9c, 0x65, 0xbf, 0xf8, 0x91, 0x1f, 0xbd, 0x7f, 0xfa, 0x43, 0x3f, 0x7e, 0xff, 0xf4, + 0x87, 0xfe, 0xe8, 0xfd, 0xd3, 0x1f, 0xfa, 0xb9, 0xbd, 0xd3, 0xd6, 0x8f, 0xf6, 0x4e, 0x5b, 0x3f, + 0xde, 0x3b, 0x6d, 0xfd, 0xe9, 0xde, 0x69, 0xeb, 0xbd, 0x9f, 0x9c, 0xfe, 0xd0, 0x1b, 0xa5, 0xed, + 0xf3, 0xff, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x7d, 0xa2, 0x84, 0xda, 0xcc, 0xc5, 0x00, 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index a23b7928fab..cc52ea4c9c4 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -2688,7 +2688,7 @@ message PodSpec { // If specified, the pod will be dispatched by specified scheduler. // If not specified, the pod will be dispatched by default scheduler. // +optional - optional string schedulername = 19; + optional string schedulerName = 19; // If specified, the pod's tolerations. // +optional diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index 3ff5805149c..6fbb85a603e 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -33394,7 +33394,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq2[20] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("schedulername")) + r.EncodeString(codecSelferC_UTF81234, string("schedulerName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym71 := z.EncBinary() _ = yym71 @@ -33738,7 +33738,7 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.Affinity.CodecDecodeSelf(d) } - case "schedulername": + case "schedulerName": if r.TryDecodeAsNil() { x.SchedulerName = "" } else { diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index c093bb1d7b0..3a12a42e4e5 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -1335,7 +1335,7 @@ var map_PodSpec = map[string]string{ "hostname": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "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.", + "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.", } diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index 37ff83207ca..a1d4a794f4b 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -6598,7 +6598,7 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope Ref: ref("k8s.io/kubernetes/pkg/api/v1.Affinity"), }, }, - "schedulername": { + "schedulerName": { SchemaProps: spec.SchemaProps{ Description: "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", Type: []string{"string"}, From a74fcd0a8d1d68f663bc7e9dee80bba01f1816a8 Mon Sep 17 00:00:00 2001 From: Klaus Ma Date: Thu, 2 Mar 2017 11:19:33 +0800 Subject: [PATCH 3/3] generated client-go. --- .../client-go/pkg/api/v1/generated.pb.go | 371 +++++++++--------- .../client-go/pkg/api/v1/generated.proto | 2 +- .../client-go/pkg/api/v1/types.generated.go | 4 +- .../src/k8s.io/client-go/pkg/api/v1/types.go | 2 +- .../pkg/api/v1/types_swagger_doc_generated.go | 2 +- 5 files changed, 190 insertions(+), 191 deletions(-) diff --git a/staging/src/k8s.io/client-go/pkg/api/v1/generated.pb.go b/staging/src/k8s.io/client-go/pkg/api/v1/generated.pb.go index 8ec88a37b80..c07413e7d14 100644 --- a/staging/src/k8s.io/client-go/pkg/api/v1/generated.pb.go +++ b/staging/src/k8s.io/client-go/pkg/api/v1/generated.pb.go @@ -41997,7 +41997,7 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 10818 bytes of a gzipped FileDescriptorProto + // 10815 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x24, 0xc7, 0x75, 0x98, 0x66, 0x17, 0x5f, 0xfb, 0xf0, 0xdd, 0x87, 0x3b, 0x82, 0x10, 0x79, 0x38, 0x0e, 0x45, 0xea, 0x48, 0x1e, 0x01, 0xdd, 0x91, 0x14, 0x4f, 0xa2, 0x42, 0x09, 0xc0, 0x02, 0x77, 0xd0, 0x7d, @@ -42490,189 +42490,188 @@ var fileDescriptorGenerated = []byte{ 0x77, 0x2a, 0xbf, 0xde, 0x6a, 0x86, 0x27, 0x6e, 0xab, 0xc5, 0xc8, 0xf1, 0x30, 0x91, 0xfb, 0x8c, 0xc0, 0x3c, 0x54, 0xe2, 0xd6, 0x1d, 0x37, 0xdc, 0x72, 0xbc, 0x80, 0x39, 0xec, 0xf5, 0x47, 0xd9, 0x25, 0x02, 0xa7, 0x34, 0xa8, 0x06, 0x43, 0x8e, 0x30, 0xe1, 0x84, 0x63, 0x3d, 0xe7, 0x0e, 0xb8, - 0x34, 0xf8, 0xb8, 0x77, 0x55, 0xfe, 0xc3, 0x8a, 0x0b, 0x7a, 0x05, 0x46, 0xc5, 0x15, 0x26, 0x12, - 0xb1, 0x56, 0x9f, 0x30, 0xc3, 0xdd, 0xeb, 0x12, 0xc9, 0x26, 0x98, 0x49, 0x8b, 0x36, 0x60, 0x8c, - 0x72, 0x49, 0x05, 0xe0, 0xf4, 0x54, 0x6f, 0x32, 0x54, 0x4b, 0xd8, 0xac, 0xb3, 0xc1, 0x19, 0xb6, - 0xc8, 0x85, 0xc7, 0x9c, 0x56, 0x12, 0x6e, 0xd1, 0x95, 0x60, 0xae, 0x93, 0xb5, 0xf0, 0x2e, 0x09, - 0xa6, 0x4f, 0xb2, 0x19, 0x78, 0x66, 0x6f, 0x77, 0xf6, 0xb1, 0x85, 0x03, 0xe8, 0xf0, 0x81, 0x5c, - 0xd0, 0x5b, 0x30, 0x9c, 0x84, 0xbe, 0x88, 0x20, 0x8e, 0xa7, 0x4f, 0x15, 0xc9, 0x3c, 0xb3, 0xa6, - 0x0a, 0xe8, 0x6e, 0x0c, 0xc5, 0x04, 0xeb, 0x1c, 0x67, 0x3e, 0x0d, 0x93, 0x6d, 0x22, 0xa9, 0xa7, - 0x20, 0xcb, 0xff, 0xda, 0x0f, 0x15, 0xe5, 0xd1, 0x43, 0xf3, 0xa6, 0xf3, 0xf6, 0xd1, 0xac, 0xf3, - 0x76, 0x88, 0x2a, 0x50, 0xba, 0xbf, 0xf6, 0x0b, 0x1d, 0x1e, 0xd1, 0x7e, 0x36, 0x77, 0x0d, 0x16, - 0xbf, 0xf7, 0xd4, 0xc3, 0x53, 0xe3, 0xa9, 0x55, 0xd7, 0x77, 0xa0, 0x55, 0x57, 0xf0, 0x61, 0x38, - 0x6a, 0xbf, 0x35, 0x43, 0x77, 0xb5, 0x96, 0x7d, 0xf7, 0xa8, 0x46, 0x81, 0x98, 0xe3, 0x98, 0xde, - 0x4d, 0xf7, 0x54, 0xa6, 0x77, 0x0f, 0x1e, 0x52, 0xef, 0x96, 0x0c, 0x70, 0xca, 0x0b, 0x6d, 0xc3, - 0x64, 0xc3, 0x7c, 0xc6, 0x4a, 0xdd, 0x66, 0x7a, 0xbe, 0x87, 0x67, 0xa4, 0x5a, 0xda, 0x1b, 0x17, - 0x4b, 0x59, 0x7e, 0xb8, 0xbd, 0x0a, 0xf4, 0x0a, 0x0c, 0xbd, 0x1b, 0xc6, 0xec, 0x58, 0x41, 0x6c, - 0x2c, 0xf2, 0xd6, 0xc8, 0xd0, 0x6b, 0x37, 0xea, 0x0c, 0xbe, 0xbf, 0x3b, 0x3b, 0x5c, 0x0b, 0x5d, - 0xf9, 0x17, 0xab, 0x02, 0xe8, 0x2b, 0x16, 0x9c, 0x34, 0xd6, 0x99, 0x6a, 0x39, 0x1c, 0xa6, 0xe5, - 0x8f, 0x8b, 0x9a, 0x4f, 0xae, 0x76, 0xe2, 0x89, 0x3b, 0x57, 0x65, 0xff, 0x36, 0x77, 0x61, 0x0a, - 0xa7, 0x06, 0x89, 0x5b, 0xfe, 0x71, 0xe4, 0x9b, 0xbf, 0x61, 0xf8, 0x5b, 0x1e, 0x80, 0x13, 0xfd, - 0x3f, 0x5b, 0xcc, 0x89, 0xbe, 0x46, 0xb6, 0x9a, 0xbe, 0x93, 0x1c, 0x47, 0x0c, 0xee, 0xe7, 0x61, - 0x28, 0x11, 0xb5, 0x15, 0x4b, 0x96, 0xaf, 0x35, 0x8f, 0x1d, 0x2e, 0xa8, 0x8d, 0x49, 0x42, 0xb1, - 0x62, 0x68, 0xff, 0x7b, 0xfe, 0x55, 0x24, 0xe6, 0x18, 0x3c, 0x05, 0xd7, 0x4d, 0x4f, 0xc1, 0x33, - 0x85, 0xfb, 0xd2, 0xc5, 0x63, 0xf0, 0x03, 0xb3, 0x07, 0xcc, 0x7e, 0xf8, 0xe9, 0x39, 0xe5, 0xb1, - 0x7f, 0xc5, 0x82, 0xa9, 0x4e, 0x87, 0xe2, 0x54, 0xc1, 0xe0, 0xd6, 0x8b, 0x3a, 0xff, 0x52, 0xa3, - 0x7a, 0x4b, 0xc0, 0xb1, 0xa2, 0x28, 0x9c, 0xbd, 0xba, 0xb7, 0x04, 0x4b, 0x37, 0xc0, 0x7c, 0x10, - 0x0d, 0xbd, 0xca, 0x43, 0xee, 0x2d, 0xf5, 0x62, 0x59, 0x6f, 0xe1, 0xf6, 0xf6, 0xaf, 0x97, 0x60, - 0x8a, 0x3b, 0xa1, 0x17, 0xb6, 0x43, 0xcf, 0xad, 0x85, 0xae, 0xb8, 0x80, 0xe0, 0xc2, 0x48, 0x53, - 0x33, 0x3e, 0x8b, 0x25, 0x6c, 0xd1, 0xcd, 0xd5, 0x54, 0xe1, 0xd7, 0xa1, 0xd8, 0xe0, 0x4a, 0x6b, - 0x21, 0xdb, 0x5e, 0x43, 0xf9, 0x34, 0x4b, 0x3d, 0xef, 0x0c, 0xaa, 0x96, 0x65, 0x8d, 0x0f, 0x36, - 0xb8, 0x1e, 0xc1, 0xa3, 0x13, 0xf6, 0x3f, 0xb2, 0xe0, 0x91, 0x2e, 0x49, 0x5d, 0x68, 0x75, 0xf7, - 0x98, 0xe3, 0x5f, 0xbc, 0xb8, 0xa7, 0xaa, 0xe3, 0xc7, 0x01, 0x58, 0x60, 0xd1, 0x1d, 0x00, 0xee, - 0xce, 0x67, 0xef, 0xaf, 0x97, 0x8a, 0x44, 0x0d, 0xb5, 0xa5, 0x4e, 0xd0, 0x6e, 0xd5, 0xab, 0x17, - 0xd7, 0x35, 0xae, 0xf6, 0xb7, 0xcb, 0xd0, 0xcf, 0x1f, 0x76, 0xae, 0xc1, 0xe0, 0x26, 0x4f, 0x32, - 0xdb, 0x5b, 0x8e, 0xdb, 0xd4, 0xb8, 0xe0, 0x00, 0x2c, 0xd9, 0xa0, 0x6b, 0x70, 0x82, 0xee, 0x2c, - 0x9e, 0xe3, 0x57, 0x89, 0xef, 0xec, 0x48, 0x6b, 0x95, 0xbf, 0x44, 0x20, 0x53, 0x66, 0x9f, 0x58, - 0x6d, 0x27, 0xc1, 0x9d, 0xca, 0xa1, 0x57, 0xdb, 0x72, 0xc2, 0xf1, 0xe4, 0xbd, 0x4a, 0x53, 0x3d, - 0x38, 0x2f, 0x1c, 0xd5, 0xa7, 0x9b, 0x6d, 0x76, 0xb9, 0xf6, 0x7e, 0xae, 0x69, 0x8b, 0x9b, 0xb4, - 0x2c, 0xb6, 0xa0, 0xc5, 0x62, 0x2a, 0xd6, 0x36, 0x23, 0x12, 0x6f, 0x86, 0xbe, 0x2b, 0x9e, 0x7e, - 0x4c, 0x63, 0x0b, 0x32, 0x78, 0xdc, 0x56, 0x82, 0x72, 0x59, 0x77, 0x3c, 0xbf, 0x15, 0x91, 0x94, - 0xcb, 0x80, 0xc9, 0x65, 0x25, 0x83, 0xc7, 0x6d, 0x25, 0xe8, 0xdc, 0x3a, 0x29, 0x5e, 0x0b, 0x94, - 0x57, 0x98, 0x85, 0x08, 0xfa, 0x1c, 0x0c, 0xca, 0x40, 0xf6, 0x42, 0x99, 0x36, 0x44, 0xe0, 0x80, - 0x7a, 0x79, 0x50, 0x7b, 0x99, 0x4a, 0x84, 0xb0, 0x4b, 0x7e, 0x87, 0x79, 0x95, 0xee, 0x4f, 0x2d, - 0x38, 0xd1, 0x21, 0x20, 0x8b, 0x8b, 0xb4, 0x0d, 0x2f, 0x4e, 0x54, 0x5e, 0x7c, 0x4d, 0xa4, 0x71, - 0x38, 0x56, 0x14, 0x74, 0xb5, 0x70, 0xa1, 0x99, 0x15, 0x94, 0x22, 0x04, 0x44, 0x60, 0x7b, 0x13, - 0x94, 0xe8, 0x0c, 0xf4, 0xb5, 0x62, 0x12, 0xc9, 0x27, 0xe2, 0xa4, 0x9c, 0x67, 0x7e, 0x40, 0x86, - 0xa1, 0x6a, 0xeb, 0x86, 0x72, 0xc1, 0x69, 0x6a, 0x2b, 0x77, 0xc2, 0x71, 0x9c, 0xfd, 0x8d, 0x32, - 0x8c, 0x67, 0x02, 0x33, 0x69, 0x43, 0xb6, 0xc2, 0xc0, 0x4b, 0x42, 0x95, 0xfd, 0x8c, 0xbf, 0x4a, - 0x45, 0x9a, 0x9b, 0xd7, 0x04, 0x1c, 0x2b, 0x0a, 0xf4, 0xb4, 0x7c, 0x15, 0x34, 0x9b, 0xef, 0x7f, - 0xb1, 0x6a, 0x3c, 0x0c, 0x5a, 0xf4, 0xad, 0x8e, 0x27, 0xa1, 0xaf, 0x19, 0xaa, 0x47, 0x9e, 0xd5, - 0xf7, 0xc4, 0x8b, 0xd5, 0x5a, 0x18, 0xfa, 0x98, 0x21, 0xd1, 0x53, 0xa2, 0xf7, 0x99, 0x93, 0x0b, - 0xec, 0xb8, 0x61, 0xac, 0x0d, 0xc1, 0x33, 0x30, 0x78, 0x97, 0xec, 0x44, 0x5e, 0xb0, 0x91, 0x3d, - 0xb7, 0xb9, 0xc2, 0xc1, 0x58, 0xe2, 0xcd, 0xf7, 0x38, 0x06, 0x8f, 0xf8, 0x3d, 0x8e, 0xa1, 0xdc, - 0x7d, 0xf0, 0xbb, 0x16, 0x8c, 0xb3, 0x94, 0xa0, 0xe2, 0x02, 0xbd, 0x17, 0x06, 0xc7, 0xa0, 0x63, - 0x3c, 0x09, 0xfd, 0x11, 0xad, 0x34, 0x9b, 0x50, 0x9f, 0xb5, 0x04, 0x73, 0x1c, 0x7a, 0x0c, 0xfa, - 0x58, 0x13, 0xe8, 0x67, 0x1c, 0xe1, 0x99, 0xc7, 0xab, 0x4e, 0xe2, 0x60, 0x06, 0x65, 0x77, 0xa1, - 0x30, 0x69, 0xfa, 0x1e, 0x6f, 0x74, 0xea, 0x6e, 0x7d, 0xd8, 0xee, 0x42, 0x75, 0x6c, 0xe4, 0x83, - 0xba, 0x0b, 0xd5, 0x99, 0xf9, 0xc1, 0x7a, 0xfe, 0xff, 0x2a, 0xc1, 0xe9, 0x8e, 0xe5, 0xd2, 0x13, - 0xe0, 0x15, 0xe3, 0x04, 0xf8, 0x42, 0xe6, 0x04, 0xd8, 0x3e, 0xb8, 0xf4, 0x83, 0x39, 0x13, 0xee, - 0x7c, 0x54, 0x5b, 0x3e, 0xc6, 0xa3, 0xda, 0xbe, 0xa2, 0x2a, 0x4e, 0x7f, 0x8e, 0x8a, 0xf3, 0xfb, - 0x16, 0x3c, 0xda, 0x71, 0xc8, 0x1e, 0xba, 0xcb, 0x67, 0x1d, 0x5b, 0xd9, 0xc5, 0x3a, 0xf9, 0xe5, - 0x72, 0x97, 0x5e, 0x31, 0x3b, 0xe5, 0x2c, 0x95, 0x42, 0x0c, 0x19, 0x0b, 0xe5, 0x6d, 0x84, 0x4b, - 0x20, 0x0e, 0xc3, 0x0a, 0x8b, 0x62, 0xed, 0xf2, 0x16, 0x6f, 0xe4, 0xf2, 0x21, 0x17, 0xd4, 0x9c, - 0xe9, 0x27, 0xd7, 0xb3, 0x02, 0x64, 0xaf, 0x74, 0xdd, 0xd6, 0x2c, 0xcf, 0xf2, 0x61, 0x2c, 0xcf, - 0x91, 0xce, 0x56, 0x27, 0x5a, 0x80, 0xf1, 0x2d, 0x2f, 0x60, 0xcf, 0x78, 0x9a, 0xda, 0x93, 0xba, - 0x41, 0x7b, 0xcd, 0x44, 0xe3, 0x2c, 0xfd, 0xcc, 0x2b, 0x30, 0x7a, 0x78, 0xef, 0xda, 0xfb, 0x65, - 0xf8, 0xf0, 0x01, 0x42, 0x81, 0xef, 0x0e, 0xc6, 0x77, 0xd1, 0x76, 0x87, 0xb6, 0x6f, 0x53, 0x83, - 0xa9, 0xf5, 0x96, 0xef, 0xef, 0xb0, 0xf8, 0x29, 0xe2, 0x4a, 0x0a, 0xa1, 0xd4, 0xa8, 0xf7, 0xc2, - 0x57, 0x3a, 0xd0, 0xe0, 0x8e, 0x25, 0xd1, 0x67, 0x01, 0x85, 0x77, 0x58, 0xd2, 0x5c, 0x37, 0xcd, - 0x7a, 0xc0, 0x3e, 0x41, 0x39, 0x5d, 0xaa, 0x37, 0xda, 0x28, 0x70, 0x87, 0x52, 0x54, 0x4f, 0x65, - 0x4f, 0x8d, 0xab, 0x66, 0x65, 0xf4, 0x54, 0xac, 0x23, 0xb1, 0x49, 0x8b, 0x2e, 0xc1, 0xa4, 0xb3, - 0xed, 0x78, 0x3c, 0x09, 0x96, 0x64, 0xc0, 0x15, 0x55, 0xe5, 0xbf, 0x5a, 0xc8, 0x12, 0xe0, 0xf6, - 0x32, 0xa8, 0x69, 0x38, 0x24, 0x79, 0xba, 0xfc, 0x4f, 0x1d, 0x62, 0x06, 0x17, 0x76, 0x51, 0xda, - 0xff, 0xc3, 0xa2, 0x5b, 0x5f, 0x87, 0x17, 0x1f, 0xe9, 0x88, 0x28, 0x07, 0x9b, 0x76, 0x19, 0x4d, - 0x8d, 0xc8, 0x92, 0x8e, 0xc4, 0x26, 0x2d, 0x9f, 0x1a, 0x71, 0x1a, 0xce, 0x6d, 0x68, 0x9b, 0xe2, - 0x1e, 0xa7, 0xa2, 0xa0, 0x1a, 0xb4, 0xeb, 0x6d, 0x7b, 0x71, 0x18, 0x89, 0x05, 0xd4, 0x63, 0x70, - 0x6f, 0x2a, 0x2f, 0xab, 0x9c, 0x0d, 0x96, 0xfc, 0xec, 0x6f, 0x96, 0x60, 0x54, 0xd6, 0xf8, 0x5a, - 0x2b, 0x4c, 0x9c, 0x63, 0xd8, 0xd2, 0x5f, 0x33, 0xb6, 0xf4, 0xf9, 0x62, 0xd7, 0x5a, 0x59, 0xe3, - 0xba, 0x6e, 0xe5, 0x9f, 0xcb, 0x6c, 0xe5, 0xe7, 0x7b, 0x61, 0x7a, 0xf0, 0x16, 0xfe, 0x1f, 0x2d, - 0x98, 0x34, 0xe8, 0x8f, 0x61, 0x27, 0xa9, 0x99, 0x3b, 0xc9, 0x73, 0x3d, 0xf4, 0xa6, 0xcb, 0x0e, - 0xf2, 0x9d, 0x52, 0xa6, 0x17, 0x6c, 0xe7, 0xf8, 0x12, 0xf4, 0x6d, 0x3a, 0x91, 0x5b, 0x2c, 0x23, - 0x64, 0x5b, 0xf1, 0xb9, 0xcb, 0x4e, 0xe4, 0x72, 0xf9, 0x7f, 0x4e, 0xbd, 0x47, 0xe5, 0x44, 0x6e, - 0xee, 0x2d, 0x07, 0x56, 0x29, 0xba, 0x08, 0x03, 0x71, 0x23, 0x6c, 0xaa, 0x38, 0xd0, 0x33, 0xfc, - 0xad, 0x2a, 0x0a, 0xd9, 0xdf, 0x9d, 0x45, 0x66, 0x75, 0x14, 0x8c, 0x05, 0xfd, 0xcc, 0x06, 0x54, - 0x54, 0xd5, 0x47, 0x1a, 0x09, 0xff, 0x3f, 0xcb, 0x70, 0xa2, 0xc3, 0x5c, 0x41, 0x5f, 0x36, 0xc6, - 0xed, 0x95, 0x9e, 0x27, 0xdb, 0x07, 0x1c, 0xb9, 0x2f, 0x33, 0x4b, 0xc9, 0x15, 0xb3, 0xe3, 0x10, - 0xd5, 0xdf, 0x8c, 0x49, 0xb6, 0x7a, 0x0a, 0xca, 0xaf, 0x9e, 0x56, 0x7b, 0x6c, 0xc3, 0x4f, 0x2b, - 0x52, 0x2d, 0x3d, 0xd2, 0xef, 0xfc, 0x37, 0xfa, 0x60, 0xaa, 0xd3, 0xfd, 0x79, 0xf4, 0x35, 0x2b, - 0xf3, 0xec, 0xc3, 0xab, 0xbd, 0x5f, 0xc2, 0xe7, 0x6f, 0x41, 0x88, 0x9c, 0x33, 0x73, 0xe6, 0x43, - 0x10, 0xb9, 0x23, 0x2e, 0x6a, 0x67, 0xf7, 0x93, 0x22, 0xfe, 0x84, 0x87, 0x94, 0x0a, 0x9f, 0x39, - 0x44, 0x53, 0xc4, 0x2b, 0x20, 0x71, 0xe6, 0x7e, 0x92, 0x04, 0xe7, 0xdf, 0x4f, 0x92, 0x6d, 0x98, - 0xf1, 0x60, 0x58, 0xeb, 0xd7, 0x91, 0x4e, 0x83, 0xbb, 0x74, 0x8b, 0xd2, 0xda, 0x7d, 0xa4, 0x53, - 0xe1, 0xef, 0x5b, 0x90, 0x09, 0xda, 0x52, 0x6e, 0x19, 0xab, 0xab, 0x5b, 0xe6, 0x0c, 0xf4, 0x45, - 0xa1, 0x4f, 0xb2, 0x4f, 0x12, 0xe0, 0xd0, 0x27, 0x98, 0x61, 0xd4, 0x13, 0xb5, 0xe5, 0x6e, 0x4f, - 0xd4, 0x52, 0x3b, 0xdd, 0x27, 0xdb, 0x44, 0x3a, 0x49, 0x94, 0x18, 0xbf, 0x4a, 0x81, 0x98, 0xe3, - 0xec, 0xdf, 0x2b, 0xc3, 0x00, 0xf7, 0x44, 0x1c, 0xc3, 0x3e, 0x5d, 0x13, 0x4e, 0x81, 0x42, 0x77, - 0xd2, 0x79, 0xab, 0xe6, 0xaa, 0x4e, 0xe2, 0xf0, 0xc9, 0xa5, 0xfa, 0x98, 0x3a, 0x12, 0xd0, 0x9c, - 0x31, 0x0a, 0x33, 0x19, 0x5b, 0x17, 0x38, 0x0f, 0x6d, 0x4c, 0x36, 0x01, 0x62, 0xf6, 0x24, 0x22, - 0xe5, 0x21, 0x32, 0x6f, 0xbe, 0x58, 0xa8, 0x1d, 0x75, 0x55, 0x8c, 0xb7, 0x26, 0x4d, 0xf7, 0xa7, - 0x10, 0x58, 0xe3, 0x3d, 0xf3, 0x32, 0x54, 0x14, 0x71, 0x9e, 0x11, 0x30, 0xa2, 0x4f, 0xce, 0xbf, - 0x02, 0xe3, 0x99, 0xba, 0x7a, 0xb2, 0x21, 0x7e, 0xcb, 0x82, 0xf1, 0xcc, 0x6b, 0xee, 0xe8, 0xab, - 0x16, 0x4c, 0xf9, 0x1d, 0x1c, 0x51, 0xe2, 0x33, 0x1f, 0xc6, 0x85, 0xa5, 0xcc, 0x87, 0x4e, 0x58, - 0xdc, 0xb1, 0x36, 0x6a, 0x56, 0xf2, 0x17, 0x5e, 0x1d, 0x5f, 0xc4, 0xc0, 0x8e, 0xf0, 0x9c, 0xc3, - 0x1c, 0x86, 0x15, 0xd6, 0xfe, 0x89, 0x05, 0x93, 0x6d, 0x0f, 0x86, 0x3f, 0x2c, 0xdd, 0x10, 0xd9, - 0x95, 0x4b, 0x5d, 0xb2, 0x2b, 0xeb, 0xbd, 0x2c, 0x1f, 0xd8, 0xcb, 0x5f, 0xb7, 0x40, 0xcc, 0xd0, - 0x63, 0xd0, 0x00, 0x57, 0x4d, 0x0d, 0xf0, 0x23, 0x45, 0x26, 0x7d, 0x17, 0xd5, 0xef, 0x97, 0x4a, - 0x30, 0xc1, 0x09, 0x52, 0x9f, 0xfa, 0xc3, 0xf2, 0x71, 0x7a, 0x7b, 0xf5, 0x43, 0x3d, 0xb5, 0xd8, - 0xb9, 0xa7, 0xc6, 0xb7, 0xec, 0x3b, 0xf0, 0x5b, 0xfe, 0xb9, 0x05, 0x88, 0x8f, 0x49, 0xf6, 0x79, - 0x5c, 0xee, 0xdc, 0xd5, 0x0c, 0xba, 0x54, 0x72, 0x28, 0x0c, 0xd6, 0xa8, 0x1e, 0x70, 0x17, 0x32, - 0x27, 0x1a, 0xe5, 0xfc, 0x13, 0x8d, 0x1e, 0x7a, 0xfd, 0xdb, 0x65, 0xc8, 0x06, 0xc3, 0xa1, 0xb7, - 0x61, 0xa4, 0xe1, 0x34, 0x9d, 0x3b, 0x9e, 0xef, 0x25, 0x1e, 0x89, 0x8b, 0x1d, 0x99, 0x2e, 0x69, - 0x25, 0xc4, 0x41, 0x82, 0x06, 0xc1, 0x06, 0x47, 0x34, 0x07, 0xd0, 0x8c, 0xbc, 0x6d, 0xcf, 0x27, - 0x1b, 0x4c, 0x67, 0x65, 0xd1, 0xf4, 0xfc, 0xf4, 0x4f, 0x42, 0xb1, 0x46, 0xd1, 0x21, 0xfa, 0xba, - 0x7c, 0x1c, 0xd1, 0xd7, 0x7d, 0x3d, 0x46, 0x5f, 0xf7, 0x17, 0x8a, 0xbe, 0xc6, 0x70, 0x4a, 0xfa, - 0xff, 0xe9, 0xff, 0x15, 0xcf, 0x27, 0x3c, 0xc9, 0xac, 0x88, 0xb6, 0x9f, 0xd9, 0xdb, 0x9d, 0x3d, - 0x85, 0x3b, 0x52, 0xe0, 0x2e, 0x25, 0xed, 0x16, 0x9c, 0xa8, 0x93, 0xc8, 0x63, 0xb9, 0xff, 0xdc, - 0x74, 0x2d, 0x7d, 0x01, 0x2a, 0x51, 0x66, 0x19, 0xf7, 0x78, 0xa5, 0x5a, 0xcb, 0x16, 0x25, 0x97, - 0x6d, 0xca, 0xd2, 0xfe, 0x5b, 0x25, 0x18, 0x14, 0x61, 0x70, 0xc7, 0xa0, 0x7c, 0x5c, 0x31, 0x9c, - 0x04, 0xcf, 0xe4, 0xc9, 0x3f, 0xd6, 0xac, 0xae, 0xee, 0x81, 0x7a, 0xc6, 0x3d, 0xf0, 0x5c, 0x31, - 0x76, 0x07, 0x3b, 0x06, 0xfe, 0x79, 0x19, 0xc6, 0xcc, 0xb0, 0xc0, 0x63, 0x18, 0x96, 0xd7, 0x61, - 0x30, 0x16, 0x11, 0xaa, 0xa5, 0x22, 0x51, 0x57, 0xd9, 0x4f, 0x9c, 0x9e, 0xa5, 0x8a, 0x98, 0x54, - 0xc9, 0xae, 0x63, 0x10, 0x6c, 0xf9, 0x58, 0x82, 0x60, 0xf3, 0xa2, 0x35, 0xfb, 0x1e, 0x44, 0xb4, - 0xa6, 0xfd, 0x43, 0x26, 0xf2, 0x75, 0xf8, 0x31, 0x6c, 0xe3, 0xaf, 0x99, 0x9b, 0xc3, 0xb9, 0x42, - 0xf3, 0x4e, 0x34, 0xaf, 0xcb, 0x76, 0xfe, 0x3d, 0x0b, 0x86, 0x05, 0xe1, 0x31, 0x74, 0xe0, 0xb3, - 0x66, 0x07, 0x9e, 0x2a, 0xd4, 0x81, 0x2e, 0x2d, 0xff, 0x66, 0x49, 0xb5, 0xbc, 0x26, 0x9e, 0x34, - 0xcf, 0xcd, 0x74, 0x3c, 0xd4, 0x8c, 0xc2, 0x24, 0x6c, 0x84, 0xbe, 0x50, 0xe0, 0x1e, 0x4b, 0x2f, - 0x57, 0x71, 0xf8, 0xbe, 0xf6, 0x1b, 0x2b, 0x6a, 0x76, 0xf7, 0x27, 0x8c, 0x12, 0xb1, 0x81, 0x76, - 0x7a, 0x50, 0xdd, 0x05, 0x48, 0x5f, 0xb1, 0x16, 0xf7, 0x12, 0x7b, 0x7f, 0xaa, 0x3d, 0xbd, 0x2d, - 0xa5, 0x78, 0x61, 0x8d, 0xaf, 0x0c, 0xc3, 0x67, 0x75, 0xf4, 0x9b, 0x67, 0x00, 0xd7, 0x05, 0x1c, - 0x2b, 0x0a, 0xfb, 0x65, 0x26, 0xd9, 0xd9, 0x00, 0xf5, 0x76, 0x91, 0xe9, 0x17, 0x07, 0xd4, 0xd0, - 0x32, 0xc7, 0xde, 0x75, 0xfd, 0xba, 0x54, 0x51, 0xf1, 0x49, 0x9b, 0xa0, 0x47, 0xc2, 0xa6, 0xb7, - 0xab, 0x10, 0x69, 0x3b, 0x38, 0x7a, 0xb9, 0xb0, 0x44, 0xee, 0xe1, 0xa8, 0x88, 0x25, 0x77, 0x63, - 0x19, 0xad, 0x56, 0x6b, 0xd9, 0xfc, 0xd4, 0x4b, 0x12, 0x81, 0x53, 0x1a, 0x34, 0x2f, 0x0c, 0x4a, - 0xf3, 0xc5, 0x7b, 0x69, 0x50, 0xca, 0x21, 0xd1, 0x2c, 0xca, 0xf3, 0x30, 0xac, 0x9e, 0xfc, 0xa8, - 0xf1, 0xc7, 0x16, 0x2a, 0x5c, 0xbf, 0x5a, 0x4e, 0xc1, 0x58, 0xa7, 0x41, 0xab, 0x70, 0xc2, 0x55, - 0xb7, 0x2e, 0x6a, 0xad, 0x3b, 0xbe, 0xd7, 0xa0, 0x45, 0xf9, 0x8d, 0xc9, 0x47, 0xf6, 0x76, 0x67, - 0x4f, 0x54, 0xdb, 0xd1, 0xb8, 0x53, 0x19, 0xb4, 0x06, 0xe3, 0x31, 0x7f, 0xda, 0x44, 0x86, 0xd6, - 0x8b, 0xb4, 0xad, 0xcf, 0xca, 0x13, 0xab, 0xba, 0x89, 0xde, 0x67, 0x20, 0x2e, 0x15, 0x64, 0x30, - 0x7e, 0x96, 0x05, 0x7a, 0x15, 0xc6, 0x7c, 0xfd, 0xdd, 0xc6, 0x9a, 0xb8, 0x7c, 0xa2, 0x62, 0x90, - 0x8c, 0x57, 0x1d, 0x6b, 0x38, 0x43, 0x8d, 0x5e, 0x87, 0x69, 0x1d, 0x22, 0x32, 0xc1, 0x38, 0xc1, - 0x06, 0x89, 0xc5, 0x33, 0x08, 0x8f, 0xed, 0xed, 0xce, 0x4e, 0x5f, 0xed, 0x42, 0x83, 0xbb, 0x96, - 0x46, 0x17, 0x61, 0x44, 0x8e, 0xa4, 0x76, 0x11, 0x25, 0x8d, 0x7e, 0xd3, 0x70, 0xd8, 0xa0, 0xfc, - 0x60, 0x07, 0x73, 0x5f, 0xa2, 0x85, 0xb5, 0x2d, 0x1c, 0xbd, 0x03, 0x23, 0x7a, 0x1b, 0xb3, 0x7b, - 0x73, 0xfe, 0x5b, 0x98, 0x42, 0x15, 0x50, 0x2d, 0xd7, 0x71, 0xd8, 0xe0, 0x6d, 0xdf, 0x80, 0x81, - 0xfa, 0x4e, 0xdc, 0x48, 0xfc, 0x02, 0xf2, 0xed, 0x49, 0xa3, 0x0b, 0xe9, 0xda, 0x63, 0xef, 0xf2, - 0x88, 0x1e, 0xd9, 0x04, 0xc6, 0xd7, 0x96, 0x6a, 0xfc, 0xd5, 0xff, 0x05, 0x6e, 0xbd, 0x61, 0x21, - 0xdd, 0xac, 0x43, 0x4a, 0xad, 0x0e, 0xf2, 0xd0, 0xfe, 0x13, 0x0b, 0xfa, 0xd9, 0x9b, 0x32, 0x79, - 0xef, 0x11, 0x15, 0x69, 0x34, 0x7a, 0x09, 0x06, 0xc8, 0xfa, 0x3a, 0x69, 0x24, 0x62, 0x19, 0xcb, - 0x68, 0xef, 0x81, 0x65, 0x06, 0xa5, 0x8b, 0x93, 0x55, 0xc6, 0xff, 0x62, 0x41, 0x8c, 0x3e, 0x0f, - 0x95, 0xc4, 0xdb, 0x22, 0x0b, 0xae, 0x4b, 0xdc, 0x43, 0xdc, 0x15, 0x57, 0xc2, 0x62, 0x4d, 0x32, - 0xc1, 0x29, 0x3f, 0xfb, 0xbd, 0x12, 0x40, 0x7a, 0xd7, 0x22, 0xaf, 0x9b, 0x8b, 0x6d, 0xcf, 0x2e, - 0x3d, 0xdd, 0xe1, 0xd9, 0x25, 0x94, 0x32, 0xec, 0xf0, 0xe8, 0x92, 0x1a, 0xaa, 0x72, 0xa1, 0xa1, - 0xea, 0xeb, 0x65, 0xa8, 0x96, 0x60, 0x32, 0xbd, 0x2b, 0x62, 0x5e, 0xba, 0x63, 0x49, 0x18, 0xd7, - 0xb2, 0x48, 0xdc, 0x4e, 0x6f, 0xbf, 0x67, 0x81, 0x08, 0x59, 0x2b, 0x30, 0x5b, 0x5d, 0xf9, 0x44, - 0x8a, 0x91, 0x87, 0xea, 0xd9, 0x22, 0xd1, 0x7c, 0x22, 0xfb, 0x94, 0x5a, 0x3f, 0x46, 0xce, 0x29, - 0x83, 0xab, 0xfd, 0x1b, 0x16, 0x0c, 0x73, 0xf4, 0x35, 0xa6, 0x53, 0xe7, 0xb7, 0xab, 0xa7, 0x0c, - 0x9f, 0xec, 0xf5, 0x10, 0xca, 0x58, 0x65, 0x7a, 0xd4, 0x5f, 0x0f, 0x91, 0x08, 0x9c, 0xd2, 0xa0, - 0x67, 0x60, 0x30, 0x6e, 0xdd, 0x61, 0xe4, 0x99, 0xf8, 0xb5, 0x3a, 0x07, 0x63, 0x89, 0xb7, 0xff, - 0x65, 0x09, 0x26, 0xb2, 0xe1, 0x8b, 0x08, 0xc3, 0x00, 0xd7, 0xb1, 0xb3, 0xea, 0xd9, 0x41, 0xbe, - 0x1c, 0x2d, 0xfc, 0x11, 0xf8, 0x1b, 0xb8, 0x2c, 0xe6, 0x4c, 0x70, 0x42, 0xeb, 0x30, 0xec, 0x86, - 0xf7, 0x82, 0x7b, 0x4e, 0xe4, 0x2e, 0xd4, 0x56, 0xc5, 0x97, 0xc8, 0x09, 0x38, 0xa9, 0xa6, 0x05, - 0xf4, 0xe0, 0x4a, 0xe6, 0x5b, 0x48, 0x51, 0x58, 0x67, 0x4c, 0x6d, 0xca, 0x46, 0x18, 0xac, 0x7b, - 0x1b, 0xd7, 0x9c, 0x66, 0xb1, 0xa3, 0xd5, 0x25, 0x49, 0xae, 0xd5, 0x31, 0x2a, 0x6e, 0xd9, 0x73, - 0x04, 0x4e, 0x59, 0xda, 0x7f, 0x70, 0x02, 0x8c, 0xb9, 0x60, 0xa4, 0xe1, 0xb4, 0x1e, 0x78, 0x1a, - 0xce, 0x37, 0x61, 0x88, 0x6c, 0x35, 0x93, 0x9d, 0xaa, 0x17, 0x15, 0x4b, 0xaa, 0xbc, 0x2c, 0xa8, - 0xdb, 0xb9, 0x4b, 0x0c, 0x56, 0x1c, 0xbb, 0x24, 0x55, 0x2d, 0x3f, 0x14, 0x49, 0x55, 0xfb, 0xfe, - 0x42, 0x92, 0xaa, 0xbe, 0x0e, 0x83, 0x1b, 0x5e, 0x82, 0x49, 0x33, 0x14, 0x69, 0x0b, 0x72, 0x26, - 0xcf, 0x25, 0x4e, 0xdc, 0x9e, 0x29, 0x51, 0x20, 0xb0, 0x64, 0x87, 0xd6, 0xd4, 0xa2, 0x1a, 0x28, - 0xb2, 0x97, 0xb7, 0xfb, 0xfa, 0x3a, 0x2e, 0x2b, 0x91, 0x44, 0x75, 0xf0, 0x83, 0x27, 0x51, 0x55, - 0xa9, 0x4f, 0x87, 0x1e, 0x54, 0xea, 0x53, 0x23, 0x85, 0x6c, 0xe5, 0x28, 0x52, 0xc8, 0xbe, 0x67, - 0xc1, 0xc9, 0x66, 0xa7, 0x04, 0xcc, 0x22, 0x89, 0xe9, 0xa7, 0x0f, 0x91, 0x92, 0xda, 0xa8, 0x9a, - 0x5d, 0x06, 0xef, 0x48, 0x86, 0x3b, 0x57, 0x2c, 0x73, 0xd1, 0x0e, 0x7f, 0xf0, 0x5c, 0xb4, 0x47, - 0x9d, 0xed, 0x34, 0xcd, 0x4c, 0x3b, 0x7a, 0x24, 0x99, 0x69, 0xc7, 0x1e, 0x60, 0x66, 0x5a, 0x2d, - 0xa7, 0xec, 0xf8, 0x83, 0xcd, 0x29, 0xbb, 0x69, 0xee, 0x4b, 0x3c, 0x85, 0xe9, 0x4b, 0x85, 0xf7, - 0x25, 0xa3, 0x86, 0x83, 0x77, 0x26, 0x9e, 0x5d, 0x77, 0xf2, 0x03, 0x66, 0xd7, 0x35, 0x72, 0xd4, - 0xa2, 0xa3, 0xc8, 0x51, 0xfb, 0xb6, 0xbe, 0x83, 0x9e, 0x28, 0x52, 0x83, 0xda, 0x28, 0xdb, 0x6b, - 0xe8, 0xb4, 0x87, 0xb6, 0x67, 0xc1, 0x9d, 0x3a, 0xee, 0x2c, 0xb8, 0x27, 0x8f, 0x30, 0x0b, 0xee, - 0xa9, 0x63, 0xcd, 0x82, 0xfb, 0xc8, 0x43, 0x92, 0x05, 0x77, 0xfa, 0x28, 0xb3, 0xe0, 0xd2, 0x01, - 0x6e, 0xca, 0xab, 0x3a, 0xd3, 0x8f, 0x16, 0x19, 0xe0, 0x8e, 0x37, 0x7b, 0xf8, 0x00, 0x2b, 0x14, - 0x4e, 0x99, 0xda, 0x7f, 0x0d, 0x4e, 0x1f, 0x3c, 0xc1, 0xd2, 0xb7, 0x27, 0x6a, 0xa9, 0x67, 0x2b, - 0xf3, 0xf6, 0x04, 0x53, 0xde, 0x34, 0xaa, 0xc2, 0x69, 0x3a, 0xbf, 0x63, 0xc1, 0x23, 0x5d, 0xb2, - 0xd8, 0x15, 0xbe, 0xe7, 0xd6, 0x84, 0xf1, 0xa6, 0x59, 0xb4, 0xf0, 0xb5, 0x59, 0x23, 0x6b, 0x9e, - 0x8a, 0x45, 0xce, 0x20, 0x70, 0x96, 0xfd, 0xe2, 0x47, 0x7e, 0xf4, 0xfe, 0xe9, 0x0f, 0xfd, 0xf8, - 0xfd, 0xd3, 0x1f, 0xfa, 0xa3, 0xf7, 0x4f, 0x7f, 0xe8, 0xe7, 0xf6, 0x4e, 0x5b, 0x3f, 0xda, 0x3b, - 0x6d, 0xfd, 0x78, 0xef, 0xb4, 0xf5, 0xa7, 0x7b, 0xa7, 0xad, 0xf7, 0x7e, 0x72, 0xfa, 0x43, 0x6f, - 0x94, 0xb6, 0xcf, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb2, 0xb1, 0xc5, 0x2d, 0xcc, 0xc5, - 0x00, 0x00, + 0x34, 0xf8, 0xb8, 0x77, 0x55, 0xfe, 0xc3, 0x8a, 0x0b, 0x7a, 0x05, 0x46, 0xc5, 0x15, 0x26, 0x11, + 0x6a, 0x78, 0xc2, 0x0c, 0x77, 0xaf, 0xeb, 0x48, 0x6c, 0xd2, 0xa2, 0x0d, 0x18, 0xa3, 0x5c, 0x52, + 0x01, 0x38, 0x3d, 0xd5, 0x9b, 0x0c, 0xd5, 0x12, 0x36, 0xeb, 0x6c, 0x70, 0x86, 0x2d, 0x72, 0xe1, + 0x31, 0xa7, 0x95, 0x84, 0x5b, 0x74, 0x25, 0x98, 0xeb, 0x64, 0x2d, 0xbc, 0x4b, 0x82, 0xe9, 0x93, + 0x6c, 0x06, 0x9e, 0xd9, 0xdb, 0x9d, 0x7d, 0x6c, 0xe1, 0x00, 0x3a, 0x7c, 0x20, 0x17, 0xf4, 0x16, + 0x0c, 0x27, 0xa1, 0x2f, 0x22, 0x88, 0xe3, 0xe9, 0x53, 0x45, 0x32, 0xcf, 0xac, 0xa9, 0x02, 0xba, + 0x1b, 0x43, 0x31, 0xc1, 0x3a, 0xc7, 0x99, 0x4f, 0xc3, 0x64, 0x9b, 0x48, 0xea, 0x29, 0xc8, 0xf2, + 0xbf, 0xf6, 0x43, 0x45, 0x79, 0xf4, 0xd0, 0xbc, 0xe9, 0xbc, 0x7d, 0x34, 0xeb, 0xbc, 0x1d, 0xa2, + 0x0a, 0x94, 0xee, 0xaf, 0xfd, 0x42, 0x87, 0x47, 0xb4, 0x9f, 0xcd, 0x5d, 0x83, 0xc5, 0xef, 0x3d, + 0xf5, 0xf0, 0xd4, 0x78, 0x6a, 0xd5, 0xf5, 0x1d, 0x68, 0xd5, 0x15, 0x7c, 0x18, 0x8e, 0xda, 0x6f, + 0xcd, 0xd0, 0x5d, 0xad, 0x65, 0xdf, 0x3d, 0xaa, 0x51, 0x20, 0xe6, 0x38, 0xa6, 0x77, 0xd3, 0x3d, + 0x95, 0xe9, 0xdd, 0x83, 0x87, 0xd4, 0xbb, 0x25, 0x03, 0x9c, 0xf2, 0x42, 0xdb, 0x30, 0xd9, 0x30, + 0x9f, 0xb1, 0x52, 0xb7, 0x99, 0x9e, 0xef, 0xe1, 0x19, 0xa9, 0x96, 0xf6, 0xc6, 0xc5, 0x52, 0x96, + 0x1f, 0x6e, 0xaf, 0x02, 0xbd, 0x02, 0x43, 0xef, 0x86, 0x31, 0x3b, 0x56, 0x10, 0x1b, 0x8b, 0xbc, + 0x35, 0x32, 0xf4, 0xda, 0x8d, 0x3a, 0x83, 0xef, 0xef, 0xce, 0x0e, 0xd7, 0x42, 0x57, 0xfe, 0xc5, + 0xaa, 0x00, 0xfa, 0x8a, 0x05, 0x27, 0x8d, 0x75, 0xa6, 0x5a, 0x0e, 0x87, 0x69, 0xf9, 0xe3, 0xa2, + 0xe6, 0x93, 0xab, 0x9d, 0x78, 0xe2, 0xce, 0x55, 0xd9, 0xbf, 0xcd, 0x5d, 0x98, 0xc2, 0xa9, 0x41, + 0xe2, 0x96, 0x7f, 0x1c, 0xf9, 0xe6, 0x6f, 0x18, 0xfe, 0x96, 0x07, 0xe0, 0x44, 0xff, 0xcf, 0x16, + 0x73, 0xa2, 0xaf, 0x91, 0xad, 0xa6, 0xef, 0x24, 0xc7, 0x11, 0x83, 0xfb, 0x79, 0x18, 0x4a, 0x44, + 0x6d, 0xc5, 0x92, 0xe5, 0x6b, 0xcd, 0x63, 0x87, 0x0b, 0x6a, 0x63, 0x92, 0x50, 0xac, 0x18, 0xda, + 0xff, 0x9e, 0x7f, 0x15, 0x89, 0x39, 0x06, 0x4f, 0xc1, 0x75, 0xd3, 0x53, 0xf0, 0x4c, 0xe1, 0xbe, + 0x74, 0xf1, 0x18, 0xfc, 0xc0, 0xec, 0x01, 0xb3, 0x1f, 0x7e, 0x7a, 0x4e, 0x79, 0xec, 0x5f, 0xb1, + 0x60, 0xaa, 0xd3, 0xa1, 0x38, 0x55, 0x30, 0xb8, 0xf5, 0xa2, 0xce, 0xbf, 0xd4, 0xa8, 0xde, 0x12, + 0x70, 0xac, 0x28, 0x0a, 0x67, 0xaf, 0xee, 0x2d, 0xc1, 0xd2, 0x0d, 0x30, 0x1f, 0x44, 0x43, 0xaf, + 0xf2, 0x90, 0x7b, 0x4b, 0xbd, 0x58, 0xd6, 0x5b, 0xb8, 0xbd, 0xfd, 0xeb, 0x25, 0x98, 0xe2, 0x4e, + 0xe8, 0x85, 0xed, 0xd0, 0x73, 0x6b, 0xa1, 0x2b, 0x2e, 0x20, 0xb8, 0x30, 0xd2, 0xd4, 0x8c, 0xcf, + 0x62, 0x09, 0x5b, 0x74, 0x73, 0x35, 0x55, 0xf8, 0x75, 0x28, 0x36, 0xb8, 0xd2, 0x5a, 0xc8, 0xb6, + 0xd7, 0x50, 0x3e, 0xcd, 0x52, 0xcf, 0x3b, 0x83, 0xaa, 0x65, 0x59, 0xe3, 0x83, 0x0d, 0xae, 0x47, + 0xf0, 0xe8, 0x84, 0xfd, 0x8f, 0x2c, 0x78, 0xa4, 0x4b, 0x52, 0x17, 0x5a, 0xdd, 0x3d, 0xe6, 0xf8, + 0x17, 0x2f, 0xee, 0xa9, 0xea, 0xf8, 0x71, 0x00, 0x16, 0x58, 0x74, 0x07, 0x80, 0xbb, 0xf3, 0xd9, + 0xfb, 0xeb, 0xa5, 0x22, 0x51, 0x43, 0x6d, 0xa9, 0x13, 0xb4, 0x5b, 0xf5, 0xea, 0xc5, 0x75, 0x8d, + 0xab, 0xfd, 0xed, 0x32, 0xf4, 0xf3, 0x87, 0x9d, 0x6b, 0x30, 0xb8, 0xc9, 0x93, 0xcc, 0xf6, 0x96, + 0xe3, 0x36, 0x35, 0x2e, 0x38, 0x00, 0x4b, 0x36, 0xe8, 0x1a, 0x9c, 0xa0, 0x3b, 0x8b, 0xe7, 0xf8, + 0x55, 0xe2, 0x3b, 0x3b, 0xd2, 0x5a, 0xe5, 0x2f, 0x11, 0xc8, 0x94, 0xd9, 0x27, 0x56, 0xdb, 0x49, + 0x70, 0xa7, 0x72, 0xe8, 0xd5, 0xb6, 0x9c, 0x70, 0x3c, 0x79, 0xaf, 0xd2, 0x54, 0x0f, 0xce, 0x0b, + 0x47, 0xf5, 0xe9, 0x66, 0x9b, 0x5d, 0xae, 0xbd, 0x9f, 0x6b, 0xda, 0xe2, 0x26, 0x2d, 0x8b, 0x2d, + 0x68, 0xb1, 0x98, 0x8a, 0xb5, 0xcd, 0x88, 0xc4, 0x9b, 0xa1, 0xef, 0x8a, 0xa7, 0x1f, 0xd3, 0xd8, + 0x82, 0x0c, 0x1e, 0xb7, 0x95, 0xa0, 0x5c, 0xd6, 0x1d, 0xcf, 0x6f, 0x45, 0x24, 0xe5, 0x32, 0x60, + 0x72, 0x59, 0xc9, 0xe0, 0x71, 0x5b, 0x09, 0x3a, 0xb7, 0x4e, 0x8a, 0xd7, 0x02, 0xe5, 0x15, 0x66, + 0x21, 0x82, 0x3e, 0x07, 0x83, 0x32, 0x90, 0xbd, 0x50, 0xa6, 0x0d, 0x11, 0x38, 0xa0, 0x5e, 0x1e, + 0xd4, 0x5e, 0xa6, 0x12, 0x21, 0xec, 0x92, 0xdf, 0x61, 0x5e, 0xa5, 0xfb, 0x53, 0x0b, 0x4e, 0x74, + 0x08, 0xc8, 0xe2, 0x22, 0x6d, 0xc3, 0x8b, 0x13, 0x95, 0x17, 0x5f, 0x13, 0x69, 0x1c, 0x8e, 0x15, + 0x05, 0x5d, 0x2d, 0x5c, 0x68, 0x66, 0x05, 0xa5, 0x08, 0x01, 0x11, 0xd8, 0xde, 0x04, 0x25, 0x3a, + 0x03, 0x7d, 0xad, 0x98, 0x44, 0xf2, 0x89, 0x38, 0x29, 0xe7, 0x99, 0x1f, 0x90, 0x61, 0xa8, 0xda, + 0xba, 0xa1, 0x5c, 0x70, 0x9a, 0xda, 0xca, 0x9d, 0x70, 0x1c, 0x67, 0x7f, 0xa3, 0x0c, 0xe3, 0x99, + 0xc0, 0x4c, 0xda, 0x90, 0xad, 0x30, 0xf0, 0x92, 0x50, 0x65, 0x3f, 0xe3, 0xaf, 0x52, 0x91, 0xe6, + 0xe6, 0x35, 0x01, 0xc7, 0x8a, 0x02, 0x3d, 0x2d, 0x5f, 0x05, 0xcd, 0xe6, 0xfb, 0x5f, 0xac, 0x1a, + 0x0f, 0x83, 0x16, 0x7d, 0xab, 0xe3, 0x49, 0xe8, 0x6b, 0x86, 0xea, 0x91, 0x67, 0xf5, 0x3d, 0xf1, + 0x62, 0xb5, 0x16, 0x86, 0x3e, 0x66, 0x48, 0xf4, 0x94, 0xe8, 0x7d, 0xe6, 0xe4, 0x02, 0x3b, 0x6e, + 0x18, 0x6b, 0x43, 0xf0, 0x0c, 0x0c, 0xde, 0x25, 0x3b, 0x91, 0x17, 0x6c, 0x64, 0xcf, 0x6d, 0xae, + 0x70, 0x30, 0x96, 0x78, 0xf3, 0x3d, 0x8e, 0xc1, 0x23, 0x7e, 0x8f, 0x63, 0x28, 0x77, 0x1f, 0xfc, + 0xae, 0x05, 0xe3, 0x2c, 0x25, 0xa8, 0xb8, 0x40, 0xef, 0x85, 0xc1, 0x31, 0xe8, 0x18, 0x4f, 0x42, + 0x7f, 0x44, 0x2b, 0xcd, 0x26, 0xd4, 0x67, 0x2d, 0xc1, 0x1c, 0x87, 0x1e, 0x83, 0x3e, 0xd6, 0x04, + 0xfa, 0x19, 0x47, 0x78, 0xe6, 0xf1, 0xaa, 0x93, 0x38, 0x98, 0x41, 0xd9, 0x5d, 0x28, 0x4c, 0x9a, + 0xbe, 0xc7, 0x1b, 0x9d, 0xba, 0x5b, 0x1f, 0xb6, 0xbb, 0x50, 0x1d, 0x1b, 0xf9, 0xa0, 0xee, 0x42, + 0x75, 0x66, 0x7e, 0xb0, 0x9e, 0xff, 0xbf, 0x4a, 0x70, 0xba, 0x63, 0xb9, 0xf4, 0x04, 0x78, 0xc5, + 0x38, 0x01, 0xbe, 0x90, 0x39, 0x01, 0xb6, 0x0f, 0x2e, 0xfd, 0x60, 0xce, 0x84, 0x3b, 0x1f, 0xd5, + 0x96, 0x8f, 0xf1, 0xa8, 0xb6, 0xaf, 0xa8, 0x8a, 0xd3, 0x9f, 0xa3, 0xe2, 0xfc, 0xbe, 0x05, 0x8f, + 0x76, 0x1c, 0xb2, 0x87, 0xee, 0xf2, 0x59, 0xc7, 0x56, 0x76, 0xb1, 0x4e, 0x7e, 0xb9, 0xdc, 0xa5, + 0x57, 0xcc, 0x4e, 0x39, 0x4b, 0xa5, 0x10, 0x43, 0xc6, 0x42, 0x79, 0x1b, 0xe1, 0x12, 0x88, 0xc3, + 0xb0, 0xc2, 0xa2, 0x58, 0xbb, 0xbc, 0xc5, 0x1b, 0xb9, 0x7c, 0xc8, 0x05, 0x35, 0x67, 0xfa, 0xc9, + 0xf5, 0xac, 0x00, 0xd9, 0x2b, 0x5d, 0xb7, 0x35, 0xcb, 0xb3, 0x7c, 0x18, 0xcb, 0x73, 0xa4, 0xb3, + 0xd5, 0x89, 0x16, 0x60, 0x7c, 0xcb, 0x0b, 0xd8, 0x33, 0x9e, 0xa6, 0xf6, 0xa4, 0x6e, 0xd0, 0x5e, + 0x33, 0xd1, 0x38, 0x4b, 0x3f, 0xf3, 0x0a, 0x8c, 0x1e, 0xde, 0xbb, 0xf6, 0x7e, 0x19, 0x3e, 0x7c, + 0x80, 0x50, 0xe0, 0xbb, 0x83, 0xf1, 0x5d, 0xb4, 0xdd, 0xa1, 0xed, 0xdb, 0xd4, 0x60, 0x6a, 0xbd, + 0xe5, 0xfb, 0x3b, 0x2c, 0x7e, 0x8a, 0xb8, 0x92, 0x42, 0x28, 0x35, 0xea, 0xbd, 0xf0, 0x95, 0x0e, + 0x34, 0xb8, 0x63, 0x49, 0xf4, 0x59, 0x40, 0xe1, 0x1d, 0x96, 0x34, 0xd7, 0x4d, 0xb3, 0x1e, 0xb0, + 0x4f, 0x50, 0x4e, 0x97, 0xea, 0x8d, 0x36, 0x0a, 0xdc, 0xa1, 0x14, 0xd5, 0x53, 0xd9, 0x53, 0xe3, + 0xaa, 0x59, 0x19, 0x3d, 0x15, 0xeb, 0x48, 0x6c, 0xd2, 0xa2, 0x4b, 0x30, 0xe9, 0x6c, 0x3b, 0x1e, + 0x4f, 0x82, 0x25, 0x19, 0x70, 0x45, 0x55, 0xf9, 0xaf, 0x16, 0xb2, 0x04, 0xb8, 0xbd, 0x0c, 0x6a, + 0x1a, 0x0e, 0x49, 0x9e, 0x2e, 0xff, 0x53, 0x87, 0x98, 0xc1, 0x85, 0x5d, 0x94, 0xf6, 0xff, 0xb0, + 0xe8, 0xd6, 0xd7, 0xe1, 0xc5, 0x47, 0x3a, 0x22, 0xca, 0xc1, 0xa6, 0x5d, 0x46, 0x53, 0x23, 0xb2, + 0xa4, 0x23, 0xb1, 0x49, 0xcb, 0xa7, 0x46, 0x9c, 0x86, 0x73, 0x1b, 0xda, 0xa6, 0xb8, 0xc7, 0xa9, + 0x28, 0xa8, 0x06, 0xed, 0x7a, 0xdb, 0x5e, 0x1c, 0x46, 0x62, 0x01, 0xf5, 0x18, 0xdc, 0x9b, 0xca, + 0xcb, 0x2a, 0x67, 0x83, 0x25, 0x3f, 0xfb, 0x9b, 0x25, 0x18, 0x95, 0x35, 0xbe, 0xd6, 0x0a, 0x13, + 0xe7, 0x18, 0xb6, 0xf4, 0xd7, 0x8c, 0x2d, 0x7d, 0xbe, 0xd8, 0xb5, 0x56, 0xd6, 0xb8, 0xae, 0x5b, + 0xf9, 0xe7, 0x32, 0x5b, 0xf9, 0xf9, 0x5e, 0x98, 0x1e, 0xbc, 0x85, 0xff, 0x47, 0x0b, 0x26, 0x0d, + 0xfa, 0x63, 0xd8, 0x49, 0x6a, 0xe6, 0x4e, 0xf2, 0x5c, 0x0f, 0xbd, 0xe9, 0xb2, 0x83, 0x7c, 0xa7, + 0x94, 0xe9, 0x05, 0xdb, 0x39, 0xbe, 0x04, 0x7d, 0x9b, 0x4e, 0xe4, 0x16, 0xcb, 0x08, 0xd9, 0x56, + 0x7c, 0xee, 0xb2, 0x13, 0xb9, 0x5c, 0xfe, 0x9f, 0x53, 0xef, 0x51, 0x39, 0x91, 0x9b, 0x7b, 0xcb, + 0x81, 0x55, 0x8a, 0x2e, 0xc2, 0x40, 0xdc, 0x08, 0x9b, 0x2a, 0x0e, 0xf4, 0x0c, 0x7f, 0xab, 0x8a, + 0x42, 0xf6, 0x77, 0x67, 0x91, 0x59, 0x1d, 0x05, 0x63, 0x41, 0x3f, 0xb3, 0x01, 0x15, 0x55, 0xf5, + 0x91, 0x46, 0xc2, 0xff, 0xcf, 0x32, 0x9c, 0xe8, 0x30, 0x57, 0xd0, 0x97, 0x8d, 0x71, 0x7b, 0xa5, + 0xe7, 0xc9, 0xf6, 0x01, 0x47, 0xee, 0xcb, 0xcc, 0x52, 0x72, 0xc5, 0xec, 0x38, 0x44, 0xf5, 0x37, + 0x63, 0x92, 0xad, 0x9e, 0x82, 0xf2, 0xab, 0xa7, 0xd5, 0x1e, 0xdb, 0xf0, 0xd3, 0x8a, 0x54, 0x4b, + 0x8f, 0xf4, 0x3b, 0xff, 0x8d, 0x3e, 0x98, 0xea, 0x74, 0x7f, 0x1e, 0x7d, 0xcd, 0xca, 0x3c, 0xfb, + 0xf0, 0x6a, 0xef, 0x97, 0xf0, 0xf9, 0x5b, 0x10, 0x22, 0xe7, 0xcc, 0x9c, 0xf9, 0x10, 0x44, 0xee, + 0x88, 0x8b, 0xda, 0xd9, 0xfd, 0xa4, 0x88, 0x3f, 0xe1, 0x21, 0xa5, 0xc2, 0x67, 0x0e, 0xd1, 0x14, + 0xf1, 0x0a, 0x48, 0x9c, 0xb9, 0x9f, 0x24, 0xc1, 0xf9, 0xf7, 0x93, 0x64, 0x1b, 0x66, 0x3c, 0x18, + 0xd6, 0xfa, 0x75, 0xa4, 0xd3, 0xe0, 0x2e, 0xdd, 0xa2, 0xb4, 0x76, 0x1f, 0xe9, 0x54, 0xf8, 0xfb, + 0x16, 0x64, 0x82, 0xb6, 0x94, 0x5b, 0xc6, 0xea, 0xea, 0x96, 0x39, 0x03, 0x7d, 0x51, 0xe8, 0x93, + 0xec, 0x93, 0x04, 0x38, 0xf4, 0x09, 0x66, 0x18, 0xf5, 0x44, 0x6d, 0xb9, 0xdb, 0x13, 0xb5, 0xd4, + 0x4e, 0xf7, 0xc9, 0x36, 0x91, 0x4e, 0x12, 0x25, 0xc6, 0xaf, 0x52, 0x20, 0xe6, 0x38, 0xfb, 0xf7, + 0xca, 0x30, 0xc0, 0x3d, 0x11, 0xc7, 0xb0, 0x4f, 0xd7, 0x84, 0x53, 0xa0, 0xd0, 0x9d, 0x74, 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, 0x4d, 0x80, 0x98, 0x3d, 0x89, 0x48, 0x79, 0x88, + 0xcc, 0x9b, 0x2f, 0x16, 0x6a, 0x47, 0x5d, 0x15, 0xe3, 0xad, 0x49, 0xd3, 0xfd, 0x29, 0x04, 0xd6, + 0x78, 0xcf, 0xbc, 0x0c, 0x15, 0x45, 0x9c, 0x67, 0x04, 0x8c, 0xe8, 0x93, 0xf3, 0xaf, 0xc0, 0x78, + 0xa6, 0xae, 0x9e, 0x6c, 0x88, 0xdf, 0xb2, 0x60, 0x3c, 0xf3, 0x9a, 0x3b, 0xfa, 0xaa, 0x05, 0x53, + 0x7e, 0x07, 0x47, 0x94, 0xf8, 0xcc, 0x87, 0x71, 0x61, 0x29, 0xf3, 0xa1, 0x13, 0x16, 0x77, 0xac, + 0x8d, 0x9a, 0x95, 0xfc, 0x85, 0x57, 0xc7, 0x17, 0x31, 0xb0, 0x23, 0x3c, 0xe7, 0x30, 0x87, 0x61, + 0x85, 0xb5, 0x7f, 0x62, 0xc1, 0x64, 0xdb, 0x83, 0xe1, 0x0f, 0x4b, 0x37, 0x44, 0x76, 0xe5, 0x52, + 0x97, 0xec, 0xca, 0x7a, 0x2f, 0xcb, 0x07, 0xf6, 0xf2, 0xd7, 0x2d, 0x10, 0x33, 0xf4, 0x18, 0x34, + 0xc0, 0x55, 0x53, 0x03, 0xfc, 0x48, 0x91, 0x49, 0xdf, 0x45, 0xf5, 0xfb, 0xa5, 0x12, 0x4c, 0x70, + 0x82, 0xd4, 0xa7, 0xfe, 0xb0, 0x7c, 0x9c, 0xde, 0x5e, 0xfd, 0x50, 0x4f, 0x2d, 0x76, 0xee, 0xa9, + 0xf1, 0x2d, 0xfb, 0x0e, 0xfc, 0x96, 0x7f, 0x6e, 0x01, 0xe2, 0x63, 0x92, 0x7d, 0x1e, 0x97, 0x3b, + 0x77, 0x35, 0x83, 0x2e, 0x95, 0x1c, 0x0a, 0x83, 0x35, 0xaa, 0x07, 0xdc, 0x85, 0xcc, 0x89, 0x46, + 0x39, 0xff, 0x44, 0xa3, 0x87, 0x5e, 0xff, 0x76, 0x19, 0xb2, 0xc1, 0x70, 0xe8, 0x6d, 0x18, 0x69, + 0x38, 0x4d, 0xe7, 0x8e, 0xe7, 0x7b, 0x89, 0x47, 0xe2, 0x62, 0x47, 0xa6, 0x4b, 0x5a, 0x09, 0x71, + 0x90, 0xa0, 0x41, 0xb0, 0xc1, 0x11, 0xcd, 0x01, 0x34, 0x23, 0x6f, 0xdb, 0xf3, 0xc9, 0x06, 0xd3, + 0x59, 0x59, 0x34, 0x3d, 0x3f, 0xfd, 0x93, 0x50, 0xac, 0x51, 0x74, 0x88, 0xbe, 0x2e, 0x1f, 0x47, + 0xf4, 0x75, 0x5f, 0x8f, 0xd1, 0xd7, 0xfd, 0x85, 0xa2, 0xaf, 0x31, 0x9c, 0x92, 0xfe, 0x7f, 0xfa, + 0x7f, 0xc5, 0xf3, 0x09, 0x4f, 0x32, 0x2b, 0xa2, 0xed, 0x67, 0xf6, 0x76, 0x67, 0x4f, 0xe1, 0x8e, + 0x14, 0xb8, 0x4b, 0x49, 0xbb, 0x05, 0x27, 0xea, 0x24, 0xf2, 0x58, 0xee, 0x3f, 0x37, 0x5d, 0x4b, + 0x5f, 0x80, 0x4a, 0x94, 0x59, 0xc6, 0x3d, 0x5e, 0xa9, 0xd6, 0xb2, 0x45, 0xc9, 0x65, 0x9b, 0xb2, + 0xb4, 0xff, 0x56, 0x09, 0x06, 0x45, 0x18, 0xdc, 0x31, 0x28, 0x1f, 0x57, 0x0c, 0x27, 0xc1, 0x33, + 0x79, 0xf2, 0x8f, 0x35, 0xab, 0xab, 0x7b, 0xa0, 0x9e, 0x71, 0x0f, 0x3c, 0x57, 0x8c, 0xdd, 0xc1, + 0x8e, 0x81, 0x7f, 0x5e, 0x86, 0x31, 0x33, 0x2c, 0xf0, 0x18, 0x86, 0xe5, 0x75, 0x18, 0x8c, 0x45, + 0x84, 0x6a, 0xa9, 0x48, 0xd4, 0x55, 0xf6, 0x13, 0xa7, 0x67, 0xa9, 0x22, 0x26, 0x55, 0xb2, 0xeb, + 0x18, 0x04, 0x5b, 0x3e, 0x96, 0x20, 0xd8, 0xbc, 0x68, 0xcd, 0xbe, 0x07, 0x11, 0xad, 0x69, 0xff, + 0x90, 0x89, 0x7c, 0x1d, 0x7e, 0x0c, 0xdb, 0xf8, 0x6b, 0xe6, 0xe6, 0x70, 0xae, 0xd0, 0xbc, 0x13, + 0xcd, 0xeb, 0xb2, 0x9d, 0x7f, 0xcf, 0x82, 0x61, 0x41, 0x78, 0x0c, 0x1d, 0xf8, 0xac, 0xd9, 0x81, + 0xa7, 0x0a, 0x75, 0xa0, 0x4b, 0xcb, 0xbf, 0x59, 0x52, 0x2d, 0xaf, 0x89, 0x27, 0xcd, 0x73, 0x33, + 0x1d, 0x0f, 0x35, 0xa3, 0x30, 0x09, 0x1b, 0xa1, 0x2f, 0x14, 0xb8, 0xc7, 0xd2, 0xcb, 0x55, 0x1c, + 0xbe, 0xaf, 0xfd, 0xc6, 0x8a, 0x9a, 0xdd, 0xfd, 0x09, 0xa3, 0x44, 0x6c, 0xa0, 0x9d, 0x1e, 0x54, + 0x77, 0x01, 0xd2, 0x57, 0xac, 0xc5, 0xbd, 0xc4, 0xde, 0x9f, 0x6a, 0x4f, 0x6f, 0x4b, 0x29, 0x5e, + 0x58, 0xe3, 0x2b, 0xc3, 0xf0, 0x59, 0x1d, 0xfd, 0xe6, 0x19, 0xc0, 0x75, 0x01, 0xc7, 0x8a, 0xc2, + 0x7e, 0x99, 0x49, 0x76, 0x36, 0x40, 0xbd, 0x5d, 0x64, 0xfa, 0xc5, 0x01, 0x35, 0xb4, 0xcc, 0xb1, + 0x77, 0x5d, 0xbf, 0x2e, 0x55, 0x54, 0x7c, 0xd2, 0x26, 0xe8, 0x91, 0xb0, 0xe9, 0xed, 0x2a, 0x44, + 0xda, 0x0e, 0x8e, 0x5e, 0x2e, 0x2c, 0x91, 0x7b, 0x38, 0x2a, 0x62, 0xc9, 0xdd, 0x58, 0x46, 0xab, + 0xd5, 0x5a, 0x36, 0x3f, 0xf5, 0x92, 0x44, 0xe0, 0x94, 0x06, 0xcd, 0x0b, 0x83, 0xd2, 0x7c, 0xf1, + 0x5e, 0x1a, 0x94, 0x72, 0x48, 0x34, 0x8b, 0xf2, 0x3c, 0x0c, 0xab, 0x27, 0x3f, 0x6a, 0xfc, 0xb1, + 0x85, 0x0a, 0xd7, 0xaf, 0x96, 0x53, 0x30, 0xd6, 0x69, 0xd0, 0x2a, 0x9c, 0x70, 0xd5, 0xad, 0x8b, + 0x5a, 0xeb, 0x8e, 0xef, 0x35, 0x68, 0x51, 0x7e, 0x63, 0xf2, 0x91, 0xbd, 0xdd, 0xd9, 0x13, 0xd5, + 0x76, 0x34, 0xee, 0x54, 0x06, 0xad, 0xc1, 0x78, 0xcc, 0x9f, 0x36, 0x91, 0xa1, 0xf5, 0x22, 0x6d, + 0xeb, 0xb3, 0xf2, 0xc4, 0xaa, 0x6e, 0xa2, 0xf7, 0x19, 0x88, 0x4b, 0x05, 0x19, 0x8c, 0x9f, 0x65, + 0x81, 0x5e, 0x85, 0x31, 0x5f, 0x7f, 0xb7, 0xb1, 0x26, 0x2e, 0x9f, 0xa8, 0x18, 0x24, 0xe3, 0x55, + 0xc7, 0x1a, 0xce, 0x50, 0xa3, 0xd7, 0x61, 0x5a, 0x87, 0x88, 0x4c, 0x30, 0x4e, 0xb0, 0x41, 0x62, + 0xf1, 0x0c, 0xc2, 0x63, 0x7b, 0xbb, 0xb3, 0xd3, 0x57, 0xbb, 0xd0, 0xe0, 0xae, 0xa5, 0xd1, 0x45, + 0x18, 0x91, 0x23, 0xa9, 0x5d, 0x44, 0x49, 0xa3, 0xdf, 0x34, 0x1c, 0x36, 0x28, 0x3f, 0xd8, 0xc1, + 0xdc, 0x97, 0x68, 0x61, 0x6d, 0x0b, 0x47, 0xef, 0xc0, 0x88, 0xde, 0xc6, 0xec, 0xde, 0x9c, 0xff, + 0x16, 0xa6, 0x50, 0x05, 0x54, 0xcb, 0x75, 0x1c, 0x36, 0x78, 0xdb, 0x37, 0x60, 0xa0, 0xbe, 0x13, + 0x37, 0x12, 0xbf, 0x80, 0x7c, 0x7b, 0xd2, 0xe8, 0x42, 0xba, 0xf6, 0xd8, 0xbb, 0x3c, 0xa2, 0x47, + 0x36, 0x81, 0xf1, 0xb5, 0xa5, 0x1a, 0x7f, 0xf5, 0x7f, 0x81, 0x5b, 0x6f, 0x58, 0x48, 0x37, 0xeb, + 0x90, 0x52, 0xab, 0x83, 0x3c, 0xb4, 0xff, 0xc4, 0x82, 0x7e, 0xf6, 0xa6, 0x4c, 0xde, 0x7b, 0x44, + 0x45, 0x1a, 0x8d, 0x5e, 0x82, 0x01, 0xb2, 0xbe, 0x4e, 0x1a, 0x89, 0x58, 0xc6, 0x32, 0xda, 0x7b, + 0x60, 0x99, 0x41, 0xe9, 0xe2, 0x64, 0x95, 0xf1, 0xbf, 0x58, 0x10, 0xa3, 0xcf, 0x43, 0x25, 0xf1, + 0xb6, 0xc8, 0x82, 0xeb, 0x12, 0xf7, 0x10, 0x77, 0xc5, 0x95, 0xb0, 0x58, 0x93, 0x4c, 0x70, 0xca, + 0xcf, 0x7e, 0xaf, 0x04, 0x90, 0xde, 0xb5, 0xc8, 0xeb, 0xe6, 0x62, 0xdb, 0xb3, 0x4b, 0x4f, 0x77, + 0x78, 0x76, 0x09, 0xa5, 0x0c, 0x3b, 0x3c, 0xba, 0xa4, 0x86, 0xaa, 0x5c, 0x68, 0xa8, 0xfa, 0x7a, + 0x19, 0xaa, 0x25, 0x98, 0x4c, 0xef, 0x8a, 0x98, 0x97, 0xee, 0x58, 0x12, 0xc6, 0xb5, 0x2c, 0x12, + 0xb7, 0xd3, 0xdb, 0xef, 0x59, 0x20, 0x42, 0xd6, 0x0a, 0xcc, 0x56, 0x57, 0x3e, 0x91, 0x62, 0xe4, + 0xa1, 0x7a, 0xb6, 0x48, 0x34, 0x9f, 0xc8, 0x3e, 0xa5, 0xd6, 0x8f, 0x91, 0x73, 0xca, 0xe0, 0x6a, + 0xff, 0x86, 0x05, 0xc3, 0x1c, 0x7d, 0x8d, 0xe9, 0xd4, 0xf9, 0xed, 0xea, 0x29, 0xc3, 0x27, 0x7b, + 0x3d, 0x84, 0x32, 0x56, 0x99, 0x1e, 0xf5, 0xd7, 0x43, 0x24, 0x02, 0xa7, 0x34, 0xe8, 0x19, 0x18, + 0x8c, 0x5b, 0x77, 0x18, 0x79, 0x26, 0x7e, 0xad, 0xce, 0xc1, 0x58, 0xe2, 0xed, 0x7f, 0x59, 0x82, + 0x89, 0x6c, 0xf8, 0x22, 0xc2, 0x30, 0xc0, 0x75, 0xec, 0xac, 0x7a, 0x76, 0x90, 0x2f, 0x47, 0x0b, + 0x7f, 0x04, 0xfe, 0x06, 0x2e, 0x8b, 0x39, 0x13, 0x9c, 0xd0, 0x3a, 0x0c, 0xbb, 0xe1, 0xbd, 0xe0, + 0x9e, 0x13, 0xb9, 0x0b, 0xb5, 0x55, 0xf1, 0x25, 0x72, 0x02, 0x4e, 0xaa, 0x69, 0x01, 0x3d, 0xb8, + 0x92, 0xf9, 0x16, 0x52, 0x14, 0xd6, 0x19, 0x53, 0x9b, 0xb2, 0x11, 0x06, 0xeb, 0xde, 0xc6, 0x35, + 0xa7, 0x59, 0xec, 0x68, 0x75, 0x49, 0x92, 0x6b, 0x75, 0x8c, 0x8a, 0x5b, 0xf6, 0x1c, 0x81, 0x53, + 0x96, 0xf6, 0x1f, 0x9c, 0x00, 0x63, 0x2e, 0x18, 0x69, 0x38, 0xad, 0x07, 0x9e, 0x86, 0xf3, 0x4d, + 0x18, 0x22, 0x5b, 0xcd, 0x64, 0xa7, 0xea, 0x45, 0xc5, 0x92, 0x2a, 0x2f, 0x0b, 0xea, 0x76, 0xee, + 0x12, 0x83, 0x15, 0xc7, 0x2e, 0x49, 0x55, 0xcb, 0x0f, 0x45, 0x52, 0xd5, 0xbe, 0xbf, 0x90, 0xa4, + 0xaa, 0xaf, 0xc3, 0xe0, 0x86, 0x97, 0x60, 0xd2, 0x0c, 0x45, 0xda, 0x82, 0x9c, 0xc9, 0x73, 0x89, + 0x13, 0xb7, 0x67, 0x4a, 0x14, 0x08, 0x2c, 0xd9, 0xa1, 0x35, 0xb5, 0xa8, 0x06, 0x8a, 0xec, 0xe5, + 0xed, 0xbe, 0xbe, 0x8e, 0xcb, 0x4a, 0x24, 0x51, 0x1d, 0xfc, 0xe0, 0x49, 0x54, 0x55, 0xea, 0xd3, + 0xa1, 0x07, 0x95, 0xfa, 0xd4, 0x48, 0x21, 0x5b, 0x39, 0x8a, 0x14, 0xb2, 0xef, 0x59, 0x70, 0xb2, + 0xd9, 0x29, 0x01, 0xb3, 0x48, 0x62, 0xfa, 0xe9, 0x43, 0xa4, 0xa4, 0x36, 0xaa, 0x66, 0x97, 0xc1, + 0x3b, 0x92, 0xe1, 0xce, 0x15, 0xcb, 0x5c, 0xb4, 0xc3, 0x1f, 0x3c, 0x17, 0xed, 0x51, 0x67, 0x3b, + 0x4d, 0x33, 0xd3, 0x8e, 0x1e, 0x49, 0x66, 0xda, 0xb1, 0x07, 0x98, 0x99, 0x56, 0xcb, 0x29, 0x3b, + 0xfe, 0x60, 0x73, 0xca, 0x6e, 0x9a, 0xfb, 0x12, 0x4f, 0x61, 0xfa, 0x52, 0xe1, 0x7d, 0xc9, 0xa8, + 0xe1, 0xe0, 0x9d, 0x89, 0x67, 0xd7, 0x9d, 0xfc, 0x80, 0xd9, 0x75, 0x8d, 0x1c, 0xb5, 0xe8, 0x28, + 0x72, 0xd4, 0xbe, 0xad, 0xef, 0xa0, 0x27, 0x8a, 0xd4, 0xa0, 0x36, 0xca, 0xf6, 0x1a, 0x3a, 0xed, + 0xa1, 0xed, 0x59, 0x70, 0xa7, 0x8e, 0x3b, 0x0b, 0xee, 0xc9, 0x23, 0xcc, 0x82, 0x7b, 0xea, 0x58, + 0xb3, 0xe0, 0x3e, 0xf2, 0x90, 0x64, 0xc1, 0x9d, 0x3e, 0xca, 0x2c, 0xb8, 0x74, 0x80, 0x9b, 0xf2, + 0xaa, 0xce, 0xf4, 0xa3, 0x45, 0x06, 0xb8, 0xe3, 0xcd, 0x1e, 0x3e, 0xc0, 0x0a, 0x85, 0x53, 0xa6, + 0xf6, 0x5f, 0x83, 0xd3, 0x07, 0x4f, 0xb0, 0xf4, 0xed, 0x89, 0x5a, 0xea, 0xd9, 0xca, 0xbc, 0x3d, + 0xc1, 0x94, 0x37, 0x8d, 0xaa, 0x70, 0x9a, 0xce, 0xef, 0x58, 0xf0, 0x48, 0x97, 0x2c, 0x76, 0x85, + 0xef, 0xb9, 0x35, 0x61, 0xbc, 0x69, 0x16, 0x2d, 0x7c, 0x6d, 0xd6, 0xc8, 0x9a, 0xa7, 0x62, 0x91, + 0x33, 0x08, 0x9c, 0x65, 0xbf, 0xf8, 0x91, 0x1f, 0xbd, 0x7f, 0xfa, 0x43, 0x3f, 0x7e, 0xff, 0xf4, + 0x87, 0xfe, 0xe8, 0xfd, 0xd3, 0x1f, 0xfa, 0xb9, 0xbd, 0xd3, 0xd6, 0x8f, 0xf6, 0x4e, 0x5b, 0x3f, + 0xde, 0x3b, 0x6d, 0xfd, 0xe9, 0xde, 0x69, 0xeb, 0xbd, 0x9f, 0x9c, 0xfe, 0xd0, 0x1b, 0xa5, 0xed, + 0xf3, 0xff, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x7d, 0xa2, 0x84, 0xda, 0xcc, 0xc5, 0x00, 0x00, } diff --git a/staging/src/k8s.io/client-go/pkg/api/v1/generated.proto b/staging/src/k8s.io/client-go/pkg/api/v1/generated.proto index a23b7928fab..cc52ea4c9c4 100644 --- a/staging/src/k8s.io/client-go/pkg/api/v1/generated.proto +++ b/staging/src/k8s.io/client-go/pkg/api/v1/generated.proto @@ -2688,7 +2688,7 @@ message PodSpec { // If specified, the pod will be dispatched by specified scheduler. // If not specified, the pod will be dispatched by default scheduler. // +optional - optional string schedulername = 19; + optional string schedulerName = 19; // If specified, the pod's tolerations. // +optional diff --git a/staging/src/k8s.io/client-go/pkg/api/v1/types.generated.go b/staging/src/k8s.io/client-go/pkg/api/v1/types.generated.go index 3ff5805149c..6fbb85a603e 100644 --- a/staging/src/k8s.io/client-go/pkg/api/v1/types.generated.go +++ b/staging/src/k8s.io/client-go/pkg/api/v1/types.generated.go @@ -33394,7 +33394,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { if yyq2[20] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("schedulername")) + r.EncodeString(codecSelferC_UTF81234, string("schedulerName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym71 := z.EncBinary() _ = yym71 @@ -33738,7 +33738,7 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } x.Affinity.CodecDecodeSelf(d) } - case "schedulername": + case "schedulerName": if r.TryDecodeAsNil() { x.SchedulerName = "" } else { diff --git a/staging/src/k8s.io/client-go/pkg/api/v1/types.go b/staging/src/k8s.io/client-go/pkg/api/v1/types.go index 64842ed6cd5..306c222c4dc 100644 --- a/staging/src/k8s.io/client-go/pkg/api/v1/types.go +++ b/staging/src/k8s.io/client-go/pkg/api/v1/types.go @@ -2319,7 +2319,7 @@ type PodSpec struct { // If specified, the pod will be dispatched by specified scheduler. // If not specified, the pod will be dispatched by default scheduler. // +optional - SchedulerName string `json:"schedulername,omitempty" protobuf:"bytes,19,opt,name=schedulername"` + SchedulerName string `json:"schedulerName,omitempty" protobuf:"bytes,19,opt,name=schedulerName"` // If specified, the pod's tolerations. // +optional Tolerations []Toleration `json:"tolerations,omitempty" protobuf:"bytes,22,opt,name=tolerations"` diff --git a/staging/src/k8s.io/client-go/pkg/api/v1/types_swagger_doc_generated.go b/staging/src/k8s.io/client-go/pkg/api/v1/types_swagger_doc_generated.go index c093bb1d7b0..3a12a42e4e5 100644 --- a/staging/src/k8s.io/client-go/pkg/api/v1/types_swagger_doc_generated.go +++ b/staging/src/k8s.io/client-go/pkg/api/v1/types_swagger_doc_generated.go @@ -1335,7 +1335,7 @@ var map_PodSpec = map[string]string{ "hostname": "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", "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.", + "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.", }