From 11c577f09245c2d1825ffcf6f77fae4a98f665a1 Mon Sep 17 00:00:00 2001 From: Robert Rati Date: Wed, 30 Nov 2016 11:51:44 -0500 Subject: [PATCH] [scheduling] Auto-generated file updates from moving node affinity from annotations to api fields. #35518 --- api/openapi-spec/swagger.json | 188 + api/swagger-spec/apps_v1alpha1.json | 197 + api/swagger-spec/apps_v1beta1.json | 198 + api/swagger-spec/batch_v1.json | 198 + api/swagger-spec/extensions_v1beta1.json | 198 + api/swagger-spec/v1.json | 198 + .../apps/v1beta1/definitions.html | 426 +- docs/api-reference/batch/v1/definitions.html | 426 +- .../extensions/v1beta1/definitions.html | 672 +- docs/api-reference/v1/definitions.html | 426 +- federation/apis/openapi-spec/swagger.json | 188 + .../apis/swagger-spec/extensions_v1beta1.json | 198 + .../extensions/v1beta1/definitions.html | 544 +- pkg/api/v1/generated.pb.go | 1677 +- pkg/api/v1/generated.proto | 4 + pkg/api/v1/types.generated.go | 28302 ++++++++-------- pkg/api/v1/types_swagger_doc_generated.go | 1 + pkg/api/v1/zz_generated.conversion.go | 2 + pkg/api/v1/zz_generated.deepcopy.go | 9 + pkg/api/zz_generated.deepcopy.go | 9 + pkg/apis/apps/v1beta1/types.generated.go | 2 +- pkg/apis/batch/v1/types.generated.go | 2 +- pkg/apis/batch/v2alpha1/types.generated.go | 4 +- .../extensions/v1beta1/types.generated.go | 8 +- pkg/generated/openapi/zz_generated.openapi.go | 8 +- .../pkg/apis/apps/types.generated.go | 2 +- .../pkg/apis/batch/types.generated.go | 4 +- .../pkg/apis/extensions/types.generated.go | 6 +- test/test_owners.csv | 193 +- 29 files changed, 19056 insertions(+), 15234 deletions(-) diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index a0e56f04040..04d7c3d7ac1 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -32376,6 +32376,23 @@ } } }, + "v1.Affinity": { + "description": "Affinity is a group of affinity scheduling rules.", + "properties": { + "nodeAffinity": { + "description": "Describes node affinity scheduling rules for the pod.", + "$ref": "#/definitions/v1.NodeAffinity" + }, + "podAffinity": { + "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).", + "$ref": "#/definitions/v1.PodAffinity" + }, + "podAntiAffinity": { + "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).", + "$ref": "#/definitions/v1.PodAntiAffinity" + } + } + }, "v1.AttachedVolume": { "description": "AttachedVolume describes a volume attached to a node", "required": [ @@ -33697,6 +33714,22 @@ } } }, + "v1.NodeAffinity": { + "description": "Node affinity is a group of node affinity scheduling rules.", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.PreferredSchedulingTerm" + } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.", + "$ref": "#/definitions/v1.NodeSelector" + } + } + }, "v1.NodeCondition": { "description": "NodeCondition contains condition information for a node.", "required": [ @@ -33758,6 +33791,60 @@ } } }, + "v1.NodeSelector": { + "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", + "required": [ + "nodeSelectorTerms" + ], + "properties": { + "nodeSelectorTerms": { + "description": "Required. A list of node selector terms. The terms are ORed.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.NodeSelectorTerm" + } + } + } + }, + "v1.NodeSelectorRequirement": { + "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + "required": [ + "key", + "operator" + ], + "properties": { + "key": { + "description": "The label key that the selector applies to.", + "type": "string" + }, + "operator": { + "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", + "type": "string" + }, + "values": { + "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "v1.NodeSelectorTerm": { + "description": "A null or empty node selector term matches no objects.", + "required": [ + "matchExpressions" + ], + "properties": { + "matchExpressions": { + "description": "Required. A list of node selector requirements. The requirements are ANDed.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.NodeSelectorRequirement" + } + } + } + }, "v1.NodeSpec": { "description": "NodeSpec describes the attributes that a node is created with.", "properties": { @@ -34244,6 +34331,67 @@ } } }, + "v1.PodAffinity": { + "description": "Pod affinity is a group of inter pod affinity scheduling rules.", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.WeightedPodAffinityTerm" + } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.PodAffinityTerm" + } + } + } + }, + "v1.PodAffinityTerm": { + "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \u003ctopologyKey\u003e tches that of any node on which a pod of the set of pods is running", + "required": [ + "namespaces" + ], + "properties": { + "labelSelector": { + "description": "A label query over a set of resources, in this case pods.", + "$ref": "#/definitions/v1.LabelSelector" + }, + "namespaces": { + "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means \"this pod's namespace,\" empty list means \"all namespaces\" The json tag here is not \"omitempty\" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details.", + "type": "array", + "items": { + "type": "string" + } + }, + "topologyKey": { + "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as \"all topologies\" (\"all topologies\" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed.", + "type": "string" + } + } + }, + "v1.PodAntiAffinity": { + "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.WeightedPodAffinityTerm" + } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.PodAffinityTerm" + } + } + } + }, "v1.PodCondition": { "description": "PodCondition contains details for the current condition of this pod.", "required": [ @@ -34338,6 +34486,10 @@ "type": "integer", "format": "int64" }, + "affinity": { + "description": "If specified, the pod's scheduling constraints", + "$ref": "#/definitions/v1.Affinity" + }, "containers": { "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers", "type": "array", @@ -34518,6 +34670,24 @@ } } }, + "v1.PreferredSchedulingTerm": { + "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", + "required": [ + "weight", + "preference" + ], + "properties": { + "preference": { + "description": "A node selector term, associated with the corresponding weight.", + "$ref": "#/definitions/v1.NodeSelectorTerm" + }, + "weight": { + "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", + "type": "integer", + "format": "int32" + } + } + }, "v1.Probe": { "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { @@ -35269,6 +35439,24 @@ } } }, + "v1.WeightedPodAffinityTerm": { + "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", + "required": [ + "weight", + "podAffinityTerm" + ], + "properties": { + "podAffinityTerm": { + "description": "Required. A pod affinity term, associated with the corresponding weight.", + "$ref": "#/definitions/v1.PodAffinityTerm" + }, + "weight": { + "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", + "type": "integer", + "format": "int32" + } + } + }, "v1alpha1.CertificateSigningRequest": { "description": "Describes a certificate signing request", "properties": { diff --git a/api/swagger-spec/apps_v1alpha1.json b/api/swagger-spec/apps_v1alpha1.json index 28b05ff8d46..1bfa55121d9 100644 --- a/api/swagger-spec/apps_v1alpha1.json +++ b/api/swagger-spec/apps_v1alpha1.json @@ -1351,6 +1351,9 @@ "subdomain": { "type": "string", "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\". If not specified, the pod will not have a domainname at all." + }, + "affinity": { + "$ref": "v1.Affinity" } } }, @@ -2609,6 +2612,200 @@ } } }, + "v1.Affinity": { + "id": "v1.Affinity", + "description": "Affinity is a group of affinity scheduling rules.", + "properties": { + "nodeAffinity": { + "$ref": "v1.NodeAffinity", + "description": "Describes node affinity scheduling rules for the pod." + }, + "podAffinity": { + "$ref": "v1.PodAffinity", + "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." + }, + "podAntiAffinity": { + "$ref": "v1.PodAntiAffinity", + "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." + } + } + }, + "v1.NodeAffinity": { + "id": "v1.NodeAffinity", + "description": "Node affinity is a group of node affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "$ref": "v1.NodeSelector", + "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PreferredSchedulingTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.NodeSelector": { + "id": "v1.NodeSelector", + "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", + "required": [ + "nodeSelectorTerms" + ], + "properties": { + "nodeSelectorTerms": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorTerm" + }, + "description": "Required. A list of node selector terms. The terms are ORed." + } + } + }, + "v1.NodeSelectorTerm": { + "id": "v1.NodeSelectorTerm", + "description": "A null or empty node selector term matches no objects.", + "required": [ + "matchExpressions" + ], + "properties": { + "matchExpressions": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorRequirement" + }, + "description": "Required. A list of node selector requirements. The requirements are ANDed." + } + } + }, + "v1.NodeSelectorRequirement": { + "id": "v1.NodeSelectorRequirement", + "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + "required": [ + "key", + "operator" + ], + "properties": { + "key": { + "type": "string", + "description": "The label key that the selector applies to." + }, + "operator": { + "type": "string", + "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt." + }, + "values": { + "type": "array", + "items": { + "type": "string" + }, + "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch." + } + } + }, + "v1.PreferredSchedulingTerm": { + "id": "v1.PreferredSchedulingTerm", + "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", + "required": [ + "weight", + "preference" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100." + }, + "preference": { + "$ref": "v1.NodeSelectorTerm", + "description": "A node selector term, associated with the corresponding weight." + } + } + }, + "v1.PodAffinity": { + "id": "v1.PodAffinity", + "description": "Pod affinity is a group of inter pod affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.PodAffinityTerm": { + "id": "v1.PodAffinityTerm", + "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \u003ctopologyKey\u003e tches that of any node on which a pod of the set of pods is running", + "required": [ + "namespaces" + ], + "properties": { + "labelSelector": { + "$ref": "unversioned.LabelSelector", + "description": "A label query over a set of resources, in this case pods." + }, + "namespaces": { + "type": "array", + "items": { + "type": "string" + }, + "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means \"this pod's namespace,\" empty list means \"all namespaces\" The json tag here is not \"omitempty\" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details." + }, + "topologyKey": { + "type": "string", + "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as \"all topologies\" (\"all topologies\" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed." + } + } + }, + "v1.WeightedPodAffinityTerm": { + "id": "v1.WeightedPodAffinityTerm", + "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", + "required": [ + "weight", + "podAffinityTerm" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100." + }, + "podAffinityTerm": { + "$ref": "v1.PodAffinityTerm", + "description": "Required. A pod affinity term, associated with the corresponding weight." + } + } + }, + "v1.PodAntiAffinity": { + "id": "v1.PodAntiAffinity", + "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, "v1.PersistentVolumeClaim": { "id": "v1.PersistentVolumeClaim", "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume", diff --git a/api/swagger-spec/apps_v1beta1.json b/api/swagger-spec/apps_v1beta1.json index ffad249ade2..52d2f413d2a 100644 --- a/api/swagger-spec/apps_v1beta1.json +++ b/api/swagger-spec/apps_v1beta1.json @@ -1349,6 +1349,10 @@ "subdomain": { "type": "string", "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\". If not specified, the pod will not have a domainname at all." + }, + "affinity": { + "$ref": "v1.Affinity", + "description": "If specified, the pod's scheduling constraints" } } }, @@ -2607,6 +2611,200 @@ } } }, + "v1.Affinity": { + "id": "v1.Affinity", + "description": "Affinity is a group of affinity scheduling rules.", + "properties": { + "nodeAffinity": { + "$ref": "v1.NodeAffinity", + "description": "Describes node affinity scheduling rules for the pod." + }, + "podAffinity": { + "$ref": "v1.PodAffinity", + "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." + }, + "podAntiAffinity": { + "$ref": "v1.PodAntiAffinity", + "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." + } + } + }, + "v1.NodeAffinity": { + "id": "v1.NodeAffinity", + "description": "Node affinity is a group of node affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "$ref": "v1.NodeSelector", + "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PreferredSchedulingTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.NodeSelector": { + "id": "v1.NodeSelector", + "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", + "required": [ + "nodeSelectorTerms" + ], + "properties": { + "nodeSelectorTerms": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorTerm" + }, + "description": "Required. A list of node selector terms. The terms are ORed." + } + } + }, + "v1.NodeSelectorTerm": { + "id": "v1.NodeSelectorTerm", + "description": "A null or empty node selector term matches no objects.", + "required": [ + "matchExpressions" + ], + "properties": { + "matchExpressions": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorRequirement" + }, + "description": "Required. A list of node selector requirements. The requirements are ANDed." + } + } + }, + "v1.NodeSelectorRequirement": { + "id": "v1.NodeSelectorRequirement", + "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + "required": [ + "key", + "operator" + ], + "properties": { + "key": { + "type": "string", + "description": "The label key that the selector applies to." + }, + "operator": { + "type": "string", + "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt." + }, + "values": { + "type": "array", + "items": { + "type": "string" + }, + "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch." + } + } + }, + "v1.PreferredSchedulingTerm": { + "id": "v1.PreferredSchedulingTerm", + "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", + "required": [ + "weight", + "preference" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100." + }, + "preference": { + "$ref": "v1.NodeSelectorTerm", + "description": "A node selector term, associated with the corresponding weight." + } + } + }, + "v1.PodAffinity": { + "id": "v1.PodAffinity", + "description": "Pod affinity is a group of inter pod affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.PodAffinityTerm": { + "id": "v1.PodAffinityTerm", + "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \u003ctopologyKey\u003e tches that of any node on which a pod of the set of pods is running", + "required": [ + "namespaces" + ], + "properties": { + "labelSelector": { + "$ref": "v1.LabelSelector", + "description": "A label query over a set of resources, in this case pods." + }, + "namespaces": { + "type": "array", + "items": { + "type": "string" + }, + "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means \"this pod's namespace,\" empty list means \"all namespaces\" The json tag here is not \"omitempty\" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details." + }, + "topologyKey": { + "type": "string", + "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as \"all topologies\" (\"all topologies\" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed." + } + } + }, + "v1.WeightedPodAffinityTerm": { + "id": "v1.WeightedPodAffinityTerm", + "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", + "required": [ + "weight", + "podAffinityTerm" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100." + }, + "podAffinityTerm": { + "$ref": "v1.PodAffinityTerm", + "description": "Required. A pod affinity term, associated with the corresponding weight." + } + } + }, + "v1.PodAntiAffinity": { + "id": "v1.PodAntiAffinity", + "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, "v1.PersistentVolumeClaim": { "id": "v1.PersistentVolumeClaim", "description": "PersistentVolumeClaim is a user's request for and claim to a persistent volume", diff --git a/api/swagger-spec/batch_v1.json b/api/swagger-spec/batch_v1.json index eaec6d660d1..0e31cd8ced2 100644 --- a/api/swagger-spec/batch_v1.json +++ b/api/swagger-spec/batch_v1.json @@ -1354,6 +1354,10 @@ "subdomain": { "type": "string", "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\". If not specified, the pod will not have a domainname at all." + }, + "affinity": { + "$ref": "v1.Affinity", + "description": "If specified, the pod's scheduling constraints" } } }, @@ -2612,6 +2616,200 @@ } } }, + "v1.Affinity": { + "id": "v1.Affinity", + "description": "Affinity is a group of affinity scheduling rules.", + "properties": { + "nodeAffinity": { + "$ref": "v1.NodeAffinity", + "description": "Describes node affinity scheduling rules for the pod." + }, + "podAffinity": { + "$ref": "v1.PodAffinity", + "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." + }, + "podAntiAffinity": { + "$ref": "v1.PodAntiAffinity", + "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." + } + } + }, + "v1.NodeAffinity": { + "id": "v1.NodeAffinity", + "description": "Node affinity is a group of node affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "$ref": "v1.NodeSelector", + "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PreferredSchedulingTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.NodeSelector": { + "id": "v1.NodeSelector", + "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", + "required": [ + "nodeSelectorTerms" + ], + "properties": { + "nodeSelectorTerms": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorTerm" + }, + "description": "Required. A list of node selector terms. The terms are ORed." + } + } + }, + "v1.NodeSelectorTerm": { + "id": "v1.NodeSelectorTerm", + "description": "A null or empty node selector term matches no objects.", + "required": [ + "matchExpressions" + ], + "properties": { + "matchExpressions": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorRequirement" + }, + "description": "Required. A list of node selector requirements. The requirements are ANDed." + } + } + }, + "v1.NodeSelectorRequirement": { + "id": "v1.NodeSelectorRequirement", + "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + "required": [ + "key", + "operator" + ], + "properties": { + "key": { + "type": "string", + "description": "The label key that the selector applies to." + }, + "operator": { + "type": "string", + "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt." + }, + "values": { + "type": "array", + "items": { + "type": "string" + }, + "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch." + } + } + }, + "v1.PreferredSchedulingTerm": { + "id": "v1.PreferredSchedulingTerm", + "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", + "required": [ + "weight", + "preference" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100." + }, + "preference": { + "$ref": "v1.NodeSelectorTerm", + "description": "A node selector term, associated with the corresponding weight." + } + } + }, + "v1.PodAffinity": { + "id": "v1.PodAffinity", + "description": "Pod affinity is a group of inter pod affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.PodAffinityTerm": { + "id": "v1.PodAffinityTerm", + "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \u003ctopologyKey\u003e tches that of any node on which a pod of the set of pods is running", + "required": [ + "namespaces" + ], + "properties": { + "labelSelector": { + "$ref": "v1.LabelSelector", + "description": "A label query over a set of resources, in this case pods." + }, + "namespaces": { + "type": "array", + "items": { + "type": "string" + }, + "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means \"this pod's namespace,\" empty list means \"all namespaces\" The json tag here is not \"omitempty\" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details." + }, + "topologyKey": { + "type": "string", + "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as \"all topologies\" (\"all topologies\" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed." + } + } + }, + "v1.WeightedPodAffinityTerm": { + "id": "v1.WeightedPodAffinityTerm", + "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", + "required": [ + "weight", + "podAffinityTerm" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100." + }, + "podAffinityTerm": { + "$ref": "v1.PodAffinityTerm", + "description": "Required. A pod affinity term, associated with the corresponding weight." + } + } + }, + "v1.PodAntiAffinity": { + "id": "v1.PodAntiAffinity", + "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, "v1.JobStatus": { "id": "v1.JobStatus", "description": "JobStatus represents the current state of a Job.", diff --git a/api/swagger-spec/extensions_v1beta1.json b/api/swagger-spec/extensions_v1beta1.json index b11f0366053..62d4732a3e2 100644 --- a/api/swagger-spec/extensions_v1beta1.json +++ b/api/swagger-spec/extensions_v1beta1.json @@ -8121,6 +8121,10 @@ "subdomain": { "type": "string", "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\". If not specified, the pod will not have a domainname at all." + }, + "affinity": { + "$ref": "v1.Affinity", + "description": "If specified, the pod's scheduling constraints" } } }, @@ -9379,6 +9383,200 @@ } } }, + "v1.Affinity": { + "id": "v1.Affinity", + "description": "Affinity is a group of affinity scheduling rules.", + "properties": { + "nodeAffinity": { + "$ref": "v1.NodeAffinity", + "description": "Describes node affinity scheduling rules for the pod." + }, + "podAffinity": { + "$ref": "v1.PodAffinity", + "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." + }, + "podAntiAffinity": { + "$ref": "v1.PodAntiAffinity", + "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." + } + } + }, + "v1.NodeAffinity": { + "id": "v1.NodeAffinity", + "description": "Node affinity is a group of node affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "$ref": "v1.NodeSelector", + "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PreferredSchedulingTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.NodeSelector": { + "id": "v1.NodeSelector", + "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", + "required": [ + "nodeSelectorTerms" + ], + "properties": { + "nodeSelectorTerms": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorTerm" + }, + "description": "Required. A list of node selector terms. The terms are ORed." + } + } + }, + "v1.NodeSelectorTerm": { + "id": "v1.NodeSelectorTerm", + "description": "A null or empty node selector term matches no objects.", + "required": [ + "matchExpressions" + ], + "properties": { + "matchExpressions": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorRequirement" + }, + "description": "Required. A list of node selector requirements. The requirements are ANDed." + } + } + }, + "v1.NodeSelectorRequirement": { + "id": "v1.NodeSelectorRequirement", + "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + "required": [ + "key", + "operator" + ], + "properties": { + "key": { + "type": "string", + "description": "The label key that the selector applies to." + }, + "operator": { + "type": "string", + "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt." + }, + "values": { + "type": "array", + "items": { + "type": "string" + }, + "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch." + } + } + }, + "v1.PreferredSchedulingTerm": { + "id": "v1.PreferredSchedulingTerm", + "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", + "required": [ + "weight", + "preference" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100." + }, + "preference": { + "$ref": "v1.NodeSelectorTerm", + "description": "A node selector term, associated with the corresponding weight." + } + } + }, + "v1.PodAffinity": { + "id": "v1.PodAffinity", + "description": "Pod affinity is a group of inter pod affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.PodAffinityTerm": { + "id": "v1.PodAffinityTerm", + "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \u003ctopologyKey\u003e tches that of any node on which a pod of the set of pods is running", + "required": [ + "namespaces" + ], + "properties": { + "labelSelector": { + "$ref": "v1.LabelSelector", + "description": "A label query over a set of resources, in this case pods." + }, + "namespaces": { + "type": "array", + "items": { + "type": "string" + }, + "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means \"this pod's namespace,\" empty list means \"all namespaces\" The json tag here is not \"omitempty\" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details." + }, + "topologyKey": { + "type": "string", + "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as \"all topologies\" (\"all topologies\" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed." + } + } + }, + "v1.WeightedPodAffinityTerm": { + "id": "v1.WeightedPodAffinityTerm", + "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", + "required": [ + "weight", + "podAffinityTerm" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100." + }, + "podAffinityTerm": { + "$ref": "v1.PodAffinityTerm", + "description": "Required. A pod affinity term, associated with the corresponding weight." + } + } + }, + "v1.PodAntiAffinity": { + "id": "v1.PodAntiAffinity", + "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, "v1beta1.DaemonSetStatus": { "id": "v1beta1.DaemonSetStatus", "description": "DaemonSetStatus represents the current status of a daemon set.", diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 495246b59cf..2f1638bebd3 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -18268,6 +18268,10 @@ "subdomain": { "type": "string", "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\". If not specified, the pod will not have a domainname at all." + }, + "affinity": { + "$ref": "v1.Affinity", + "description": "If specified, the pod's scheduling constraints" } } }, @@ -19062,6 +19066,200 @@ } } }, + "v1.Affinity": { + "id": "v1.Affinity", + "description": "Affinity is a group of affinity scheduling rules.", + "properties": { + "nodeAffinity": { + "$ref": "v1.NodeAffinity", + "description": "Describes node affinity scheduling rules for the pod." + }, + "podAffinity": { + "$ref": "v1.PodAffinity", + "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." + }, + "podAntiAffinity": { + "$ref": "v1.PodAntiAffinity", + "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." + } + } + }, + "v1.NodeAffinity": { + "id": "v1.NodeAffinity", + "description": "Node affinity is a group of node affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "$ref": "v1.NodeSelector", + "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PreferredSchedulingTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.NodeSelector": { + "id": "v1.NodeSelector", + "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", + "required": [ + "nodeSelectorTerms" + ], + "properties": { + "nodeSelectorTerms": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorTerm" + }, + "description": "Required. A list of node selector terms. The terms are ORed." + } + } + }, + "v1.NodeSelectorTerm": { + "id": "v1.NodeSelectorTerm", + "description": "A null or empty node selector term matches no objects.", + "required": [ + "matchExpressions" + ], + "properties": { + "matchExpressions": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorRequirement" + }, + "description": "Required. A list of node selector requirements. The requirements are ANDed." + } + } + }, + "v1.NodeSelectorRequirement": { + "id": "v1.NodeSelectorRequirement", + "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + "required": [ + "key", + "operator" + ], + "properties": { + "key": { + "type": "string", + "description": "The label key that the selector applies to." + }, + "operator": { + "type": "string", + "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt." + }, + "values": { + "type": "array", + "items": { + "type": "string" + }, + "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch." + } + } + }, + "v1.PreferredSchedulingTerm": { + "id": "v1.PreferredSchedulingTerm", + "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", + "required": [ + "weight", + "preference" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100." + }, + "preference": { + "$ref": "v1.NodeSelectorTerm", + "description": "A node selector term, associated with the corresponding weight." + } + } + }, + "v1.PodAffinity": { + "id": "v1.PodAffinity", + "description": "Pod affinity is a group of inter pod affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.PodAffinityTerm": { + "id": "v1.PodAffinityTerm", + "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \u003ctopologyKey\u003e tches that of any node on which a pod of the set of pods is running", + "required": [ + "namespaces" + ], + "properties": { + "labelSelector": { + "$ref": "v1.LabelSelector", + "description": "A label query over a set of resources, in this case pods." + }, + "namespaces": { + "type": "array", + "items": { + "type": "string" + }, + "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means \"this pod's namespace,\" empty list means \"all namespaces\" The json tag here is not \"omitempty\" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details." + }, + "topologyKey": { + "type": "string", + "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as \"all topologies\" (\"all topologies\" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed." + } + } + }, + "v1.WeightedPodAffinityTerm": { + "id": "v1.WeightedPodAffinityTerm", + "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", + "required": [ + "weight", + "podAffinityTerm" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100." + }, + "podAffinityTerm": { + "$ref": "v1.PodAffinityTerm", + "description": "Required. A pod affinity term, associated with the corresponding weight." + } + } + }, + "v1.PodAntiAffinity": { + "id": "v1.PodAntiAffinity", + "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, "v1.PodStatus": { "id": "v1.PodStatus", "description": "PodStatus represents information about the status of a pod. Status may trail the actual state of a system.", diff --git a/docs/api-reference/apps/v1beta1/definitions.html b/docs/api-reference/apps/v1beta1/definitions.html index 1ecf3806052..4fc1d34da8b 100755 --- a/docs/api-reference/apps/v1beta1/definitions.html +++ b/docs/api-reference/apps/v1beta1/definitions.html @@ -436,6 +436,54 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } + +
+

v1.Affinity

+
+

Affinity is a group of affinity scheduling rules.

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

nodeAffinity

Describes node affinity scheduling rules for the pod.

false

v1.NodeAffinity

podAffinity

Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).

false

v1.PodAffinity

podAntiAffinity

Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).

false

v1.PodAntiAffinity

+

v1.PhotonPersistentDiskVolumeSource

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

v1.NodeSelectorTerm

+
+

A null or empty node selector term matches no objects.

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

matchExpressions

Required. A list of node selector requirements. The requirements are ANDed.

true

v1.NodeSelectorRequirement array

+

versioned.Event

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

v1.PodAntiAffinity

+
+

Pod anti affinity is a group of inter pod anti affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

false

v1.PodAffinityTerm array

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

false

v1.WeightedPodAffinityTerm array

+

v1beta1.StatefulSetStatus

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

v1.NodeSelectorRequirement

+
+

A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

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

key

The label key that the selector applies to.

true

string

operator

Represents a key’s relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.

true

string

values

An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.

false

string array

+

types.UID

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

v1.PodAffinityTerm

+
+

Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> tches that of any node on which a pod of the set of pods is running

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

labelSelector

A label query over a set of resources, in this case pods.

false

v1.LabelSelector

namespaces

namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means "this pod’s namespace," empty list means "all namespaces" The json tag here is not "omitempty" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details.

true

string array

topologyKey

This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as "all topologies" ("all topologies" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed.

false

string

+

v1.CinderVolumeSource

@@ -2508,6 +2727,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.PodAffinity

+
+

Pod affinity is a group of inter pod affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

false

v1.PodAffinityTerm array

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

false

v1.WeightedPodAffinityTerm array

+

v1.PersistentVolumeClaimVolumeSource

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

v1.NodeSelector

+
+

A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.

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

nodeSelectorTerms

Required. A list of node selector terms. The terms are ORed.

true

v1.NodeSelectorTerm array

+

v1.VsphereVirtualDiskVolumeSource

@@ -3676,6 +3970,47 @@ The StatefulSet guarantees that a given network identity will always map to the +
+
+

v1.WeightedPodAffinityTerm

+
+

The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

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

weight

weight associated with matching the corresponding podAffinityTerm, in the range 1-100.

true

integer (int32)

podAffinityTerm

Required. A pod affinity term, associated with the corresponding weight.

true

v1.PodAffinityTerm

+

v1.Probe

@@ -3800,10 +4135,92 @@ The StatefulSet guarantees that a given network identity will always map to the +
+
+

v1.NodeAffinity

+
+

Node affinity is a group of node affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.

false

v1.NodeSelector

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.

false

v1.PreferredSchedulingTerm array

+

v1.Capability

+
+
+

v1.PreferredSchedulingTerm

+
+

An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it’s a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).

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

weight

Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.

true

integer (int32)

preference

A node selector term, associated with the corresponding weight.

true

v1.NodeSelectorTerm

+

v1.DownwardAPIVolumeFile

@@ -4002,6 +4419,13 @@ The StatefulSet guarantees that a given network identity will always map to the

string

+ +

affinity

+

If specified, the pod’s scheduling constraints

+

false

+

v1.Affinity

+ + @@ -4451,7 +4875,7 @@ Examples:
diff --git a/docs/api-reference/batch/v1/definitions.html b/docs/api-reference/batch/v1/definitions.html index b4a80dc2a82..84e6a5bcde9 100755 --- a/docs/api-reference/batch/v1/definitions.html +++ b/docs/api-reference/batch/v1/definitions.html @@ -436,6 +436,54 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } + +
+

v1.Affinity

+
+

Affinity is a group of affinity scheduling rules.

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

nodeAffinity

Describes node affinity scheduling rules for the pod.

false

v1.NodeAffinity

podAffinity

Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).

false

v1.PodAffinity

podAntiAffinity

Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).

false

v1.PodAntiAffinity

+

v1.PhotonPersistentDiskVolumeSource

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

v1.NodeSelectorTerm

+
+

A null or empty node selector term matches no objects.

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

matchExpressions

Required. A list of node selector requirements. The requirements are ANDed.

true

v1.NodeSelectorRequirement array

+

versioned.Event

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

v1.PodAntiAffinity

+
+

Pod anti affinity is a group of inter pod anti affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

false

v1.PodAffinityTerm array

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

false

v1.WeightedPodAffinityTerm array

+

v1.GCEPersistentDiskVolumeSource

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

v1.NodeSelectorRequirement

+
+

A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

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

key

The label key that the selector applies to.

true

string

operator

Represents a key’s relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.

true

string

values

An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.

false

string array

+

types.UID

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

v1.PodAffinityTerm

+
+

Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> tches that of any node on which a pod of the set of pods is running

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

labelSelector

A label query over a set of resources, in this case pods.

false

v1.LabelSelector

namespaces

namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means "this pod’s namespace," empty list means "all namespaces" The json tag here is not "omitempty" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details.

true

string array

topologyKey

This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as "all topologies" ("all topologies" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed.

false

string

+

v1.CinderVolumeSource

@@ -2357,6 +2576,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.PodAffinity

+
+

Pod affinity is a group of inter pod affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

false

v1.PodAffinityTerm array

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

false

v1.WeightedPodAffinityTerm array

+

v1.PersistentVolumeClaimVolumeSource

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

v1.NodeSelector

+
+

A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.

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

nodeSelectorTerms

Required. A list of node selector terms. The terms are ORed.

true

v1.NodeSelectorTerm array

+

v1.VsphereVirtualDiskVolumeSource

@@ -3663,6 +3957,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.WeightedPodAffinityTerm

+
+

The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

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

weight

weight associated with matching the corresponding podAffinityTerm, in the range 1-100.

true

integer (int32)

podAffinityTerm

Required. A pod affinity term, associated with the corresponding weight.

true

v1.PodAffinityTerm

+

v1.Probe

@@ -3787,10 +4122,92 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.NodeAffinity

+
+

Node affinity is a group of node affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.

false

v1.NodeSelector

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.

false

v1.PreferredSchedulingTerm array

+

v1.Capability

+
+
+

v1.PreferredSchedulingTerm

+
+

An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it’s a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).

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

weight

Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.

true

integer (int32)

preference

A node selector term, associated with the corresponding weight.

true

v1.NodeSelectorTerm

+

v1.DownwardAPIVolumeFile

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

string

+ +

affinity

+

If specified, the pod’s scheduling constraints

+

false

+

v1.Affinity

+ + @@ -4383,7 +4807,7 @@ Examples:
diff --git a/docs/api-reference/extensions/v1beta1/definitions.html b/docs/api-reference/extensions/v1beta1/definitions.html index acacb11ef2f..5981329509c 100755 --- a/docs/api-reference/extensions/v1beta1/definitions.html +++ b/docs/api-reference/extensions/v1beta1/definitions.html @@ -553,6 +553,54 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } + +
+

v1.Affinity

+
+

Affinity is a group of affinity scheduling rules.

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

nodeAffinity

Describes node affinity scheduling rules for the pod.

false

v1.NodeAffinity

podAffinity

Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).

false

v1.PodAffinity

podAntiAffinity

Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).

false

v1.PodAntiAffinity

+

v1beta1.DaemonSetStatus

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

v1.NodeSelectorTerm

+
+

A null or empty node selector term matches no objects.

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

matchExpressions

Required. A list of node selector requirements. The requirements are ANDed.

true

v1.NodeSelectorRequirement array

+

v1.Preconditions

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

v1beta1.IngressSpec

+
+

IngressSpec describes the Ingress the user wishes to exist.

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

backend

A default backend capable of servicing requests that don’t match any rule. At least one of backend or rules must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.

false

v1beta1.IngressBackend

tls

TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.

false

v1beta1.IngressTLS array

rules

A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.

false

v1beta1.IngressRule array

+

v1.VolumeMount

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

v1beta1.IngressSpec

-
-

IngressSpec describes the Ingress the user wishes to exist.

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

backend

A default backend capable of servicing requests that don’t match any rule. At least one of backend or rules must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.

false

v1beta1.IngressBackend

tls

TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.

false

v1beta1.IngressTLS array

rules

A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.

false

v1beta1.IngressRule array

-

v1.LabelSelector

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

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.IngressList

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

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

@@ -2259,6 +2341,95 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.PodAffinityTerm

+
+

Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> tches that of any node on which a pod of the set of pods is running

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

labelSelector

A label query over a set of resources, in this case pods.

false

v1.LabelSelector

namespaces

namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means "this pod’s namespace," empty list means "all namespaces" The json tag here is not "omitempty" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details.

true

string array

topologyKey

This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as "all topologies" ("all topologies" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed.

false

string

+ +
+
+

v1.PodAffinity

+
+

Pod affinity is a group of inter pod affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

false

v1.PodAffinityTerm array

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

false

v1.WeightedPodAffinityTerm array

+

v1.FlockerVolumeSource

@@ -3381,6 +3552,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.WeightedPodAffinityTerm

+
+

The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

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

weight

weight associated with matching the corresponding podAffinityTerm, in the range 1-100.

true

integer (int32)

podAffinityTerm

Required. A pod affinity term, associated with the corresponding weight.

true

v1.PodAffinityTerm

+

v1beta1.DeploymentSpec

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

string

+ +

affinity

+

If specified, the pod’s scheduling constraints

+

false

+

v1.Affinity

+ + @@ -4674,47 +4893,6 @@ Examples:
-
-
-

v1.HTTPHeader

-
-

HTTPHeader describes a custom header to be used in HTTP probes

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

name

The header field name

true

string

value

The header field value

true

string

-

v1beta1.HorizontalPodAutoscalerStatus

@@ -4777,6 +4955,47 @@ Examples:
+
+
+

v1.HTTPHeader

+
+

HTTPHeader describes a custom header to be used in HTTP probes

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

name

The header field name

true

string

value

The header field value

true

string

+

v1.FCVolumeSource

@@ -4832,6 +5051,47 @@ Examples:
+
+
+

v1.PodAntiAffinity

+
+

Pod anti affinity is a group of inter pod anti affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

false

v1.PodAffinityTerm array

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

false

v1.WeightedPodAffinityTerm array

+

v1beta1.ThirdPartyResource

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

v1.NodeSelectorRequirement

+
+

A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

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

key

The label key that the selector applies to.

true

string

operator

Represents a key’s relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.

true

string

values

An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.

false

string array

+

v1beta1.ReplicaSet

@@ -6373,6 +6681,40 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.NodeSelector

+
+

A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.

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

nodeSelectorTerms

Required. A list of node selector terms. The terms are ORed.

true

v1.NodeSelectorTerm array

+

v1beta1.NetworkPolicyPort

@@ -6555,6 +6897,88 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.NodeAffinity

+
+

Node affinity is a group of node affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.

false

v1.NodeSelector

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.

false

v1.PreferredSchedulingTerm array

+ +
+
+

v1.PreferredSchedulingTerm

+
+

An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it’s a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).

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

weight

Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.

true

integer (int32)

preference

A node selector term, associated with the corresponding weight.

true

v1.NodeSelectorTerm

+

v1beta1.HorizontalPodAutoscalerList

@@ -6825,7 +7249,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 8a367ec3594..4f09c2096cf 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -532,6 +532,54 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } + +
+

v1.Affinity

+
+

Affinity is a group of affinity scheduling rules.

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

nodeAffinity

Describes node affinity scheduling rules for the pod.

false

v1.NodeAffinity

podAffinity

Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).

false

v1.PodAffinity

podAntiAffinity

Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).

false

v1.PodAntiAffinity

+

v1.Node

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

v1.NodeSelectorTerm

+
+

A null or empty node selector term matches no objects.

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

matchExpressions

Required. A list of node selector requirements. The requirements are ANDed.

true

v1.NodeSelectorRequirement array

+

v1.Preconditions

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

v1.PodAffinityTerm

+
+

Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> tches that of any node on which a pod of the set of pods is running

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

labelSelector

A label query over a set of resources, in this case pods.

false

v1.LabelSelector

namespaces

namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means "this pod’s namespace," empty list means "all namespaces" The json tag here is not "omitempty" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details.

true

string array

topologyKey

This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as "all topologies" ("all topologies" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed.

false

string

+

v1.NamespaceList

@@ -2554,6 +2684,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.PodAffinity

+
+

Pod affinity is a group of inter pod affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

false

v1.PodAffinityTerm array

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

false

v1.WeightedPodAffinityTerm array

+

v1.ServiceAccount

@@ -3969,6 +4140,47 @@ The resulting set of endpoints can be viewed as:
+
+
+

v1.WeightedPodAffinityTerm

+
+

The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

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

weight

weight associated with matching the corresponding podAffinityTerm, in the range 1-100.

true

integer (int32)

podAffinityTerm

Required. A pod affinity term, associated with the corresponding weight.

true

v1.PodAffinityTerm

+

v1.Probe

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

string

+ +

affinity

+

If specified, the pod’s scheduling constraints

+

false

+

v1.Affinity

+ + @@ -5654,6 +5873,47 @@ Examples:
+
+
+

v1.PodAntiAffinity

+
+

Pod anti affinity is a group of inter pod anti affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

false

v1.PodAffinityTerm array

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

false

v1.WeightedPodAffinityTerm array

+

v1.EndpointPort

@@ -6736,6 +6996,54 @@ Examples:
+
+
+

v1.NodeSelectorRequirement

+
+

A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

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

key

The label key that the selector applies to.

true

string

operator

Represents a key’s relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.

true

string

values

An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.

false

string array

+

v1.HostPathVolumeSource

@@ -7992,6 +8300,40 @@ Examples:
+
+
+

v1.NodeSelector

+
+

A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.

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

nodeSelectorTerms

Required. A list of node selector terms. The terms are ORed.

true

v1.NodeSelectorTerm array

+

v1.PersistentVolumeList

@@ -8170,6 +8512,88 @@ Examples:
+
+
+

v1.NodeAffinity

+
+

Node affinity is a group of node affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.

false

v1.NodeSelector

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.

false

v1.PreferredSchedulingTerm array

+ +
+
+

v1.PreferredSchedulingTerm

+
+

An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it’s a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).

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

weight

Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.

true

integer (int32)

preference

A node selector term, associated with the corresponding weight.

true

v1.NodeSelectorTerm

+

v1.ConfigMapKeySelector

@@ -8627,7 +9051,7 @@ Examples:
diff --git a/federation/apis/openapi-spec/swagger.json b/federation/apis/openapi-spec/swagger.json index 514632c2c58..625efbed4d4 100644 --- a/federation/apis/openapi-spec/swagger.json +++ b/federation/apis/openapi-spec/swagger.json @@ -8623,6 +8623,23 @@ } } }, + "v1.Affinity": { + "description": "Affinity is a group of affinity scheduling rules.", + "properties": { + "nodeAffinity": { + "description": "Describes node affinity scheduling rules for the pod.", + "$ref": "#/definitions/v1.NodeAffinity" + }, + "podAffinity": { + "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).", + "$ref": "#/definitions/v1.PodAffinity" + }, + "podAntiAffinity": { + "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).", + "$ref": "#/definitions/v1.PodAntiAffinity" + } + } + }, "v1.Capabilities": { "description": "Adds and removes POSIX capabilities from running containers.", "properties": { @@ -9205,6 +9222,76 @@ } } }, + "v1.NodeAffinity": { + "description": "Node affinity is a group of node affinity scheduling rules.", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.PreferredSchedulingTerm" + } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.", + "$ref": "#/definitions/v1.NodeSelector" + } + } + }, + "v1.NodeSelector": { + "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", + "required": [ + "nodeSelectorTerms" + ], + "properties": { + "nodeSelectorTerms": { + "description": "Required. A list of node selector terms. The terms are ORed.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.NodeSelectorTerm" + } + } + } + }, + "v1.NodeSelectorRequirement": { + "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + "required": [ + "key", + "operator" + ], + "properties": { + "key": { + "description": "The label key that the selector applies to.", + "type": "string" + }, + "operator": { + "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", + "type": "string" + }, + "values": { + "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "v1.NodeSelectorTerm": { + "description": "A null or empty node selector term matches no objects.", + "required": [ + "matchExpressions" + ], + "properties": { + "matchExpressions": { + "description": "Required. A list of node selector requirements. The requirements are ANDed.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.NodeSelectorRequirement" + } + } + } + }, "v1.ObjectFieldSelector": { "description": "ObjectFieldSelector selects an APIVersioned field of an object.", "required": [ @@ -9367,6 +9454,67 @@ "v1.Patch": { "description": "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body." }, + "v1.PodAffinity": { + "description": "Pod affinity is a group of inter pod affinity scheduling rules.", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.WeightedPodAffinityTerm" + } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.PodAffinityTerm" + } + } + } + }, + "v1.PodAffinityTerm": { + "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \u003ctopologyKey\u003e tches that of any node on which a pod of the set of pods is running", + "required": [ + "namespaces" + ], + "properties": { + "labelSelector": { + "description": "A label query over a set of resources, in this case pods.", + "$ref": "#/definitions/v1.LabelSelector" + }, + "namespaces": { + "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means \"this pod's namespace,\" empty list means \"all namespaces\" The json tag here is not \"omitempty\" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details.", + "type": "array", + "items": { + "type": "string" + } + }, + "topologyKey": { + "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as \"all topologies\" (\"all topologies\" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed.", + "type": "string" + } + } + }, + "v1.PodAntiAffinity": { + "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", + "properties": { + "preferredDuringSchedulingIgnoredDuringExecution": { + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.WeightedPodAffinityTerm" + } + }, + "requiredDuringSchedulingIgnoredDuringExecution": { + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", + "type": "array", + "items": { + "$ref": "#/definitions/v1.PodAffinityTerm" + } + } + } + }, "v1.PodSecurityContext": { "description": "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", "properties": { @@ -9409,6 +9557,10 @@ "type": "integer", "format": "int64" }, + "affinity": { + "description": "If specified, the pod's scheduling constraints", + "$ref": "#/definitions/v1.Affinity" + }, "containers": { "description": "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/containers", "type": "array", @@ -9510,6 +9662,24 @@ } } }, + "v1.PreferredSchedulingTerm": { + "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", + "required": [ + "weight", + "preference" + ], + "properties": { + "preference": { + "description": "A node selector term, associated with the corresponding weight.", + "$ref": "#/definitions/v1.NodeSelectorTerm" + }, + "weight": { + "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", + "type": "integer", + "format": "int32" + } + } + }, "v1.Probe": { "description": "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", "properties": { @@ -9970,6 +10140,24 @@ } } }, + "v1.WeightedPodAffinityTerm": { + "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", + "required": [ + "weight", + "podAffinityTerm" + ], + "properties": { + "podAffinityTerm": { + "description": "Required. A pod affinity term, associated with the corresponding weight.", + "$ref": "#/definitions/v1.PodAffinityTerm" + }, + "weight": { + "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", + "type": "integer", + "format": "int32" + } + } + }, "v1beta1.Cluster": { "description": "Information about a registered cluster in a federated kubernetes setup. Clusters are not namespaced and have unique names in the federation.", "properties": { diff --git a/federation/apis/swagger-spec/extensions_v1beta1.json b/federation/apis/swagger-spec/extensions_v1beta1.json index 3c5ab132073..c43a462f75e 100644 --- a/federation/apis/swagger-spec/extensions_v1beta1.json +++ b/federation/apis/swagger-spec/extensions_v1beta1.json @@ -4636,6 +4636,10 @@ "subdomain": { "type": "string", "description": "If specified, the fully qualified Pod hostname will be \"\u003chostname\u003e.\u003csubdomain\u003e.\u003cpod namespace\u003e.svc.\u003ccluster domain\u003e\". If not specified, the pod will not have a domainname at all." + }, + "affinity": { + "$ref": "v1.Affinity", + "description": "If specified, the pod's scheduling constraints" } } }, @@ -5894,6 +5898,200 @@ } } }, + "v1.Affinity": { + "id": "v1.Affinity", + "description": "Affinity is a group of affinity scheduling rules.", + "properties": { + "nodeAffinity": { + "$ref": "v1.NodeAffinity", + "description": "Describes node affinity scheduling rules for the pod." + }, + "podAffinity": { + "$ref": "v1.PodAffinity", + "description": "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s))." + }, + "podAntiAffinity": { + "$ref": "v1.PodAntiAffinity", + "description": "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s))." + } + } + }, + "v1.NodeAffinity": { + "id": "v1.NodeAffinity", + "description": "Node affinity is a group of node affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "$ref": "v1.NodeSelector", + "description": "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PreferredSchedulingTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.NodeSelector": { + "id": "v1.NodeSelector", + "description": "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", + "required": [ + "nodeSelectorTerms" + ], + "properties": { + "nodeSelectorTerms": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorTerm" + }, + "description": "Required. A list of node selector terms. The terms are ORed." + } + } + }, + "v1.NodeSelectorTerm": { + "id": "v1.NodeSelectorTerm", + "description": "A null or empty node selector term matches no objects.", + "required": [ + "matchExpressions" + ], + "properties": { + "matchExpressions": { + "type": "array", + "items": { + "$ref": "v1.NodeSelectorRequirement" + }, + "description": "Required. A list of node selector requirements. The requirements are ANDed." + } + } + }, + "v1.NodeSelectorRequirement": { + "id": "v1.NodeSelectorRequirement", + "description": "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + "required": [ + "key", + "operator" + ], + "properties": { + "key": { + "type": "string", + "description": "The label key that the selector applies to." + }, + "operator": { + "type": "string", + "description": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt." + }, + "values": { + "type": "array", + "items": { + "type": "string" + }, + "description": "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch." + } + } + }, + "v1.PreferredSchedulingTerm": { + "id": "v1.PreferredSchedulingTerm", + "description": "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", + "required": [ + "weight", + "preference" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100." + }, + "preference": { + "$ref": "v1.NodeSelectorTerm", + "description": "A node selector term, associated with the corresponding weight." + } + } + }, + "v1.PodAffinity": { + "id": "v1.PodAffinity", + "description": "Pod affinity is a group of inter pod affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, + "v1.PodAffinityTerm": { + "id": "v1.PodAffinityTerm", + "description": "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key \u003ctopologyKey\u003e tches that of any node on which a pod of the set of pods is running", + "required": [ + "namespaces" + ], + "properties": { + "labelSelector": { + "$ref": "v1.LabelSelector", + "description": "A label query over a set of resources, in this case pods." + }, + "namespaces": { + "type": "array", + "items": { + "type": "string" + }, + "description": "namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means \"this pod's namespace,\" empty list means \"all namespaces\" The json tag here is not \"omitempty\" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details." + }, + "topologyKey": { + "type": "string", + "description": "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as \"all topologies\" (\"all topologies\" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed." + } + } + }, + "v1.WeightedPodAffinityTerm": { + "id": "v1.WeightedPodAffinityTerm", + "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", + "required": [ + "weight", + "podAffinityTerm" + ], + "properties": { + "weight": { + "type": "integer", + "format": "int32", + "description": "weight associated with matching the corresponding podAffinityTerm, in the range 1-100." + }, + "podAffinityTerm": { + "$ref": "v1.PodAffinityTerm", + "description": "Required. A pod affinity term, associated with the corresponding weight." + } + } + }, + "v1.PodAntiAffinity": { + "id": "v1.PodAntiAffinity", + "description": "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", + "properties": { + "requiredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.PodAffinityTerm" + }, + "description": "NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm `json:\"requiredDuringSchedulingRequiredDuringExecution,omitempty\"` If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied." + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + "type": "array", + "items": { + "$ref": "v1.WeightedPodAffinityTerm" + }, + "description": "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred." + } + } + }, "v1beta1.DaemonSetStatus": { "id": "v1beta1.DaemonSetStatus", "description": "DaemonSetStatus represents the current status of a daemon set.", diff --git a/federation/docs/api-reference/extensions/v1beta1/definitions.html b/federation/docs/api-reference/extensions/v1beta1/definitions.html index 2868812cd0e..9b928814a50 100755 --- a/federation/docs/api-reference/extensions/v1beta1/definitions.html +++ b/federation/docs/api-reference/extensions/v1beta1/definitions.html @@ -529,6 +529,54 @@ span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; } + +
+

v1.Affinity

+
+

Affinity is a group of affinity scheduling rules.

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

nodeAffinity

Describes node affinity scheduling rules for the pod.

false

v1.NodeAffinity

podAffinity

Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).

false

v1.PodAffinity

podAntiAffinity

Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).

false

v1.PodAntiAffinity

+

v1beta1.DaemonSetStatus

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

v1.NodeSelectorTerm

+
+

A null or empty node selector term matches no objects.

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

matchExpressions

Required. A list of node selector requirements. The requirements are ANDed.

true

v1.NodeSelectorRequirement array

+

v1.Preconditions

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

v1beta1.ReplicaSetList

+
+

ReplicaSetList is a collection of ReplicaSets.

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

kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

false

string

apiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

false

string

metadata

Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

false

v1.ListMeta

items

List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller

true

v1beta1.ReplicaSet array

+

v1.CephFSVolumeSource

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

v1beta1.ReplicaSetList

-
-

ReplicaSetList is a collection of ReplicaSets.

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

kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

false

string

apiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources

false

string

metadata

Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds

false

v1.ListMeta

items

List of ReplicaSets. More info: http://kubernetes.io/docs/user-guide/replication-controller

true

v1beta1.ReplicaSet array

-

v1beta1.IngressStatus

@@ -2049,6 +2131,95 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.PodAffinityTerm

+
+

Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key <topologyKey> tches that of any node on which a pod of the set of pods is running

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

labelSelector

A label query over a set of resources, in this case pods.

false

v1.LabelSelector

namespaces

namespaces specifies which namespaces the labelSelector applies to (matches against); nil list means "this pod’s namespace," empty list means "all namespaces" The json tag here is not "omitempty" since we need to distinguish nil and empty. See https://golang.org/pkg/encoding/json/#Marshal for more details.

true

string array

topologyKey

This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as "all topologies" ("all topologies" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed.

false

string

+ +
+
+

v1.PodAffinity

+
+

Pod affinity is a group of inter pod affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

false

v1.PodAffinityTerm array

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

false

v1.WeightedPodAffinityTerm array

+

v1.FlockerVolumeSource

@@ -3006,6 +3177,47 @@ Populated by the system when a graceful deletion is requested. Read-only. More i +
+
+

v1.WeightedPodAffinityTerm

+
+

The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

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

weight

weight associated with matching the corresponding podAffinityTerm, in the range 1-100.

true

integer (int32)

podAffinityTerm

Required. A pod affinity term, associated with the corresponding weight.

true

v1.PodAffinityTerm

+

v1beta1.DeploymentSpec

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

string

+ +

affinity

+

If specified, the pod’s scheduling constraints

+

false

+

v1.Affinity

+ + @@ -4250,6 +4469,47 @@ Examples:
+
+
+

v1.PodAntiAffinity

+
+

Pod anti affinity is a group of inter pod anti affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented. If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system will try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm json:"requiredDuringSchedulingRequiredDuringExecution,omitempty" If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.

false

v1.PodAffinityTerm array

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.

false

v1.WeightedPodAffinityTerm array

+

v1.TCPSocketAction

@@ -4934,9 +5194,9 @@ Both these may change in the future. Incoming requests are matched against the h
-

v1.HostPathVolumeSource

+

v1.NodeSelectorRequirement

-

Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

+

A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

@@ -4957,12 +5217,26 @@ Both these may change in the future. Incoming requests are matched against the h - - + + + + + + + + + + + + + + + +

path

Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath

key

The label key that the selector applies to.

true

string

operator

Represents a key’s relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.

true

string

values

An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.

false

string array

@@ -5028,6 +5302,40 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.HostPathVolumeSource

+
+

Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.

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

path

Path of the directory on the host. More info: http://kubernetes.io/docs/user-guide/volumes#hostpath

true

string

+

v1beta1.DaemonSet

@@ -5505,6 +5813,40 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.NodeSelector

+
+

A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.

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

nodeSelectorTerms

Required. A list of node selector terms. The terms are ORed.

true

v1.NodeSelectorTerm array

+

v1.Patch

@@ -5580,6 +5922,88 @@ Both these may change in the future. Incoming requests are matched against the h +
+
+

v1.NodeAffinity

+
+

Node affinity is a group of node affinity scheduling rules.

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

requiredDuringSchedulingIgnoredDuringExecution

If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.

false

v1.NodeSelector

preferredDuringSchedulingIgnoredDuringExecution

The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.

false

v1.PreferredSchedulingTerm array

+ +
+
+

v1.PreferredSchedulingTerm

+
+

An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it’s a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).

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

weight

Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.

true

integer (int32)

preference

A node selector term, associated with the corresponding weight.

true

v1.NodeSelectorTerm

+

v1.ConfigMapKeySelector

@@ -5740,7 +6164,7 @@ Both these may change in the future. Incoming requests are matched against the h
diff --git a/pkg/api/v1/generated.pb.go b/pkg/api/v1/generated.pb.go index b4ef7319928..a625c51879f 100644 --- a/pkg/api/v1/generated.pb.go +++ b/pkg/api/v1/generated.pb.go @@ -6015,6 +6015,18 @@ func (m *PodSpec) MarshalTo(data []byte) (int, error) { i++ i = encodeVarintGenerated(data, i, uint64(len(m.Subdomain))) i += copy(data[i:], m.Subdomain) + if m.Affinity != nil { + data[i] = 0x92 + i++ + data[i] = 0x1 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Affinity.Size())) + n120, err := m.Affinity.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n120 + } return i, nil } @@ -6069,11 +6081,11 @@ func (m *PodStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.StartTime.Size())) - n120, err := m.StartTime.MarshalTo(data[i:]) + n121, err := m.StartTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n120 + i += n121 } if len(m.ContainerStatuses) > 0 { for _, msg := range m.ContainerStatuses { @@ -6112,19 +6124,19 @@ func (m *PodStatusResult) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n121, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n121 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n122, err := m.Status.MarshalTo(data[i:]) + n122, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n122 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n123, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n123 return i, nil } @@ -6146,19 +6158,19 @@ func (m *PodTemplate) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n123, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n123 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n124, err := m.Template.MarshalTo(data[i:]) + n124, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n124 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) + n125, err := m.Template.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n125 return i, nil } @@ -6180,11 +6192,11 @@ func (m *PodTemplateList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n125, err := m.ListMeta.MarshalTo(data[i:]) + n126, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n125 + i += n126 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6218,19 +6230,19 @@ func (m *PodTemplateSpec) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n126, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n126 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n127, err := m.Spec.MarshalTo(data[i:]) + n127, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n127 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n128, err := m.Spec.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n128 return i, nil } @@ -6276,19 +6288,19 @@ func (m *PreferAvoidPodsEntry) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.PodSignature.Size())) - n128, err := m.PodSignature.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n128 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.EvictionTime.Size())) - n129, err := m.EvictionTime.MarshalTo(data[i:]) + n129, err := m.PodSignature.MarshalTo(data[i:]) if err != nil { return 0, err } i += n129 + data[i] = 0x12 + i++ + i = encodeVarintGenerated(data, i, uint64(m.EvictionTime.Size())) + n130, err := m.EvictionTime.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n130 data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -6321,11 +6333,11 @@ func (m *PreferredSchedulingTerm) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.Preference.Size())) - n130, err := m.Preference.MarshalTo(data[i:]) + n131, err := m.Preference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n130 + i += n131 return i, nil } @@ -6347,11 +6359,11 @@ func (m *Probe) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Handler.Size())) - n131, err := m.Handler.MarshalTo(data[i:]) + n132, err := m.Handler.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n131 + i += n132 data[i] = 0x10 i++ i = encodeVarintGenerated(data, i, uint64(m.InitialDelaySeconds)) @@ -6466,11 +6478,11 @@ func (m *RBDVolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x3a i++ i = encodeVarintGenerated(data, i, uint64(m.SecretRef.Size())) - n132, err := m.SecretRef.MarshalTo(data[i:]) + n133, err := m.SecretRef.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n132 + i += n133 } data[i] = 0x40 i++ @@ -6501,11 +6513,11 @@ func (m *RangeAllocation) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n133, err := m.ObjectMeta.MarshalTo(data[i:]) + n134, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n133 + i += n134 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Range))) @@ -6537,27 +6549,27 @@ func (m *ReplicationController) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n134, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n134 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n135, err := m.Spec.MarshalTo(data[i:]) + n135, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n135 - data[i] = 0x1a + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n136, err := m.Status.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n136, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } i += n136 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n137, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n137 return i, nil } @@ -6587,11 +6599,11 @@ func (m *ReplicationControllerCondition) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.LastTransitionTime.Size())) - n137, err := m.LastTransitionTime.MarshalTo(data[i:]) + n138, err := m.LastTransitionTime.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n137 + i += n138 data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Reason))) @@ -6621,11 +6633,11 @@ func (m *ReplicationControllerList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n138, err := m.ListMeta.MarshalTo(data[i:]) + n139, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n138 + i += n139 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6682,11 +6694,11 @@ func (m *ReplicationControllerSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Template.Size())) - n139, err := m.Template.MarshalTo(data[i:]) + n140, err := m.Template.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n139 + i += n140 } data[i] = 0x20 i++ @@ -6765,11 +6777,11 @@ func (m *ResourceFieldSelector) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.Divisor.Size())) - n140, err := m.Divisor.MarshalTo(data[i:]) + n141, err := m.Divisor.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n140 + i += n141 return i, nil } @@ -6791,27 +6803,27 @@ func (m *ResourceQuota) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n141, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n141 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n142, err := m.Spec.MarshalTo(data[i:]) + n142, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n142 - data[i] = 0x1a + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n143, err := m.Status.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n143, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } i += n143 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n144, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n144 return i, nil } @@ -6833,11 +6845,11 @@ func (m *ResourceQuotaList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n144, err := m.ListMeta.MarshalTo(data[i:]) + n145, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n144 + i += n145 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -6883,11 +6895,11 @@ func (m *ResourceQuotaSpec) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n145, err := (&v).MarshalTo(data[i:]) + n146, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n145 + i += n146 } } if len(m.Scopes) > 0 { @@ -6938,11 +6950,11 @@ func (m *ResourceQuotaStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n146, err := (&v).MarshalTo(data[i:]) + n147, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n146 + i += n147 } } if len(m.Used) > 0 { @@ -6960,11 +6972,11 @@ func (m *ResourceQuotaStatus) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n147, err := (&v).MarshalTo(data[i:]) + n148, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n147 + i += n148 } } return i, nil @@ -7000,11 +7012,11 @@ func (m *ResourceRequirements) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n148, err := (&v).MarshalTo(data[i:]) + n149, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n148 + i += n149 } } if len(m.Requests) > 0 { @@ -7022,11 +7034,11 @@ func (m *ResourceRequirements) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64((&v).Size())) - n149, err := (&v).MarshalTo(data[i:]) + n150, err := (&v).MarshalTo(data[i:]) if err != nil { return 0, err } - i += n149 + i += n150 } } return i, nil @@ -7084,11 +7096,11 @@ func (m *Secret) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n150, err := m.ObjectMeta.MarshalTo(data[i:]) + n151, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n150 + i += n151 if len(m.Data) > 0 { for k := range m.Data { data[i] = 0x12 @@ -7148,11 +7160,11 @@ func (m *SecretKeySelector) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LocalObjectReference.Size())) - n151, err := m.LocalObjectReference.MarshalTo(data[i:]) + n152, err := m.LocalObjectReference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n151 + i += n152 data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(len(m.Key))) @@ -7178,11 +7190,11 @@ func (m *SecretList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n152, err := m.ListMeta.MarshalTo(data[i:]) + n153, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n152 + i += n153 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7256,11 +7268,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Capabilities.Size())) - n153, err := m.Capabilities.MarshalTo(data[i:]) + n154, err := m.Capabilities.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n153 + i += n154 } if m.Privileged != nil { data[i] = 0x10 @@ -7276,11 +7288,11 @@ func (m *SecurityContext) MarshalTo(data []byte) (int, error) { data[i] = 0x1a i++ i = encodeVarintGenerated(data, i, uint64(m.SELinuxOptions.Size())) - n154, err := m.SELinuxOptions.MarshalTo(data[i:]) + n155, err := m.SELinuxOptions.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n154 + i += n155 } if m.RunAsUser != nil { data[i] = 0x20 @@ -7328,11 +7340,11 @@ func (m *SerializedReference) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Reference.Size())) - n155, err := m.Reference.MarshalTo(data[i:]) + n156, err := m.Reference.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n155 + i += n156 return i, nil } @@ -7354,27 +7366,27 @@ func (m *Service) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n156, err := m.ObjectMeta.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n156 - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) - n157, err := m.Spec.MarshalTo(data[i:]) + n157, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } i += n157 - data[i] = 0x1a + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) - n158, err := m.Status.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Spec.Size())) + n158, err := m.Spec.MarshalTo(data[i:]) if err != nil { return 0, err } i += n158 + data[i] = 0x1a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Status.Size())) + n159, err := m.Status.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n159 return i, nil } @@ -7396,11 +7408,11 @@ func (m *ServiceAccount) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ObjectMeta.Size())) - n159, err := m.ObjectMeta.MarshalTo(data[i:]) + n160, err := m.ObjectMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n159 + i += n160 if len(m.Secrets) > 0 { for _, msg := range m.Secrets { data[i] = 0x12 @@ -7446,11 +7458,11 @@ func (m *ServiceAccountList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n160, err := m.ListMeta.MarshalTo(data[i:]) + n161, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n160 + i += n161 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7484,11 +7496,11 @@ func (m *ServiceList) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.ListMeta.Size())) - n161, err := m.ListMeta.MarshalTo(data[i:]) + n162, err := m.ListMeta.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n161 + i += n162 if len(m.Items) > 0 { for _, msg := range m.Items { data[i] = 0x12 @@ -7533,11 +7545,11 @@ func (m *ServicePort) MarshalTo(data []byte) (int, error) { data[i] = 0x22 i++ i = encodeVarintGenerated(data, i, uint64(m.TargetPort.Size())) - n162, err := m.TargetPort.MarshalTo(data[i:]) + n163, err := m.TargetPort.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n162 + i += n163 data[i] = 0x28 i++ i = encodeVarintGenerated(data, i, uint64(m.NodePort)) @@ -7696,11 +7708,11 @@ func (m *ServiceStatus) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.LoadBalancer.Size())) - n163, err := m.LoadBalancer.MarshalTo(data[i:]) + n164, err := m.LoadBalancer.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n163 + i += n164 return i, nil } @@ -7748,11 +7760,11 @@ func (m *TCPSocketAction) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.Port.Size())) - n164, err := m.Port.MarshalTo(data[i:]) + n165, err := m.Port.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n164 + i += n165 return i, nil } @@ -7842,11 +7854,11 @@ func (m *Volume) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.VolumeSource.Size())) - n165, err := m.VolumeSource.MarshalTo(data[i:]) + n166, err := m.VolumeSource.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n165 + i += n166 return i, nil } @@ -7907,163 +7919,163 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0xa i++ i = encodeVarintGenerated(data, i, uint64(m.HostPath.Size())) - n166, err := m.HostPath.MarshalTo(data[i:]) - if err != nil { - return 0, err - } - i += n166 - } - if m.EmptyDir != nil { - data[i] = 0x12 - i++ - i = encodeVarintGenerated(data, i, uint64(m.EmptyDir.Size())) - n167, err := m.EmptyDir.MarshalTo(data[i:]) + n167, err := m.HostPath.MarshalTo(data[i:]) if err != nil { return 0, err } i += n167 } - if m.GCEPersistentDisk != nil { - data[i] = 0x1a + if m.EmptyDir != nil { + data[i] = 0x12 i++ - i = encodeVarintGenerated(data, i, uint64(m.GCEPersistentDisk.Size())) - n168, err := m.GCEPersistentDisk.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.EmptyDir.Size())) + n168, err := m.EmptyDir.MarshalTo(data[i:]) if err != nil { return 0, err } i += n168 } - if m.AWSElasticBlockStore != nil { - data[i] = 0x22 + if m.GCEPersistentDisk != nil { + data[i] = 0x1a i++ - i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) - n169, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.GCEPersistentDisk.Size())) + n169, err := m.GCEPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } i += n169 } - if m.GitRepo != nil { - data[i] = 0x2a + if m.AWSElasticBlockStore != nil { + data[i] = 0x22 i++ - i = encodeVarintGenerated(data, i, uint64(m.GitRepo.Size())) - n170, err := m.GitRepo.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.AWSElasticBlockStore.Size())) + n170, err := m.AWSElasticBlockStore.MarshalTo(data[i:]) if err != nil { return 0, err } i += n170 } - if m.Secret != nil { - data[i] = 0x32 + if m.GitRepo != nil { + data[i] = 0x2a i++ - i = encodeVarintGenerated(data, i, uint64(m.Secret.Size())) - n171, err := m.Secret.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.GitRepo.Size())) + n171, err := m.GitRepo.MarshalTo(data[i:]) if err != nil { return 0, err } i += n171 } - if m.NFS != nil { - data[i] = 0x3a + if m.Secret != nil { + data[i] = 0x32 i++ - i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) - n172, err := m.NFS.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Secret.Size())) + n172, err := m.Secret.MarshalTo(data[i:]) if err != nil { return 0, err } i += n172 } - if m.ISCSI != nil { - data[i] = 0x42 + if m.NFS != nil { + data[i] = 0x3a i++ - i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) - n173, err := m.ISCSI.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.NFS.Size())) + n173, err := m.NFS.MarshalTo(data[i:]) if err != nil { return 0, err } i += n173 } - if m.Glusterfs != nil { - data[i] = 0x4a + if m.ISCSI != nil { + data[i] = 0x42 i++ - i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) - n174, err := m.Glusterfs.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.ISCSI.Size())) + n174, err := m.ISCSI.MarshalTo(data[i:]) if err != nil { return 0, err } i += n174 } - if m.PersistentVolumeClaim != nil { - data[i] = 0x52 + if m.Glusterfs != nil { + data[i] = 0x4a i++ - i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeClaim.Size())) - n175, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Glusterfs.Size())) + n175, err := m.Glusterfs.MarshalTo(data[i:]) if err != nil { return 0, err } i += n175 } - if m.RBD != nil { - data[i] = 0x5a + if m.PersistentVolumeClaim != nil { + data[i] = 0x52 i++ - i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) - n176, err := m.RBD.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.PersistentVolumeClaim.Size())) + n176, err := m.PersistentVolumeClaim.MarshalTo(data[i:]) if err != nil { return 0, err } i += n176 } - if m.FlexVolume != nil { - data[i] = 0x62 + if m.RBD != nil { + data[i] = 0x5a i++ - i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) - n177, err := m.FlexVolume.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.RBD.Size())) + n177, err := m.RBD.MarshalTo(data[i:]) if err != nil { return 0, err } i += n177 } - if m.Cinder != nil { - data[i] = 0x6a + if m.FlexVolume != nil { + data[i] = 0x62 i++ - i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) - n178, err := m.Cinder.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.FlexVolume.Size())) + n178, err := m.FlexVolume.MarshalTo(data[i:]) if err != nil { return 0, err } i += n178 } - if m.CephFS != nil { - data[i] = 0x72 + if m.Cinder != nil { + data[i] = 0x6a i++ - i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) - n179, err := m.CephFS.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.Cinder.Size())) + n179, err := m.Cinder.MarshalTo(data[i:]) if err != nil { return 0, err } i += n179 } - if m.Flocker != nil { - data[i] = 0x7a + if m.CephFS != nil { + data[i] = 0x72 i++ - i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) - n180, err := m.Flocker.MarshalTo(data[i:]) + i = encodeVarintGenerated(data, i, uint64(m.CephFS.Size())) + n180, err := m.CephFS.MarshalTo(data[i:]) if err != nil { return 0, err } i += n180 } + if m.Flocker != nil { + data[i] = 0x7a + i++ + i = encodeVarintGenerated(data, i, uint64(m.Flocker.Size())) + n181, err := m.Flocker.MarshalTo(data[i:]) + if err != nil { + return 0, err + } + i += n181 + } if m.DownwardAPI != nil { data[i] = 0x82 i++ data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.DownwardAPI.Size())) - n181, err := m.DownwardAPI.MarshalTo(data[i:]) + n182, err := m.DownwardAPI.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n181 + i += n182 } if m.FC != nil { data[i] = 0x8a @@ -8071,11 +8083,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.FC.Size())) - n182, err := m.FC.MarshalTo(data[i:]) + n183, err := m.FC.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n182 + i += n183 } if m.AzureFile != nil { data[i] = 0x92 @@ -8083,11 +8095,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureFile.Size())) - n183, err := m.AzureFile.MarshalTo(data[i:]) + n184, err := m.AzureFile.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n183 + i += n184 } if m.ConfigMap != nil { data[i] = 0x9a @@ -8095,11 +8107,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.ConfigMap.Size())) - n184, err := m.ConfigMap.MarshalTo(data[i:]) + n185, err := m.ConfigMap.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n184 + i += n185 } if m.VsphereVolume != nil { data[i] = 0xa2 @@ -8107,11 +8119,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.VsphereVolume.Size())) - n185, err := m.VsphereVolume.MarshalTo(data[i:]) + n186, err := m.VsphereVolume.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n185 + i += n186 } if m.Quobyte != nil { data[i] = 0xaa @@ -8119,11 +8131,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.Quobyte.Size())) - n186, err := m.Quobyte.MarshalTo(data[i:]) + n187, err := m.Quobyte.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n186 + i += n187 } if m.AzureDisk != nil { data[i] = 0xb2 @@ -8131,11 +8143,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.AzureDisk.Size())) - n187, err := m.AzureDisk.MarshalTo(data[i:]) + n188, err := m.AzureDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n187 + i += n188 } if m.PhotonPersistentDisk != nil { data[i] = 0xba @@ -8143,11 +8155,11 @@ func (m *VolumeSource) MarshalTo(data []byte) (int, error) { data[i] = 0x1 i++ i = encodeVarintGenerated(data, i, uint64(m.PhotonPersistentDisk.Size())) - n188, err := m.PhotonPersistentDisk.MarshalTo(data[i:]) + n189, err := m.PhotonPersistentDisk.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n188 + i += n189 } return i, nil } @@ -8199,11 +8211,11 @@ func (m *WeightedPodAffinityTerm) MarshalTo(data []byte) (int, error) { data[i] = 0x12 i++ i = encodeVarintGenerated(data, i, uint64(m.PodAffinityTerm.Size())) - n189, err := m.PodAffinityTerm.MarshalTo(data[i:]) + n190, err := m.PodAffinityTerm.MarshalTo(data[i:]) if err != nil { return 0, err } - i += n189 + i += n190 return i, nil } @@ -10086,6 +10098,10 @@ func (m *PodSpec) Size() (n int) { n += 2 + l + sovGenerated(uint64(l)) l = len(m.Subdomain) n += 2 + l + sovGenerated(uint64(l)) + if m.Affinity != nil { + l = m.Affinity.Size() + n += 2 + l + sovGenerated(uint64(l)) + } return n } @@ -12427,6 +12443,7 @@ func (this *PodSpec) String() string { `ImagePullSecrets:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ImagePullSecrets), "LocalObjectReference", "LocalObjectReference", 1), `&`, ``, 1) + `,`, `Hostname:` + fmt.Sprintf("%v", this.Hostname) + `,`, `Subdomain:` + fmt.Sprintf("%v", this.Subdomain) + `,`, + `Affinity:` + strings.Replace(fmt.Sprintf("%v", this.Affinity), "Affinity", "Affinity", 1) + `,`, `}`, }, "") return s @@ -31001,6 +31018,39 @@ func (m *PodSpec) Unmarshal(data []byte) error { } m.Subdomain = string(data[iNdEx:postIndex]) iNdEx = postIndex + case 18: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Affinity", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := data[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Affinity == nil { + m.Affinity = &Affinity{} + } + if err := m.Affinity.Unmarshal(data[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(data[iNdEx:]) @@ -39180,454 +39230,454 @@ var ( ) var fileDescriptorGenerated = []byte{ - // 10019 bytes of a gzipped FileDescriptorProto + // 10040 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x8c, 0x24, 0xc7, 0x75, 0x98, 0x7a, 0x66, 0xbf, 0xe6, 0xed, 0xe7, 0xd5, 0x7d, 0x70, 0xb9, 0x26, 0x6f, 0x4f, 0x4d, 0x91, 0x3a, 0x92, 0xc7, 0x5d, 0xdd, 0x91, 0x14, 0x29, 0x91, 0xa1, 0xb4, 0xbb, 0xb3, 0x7b, 0xb7, 0xba, 0xaf, 0x61, 0xcd, 0xde, 0x1d, 0x25, 0x11, 0x92, 0x7a, 0xa7, 0x6b, 0x77, 0x5b, 0xd7, 0xdb, 0x3d, 0xec, 0xee, 0xd9, 0xbb, 0xa5, 0x62, 0xc0, 0x91, 0x19, 0x1b, 0x81, 0x05, 0x47, 0x41, 0x20, - 0x24, 0x40, 0x12, 0x44, 0x09, 0x90, 0xc0, 0x89, 0x61, 0x2b, 0x8a, 0x94, 0x40, 0x8a, 0x65, 0x03, - 0x41, 0x6c, 0x47, 0x41, 0xe2, 0x40, 0xfa, 0x13, 0x1b, 0x36, 0xb0, 0x31, 0xd7, 0xf9, 0x97, 0xfc, - 0x08, 0x90, 0x5f, 0x59, 0x18, 0x49, 0x50, 0x9f, 0x5d, 0xd5, 0xd3, 0xb3, 0xdd, 0x73, 0xbc, 0x39, - 0x53, 0x46, 0xfe, 0xcd, 0xbc, 0xf7, 0xea, 0xd5, 0x47, 0xbf, 0x7a, 0xf5, 0xea, 0xd5, 0xab, 0x57, - 0x70, 0xe1, 0xee, 0xab, 0xf1, 0x82, 0x17, 0x2e, 0xde, 0xed, 0x6c, 0x92, 0x28, 0x20, 0x09, 0x89, - 0x17, 0xdb, 0x77, 0xb7, 0x17, 0x9d, 0xb6, 0xb7, 0xb8, 0x77, 0x71, 0x71, 0x9b, 0x04, 0x24, 0x72, - 0x12, 0xe2, 0x2e, 0xb4, 0xa3, 0x30, 0x09, 0xd1, 0x13, 0x9c, 0x7a, 0x21, 0xa5, 0x5e, 0x68, 0xdf, - 0xdd, 0x5e, 0x70, 0xda, 0xde, 0xc2, 0xde, 0xc5, 0xb9, 0x17, 0xb6, 0xbd, 0x64, 0xa7, 0xb3, 0xb9, - 0xd0, 0x0a, 0x77, 0x17, 0xb7, 0xc3, 0xed, 0x70, 0x91, 0x15, 0xda, 0xec, 0x6c, 0xb1, 0x7f, 0xec, - 0x0f, 0xfb, 0xc5, 0x99, 0xcd, 0x5d, 0xea, 0x5d, 0x75, 0x44, 0xe2, 0xb0, 0x13, 0xb5, 0x48, 0xb6, - 0x01, 0xc7, 0x94, 0x89, 0x17, 0x77, 0x49, 0xe2, 0xe4, 0x34, 0x7a, 0xee, 0x85, 0xfc, 0x32, 0x51, - 0x27, 0x48, 0xbc, 0xdd, 0xee, 0x2a, 0x5e, 0x3a, 0x9e, 0x3c, 0x6e, 0xed, 0x90, 0x5d, 0xa7, 0xab, - 0xd4, 0xc5, 0xfc, 0x52, 0x9d, 0xc4, 0xf3, 0x17, 0xbd, 0x20, 0x89, 0x93, 0x28, 0x5b, 0xc4, 0xfe, - 0x43, 0x0b, 0xce, 0x2d, 0xdd, 0x69, 0xae, 0xfa, 0x4e, 0x9c, 0x78, 0xad, 0x65, 0x3f, 0x6c, 0xdd, - 0x6d, 0x26, 0x61, 0x44, 0x6e, 0x87, 0x7e, 0x67, 0x97, 0x34, 0xd9, 0x00, 0xa0, 0x0b, 0x30, 0xb6, - 0xc7, 0xfe, 0xaf, 0xd7, 0x67, 0xad, 0x73, 0xd6, 0xf9, 0xda, 0xf2, 0xcc, 0x8f, 0x0f, 0xe6, 0x3f, - 0x72, 0x78, 0x30, 0x3f, 0x76, 0x5b, 0xc0, 0xb1, 0xa2, 0x40, 0xcf, 0xc0, 0xc8, 0x56, 0xbc, 0xb1, - 0xdf, 0x26, 0xb3, 0x15, 0x46, 0x3b, 0x25, 0x68, 0x47, 0xd6, 0x9a, 0x14, 0x8a, 0x05, 0x16, 0x2d, - 0x42, 0xad, 0xed, 0x44, 0x89, 0x97, 0x78, 0x61, 0x30, 0x5b, 0x3d, 0x67, 0x9d, 0x1f, 0x5e, 0x3e, - 0x21, 0x48, 0x6b, 0x0d, 0x89, 0xc0, 0x29, 0x0d, 0x6d, 0x46, 0x44, 0x1c, 0xf7, 0x66, 0xe0, 0xef, - 0xcf, 0x0e, 0x9d, 0xb3, 0xce, 0x8f, 0xa5, 0xcd, 0xc0, 0x02, 0x8e, 0x15, 0x85, 0xfd, 0x83, 0x0a, - 0x8c, 0x2d, 0x6d, 0x6d, 0x79, 0x81, 0x97, 0xec, 0xa3, 0xaf, 0xc0, 0x44, 0x10, 0xba, 0x44, 0xfe, - 0x67, 0xbd, 0x18, 0xbf, 0xf4, 0xdc, 0xc2, 0x71, 0xa2, 0xb4, 0x70, 0x43, 0x2b, 0xb1, 0x3c, 0x73, - 0x78, 0x30, 0x3f, 0xa1, 0x43, 0xb0, 0xc1, 0x11, 0xbd, 0x0d, 0xe3, 0xed, 0xd0, 0x55, 0x15, 0x54, - 0x58, 0x05, 0xcf, 0x1e, 0x5f, 0x41, 0x23, 0x2d, 0xb0, 0x3c, 0x7d, 0x78, 0x30, 0x3f, 0xae, 0x01, - 0xb0, 0xce, 0x0e, 0xf9, 0x30, 0x4d, 0xff, 0x06, 0x89, 0xa7, 0x6a, 0xa8, 0xb2, 0x1a, 0x5e, 0x28, - 0xae, 0x41, 0x2b, 0xb4, 0x7c, 0xf2, 0xf0, 0x60, 0x7e, 0x3a, 0x03, 0xc4, 0x59, 0xd6, 0xf6, 0xbb, - 0x30, 0xb5, 0x94, 0x24, 0x4e, 0x6b, 0x87, 0xb8, 0xfc, 0xfb, 0xa2, 0x97, 0x60, 0x28, 0x70, 0x76, - 0x89, 0xf8, 0xfa, 0xe7, 0xc4, 0xb0, 0x0f, 0xdd, 0x70, 0x76, 0xc9, 0xd1, 0xc1, 0xfc, 0xcc, 0xad, - 0xc0, 0x7b, 0xa7, 0x23, 0x64, 0x86, 0xc2, 0x30, 0xa3, 0x46, 0x97, 0x00, 0x5c, 0xb2, 0xe7, 0xb5, - 0x48, 0xc3, 0x49, 0x76, 0x84, 0x34, 0x20, 0x51, 0x16, 0xea, 0x0a, 0x83, 0x35, 0x2a, 0xfb, 0xeb, - 0x16, 0xd4, 0x96, 0xf6, 0x42, 0xcf, 0x6d, 0x84, 0x6e, 0x8c, 0x3a, 0x30, 0xdd, 0x8e, 0xc8, 0x16, - 0x89, 0x14, 0x68, 0xd6, 0x3a, 0x57, 0x3d, 0x3f, 0x7e, 0xe9, 0x52, 0x41, 0xbf, 0xcd, 0x42, 0xab, - 0x41, 0x12, 0xed, 0x2f, 0x3f, 0x26, 0xaa, 0x9e, 0xce, 0x60, 0x71, 0xb6, 0x0e, 0xfb, 0x6f, 0x55, - 0xe0, 0xf4, 0xd2, 0xbb, 0x9d, 0x88, 0xd4, 0xbd, 0xf8, 0x6e, 0x76, 0x2a, 0xb8, 0x5e, 0x7c, 0xf7, - 0x46, 0x3a, 0x18, 0x4a, 0x06, 0xeb, 0x02, 0x8e, 0x15, 0x05, 0x7a, 0x01, 0x46, 0xe9, 0xef, 0x5b, - 0x78, 0x5d, 0xf4, 0xfe, 0xa4, 0x20, 0x1e, 0xaf, 0x3b, 0x89, 0x53, 0xe7, 0x28, 0x2c, 0x69, 0xd0, - 0x75, 0x18, 0x6f, 0x39, 0xad, 0x1d, 0x2f, 0xd8, 0xbe, 0x1e, 0xba, 0x84, 0x7d, 0xe1, 0xda, 0xf2, - 0xf3, 0x94, 0x7c, 0x25, 0x05, 0x1f, 0x1d, 0xcc, 0xcf, 0xf2, 0xb6, 0x09, 0x16, 0x1a, 0x0e, 0xeb, - 0xe5, 0x91, 0xad, 0x26, 0xe2, 0x10, 0xe3, 0x04, 0x39, 0x93, 0xf0, 0xbc, 0x36, 0xa7, 0x86, 0xd9, - 0x9c, 0x9a, 0xe8, 0x31, 0x9f, 0xfe, 0xb9, 0x25, 0xc6, 0x64, 0xcd, 0xf3, 0x4d, 0xf5, 0x70, 0x09, - 0x20, 0x26, 0xad, 0x88, 0x24, 0xda, 0xa8, 0xa8, 0xcf, 0xdc, 0x54, 0x18, 0xac, 0x51, 0xd1, 0xc9, - 0x1f, 0xef, 0x38, 0x11, 0x93, 0x16, 0x31, 0x36, 0x6a, 0xf2, 0x37, 0x25, 0x02, 0xa7, 0x34, 0xc6, - 0xe4, 0xaf, 0x16, 0x4e, 0xfe, 0x7f, 0x63, 0xc1, 0xe8, 0xb2, 0x17, 0xb8, 0x5e, 0xb0, 0x8d, 0xde, - 0x82, 0x31, 0xaa, 0x95, 0x5d, 0x27, 0x71, 0xc4, 0xbc, 0x3f, 0x7f, 0xbc, 0xf0, 0xdc, 0xdc, 0xfc, - 0x2a, 0x69, 0x25, 0xd7, 0x49, 0xe2, 0xa4, 0xdd, 0x48, 0x61, 0x58, 0x71, 0x43, 0xb7, 0x60, 0x24, - 0x71, 0xa2, 0x6d, 0x92, 0x88, 0xe9, 0xfe, 0x42, 0x19, 0xbe, 0x98, 0x8a, 0x1a, 0x09, 0x5a, 0x24, - 0x55, 0x8c, 0x1b, 0x8c, 0x09, 0x16, 0xcc, 0xec, 0x16, 0x4c, 0xac, 0x38, 0x6d, 0x67, 0xd3, 0xf3, - 0xbd, 0xc4, 0x23, 0x31, 0xfa, 0x38, 0x54, 0x1d, 0xd7, 0x65, 0x82, 0x5f, 0x5b, 0x3e, 0x7d, 0x78, - 0x30, 0x5f, 0x5d, 0x72, 0xdd, 0xa3, 0x83, 0x79, 0x50, 0x54, 0xfb, 0x98, 0x52, 0xa0, 0xe7, 0x60, - 0xc8, 0x8d, 0xc2, 0xf6, 0x6c, 0x85, 0x51, 0x9e, 0xa1, 0x33, 0xb4, 0x1e, 0x85, 0xed, 0x0c, 0x29, - 0xa3, 0xb1, 0x7f, 0xaf, 0x02, 0x68, 0x85, 0xb4, 0x77, 0xd6, 0x9a, 0xc6, 0xb7, 0x3c, 0x0f, 0x63, - 0xbb, 0x61, 0xe0, 0x25, 0x61, 0x14, 0x8b, 0x0a, 0x99, 0x3c, 0x5c, 0x17, 0x30, 0xac, 0xb0, 0xe8, - 0x1c, 0x0c, 0xb5, 0xd3, 0x69, 0x3d, 0x21, 0x55, 0x02, 0x9b, 0xd0, 0x0c, 0x43, 0x29, 0x3a, 0x31, - 0x89, 0x84, 0x1c, 0x2b, 0x8a, 0x5b, 0x31, 0x89, 0x30, 0xc3, 0xa4, 0x92, 0x43, 0x65, 0x4a, 0x48, - 0x69, 0x46, 0x72, 0x28, 0x06, 0x6b, 0x54, 0xe8, 0xcb, 0x50, 0xe3, 0xff, 0x30, 0xd9, 0x62, 0x22, - 0x5b, 0xa8, 0x0c, 0xae, 0x85, 0x2d, 0xc7, 0xcf, 0x0e, 0xfe, 0x24, 0x93, 0x34, 0xc9, 0x08, 0xa7, - 0x3c, 0x0d, 0x49, 0x1b, 0x29, 0x94, 0xb4, 0xbf, 0x6b, 0x01, 0x5a, 0xf1, 0x02, 0x97, 0x44, 0x8f, - 0x60, 0xc9, 0xec, 0x6f, 0x12, 0xfc, 0x09, 0x6d, 0x5a, 0xb8, 0xdb, 0x0e, 0x03, 0x12, 0x24, 0x2b, - 0x61, 0xe0, 0xf2, 0x65, 0xf4, 0xd3, 0x30, 0x94, 0xd0, 0xaa, 0x78, 0xb3, 0x9e, 0x91, 0x9f, 0x85, - 0x56, 0x70, 0x74, 0x30, 0x7f, 0xa6, 0xbb, 0x04, 0x6b, 0x02, 0x2b, 0x83, 0x3e, 0x05, 0x23, 0x71, - 0xe2, 0x24, 0x9d, 0x58, 0x34, 0xf4, 0xa3, 0xb2, 0xa1, 0x4d, 0x06, 0x3d, 0x3a, 0x98, 0x9f, 0x56, - 0xc5, 0x38, 0x08, 0x8b, 0x02, 0xe8, 0x59, 0x18, 0xdd, 0x25, 0x71, 0xec, 0x6c, 0x4b, 0xc5, 0x36, - 0x2d, 0xca, 0x8e, 0x5e, 0xe7, 0x60, 0x2c, 0xf1, 0xe8, 0x29, 0x18, 0x26, 0x51, 0x14, 0x46, 0x42, - 0x22, 0x26, 0x05, 0xe1, 0xf0, 0x2a, 0x05, 0x62, 0x8e, 0xb3, 0x7f, 0x6a, 0xc1, 0xb4, 0x6a, 0x2b, - 0xaf, 0x6b, 0x80, 0x53, 0xdd, 0x05, 0x68, 0xc9, 0x8e, 0xc5, 0x6c, 0x82, 0x8d, 0x5f, 0xfa, 0xc4, - 0xf1, 0xbc, 0xbb, 0x07, 0x32, 0xad, 0x43, 0x81, 0x62, 0xac, 0xf1, 0xb5, 0x7f, 0xcf, 0x82, 0x93, - 0x99, 0x3e, 0x5d, 0xf3, 0xe2, 0x04, 0x7d, 0xa1, 0xab, 0x5f, 0x17, 0x7a, 0xd7, 0x1d, 0x2f, 0x50, - 0x5a, 0x26, 0xf8, 0x5e, 0xcc, 0xfb, 0xa6, 0xa4, 0x44, 0x42, 0xb4, 0x9e, 0x61, 0x18, 0xf6, 0x12, - 0xb2, 0x2b, 0x3b, 0xf5, 0x42, 0xc9, 0x4e, 0xf1, 0xd6, 0xa5, 0xdf, 0x66, 0x9d, 0xf2, 0xc0, 0x9c, - 0x95, 0xfd, 0xbf, 0x2c, 0xa8, 0xad, 0x84, 0xc1, 0x96, 0xb7, 0x7d, 0xdd, 0x69, 0x0f, 0xf0, 0xab, - 0x34, 0x61, 0x88, 0x71, 0xe5, 0x4d, 0xbf, 0x58, 0xd4, 0x74, 0xd1, 0xa0, 0x05, 0xba, 0x72, 0x72, - 0x93, 0x40, 0x29, 0x25, 0x0a, 0xc2, 0x8c, 0xd9, 0xdc, 0x2b, 0x50, 0x53, 0x04, 0x68, 0x06, 0xaa, - 0x77, 0x09, 0xb7, 0x17, 0x6b, 0x98, 0xfe, 0x44, 0xa7, 0x60, 0x78, 0xcf, 0xf1, 0x3b, 0x62, 0xaa, - 0x62, 0xfe, 0xe7, 0xd3, 0x95, 0x57, 0x2d, 0xfb, 0x47, 0x16, 0x9c, 0x52, 0x95, 0x5c, 0x25, 0xfb, - 0x4d, 0xe2, 0x93, 0x56, 0x12, 0x46, 0xe8, 0x3d, 0x0b, 0x4e, 0xf9, 0x39, 0x4a, 0x48, 0x8c, 0xc6, - 0x83, 0xa8, 0xaf, 0x27, 0x44, 0xc3, 0x4f, 0xe5, 0x61, 0x71, 0x6e, 0x6d, 0xe8, 0x49, 0xde, 0x17, - 0x3e, 0x73, 0xc7, 0x05, 0x83, 0xea, 0x55, 0xb2, 0xcf, 0x3a, 0x66, 0xff, 0xd0, 0x82, 0x49, 0xd5, - 0xfc, 0x81, 0x8b, 0xdd, 0x35, 0x53, 0xec, 0x3e, 0x5e, 0xf2, 0xdb, 0xf5, 0x10, 0xb8, 0x7f, 0x58, - 0x81, 0xd3, 0x8a, 0xc6, 0x50, 0xc4, 0x1f, 0x92, 0xb1, 0xef, 0xaf, 0xbb, 0x57, 0xc9, 0xfe, 0x46, - 0x48, 0x57, 0xd2, 0xfc, 0xee, 0xa2, 0x8b, 0x30, 0xee, 0x92, 0x2d, 0xa7, 0xe3, 0x27, 0xca, 0x50, - 0x1c, 0xe6, 0x3b, 0x88, 0x7a, 0x0a, 0xc6, 0x3a, 0x8d, 0xfd, 0x07, 0x35, 0x36, 0x25, 0x13, 0xc7, - 0x0b, 0x48, 0x44, 0x97, 0x66, 0xcd, 0x9e, 0x9f, 0xd0, 0xed, 0x79, 0x61, 0xbb, 0x3f, 0x05, 0xc3, - 0xde, 0x2e, 0x55, 0xd6, 0x15, 0x53, 0x07, 0xaf, 0x53, 0x20, 0xe6, 0x38, 0xf4, 0x34, 0x8c, 0xb6, - 0xc2, 0xdd, 0x5d, 0x27, 0x70, 0x67, 0xab, 0xcc, 0x58, 0x18, 0xa7, 0xfa, 0x7c, 0x85, 0x83, 0xb0, - 0xc4, 0xa1, 0x27, 0x60, 0xc8, 0x89, 0xb6, 0xe3, 0xd9, 0x21, 0x46, 0x33, 0x46, 0x6b, 0x5a, 0x8a, - 0xb6, 0x63, 0xcc, 0xa0, 0xd4, 0x08, 0xb8, 0x17, 0x46, 0x77, 0xbd, 0x60, 0xbb, 0xee, 0x45, 0x6c, - 0x45, 0xd7, 0x8c, 0x80, 0x3b, 0x0a, 0x83, 0x35, 0x2a, 0xd4, 0x80, 0xe1, 0x76, 0x18, 0x25, 0xf1, - 0xec, 0x08, 0x1b, 0xce, 0xe7, 0x0b, 0xa5, 0x87, 0xf7, 0xbb, 0x11, 0x46, 0x49, 0xda, 0x15, 0xfa, - 0x2f, 0xc6, 0x9c, 0x11, 0x5a, 0x81, 0x2a, 0x09, 0xf6, 0x66, 0x47, 0x19, 0xbf, 0x8f, 0x1d, 0xcf, - 0x6f, 0x35, 0xd8, 0xbb, 0xed, 0x44, 0xe9, 0x14, 0x5a, 0x0d, 0xf6, 0x30, 0x2d, 0x8d, 0x5a, 0x50, - 0x93, 0x5e, 0x83, 0x78, 0x76, 0xac, 0x8c, 0x80, 0x61, 0x41, 0x8e, 0xc9, 0x3b, 0x1d, 0x2f, 0x22, - 0xbb, 0x24, 0x48, 0xe2, 0xd4, 0x12, 0x96, 0xd8, 0x18, 0xa7, 0x7c, 0x51, 0x0b, 0x26, 0xb8, 0xe1, - 0x70, 0x3d, 0xec, 0x04, 0x49, 0x3c, 0x5b, 0x63, 0x4d, 0x2e, 0xd8, 0x6a, 0xde, 0x4e, 0x4b, 0x2c, - 0x9f, 0x12, 0xec, 0x27, 0x34, 0x60, 0x8c, 0x0d, 0xa6, 0xe8, 0x6d, 0x98, 0xf4, 0xbd, 0x3d, 0x12, - 0x90, 0x38, 0x6e, 0x44, 0xe1, 0x26, 0x99, 0x05, 0xd6, 0x9b, 0xa7, 0x8a, 0xb6, 0x5d, 0xe1, 0x26, - 0x59, 0x3e, 0x71, 0x78, 0x30, 0x3f, 0x79, 0x4d, 0x2f, 0x8d, 0x4d, 0x66, 0xe8, 0xcb, 0x30, 0x45, - 0xad, 0x14, 0x2f, 0x65, 0x3f, 0x5e, 0x9e, 0x3d, 0x3a, 0x3c, 0x98, 0x9f, 0xc2, 0x46, 0x71, 0x9c, - 0x61, 0x87, 0x36, 0xa0, 0xe6, 0x7b, 0x5b, 0xa4, 0xb5, 0xdf, 0xf2, 0xc9, 0xec, 0x04, 0xe3, 0x5d, - 0x30, 0xe5, 0xae, 0x49, 0x72, 0x6e, 0x19, 0xaa, 0xbf, 0x38, 0x65, 0x84, 0x6e, 0xc3, 0x99, 0x84, - 0x44, 0xbb, 0x5e, 0xe0, 0xd0, 0xe5, 0x5a, 0x98, 0x2d, 0x6c, 0x6f, 0x3b, 0xc9, 0xa4, 0xf6, 0xac, - 0x18, 0xd8, 0x33, 0x1b, 0xb9, 0x54, 0xb8, 0x47, 0x69, 0x74, 0x13, 0xa6, 0xd9, 0x7c, 0x6a, 0x74, - 0x7c, 0xbf, 0x11, 0xfa, 0x5e, 0x6b, 0x7f, 0x76, 0x8a, 0x31, 0x7c, 0x5a, 0xee, 0x58, 0xd7, 0x4d, - 0x34, 0xb5, 0xe8, 0xd3, 0x7f, 0x38, 0x5b, 0x1a, 0xf9, 0x30, 0x1d, 0x93, 0x56, 0x27, 0xf2, 0x92, - 0x7d, 0x2a, 0xfb, 0xe4, 0x7e, 0x32, 0x3b, 0x5d, 0x66, 0x87, 0xd2, 0x34, 0x0b, 0x71, 0x77, 0x41, - 0x06, 0x88, 0xb3, 0xac, 0xa9, 0xaa, 0x88, 0x13, 0xd7, 0x0b, 0x66, 0x67, 0x98, 0x49, 0xaa, 0xe6, - 0x57, 0x93, 0x02, 0x31, 0xc7, 0xb1, 0x0d, 0x1f, 0xfd, 0x71, 0x93, 0xea, 0xde, 0x13, 0x8c, 0x30, - 0xdd, 0xf0, 0x49, 0x04, 0x4e, 0x69, 0xe8, 0x6a, 0x95, 0x24, 0xfb, 0xb3, 0x88, 0x91, 0xaa, 0xa9, - 0xb6, 0xb1, 0xf1, 0x79, 0x4c, 0xe1, 0xf6, 0x26, 0x4c, 0xa9, 0x69, 0xcd, 0x46, 0x07, 0xcd, 0xc3, - 0x30, 0xd5, 0x5c, 0x72, 0xdf, 0x52, 0xa3, 0x4d, 0xa0, 0x0a, 0x2d, 0xc6, 0x1c, 0xce, 0x9a, 0xe0, - 0xbd, 0x4b, 0x96, 0xf7, 0x13, 0xc2, 0xed, 0xd7, 0xaa, 0xd6, 0x04, 0x89, 0xc0, 0x29, 0x8d, 0xfd, - 0x7f, 0xf8, 0x8a, 0x98, 0xea, 0x8e, 0x12, 0x7a, 0xf3, 0x02, 0x8c, 0xed, 0x84, 0x71, 0x42, 0xa9, - 0x59, 0x1d, 0xc3, 0xe9, 0x2a, 0x78, 0x45, 0xc0, 0xb1, 0xa2, 0x40, 0xaf, 0xc1, 0x64, 0x4b, 0xaf, - 0x40, 0xa8, 0xf2, 0xd3, 0xa2, 0x88, 0x59, 0x3b, 0x36, 0x69, 0xd1, 0xab, 0x30, 0xc6, 0x9c, 0x78, - 0xad, 0xd0, 0x17, 0x96, 0xb2, 0x5c, 0x99, 0xc6, 0x1a, 0x02, 0x7e, 0xa4, 0xfd, 0xc6, 0x8a, 0x9a, - 0xee, 0x37, 0x68, 0x13, 0xd6, 0x1b, 0x42, 0xdd, 0xaa, 0xfd, 0xc6, 0x15, 0x06, 0xc5, 0x02, 0x6b, - 0xff, 0x8b, 0x8a, 0x36, 0xca, 0xd4, 0xe2, 0x23, 0xe8, 0x0b, 0x30, 0x7a, 0xcf, 0xf1, 0x12, 0x2f, - 0xd8, 0x16, 0x2b, 0xe8, 0x8b, 0x25, 0x75, 0x2f, 0x2b, 0x7e, 0x87, 0x17, 0xe5, 0xeb, 0x84, 0xf8, - 0x83, 0x25, 0x43, 0xca, 0x3b, 0xea, 0x04, 0x01, 0xe5, 0x5d, 0xe9, 0x9f, 0x37, 0xe6, 0x45, 0x39, - 0x6f, 0xf1, 0x07, 0x4b, 0x86, 0x68, 0x0b, 0x40, 0xce, 0x3e, 0xe2, 0x0a, 0xe7, 0xd9, 0x27, 0xfb, - 0x61, 0xbf, 0xa1, 0x4a, 0x2f, 0x4f, 0xd1, 0x95, 0x29, 0xfd, 0x8f, 0x35, 0xce, 0x76, 0xc4, 0x0c, - 0x91, 0xee, 0x66, 0xa1, 0xcf, 0xd3, 0x09, 0xe0, 0x44, 0x09, 0x71, 0x97, 0x92, 0x62, 0x33, 0x38, - 0xb5, 0xa6, 0x36, 0xbc, 0x5d, 0xa2, 0x4f, 0x15, 0xc1, 0x02, 0xa7, 0xdc, 0xec, 0xef, 0x55, 0x61, - 0xb6, 0x57, 0x63, 0xa9, 0x40, 0x92, 0xfb, 0x5e, 0xb2, 0x42, 0x0d, 0x05, 0xcb, 0x14, 0xc8, 0x55, - 0x01, 0xc7, 0x8a, 0x82, 0x4a, 0x46, 0xec, 0x6d, 0x07, 0x8e, 0x2f, 0x84, 0x57, 0x49, 0x46, 0x93, - 0x41, 0xb1, 0xc0, 0x52, 0xba, 0x88, 0x38, 0xb1, 0xf0, 0xdc, 0x6a, 0x12, 0x84, 0x19, 0x14, 0x0b, - 0xac, 0xbe, 0xeb, 0x1b, 0x2a, 0xd8, 0xf5, 0x19, 0x03, 0x34, 0xfc, 0x30, 0x07, 0x08, 0xbd, 0x0d, - 0xb0, 0xe5, 0x05, 0x5e, 0xbc, 0xc3, 0x78, 0x8f, 0xf4, 0xc9, 0x5b, 0x19, 0x23, 0x6b, 0x8a, 0x07, - 0xd6, 0xf8, 0xa1, 0x97, 0x61, 0x5c, 0x4d, 0xcc, 0xf5, 0xfa, 0xec, 0xa8, 0xe9, 0xe9, 0x4b, 0xb5, - 0x54, 0x1d, 0xeb, 0x74, 0xf6, 0x57, 0xb3, 0x92, 0x22, 0xe6, 0x83, 0x36, 0xb6, 0x56, 0xd9, 0xb1, - 0xad, 0x1c, 0x3f, 0xb6, 0xf6, 0x7f, 0xa9, 0xd2, 0xcd, 0xb2, 0x56, 0x59, 0x27, 0x2e, 0xa1, 0xcb, - 0xde, 0xa4, 0x8a, 0xdd, 0x49, 0x88, 0x98, 0x8d, 0x17, 0xfa, 0x99, 0x2e, 0xfa, 0x32, 0x40, 0x67, - 0x01, 0xe7, 0x84, 0x76, 0xa0, 0xe6, 0x3b, 0x31, 0xdb, 0x3d, 0x12, 0x31, 0x0b, 0xfb, 0x63, 0x9b, - 0x1a, 0xdf, 0x4e, 0x9c, 0x68, 0xeb, 0x2c, 0xaf, 0x25, 0x65, 0x4e, 0x57, 0x25, 0x6a, 0x14, 0xc8, - 0xa3, 0x02, 0xd5, 0x1c, 0x6a, 0x39, 0xec, 0x63, 0x8e, 0x43, 0xaf, 0xc2, 0x44, 0x44, 0x98, 0x9c, - 0xac, 0x50, 0xbb, 0x87, 0x89, 0xdd, 0x70, 0x6a, 0x20, 0x61, 0x0d, 0x87, 0x0d, 0xca, 0xd4, 0x3e, - 0x1e, 0x39, 0xc6, 0x3e, 0x7e, 0x16, 0x46, 0xd9, 0x0f, 0x25, 0x15, 0xea, 0x0b, 0xad, 0x73, 0x30, - 0x96, 0xf8, 0xac, 0x10, 0x8d, 0x95, 0x14, 0xa2, 0xe7, 0x60, 0xaa, 0xee, 0x90, 0xdd, 0x30, 0x58, - 0x0d, 0xdc, 0x76, 0xe8, 0x05, 0x09, 0x9a, 0x85, 0x21, 0xb6, 0x92, 0xf0, 0xb9, 0x3e, 0x44, 0x39, - 0xe0, 0x21, 0x6a, 0xe3, 0xda, 0xff, 0xd7, 0x82, 0xc9, 0x3a, 0xf1, 0x49, 0x42, 0x6e, 0xb6, 0x99, - 0xbf, 0x01, 0xad, 0x01, 0xda, 0x8e, 0x9c, 0x16, 0x69, 0x90, 0xc8, 0x0b, 0xdd, 0x26, 0x69, 0x85, - 0x01, 0xf3, 0xb0, 0xd3, 0xa5, 0xf1, 0xcc, 0xe1, 0xc1, 0x3c, 0xba, 0xdc, 0x85, 0xc5, 0x39, 0x25, - 0x90, 0x0b, 0x93, 0xed, 0x88, 0x18, 0x0e, 0x12, 0xab, 0xd8, 0x2c, 0x6f, 0xe8, 0x45, 0xb8, 0xd5, - 0x68, 0x80, 0xb0, 0xc9, 0x14, 0x7d, 0x16, 0x66, 0xc2, 0xa8, 0xbd, 0xe3, 0x04, 0x75, 0xd2, 0x26, - 0x81, 0x4b, 0x4d, 0x65, 0xe1, 0x05, 0x3b, 0x75, 0x78, 0x30, 0x3f, 0x73, 0x33, 0x83, 0xc3, 0x5d, - 0xd4, 0xf6, 0xaf, 0x57, 0xe0, 0x74, 0x3d, 0xbc, 0x17, 0xdc, 0x73, 0x22, 0x77, 0xa9, 0xb1, 0xce, - 0xed, 0x5f, 0xe6, 0x55, 0x94, 0xde, 0x4c, 0xab, 0xa7, 0x37, 0xf3, 0x8b, 0x30, 0xb6, 0xe5, 0x11, - 0xdf, 0xc5, 0x64, 0x4b, 0x74, 0xef, 0x62, 0x19, 0x2f, 0xc6, 0x1a, 0x2d, 0x23, 0x3d, 0x01, 0xdc, - 0x99, 0xba, 0x26, 0xd8, 0x60, 0xc5, 0x10, 0x75, 0x60, 0x46, 0x1a, 0xf8, 0x12, 0x2b, 0x66, 0xc7, - 0x8b, 0xe5, 0xf6, 0x0f, 0x66, 0x35, 0x6c, 0x3c, 0x70, 0x86, 0x21, 0xee, 0xaa, 0x82, 0x6e, 0xcc, - 0x76, 0xe9, 0xba, 0x30, 0xc4, 0x64, 0x85, 0x6d, 0xcc, 0xd8, 0xce, 0x91, 0x41, 0xed, 0x7f, 0x6a, - 0xc1, 0x63, 0x5d, 0xa3, 0x25, 0xb6, 0xd5, 0x6f, 0xc9, 0xfd, 0x2c, 0x3f, 0x8e, 0x29, 0x68, 0x65, - 0xee, 0x98, 0x97, 0xdb, 0xdb, 0x56, 0x4a, 0xec, 0x6d, 0x6f, 0xc2, 0xa9, 0xd5, 0xdd, 0x76, 0xb2, - 0x5f, 0xf7, 0x4c, 0x27, 0xec, 0x2b, 0x30, 0xb2, 0x4b, 0x5c, 0xaf, 0xb3, 0x2b, 0x3e, 0xeb, 0xbc, - 0x54, 0xa4, 0xd7, 0x19, 0xf4, 0xe8, 0x60, 0x7e, 0xb2, 0x99, 0x84, 0x91, 0xb3, 0x4d, 0x38, 0x00, - 0x0b, 0x72, 0xfb, 0x7d, 0x0b, 0xa6, 0xe5, 0x84, 0x5a, 0x72, 0xdd, 0x88, 0xc4, 0x31, 0x9a, 0x83, - 0x8a, 0xd7, 0x16, 0x8c, 0x40, 0x30, 0xaa, 0xac, 0x37, 0x70, 0xc5, 0x6b, 0xa3, 0x2f, 0x40, 0x8d, - 0xfb, 0xee, 0x53, 0xe1, 0xe8, 0xf3, 0x2c, 0x80, 0x6d, 0x3a, 0x36, 0x24, 0x0f, 0x9c, 0xb2, 0x93, - 0x06, 0x25, 0x53, 0xd5, 0x55, 0xd3, 0x93, 0x7c, 0x45, 0xc0, 0xb1, 0xa2, 0x40, 0xe7, 0x61, 0x2c, - 0x08, 0x5d, 0x7e, 0xac, 0xc2, 0x17, 0x5c, 0x26, 0x72, 0x37, 0x04, 0x0c, 0x2b, 0xac, 0xfd, 0x0d, - 0x0b, 0x26, 0x64, 0x1f, 0x4b, 0xda, 0xb6, 0x74, 0x92, 0xa4, 0x76, 0x6d, 0x3a, 0x49, 0xa8, 0x6d, - 0xca, 0x30, 0x86, 0x49, 0x5a, 0xed, 0xc7, 0x24, 0xb5, 0x7f, 0x58, 0x81, 0x29, 0xd9, 0x9c, 0x66, - 0x67, 0x33, 0x26, 0x09, 0xfa, 0x12, 0xd4, 0x1c, 0x3e, 0xf8, 0x44, 0xca, 0xd9, 0x0b, 0x45, 0x1b, - 0x73, 0xe3, 0x9b, 0xa5, 0x56, 0xc1, 0x92, 0xe4, 0x83, 0x53, 0x96, 0x68, 0x0f, 0x4e, 0x04, 0x61, - 0xc2, 0xd6, 0x03, 0x85, 0x2f, 0xe7, 0x05, 0xcd, 0xd6, 0xf3, 0xb8, 0xa8, 0xe7, 0xc4, 0x8d, 0x2c, - 0x3f, 0xdc, 0x5d, 0x05, 0xba, 0x29, 0x9d, 0x17, 0x55, 0x56, 0xd7, 0x73, 0xe5, 0xea, 0xea, 0xed, - 0xbb, 0xb0, 0x7f, 0xc7, 0x82, 0x9a, 0x24, 0x1b, 0xa4, 0x13, 0xfc, 0x0e, 0x8c, 0xc6, 0xec, 0xd3, - 0xc8, 0x61, 0xba, 0x50, 0xae, 0xe9, 0xfc, 0x7b, 0xa6, 0x8b, 0x1f, 0xff, 0x1f, 0x63, 0xc9, 0x8d, - 0xb9, 0x1e, 0x55, 0x07, 0x3e, 0x64, 0xae, 0x47, 0xd5, 0xae, 0x1e, 0xae, 0xc7, 0x5f, 0xb3, 0x60, - 0x84, 0x3b, 0x84, 0xca, 0x79, 0xd5, 0x34, 0xe7, 0x71, 0xca, 0xf1, 0x36, 0x05, 0x0a, 0x5f, 0x32, - 0xba, 0x03, 0x35, 0xf6, 0x63, 0x2d, 0x0a, 0x77, 0xc5, 0x2a, 0xf0, 0x5c, 0x19, 0x87, 0x14, 0xd7, - 0x7a, 0x5c, 0x95, 0xdc, 0x96, 0x0c, 0x70, 0xca, 0xcb, 0xfe, 0x51, 0x95, 0x4e, 0xf9, 0x94, 0xd4, - 0x58, 0xd3, 0xac, 0x47, 0xb1, 0xa6, 0x55, 0x06, 0xbf, 0xa6, 0xbd, 0x03, 0xd3, 0x2d, 0xcd, 0x09, - 0x9f, 0xae, 0xa4, 0x97, 0x4a, 0xba, 0x98, 0x35, 0xcf, 0x3d, 0x77, 0x80, 0xac, 0x98, 0xec, 0x70, - 0x96, 0x3f, 0x22, 0x30, 0xc1, 0x8f, 0x0f, 0x45, 0x7d, 0x43, 0xac, 0xbe, 0xc5, 0x42, 0x5f, 0x0b, - 0x2f, 0xa1, 0x2a, 0x63, 0x21, 0x26, 0x4d, 0x8d, 0x11, 0x36, 0xd8, 0xda, 0xbf, 0x3a, 0x0c, 0xc3, - 0xab, 0x7b, 0x24, 0x48, 0x06, 0x38, 0xc5, 0x77, 0x61, 0xca, 0x0b, 0xf6, 0x42, 0x7f, 0x8f, 0xb8, - 0x1c, 0xff, 0x60, 0xcb, 0xd9, 0x19, 0x51, 0xc9, 0xd4, 0xba, 0xc1, 0x0c, 0x67, 0x98, 0x0f, 0x62, - 0x1b, 0xf9, 0x26, 0x8c, 0x70, 0x89, 0x10, 0x7b, 0xc8, 0x02, 0xc7, 0x28, 0x1b, 0x50, 0x31, 0x73, - 0xd2, 0xcd, 0x2e, 0xf7, 0xc9, 0x0a, 0x46, 0x68, 0x07, 0xa6, 0xb6, 0xbc, 0x28, 0x4e, 0xe8, 0x6e, - 0x30, 0x4e, 0x9c, 0xdd, 0x76, 0xdf, 0x5b, 0x48, 0x35, 0x1e, 0x6b, 0x06, 0x1f, 0x9c, 0xe1, 0x8b, - 0x08, 0x4c, 0xd2, 0x1d, 0x4c, 0x5a, 0xd1, 0x68, 0x9f, 0x15, 0x29, 0xcf, 0xd1, 0x35, 0x9d, 0x0d, - 0x36, 0xb9, 0x52, 0x35, 0xd4, 0x62, 0xfb, 0x9d, 0x31, 0xb6, 0x92, 0x2b, 0x35, 0xc4, 0x37, 0x3a, - 0x1c, 0x47, 0xb5, 0x19, 0x3b, 0x27, 0xae, 0x99, 0xda, 0x2c, 0x3d, 0x0d, 0xb6, 0xbf, 0x4b, 0xd7, - 0x1d, 0x3a, 0x7e, 0x03, 0x57, 0xd9, 0x57, 0x4c, 0x95, 0xfd, 0x54, 0x89, 0x6f, 0xda, 0x43, 0x5d, - 0x7f, 0x05, 0xc6, 0xb5, 0x4f, 0x8e, 0x16, 0xa1, 0xd6, 0x92, 0x47, 0x9a, 0x42, 0x6f, 0x2b, 0xa3, - 0x41, 0x9d, 0x75, 0xe2, 0x94, 0x86, 0x8e, 0x0a, 0x35, 0xb6, 0xb2, 0x61, 0x0f, 0xd4, 0x14, 0xc3, - 0x0c, 0x63, 0xbf, 0x08, 0xb0, 0x7a, 0x9f, 0xb4, 0x96, 0x5a, 0xec, 0xb4, 0x5d, 0x3b, 0x22, 0xb1, - 0x7a, 0x1f, 0x91, 0xd0, 0xa1, 0x9c, 0x5a, 0x5b, 0x31, 0xac, 0xd7, 0x05, 0x00, 0x6e, 0x05, 0xde, - 0xb9, 0x73, 0x43, 0x3a, 0x35, 0xb9, 0xe7, 0x49, 0x41, 0xb1, 0x46, 0x81, 0x1e, 0x87, 0xaa, 0xdf, - 0x09, 0x84, 0x71, 0x36, 0x7a, 0x78, 0x30, 0x5f, 0xbd, 0xd6, 0x09, 0x30, 0x85, 0x69, 0xf1, 0x05, - 0xd5, 0xd2, 0xf1, 0x05, 0xc5, 0x11, 0x76, 0xdf, 0xaa, 0xc2, 0xcc, 0x9a, 0x4f, 0xee, 0x1b, 0xad, - 0x7e, 0x06, 0x46, 0xdc, 0xc8, 0xdb, 0x23, 0x51, 0xd6, 0x79, 0x51, 0x67, 0x50, 0x2c, 0xb0, 0xa5, - 0x43, 0x1e, 0x8c, 0x70, 0x8f, 0xea, 0x80, 0xc3, 0x3d, 0x0a, 0xfb, 0x8c, 0xb6, 0x60, 0x34, 0xe4, - 0x9b, 0xe7, 0xd9, 0x61, 0x26, 0x8a, 0xaf, 0x1d, 0xdf, 0x98, 0xec, 0xf8, 0x2c, 0x88, 0xad, 0x37, - 0x3f, 0x7e, 0x56, 0x5a, 0x4c, 0x40, 0xb1, 0x64, 0x3e, 0xf7, 0x69, 0x98, 0xd0, 0x29, 0xfb, 0x3a, - 0x87, 0xfe, 0x45, 0x0b, 0x4e, 0xae, 0xf9, 0x61, 0xeb, 0x6e, 0x26, 0x26, 0xe5, 0x65, 0x18, 0xa7, - 0x93, 0x29, 0x36, 0x02, 0xb5, 0x8c, 0x88, 0x34, 0x81, 0xc2, 0x3a, 0x9d, 0x56, 0xec, 0xd6, 0xad, - 0xf5, 0x7a, 0x5e, 0x20, 0x9b, 0x40, 0x61, 0x9d, 0xce, 0xfe, 0xcf, 0x16, 0x3c, 0x79, 0x79, 0x65, - 0xb5, 0x41, 0xa2, 0xd8, 0x8b, 0x13, 0x12, 0x24, 0x5d, 0xb1, 0x74, 0xcf, 0xc0, 0x48, 0xdb, 0xd5, - 0x9a, 0xa2, 0x44, 0xa0, 0x51, 0x67, 0xad, 0x10, 0xd8, 0x0f, 0x4b, 0x40, 0xe9, 0xaf, 0x59, 0x70, - 0xf2, 0xb2, 0x97, 0x60, 0xd2, 0x0e, 0xb3, 0xe1, 0x6f, 0x11, 0x69, 0x87, 0xb1, 0x97, 0x84, 0xd1, - 0x7e, 0x36, 0xfc, 0x0d, 0x2b, 0x0c, 0xd6, 0xa8, 0x78, 0xcd, 0x7b, 0x5e, 0x4c, 0x5b, 0x5a, 0x31, - 0x37, 0x75, 0x58, 0xc0, 0xb1, 0xa2, 0xa0, 0x1d, 0x73, 0xbd, 0x88, 0x19, 0x09, 0xfb, 0x62, 0x06, - 0xab, 0x8e, 0xd5, 0x25, 0x02, 0xa7, 0x34, 0xf6, 0xdf, 0xb7, 0xe0, 0xf4, 0x65, 0xbf, 0x13, 0x27, - 0x24, 0xda, 0x8a, 0x8d, 0xc6, 0xbe, 0x08, 0x35, 0x22, 0x0d, 0x5a, 0xd1, 0x56, 0xb5, 0x64, 0x28, - 0x4b, 0x97, 0xc7, 0xde, 0x29, 0xba, 0x12, 0xa1, 0x5e, 0xfd, 0x05, 0x26, 0xfd, 0x56, 0x05, 0x26, - 0xaf, 0x6c, 0x6c, 0x34, 0x2e, 0x93, 0x44, 0x68, 0xc9, 0x62, 0xf7, 0x4b, 0x43, 0xdb, 0x7b, 0x8e, - 0x5f, 0x5a, 0xe8, 0x31, 0xeb, 0x3a, 0x89, 0xe7, 0x2f, 0xf0, 0x50, 0xe7, 0x85, 0xf5, 0x20, 0xb9, - 0x19, 0x35, 0x93, 0xc8, 0x0b, 0xb6, 0x73, 0xf7, 0xaa, 0x52, 0x93, 0x57, 0x7b, 0x69, 0x72, 0xf4, - 0x22, 0x8c, 0xb0, 0x48, 0x6b, 0x69, 0x74, 0xfc, 0x9c, 0xb2, 0x0f, 0x18, 0xf4, 0xe8, 0x60, 0xbe, - 0x76, 0x0b, 0xaf, 0xf3, 0x3f, 0x58, 0x90, 0xa2, 0x2f, 0xc3, 0xf8, 0x4e, 0x92, 0xb4, 0xaf, 0x10, - 0xc7, 0x25, 0x91, 0xd4, 0x12, 0x05, 0xe6, 0x19, 0x1d, 0x0c, 0x5e, 0x20, 0x9d, 0x58, 0x29, 0x2c, - 0xc6, 0x3a, 0x47, 0xbb, 0x09, 0x90, 0xe2, 0x1e, 0xd2, 0x9e, 0xc3, 0xfe, 0x6b, 0x15, 0x18, 0xbd, - 0xe2, 0x04, 0xae, 0x4f, 0x22, 0xb4, 0x06, 0x43, 0xe4, 0x3e, 0x69, 0x95, 0xb3, 0x2c, 0xd3, 0xa5, - 0x8e, 0xfb, 0x8f, 0xe8, 0x7f, 0xcc, 0xca, 0x23, 0x0c, 0xa3, 0xb4, 0xdd, 0x97, 0x55, 0x7c, 0xe4, - 0xf3, 0xc5, 0xa3, 0xa0, 0x44, 0x82, 0xaf, 0x93, 0x02, 0x84, 0x25, 0x23, 0xe6, 0x69, 0x69, 0xb5, - 0x9b, 0x54, 0xb9, 0x25, 0xe5, 0x42, 0xa0, 0x37, 0x56, 0x1a, 0x9c, 0x5c, 0xf0, 0xe5, 0x9e, 0x16, - 0x09, 0xc4, 0x29, 0x3b, 0xfb, 0x55, 0x38, 0xc5, 0x8e, 0xe8, 0x9c, 0x64, 0xc7, 0x98, 0x33, 0x85, - 0xc2, 0x69, 0xff, 0xa3, 0x0a, 0x9c, 0x58, 0x6f, 0xae, 0x34, 0x4d, 0x1f, 0xd9, 0xab, 0x30, 0xc1, - 0x97, 0x67, 0x2a, 0x74, 0x8e, 0x2f, 0xca, 0x2b, 0xe7, 0xf2, 0x86, 0x86, 0xc3, 0x06, 0x25, 0x7a, - 0x12, 0xaa, 0xde, 0x3b, 0x41, 0x36, 0x52, 0x67, 0xfd, 0xcd, 0x1b, 0x98, 0xc2, 0x29, 0x9a, 0xae, - 0xf4, 0x5c, 0xc5, 0x29, 0xb4, 0x5a, 0xed, 0xdf, 0x80, 0x29, 0x2f, 0x6e, 0xc5, 0xde, 0x7a, 0x40, - 0xe7, 0xbf, 0xd3, 0x92, 0xe2, 0x9b, 0x1a, 0xe5, 0xb4, 0xa9, 0x0a, 0x8b, 0x33, 0xd4, 0x9a, 0xbe, - 0x1d, 0x2e, 0x6d, 0x2d, 0x14, 0x07, 0x4a, 0x7e, 0x15, 0x6a, 0x2a, 0xac, 0x45, 0x86, 0x22, 0x59, - 0xf9, 0xa1, 0x48, 0x25, 0x14, 0x8e, 0xf4, 0x5c, 0x56, 0x73, 0x3d, 0x97, 0xbf, 0x61, 0x41, 0x7a, - 0x82, 0x8f, 0x30, 0xd4, 0xda, 0x21, 0x3b, 0x16, 0x88, 0xe4, 0xc9, 0xdb, 0xd3, 0x05, 0x92, 0xc8, - 0x67, 0x02, 0x97, 0x95, 0x86, 0x2c, 0x8b, 0x53, 0x36, 0xe8, 0x1a, 0x8c, 0xb6, 0x23, 0xd2, 0x4c, - 0x58, 0xb4, 0x6d, 0x1f, 0x1c, 0x99, 0x54, 0x37, 0x78, 0x49, 0x2c, 0x59, 0xd8, 0xff, 0xda, 0x02, - 0xb8, 0xe6, 0xed, 0x7a, 0x09, 0x76, 0x82, 0x6d, 0x32, 0xc0, 0xed, 0xdd, 0x0d, 0x18, 0x8a, 0xdb, - 0xa4, 0x55, 0xee, 0x40, 0x27, 0x6d, 0x51, 0xb3, 0x4d, 0x5a, 0xe9, 0x67, 0xa0, 0xff, 0x30, 0xe3, - 0x63, 0xff, 0x26, 0xc0, 0x54, 0x4a, 0x46, 0x0d, 0x6d, 0xf4, 0x82, 0x11, 0x5e, 0xfa, 0x78, 0x26, - 0xbc, 0xb4, 0xc6, 0xa8, 0xb5, 0x88, 0xd2, 0x04, 0xaa, 0xbb, 0xce, 0x7d, 0x61, 0xd7, 0xbf, 0x5c, - 0xb6, 0x41, 0xb4, 0xa6, 0x85, 0xeb, 0xce, 0x7d, 0x6e, 0x46, 0x3d, 0x2f, 0x05, 0xe8, 0xba, 0x73, - 0xff, 0x88, 0x1f, 0xdb, 0xb0, 0x19, 0x48, 0x37, 0x12, 0x5f, 0xff, 0xaf, 0xe9, 0x7f, 0xa6, 0x14, - 0x69, 0x75, 0xac, 0x56, 0x2f, 0x10, 0x0e, 0xb8, 0x3e, 0x6b, 0xf5, 0x82, 0x6c, 0xad, 0x5e, 0x50, - 0xa2, 0x56, 0x2f, 0x40, 0xef, 0x59, 0x30, 0x2a, 0xfc, 0xd6, 0x2c, 0x16, 0x6a, 0xfc, 0xd2, 0xa7, - 0xfa, 0xaa, 0x5a, 0x38, 0xc0, 0x79, 0xf5, 0x8b, 0xd2, 0x76, 0x14, 0xd0, 0xc2, 0x26, 0xc8, 0xaa, - 0xd1, 0xb7, 0x2d, 0x98, 0x12, 0xbf, 0x31, 0x79, 0xa7, 0x43, 0xe2, 0x44, 0xac, 0x52, 0x9f, 0x7d, - 0x90, 0xd6, 0x08, 0x16, 0xbc, 0x51, 0x9f, 0x94, 0x2a, 0xc6, 0x44, 0x16, 0xb6, 0x2d, 0xd3, 0x1e, - 0xf4, 0x03, 0x0b, 0x4e, 0xed, 0x3a, 0xf7, 0x79, 0x8d, 0x1c, 0x86, 0x9d, 0xc4, 0x0b, 0x45, 0xbc, - 0xd7, 0x5a, 0xbf, 0x72, 0xd2, 0xc5, 0x88, 0x37, 0xf7, 0x75, 0x79, 0x98, 0x98, 0x47, 0x52, 0xd8, - 0xe8, 0xdc, 0x16, 0xce, 0xb9, 0x30, 0x26, 0x05, 0x33, 0xc7, 0x6a, 0x5f, 0xd6, 0x17, 0xe3, 0xe3, - 0x67, 0xa0, 0xf4, 0x6c, 0x2d, 0xbc, 0xd9, 0x71, 0x82, 0xc4, 0x4b, 0xf6, 0x35, 0x1b, 0x9f, 0xd5, - 0x22, 0x04, 0x71, 0x80, 0xb5, 0xec, 0xc0, 0x84, 0x2e, 0x73, 0x03, 0xac, 0x29, 0x84, 0x93, 0x39, - 0xf2, 0x34, 0xc0, 0x0a, 0x3b, 0xf0, 0x78, 0x4f, 0xb9, 0x18, 0x5c, 0xb5, 0xf6, 0x6f, 0x59, 0xba, - 0xc2, 0x1c, 0xb8, 0xdf, 0xe4, 0xba, 0xe9, 0x37, 0x39, 0x5f, 0x76, 0xde, 0xf4, 0x70, 0x9e, 0x6c, - 0xe9, 0x8d, 0xa7, 0xcb, 0x00, 0xda, 0x80, 0x11, 0x9f, 0x42, 0xe4, 0x01, 0xcd, 0x85, 0x7e, 0x66, - 0x66, 0x6a, 0x59, 0x30, 0x78, 0x8c, 0x05, 0x2f, 0xfb, 0xfb, 0x16, 0x0c, 0x0d, 0x7c, 0x6c, 0x1a, - 0xe6, 0xd8, 0xf4, 0x32, 0x4e, 0xc5, 0x9d, 0xcb, 0x05, 0xec, 0xdc, 0x5b, 0xbd, 0x9f, 0x90, 0x20, - 0x66, 0x46, 0x64, 0xee, 0xf0, 0xfc, 0x7a, 0x05, 0xc6, 0x69, 0x45, 0xf2, 0x78, 0xfd, 0x35, 0x98, - 0xf4, 0x9d, 0x4d, 0xe2, 0x4b, 0x0f, 0x6f, 0x76, 0xc3, 0x75, 0x4d, 0x47, 0x62, 0x93, 0x96, 0x16, - 0xde, 0xd2, 0x1d, 0xe0, 0xc2, 0x18, 0x52, 0x85, 0x0d, 0xef, 0x38, 0x36, 0x69, 0xa9, 0xcd, 0x7f, - 0xcf, 0x49, 0x5a, 0x3b, 0x62, 0x33, 0xa6, 0x9a, 0x7b, 0x87, 0x02, 0x31, 0xc7, 0xa1, 0x25, 0x98, - 0x96, 0xb2, 0x7a, 0x9b, 0xee, 0xd2, 0xc3, 0x40, 0x18, 0x8a, 0xea, 0xa2, 0x1c, 0x36, 0xd1, 0x38, - 0x4b, 0x8f, 0x3e, 0x0d, 0x53, 0x74, 0x70, 0xc2, 0x4e, 0x22, 0x83, 0x07, 0x86, 0x59, 0xf0, 0x00, - 0x8b, 0xd1, 0xdc, 0x30, 0x30, 0x38, 0x43, 0x69, 0x7f, 0x19, 0x4e, 0x5e, 0x0b, 0x1d, 0x77, 0xd9, - 0xf1, 0x9d, 0xa0, 0x45, 0xa2, 0xf5, 0x60, 0xbb, 0xf0, 0x9c, 0x55, 0x3f, 0x0b, 0xad, 0x14, 0x9d, - 0x85, 0xda, 0x11, 0x20, 0xbd, 0x02, 0x11, 0xf6, 0xf2, 0x36, 0x8c, 0x7a, 0xbc, 0x2a, 0x21, 0xb2, - 0x17, 0x8b, 0xdc, 0x49, 0x5d, 0x6d, 0xd4, 0xc2, 0x38, 0x38, 0x00, 0x4b, 0x96, 0x74, 0x0f, 0x91, - 0xe7, 0x7f, 0x2a, 0xde, 0xa6, 0xd9, 0x7f, 0xc3, 0x82, 0xe9, 0x1b, 0x99, 0xdb, 0x58, 0xcf, 0xc0, - 0x48, 0x4c, 0xa2, 0x1c, 0x67, 0x5a, 0x93, 0x41, 0xb1, 0xc0, 0x3e, 0xf4, 0x0d, 0xfa, 0xaf, 0x54, - 0xa0, 0xc6, 0x42, 0x27, 0xdb, 0x4e, 0x6b, 0x90, 0xe6, 0xe8, 0x75, 0xc3, 0x1c, 0x2d, 0xd8, 0x1e, - 0xaa, 0x06, 0xf5, 0xb2, 0x46, 0xd1, 0x2d, 0x75, 0x3b, 0xa9, 0xd4, 0xce, 0x30, 0x65, 0xc8, 0xef, - 0xb2, 0x4c, 0x99, 0x97, 0x99, 0xe4, 0xcd, 0x25, 0x76, 0x3a, 0xa9, 0x68, 0x3f, 0x64, 0xa7, 0x93, - 0xaa, 0x5d, 0x3d, 0x54, 0x52, 0x43, 0x6b, 0x3a, 0x53, 0xd8, 0x9f, 0x61, 0xa1, 0x70, 0x8e, 0xef, - 0xbd, 0x4b, 0xd4, 0x15, 0xbf, 0x79, 0x11, 0xdc, 0x26, 0xa0, 0x47, 0x4c, 0xbb, 0x88, 0x7f, 0xfc, - 0xe6, 0x66, 0x5a, 0xc4, 0xbe, 0x02, 0xd3, 0x99, 0x81, 0x43, 0x2f, 0xc3, 0x70, 0x7b, 0xc7, 0x89, - 0x49, 0x26, 0xcc, 0x62, 0xb8, 0x41, 0x81, 0x47, 0x07, 0xf3, 0x53, 0xaa, 0x00, 0x83, 0x60, 0x4e, - 0x6d, 0xff, 0xb9, 0x05, 0x43, 0x37, 0x42, 0x77, 0x90, 0x02, 0x76, 0xc5, 0x10, 0xb0, 0x67, 0x8a, - 0xef, 0x7b, 0xf7, 0x94, 0xad, 0x46, 0x46, 0xb6, 0xce, 0x97, 0xe0, 0x75, 0xbc, 0x58, 0xed, 0xc2, - 0x38, 0xbb, 0x4f, 0x2e, 0xe2, 0x4b, 0x5e, 0x34, 0xf6, 0x4d, 0xf3, 0x99, 0x7d, 0xd3, 0xb4, 0x46, - 0xaa, 0xed, 0x9e, 0x9e, 0x85, 0x51, 0x11, 0xcf, 0x90, 0x0d, 0x01, 0x14, 0xb4, 0x58, 0xe2, 0xed, - 0x7f, 0x59, 0x05, 0xe3, 0xfe, 0x3a, 0xfa, 0x7d, 0x0b, 0x16, 0x22, 0x7e, 0xed, 0xc0, 0xad, 0x77, - 0x22, 0x2f, 0xd8, 0x6e, 0xb6, 0x76, 0x88, 0xdb, 0xf1, 0xbd, 0x60, 0x7b, 0x7d, 0x3b, 0x08, 0x15, - 0x78, 0xf5, 0x3e, 0x69, 0x75, 0x98, 0x53, 0xb5, 0xf4, 0xb5, 0x79, 0x75, 0xa6, 0x79, 0xe9, 0xf0, - 0x60, 0x7e, 0x01, 0xf7, 0x55, 0x0b, 0xee, 0xb3, 0x55, 0xe8, 0x8f, 0x2c, 0x58, 0xe4, 0x37, 0xb8, - 0xcb, 0xf7, 0xa4, 0xd4, 0x7e, 0xb3, 0x21, 0x99, 0xa6, 0xec, 0x36, 0x48, 0xb4, 0xbb, 0xfc, 0x8a, - 0x18, 0xe4, 0xc5, 0x46, 0x7f, 0xb5, 0xe2, 0x7e, 0x9b, 0x69, 0xff, 0x76, 0x15, 0x26, 0xe9, 0x78, - 0xa6, 0xb7, 0x37, 0x5f, 0x36, 0xc4, 0xe4, 0xa3, 0x19, 0x31, 0x39, 0x61, 0x10, 0x3f, 0x9c, 0x8b, - 0x9b, 0xef, 0xc0, 0x09, 0xdf, 0x89, 0x93, 0x2b, 0xc4, 0x89, 0x92, 0x4d, 0xe2, 0xb0, 0x63, 0xc4, - 0xe2, 0x49, 0x90, 0x39, 0x97, 0x54, 0x11, 0x32, 0xd7, 0xb2, 0xac, 0x70, 0x37, 0x77, 0x94, 0x00, - 0x62, 0x07, 0x96, 0x91, 0x13, 0xc4, 0xbc, 0x27, 0x9e, 0x70, 0xc2, 0xf6, 0x53, 0xe7, 0x9c, 0xa8, - 0x13, 0x5d, 0xeb, 0xe2, 0x85, 0x73, 0xf8, 0x6b, 0x87, 0xd1, 0xc3, 0x65, 0x0f, 0xa3, 0x47, 0x0a, - 0xe2, 0x6e, 0x7f, 0xc9, 0x82, 0x93, 0xf4, 0x93, 0x98, 0x31, 0x9a, 0x31, 0x0a, 0x61, 0x9a, 0x36, - 0xdf, 0x27, 0x89, 0x84, 0x15, 0xaf, 0x23, 0x2c, 0x90, 0xce, 0xe0, 0x93, 0x1a, 0x6a, 0x57, 0x4d, - 0x66, 0x38, 0xcb, 0xdd, 0xfe, 0x8e, 0x05, 0x2c, 0x08, 0x6c, 0xe0, 0xcb, 0xd7, 0x65, 0x73, 0xf9, - 0xb2, 0x8b, 0x75, 0x45, 0x8f, 0x95, 0xeb, 0x25, 0x98, 0xa1, 0xd8, 0x46, 0x14, 0xde, 0xdf, 0x97, - 0x06, 0x75, 0xb1, 0x27, 0xf6, 0xbd, 0x0a, 0x9f, 0x30, 0xea, 0xe6, 0x14, 0xfa, 0x65, 0x0b, 0xc6, - 0x5a, 0x4e, 0xdb, 0x69, 0xf1, 0xbc, 0x1f, 0x25, 0xbc, 0x2e, 0x46, 0xf9, 0x85, 0x15, 0x51, 0x96, - 0x7b, 0x0c, 0x3e, 0x21, 0xbb, 0x2e, 0xc1, 0x85, 0x5e, 0x02, 0x55, 0xf9, 0x9c, 0x07, 0x93, 0x06, - 0xb3, 0x01, 0x6e, 0x33, 0x7f, 0xd9, 0xe2, 0xca, 0x5e, 0x6d, 0x08, 0xee, 0xc1, 0x89, 0x40, 0xfb, - 0x4f, 0xd5, 0x98, 0xb4, 0x7f, 0x17, 0xca, 0xab, 0x73, 0xa6, 0xfd, 0xb4, 0x60, 0xb7, 0x0c, 0x43, - 0xdc, 0x5d, 0x87, 0xfd, 0x8f, 0x2d, 0x78, 0x4c, 0x27, 0xd4, 0x2e, 0xba, 0x15, 0x79, 0x81, 0xeb, - 0x30, 0x16, 0xb6, 0x49, 0xe4, 0xa4, 0x9b, 0x9f, 0xf3, 0x72, 0xf4, 0x6f, 0x0a, 0xf8, 0xd1, 0xc1, - 0xfc, 0x29, 0x9d, 0xbb, 0x84, 0x63, 0x55, 0x12, 0xd9, 0x30, 0xc2, 0xc6, 0x25, 0x16, 0x57, 0x14, - 0x59, 0x16, 0x0c, 0x76, 0xf6, 0x11, 0x63, 0x81, 0xb1, 0xff, 0xa6, 0xc5, 0x85, 0x4d, 0x6f, 0x3a, - 0xfa, 0x1a, 0xcc, 0xec, 0xd2, 0x7d, 0xd2, 0xea, 0xfd, 0x36, 0x5d, 0x40, 0xd9, 0x99, 0xaf, 0x55, - 0x66, 0xd9, 0xe8, 0xd1, 0xdd, 0xe5, 0x59, 0xd1, 0xfa, 0x99, 0xeb, 0x19, 0xb6, 0xb8, 0xab, 0x22, - 0xfb, 0x8f, 0xc5, 0x7c, 0x65, 0x36, 0xdb, 0xb3, 0x30, 0xda, 0x0e, 0xdd, 0x95, 0xf5, 0x3a, 0x16, - 0x63, 0xa5, 0x14, 0x4e, 0x83, 0x83, 0xb1, 0xc4, 0xa3, 0x4b, 0x00, 0xe4, 0x7e, 0x42, 0xa2, 0xc0, - 0xf1, 0xd5, 0x59, 0xad, 0x32, 0x91, 0x56, 0x15, 0x06, 0x6b, 0x54, 0xb4, 0x4c, 0x3b, 0x0a, 0xf7, - 0x3c, 0x97, 0x45, 0x9e, 0x57, 0xcd, 0x32, 0x0d, 0x85, 0xc1, 0x1a, 0x15, 0xdd, 0x9d, 0x76, 0x82, - 0x98, 0x2f, 0x5f, 0xce, 0xa6, 0x48, 0xde, 0x30, 0x96, 0xee, 0x4e, 0x6f, 0xe9, 0x48, 0x6c, 0xd2, - 0xda, 0x3f, 0xad, 0x01, 0xa4, 0x06, 0x12, 0x7a, 0xaf, 0x7b, 0x86, 0x7e, 0xb2, 0xac, 0x75, 0xf5, - 0xf0, 0xa6, 0x27, 0xfa, 0xa6, 0x05, 0xe3, 0x8e, 0xef, 0x87, 0x2d, 0x27, 0x61, 0x3d, 0xaa, 0x94, - 0xd5, 0x15, 0xa2, 0x25, 0x4b, 0x69, 0x59, 0xde, 0x98, 0x17, 0xe5, 0x51, 0x9e, 0x86, 0x29, 0x6c, - 0x8f, 0xde, 0x04, 0xf4, 0x09, 0x69, 0x58, 0xf3, 0x8f, 0x32, 0x97, 0x35, 0xac, 0x6b, 0x4c, 0x43, - 0x6a, 0x36, 0x35, 0xfa, 0xb2, 0x91, 0xa7, 0x60, 0xa8, 0xcc, 0xed, 0x58, 0xc3, 0x64, 0x28, 0x4a, - 0x51, 0x80, 0xbe, 0xa0, 0x07, 0xe5, 0x0e, 0x97, 0xb9, 0x7a, 0xaa, 0x59, 0xae, 0x05, 0x01, 0xb9, - 0x09, 0x4c, 0xbb, 0xe6, 0x42, 0x29, 0x02, 0xad, 0x2e, 0x16, 0xd7, 0x90, 0x59, 0x61, 0xd3, 0xa5, - 0x31, 0x83, 0xc0, 0xd9, 0x2a, 0xe8, 0x6a, 0x48, 0xd5, 0xd6, 0x7a, 0xb0, 0x15, 0x8a, 0x70, 0xab, - 0x0b, 0x25, 0xbe, 0xf9, 0x7e, 0x9c, 0x90, 0x5d, 0x5a, 0x26, 0x5d, 0x0d, 0x6f, 0x08, 0x2e, 0x58, - 0xf1, 0x43, 0x1b, 0x30, 0xc2, 0x2e, 0x78, 0xc4, 0xb3, 0x63, 0x65, 0xdc, 0x63, 0xe6, 0x8d, 0xc6, - 0xd4, 0x00, 0x61, 0x7f, 0x63, 0x2c, 0x78, 0xa1, 0x2b, 0xf2, 0x06, 0x70, 0xbc, 0x1e, 0xdc, 0x8a, - 0x09, 0xbb, 0x01, 0x5c, 0x5b, 0xfe, 0x58, 0x7a, 0xa5, 0x97, 0xc3, 0x73, 0x33, 0x33, 0x19, 0x25, - 0xa9, 0x1d, 0x22, 0xfe, 0xcb, 0x84, 0x4f, 0xb3, 0x50, 0xa6, 0xa1, 0x66, 0x7a, 0xa8, 0x74, 0xb0, - 0x6f, 0x9b, 0xcc, 0x70, 0x96, 0xfb, 0x23, 0x5c, 0x03, 0xe7, 0x7c, 0x98, 0xc9, 0x4e, 0xc9, 0x01, - 0xae, 0xb8, 0x7f, 0x36, 0x04, 0x53, 0xa6, 0x60, 0xa0, 0x45, 0xa8, 0xed, 0xb2, 0x74, 0x4c, 0x69, - 0x12, 0x18, 0x25, 0xff, 0xd7, 0x25, 0x02, 0xa7, 0x34, 0x2c, 0x1d, 0x0e, 0x2b, 0xae, 0x05, 0xda, - 0xa4, 0xe9, 0x70, 0x14, 0x06, 0x6b, 0x54, 0xd4, 0x68, 0xdd, 0x0c, 0xc3, 0x44, 0x29, 0x6e, 0x25, - 0x33, 0xcb, 0x0c, 0x8a, 0x05, 0x96, 0x2a, 0xec, 0xbb, 0xb4, 0x43, 0xbe, 0xe9, 0xea, 0x53, 0x0a, - 0xfb, 0xaa, 0x8e, 0xc4, 0x26, 0x2d, 0x5d, 0x80, 0xc2, 0x98, 0x09, 0xa1, 0x30, 0x8d, 0xd3, 0xc0, - 0xa5, 0x26, 0xbf, 0xf0, 0x24, 0xf1, 0xe8, 0xf3, 0xf0, 0x98, 0xba, 0x9f, 0x84, 0xb9, 0xeb, 0x54, - 0xd6, 0x38, 0x62, 0xec, 0x6c, 0x1f, 0x5b, 0xc9, 0x27, 0xc3, 0xbd, 0xca, 0xa3, 0x37, 0x60, 0x4a, - 0x98, 0xb5, 0x92, 0xe3, 0xa8, 0x79, 0xae, 0x7d, 0xd5, 0xc0, 0xe2, 0x0c, 0x35, 0xaa, 0xc3, 0x0c, - 0x85, 0x30, 0x8b, 0x52, 0x72, 0xe0, 0xf7, 0xac, 0xd4, 0xca, 0x7c, 0x35, 0x83, 0xc7, 0x5d, 0x25, - 0xd0, 0x12, 0x4c, 0x73, 0xdb, 0x82, 0xee, 0xdf, 0xd8, 0x77, 0x10, 0x11, 0x92, 0x6a, 0x12, 0xdc, - 0x34, 0xd1, 0x38, 0x4b, 0x8f, 0x5e, 0x85, 0x09, 0x27, 0x6a, 0xed, 0x78, 0x09, 0x69, 0x25, 0x9d, - 0x88, 0xdf, 0xad, 0xd7, 0x02, 0x03, 0x96, 0x34, 0x1c, 0x36, 0x28, 0xed, 0x77, 0xe1, 0x64, 0x4e, - 0x08, 0x36, 0x15, 0x1c, 0xa7, 0xed, 0xc9, 0x3e, 0x65, 0x42, 0x90, 0x96, 0x1a, 0xeb, 0xb2, 0x37, - 0x1a, 0x15, 0x95, 0x4e, 0xe6, 0x33, 0xd6, 0x72, 0xb3, 0x29, 0xe9, 0x5c, 0x93, 0x08, 0x9c, 0xd2, - 0xd8, 0xff, 0xbd, 0x06, 0x9a, 0x93, 0xa5, 0x44, 0xe0, 0xc9, 0xab, 0x30, 0x21, 0xd3, 0x0d, 0x6a, - 0x69, 0xbe, 0x54, 0x37, 0x2f, 0x6b, 0x38, 0x6c, 0x50, 0xd2, 0xb6, 0x05, 0xd2, 0x65, 0x94, 0x0d, - 0x78, 0x52, 0xbe, 0x24, 0x9c, 0xd2, 0xa0, 0x0b, 0x30, 0x16, 0x13, 0x7f, 0xeb, 0x9a, 0x17, 0xdc, - 0x15, 0x82, 0xad, 0xb4, 0x72, 0x53, 0xc0, 0xb1, 0xa2, 0x40, 0x9f, 0x85, 0x6a, 0xc7, 0x73, 0x85, - 0x28, 0x2f, 0x48, 0xbb, 0xf3, 0xd6, 0x7a, 0xfd, 0xe8, 0x60, 0x7e, 0x3e, 0x3f, 0x87, 0x22, 0xdd, - 0x44, 0xc7, 0x0b, 0x74, 0xf2, 0xd1, 0xa2, 0x79, 0xae, 0xf3, 0x91, 0x3e, 0x5d, 0xe7, 0x97, 0x00, - 0x44, 0x9f, 0xa5, 0x24, 0x57, 0xd3, 0x6f, 0x76, 0x59, 0x61, 0xb0, 0x46, 0x45, 0xb7, 0xe2, 0xad, - 0x88, 0x38, 0x72, 0xc7, 0xca, 0x43, 0x84, 0xc7, 0x1e, 0x74, 0x2b, 0xbe, 0x92, 0x65, 0x85, 0xbb, - 0xb9, 0xa3, 0x5d, 0x38, 0xe1, 0xd2, 0x49, 0x64, 0x54, 0x59, 0xeb, 0x37, 0x2a, 0x99, 0x56, 0x57, - 0xcf, 0xb2, 0xc1, 0xdd, 0x9c, 0xd1, 0x97, 0x60, 0x4e, 0x02, 0xbb, 0xef, 0x1e, 0xb2, 0x89, 0x52, - 0x5d, 0x3e, 0x7b, 0x78, 0x30, 0x3f, 0x57, 0xef, 0x49, 0x85, 0x8f, 0xe1, 0x80, 0xde, 0x86, 0x11, - 0x76, 0xcc, 0x12, 0xcf, 0x8e, 0xb3, 0x75, 0xee, 0xa5, 0xb2, 0x8e, 0xc6, 0x05, 0x76, 0x58, 0x23, - 0xe2, 0x36, 0xd3, 0x73, 0x2b, 0x06, 0xc4, 0x82, 0x27, 0x6a, 0xc3, 0xb8, 0x13, 0x04, 0x61, 0xe2, - 0x70, 0xf3, 0x6b, 0xa2, 0x8c, 0x05, 0xa9, 0x55, 0xb1, 0x94, 0x96, 0xe5, 0xf5, 0xa8, 0x60, 0x30, - 0x0d, 0x83, 0xf5, 0x2a, 0x50, 0x07, 0xa6, 0xc3, 0x7b, 0x54, 0x55, 0xca, 0x93, 0x86, 0x78, 0x76, - 0xb2, 0x28, 0x41, 0x62, 0xfa, 0x71, 0x6e, 0x1a, 0x45, 0x35, 0x0d, 0x66, 0xb2, 0xc4, 0xd9, 0x3a, - 0xd0, 0x82, 0xe1, 0x45, 0x9e, 0x4a, 0x63, 0x93, 0x53, 0x2f, 0xb2, 0xee, 0x34, 0x66, 0xb7, 0x5b, - 0x79, 0x3c, 0x22, 0xd3, 0x04, 0xd3, 0x99, 0xdb, 0xad, 0x29, 0x0a, 0xeb, 0x74, 0x73, 0x9f, 0x82, - 0x71, 0x6d, 0xd8, 0xfb, 0x09, 0x82, 0x9d, 0x7b, 0x03, 0x66, 0xb2, 0xc3, 0xd9, 0x57, 0x10, 0xed, - 0xff, 0xac, 0xc0, 0x74, 0xce, 0x21, 0xce, 0x5d, 0x8f, 0x05, 0x72, 0x1b, 0x2a, 0xef, 0xaa, 0x17, - 0xb8, 0x98, 0x61, 0x4c, 0xc5, 0x55, 0x29, 0xa1, 0xb8, 0xa4, 0x16, 0xad, 0xf6, 0xd4, 0xa2, 0x42, - 0x59, 0x0d, 0x3d, 0xb8, 0xb2, 0x32, 0x57, 0x87, 0xe1, 0x52, 0xab, 0xc3, 0x43, 0x50, 0x70, 0xc6, - 0x02, 0x33, 0x5a, 0x62, 0x81, 0xf9, 0x76, 0x05, 0x66, 0xd2, 0x70, 0x61, 0x91, 0x79, 0x74, 0x70, - 0x67, 0x03, 0x1b, 0xc6, 0xd9, 0x40, 0x51, 0x42, 0xd1, 0x4c, 0xbb, 0x7a, 0x9e, 0x13, 0xbc, 0x9d, - 0x39, 0x27, 0x78, 0xa9, 0x4f, 0xbe, 0xc7, 0x9f, 0x19, 0x7c, 0xa7, 0x02, 0xa7, 0xb3, 0x45, 0x56, - 0x7c, 0xc7, 0xdb, 0x1d, 0xe0, 0x38, 0x7d, 0xde, 0x18, 0xa7, 0x57, 0xfa, 0xeb, 0x0f, 0x6b, 0x5c, - 0xcf, 0xc1, 0x72, 0x32, 0x83, 0xf5, 0xa9, 0x07, 0x61, 0x7e, 0xfc, 0x88, 0xfd, 0xd4, 0x82, 0xc7, - 0x73, 0xcb, 0x0d, 0xdc, 0x13, 0xfa, 0x96, 0xe9, 0x09, 0x7d, 0xf1, 0x01, 0xfa, 0xd6, 0xc3, 0x35, - 0x7a, 0x58, 0xe9, 0xd1, 0x27, 0xe6, 0x2d, 0xba, 0x09, 0xe3, 0x4e, 0xab, 0x45, 0xe2, 0xf8, 0x7a, - 0xe8, 0xaa, 0x6c, 0x38, 0x2f, 0xb0, 0x55, 0x24, 0x05, 0x1f, 0x1d, 0xcc, 0xcf, 0x65, 0x59, 0xa4, - 0x68, 0xac, 0x73, 0x30, 0xb3, 0x5a, 0x55, 0x06, 0x94, 0xd5, 0xea, 0x12, 0xc0, 0x9e, 0xda, 0xa5, - 0x66, 0x9d, 0x50, 0xda, 0xfe, 0x55, 0xa3, 0x42, 0x5f, 0x64, 0x56, 0x1f, 0x8f, 0x8e, 0x18, 0x2a, - 0x72, 0x14, 0x68, 0x5f, 0x4f, 0x8f, 0xb3, 0xe0, 0xd7, 0x17, 0x95, 0xbb, 0x4e, 0x31, 0xb4, 0xbf, - 0x5f, 0x85, 0x9f, 0x3b, 0x46, 0xe0, 0xd0, 0x92, 0x79, 0xe8, 0xf9, 0x7c, 0xd6, 0x37, 0x33, 0x97, - 0x5b, 0xd8, 0x70, 0xd6, 0x64, 0xbe, 0x54, 0xe5, 0x03, 0x7f, 0xa9, 0x6f, 0xe9, 0x9e, 0x34, 0x1e, - 0xdc, 0x78, 0xf9, 0x81, 0xa7, 0xd4, 0xcf, 0xa6, 0xe7, 0xfb, 0xeb, 0x16, 0x7c, 0x34, 0xb7, 0x53, - 0x46, 0x60, 0xc5, 0x22, 0xd4, 0x5a, 0x14, 0xa8, 0xdd, 0x3e, 0x49, 0xaf, 0x7d, 0x49, 0x04, 0x4e, - 0x69, 0x8c, 0xf8, 0x89, 0x4a, 0x61, 0xfc, 0xc4, 0xbf, 0xb7, 0xe0, 0x54, 0xb6, 0x11, 0x03, 0xd7, - 0x37, 0x4d, 0x53, 0xdf, 0x2c, 0xf4, 0xf7, 0xe1, 0x7b, 0xa8, 0x9a, 0x6f, 0x4f, 0xc2, 0x99, 0xae, - 0x35, 0x8a, 0x8f, 0xe1, 0x2f, 0x58, 0x70, 0x62, 0x9b, 0xd9, 0xd7, 0xda, 0x05, 0x1f, 0xd1, 0xab, - 0x82, 0x5b, 0x51, 0xc7, 0xde, 0x0b, 0xe2, 0xbb, 0x85, 0x2e, 0x12, 0xdc, 0x5d, 0x19, 0xfa, 0x86, - 0x05, 0xa7, 0x9c, 0x7b, 0x71, 0x57, 0xf6, 0x7a, 0x21, 0x44, 0x6f, 0x14, 0x38, 0xb1, 0x0a, 0xf2, - 0xde, 0x2f, 0xcf, 0x1e, 0x1e, 0xcc, 0x9f, 0xca, 0xa3, 0xc2, 0xb9, 0xb5, 0xa2, 0xb7, 0x45, 0xee, - 0x2f, 0x6a, 0xf0, 0x94, 0xba, 0xaa, 0x96, 0x77, 0xdd, 0x80, 0x2b, 0x24, 0x89, 0xc1, 0x8a, 0x23, - 0xfa, 0x0a, 0xd4, 0xb6, 0xe5, 0x9d, 0x1e, 0xa1, 0xee, 0x0a, 0xd6, 0x94, 0xdc, 0x2b, 0x40, 0x3c, - 0xa8, 0x5d, 0xa1, 0x70, 0xca, 0x14, 0x5d, 0x81, 0x6a, 0xb0, 0x15, 0x8b, 0x7b, 0xb3, 0x45, 0xc1, - 0x33, 0x66, 0xa8, 0x12, 0xbf, 0x70, 0x78, 0x63, 0xad, 0x89, 0x29, 0x0b, 0xca, 0x29, 0xda, 0x74, - 0x85, 0xf7, 0xb6, 0x80, 0x13, 0x5e, 0xae, 0x77, 0x73, 0xc2, 0xcb, 0x75, 0x4c, 0x59, 0xb0, 0x28, - 0xbd, 0xb8, 0x15, 0x7b, 0xc2, 0x35, 0x5b, 0x70, 0xa9, 0xba, 0xeb, 0x12, 0x06, 0x4f, 0x03, 0xc7, - 0xc0, 0x98, 0x33, 0x42, 0x1b, 0x30, 0xd2, 0x62, 0x09, 0x9b, 0xc5, 0xce, 0xb9, 0x28, 0x8d, 0x6f, - 0x57, 0x72, 0x67, 0x7e, 0x84, 0xc4, 0xe1, 0x58, 0xf0, 0x62, 0x5c, 0x49, 0x7b, 0x67, 0x2b, 0x16, - 0x9b, 0xe3, 0x22, 0xae, 0x5d, 0xa9, 0xb7, 0x05, 0x57, 0x06, 0xc7, 0x82, 0x17, 0xaa, 0x43, 0x65, - 0xab, 0x25, 0x72, 0x2f, 0x16, 0xb8, 0x64, 0xcd, 0xdb, 0xa3, 0xcb, 0x23, 0x87, 0x07, 0xf3, 0x95, - 0xb5, 0x15, 0x5c, 0xd9, 0x6a, 0xa1, 0xb7, 0x60, 0x74, 0x8b, 0xdf, 0x07, 0x14, 0x79, 0x16, 0x2f, - 0x16, 0x5d, 0x5a, 0xec, 0xba, 0x3c, 0xc8, 0x2f, 0x2e, 0x08, 0x04, 0x96, 0xec, 0xd0, 0x97, 0x00, - 0xb6, 0xd4, 0x0d, 0x47, 0x91, 0x68, 0x71, 0xa1, 0xbf, 0x1b, 0x91, 0x62, 0xdf, 0xa8, 0xa0, 0x58, - 0xe3, 0x48, 0x65, 0xde, 0x91, 0x39, 0xe7, 0x59, 0x92, 0xc5, 0x42, 0x99, 0xcf, 0x4d, 0x51, 0xcf, - 0x65, 0x5e, 0xa1, 0x70, 0xca, 0x14, 0x75, 0x60, 0x72, 0x2f, 0x6e, 0xef, 0x10, 0x39, 0xf5, 0x59, - 0xe6, 0xc5, 0xf1, 0x4b, 0xaf, 0x17, 0xa4, 0xd3, 0x14, 0x45, 0xbc, 0x28, 0xe9, 0x38, 0x7e, 0x97, - 0x06, 0x63, 0xb9, 0x8c, 0x6e, 0xeb, 0x6c, 0xb1, 0x59, 0x0b, 0xfd, 0x24, 0xef, 0x74, 0xc2, 0xcd, - 0xfd, 0x84, 0x88, 0xcc, 0x8c, 0x05, 0x9f, 0xe4, 0x4d, 0x4e, 0xdc, 0xfd, 0x49, 0x04, 0x02, 0x4b, - 0x76, 0x6a, 0xc8, 0x98, 0x36, 0x9e, 0x29, 0x3d, 0x64, 0x5d, 0x7d, 0x48, 0x87, 0x8c, 0x69, 0xdf, - 0x94, 0x29, 0xd3, 0xba, 0xed, 0x9d, 0x30, 0x09, 0x83, 0x8c, 0xee, 0x3f, 0x51, 0x46, 0xeb, 0x36, - 0x72, 0x4a, 0x76, 0x6b, 0xdd, 0x3c, 0x2a, 0x9c, 0x5b, 0xab, 0xfd, 0xc7, 0xc3, 0xdd, 0x8b, 0x2d, - 0x33, 0x84, 0x7f, 0xb5, 0xfb, 0x5c, 0xf1, 0xb3, 0xfd, 0xef, 0xf2, 0x1e, 0xe2, 0x09, 0xe3, 0x37, - 0x2c, 0x38, 0xd3, 0xce, 0x5d, 0x4c, 0xc5, 0x82, 0xd5, 0xef, 0x66, 0x91, 0x0f, 0x98, 0x4a, 0x3b, - 0x9a, 0x8f, 0xc7, 0x3d, 0xea, 0xcc, 0x9a, 0x9f, 0xd5, 0x0f, 0x6c, 0x7e, 0xde, 0x81, 0x31, 0x66, - 0x31, 0xa5, 0x39, 0x30, 0xfa, 0x4c, 0x1b, 0xc1, 0x96, 0xbe, 0x15, 0xc1, 0x02, 0x2b, 0x66, 0x74, - 0xe0, 0x9e, 0xcc, 0x76, 0x02, 0x13, 0x86, 0x16, 0xf9, 0x52, 0xb9, 0x57, 0x63, 0x4d, 0x8c, 0xc4, - 0x93, 0x8d, 0xe3, 0x88, 0x8f, 0x8a, 0x08, 0xf0, 0xf1, 0x95, 0x3d, 0x4a, 0x73, 0xf6, 0x9f, 0x59, - 0x39, 0xf6, 0x17, 0xdf, 0x80, 0xbc, 0x6e, 0x6e, 0x40, 0x9e, 0xc9, 0x6e, 0x40, 0xba, 0x1c, 0x05, - 0xc6, 0xde, 0xa3, 0x7c, 0xf2, 0xc0, 0xb2, 0x49, 0x3a, 0x6c, 0x1f, 0xce, 0x15, 0x4d, 0x6e, 0x16, - 0xc1, 0xe3, 0xaa, 0xe3, 0xb0, 0x34, 0x82, 0xc7, 0x5d, 0xaf, 0x63, 0x86, 0x29, 0x7b, 0xdb, 0xdb, - 0xfe, 0xdf, 0x16, 0x54, 0x1b, 0xa1, 0x3b, 0x40, 0xc7, 0xc7, 0x65, 0xc3, 0xf1, 0xf1, 0x74, 0xe1, - 0x4b, 0x3b, 0x3d, 0xdd, 0x1c, 0x37, 0x33, 0x6e, 0x8e, 0x8f, 0x17, 0xb3, 0x3a, 0xde, 0xa9, 0xf1, - 0x83, 0x2a, 0xe8, 0x6f, 0x05, 0xa1, 0x3f, 0x78, 0x90, 0x50, 0xce, 0x6a, 0xb9, 0xe7, 0x83, 0x44, - 0x1d, 0x2c, 0xf4, 0x47, 0x5e, 0xef, 0xfa, 0x99, 0x8d, 0xe8, 0xbc, 0x43, 0xbc, 0xed, 0x9d, 0x84, - 0xb8, 0xd9, 0x8e, 0x3d, 0xba, 0x88, 0xce, 0xff, 0x66, 0xc1, 0x74, 0xa6, 0x76, 0xf4, 0xd5, 0xbc, - 0x7b, 0x22, 0x0f, 0xe4, 0xcc, 0x38, 0x51, 0x78, 0xad, 0x64, 0x01, 0x40, 0x79, 0x9f, 0xa5, 0xcb, - 0x81, 0x59, 0x60, 0xca, 0x3d, 0x1d, 0x63, 0x8d, 0x02, 0xbd, 0x0c, 0xe3, 0x49, 0xd8, 0x0e, 0xfd, - 0x70, 0x7b, 0xff, 0x2a, 0x91, 0xd9, 0x07, 0x94, 0xe7, 0x7e, 0x23, 0x45, 0x61, 0x9d, 0xce, 0xfe, - 0x51, 0x15, 0xb2, 0xef, 0x4c, 0xfd, 0x7f, 0x29, 0xfd, 0xd9, 0x91, 0xd2, 0x3f, 0xb4, 0x60, 0x86, - 0xd6, 0xce, 0xc2, 0x36, 0x64, 0xf4, 0xa5, 0xca, 0xf3, 0x6d, 0x1d, 0x93, 0xe7, 0xfb, 0x19, 0xaa, - 0xeb, 0xdc, 0xb0, 0x93, 0x08, 0x37, 0x89, 0xa6, 0xc2, 0x28, 0x14, 0x0b, 0xac, 0xa0, 0x23, 0x51, - 0x24, 0xae, 0xa3, 0xe8, 0x74, 0x24, 0x8a, 0xb0, 0xc0, 0xca, 0x34, 0xe0, 0x43, 0xf9, 0x69, 0xc0, - 0x79, 0xfe, 0x1e, 0x11, 0x2e, 0x20, 0x8c, 0x00, 0x2d, 0x7f, 0x8f, 0x8c, 0x23, 0x48, 0x69, 0xec, - 0xef, 0x54, 0x61, 0xa2, 0x11, 0xba, 0x69, 0x40, 0xf5, 0x4b, 0x46, 0x40, 0xf5, 0xb9, 0x4c, 0x40, - 0xf5, 0x8c, 0x4e, 0xfb, 0x70, 0xe2, 0xa9, 0x45, 0x8e, 0x27, 0x96, 0xa8, 0xfe, 0x81, 0x62, 0xa9, - 0x8d, 0x1c, 0x4f, 0x8a, 0x0d, 0x36, 0xb9, 0xfe, 0xe5, 0x89, 0xa1, 0xfe, 0x73, 0x0b, 0xa6, 0x1a, - 0xa1, 0x4b, 0x85, 0xf3, 0x2f, 0x93, 0x24, 0xea, 0x99, 0xa1, 0x46, 0x8e, 0xc9, 0x0c, 0xf5, 0x1b, - 0x16, 0x8c, 0x36, 0x42, 0x77, 0xe0, 0xee, 0xc3, 0x35, 0xd3, 0x7d, 0xf8, 0xd1, 0x42, 0x9d, 0xdb, - 0xc3, 0x63, 0xf8, 0xfd, 0x2a, 0x4c, 0xd2, 0xf6, 0x86, 0xdb, 0xf2, 0x6b, 0x19, 0x23, 0x63, 0x95, - 0x18, 0x19, 0x6a, 0x02, 0x86, 0xbe, 0x1f, 0xde, 0xcb, 0x7e, 0xb9, 0x35, 0x06, 0xc5, 0x02, 0x8b, - 0x2e, 0xc0, 0x58, 0x3b, 0x22, 0x7b, 0x5e, 0xd8, 0x89, 0xb3, 0x97, 0xda, 0x1a, 0x02, 0x8e, 0x15, - 0x05, 0x7a, 0x09, 0x26, 0x62, 0x2f, 0x68, 0x11, 0x19, 0x4c, 0x30, 0xc4, 0x82, 0x09, 0x78, 0xd2, - 0x3d, 0x0d, 0x8e, 0x0d, 0x2a, 0x74, 0x0b, 0x6a, 0xec, 0x3f, 0x9b, 0x3d, 0xfd, 0x66, 0x25, 0xe7, - 0x59, 0xa7, 0x64, 0x71, 0x9c, 0x72, 0x42, 0x97, 0x00, 0x12, 0x19, 0xf4, 0x10, 0x8b, 0xec, 0x19, - 0xca, 0x1a, 0x55, 0xe1, 0x10, 0x31, 0xd6, 0xa8, 0xd0, 0xf3, 0x50, 0x4b, 0x1c, 0xcf, 0xbf, 0xe6, - 0x05, 0x24, 0x16, 0x01, 0x23, 0x22, 0x6d, 0xac, 0x00, 0xe2, 0x14, 0x4f, 0xd7, 0x79, 0x76, 0x99, - 0x96, 0xbf, 0x76, 0x30, 0xc6, 0xa8, 0xd9, 0x3a, 0x7f, 0x4d, 0x41, 0xb1, 0x46, 0x61, 0xbf, 0xc8, - 0xd6, 0xeb, 0x3e, 0xa3, 0xed, 0x7f, 0x52, 0x01, 0xd4, 0x60, 0xc1, 0x15, 0xc6, 0x83, 0x10, 0x3b, - 0x30, 0x15, 0x93, 0x6b, 0x5e, 0xd0, 0xb9, 0x2f, 0x58, 0x95, 0xbb, 0xdc, 0xd0, 0x5c, 0xd5, 0xcb, - 0xf0, 0x3b, 0xa4, 0x26, 0x0c, 0x67, 0xf8, 0xd2, 0x21, 0x89, 0x3a, 0xc1, 0x52, 0x7c, 0x2b, 0x26, - 0x91, 0x78, 0xd2, 0x81, 0x0d, 0x09, 0x96, 0x40, 0x9c, 0xe2, 0xa9, 0x00, 0xb0, 0x3f, 0x37, 0xc2, - 0x00, 0x87, 0x61, 0x22, 0x45, 0x86, 0x25, 0xfa, 0xd6, 0xe0, 0xd8, 0xa0, 0x42, 0x6b, 0x80, 0xe2, - 0x4e, 0xbb, 0xed, 0xb3, 0x53, 0x2c, 0xc7, 0xbf, 0x1c, 0x85, 0x9d, 0x36, 0x8f, 0xac, 0x15, 0x39, - 0xb2, 0x9b, 0x5d, 0x58, 0x9c, 0x53, 0x82, 0x4e, 0xf7, 0xad, 0x98, 0xfd, 0x16, 0x77, 0x64, 0xb9, - 0x47, 0xad, 0xc9, 0x40, 0x58, 0xe2, 0xec, 0xaf, 0xb1, 0xe5, 0x89, 0x65, 0xdb, 0x4f, 0x3a, 0x11, - 0x41, 0x77, 0x61, 0xb2, 0xcd, 0x96, 0xa0, 0x24, 0x0a, 0x7d, 0x9f, 0x44, 0xc5, 0xef, 0x16, 0xf5, - 0x0c, 0xef, 0xe0, 0x19, 0xb6, 0x75, 0x66, 0xd8, 0xe4, 0x6d, 0xff, 0x27, 0x60, 0xba, 0x46, 0x1c, + 0x24, 0x40, 0xbe, 0x94, 0x00, 0x09, 0x9c, 0x18, 0xb6, 0xa2, 0x48, 0x09, 0xa4, 0x58, 0x36, 0x10, + 0xc4, 0x76, 0x14, 0x04, 0x0e, 0xa4, 0x3f, 0xb1, 0x61, 0x03, 0x1b, 0x73, 0x9d, 0x7f, 0xc9, 0x8f, + 0x00, 0xf9, 0x95, 0x85, 0x91, 0x04, 0xf5, 0xd9, 0x55, 0x3d, 0x3d, 0xdb, 0x3d, 0xc7, 0x9b, 0x33, + 0x65, 0xe4, 0xdf, 0xcc, 0x7b, 0xaf, 0x5e, 0x7d, 0xf4, 0xab, 0x57, 0xaf, 0x5e, 0xbd, 0x7a, 0x05, + 0x17, 0xee, 0xbe, 0x1a, 0x2f, 0x78, 0xe1, 0xe2, 0xdd, 0xce, 0x26, 0x89, 0x02, 0x92, 0x90, 0x78, + 0xb1, 0x7d, 0x77, 0x7b, 0xd1, 0x69, 0x7b, 0x8b, 0x7b, 0x17, 0x17, 0xb7, 0x49, 0x40, 0x22, 0x27, + 0x21, 0xee, 0x42, 0x3b, 0x0a, 0x93, 0x10, 0x3d, 0xc1, 0xa9, 0x17, 0x52, 0xea, 0x85, 0xf6, 0xdd, + 0xed, 0x05, 0xa7, 0xed, 0x2d, 0xec, 0x5d, 0x9c, 0x7b, 0x61, 0xdb, 0x4b, 0x76, 0x3a, 0x9b, 0x0b, + 0xad, 0x70, 0x77, 0x71, 0x3b, 0xdc, 0x0e, 0x17, 0x59, 0xa1, 0xcd, 0xce, 0x16, 0xfb, 0xc7, 0xfe, + 0xb0, 0x5f, 0x9c, 0xd9, 0xdc, 0xa5, 0xde, 0x55, 0x47, 0x24, 0x0e, 0x3b, 0x51, 0x8b, 0x64, 0x1b, + 0x70, 0x4c, 0x99, 0x78, 0x71, 0x97, 0x24, 0x4e, 0x4e, 0xa3, 0xe7, 0x5e, 0xc8, 0x2f, 0x13, 0x75, + 0x82, 0xc4, 0xdb, 0xed, 0xae, 0xe2, 0xa5, 0xe3, 0xc9, 0xe3, 0xd6, 0x0e, 0xd9, 0x75, 0xba, 0x4a, + 0x5d, 0xcc, 0x2f, 0xd5, 0x49, 0x3c, 0x7f, 0xd1, 0x0b, 0x92, 0x38, 0x89, 0xb2, 0x45, 0xec, 0x3f, + 0xb4, 0xe0, 0xdc, 0xd2, 0x9d, 0xe6, 0xaa, 0xef, 0xc4, 0x89, 0xd7, 0x5a, 0xf6, 0xc3, 0xd6, 0xdd, + 0x66, 0x12, 0x46, 0xe4, 0x76, 0xe8, 0x77, 0x76, 0x49, 0x93, 0x0d, 0x00, 0xba, 0x00, 0x63, 0x7b, + 0xec, 0xff, 0x7a, 0x7d, 0xd6, 0x3a, 0x67, 0x9d, 0xaf, 0x2d, 0xcf, 0xfc, 0xf8, 0x60, 0xfe, 0x23, + 0x87, 0x07, 0xf3, 0x63, 0xb7, 0x05, 0x1c, 0x2b, 0x0a, 0xf4, 0x0c, 0x8c, 0x6c, 0xc5, 0x1b, 0xfb, + 0x6d, 0x32, 0x5b, 0x61, 0xb4, 0x53, 0x82, 0x76, 0x64, 0xad, 0x49, 0xa1, 0x58, 0x60, 0xd1, 0x22, + 0xd4, 0xda, 0x4e, 0x94, 0x78, 0x89, 0x17, 0x06, 0xb3, 0xd5, 0x73, 0xd6, 0xf9, 0xe1, 0xe5, 0x13, + 0x82, 0xb4, 0xd6, 0x90, 0x08, 0x9c, 0xd2, 0xd0, 0x66, 0x44, 0xc4, 0x71, 0x6f, 0x06, 0xfe, 0xfe, + 0xec, 0xd0, 0x39, 0xeb, 0xfc, 0x58, 0xda, 0x0c, 0x2c, 0xe0, 0x58, 0x51, 0xd8, 0x3f, 0xa8, 0xc0, + 0xd8, 0xd2, 0xd6, 0x96, 0x17, 0x78, 0xc9, 0x3e, 0xfa, 0x0a, 0x4c, 0x04, 0xa1, 0x4b, 0xe4, 0x7f, + 0xd6, 0x8b, 0xf1, 0x4b, 0xcf, 0x2d, 0x1c, 0x27, 0x4a, 0x0b, 0x37, 0xb4, 0x12, 0xcb, 0x33, 0x87, + 0x07, 0xf3, 0x13, 0x3a, 0x04, 0x1b, 0x1c, 0xd1, 0xdb, 0x30, 0xde, 0x0e, 0x5d, 0x55, 0x41, 0x85, + 0x55, 0xf0, 0xec, 0xf1, 0x15, 0x34, 0xd2, 0x02, 0xcb, 0xd3, 0x87, 0x07, 0xf3, 0xe3, 0x1a, 0x00, + 0xeb, 0xec, 0x90, 0x0f, 0xd3, 0xf4, 0x6f, 0x90, 0x78, 0xaa, 0x86, 0x2a, 0xab, 0xe1, 0x85, 0xe2, + 0x1a, 0xb4, 0x42, 0xcb, 0x27, 0x0f, 0x0f, 0xe6, 0xa7, 0x33, 0x40, 0x9c, 0x65, 0x6d, 0xbf, 0x0b, + 0x53, 0x4b, 0x49, 0xe2, 0xb4, 0x76, 0x88, 0xcb, 0xbf, 0x2f, 0x7a, 0x09, 0x86, 0x02, 0x67, 0x97, + 0x88, 0xaf, 0x7f, 0x4e, 0x0c, 0xfb, 0xd0, 0x0d, 0x67, 0x97, 0x1c, 0x1d, 0xcc, 0xcf, 0xdc, 0x0a, + 0xbc, 0x77, 0x3a, 0x42, 0x66, 0x28, 0x0c, 0x33, 0x6a, 0x74, 0x09, 0xc0, 0x25, 0x7b, 0x5e, 0x8b, + 0x34, 0x9c, 0x64, 0x47, 0x48, 0x03, 0x12, 0x65, 0xa1, 0xae, 0x30, 0x58, 0xa3, 0xb2, 0xbf, 0x6e, + 0x41, 0x6d, 0x69, 0x2f, 0xf4, 0xdc, 0x46, 0xe8, 0xc6, 0xa8, 0x03, 0xd3, 0xed, 0x88, 0x6c, 0x91, + 0x48, 0x81, 0x66, 0xad, 0x73, 0xd5, 0xf3, 0xe3, 0x97, 0x2e, 0x15, 0xf4, 0xdb, 0x2c, 0xb4, 0x1a, + 0x24, 0xd1, 0xfe, 0xf2, 0x63, 0xa2, 0xea, 0xe9, 0x0c, 0x16, 0x67, 0xeb, 0xb0, 0xff, 0x56, 0x05, + 0x4e, 0x2f, 0xbd, 0xdb, 0x89, 0x48, 0xdd, 0x8b, 0xef, 0x66, 0xa7, 0x82, 0xeb, 0xc5, 0x77, 0x6f, + 0xa4, 0x83, 0xa1, 0x64, 0xb0, 0x2e, 0xe0, 0x58, 0x51, 0xa0, 0x17, 0x60, 0x94, 0xfe, 0xbe, 0x85, + 0xd7, 0x45, 0xef, 0x4f, 0x0a, 0xe2, 0xf1, 0xba, 0x93, 0x38, 0x75, 0x8e, 0xc2, 0x92, 0x06, 0x5d, + 0x87, 0xf1, 0x96, 0xd3, 0xda, 0xf1, 0x82, 0xed, 0xeb, 0xa1, 0x4b, 0xd8, 0x17, 0xae, 0x2d, 0x3f, + 0x4f, 0xc9, 0x57, 0x52, 0xf0, 0xd1, 0xc1, 0xfc, 0x2c, 0x6f, 0x9b, 0x60, 0xa1, 0xe1, 0xb0, 0x5e, + 0x1e, 0xd9, 0x6a, 0x22, 0x0e, 0x31, 0x4e, 0x90, 0x33, 0x09, 0xcf, 0x6b, 0x73, 0x6a, 0x98, 0xcd, + 0xa9, 0x89, 0x1e, 0xf3, 0xe9, 0x5f, 0x58, 0x62, 0x4c, 0xd6, 0x3c, 0xdf, 0x54, 0x0f, 0x97, 0x00, + 0x62, 0xd2, 0x8a, 0x48, 0xa2, 0x8d, 0x8a, 0xfa, 0xcc, 0x4d, 0x85, 0xc1, 0x1a, 0x15, 0x9d, 0xfc, + 0xf1, 0x8e, 0x13, 0x31, 0x69, 0x11, 0x63, 0xa3, 0x26, 0x7f, 0x53, 0x22, 0x70, 0x4a, 0x63, 0x4c, + 0xfe, 0x6a, 0xe1, 0xe4, 0xff, 0xb7, 0x16, 0x8c, 0x2e, 0x7b, 0x81, 0xeb, 0x05, 0xdb, 0xe8, 0x2d, + 0x18, 0xa3, 0x5a, 0xd9, 0x75, 0x12, 0x47, 0xcc, 0xfb, 0xf3, 0xc7, 0x0b, 0xcf, 0xcd, 0xcd, 0xaf, + 0x92, 0x56, 0x72, 0x9d, 0x24, 0x4e, 0xda, 0x8d, 0x14, 0x86, 0x15, 0x37, 0x74, 0x0b, 0x46, 0x12, + 0x27, 0xda, 0x26, 0x89, 0x98, 0xee, 0x2f, 0x94, 0xe1, 0x8b, 0xa9, 0xa8, 0x91, 0xa0, 0x45, 0x52, + 0xc5, 0xb8, 0xc1, 0x98, 0x60, 0xc1, 0xcc, 0x6e, 0xc1, 0xc4, 0x8a, 0xd3, 0x76, 0x36, 0x3d, 0xdf, + 0x4b, 0x3c, 0x12, 0xa3, 0x8f, 0x43, 0xd5, 0x71, 0x5d, 0x26, 0xf8, 0xb5, 0xe5, 0xd3, 0x87, 0x07, + 0xf3, 0xd5, 0x25, 0xd7, 0x3d, 0x3a, 0x98, 0x07, 0x45, 0xb5, 0x8f, 0x29, 0x05, 0x7a, 0x0e, 0x86, + 0xdc, 0x28, 0x6c, 0xcf, 0x56, 0x18, 0xe5, 0x19, 0x3a, 0x43, 0xeb, 0x51, 0xd8, 0xce, 0x90, 0x32, + 0x1a, 0xfb, 0xf7, 0x2a, 0x80, 0x56, 0x48, 0x7b, 0x67, 0xad, 0x69, 0x7c, 0xcb, 0xf3, 0x30, 0xb6, + 0x1b, 0x06, 0x5e, 0x12, 0x46, 0xb1, 0xa8, 0x90, 0xc9, 0xc3, 0x75, 0x01, 0xc3, 0x0a, 0x8b, 0xce, + 0xc1, 0x50, 0x3b, 0x9d, 0xd6, 0x13, 0x52, 0x25, 0xb0, 0x09, 0xcd, 0x30, 0x94, 0xa2, 0x13, 0x93, + 0x48, 0xc8, 0xb1, 0xa2, 0xb8, 0x15, 0x93, 0x08, 0x33, 0x4c, 0x2a, 0x39, 0x54, 0xa6, 0x84, 0x94, + 0x66, 0x24, 0x87, 0x62, 0xb0, 0x46, 0x85, 0xbe, 0x0c, 0x35, 0xfe, 0x0f, 0x93, 0x2d, 0x26, 0xb2, + 0x85, 0xca, 0xe0, 0x5a, 0xd8, 0x72, 0xfc, 0xec, 0xe0, 0x4f, 0x32, 0x49, 0x93, 0x8c, 0x70, 0xca, + 0xd3, 0x90, 0xb4, 0x91, 0x42, 0x49, 0xfb, 0xbb, 0x16, 0xa0, 0x15, 0x2f, 0x70, 0x49, 0xf4, 0x08, + 0x96, 0xcc, 0xfe, 0x26, 0xc1, 0x9f, 0xd0, 0xa6, 0x85, 0xbb, 0xed, 0x30, 0x20, 0x41, 0xb2, 0x12, + 0x06, 0x2e, 0x5f, 0x46, 0x3f, 0x0d, 0x43, 0x09, 0xad, 0x8a, 0x37, 0xeb, 0x19, 0xf9, 0x59, 0x68, + 0x05, 0x47, 0x07, 0xf3, 0x67, 0xba, 0x4b, 0xb0, 0x26, 0xb0, 0x32, 0xe8, 0x53, 0x30, 0x12, 0x27, + 0x4e, 0xd2, 0x89, 0x45, 0x43, 0x3f, 0x2a, 0x1b, 0xda, 0x64, 0xd0, 0xa3, 0x83, 0xf9, 0x69, 0x55, + 0x8c, 0x83, 0xb0, 0x28, 0x80, 0x9e, 0x85, 0xd1, 0x5d, 0x12, 0xc7, 0xce, 0xb6, 0x54, 0x6c, 0xd3, + 0xa2, 0xec, 0xe8, 0x75, 0x0e, 0xc6, 0x12, 0x8f, 0x9e, 0x82, 0x61, 0x12, 0x45, 0x61, 0x24, 0x24, + 0x62, 0x52, 0x10, 0x0e, 0xaf, 0x52, 0x20, 0xe6, 0x38, 0xfb, 0xa7, 0x16, 0x4c, 0xab, 0xb6, 0xf2, + 0xba, 0x06, 0x38, 0xd5, 0x5d, 0x80, 0x96, 0xec, 0x58, 0xcc, 0x26, 0xd8, 0xf8, 0xa5, 0x4f, 0x1c, + 0xcf, 0xbb, 0x7b, 0x20, 0xd3, 0x3a, 0x14, 0x28, 0xc6, 0x1a, 0x5f, 0xfb, 0xf7, 0x2c, 0x38, 0x99, + 0xe9, 0xd3, 0x35, 0x2f, 0x4e, 0xd0, 0x17, 0xba, 0xfa, 0x75, 0xa1, 0x77, 0xdd, 0xf1, 0x02, 0xa5, + 0x65, 0x82, 0xef, 0xc5, 0xbc, 0x6f, 0x4a, 0x4a, 0x24, 0x44, 0xeb, 0x19, 0x86, 0x61, 0x2f, 0x21, + 0xbb, 0xb2, 0x53, 0x2f, 0x94, 0xec, 0x14, 0x6f, 0x5d, 0xfa, 0x6d, 0xd6, 0x29, 0x0f, 0xcc, 0x59, + 0xd9, 0xff, 0xcb, 0x82, 0xda, 0x4a, 0x18, 0x6c, 0x79, 0xdb, 0xd7, 0x9d, 0xf6, 0x00, 0xbf, 0x4a, + 0x13, 0x86, 0x18, 0x57, 0xde, 0xf4, 0x8b, 0x45, 0x4d, 0x17, 0x0d, 0x5a, 0xa0, 0x2b, 0x27, 0x37, + 0x09, 0x94, 0x52, 0xa2, 0x20, 0xcc, 0x98, 0xcd, 0xbd, 0x02, 0x35, 0x45, 0x80, 0x66, 0xa0, 0x7a, + 0x97, 0x70, 0x7b, 0xb1, 0x86, 0xe9, 0x4f, 0x74, 0x0a, 0x86, 0xf7, 0x1c, 0xbf, 0x23, 0xa6, 0x2a, + 0xe6, 0x7f, 0x3e, 0x5d, 0x79, 0xd5, 0xb2, 0x7f, 0x64, 0xc1, 0x29, 0x55, 0xc9, 0x55, 0xb2, 0xdf, + 0x24, 0x3e, 0x69, 0x25, 0x61, 0x84, 0xde, 0xb3, 0xe0, 0x94, 0x9f, 0xa3, 0x84, 0xc4, 0x68, 0x3c, + 0x88, 0xfa, 0x7a, 0x42, 0x34, 0xfc, 0x54, 0x1e, 0x16, 0xe7, 0xd6, 0x86, 0x9e, 0xe4, 0x7d, 0xe1, + 0x33, 0x77, 0x5c, 0x30, 0xa8, 0x5e, 0x25, 0xfb, 0xac, 0x63, 0xf6, 0x0f, 0x2d, 0x98, 0x54, 0xcd, + 0x1f, 0xb8, 0xd8, 0x5d, 0x33, 0xc5, 0xee, 0xe3, 0x25, 0xbf, 0x5d, 0x0f, 0x81, 0xfb, 0x47, 0x15, + 0x38, 0xad, 0x68, 0x0c, 0x45, 0xfc, 0x21, 0x19, 0xfb, 0xfe, 0xba, 0x7b, 0x95, 0xec, 0x6f, 0x84, + 0x74, 0x25, 0xcd, 0xef, 0x2e, 0xba, 0x08, 0xe3, 0x2e, 0xd9, 0x72, 0x3a, 0x7e, 0xa2, 0x0c, 0xc5, + 0x61, 0xbe, 0x83, 0xa8, 0xa7, 0x60, 0xac, 0xd3, 0xd8, 0x7f, 0x50, 0x63, 0x53, 0x32, 0x71, 0xbc, + 0x80, 0x44, 0x74, 0x69, 0xd6, 0xec, 0xf9, 0x09, 0xdd, 0x9e, 0x17, 0xb6, 0xfb, 0x53, 0x30, 0xec, + 0xed, 0x52, 0x65, 0x5d, 0x31, 0x75, 0xf0, 0x3a, 0x05, 0x62, 0x8e, 0x43, 0x4f, 0xc3, 0x68, 0x2b, + 0xdc, 0xdd, 0x75, 0x02, 0x77, 0xb6, 0xca, 0x8c, 0x85, 0x71, 0xaa, 0xcf, 0x57, 0x38, 0x08, 0x4b, + 0x1c, 0x7a, 0x02, 0x86, 0x9c, 0x68, 0x3b, 0x9e, 0x1d, 0x62, 0x34, 0x63, 0xb4, 0xa6, 0xa5, 0x68, + 0x3b, 0xc6, 0x0c, 0x4a, 0x8d, 0x80, 0x7b, 0x61, 0x74, 0xd7, 0x0b, 0xb6, 0xeb, 0x5e, 0xc4, 0x56, + 0x74, 0xcd, 0x08, 0xb8, 0xa3, 0x30, 0x58, 0xa3, 0x42, 0x0d, 0x18, 0x6e, 0x87, 0x51, 0x12, 0xcf, + 0x8e, 0xb0, 0xe1, 0x7c, 0xbe, 0x50, 0x7a, 0x78, 0xbf, 0x1b, 0x61, 0x94, 0xa4, 0x5d, 0xa1, 0xff, + 0x62, 0xcc, 0x19, 0xa1, 0x15, 0xa8, 0x92, 0x60, 0x6f, 0x76, 0x94, 0xf1, 0xfb, 0xd8, 0xf1, 0xfc, + 0x56, 0x83, 0xbd, 0xdb, 0x4e, 0x94, 0x4e, 0xa1, 0xd5, 0x60, 0x0f, 0xd3, 0xd2, 0xa8, 0x05, 0x35, + 0xe9, 0x35, 0x88, 0x67, 0xc7, 0xca, 0x08, 0x18, 0x16, 0xe4, 0x98, 0xbc, 0xd3, 0xf1, 0x22, 0xb2, + 0x4b, 0x82, 0x24, 0x4e, 0x2d, 0x61, 0x89, 0x8d, 0x71, 0xca, 0x17, 0xb5, 0x60, 0x82, 0x1b, 0x0e, + 0xd7, 0xc3, 0x4e, 0x90, 0xc4, 0xb3, 0x35, 0xd6, 0xe4, 0x82, 0xad, 0xe6, 0xed, 0xb4, 0xc4, 0xf2, + 0x29, 0xc1, 0x7e, 0x42, 0x03, 0xc6, 0xd8, 0x60, 0x8a, 0xde, 0x86, 0x49, 0xdf, 0xdb, 0x23, 0x01, + 0x89, 0xe3, 0x46, 0x14, 0x6e, 0x92, 0x59, 0x60, 0xbd, 0x79, 0xaa, 0x68, 0xdb, 0x15, 0x6e, 0x92, + 0xe5, 0x13, 0x87, 0x07, 0xf3, 0x93, 0xd7, 0xf4, 0xd2, 0xd8, 0x64, 0x86, 0xbe, 0x0c, 0x53, 0xd4, + 0x4a, 0xf1, 0x52, 0xf6, 0xe3, 0xe5, 0xd9, 0xa3, 0xc3, 0x83, 0xf9, 0x29, 0x6c, 0x14, 0xc7, 0x19, + 0x76, 0x68, 0x03, 0x6a, 0xbe, 0xb7, 0x45, 0x5a, 0xfb, 0x2d, 0x9f, 0xcc, 0x4e, 0x30, 0xde, 0x05, + 0x53, 0xee, 0x9a, 0x24, 0xe7, 0x96, 0xa1, 0xfa, 0x8b, 0x53, 0x46, 0xe8, 0x36, 0x9c, 0x49, 0x48, + 0xb4, 0xeb, 0x05, 0x0e, 0x5d, 0xae, 0x85, 0xd9, 0xc2, 0xf6, 0xb6, 0x93, 0x4c, 0x6a, 0xcf, 0x8a, + 0x81, 0x3d, 0xb3, 0x91, 0x4b, 0x85, 0x7b, 0x94, 0x46, 0x37, 0x61, 0x9a, 0xcd, 0xa7, 0x46, 0xc7, + 0xf7, 0x1b, 0xa1, 0xef, 0xb5, 0xf6, 0x67, 0xa7, 0x18, 0xc3, 0xa7, 0xe5, 0x8e, 0x75, 0xdd, 0x44, + 0x53, 0x8b, 0x3e, 0xfd, 0x87, 0xb3, 0xa5, 0x91, 0x0f, 0xd3, 0x31, 0x69, 0x75, 0x22, 0x2f, 0xd9, + 0xa7, 0xb2, 0x4f, 0xee, 0x27, 0xb3, 0xd3, 0x65, 0x76, 0x28, 0x4d, 0xb3, 0x10, 0x77, 0x17, 0x64, + 0x80, 0x38, 0xcb, 0x9a, 0xaa, 0x8a, 0x38, 0x71, 0xbd, 0x60, 0x76, 0x86, 0x99, 0xa4, 0x6a, 0x7e, + 0x35, 0x29, 0x10, 0x73, 0x1c, 0xdb, 0xf0, 0xd1, 0x1f, 0x37, 0xa9, 0xee, 0x3d, 0xc1, 0x08, 0xd3, + 0x0d, 0x9f, 0x44, 0xe0, 0x94, 0x86, 0xae, 0x56, 0x49, 0xb2, 0x3f, 0x8b, 0x18, 0xa9, 0x9a, 0x6a, + 0x1b, 0x1b, 0x9f, 0xc7, 0x14, 0x6e, 0x6f, 0xc2, 0x94, 0x9a, 0xd6, 0x6c, 0x74, 0xd0, 0x3c, 0x0c, + 0x53, 0xcd, 0x25, 0xf7, 0x2d, 0x35, 0xda, 0x04, 0xaa, 0xd0, 0x62, 0xcc, 0xe1, 0xac, 0x09, 0xde, + 0xbb, 0x64, 0x79, 0x3f, 0x21, 0xdc, 0x7e, 0xad, 0x6a, 0x4d, 0x90, 0x08, 0x9c, 0xd2, 0xd8, 0xff, + 0x87, 0xaf, 0x88, 0xa9, 0xee, 0x28, 0xa1, 0x37, 0x2f, 0xc0, 0xd8, 0x4e, 0x18, 0x27, 0x94, 0x9a, + 0xd5, 0x31, 0x9c, 0xae, 0x82, 0x57, 0x04, 0x1c, 0x2b, 0x0a, 0xf4, 0x1a, 0x4c, 0xb6, 0xf4, 0x0a, + 0x84, 0x2a, 0x3f, 0x2d, 0x8a, 0x98, 0xb5, 0x63, 0x93, 0x16, 0xbd, 0x0a, 0x63, 0xcc, 0x89, 0xd7, + 0x0a, 0x7d, 0x61, 0x29, 0xcb, 0x95, 0x69, 0xac, 0x21, 0xe0, 0x47, 0xda, 0x6f, 0xac, 0xa8, 0xe9, + 0x7e, 0x83, 0x36, 0x61, 0xbd, 0x21, 0xd4, 0xad, 0xda, 0x6f, 0x5c, 0x61, 0x50, 0x2c, 0xb0, 0xf6, + 0xbf, 0xac, 0x68, 0xa3, 0x4c, 0x2d, 0x3e, 0x82, 0xbe, 0x00, 0xa3, 0xf7, 0x1c, 0x2f, 0xf1, 0x82, + 0x6d, 0xb1, 0x82, 0xbe, 0x58, 0x52, 0xf7, 0xb2, 0xe2, 0x77, 0x78, 0x51, 0xbe, 0x4e, 0x88, 0x3f, + 0x58, 0x32, 0xa4, 0xbc, 0xa3, 0x4e, 0x10, 0x50, 0xde, 0x95, 0xfe, 0x79, 0x63, 0x5e, 0x94, 0xf3, + 0x16, 0x7f, 0xb0, 0x64, 0x88, 0xb6, 0x00, 0xe4, 0xec, 0x23, 0xae, 0x70, 0x9e, 0x7d, 0xb2, 0x1f, + 0xf6, 0x1b, 0xaa, 0xf4, 0xf2, 0x14, 0x5d, 0x99, 0xd2, 0xff, 0x58, 0xe3, 0x6c, 0x47, 0xcc, 0x10, + 0xe9, 0x6e, 0x16, 0xfa, 0x3c, 0x9d, 0x00, 0x4e, 0x94, 0x10, 0x77, 0x29, 0x29, 0x36, 0x83, 0x53, + 0x6b, 0x6a, 0xc3, 0xdb, 0x25, 0xfa, 0x54, 0x11, 0x2c, 0x70, 0xca, 0xcd, 0xfe, 0x5e, 0x15, 0x66, + 0x7b, 0x35, 0x96, 0x0a, 0x24, 0xb9, 0xef, 0x25, 0x2b, 0xd4, 0x50, 0xb0, 0x4c, 0x81, 0x5c, 0x15, + 0x70, 0xac, 0x28, 0xa8, 0x64, 0xc4, 0xde, 0x76, 0xe0, 0xf8, 0x42, 0x78, 0x95, 0x64, 0x34, 0x19, + 0x14, 0x0b, 0x2c, 0xa5, 0x8b, 0x88, 0x13, 0x0b, 0xcf, 0xad, 0x26, 0x41, 0x98, 0x41, 0xb1, 0xc0, + 0xea, 0xbb, 0xbe, 0xa1, 0x82, 0x5d, 0x9f, 0x31, 0x40, 0xc3, 0x0f, 0x73, 0x80, 0xd0, 0xdb, 0x00, + 0x5b, 0x5e, 0xe0, 0xc5, 0x3b, 0x8c, 0xf7, 0x48, 0x9f, 0xbc, 0x95, 0x31, 0xb2, 0xa6, 0x78, 0x60, + 0x8d, 0x1f, 0x7a, 0x19, 0xc6, 0xd5, 0xc4, 0x5c, 0xaf, 0xcf, 0x8e, 0x9a, 0x9e, 0xbe, 0x54, 0x4b, + 0xd5, 0xb1, 0x4e, 0x67, 0x7f, 0x35, 0x2b, 0x29, 0x62, 0x3e, 0x68, 0x63, 0x6b, 0x95, 0x1d, 0xdb, + 0xca, 0xf1, 0x63, 0x6b, 0xff, 0x97, 0x2a, 0xdd, 0x2c, 0x6b, 0x95, 0x75, 0xe2, 0x12, 0xba, 0xec, + 0x4d, 0xaa, 0xd8, 0x9d, 0x84, 0x88, 0xd9, 0x78, 0xa1, 0x9f, 0xe9, 0xa2, 0x2f, 0x03, 0x74, 0x16, + 0x70, 0x4e, 0x68, 0x07, 0x6a, 0xbe, 0x13, 0xb3, 0xdd, 0x23, 0x11, 0xb3, 0xb0, 0x3f, 0xb6, 0xa9, + 0xf1, 0xed, 0xc4, 0x89, 0xb6, 0xce, 0xf2, 0x5a, 0x52, 0xe6, 0x74, 0x55, 0xa2, 0x46, 0x81, 0x3c, + 0x2a, 0x50, 0xcd, 0xa1, 0x96, 0xc3, 0x3e, 0xe6, 0x38, 0xf4, 0x2a, 0x4c, 0x44, 0x84, 0xc9, 0xc9, + 0x0a, 0xb5, 0x7b, 0x98, 0xd8, 0x0d, 0xa7, 0x06, 0x12, 0xd6, 0x70, 0xd8, 0xa0, 0x4c, 0xed, 0xe3, + 0x91, 0x63, 0xec, 0xe3, 0x67, 0x61, 0x94, 0xfd, 0x50, 0x52, 0xa1, 0xbe, 0xd0, 0x3a, 0x07, 0x63, + 0x89, 0xcf, 0x0a, 0xd1, 0x58, 0x49, 0x21, 0x7a, 0x0e, 0xa6, 0xea, 0x0e, 0xd9, 0x0d, 0x83, 0xd5, + 0xc0, 0x6d, 0x87, 0x5e, 0x90, 0xa0, 0x59, 0x18, 0x62, 0x2b, 0x09, 0x9f, 0xeb, 0x43, 0x94, 0x03, + 0x1e, 0xa2, 0x36, 0xae, 0xfd, 0x7f, 0x2d, 0x98, 0xac, 0x13, 0x9f, 0x24, 0xe4, 0x66, 0x9b, 0xf9, + 0x1b, 0xd0, 0x1a, 0xa0, 0xed, 0xc8, 0x69, 0x91, 0x06, 0x89, 0xbc, 0xd0, 0x6d, 0x92, 0x56, 0x18, + 0x30, 0x0f, 0x3b, 0x5d, 0x1a, 0xcf, 0x1c, 0x1e, 0xcc, 0xa3, 0xcb, 0x5d, 0x58, 0x9c, 0x53, 0x02, + 0xb9, 0x30, 0xd9, 0x8e, 0x88, 0xe1, 0x20, 0xb1, 0x8a, 0xcd, 0xf2, 0x86, 0x5e, 0x84, 0x5b, 0x8d, + 0x06, 0x08, 0x9b, 0x4c, 0xd1, 0x67, 0x61, 0x26, 0x8c, 0xda, 0x3b, 0x4e, 0x50, 0x27, 0x6d, 0x12, + 0xb8, 0xd4, 0x54, 0x16, 0x5e, 0xb0, 0x53, 0x87, 0x07, 0xf3, 0x33, 0x37, 0x33, 0x38, 0xdc, 0x45, + 0x6d, 0xff, 0x7a, 0x05, 0x4e, 0xd7, 0xc3, 0x7b, 0xc1, 0x3d, 0x27, 0x72, 0x97, 0x1a, 0xeb, 0xdc, + 0xfe, 0x65, 0x5e, 0x45, 0xe9, 0xcd, 0xb4, 0x7a, 0x7a, 0x33, 0xbf, 0x08, 0x63, 0x5b, 0x1e, 0xf1, + 0x5d, 0x4c, 0xb6, 0x44, 0xf7, 0x2e, 0x96, 0xf1, 0x62, 0xac, 0xd1, 0x32, 0xd2, 0x13, 0xc0, 0x9d, + 0xa9, 0x6b, 0x82, 0x0d, 0x56, 0x0c, 0x51, 0x07, 0x66, 0xa4, 0x81, 0x2f, 0xb1, 0x62, 0x76, 0xbc, + 0x58, 0x6e, 0xff, 0x60, 0x56, 0xc3, 0xc6, 0x03, 0x67, 0x18, 0xe2, 0xae, 0x2a, 0xe8, 0xc6, 0x6c, + 0x97, 0xae, 0x0b, 0x43, 0x4c, 0x56, 0xd8, 0xc6, 0x8c, 0xed, 0x1c, 0x19, 0xd4, 0xfe, 0x67, 0x16, + 0x3c, 0xd6, 0x35, 0x5a, 0x62, 0x5b, 0xfd, 0x96, 0xdc, 0xcf, 0xf2, 0xe3, 0x98, 0x82, 0x56, 0xe6, + 0x8e, 0x79, 0xb9, 0xbd, 0x6d, 0xa5, 0xc4, 0xde, 0xf6, 0x26, 0x9c, 0x5a, 0xdd, 0x6d, 0x27, 0xfb, + 0x75, 0xcf, 0x74, 0xc2, 0xbe, 0x02, 0x23, 0xbb, 0xc4, 0xf5, 0x3a, 0xbb, 0xe2, 0xb3, 0xce, 0x4b, + 0x45, 0x7a, 0x9d, 0x41, 0x8f, 0x0e, 0xe6, 0x27, 0x9b, 0x49, 0x18, 0x39, 0xdb, 0x84, 0x03, 0xb0, + 0x20, 0xb7, 0xdf, 0xb7, 0x60, 0x5a, 0x4e, 0xa8, 0x25, 0xd7, 0x8d, 0x48, 0x1c, 0xa3, 0x39, 0xa8, + 0x78, 0x6d, 0xc1, 0x08, 0x04, 0xa3, 0xca, 0x7a, 0x03, 0x57, 0xbc, 0x36, 0xfa, 0x02, 0xd4, 0xb8, + 0xef, 0x3e, 0x15, 0x8e, 0x3e, 0xcf, 0x02, 0xd8, 0xa6, 0x63, 0x43, 0xf2, 0xc0, 0x29, 0x3b, 0x69, + 0x50, 0x32, 0x55, 0x5d, 0x35, 0x3d, 0xc9, 0x57, 0x04, 0x1c, 0x2b, 0x0a, 0x74, 0x1e, 0xc6, 0x82, + 0xd0, 0xe5, 0xc7, 0x2a, 0x7c, 0xc1, 0x65, 0x22, 0x77, 0x43, 0xc0, 0xb0, 0xc2, 0xda, 0xdf, 0xb0, + 0x60, 0x42, 0xf6, 0xb1, 0xa4, 0x6d, 0x4b, 0x27, 0x49, 0x6a, 0xd7, 0xa6, 0x93, 0x84, 0xda, 0xa6, + 0x0c, 0x63, 0x98, 0xa4, 0xd5, 0x7e, 0x4c, 0x52, 0xfb, 0x87, 0x15, 0x98, 0x92, 0xcd, 0x69, 0x76, + 0x36, 0x63, 0x92, 0xa0, 0x2f, 0x41, 0xcd, 0xe1, 0x83, 0x4f, 0xa4, 0x9c, 0xbd, 0x50, 0xb4, 0x31, + 0x37, 0xbe, 0x59, 0x6a, 0x15, 0x2c, 0x49, 0x3e, 0x38, 0x65, 0x89, 0xf6, 0xe0, 0x44, 0x10, 0x26, + 0x6c, 0x3d, 0x50, 0xf8, 0x72, 0x5e, 0xd0, 0x6c, 0x3d, 0x8f, 0x8b, 0x7a, 0x4e, 0xdc, 0xc8, 0xf2, + 0xc3, 0xdd, 0x55, 0xa0, 0x9b, 0xd2, 0x79, 0x51, 0x65, 0x75, 0x3d, 0x57, 0xae, 0xae, 0xde, 0xbe, + 0x0b, 0xfb, 0x77, 0x2c, 0xa8, 0x49, 0xb2, 0x41, 0x3a, 0xc1, 0xef, 0xc0, 0x68, 0xcc, 0x3e, 0x8d, + 0x1c, 0xa6, 0x0b, 0xe5, 0x9a, 0xce, 0xbf, 0x67, 0xba, 0xf8, 0xf1, 0xff, 0x31, 0x96, 0xdc, 0x98, + 0xeb, 0x51, 0x75, 0xe0, 0x43, 0xe6, 0x7a, 0x54, 0xed, 0xea, 0xe1, 0x7a, 0xfc, 0x35, 0x0b, 0x46, + 0xb8, 0x43, 0xa8, 0x9c, 0x57, 0x4d, 0x73, 0x1e, 0xa7, 0x1c, 0x6f, 0x53, 0xa0, 0xf0, 0x25, 0xa3, + 0x3b, 0x50, 0x63, 0x3f, 0xd6, 0xa2, 0x70, 0x57, 0xac, 0x02, 0xcf, 0x95, 0x71, 0x48, 0x71, 0xad, + 0xc7, 0x55, 0xc9, 0x6d, 0xc9, 0x00, 0xa7, 0xbc, 0xec, 0x1f, 0x55, 0xe9, 0x94, 0x4f, 0x49, 0x8d, + 0x35, 0xcd, 0x7a, 0x14, 0x6b, 0x5a, 0x65, 0xf0, 0x6b, 0xda, 0x3b, 0x30, 0xdd, 0xd2, 0x9c, 0xf0, + 0xe9, 0x4a, 0x7a, 0xa9, 0xa4, 0x8b, 0x59, 0xf3, 0xdc, 0x73, 0x07, 0xc8, 0x8a, 0xc9, 0x0e, 0x67, + 0xf9, 0x23, 0x02, 0x13, 0xfc, 0xf8, 0x50, 0xd4, 0x37, 0xc4, 0xea, 0x5b, 0x2c, 0xf4, 0xb5, 0xf0, + 0x12, 0xaa, 0x32, 0x16, 0x62, 0xd2, 0xd4, 0x18, 0x61, 0x83, 0xad, 0xfd, 0xab, 0xc3, 0x30, 0xbc, + 0xba, 0x47, 0x82, 0x64, 0x80, 0x53, 0x7c, 0x17, 0xa6, 0xbc, 0x60, 0x2f, 0xf4, 0xf7, 0x88, 0xcb, + 0xf1, 0x0f, 0xb6, 0x9c, 0x9d, 0x11, 0x95, 0x4c, 0xad, 0x1b, 0xcc, 0x70, 0x86, 0xf9, 0x20, 0xb6, + 0x91, 0x6f, 0xc2, 0x08, 0x97, 0x08, 0xb1, 0x87, 0x2c, 0x70, 0x8c, 0xb2, 0x01, 0x15, 0x33, 0x27, + 0xdd, 0xec, 0x72, 0x9f, 0xac, 0x60, 0x84, 0x76, 0x60, 0x6a, 0xcb, 0x8b, 0xe2, 0x84, 0xee, 0x06, + 0xe3, 0xc4, 0xd9, 0x6d, 0xf7, 0xbd, 0x85, 0x54, 0xe3, 0xb1, 0x66, 0xf0, 0xc1, 0x19, 0xbe, 0x88, + 0xc0, 0x24, 0xdd, 0xc1, 0xa4, 0x15, 0x8d, 0xf6, 0x59, 0x91, 0xf2, 0x1c, 0x5d, 0xd3, 0xd9, 0x60, + 0x93, 0x2b, 0x55, 0x43, 0x2d, 0xb6, 0xdf, 0x19, 0x63, 0x2b, 0xb9, 0x52, 0x43, 0x7c, 0xa3, 0xc3, + 0x71, 0x54, 0x9b, 0xb1, 0x73, 0xe2, 0x9a, 0xa9, 0xcd, 0xd2, 0xd3, 0x60, 0xfb, 0xbb, 0x74, 0xdd, + 0xa1, 0xe3, 0x37, 0x70, 0x95, 0x7d, 0xc5, 0x54, 0xd9, 0x4f, 0x95, 0xf8, 0xa6, 0x3d, 0xd4, 0xf5, + 0x57, 0x60, 0x5c, 0xfb, 0xe4, 0x68, 0x11, 0x6a, 0x2d, 0x79, 0xa4, 0x29, 0xf4, 0xb6, 0x32, 0x1a, + 0xd4, 0x59, 0x27, 0x4e, 0x69, 0xe8, 0xa8, 0x50, 0x63, 0x2b, 0x1b, 0xf6, 0x40, 0x4d, 0x31, 0xcc, + 0x30, 0xf6, 0x8b, 0x00, 0xab, 0xf7, 0x49, 0x6b, 0xa9, 0xc5, 0x4e, 0xdb, 0xb5, 0x23, 0x12, 0xab, + 0xf7, 0x11, 0x09, 0x1d, 0xca, 0xa9, 0xb5, 0x15, 0xc3, 0x7a, 0x5d, 0x00, 0xe0, 0x56, 0xe0, 0x9d, + 0x3b, 0x37, 0xa4, 0x53, 0x93, 0x7b, 0x9e, 0x14, 0x14, 0x6b, 0x14, 0xe8, 0x71, 0xa8, 0xfa, 0x9d, + 0x40, 0x18, 0x67, 0xa3, 0x87, 0x07, 0xf3, 0xd5, 0x6b, 0x9d, 0x00, 0x53, 0x98, 0x16, 0x5f, 0x50, + 0x2d, 0x1d, 0x5f, 0x50, 0x1c, 0x61, 0xf7, 0xad, 0x2a, 0xcc, 0xac, 0xf9, 0xe4, 0xbe, 0xd1, 0xea, + 0x67, 0x60, 0xc4, 0x8d, 0xbc, 0x3d, 0x12, 0x65, 0x9d, 0x17, 0x75, 0x06, 0xc5, 0x02, 0x5b, 0x3a, + 0xe4, 0xc1, 0x08, 0xf7, 0xa8, 0x0e, 0x38, 0xdc, 0xa3, 0xb0, 0xcf, 0x68, 0x0b, 0x46, 0x43, 0xbe, + 0x79, 0x9e, 0x1d, 0x66, 0xa2, 0xf8, 0xda, 0xf1, 0x8d, 0xc9, 0x8e, 0xcf, 0x82, 0xd8, 0x7a, 0xf3, + 0xe3, 0x67, 0xa5, 0xc5, 0x04, 0x14, 0x4b, 0xe6, 0x73, 0x9f, 0x86, 0x09, 0x9d, 0xb2, 0xaf, 0x73, + 0xe8, 0x5f, 0xb4, 0xe0, 0xe4, 0x9a, 0x1f, 0xb6, 0xee, 0x66, 0x62, 0x52, 0x5e, 0x86, 0x71, 0x3a, + 0x99, 0x62, 0x23, 0x50, 0xcb, 0x88, 0x48, 0x13, 0x28, 0xac, 0xd3, 0x69, 0xc5, 0x6e, 0xdd, 0x5a, + 0xaf, 0xe7, 0x05, 0xb2, 0x09, 0x14, 0xd6, 0xe9, 0xec, 0xff, 0x6c, 0xc1, 0x93, 0x97, 0x57, 0x56, + 0x1b, 0x24, 0x8a, 0xbd, 0x38, 0x21, 0x41, 0xd2, 0x15, 0x4b, 0xf7, 0x0c, 0x8c, 0xb4, 0x5d, 0xad, + 0x29, 0x4a, 0x04, 0x1a, 0x75, 0xd6, 0x0a, 0x81, 0xfd, 0xb0, 0x04, 0x94, 0xfe, 0x9a, 0x05, 0x27, + 0x2f, 0x7b, 0x09, 0x26, 0xed, 0x30, 0x1b, 0xfe, 0x16, 0x91, 0x76, 0x18, 0x7b, 0x49, 0x18, 0xed, + 0x67, 0xc3, 0xdf, 0xb0, 0xc2, 0x60, 0x8d, 0x8a, 0xd7, 0xbc, 0xe7, 0xc5, 0xb4, 0xa5, 0x15, 0x73, + 0x53, 0x87, 0x05, 0x1c, 0x2b, 0x0a, 0xda, 0x31, 0xd7, 0x8b, 0x98, 0x91, 0xb0, 0x2f, 0x66, 0xb0, + 0xea, 0x58, 0x5d, 0x22, 0x70, 0x4a, 0x63, 0xff, 0x7d, 0x0b, 0x4e, 0x5f, 0xf6, 0x3b, 0x71, 0x42, + 0xa2, 0xad, 0xd8, 0x68, 0xec, 0x8b, 0x50, 0x23, 0xd2, 0xa0, 0x15, 0x6d, 0x55, 0x4b, 0x86, 0xb2, + 0x74, 0x79, 0xec, 0x9d, 0xa2, 0x2b, 0x11, 0xea, 0xd5, 0x5f, 0x60, 0xd2, 0x6f, 0x55, 0x60, 0xf2, + 0xca, 0xc6, 0x46, 0xe3, 0x32, 0x49, 0x84, 0x96, 0x2c, 0x76, 0xbf, 0x34, 0xb4, 0xbd, 0xe7, 0xf8, + 0xa5, 0x85, 0x1e, 0xb3, 0xae, 0x93, 0x78, 0xfe, 0x02, 0x0f, 0x75, 0x5e, 0x58, 0x0f, 0x92, 0x9b, + 0x51, 0x33, 0x89, 0xbc, 0x60, 0x3b, 0x77, 0xaf, 0x2a, 0x35, 0x79, 0xb5, 0x97, 0x26, 0x47, 0x2f, + 0xc2, 0x08, 0x8b, 0xb4, 0x96, 0x46, 0xc7, 0xcf, 0x29, 0xfb, 0x80, 0x41, 0x8f, 0x0e, 0xe6, 0x6b, + 0xb7, 0xf0, 0x3a, 0xff, 0x83, 0x05, 0x29, 0xfa, 0x32, 0x8c, 0xef, 0x24, 0x49, 0xfb, 0x0a, 0x71, + 0x5c, 0x12, 0x49, 0x2d, 0x51, 0x60, 0x9e, 0xd1, 0xc1, 0xe0, 0x05, 0xd2, 0x89, 0x95, 0xc2, 0x62, + 0xac, 0x73, 0xb4, 0x9b, 0x00, 0x29, 0xee, 0x21, 0xed, 0x39, 0xec, 0xbf, 0x56, 0x81, 0xd1, 0x2b, + 0x4e, 0xe0, 0xfa, 0x24, 0x42, 0x6b, 0x30, 0x44, 0xee, 0x93, 0x56, 0x39, 0xcb, 0x32, 0x5d, 0xea, + 0xb8, 0xff, 0x88, 0xfe, 0xc7, 0xac, 0x3c, 0xc2, 0x30, 0x4a, 0xdb, 0x7d, 0x59, 0xc5, 0x47, 0x3e, + 0x5f, 0x3c, 0x0a, 0x4a, 0x24, 0xf8, 0x3a, 0x29, 0x40, 0x58, 0x32, 0x62, 0x9e, 0x96, 0x56, 0xbb, + 0x49, 0x95, 0x5b, 0x52, 0x2e, 0x04, 0x7a, 0x63, 0xa5, 0xc1, 0xc9, 0x05, 0x5f, 0xee, 0x69, 0x91, + 0x40, 0x9c, 0xb2, 0xb3, 0x5f, 0x85, 0x53, 0xec, 0x88, 0xce, 0x49, 0x76, 0x8c, 0x39, 0x53, 0x28, + 0x9c, 0xf6, 0x3f, 0xae, 0xc0, 0x89, 0xf5, 0xe6, 0x4a, 0xd3, 0xf4, 0x91, 0xbd, 0x0a, 0x13, 0x7c, + 0x79, 0xa6, 0x42, 0xe7, 0xf8, 0xa2, 0xbc, 0x72, 0x2e, 0x6f, 0x68, 0x38, 0x6c, 0x50, 0xa2, 0x27, + 0xa1, 0xea, 0xbd, 0x13, 0x64, 0x23, 0x75, 0xd6, 0xdf, 0xbc, 0x81, 0x29, 0x9c, 0xa2, 0xe9, 0x4a, + 0xcf, 0x55, 0x9c, 0x42, 0xab, 0xd5, 0xfe, 0x0d, 0x98, 0xf2, 0xe2, 0x56, 0xec, 0xad, 0x07, 0x74, + 0xfe, 0x3b, 0x2d, 0x29, 0xbe, 0xa9, 0x51, 0x4e, 0x9b, 0xaa, 0xb0, 0x38, 0x43, 0xad, 0xe9, 0xdb, + 0xe1, 0xd2, 0xd6, 0x42, 0x71, 0xa0, 0xe4, 0x57, 0xa1, 0xa6, 0xc2, 0x5a, 0x64, 0x28, 0x92, 0x95, + 0x1f, 0x8a, 0x54, 0x42, 0xe1, 0x48, 0xcf, 0x65, 0x35, 0xd7, 0x73, 0xf9, 0x1b, 0x16, 0xa4, 0x27, + 0xf8, 0x08, 0x43, 0xad, 0x1d, 0xb2, 0x63, 0x81, 0x48, 0x9e, 0xbc, 0x3d, 0x5d, 0x20, 0x89, 0x7c, + 0x26, 0x70, 0x59, 0x69, 0xc8, 0xb2, 0x38, 0x65, 0x83, 0xae, 0xc1, 0x68, 0x3b, 0x22, 0xcd, 0x84, + 0x45, 0xdb, 0xf6, 0xc1, 0x91, 0x49, 0x75, 0x83, 0x97, 0xc4, 0x92, 0x85, 0xfd, 0x6f, 0x2c, 0x80, + 0x6b, 0xde, 0xae, 0x97, 0x60, 0x27, 0xd8, 0x26, 0x03, 0xdc, 0xde, 0xdd, 0x80, 0xa1, 0xb8, 0x4d, + 0x5a, 0xe5, 0x0e, 0x74, 0xd2, 0x16, 0x35, 0xdb, 0xa4, 0x95, 0x7e, 0x06, 0xfa, 0x0f, 0x33, 0x3e, + 0xf6, 0x6f, 0x02, 0x4c, 0xa5, 0x64, 0xd4, 0xd0, 0x46, 0x2f, 0x18, 0xe1, 0xa5, 0x8f, 0x67, 0xc2, + 0x4b, 0x6b, 0x8c, 0x5a, 0x8b, 0x28, 0x4d, 0xa0, 0xba, 0xeb, 0xdc, 0x17, 0x76, 0xfd, 0xcb, 0x65, + 0x1b, 0x44, 0x6b, 0x5a, 0xb8, 0xee, 0xdc, 0xe7, 0x66, 0xd4, 0xf3, 0x52, 0x80, 0xae, 0x3b, 0xf7, + 0x8f, 0xf8, 0xb1, 0x0d, 0x9b, 0x81, 0x74, 0x23, 0xf1, 0xf5, 0xff, 0x9a, 0xfe, 0x67, 0x4a, 0x91, + 0x56, 0xc7, 0x6a, 0xf5, 0x02, 0xe1, 0x80, 0xeb, 0xb3, 0x56, 0x2f, 0xc8, 0xd6, 0xea, 0x05, 0x25, + 0x6a, 0xf5, 0x02, 0xf4, 0x9e, 0x05, 0xa3, 0xc2, 0x6f, 0xcd, 0x62, 0xa1, 0xc6, 0x2f, 0x7d, 0xaa, + 0xaf, 0xaa, 0x85, 0x03, 0x9c, 0x57, 0xbf, 0x28, 0x6d, 0x47, 0x01, 0x2d, 0x6c, 0x82, 0xac, 0x1a, + 0x7d, 0xdb, 0x82, 0x29, 0xf1, 0x1b, 0x93, 0x77, 0x3a, 0x24, 0x4e, 0xc4, 0x2a, 0xf5, 0xd9, 0x07, + 0x69, 0x8d, 0x60, 0xc1, 0x1b, 0xf5, 0x49, 0xa9, 0x62, 0x4c, 0x64, 0x61, 0xdb, 0x32, 0xed, 0x41, + 0x3f, 0xb0, 0xe0, 0xd4, 0xae, 0x73, 0x9f, 0xd7, 0xc8, 0x61, 0xd8, 0x49, 0xbc, 0x50, 0xc4, 0x7b, + 0xad, 0xf5, 0x2b, 0x27, 0x5d, 0x8c, 0x78, 0x73, 0x5f, 0x97, 0x87, 0x89, 0x79, 0x24, 0x85, 0x8d, + 0xce, 0x6d, 0xe1, 0x9c, 0x0b, 0x63, 0x52, 0x30, 0x73, 0xac, 0xf6, 0x65, 0x7d, 0x31, 0x3e, 0x7e, + 0x06, 0x4a, 0xcf, 0xd6, 0xc2, 0x9b, 0x1d, 0x27, 0x48, 0xbc, 0x64, 0x5f, 0xb3, 0xf1, 0x59, 0x2d, + 0x42, 0x10, 0x07, 0x58, 0xcb, 0x0e, 0x4c, 0xe8, 0x32, 0x37, 0xc0, 0x9a, 0x42, 0x38, 0x99, 0x23, + 0x4f, 0x03, 0xac, 0xb0, 0x03, 0x8f, 0xf7, 0x94, 0x8b, 0xc1, 0x55, 0x6b, 0xff, 0x96, 0xa5, 0x2b, + 0xcc, 0x81, 0xfb, 0x4d, 0xae, 0x9b, 0x7e, 0x93, 0xf3, 0x65, 0xe7, 0x4d, 0x0f, 0xe7, 0xc9, 0x96, + 0xde, 0x78, 0xba, 0x0c, 0xa0, 0x0d, 0x18, 0xf1, 0x29, 0x44, 0x1e, 0xd0, 0x5c, 0xe8, 0x67, 0x66, + 0xa6, 0x96, 0x05, 0x83, 0xc7, 0x58, 0xf0, 0xb2, 0xbf, 0x6f, 0xc1, 0xd0, 0xc0, 0xc7, 0xa6, 0x61, + 0x8e, 0x4d, 0x2f, 0xe3, 0x54, 0xdc, 0xb9, 0x5c, 0xc0, 0xce, 0xbd, 0xd5, 0xfb, 0x09, 0x09, 0x62, + 0x66, 0x44, 0xe6, 0x0e, 0xcf, 0xaf, 0x57, 0x60, 0x9c, 0x56, 0x24, 0x8f, 0xd7, 0x5f, 0x83, 0x49, + 0xdf, 0xd9, 0x24, 0xbe, 0xf4, 0xf0, 0x66, 0x37, 0x5c, 0xd7, 0x74, 0x24, 0x36, 0x69, 0x69, 0xe1, + 0x2d, 0xdd, 0x01, 0x2e, 0x8c, 0x21, 0x55, 0xd8, 0xf0, 0x8e, 0x63, 0x93, 0x96, 0xda, 0xfc, 0xf7, + 0x9c, 0xa4, 0xb5, 0x23, 0x36, 0x63, 0xaa, 0xb9, 0x77, 0x28, 0x10, 0x73, 0x1c, 0x5a, 0x82, 0x69, + 0x29, 0xab, 0xb7, 0xe9, 0x2e, 0x3d, 0x0c, 0x84, 0xa1, 0xa8, 0x2e, 0xca, 0x61, 0x13, 0x8d, 0xb3, + 0xf4, 0xe8, 0xd3, 0x30, 0x45, 0x07, 0x27, 0xec, 0x24, 0x32, 0x78, 0x60, 0x98, 0x05, 0x0f, 0xb0, + 0x18, 0xcd, 0x0d, 0x03, 0x83, 0x33, 0x94, 0xf6, 0x97, 0xe1, 0xe4, 0xb5, 0xd0, 0x71, 0x97, 0x1d, + 0xdf, 0x09, 0x5a, 0x24, 0x5a, 0x0f, 0xb6, 0x0b, 0xcf, 0x59, 0xf5, 0xb3, 0xd0, 0x4a, 0xd1, 0x59, + 0xa8, 0x1d, 0x01, 0xd2, 0x2b, 0x10, 0x61, 0x2f, 0x6f, 0xc3, 0xa8, 0xc7, 0xab, 0x12, 0x22, 0x7b, + 0xb1, 0xc8, 0x9d, 0xd4, 0xd5, 0x46, 0x2d, 0x8c, 0x83, 0x03, 0xb0, 0x64, 0x49, 0xf7, 0x10, 0x79, + 0xfe, 0xa7, 0xe2, 0x6d, 0x9a, 0xfd, 0x37, 0x2c, 0x98, 0xbe, 0x91, 0xb9, 0x8d, 0xf5, 0x0c, 0x8c, + 0xc4, 0x24, 0xca, 0x71, 0xa6, 0x35, 0x19, 0x14, 0x0b, 0xec, 0x43, 0xdf, 0xa0, 0xff, 0x4a, 0x05, + 0x6a, 0x2c, 0x74, 0xb2, 0xed, 0xb4, 0x06, 0x69, 0x8e, 0x5e, 0x37, 0xcc, 0xd1, 0x82, 0xed, 0xa1, + 0x6a, 0x50, 0x2f, 0x6b, 0x14, 0xdd, 0x52, 0xb7, 0x93, 0x4a, 0xed, 0x0c, 0x53, 0x86, 0xfc, 0x2e, + 0xcb, 0x94, 0x79, 0x99, 0x49, 0xde, 0x5c, 0x62, 0xa7, 0x93, 0x8a, 0xf6, 0x43, 0x76, 0x3a, 0xa9, + 0xda, 0xd5, 0x43, 0x25, 0x35, 0xb4, 0xa6, 0x33, 0x85, 0xfd, 0x19, 0x16, 0x0a, 0xe7, 0xf8, 0xde, + 0xbb, 0x44, 0x5d, 0xf1, 0x9b, 0x17, 0xc1, 0x6d, 0x02, 0x7a, 0xc4, 0xb4, 0x8b, 0xf8, 0xc7, 0x6f, + 0x6e, 0xa6, 0x45, 0xec, 0x2b, 0x30, 0x9d, 0x19, 0x38, 0xf4, 0x32, 0x0c, 0xb7, 0x77, 0x9c, 0x98, + 0x64, 0xc2, 0x2c, 0x86, 0x1b, 0x14, 0x78, 0x74, 0x30, 0x3f, 0xa5, 0x0a, 0x30, 0x08, 0xe6, 0xd4, + 0xf6, 0x9f, 0x5b, 0x30, 0x74, 0x23, 0x74, 0x07, 0x29, 0x60, 0x57, 0x0c, 0x01, 0x7b, 0xa6, 0xf8, + 0xbe, 0x77, 0x4f, 0xd9, 0x6a, 0x64, 0x64, 0xeb, 0x7c, 0x09, 0x5e, 0xc7, 0x8b, 0xd5, 0x2e, 0x8c, + 0xb3, 0xfb, 0xe4, 0x22, 0xbe, 0xe4, 0x45, 0x63, 0xdf, 0x34, 0x9f, 0xd9, 0x37, 0x4d, 0x6b, 0xa4, + 0xda, 0xee, 0xe9, 0x59, 0x18, 0x15, 0xf1, 0x0c, 0xd9, 0x10, 0x40, 0x41, 0x8b, 0x25, 0xde, 0xfe, + 0x57, 0x55, 0x30, 0xee, 0xaf, 0xa3, 0xdf, 0xb7, 0x60, 0x21, 0xe2, 0xd7, 0x0e, 0xdc, 0x7a, 0x27, + 0xf2, 0x82, 0xed, 0x66, 0x6b, 0x87, 0xb8, 0x1d, 0xdf, 0x0b, 0xb6, 0xd7, 0xb7, 0x83, 0x50, 0x81, + 0x57, 0xef, 0x93, 0x56, 0x87, 0x39, 0x55, 0x4b, 0x5f, 0x9b, 0x57, 0x67, 0x9a, 0x97, 0x0e, 0x0f, + 0xe6, 0x17, 0x70, 0x5f, 0xb5, 0xe0, 0x3e, 0x5b, 0x85, 0xfe, 0xc8, 0x82, 0x45, 0x7e, 0x83, 0xbb, + 0x7c, 0x4f, 0x4a, 0xed, 0x37, 0x1b, 0x92, 0x69, 0xca, 0x6e, 0x83, 0x44, 0xbb, 0xcb, 0xaf, 0x88, + 0x41, 0x5e, 0x6c, 0xf4, 0x57, 0x2b, 0xee, 0xb7, 0x99, 0xf6, 0x6f, 0x57, 0x61, 0x92, 0x8e, 0x67, + 0x7a, 0x7b, 0xf3, 0x65, 0x43, 0x4c, 0x3e, 0x9a, 0x11, 0x93, 0x13, 0x06, 0xf1, 0xc3, 0xb9, 0xb8, + 0xf9, 0x0e, 0x9c, 0xf0, 0x9d, 0x38, 0xb9, 0x42, 0x9c, 0x28, 0xd9, 0x24, 0x0e, 0x3b, 0x46, 0x2c, + 0x9e, 0x04, 0x99, 0x73, 0x49, 0x15, 0x21, 0x73, 0x2d, 0xcb, 0x0a, 0x77, 0x73, 0x47, 0x09, 0x20, + 0x76, 0x60, 0x19, 0x39, 0x41, 0xcc, 0x7b, 0xe2, 0x09, 0x27, 0x6c, 0x3f, 0x75, 0xce, 0x89, 0x3a, + 0xd1, 0xb5, 0x2e, 0x5e, 0x38, 0x87, 0xbf, 0x76, 0x18, 0x3d, 0x5c, 0xf6, 0x30, 0x7a, 0xa4, 0x20, + 0xee, 0xf6, 0x97, 0x2c, 0x38, 0x49, 0x3f, 0x89, 0x19, 0xa3, 0x19, 0xa3, 0x10, 0xa6, 0x69, 0xf3, + 0x7d, 0x92, 0x48, 0x58, 0xf1, 0x3a, 0xc2, 0x02, 0xe9, 0x0c, 0x3e, 0xa9, 0xa1, 0x76, 0xd5, 0x64, + 0x86, 0xb3, 0xdc, 0xed, 0xef, 0x58, 0xc0, 0x82, 0xc0, 0x06, 0xbe, 0x7c, 0x5d, 0x36, 0x97, 0x2f, + 0xbb, 0x58, 0x57, 0xf4, 0x58, 0xb9, 0x5e, 0x82, 0x19, 0x8a, 0x6d, 0x44, 0xe1, 0xfd, 0x7d, 0x69, + 0x50, 0x17, 0x7b, 0x62, 0xdf, 0xab, 0xf0, 0x09, 0xa3, 0x6e, 0x4e, 0xa1, 0x5f, 0xb6, 0x60, 0xac, + 0xe5, 0xb4, 0x9d, 0x16, 0xcf, 0xfb, 0x51, 0xc2, 0xeb, 0x62, 0x94, 0x5f, 0x58, 0x11, 0x65, 0xb9, + 0xc7, 0xe0, 0x13, 0xb2, 0xeb, 0x12, 0x5c, 0xe8, 0x25, 0x50, 0x95, 0xcf, 0x79, 0x30, 0x69, 0x30, + 0x1b, 0xe0, 0x36, 0xf3, 0x97, 0x2d, 0xae, 0xec, 0xd5, 0x86, 0xe0, 0x1e, 0x9c, 0x08, 0xb4, 0xff, + 0x54, 0x8d, 0x49, 0xfb, 0x77, 0xa1, 0xbc, 0x3a, 0x67, 0xda, 0x4f, 0x0b, 0x76, 0xcb, 0x30, 0xc4, + 0xdd, 0x75, 0xd8, 0xff, 0xc4, 0x82, 0xc7, 0x74, 0x42, 0xed, 0xa2, 0x5b, 0x91, 0x17, 0xb8, 0x0e, + 0x63, 0x61, 0x9b, 0x44, 0x4e, 0xba, 0xf9, 0x39, 0x2f, 0x47, 0xff, 0xa6, 0x80, 0x1f, 0x1d, 0xcc, + 0x9f, 0xd2, 0xb9, 0x4b, 0x38, 0x56, 0x25, 0x91, 0x0d, 0x23, 0x6c, 0x5c, 0x62, 0x71, 0x45, 0x91, + 0x65, 0xc1, 0x60, 0x67, 0x1f, 0x31, 0x16, 0x18, 0xfb, 0x6f, 0x5a, 0x5c, 0xd8, 0xf4, 0xa6, 0xa3, + 0xaf, 0xc1, 0xcc, 0x2e, 0xdd, 0x27, 0xad, 0xde, 0x6f, 0xd3, 0x05, 0x94, 0x9d, 0xf9, 0x5a, 0x65, + 0x96, 0x8d, 0x1e, 0xdd, 0x5d, 0x9e, 0x15, 0xad, 0x9f, 0xb9, 0x9e, 0x61, 0x8b, 0xbb, 0x2a, 0xb2, + 0xff, 0x58, 0xcc, 0x57, 0x66, 0xb3, 0x3d, 0x0b, 0xa3, 0xed, 0xd0, 0x5d, 0x59, 0xaf, 0x63, 0x31, + 0x56, 0x4a, 0xe1, 0x34, 0x38, 0x18, 0x4b, 0x3c, 0xba, 0x04, 0x40, 0xee, 0x27, 0x24, 0x0a, 0x1c, + 0x5f, 0x9d, 0xd5, 0x2a, 0x13, 0x69, 0x55, 0x61, 0xb0, 0x46, 0x45, 0xcb, 0xb4, 0xa3, 0x70, 0xcf, + 0x73, 0x59, 0xe4, 0x79, 0xd5, 0x2c, 0xd3, 0x50, 0x18, 0xac, 0x51, 0xd1, 0xdd, 0x69, 0x27, 0x88, + 0xf9, 0xf2, 0xe5, 0x6c, 0x8a, 0xe4, 0x0d, 0x63, 0xe9, 0xee, 0xf4, 0x96, 0x8e, 0xc4, 0x26, 0xad, + 0xfd, 0xd3, 0x1a, 0x40, 0x6a, 0x20, 0xa1, 0xf7, 0xba, 0x67, 0xe8, 0x27, 0xcb, 0x5a, 0x57, 0x0f, + 0x6f, 0x7a, 0xa2, 0x6f, 0x5a, 0x30, 0xee, 0xf8, 0x7e, 0xd8, 0x72, 0x12, 0xd6, 0xa3, 0x4a, 0x59, + 0x5d, 0x21, 0x5a, 0xb2, 0x94, 0x96, 0xe5, 0x8d, 0x79, 0x51, 0x1e, 0xe5, 0x69, 0x98, 0xc2, 0xf6, + 0xe8, 0x4d, 0x40, 0x9f, 0x90, 0x86, 0x35, 0xff, 0x28, 0x73, 0x59, 0xc3, 0xba, 0xc6, 0x34, 0xa4, + 0x66, 0x53, 0xa3, 0x2f, 0x1b, 0x79, 0x0a, 0x86, 0xca, 0xdc, 0x8e, 0x35, 0x4c, 0x86, 0xa2, 0x14, + 0x05, 0xe8, 0x0b, 0x7a, 0x50, 0xee, 0x70, 0x99, 0xab, 0xa7, 0x9a, 0xe5, 0x5a, 0x10, 0x90, 0x9b, + 0xc0, 0xb4, 0x6b, 0x2e, 0x94, 0x22, 0xd0, 0xea, 0x62, 0x71, 0x0d, 0x99, 0x15, 0x36, 0x5d, 0x1a, + 0x33, 0x08, 0x9c, 0xad, 0x82, 0xae, 0x86, 0x54, 0x6d, 0xad, 0x07, 0x5b, 0xa1, 0x08, 0xb7, 0xba, + 0x50, 0xe2, 0x9b, 0xef, 0xc7, 0x09, 0xd9, 0xa5, 0x65, 0xd2, 0xd5, 0xf0, 0x86, 0xe0, 0x82, 0x15, + 0x3f, 0xb4, 0x01, 0x23, 0xec, 0x82, 0x47, 0x3c, 0x3b, 0x56, 0xc6, 0x3d, 0x66, 0xde, 0x68, 0x4c, + 0x0d, 0x10, 0xf6, 0x37, 0xc6, 0x82, 0x17, 0xba, 0x22, 0x6f, 0x00, 0xc7, 0xeb, 0xc1, 0xad, 0x98, + 0xb0, 0x1b, 0xc0, 0xb5, 0xe5, 0x8f, 0xa5, 0x57, 0x7a, 0x39, 0x3c, 0x37, 0x33, 0x93, 0x51, 0x92, + 0xda, 0x21, 0xe2, 0xbf, 0x4c, 0xf8, 0x34, 0x0b, 0x65, 0x1a, 0x6a, 0xa6, 0x87, 0x4a, 0x07, 0xfb, + 0xb6, 0xc9, 0x0c, 0x67, 0xb9, 0x3f, 0xc2, 0x35, 0x70, 0xce, 0x87, 0x99, 0xec, 0x94, 0x1c, 0xe0, + 0x8a, 0xfb, 0x67, 0x43, 0x30, 0x65, 0x0a, 0x06, 0x5a, 0x84, 0xda, 0x2e, 0x4b, 0xc7, 0x94, 0x26, + 0x81, 0x51, 0xf2, 0x7f, 0x5d, 0x22, 0x70, 0x4a, 0xc3, 0xd2, 0xe1, 0xb0, 0xe2, 0x5a, 0xa0, 0x4d, + 0x9a, 0x0e, 0x47, 0x61, 0xb0, 0x46, 0x45, 0x8d, 0xd6, 0xcd, 0x30, 0x4c, 0x94, 0xe2, 0x56, 0x32, + 0xb3, 0xcc, 0xa0, 0x58, 0x60, 0xa9, 0xc2, 0xbe, 0x4b, 0x3b, 0xe4, 0x9b, 0xae, 0x3e, 0xa5, 0xb0, + 0xaf, 0xea, 0x48, 0x6c, 0xd2, 0xd2, 0x05, 0x28, 0x8c, 0x99, 0x10, 0x0a, 0xd3, 0x38, 0x0d, 0x5c, + 0x6a, 0xf2, 0x0b, 0x4f, 0x12, 0x8f, 0x3e, 0x0f, 0x8f, 0xa9, 0xfb, 0x49, 0x98, 0xbb, 0x4e, 0x65, + 0x8d, 0x23, 0xc6, 0xce, 0xf6, 0xb1, 0x95, 0x7c, 0x32, 0xdc, 0xab, 0x3c, 0x7a, 0x03, 0xa6, 0x84, + 0x59, 0x2b, 0x39, 0x8e, 0x9a, 0xe7, 0xda, 0x57, 0x0d, 0x2c, 0xce, 0x50, 0xa3, 0x3a, 0xcc, 0x50, + 0x08, 0xb3, 0x28, 0x25, 0x07, 0x7e, 0xcf, 0x4a, 0xad, 0xcc, 0x57, 0x33, 0x78, 0xdc, 0x55, 0x02, + 0x2d, 0xc1, 0x34, 0xb7, 0x2d, 0xe8, 0xfe, 0x8d, 0x7d, 0x07, 0x11, 0x21, 0xa9, 0x26, 0xc1, 0x4d, + 0x13, 0x8d, 0xb3, 0xf4, 0xe8, 0x55, 0x98, 0x70, 0xa2, 0xd6, 0x8e, 0x97, 0x90, 0x56, 0xd2, 0x89, + 0xf8, 0xdd, 0x7a, 0x2d, 0x30, 0x60, 0x49, 0xc3, 0x61, 0x83, 0xd2, 0x7e, 0x17, 0x4e, 0xe6, 0x84, + 0x60, 0x53, 0xc1, 0x71, 0xda, 0x9e, 0xec, 0x53, 0x26, 0x04, 0x69, 0xa9, 0xb1, 0x2e, 0x7b, 0xa3, + 0x51, 0x51, 0xe9, 0x64, 0x3e, 0x63, 0x2d, 0x37, 0x9b, 0x92, 0xce, 0x35, 0x89, 0xc0, 0x29, 0x8d, + 0xfd, 0xdf, 0x6b, 0xa0, 0x39, 0x59, 0x4a, 0x04, 0x9e, 0xbc, 0x0a, 0x13, 0x32, 0xdd, 0xa0, 0x96, + 0xe6, 0x4b, 0x75, 0xf3, 0xb2, 0x86, 0xc3, 0x06, 0x25, 0x6d, 0x5b, 0x20, 0x5d, 0x46, 0xd9, 0x80, + 0x27, 0xe5, 0x4b, 0xc2, 0x29, 0x0d, 0xba, 0x00, 0x63, 0x31, 0xf1, 0xb7, 0xae, 0x79, 0xc1, 0x5d, + 0x21, 0xd8, 0x4a, 0x2b, 0x37, 0x05, 0x1c, 0x2b, 0x0a, 0xf4, 0x59, 0xa8, 0x76, 0x3c, 0x57, 0x88, + 0xf2, 0x82, 0xb4, 0x3b, 0x6f, 0xad, 0xd7, 0x8f, 0x0e, 0xe6, 0xe7, 0xf3, 0x73, 0x28, 0xd2, 0x4d, + 0x74, 0xbc, 0x40, 0x27, 0x1f, 0x2d, 0x9a, 0xe7, 0x3a, 0x1f, 0xe9, 0xd3, 0x75, 0x7e, 0x09, 0x40, + 0xf4, 0x59, 0x4a, 0x72, 0x35, 0xfd, 0x66, 0x97, 0x15, 0x06, 0x6b, 0x54, 0x74, 0x2b, 0xde, 0x8a, + 0x88, 0x23, 0x77, 0xac, 0x3c, 0x44, 0x78, 0xec, 0x41, 0xb7, 0xe2, 0x2b, 0x59, 0x56, 0xb8, 0x9b, + 0x3b, 0xda, 0x85, 0x13, 0x2e, 0x9d, 0x44, 0x46, 0x95, 0xb5, 0x7e, 0xa3, 0x92, 0x69, 0x75, 0xf5, + 0x2c, 0x1b, 0xdc, 0xcd, 0x19, 0x7d, 0x09, 0xe6, 0x24, 0xb0, 0xfb, 0xee, 0x21, 0x9b, 0x28, 0xd5, + 0xe5, 0xb3, 0x87, 0x07, 0xf3, 0x73, 0xf5, 0x9e, 0x54, 0xf8, 0x18, 0x0e, 0xe8, 0x6d, 0x18, 0x61, + 0xc7, 0x2c, 0xf1, 0xec, 0x38, 0x5b, 0xe7, 0x5e, 0x2a, 0xeb, 0x68, 0x5c, 0x60, 0x87, 0x35, 0x22, + 0x6e, 0x33, 0x3d, 0xb7, 0x62, 0x40, 0x2c, 0x78, 0xa2, 0x36, 0x8c, 0x3b, 0x41, 0x10, 0x26, 0x0e, + 0x37, 0xbf, 0x26, 0xca, 0x58, 0x90, 0x5a, 0x15, 0x4b, 0x69, 0x59, 0x5e, 0x8f, 0x0a, 0x06, 0xd3, + 0x30, 0x58, 0xaf, 0x02, 0x75, 0x60, 0x3a, 0xbc, 0x47, 0x55, 0xa5, 0x3c, 0x69, 0x88, 0x67, 0x27, + 0x8b, 0x12, 0x24, 0xa6, 0x1f, 0xe7, 0xa6, 0x51, 0x54, 0xd3, 0x60, 0x26, 0x4b, 0x9c, 0xad, 0x03, + 0x2d, 0x18, 0x5e, 0xe4, 0xa9, 0x34, 0x36, 0x39, 0xf5, 0x22, 0xeb, 0x4e, 0x63, 0x76, 0xbb, 0x95, + 0xc7, 0x23, 0x32, 0x4d, 0x30, 0x9d, 0xb9, 0xdd, 0x9a, 0xa2, 0xb0, 0x4e, 0x37, 0xf7, 0x29, 0x18, + 0xd7, 0x86, 0xbd, 0x9f, 0x20, 0xd8, 0xb9, 0x37, 0x60, 0x26, 0x3b, 0x9c, 0x7d, 0x05, 0xd1, 0xfe, + 0xcf, 0x0a, 0x4c, 0xe7, 0x1c, 0xe2, 0xdc, 0xf5, 0x58, 0x20, 0xb7, 0xa1, 0xf2, 0xae, 0x7a, 0x81, + 0x8b, 0x19, 0xc6, 0x54, 0x5c, 0x95, 0x12, 0x8a, 0x4b, 0x6a, 0xd1, 0x6a, 0x4f, 0x2d, 0x2a, 0x94, + 0xd5, 0xd0, 0x83, 0x2b, 0x2b, 0x73, 0x75, 0x18, 0x2e, 0xb5, 0x3a, 0x3c, 0x04, 0x05, 0x67, 0x2c, + 0x30, 0xa3, 0x25, 0x16, 0x98, 0x6f, 0x57, 0x60, 0x26, 0x0d, 0x17, 0x16, 0x99, 0x47, 0x07, 0x77, + 0x36, 0xb0, 0x61, 0x9c, 0x0d, 0x14, 0x25, 0x14, 0xcd, 0xb4, 0xab, 0xe7, 0x39, 0xc1, 0xdb, 0x99, + 0x73, 0x82, 0x97, 0xfa, 0xe4, 0x7b, 0xfc, 0x99, 0xc1, 0x77, 0x2a, 0x70, 0x3a, 0x5b, 0x64, 0xc5, + 0x77, 0xbc, 0xdd, 0x01, 0x8e, 0xd3, 0xe7, 0x8d, 0x71, 0x7a, 0xa5, 0xbf, 0xfe, 0xb0, 0xc6, 0xf5, + 0x1c, 0x2c, 0x27, 0x33, 0x58, 0x9f, 0x7a, 0x10, 0xe6, 0xc7, 0x8f, 0xd8, 0x4f, 0x2d, 0x78, 0x3c, + 0xb7, 0xdc, 0xc0, 0x3d, 0xa1, 0x6f, 0x99, 0x9e, 0xd0, 0x17, 0x1f, 0xa0, 0x6f, 0x3d, 0x5c, 0xa3, + 0x87, 0x95, 0x1e, 0x7d, 0x62, 0xde, 0xa2, 0x9b, 0x30, 0xee, 0xb4, 0x5a, 0x24, 0x8e, 0xaf, 0x87, + 0xae, 0xca, 0x86, 0xf3, 0x02, 0x5b, 0x45, 0x52, 0xf0, 0xd1, 0xc1, 0xfc, 0x5c, 0x96, 0x45, 0x8a, + 0xc6, 0x3a, 0x07, 0x33, 0xab, 0x55, 0x65, 0x40, 0x59, 0xad, 0x2e, 0x01, 0xec, 0xa9, 0x5d, 0x6a, + 0xd6, 0x09, 0xa5, 0xed, 0x5f, 0x35, 0x2a, 0xf4, 0x45, 0x66, 0xf5, 0xf1, 0xe8, 0x88, 0xa1, 0x22, + 0x47, 0x81, 0xf6, 0xf5, 0xf4, 0x38, 0x0b, 0x7e, 0x7d, 0x51, 0xb9, 0xeb, 0x14, 0x43, 0xfb, 0xfb, + 0x55, 0xf8, 0xb9, 0x63, 0x04, 0x0e, 0x2d, 0x99, 0x87, 0x9e, 0xcf, 0x67, 0x7d, 0x33, 0x73, 0xb9, + 0x85, 0x0d, 0x67, 0x4d, 0xe6, 0x4b, 0x55, 0x3e, 0xf0, 0x97, 0xfa, 0x96, 0xee, 0x49, 0xe3, 0xc1, + 0x8d, 0x97, 0x1f, 0x78, 0x4a, 0xfd, 0x6c, 0x7a, 0xbe, 0xbf, 0x6e, 0xc1, 0x47, 0x73, 0x3b, 0x65, + 0x04, 0x56, 0x2c, 0x42, 0xad, 0x45, 0x81, 0xda, 0xed, 0x93, 0xf4, 0xda, 0x97, 0x44, 0xe0, 0x94, + 0xc6, 0x88, 0x9f, 0xa8, 0x14, 0xc6, 0x4f, 0xfc, 0x07, 0x0b, 0x4e, 0x65, 0x1b, 0x31, 0x70, 0x7d, + 0xd3, 0x34, 0xf5, 0xcd, 0x42, 0x7f, 0x1f, 0xbe, 0x87, 0xaa, 0xf9, 0xf6, 0x24, 0x9c, 0xe9, 0x5a, + 0xa3, 0xf8, 0x18, 0xfe, 0x82, 0x05, 0x27, 0xb6, 0x99, 0x7d, 0xad, 0x5d, 0xf0, 0x11, 0xbd, 0x2a, + 0xb8, 0x15, 0x75, 0xec, 0xbd, 0x20, 0xbe, 0x5b, 0xe8, 0x22, 0xc1, 0xdd, 0x95, 0xa1, 0x6f, 0x58, + 0x70, 0xca, 0xb9, 0x17, 0x77, 0x65, 0xaf, 0x17, 0x42, 0xf4, 0x46, 0x81, 0x13, 0xab, 0x20, 0xef, + 0xfd, 0xf2, 0xec, 0xe1, 0xc1, 0xfc, 0xa9, 0x3c, 0x2a, 0x9c, 0x5b, 0x2b, 0x7a, 0x5b, 0xe4, 0xfe, + 0xa2, 0x06, 0x4f, 0xa9, 0xab, 0x6a, 0x79, 0xd7, 0x0d, 0xb8, 0x42, 0x92, 0x18, 0xac, 0x38, 0xa2, + 0xaf, 0x40, 0x6d, 0x5b, 0xde, 0xe9, 0x11, 0xea, 0xae, 0x60, 0x4d, 0xc9, 0xbd, 0x02, 0xc4, 0x83, + 0xda, 0x15, 0x0a, 0xa7, 0x4c, 0xd1, 0x15, 0xa8, 0x06, 0x5b, 0xb1, 0xb8, 0x37, 0x5b, 0x14, 0x3c, + 0x63, 0x86, 0x2a, 0xf1, 0x0b, 0x87, 0x37, 0xd6, 0x9a, 0x98, 0xb2, 0xa0, 0x9c, 0xa2, 0x4d, 0x57, + 0x78, 0x6f, 0x0b, 0x38, 0xe1, 0xe5, 0x7a, 0x37, 0x27, 0xbc, 0x5c, 0xc7, 0x94, 0x05, 0x8b, 0xd2, + 0x8b, 0x5b, 0xb1, 0x27, 0x5c, 0xb3, 0x05, 0x97, 0xaa, 0xbb, 0x2e, 0x61, 0xf0, 0x34, 0x70, 0x0c, + 0x8c, 0x39, 0x23, 0xb4, 0x01, 0x23, 0x2d, 0x96, 0xb0, 0x59, 0xec, 0x9c, 0x8b, 0xd2, 0xf8, 0x76, + 0x25, 0x77, 0xe6, 0x47, 0x48, 0x1c, 0x8e, 0x05, 0x2f, 0xc6, 0x95, 0xb4, 0x77, 0xb6, 0x62, 0xb1, + 0x39, 0x2e, 0xe2, 0xda, 0x95, 0x7a, 0x5b, 0x70, 0x65, 0x70, 0x2c, 0x78, 0xa1, 0x3a, 0x54, 0xb6, + 0x5a, 0x22, 0xf7, 0x62, 0x81, 0x4b, 0xd6, 0xbc, 0x3d, 0xba, 0x3c, 0x72, 0x78, 0x30, 0x5f, 0x59, + 0x5b, 0xc1, 0x95, 0xad, 0x16, 0x7a, 0x0b, 0x46, 0xb7, 0xf8, 0x7d, 0x40, 0x91, 0x67, 0xf1, 0x62, + 0xd1, 0xa5, 0xc5, 0xae, 0xcb, 0x83, 0xfc, 0xe2, 0x82, 0x40, 0x60, 0xc9, 0x0e, 0x7d, 0x09, 0x60, + 0x4b, 0xdd, 0x70, 0x14, 0x89, 0x16, 0x17, 0xfa, 0xbb, 0x11, 0x29, 0xf6, 0x8d, 0x0a, 0x8a, 0x35, + 0x8e, 0x54, 0xe6, 0x1d, 0x99, 0x73, 0x9e, 0x25, 0x59, 0x2c, 0x94, 0xf9, 0xdc, 0x14, 0xf5, 0x5c, + 0xe6, 0x15, 0x0a, 0xa7, 0x4c, 0x51, 0x07, 0x26, 0xf7, 0xe2, 0xf6, 0x0e, 0x91, 0x53, 0x9f, 0x65, + 0x5e, 0x1c, 0xbf, 0xf4, 0x7a, 0x41, 0x3a, 0x4d, 0x51, 0xc4, 0x8b, 0x92, 0x8e, 0xe3, 0x77, 0x69, + 0x30, 0x96, 0xcb, 0xe8, 0xb6, 0xce, 0x16, 0x9b, 0xb5, 0xd0, 0x4f, 0xf2, 0x4e, 0x27, 0xdc, 0xdc, + 0x4f, 0x88, 0xc8, 0xcc, 0x58, 0xf0, 0x49, 0xde, 0xe4, 0xc4, 0xdd, 0x9f, 0x44, 0x20, 0xb0, 0x64, + 0xa7, 0x86, 0x8c, 0x69, 0xe3, 0x99, 0xd2, 0x43, 0xd6, 0xd5, 0x87, 0x74, 0xc8, 0x98, 0xf6, 0x4d, + 0x99, 0x32, 0xad, 0xdb, 0xde, 0x09, 0x93, 0x30, 0xc8, 0xe8, 0xfe, 0x13, 0x65, 0xb4, 0x6e, 0x23, + 0xa7, 0x64, 0xb7, 0xd6, 0xcd, 0xa3, 0xc2, 0xb9, 0xb5, 0xda, 0x7f, 0x3c, 0xdc, 0xbd, 0xd8, 0x32, + 0x43, 0xf8, 0x57, 0xbb, 0xcf, 0x15, 0x3f, 0xdb, 0xff, 0x2e, 0xef, 0x21, 0x9e, 0x30, 0x7e, 0xc3, + 0x82, 0x33, 0xed, 0xdc, 0xc5, 0x54, 0x2c, 0x58, 0xfd, 0x6e, 0x16, 0xf9, 0x80, 0xa9, 0xb4, 0xa3, + 0xf9, 0x78, 0xdc, 0xa3, 0xce, 0xac, 0xf9, 0x59, 0xfd, 0xc0, 0xe6, 0xe7, 0x1d, 0x18, 0x63, 0x16, + 0x53, 0x9a, 0x03, 0xa3, 0xcf, 0xb4, 0x11, 0x6c, 0xe9, 0x5b, 0x11, 0x2c, 0xb0, 0x62, 0x46, 0x07, + 0xee, 0xc9, 0x6c, 0x27, 0x30, 0x61, 0x68, 0x91, 0x2f, 0x95, 0x7b, 0x35, 0xd6, 0xc4, 0x48, 0x3c, + 0xd9, 0x38, 0x8e, 0xf8, 0xa8, 0x88, 0x00, 0x1f, 0x5f, 0xd9, 0xa3, 0x34, 0x67, 0xff, 0xb9, 0x95, + 0x63, 0x7f, 0xf1, 0x0d, 0xc8, 0xeb, 0xe6, 0x06, 0xe4, 0x99, 0xec, 0x06, 0xa4, 0xcb, 0x51, 0x60, + 0xec, 0x3d, 0xca, 0x27, 0x0f, 0x2c, 0x9b, 0xa4, 0xc3, 0xf6, 0xe1, 0x5c, 0xd1, 0xe4, 0x66, 0x11, + 0x3c, 0xae, 0x3a, 0x0e, 0x4b, 0x23, 0x78, 0xdc, 0xf5, 0x3a, 0x66, 0x98, 0xb2, 0xb7, 0xbd, 0xed, + 0xff, 0x6d, 0x41, 0xb5, 0x11, 0xba, 0x03, 0x74, 0x7c, 0x5c, 0x36, 0x1c, 0x1f, 0x4f, 0x17, 0xbe, + 0xb4, 0xd3, 0xd3, 0xcd, 0x71, 0x33, 0xe3, 0xe6, 0xf8, 0x78, 0x31, 0xab, 0xe3, 0x9d, 0x1a, 0x3f, + 0xa8, 0x82, 0xfe, 0x56, 0x10, 0xfa, 0x83, 0x07, 0x09, 0xe5, 0xac, 0x96, 0x7b, 0x3e, 0x48, 0xd4, + 0xc1, 0x42, 0x7f, 0xe4, 0xf5, 0xae, 0x9f, 0xd9, 0x88, 0xce, 0x3b, 0xc4, 0xdb, 0xde, 0x49, 0x88, + 0x9b, 0xed, 0xd8, 0xa3, 0x8b, 0xe8, 0xfc, 0x6f, 0x16, 0x4c, 0x67, 0x6a, 0x47, 0x5f, 0xcd, 0xbb, + 0x27, 0xf2, 0x40, 0xce, 0x8c, 0x13, 0x85, 0xd7, 0x4a, 0x16, 0x00, 0x94, 0xf7, 0x59, 0xba, 0x1c, + 0x98, 0x05, 0xa6, 0xdc, 0xd3, 0x31, 0xd6, 0x28, 0xd0, 0xcb, 0x30, 0x9e, 0x84, 0xed, 0xd0, 0x0f, + 0xb7, 0xf7, 0xaf, 0x12, 0x99, 0x7d, 0x40, 0x79, 0xee, 0x37, 0x52, 0x14, 0xd6, 0xe9, 0xec, 0x1f, + 0x55, 0x21, 0xfb, 0xce, 0xd4, 0xff, 0x97, 0xd2, 0x9f, 0x1d, 0x29, 0xfd, 0x43, 0x0b, 0x66, 0x68, + 0xed, 0x2c, 0x6c, 0x43, 0x46, 0x5f, 0xaa, 0x3c, 0xdf, 0xd6, 0x31, 0x79, 0xbe, 0x9f, 0xa1, 0xba, + 0xce, 0x0d, 0x3b, 0x89, 0x70, 0x93, 0x68, 0x2a, 0x8c, 0x42, 0xb1, 0xc0, 0x0a, 0x3a, 0x12, 0x45, + 0xe2, 0x3a, 0x8a, 0x4e, 0x47, 0xa2, 0x08, 0x0b, 0xac, 0x4c, 0x03, 0x3e, 0x94, 0x9f, 0x06, 0x9c, + 0xe7, 0xef, 0x11, 0xe1, 0x02, 0xc2, 0x08, 0xd0, 0xf2, 0xf7, 0xc8, 0x38, 0x82, 0x94, 0xc6, 0xfe, + 0x4e, 0x15, 0x26, 0x1a, 0xa1, 0x9b, 0x06, 0x54, 0xbf, 0x64, 0x04, 0x54, 0x9f, 0xcb, 0x04, 0x54, + 0xcf, 0xe8, 0xb4, 0x0f, 0x27, 0x9e, 0x5a, 0xe4, 0x78, 0x62, 0x89, 0xea, 0x1f, 0x28, 0x96, 0xda, + 0xc8, 0xf1, 0xa4, 0xd8, 0x60, 0x93, 0xeb, 0x5f, 0x9e, 0x18, 0xea, 0x3f, 0xb7, 0x60, 0xaa, 0x11, + 0xba, 0x54, 0x38, 0xff, 0x32, 0x49, 0xa2, 0x9e, 0x19, 0x6a, 0xe4, 0x98, 0xcc, 0x50, 0xbf, 0x61, + 0xc1, 0x68, 0x23, 0x74, 0x07, 0xee, 0x3e, 0x5c, 0x33, 0xdd, 0x87, 0x1f, 0x2d, 0xd4, 0xb9, 0x3d, + 0x3c, 0x86, 0xdf, 0xaf, 0xc2, 0x24, 0x6d, 0x6f, 0xb8, 0x2d, 0xbf, 0x96, 0x31, 0x32, 0x56, 0x89, + 0x91, 0xa1, 0x26, 0x60, 0xe8, 0xfb, 0xe1, 0xbd, 0xec, 0x97, 0x5b, 0x63, 0x50, 0x2c, 0xb0, 0xe8, + 0x02, 0x8c, 0xb5, 0x23, 0xb2, 0xe7, 0x85, 0x9d, 0x38, 0x7b, 0xa9, 0xad, 0x21, 0xe0, 0x58, 0x51, + 0xa0, 0x97, 0x60, 0x22, 0xf6, 0x82, 0x16, 0x91, 0xc1, 0x04, 0x43, 0x2c, 0x98, 0x80, 0x27, 0xdd, + 0xd3, 0xe0, 0xd8, 0xa0, 0x42, 0xb7, 0xa0, 0xc6, 0xfe, 0xb3, 0xd9, 0xd3, 0x6f, 0x56, 0x72, 0x9e, + 0x75, 0x4a, 0x16, 0xc7, 0x29, 0x27, 0x74, 0x09, 0x20, 0x91, 0x41, 0x0f, 0xb1, 0xc8, 0x9e, 0xa1, + 0xac, 0x51, 0x15, 0x0e, 0x11, 0x63, 0x8d, 0x0a, 0x3d, 0x0f, 0xb5, 0xc4, 0xf1, 0xfc, 0x6b, 0x5e, + 0x40, 0x62, 0x11, 0x30, 0x22, 0xd2, 0xc6, 0x0a, 0x20, 0x4e, 0xf1, 0x74, 0x9d, 0x67, 0x97, 0x69, + 0xf9, 0x6b, 0x07, 0x63, 0x8c, 0x9a, 0xad, 0xf3, 0xd7, 0x14, 0x14, 0x6b, 0x14, 0xf6, 0x8b, 0x6c, + 0xbd, 0xee, 0x33, 0xda, 0xfe, 0x27, 0x15, 0x40, 0x0d, 0x16, 0x5c, 0x61, 0x3c, 0x08, 0xb1, 0x03, + 0x53, 0x31, 0xb9, 0xe6, 0x05, 0x9d, 0xfb, 0x82, 0x55, 0xb9, 0xcb, 0x0d, 0xcd, 0x55, 0xbd, 0x0c, + 0xbf, 0x43, 0x6a, 0xc2, 0x70, 0x86, 0x2f, 0x1d, 0x92, 0xa8, 0x13, 0x2c, 0xc5, 0xb7, 0x62, 0x12, + 0x89, 0x27, 0x1d, 0xd8, 0x90, 0x60, 0x09, 0xc4, 0x29, 0x9e, 0x0a, 0x00, 0xfb, 0x73, 0x23, 0x0c, + 0x70, 0x18, 0x26, 0x52, 0x64, 0x58, 0xa2, 0x6f, 0x0d, 0x8e, 0x0d, 0x2a, 0xb4, 0x06, 0x28, 0xee, + 0xb4, 0xdb, 0x3e, 0x3b, 0xc5, 0x72, 0xfc, 0xcb, 0x51, 0xd8, 0x69, 0xf3, 0xc8, 0x5a, 0x91, 0x23, + 0xbb, 0xd9, 0x85, 0xc5, 0x39, 0x25, 0xe8, 0x74, 0xdf, 0x8a, 0xd9, 0x6f, 0x71, 0x47, 0x96, 0x7b, + 0xd4, 0x9a, 0x0c, 0x84, 0x25, 0xce, 0xfe, 0x1a, 0x5b, 0x9e, 0x58, 0xb6, 0xfd, 0xa4, 0x13, 0x11, + 0x74, 0x17, 0x26, 0xdb, 0x6c, 0x09, 0x4a, 0xa2, 0xd0, 0xf7, 0x49, 0x54, 0xfc, 0x6e, 0x51, 0xcf, + 0xf0, 0x0e, 0x9e, 0x61, 0x5b, 0x67, 0x86, 0x4d, 0xde, 0xf6, 0x3f, 0x1c, 0x67, 0xba, 0x46, 0x1c, 0x23, 0x8e, 0x8a, 0xe0, 0x4d, 0x61, 0x85, 0x7d, 0xac, 0xcc, 0x0b, 0x33, 0xa9, 0x1e, 0x17, 0xa1, 0xa0, 0x58, 0x72, 0x41, 0x5f, 0x64, 0xa1, 0xc9, 0x7c, 0x8a, 0x97, 0x7f, 0xf6, 0x89, 0xd3, 0x1b, 0x61, 0xc9, 0x82, 0x05, 0xd6, 0xd8, 0xa1, 0x6b, 0x30, 0x29, 0xd2, 0xb3, 0x0b, 0x87, 0x40, 0xd5, @@ -39649,163 +39699,164 @@ var fileDescriptorGenerated = []byte{ 0xe7, 0x3e, 0xcc, 0xa8, 0xf7, 0x87, 0x78, 0x86, 0xc5, 0x78, 0x76, 0xba, 0xcc, 0x23, 0xbd, 0xb9, 0x89, 0x1a, 0x55, 0x28, 0xee, 0x7a, 0x86, 0x27, 0xee, 0xaa, 0xc5, 0x48, 0x07, 0x30, 0x53, 0x98, 0x1a, 0x7d, 0x11, 0x6a, 0x71, 0x67, 0xd3, 0x0d, 0x77, 0x1d, 0x2f, 0x60, 0xae, 0x6a, 0xfd, 0xc9, - 0x59, 0x89, 0xc0, 0x29, 0xcd, 0xdc, 0x67, 0xe0, 0x44, 0x97, 0x4c, 0xf7, 0x15, 0x43, 0xf6, 0xe3, - 0x21, 0xa8, 0x29, 0x67, 0x0e, 0x5a, 0x34, 0xfd, 0x75, 0x8f, 0x67, 0xfd, 0x75, 0x63, 0x74, 0xfd, - 0xd5, 0x5d, 0x74, 0x5f, 0xca, 0x79, 0x73, 0xf2, 0xb9, 0xc2, 0x8f, 0x58, 0xfe, 0x2a, 0x47, 0x1f, - 0x2f, 0x72, 0xa6, 0x66, 0xfd, 0xd0, 0xb1, 0x66, 0x7d, 0xc9, 0x87, 0x85, 0xa8, 0x01, 0xdf, 0x0e, - 0xdd, 0xf5, 0x46, 0xf6, 0xf5, 0x8c, 0x06, 0x05, 0x62, 0x8e, 0x63, 0xa6, 0x17, 0x55, 0xca, 0xcc, - 0xf4, 0x1a, 0x7d, 0x20, 0xd3, 0x4b, 0x16, 0xc7, 0x29, 0x27, 0xb4, 0x07, 0x27, 0x5a, 0xe6, 0x53, - 0x28, 0xea, 0x7a, 0xc6, 0x0b, 0x7d, 0x3c, 0x45, 0xd2, 0xd1, 0xd2, 0xbe, 0xaf, 0x64, 0xf9, 0xe1, - 0xee, 0x2a, 0xd0, 0x6b, 0x30, 0xf6, 0x4e, 0x18, 0xaf, 0xf8, 0x4e, 0x1c, 0x0b, 0xbd, 0x24, 0x43, - 0xe1, 0xc7, 0xde, 0xbc, 0xd9, 0x64, 0xf0, 0x23, 0xfe, 0x06, 0xb8, 0xfc, 0x8b, 0x55, 0x01, 0xfb, - 0x47, 0xdc, 0x6d, 0x24, 0xb6, 0x92, 0x24, 0xee, 0xf8, 0x83, 0xcc, 0x02, 0x7d, 0xd3, 0xd8, 0xdd, - 0x3e, 0x04, 0x87, 0xe5, 0xef, 0x5a, 0xcc, 0x61, 0xb9, 0x41, 0x76, 0xdb, 0xbe, 0x93, 0x0c, 0x32, - 0xaa, 0xef, 0x8b, 0x30, 0x96, 0x88, 0x5a, 0xca, 0xa5, 0xae, 0xd6, 0x9a, 0xc5, 0x1c, 0xb8, 0x4a, - 0x85, 0x48, 0x28, 0x56, 0x0c, 0xed, 0xdf, 0xe6, 0x5f, 0x41, 0x62, 0x06, 0xbe, 0x27, 0xbb, 0x61, - 0xee, 0xc9, 0x9e, 0x2d, 0xdd, 0x93, 0x5e, 0x7b, 0x33, 0xb3, 0xfd, 0xcc, 0xce, 0xfb, 0xf0, 0xfb, - 0xcf, 0xed, 0xeb, 0x60, 0x3e, 0x0c, 0x83, 0x5e, 0xe7, 0x31, 0xb1, 0x5c, 0x91, 0x3e, 0xd7, 0x67, - 0x3c, 0xac, 0xfd, 0xbd, 0x0a, 0x9c, 0xca, 0x7b, 0x20, 0x1e, 0xb9, 0x30, 0xd1, 0xd6, 0x6c, 0xef, - 0x72, 0xe9, 0x0e, 0x74, 0x6b, 0x3d, 0xb5, 0x78, 0x74, 0x28, 0x36, 0xb8, 0xa2, 0x4d, 0x98, 0x20, - 0x7b, 0x5e, 0x4b, 0xb9, 0x64, 0x2a, 0x7d, 0x6a, 0x36, 0x55, 0xc7, 0xaa, 0xc6, 0x05, 0x1b, 0x3c, - 0x07, 0x90, 0x57, 0xdd, 0xfe, 0x27, 0x16, 0x3c, 0xd6, 0x23, 0x21, 0x02, 0xad, 0xee, 0x1e, 0xf3, - 0x59, 0x8a, 0x57, 0x87, 0x54, 0x75, 0xdc, 0x93, 0x89, 0x05, 0x16, 0x6d, 0x02, 0x70, 0x4f, 0x24, - 0x7b, 0x81, 0xb5, 0x52, 0x26, 0x5c, 0xa0, 0xeb, 0xfa, 0xb1, 0x76, 0x33, 0x55, 0xbd, 0xb9, 0xaa, - 0x71, 0xb5, 0xbf, 0x5b, 0x85, 0x61, 0xfe, 0x08, 0x64, 0x03, 0x46, 0x77, 0x78, 0xda, 0xc5, 0xfe, - 0xb2, 0x3e, 0xa6, 0xb6, 0x15, 0x07, 0x60, 0xc9, 0x06, 0x5d, 0x87, 0x93, 0x5e, 0xe0, 0x25, 0x9e, - 0xe3, 0xd7, 0x89, 0xef, 0xec, 0x4b, 0x63, 0x9d, 0xa7, 0xdc, 0x96, 0xd9, 0x61, 0x4f, 0xae, 0x77, - 0x93, 0xe0, 0xbc, 0x72, 0xe8, 0x8d, 0xae, 0xec, 0x49, 0x3c, 0x9d, 0xa5, 0xba, 0xd0, 0x74, 0x7c, - 0x06, 0x25, 0xf4, 0x1a, 0x4c, 0xb6, 0xbb, 0xb6, 0x25, 0xda, 0xeb, 0x81, 0xe6, 0x56, 0xc4, 0xa4, - 0x45, 0x75, 0x98, 0x89, 0x3b, 0xec, 0xf0, 0x76, 0x63, 0x27, 0x22, 0xf1, 0x4e, 0xe8, 0xbb, 0xe2, - 0xf9, 0x2b, 0x65, 0x82, 0x35, 0x33, 0x78, 0xdc, 0x55, 0x82, 0x72, 0xd9, 0x72, 0x3c, 0xbf, 0x13, - 0x91, 0x94, 0xcb, 0x88, 0xc9, 0x65, 0x2d, 0x83, 0xc7, 0x5d, 0x25, 0xec, 0x3f, 0xb5, 0xe0, 0x64, - 0x4e, 0x84, 0x03, 0x8f, 0xba, 0xdb, 0xf6, 0xe2, 0x44, 0x25, 0x56, 0xd6, 0xa2, 0xee, 0x38, 0x1c, - 0x2b, 0x0a, 0x2a, 0x85, 0x7c, 0xaf, 0x99, 0x3d, 0x39, 0x14, 0x67, 0xb8, 0x02, 0xdb, 0x5f, 0x2e, - 0x24, 0xf5, 0x8a, 0xfd, 0x50, 0xcf, 0x57, 0xec, 0x9f, 0x82, 0xe1, 0x6d, 0xb5, 0xaf, 0xd7, 0x8c, - 0x19, 0xbe, 0xb3, 0xe7, 0x38, 0xfb, 0x5b, 0x55, 0x98, 0xce, 0x44, 0x3a, 0xd1, 0x86, 0x64, 0x1e, - 0xdb, 0x67, 0xce, 0x88, 0x15, 0xd2, 0xde, 0xc9, 0x79, 0x70, 0xff, 0x19, 0xf3, 0x45, 0xde, 0xb4, - 0xcd, 0xcb, 0x75, 0xe3, 0xd1, 0xb1, 0xb2, 0xc9, 0xde, 0x9f, 0x82, 0xa1, 0x76, 0xa8, 0x9e, 0x8e, - 0x54, 0x42, 0x8f, 0x97, 0xeb, 0x8d, 0x30, 0xf4, 0x31, 0x43, 0xa2, 0xa7, 0x45, 0xef, 0x33, 0x0e, - 0x4d, 0xec, 0xb8, 0x61, 0xac, 0x0d, 0xc1, 0xb3, 0x30, 0x7a, 0x97, 0xec, 0x47, 0x5e, 0xb0, 0x9d, - 0x75, 0xe7, 0x5e, 0xe5, 0x60, 0x2c, 0xf1, 0x66, 0x42, 0xf7, 0xd1, 0x01, 0x27, 0x74, 0x1f, 0x2b, - 0x0c, 0xd5, 0xfc, 0x4d, 0x0b, 0xa6, 0x59, 0x42, 0x3a, 0x71, 0x57, 0xd4, 0x0b, 0x83, 0x01, 0x2e, - 0x89, 0x4f, 0xc1, 0x70, 0x44, 0x2b, 0xcb, 0xe6, 0x62, 0x66, 0x2d, 0xc0, 0x1c, 0x87, 0x9e, 0x10, - 0xaf, 0x9a, 0xd3, 0xcf, 0x37, 0xc1, 0x73, 0xdb, 0xa6, 0xcf, 0x93, 0xb3, 0x2b, 0x00, 0x98, 0xb4, - 0x7d, 0x8f, 0x37, 0x36, 0xf5, 0xde, 0x7c, 0x58, 0xae, 0x00, 0xe4, 0x36, 0xee, 0x61, 0x5d, 0x01, - 0xc8, 0x67, 0x7e, 0xbc, 0xf1, 0xf9, 0x3f, 0x2a, 0x70, 0x36, 0xb7, 0x5c, 0x7a, 0x08, 0xb4, 0x66, - 0x1c, 0x02, 0x5d, 0xca, 0x1c, 0x02, 0xd9, 0xc7, 0x97, 0x7e, 0x38, 0xc7, 0x42, 0xf9, 0xe7, 0x35, - 0xd5, 0x47, 0x76, 0x5e, 0x33, 0x54, 0xd6, 0x50, 0x18, 0x2e, 0x30, 0x14, 0x7e, 0x6a, 0xc1, 0xe3, - 0xb9, 0x03, 0xf6, 0x21, 0xbb, 0x71, 0x91, 0xdb, 0xc6, 0x1e, 0x86, 0xf3, 0xdf, 0xae, 0xf6, 0xe8, - 0x13, 0x33, 0xa1, 0xcf, 0x53, 0x8d, 0xc3, 0x90, 0xb1, 0x30, 0x80, 0x26, 0xb8, 0xb6, 0xe1, 0x30, - 0xac, 0xb0, 0x28, 0xd6, 0x6e, 0x2c, 0xf0, 0x46, 0xae, 0x3e, 0xe0, 0x64, 0x5a, 0x30, 0x5d, 0x6d, - 0xfa, 0x75, 0xd7, 0xcc, 0x4d, 0x06, 0x74, 0x47, 0xdb, 0x12, 0x55, 0x1f, 0x64, 0x4b, 0x34, 0x91, - 0xbf, 0x1d, 0x42, 0x4b, 0x30, 0xbd, 0xeb, 0x05, 0xec, 0x75, 0x33, 0xd3, 0x02, 0x51, 0x97, 0xc4, - 0xae, 0x9b, 0x68, 0x9c, 0xa5, 0x9f, 0x7b, 0x0d, 0x26, 0x1f, 0xdc, 0xbf, 0xf2, 0x7e, 0x15, 0x7e, - 0xee, 0x18, 0x85, 0xc0, 0x57, 0x02, 0xe3, 0xbb, 0x68, 0x2b, 0x41, 0xd7, 0xb7, 0x69, 0xc0, 0xa9, - 0xad, 0x8e, 0xef, 0xef, 0xb3, 0xf0, 0x09, 0xe2, 0x4a, 0x0a, 0x61, 0xdd, 0xa9, 0x77, 0x47, 0xd7, - 0x72, 0x68, 0x70, 0x6e, 0x49, 0xf4, 0x39, 0x40, 0xe1, 0x26, 0x4b, 0xd1, 0xe8, 0xa6, 0x17, 0x7a, - 0xd9, 0x27, 0xa8, 0xa6, 0x13, 0xf5, 0x66, 0x17, 0x05, 0xce, 0x29, 0x45, 0x6d, 0x3d, 0xf6, 0x64, - 0xa9, 0x6a, 0x56, 0xc6, 0xd6, 0xc3, 0x3a, 0x12, 0x9b, 0xb4, 0xe8, 0x32, 0x9c, 0x70, 0xf6, 0x1c, - 0x8f, 0x27, 0x63, 0x91, 0x0c, 0xb8, 0xb1, 0xa7, 0x7c, 0x18, 0x4b, 0x59, 0x02, 0xdc, 0x5d, 0x06, - 0xb5, 0x0d, 0x97, 0x14, 0x4f, 0xc6, 0xfc, 0xfa, 0x03, 0x48, 0x70, 0x69, 0x27, 0x95, 0xfd, 0x27, - 0x16, 0x5d, 0xee, 0x72, 0x1e, 0x04, 0x33, 0xde, 0xce, 0xd6, 0xee, 0x71, 0x74, 0xbf, 0x9d, 0xcd, - 0xbc, 0xb5, 0x26, 0x2d, 0x17, 0x8d, 0x38, 0x8d, 0xbd, 0x34, 0x2c, 0x4b, 0x71, 0x79, 0x49, 0x51, - 0xa0, 0x3b, 0x30, 0xea, 0x7a, 0x7b, 0x5e, 0x1c, 0x46, 0x25, 0xde, 0xac, 0xed, 0x8a, 0xe7, 0x4b, - 0x75, 0x65, 0x9d, 0x33, 0xc1, 0x92, 0x9b, 0xfd, 0x77, 0x2a, 0x30, 0x29, 0xeb, 0x7b, 0xb3, 0x13, - 0x32, 0x1d, 0x36, 0xa8, 0x45, 0xfc, 0x4d, 0x63, 0x11, 0x5f, 0x2c, 0x77, 0x83, 0x8b, 0x35, 0xaa, - 0xe7, 0xe2, 0xfd, 0xf9, 0xcc, 0xe2, 0x7d, 0xb1, 0x1f, 0xa6, 0xc7, 0x2f, 0xda, 0xff, 0xd6, 0x82, - 0x13, 0x06, 0xfd, 0x87, 0x25, 0x1f, 0x70, 0x5e, 0x5f, 0x7a, 0xac, 0x1a, 0xdf, 0xad, 0x64, 0xfa, - 0xc0, 0x56, 0x8b, 0xaf, 0xc1, 0xd0, 0x8e, 0x13, 0xb9, 0xe5, 0x72, 0x91, 0x75, 0x15, 0x5f, 0xb8, - 0xe2, 0x44, 0x2e, 0xd7, 0xf9, 0x17, 0xd4, 0x93, 0x25, 0x4e, 0xe4, 0x16, 0x86, 0x21, 0xb3, 0x4a, - 0xd1, 0xab, 0x30, 0x12, 0xb7, 0xc2, 0xb6, 0x0a, 0xfd, 0x3a, 0xc7, 0x9f, 0x33, 0xa1, 0x90, 0xa3, - 0x83, 0x79, 0x64, 0x56, 0x47, 0xc1, 0x58, 0xd0, 0xcf, 0x11, 0xa8, 0xa9, 0xaa, 0x07, 0x18, 0xf0, - 0xfa, 0x7e, 0x15, 0x4e, 0xe6, 0xc8, 0x09, 0xfa, 0x79, 0x63, 0xd4, 0x5e, 0xeb, 0x5b, 0xd0, 0x3e, - 0xe0, 0xb8, 0xfd, 0x3c, 0xdb, 0x07, 0xb9, 0x42, 0x36, 0x1e, 0xa0, 0xfa, 0x5b, 0x31, 0xc9, 0x56, - 0x4f, 0x41, 0xc5, 0xd5, 0xd3, 0x6a, 0x1f, 0xd1, 0xe0, 0xd3, 0x6a, 0x54, 0x3b, 0x07, 0xf8, 0x8d, - 0xdf, 0x1b, 0x82, 0x53, 0x79, 0x57, 0x44, 0xd1, 0x2f, 0x59, 0x99, 0x74, 0xe2, 0x6f, 0xf4, 0x7f, - 0xcf, 0x94, 0xe7, 0x18, 0x17, 0x09, 0x14, 0x16, 0xcc, 0x04, 0xe3, 0x85, 0xa3, 0x2d, 0x6a, 0x67, - 0x57, 0x07, 0x22, 0x9e, 0x16, 0x5e, 0xea, 0x83, 0xcf, 0x3e, 0x40, 0x53, 0x44, 0x66, 0xf9, 0x38, - 0x73, 0x75, 0x40, 0x82, 0x8b, 0xaf, 0x0e, 0xc8, 0x36, 0xcc, 0x6d, 0xc3, 0xb8, 0xd6, 0xaf, 0x01, - 0x8a, 0x80, 0x47, 0x17, 0x24, 0xad, 0xd5, 0x03, 0x14, 0x83, 0xbf, 0x67, 0x41, 0x26, 0xbe, 0x43, - 0x39, 0x5b, 0xac, 0x9e, 0xce, 0x96, 0x73, 0x30, 0x14, 0x85, 0x3e, 0xc9, 0xa6, 0xba, 0xc6, 0xa1, - 0x4f, 0x30, 0xc3, 0xa8, 0x77, 0x0b, 0xab, 0xbd, 0xde, 0x2d, 0xa4, 0xbb, 0x70, 0x9f, 0xec, 0x11, - 0xe9, 0xfa, 0x50, 0xca, 0xfb, 0x1a, 0x05, 0x62, 0x8e, 0xb3, 0x7f, 0xbf, 0x0a, 0x23, 0xdc, 0xbf, - 0x30, 0xc0, 0x35, 0xb9, 0x21, 0xb6, 0xfa, 0xa5, 0xae, 0x6c, 0xf2, 0xd6, 0x2c, 0xd4, 0x9d, 0xc4, - 0xe1, 0x02, 0xa5, 0xfa, 0x96, 0xba, 0x07, 0xd0, 0x82, 0xd1, 0xfb, 0xb9, 0xcc, 0x4e, 0x16, 0x38, - 0x0f, 0x6d, 0x2c, 0x76, 0x00, 0x62, 0xf6, 0x46, 0x16, 0xe5, 0x21, 0x12, 0xc6, 0xbd, 0x54, 0xaa, - 0x1d, 0x4d, 0x55, 0x8c, 0xb7, 0x26, 0xcd, 0x54, 0xa5, 0x10, 0x58, 0xe3, 0x3d, 0xf7, 0x0a, 0xd4, - 0x14, 0x71, 0x91, 0x99, 0x3f, 0xa1, 0x8b, 0xe4, 0x5f, 0x81, 0xe9, 0x4c, 0x5d, 0x7d, 0xed, 0x12, - 0x7e, 0x68, 0xc1, 0x89, 0xae, 0xc7, 0x56, 0xd1, 0x7b, 0x16, 0x9c, 0xf2, 0x73, 0x1c, 0x4b, 0xc5, - 0xf1, 0x35, 0x3d, 0x5d, 0x52, 0x6a, 0x8b, 0x90, 0x87, 0xc5, 0xb9, 0xb5, 0xc9, 0x14, 0x98, 0x95, - 0xfc, 0x14, 0x98, 0xf6, 0xf7, 0x2c, 0x10, 0x9f, 0x6c, 0xe0, 0xe6, 0xcf, 0xba, 0x69, 0xfe, 0x7c, - 0xac, 0x8c, 0x0c, 0xf4, 0xb0, 0x7b, 0xfe, 0x83, 0x05, 0x88, 0x13, 0x64, 0x1f, 0xca, 0xe3, 0x5e, - 0x3a, 0xcd, 0x5a, 0x4f, 0x85, 0x46, 0x61, 0xb0, 0x46, 0xd5, 0x67, 0x36, 0x74, 0xf5, 0xc0, 0x54, - 0xb9, 0xb7, 0xe5, 0xab, 0x25, 0xde, 0x96, 0xff, 0xdd, 0x2a, 0x64, 0x43, 0x20, 0xd0, 0x57, 0x60, - 0xa2, 0xe5, 0xb4, 0x9d, 0x4d, 0xcf, 0xf7, 0x12, 0x8f, 0xc4, 0xe5, 0xce, 0x89, 0x56, 0xb4, 0x12, - 0xc2, 0xcf, 0xab, 0x41, 0xb0, 0xc1, 0x11, 0x2d, 0x00, 0xb4, 0x23, 0x6f, 0xcf, 0xf3, 0xc9, 0x36, - 0x33, 0x3a, 0x58, 0x14, 0x24, 0x3f, 0xf4, 0x90, 0x50, 0xac, 0x51, 0xe4, 0x44, 0xdc, 0x55, 0x1f, - 0x45, 0xc4, 0xdd, 0x50, 0x9f, 0x11, 0x77, 0xc3, 0xa5, 0x22, 0xee, 0x30, 0x9c, 0x91, 0xee, 0x59, - 0xfa, 0x7f, 0xcd, 0xf3, 0x09, 0x4f, 0x78, 0x27, 0xe2, 0x24, 0xe7, 0x0e, 0x0f, 0xe6, 0xcf, 0xe0, - 0x5c, 0x0a, 0xdc, 0xa3, 0xa4, 0xdd, 0x81, 0x93, 0x4d, 0x12, 0x79, 0x2c, 0x1f, 0x91, 0x9b, 0x4e, - 0xbf, 0x2f, 0x41, 0x2d, 0xca, 0xcc, 0xfc, 0x3e, 0xaf, 0xac, 0x69, 0x59, 0x2d, 0xe4, 0x4c, 0x4f, - 0x59, 0xda, 0x7f, 0xbd, 0x02, 0xa3, 0x22, 0xd4, 0x68, 0x80, 0xab, 0xc8, 0x55, 0x63, 0x67, 0xf7, - 0x6c, 0xd1, 0xcc, 0x65, 0xcd, 0xe9, 0xb9, 0xa7, 0x6b, 0x66, 0xf6, 0x74, 0xcf, 0x97, 0x63, 0x77, - 0xfc, 0x6e, 0xee, 0x77, 0x2a, 0x30, 0x65, 0x86, 0x5c, 0x0d, 0x70, 0x38, 0xde, 0x82, 0xd1, 0x58, - 0xc4, 0x21, 0x95, 0x7a, 0xcd, 0x3f, 0xfb, 0x49, 0xd3, 0x77, 0xea, 0x45, 0xe4, 0x91, 0x64, 0x97, - 0x1b, 0xea, 0x54, 0x7d, 0x14, 0xa1, 0x4e, 0xf6, 0xbf, 0x63, 0x2a, 0x55, 0x1f, 0xc0, 0x81, 0x2f, - 0x08, 0x6f, 0x9a, 0xaa, 0xf7, 0x42, 0x29, 0x39, 0x10, 0x8d, 0xeb, 0xb1, 0x30, 0xfc, 0x2b, 0x0b, - 0xc6, 0x05, 0xe1, 0xc0, 0x9b, 0xff, 0x39, 0xb3, 0xf9, 0x4f, 0x97, 0x6a, 0x7e, 0x8f, 0x76, 0xff, - 0x83, 0x8a, 0x6a, 0x77, 0x43, 0x3c, 0x1d, 0x5a, 0x98, 0xfb, 0x70, 0xac, 0x1d, 0x85, 0x49, 0xd8, - 0x0a, 0x7d, 0xb1, 0xb8, 0x3f, 0x91, 0x86, 0xa6, 0x73, 0xf8, 0x91, 0xf6, 0x1b, 0x2b, 0x6a, 0x16, - 0x75, 0x1d, 0x46, 0x89, 0x58, 0x9c, 0xf2, 0x1e, 0x2e, 0xdd, 0x94, 0x0f, 0x43, 0x53, 0x98, 0xb8, - 0xd1, 0xd1, 0xef, 0x83, 0xa8, 0x69, 0xac, 0xb9, 0xe2, 0x84, 0x35, 0xae, 0x32, 0x00, 0x92, 0xd5, - 0x30, 0x6c, 0xba, 0x4e, 0x6f, 0x08, 0x38, 0x56, 0x14, 0xf6, 0x2b, 0x4c, 0xbb, 0xb2, 0xe1, 0xe9, - 0x2f, 0x80, 0xfc, 0x57, 0x46, 0xd4, 0xc0, 0x32, 0xdf, 0xc8, 0x0d, 0x18, 0xa6, 0x5d, 0x94, 0xdb, - 0xbf, 0x72, 0xaa, 0x8c, 0x36, 0x41, 0x0f, 0x21, 0x8b, 0x92, 0x18, 0x73, 0x36, 0x88, 0x74, 0xf9, - 0xdb, 0x5f, 0x29, 0xad, 0x1d, 0xfb, 0xf0, 0xb0, 0xb3, 0x74, 0x32, 0x2c, 0x8b, 0xc6, 0x7a, 0x23, - 0x9b, 0xaf, 0x72, 0x45, 0x22, 0x70, 0x4a, 0x83, 0x16, 0x85, 0x95, 0x6e, 0xbe, 0x2b, 0x2b, 0xad, - 0x74, 0x39, 0x24, 0x9a, 0x99, 0x7e, 0x11, 0xc6, 0x55, 0xc6, 0xee, 0x06, 0x4f, 0xbc, 0x5c, 0xe3, - 0x96, 0xcb, 0x6a, 0x0a, 0xc6, 0x3a, 0x0d, 0x5a, 0x87, 0x93, 0xae, 0x8a, 0x77, 0x6d, 0x74, 0x36, - 0x7d, 0xaf, 0x45, 0x8b, 0xf2, 0xbb, 0x26, 0x8f, 0x1d, 0x1e, 0xcc, 0x9f, 0xac, 0x77, 0xa3, 0x71, - 0x5e, 0x19, 0xb4, 0x01, 0xd3, 0x31, 0xcf, 0x4c, 0x2e, 0xef, 0xa3, 0x89, 0x84, 0x6e, 0xcf, 0x49, - 0x47, 0x7f, 0xd3, 0x44, 0x1f, 0x31, 0x10, 0xd7, 0x08, 0x02, 0x84, 0xb3, 0x2c, 0xd0, 0x1b, 0x30, - 0xe5, 0xeb, 0x8f, 0x2b, 0x35, 0x44, 0xd8, 0xaf, 0x0a, 0x7f, 0x30, 0x9e, 0x5e, 0x6a, 0xe0, 0x0c, - 0x35, 0x7a, 0x0b, 0x66, 0x75, 0x88, 0xb8, 0xed, 0xee, 0x04, 0xdb, 0x24, 0x16, 0x29, 0x91, 0x9f, - 0x38, 0x3c, 0x98, 0x9f, 0xbd, 0xd6, 0x83, 0x06, 0xf7, 0x2c, 0x8d, 0x5e, 0x85, 0x09, 0x39, 0x92, - 0x5a, 0x08, 0x70, 0x1a, 0x78, 0xa3, 0xe1, 0xb0, 0x41, 0xf9, 0xc1, 0xce, 0x33, 0xbe, 0x46, 0x0b, - 0x6b, 0xcb, 0x29, 0xfa, 0x2a, 0x4c, 0xe8, 0x6d, 0x14, 0x3a, 0xf2, 0x13, 0xe5, 0x1f, 0xac, 0x12, - 0xcb, 0xb2, 0x6a, 0xb9, 0x8e, 0xc3, 0x06, 0x6f, 0xfb, 0x26, 0x8c, 0x34, 0xf7, 0xe3, 0x56, 0xe2, - 0x3f, 0xac, 0x27, 0x85, 0x5b, 0x30, 0x9d, 0x79, 0x7b, 0x57, 0x3d, 0xe2, 0x6c, 0x3d, 0xac, 0x47, - 0x9c, 0xed, 0xaf, 0x5b, 0x30, 0xbc, 0xe1, 0x78, 0xc5, 0x8f, 0x09, 0x94, 0x69, 0x32, 0x7a, 0x19, - 0x46, 0xc8, 0xd6, 0x16, 0x69, 0xc9, 0x47, 0xa1, 0x9f, 0x94, 0xe6, 0xcc, 0x2a, 0x83, 0xd2, 0xa9, - 0xc9, 0x2a, 0xe3, 0x7f, 0xb1, 0x20, 0xb6, 0xff, 0xa3, 0x05, 0xb0, 0x11, 0xfa, 0xf2, 0xa8, 0xa6, - 0xa0, 0x25, 0xcb, 0x5d, 0xcf, 0x1a, 0x3c, 0x93, 0xf3, 0xac, 0x01, 0x4a, 0x19, 0xe6, 0x3c, 0x6a, - 0xa0, 0x7a, 0x53, 0x2d, 0xd5, 0x9b, 0xa1, 0x7e, 0x7a, 0xf3, 0x4d, 0x0b, 0x44, 0xc4, 0x4c, 0x09, - 0x49, 0x70, 0x65, 0x2a, 0x72, 0x23, 0x8f, 0xc5, 0x73, 0x65, 0xae, 0x8a, 0x88, 0xec, 0x15, 0x4a, - 0x36, 0x8d, 0x9c, 0x15, 0x06, 0x57, 0xba, 0x85, 0x1f, 0xe7, 0xe8, 0xeb, 0xcc, 0x76, 0x2c, 0x6e, - 0x57, 0x5f, 0xf9, 0xba, 0x58, 0xa6, 0x6e, 0xca, 0x58, 0x65, 0x6e, 0xd2, 0x33, 0x75, 0x4b, 0x04, - 0x4e, 0x69, 0xd0, 0xb3, 0x30, 0x1a, 0x77, 0x36, 0x19, 0x79, 0x26, 0x7c, 0xa6, 0xc9, 0xc1, 0x58, - 0xe2, 0xed, 0x5f, 0x44, 0x60, 0x74, 0xcd, 0xc8, 0x12, 0x65, 0x3d, 0xf4, 0x2c, 0x51, 0x6f, 0xc3, - 0x18, 0xd9, 0x6d, 0x27, 0xfb, 0x75, 0x2f, 0x2a, 0x97, 0xab, 0x6f, 0x55, 0x50, 0x77, 0x73, 0x97, - 0x18, 0xac, 0x38, 0xf6, 0xc8, 0xf9, 0x55, 0xfd, 0x50, 0xe4, 0xfc, 0x1a, 0xfa, 0x0b, 0xc9, 0xf9, - 0xf5, 0x16, 0x8c, 0x6e, 0x7b, 0x09, 0x26, 0xed, 0x50, 0xdc, 0x0e, 0x2c, 0x38, 0x03, 0xbb, 0xcc, - 0x89, 0xbb, 0x13, 0xf9, 0x08, 0x04, 0x96, 0xec, 0xd0, 0x06, 0x8c, 0xf0, 0x7d, 0x87, 0x48, 0xa3, - 0xf5, 0x89, 0x32, 0x1e, 0x99, 0xee, 0x8c, 0x52, 0x22, 0x46, 0x4a, 0xf0, 0x92, 0x39, 0xbe, 0x46, - 0x3f, 0x78, 0x8e, 0x2f, 0x95, 0x99, 0x6b, 0xec, 0x61, 0x65, 0xe6, 0x32, 0x32, 0x9c, 0xd5, 0x06, - 0x91, 0xe1, 0xec, 0x9b, 0x16, 0x9c, 0x6e, 0xe7, 0x65, 0x07, 0x14, 0x39, 0xb6, 0x3e, 0xf3, 0x00, - 0xd9, 0x12, 0x8d, 0xaa, 0xd9, 0x8d, 0xad, 0x5c, 0x32, 0x9c, 0x5f, 0xb1, 0x4c, 0x95, 0x36, 0xfe, - 0xc1, 0x53, 0xa5, 0x0d, 0x3a, 0x19, 0x57, 0x9a, 0x38, 0x6d, 0x72, 0x20, 0x89, 0xd3, 0xa6, 0x1e, - 0x62, 0xe2, 0x34, 0x2d, 0xe5, 0xd9, 0xf4, 0xc3, 0x4d, 0x79, 0xb6, 0x03, 0xe3, 0x6e, 0x78, 0x2f, - 0xb8, 0xe7, 0x44, 0xee, 0x52, 0x63, 0x5d, 0x64, 0xd8, 0x2a, 0x48, 0xe8, 0x50, 0x4f, 0x0b, 0x18, - 0x35, 0x70, 0xd7, 0x63, 0x8a, 0xc4, 0x3a, 0x6b, 0x91, 0xfc, 0xed, 0xc4, 0x07, 0x4c, 0xfe, 0x66, - 0xa4, 0x50, 0x43, 0x83, 0x48, 0xa1, 0xf6, 0x15, 0x76, 0xbf, 0x7b, 0xcb, 0xdb, 0xbe, 0xee, 0xb4, - 0x67, 0x4f, 0x96, 0xa9, 0x61, 0x45, 0x92, 0x77, 0xd7, 0xa0, 0x50, 0x38, 0x65, 0xda, 0x9d, 0xa4, - 0xed, 0xd4, 0xa3, 0x4e, 0xd2, 0x76, 0x7a, 0x80, 0x49, 0xda, 0xce, 0x3c, 0xd2, 0x24, 0x6d, 0x8f, - 0xfd, 0x85, 0x24, 0x69, 0xfb, 0xab, 0x70, 0xf6, 0xf8, 0xcf, 0x91, 0x26, 0x00, 0x6e, 0xa4, 0x2e, - 0x83, 0x4c, 0x02, 0x60, 0x66, 0xea, 0x68, 0x54, 0xa5, 0x73, 0x45, 0x7d, 0xcf, 0x82, 0xc7, 0x7a, - 0x24, 0x55, 0x29, 0x7d, 0x77, 0xa1, 0x0d, 0xd3, 0x6d, 0xb3, 0x68, 0xe9, 0xfb, 0x45, 0x46, 0x12, - 0x17, 0x15, 0x1b, 0x97, 0x41, 0xe0, 0x2c, 0xfb, 0xe5, 0x8f, 0xfd, 0xf8, 0xfd, 0xb3, 0x1f, 0xf9, - 0xc9, 0xfb, 0x67, 0x3f, 0xf2, 0x47, 0xef, 0x9f, 0xfd, 0xc8, 0x2f, 0x1c, 0x9e, 0xb5, 0x7e, 0x7c, - 0x78, 0xd6, 0xfa, 0xc9, 0xe1, 0x59, 0xeb, 0x4f, 0x0f, 0xcf, 0x5a, 0xdf, 0xfc, 0xb3, 0xb3, 0x1f, - 0xf9, 0x42, 0x65, 0xef, 0xe2, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x04, 0xd2, 0x8a, 0x4f, 0x3d, - 0xb5, 0x00, 0x00, + 0x59, 0x89, 0xc0, 0x29, 0x0d, 0x6a, 0xc0, 0x98, 0x23, 0x5f, 0x5b, 0x46, 0x65, 0x2e, 0x10, 0xab, + 0x67, 0x96, 0x99, 0x1f, 0x53, 0xbd, 0xaf, 0xac, 0xb8, 0xcc, 0x7d, 0x06, 0x4e, 0x74, 0xcd, 0x92, + 0xbe, 0xa2, 0xd2, 0x7e, 0x3c, 0x04, 0x35, 0xe5, 0x1e, 0x42, 0x8b, 0xa6, 0x07, 0xf0, 0xf1, 0xac, + 0x07, 0x70, 0x8c, 0xae, 0xe8, 0xba, 0xd3, 0xef, 0x4b, 0x39, 0xaf, 0x58, 0x3e, 0x57, 0x28, 0x16, + 0xe5, 0x2f, 0x87, 0xf4, 0xf1, 0xc6, 0x67, 0xba, 0x51, 0x18, 0x3a, 0x76, 0xa3, 0x50, 0xf2, 0xa9, + 0x22, 0xba, 0x25, 0x68, 0x87, 0xee, 0x7a, 0x23, 0xfb, 0x1e, 0x47, 0x83, 0x02, 0x31, 0xc7, 0x31, + 0x63, 0x8e, 0xaa, 0x79, 0x66, 0xcc, 0x8d, 0x3e, 0x90, 0x31, 0x27, 0x8b, 0xe3, 0x94, 0x13, 0xda, + 0x83, 0x13, 0x2d, 0xf3, 0x71, 0x15, 0x75, 0xe1, 0xe3, 0x85, 0x3e, 0x1e, 0x37, 0xe9, 0x68, 0x89, + 0xe4, 0x57, 0xb2, 0xfc, 0x70, 0x77, 0x15, 0xe8, 0x35, 0x18, 0x7b, 0x27, 0x8c, 0x57, 0x7c, 0x27, + 0x8e, 0x85, 0xa6, 0x93, 0xc1, 0xf5, 0x63, 0x6f, 0xde, 0x6c, 0x32, 0xf8, 0x11, 0x7f, 0x55, 0x5c, + 0xfe, 0xc5, 0xaa, 0x80, 0xfd, 0x23, 0xee, 0x88, 0x12, 0x9b, 0x53, 0x12, 0x77, 0xfc, 0x41, 0xe6, + 0x95, 0xbe, 0x69, 0xec, 0x97, 0x1f, 0x82, 0x0b, 0xf4, 0x77, 0x2d, 0xe6, 0x02, 0xdd, 0x20, 0xbb, + 0x6d, 0xdf, 0x49, 0x06, 0x19, 0x27, 0xf8, 0x45, 0x18, 0x4b, 0x44, 0x2d, 0xe5, 0x92, 0x61, 0x6b, + 0xcd, 0x62, 0x2e, 0x61, 0xa5, 0x94, 0x24, 0x14, 0x2b, 0x86, 0xf6, 0x6f, 0xf3, 0xaf, 0x20, 0x31, + 0x03, 0xdf, 0xe5, 0xdd, 0x30, 0x77, 0x79, 0xcf, 0x96, 0xee, 0x49, 0xaf, 0xdd, 0x9e, 0xd9, 0x7e, + 0x66, 0x39, 0x7e, 0xf8, 0x3d, 0xf2, 0xf6, 0x75, 0x30, 0x9f, 0x9a, 0x41, 0xaf, 0xf3, 0x28, 0x5b, + 0xae, 0x48, 0x9f, 0xeb, 0x33, 0xc2, 0xd6, 0xfe, 0x5e, 0x05, 0x4e, 0xe5, 0x3d, 0x39, 0x8f, 0x5c, + 0x98, 0x68, 0x6b, 0xd6, 0x7c, 0xb9, 0x04, 0x0a, 0xba, 0xfd, 0x9f, 0xda, 0x50, 0x3a, 0x14, 0x1b, + 0x5c, 0xd1, 0x26, 0x4c, 0x90, 0x3d, 0xaf, 0xa5, 0x9c, 0x3c, 0x95, 0x3e, 0x35, 0x9b, 0xaa, 0x63, + 0x55, 0xe3, 0x82, 0x0d, 0x9e, 0x03, 0xc8, 0xd4, 0x6e, 0xff, 0x53, 0x0b, 0x1e, 0xeb, 0x91, 0x62, + 0x81, 0x56, 0x77, 0x8f, 0x79, 0x41, 0xc5, 0x3b, 0x46, 0xaa, 0x3a, 0xee, 0x1b, 0xc5, 0x02, 0x8b, + 0x36, 0x01, 0xb8, 0x6f, 0x93, 0xbd, 0xe9, 0x5a, 0x29, 0x13, 0x80, 0xd0, 0x75, 0xa1, 0x59, 0xbb, + 0xeb, 0xaa, 0x5e, 0x71, 0xd5, 0xb8, 0xda, 0xdf, 0xad, 0xc2, 0x30, 0x7f, 0x56, 0xb2, 0x01, 0xa3, + 0x3b, 0x3c, 0x91, 0x63, 0x7f, 0x79, 0x24, 0x53, 0x6b, 0x8d, 0x03, 0xb0, 0x64, 0x83, 0xae, 0xc3, + 0x49, 0x6a, 0x1a, 0x78, 0x8e, 0x5f, 0x27, 0xbe, 0xb3, 0x2f, 0xcd, 0x7f, 0x9e, 0xc4, 0x5b, 0xe6, + 0x9b, 0x3d, 0xb9, 0xde, 0x4d, 0x82, 0xf3, 0xca, 0xa1, 0x37, 0xba, 0xf2, 0x31, 0xf1, 0x04, 0x99, + 0xea, 0x8a, 0xd4, 0xf1, 0x39, 0x99, 0xd0, 0x6b, 0x30, 0xd9, 0xee, 0xda, 0xe8, 0x68, 0xef, 0x11, + 0x9a, 0x9b, 0x1b, 0x93, 0x16, 0xd5, 0x61, 0x26, 0xee, 0xb0, 0xe3, 0xe0, 0x8d, 0x9d, 0x88, 0xc4, + 0x3b, 0xa1, 0xef, 0x8a, 0x07, 0xb5, 0x94, 0x51, 0xd7, 0xcc, 0xe0, 0x71, 0x57, 0x09, 0xca, 0x65, + 0xcb, 0xf1, 0xfc, 0x4e, 0x44, 0x52, 0x2e, 0x23, 0x26, 0x97, 0xb5, 0x0c, 0x1e, 0x77, 0x95, 0xb0, + 0xff, 0xd4, 0x82, 0x93, 0x39, 0x31, 0x13, 0x3c, 0x8e, 0x6f, 0xdb, 0x8b, 0x13, 0x95, 0xaa, 0x59, + 0x8b, 0xe3, 0xe3, 0x70, 0xac, 0x28, 0xa8, 0x14, 0xf2, 0xdd, 0x6b, 0xf6, 0x2c, 0x52, 0x9c, 0x0a, + 0x0b, 0x6c, 0x7f, 0xd9, 0x95, 0xd4, 0xbb, 0xf8, 0x43, 0x3d, 0xdf, 0xc5, 0x7f, 0x0a, 0x86, 0xb7, + 0x95, 0xa7, 0x40, 0x33, 0x66, 0xb8, 0xaf, 0x80, 0xe3, 0xec, 0x6f, 0x55, 0x61, 0x3a, 0x13, 0x3b, + 0x45, 0x1b, 0x92, 0x79, 0xbe, 0x9f, 0xb9, 0x37, 0x56, 0x48, 0x7b, 0x27, 0xe7, 0x09, 0xff, 0x67, + 0xcc, 0x37, 0x7e, 0xd3, 0x36, 0x2f, 0xd7, 0x8d, 0x67, 0xcc, 0xca, 0xa6, 0x8f, 0x7f, 0x0a, 0x86, + 0xda, 0xa1, 0x7a, 0x8c, 0x52, 0x09, 0x3d, 0x5e, 0xae, 0x37, 0xc2, 0xd0, 0xc7, 0x0c, 0x89, 0x9e, + 0x16, 0xbd, 0xcf, 0xb8, 0x48, 0xb1, 0xe3, 0x86, 0xb1, 0x36, 0x04, 0xcf, 0xc2, 0xe8, 0x5d, 0xb2, + 0x1f, 0x79, 0xc1, 0x76, 0xd6, 0x41, 0x7c, 0x95, 0x83, 0xb1, 0xc4, 0x9b, 0x29, 0xe2, 0x47, 0x07, + 0x9c, 0x22, 0x7e, 0xac, 0x30, 0xf8, 0xf3, 0x37, 0x2d, 0x98, 0x66, 0x29, 0xee, 0xc4, 0xed, 0x53, + 0x2f, 0x0c, 0x06, 0xb8, 0x24, 0x3e, 0x05, 0xc3, 0x11, 0xad, 0x2c, 0x9b, 0xdd, 0x99, 0xb5, 0x00, + 0x73, 0x1c, 0x7a, 0x42, 0xbc, 0x93, 0x4e, 0x3f, 0xdf, 0x04, 0xcf, 0x96, 0x9b, 0x3e, 0x78, 0xce, + 0x2e, 0x15, 0x60, 0xd2, 0xf6, 0x3d, 0xde, 0xd8, 0xd4, 0x1f, 0xf4, 0x61, 0xb9, 0x54, 0x90, 0xdb, + 0xb8, 0x87, 0x75, 0xa9, 0x20, 0x9f, 0xf9, 0xf1, 0xc6, 0xe7, 0xff, 0xa8, 0xc0, 0xd9, 0xdc, 0x72, + 0xe9, 0xb1, 0xd2, 0x9a, 0x71, 0xac, 0x74, 0x29, 0x73, 0xac, 0x64, 0x1f, 0x5f, 0xfa, 0xe1, 0x1c, + 0x34, 0xe5, 0x9f, 0x00, 0x55, 0x1f, 0xd9, 0x09, 0xd0, 0x50, 0x59, 0x43, 0x61, 0xb8, 0xc0, 0x50, + 0xf8, 0xa9, 0x05, 0x8f, 0xe7, 0x0e, 0xd8, 0x87, 0xec, 0x0e, 0x47, 0x6e, 0x1b, 0x7b, 0x18, 0xce, + 0x7f, 0xbb, 0xda, 0xa3, 0x4f, 0xcc, 0x84, 0x3e, 0x4f, 0x35, 0x0e, 0x43, 0xc6, 0xc2, 0x00, 0x9a, + 0xe0, 0xda, 0x86, 0xc3, 0xb0, 0xc2, 0xa2, 0x58, 0xbb, 0x03, 0xc1, 0x1b, 0xb9, 0xfa, 0x80, 0x93, + 0x69, 0xc1, 0x74, 0xde, 0xe9, 0x17, 0x68, 0x33, 0x77, 0x23, 0xd0, 0x1d, 0x6d, 0x4b, 0x54, 0x7d, + 0x90, 0x2d, 0xd1, 0x44, 0xfe, 0x76, 0x08, 0x2d, 0xc1, 0xf4, 0xae, 0x17, 0xb0, 0xf7, 0xd2, 0x4c, + 0x0b, 0x44, 0x5d, 0x3b, 0xbb, 0x6e, 0xa2, 0x71, 0x96, 0x7e, 0xee, 0x35, 0x98, 0x7c, 0x70, 0xff, + 0xca, 0xfb, 0x55, 0xf8, 0xb9, 0x63, 0x14, 0x02, 0x5f, 0x09, 0x8c, 0xef, 0xa2, 0xad, 0x04, 0x5d, + 0xdf, 0xa6, 0x01, 0xa7, 0xb6, 0x3a, 0xbe, 0xbf, 0xcf, 0x02, 0x32, 0x88, 0x2b, 0x29, 0x84, 0x75, + 0xa7, 0x5e, 0x32, 0x5d, 0xcb, 0xa1, 0xc1, 0xb9, 0x25, 0xd1, 0xe7, 0x00, 0x85, 0x9b, 0x2c, 0xe9, + 0xa3, 0x9b, 0x5e, 0x11, 0x66, 0x9f, 0xa0, 0x9a, 0x4e, 0xd4, 0x9b, 0x5d, 0x14, 0x38, 0xa7, 0x14, + 0xb5, 0xf5, 0xd8, 0x23, 0xa8, 0xaa, 0x59, 0x19, 0x5b, 0x0f, 0xeb, 0x48, 0x6c, 0xd2, 0xa2, 0xcb, + 0x70, 0xc2, 0xd9, 0x73, 0x3c, 0x9e, 0xde, 0x45, 0x32, 0xe0, 0xc6, 0x9e, 0xf2, 0x61, 0x2c, 0x65, + 0x09, 0x70, 0x77, 0x19, 0xd4, 0x36, 0x5c, 0x52, 0x3c, 0xbd, 0xf3, 0xeb, 0x0f, 0x20, 0xc1, 0xa5, + 0x9d, 0x54, 0xf6, 0x9f, 0x58, 0x74, 0xb9, 0xcb, 0x79, 0x62, 0xcc, 0x78, 0x8d, 0x5b, 0xbb, 0x19, + 0xd2, 0xfd, 0x1a, 0x37, 0xf3, 0xff, 0x9a, 0xb4, 0x5c, 0x34, 0xe2, 0x34, 0x9a, 0xd3, 0xb0, 0x2c, + 0xc5, 0x75, 0x28, 0x45, 0x81, 0xee, 0xc0, 0xa8, 0xeb, 0xed, 0x79, 0x71, 0x18, 0x95, 0x78, 0x05, + 0xb7, 0x2b, 0x42, 0x30, 0xd5, 0x95, 0x75, 0xce, 0x04, 0x4b, 0x6e, 0xf6, 0xdf, 0xa9, 0xc0, 0xa4, + 0xac, 0xef, 0xcd, 0x4e, 0xc8, 0x74, 0xd8, 0xa0, 0x16, 0xf1, 0x37, 0x8d, 0x45, 0x7c, 0xb1, 0xdc, + 0x9d, 0x30, 0xd6, 0xa8, 0x9e, 0x8b, 0xf7, 0xe7, 0x33, 0x8b, 0xf7, 0xc5, 0x7e, 0x98, 0x1e, 0xbf, + 0x68, 0xff, 0x3b, 0x0b, 0x4e, 0x18, 0xf4, 0x1f, 0x96, 0x0c, 0xc3, 0x79, 0x7d, 0xe9, 0xb1, 0x6a, + 0x7c, 0xb7, 0x92, 0xe9, 0x03, 0x5b, 0x2d, 0xbe, 0x06, 0x43, 0x3b, 0x4e, 0xe4, 0x96, 0xcb, 0x6e, + 0xd6, 0x55, 0x7c, 0xe1, 0x8a, 0x13, 0xb9, 0x5c, 0xe7, 0x5f, 0x50, 0x8f, 0xa0, 0x38, 0x91, 0x5b, + 0x18, 0xd8, 0xcc, 0x2a, 0x45, 0xaf, 0xc2, 0x48, 0xdc, 0x0a, 0xdb, 0x2a, 0x98, 0xec, 0x1c, 0x7f, + 0x20, 0x85, 0x42, 0x8e, 0x0e, 0xe6, 0x91, 0x59, 0x1d, 0x05, 0x63, 0x41, 0x3f, 0x47, 0xa0, 0xa6, + 0xaa, 0x1e, 0x60, 0x08, 0xed, 0xfb, 0x55, 0x38, 0x99, 0x23, 0x27, 0xe8, 0xe7, 0x8d, 0x51, 0x7b, + 0xad, 0x6f, 0x41, 0xfb, 0x80, 0xe3, 0xf6, 0xf3, 0x6c, 0x1f, 0xe4, 0x0a, 0xd9, 0x78, 0x80, 0xea, + 0x6f, 0xc5, 0x24, 0x5b, 0x3d, 0x05, 0x15, 0x57, 0x4f, 0xab, 0x7d, 0x44, 0x83, 0x4f, 0xab, 0x51, + 0xed, 0x1c, 0xe0, 0x37, 0x7e, 0x6f, 0x08, 0x4e, 0xe5, 0x5d, 0x3a, 0x45, 0xbf, 0x64, 0x65, 0x12, + 0x94, 0xbf, 0xd1, 0xff, 0xcd, 0x55, 0x9e, 0xb5, 0x5c, 0xa4, 0x64, 0x58, 0x30, 0x53, 0x96, 0x17, + 0x8e, 0xb6, 0xa8, 0x9d, 0x5d, 0x46, 0x88, 0x78, 0xa2, 0x79, 0xa9, 0x0f, 0x3e, 0xfb, 0x00, 0x4d, + 0x11, 0xb9, 0xea, 0xe3, 0xcc, 0x65, 0x04, 0x09, 0x2e, 0xbe, 0x8c, 0x20, 0xdb, 0x30, 0xb7, 0x0d, + 0xe3, 0x5a, 0xbf, 0x06, 0x28, 0x02, 0x1e, 0x5d, 0x90, 0xb4, 0x56, 0x0f, 0x50, 0x0c, 0xfe, 0x9e, + 0x05, 0x99, 0x88, 0x11, 0xe5, 0x6c, 0xb1, 0x7a, 0x3a, 0x5b, 0xce, 0xc1, 0x50, 0x14, 0xfa, 0x24, + 0x9b, 0x3c, 0x1b, 0x87, 0x3e, 0xc1, 0x0c, 0xa3, 0x5e, 0x42, 0xac, 0xf6, 0x7a, 0x09, 0x91, 0xee, + 0xc2, 0x7d, 0xb2, 0x47, 0xa4, 0xeb, 0x43, 0x29, 0xef, 0x6b, 0x14, 0x88, 0x39, 0xce, 0xfe, 0xfd, + 0x2a, 0x8c, 0x70, 0xff, 0xc2, 0x00, 0xd7, 0xe4, 0x86, 0xd8, 0xea, 0x97, 0xba, 0x04, 0xca, 0x5b, + 0xb3, 0x50, 0x77, 0x12, 0x87, 0x0b, 0x94, 0xea, 0x5b, 0xea, 0x1e, 0x40, 0x0b, 0x46, 0xef, 0xe7, + 0x32, 0x3b, 0x59, 0xe0, 0x3c, 0xb4, 0xb1, 0xd8, 0x01, 0x88, 0xd9, 0xab, 0x5b, 0x94, 0x87, 0x48, + 0x41, 0xf7, 0x52, 0xa9, 0x76, 0x34, 0x55, 0x31, 0xde, 0x9a, 0x34, 0xf7, 0x95, 0x42, 0x60, 0x8d, + 0xf7, 0xdc, 0x2b, 0x50, 0x53, 0xc4, 0x45, 0x66, 0xfe, 0x84, 0x2e, 0x92, 0x7f, 0x05, 0xa6, 0x33, + 0x75, 0xf5, 0xb5, 0x4b, 0xf8, 0xa1, 0x05, 0x27, 0xba, 0x9e, 0x6f, 0x45, 0xef, 0x59, 0x70, 0xca, + 0xcf, 0x71, 0x2c, 0x15, 0x47, 0xec, 0xf4, 0x74, 0x49, 0xa9, 0x2d, 0x42, 0x1e, 0x16, 0xe7, 0xd6, + 0x26, 0x93, 0x6a, 0x56, 0xf2, 0x93, 0x6a, 0xda, 0xdf, 0xb3, 0x40, 0x7c, 0xb2, 0x81, 0x9b, 0x3f, + 0xeb, 0xa6, 0xf9, 0xf3, 0xb1, 0x32, 0x32, 0xd0, 0xc3, 0xee, 0xf9, 0x8f, 0x16, 0x20, 0x4e, 0x90, + 0x7d, 0x7a, 0x8f, 0x7b, 0xe9, 0x34, 0x6b, 0x3d, 0x15, 0x1a, 0x85, 0xc1, 0x1a, 0x55, 0x9f, 0xf9, + 0xd5, 0xd5, 0x93, 0x55, 0xe5, 0x5e, 0xab, 0xaf, 0x96, 0x78, 0xad, 0xfe, 0x77, 0xab, 0x90, 0x0d, + 0xaa, 0x40, 0x5f, 0x81, 0x89, 0x96, 0xd3, 0x76, 0x36, 0x3d, 0xdf, 0x4b, 0x3c, 0x12, 0x97, 0x3b, + 0x27, 0x5a, 0xd1, 0x4a, 0x08, 0x3f, 0xaf, 0x06, 0xc1, 0x06, 0x47, 0xb4, 0x00, 0xd0, 0x8e, 0xbc, + 0x3d, 0xcf, 0x27, 0xdb, 0xcc, 0xe8, 0x60, 0x71, 0x95, 0xfc, 0xd0, 0x43, 0x42, 0xb1, 0x46, 0x91, + 0x13, 0xc3, 0x57, 0x7d, 0x14, 0x31, 0x7c, 0x43, 0x7d, 0xc6, 0xf0, 0x0d, 0x97, 0x8a, 0xe1, 0xc3, + 0x70, 0x46, 0xba, 0x67, 0xe9, 0xff, 0x35, 0xcf, 0x27, 0x3c, 0x85, 0x9e, 0x88, 0xbc, 0x9c, 0x3b, + 0x3c, 0x98, 0x3f, 0x83, 0x73, 0x29, 0x70, 0x8f, 0x92, 0x76, 0x07, 0x4e, 0x36, 0x49, 0xe4, 0xb1, + 0x0c, 0x47, 0x6e, 0x3a, 0xfd, 0xbe, 0x04, 0xb5, 0x28, 0x33, 0xf3, 0xfb, 0xbc, 0x04, 0xa7, 0xe5, + 0xc9, 0x90, 0x33, 0x3d, 0x65, 0x69, 0xff, 0xf5, 0x0a, 0x8c, 0x8a, 0xe0, 0xa5, 0x01, 0xae, 0x22, + 0x57, 0x8d, 0x9d, 0xdd, 0xb3, 0x45, 0x33, 0x97, 0x35, 0xa7, 0xe7, 0x9e, 0xae, 0x99, 0xd9, 0xd3, + 0x3d, 0x5f, 0x8e, 0xdd, 0xf1, 0xbb, 0xb9, 0xdf, 0xa9, 0xc0, 0x94, 0x19, 0xc4, 0x35, 0xc0, 0xe1, + 0x78, 0x0b, 0x46, 0x63, 0x11, 0xd9, 0x54, 0x29, 0x13, 0xd6, 0x91, 0xfd, 0xa4, 0xe9, 0xcb, 0xf7, + 0x22, 0x96, 0x49, 0xb2, 0xcb, 0x0d, 0x9e, 0xaa, 0x3e, 0x8a, 0xe0, 0x29, 0xfb, 0xdf, 0x33, 0x95, + 0xaa, 0x0f, 0xe0, 0xc0, 0x17, 0x84, 0x37, 0x4d, 0xd5, 0x7b, 0xa1, 0x94, 0x1c, 0x88, 0xc6, 0xf5, + 0x58, 0x18, 0xfe, 0xb5, 0x05, 0xe3, 0x82, 0x70, 0xe0, 0xcd, 0xff, 0x9c, 0xd9, 0xfc, 0xa7, 0x4b, + 0x35, 0xbf, 0x47, 0xbb, 0xff, 0x41, 0x45, 0xb5, 0xbb, 0x21, 0x1e, 0x23, 0x2d, 0xcc, 0xa6, 0x38, + 0xd6, 0x8e, 0xc2, 0x24, 0x6c, 0x85, 0xbe, 0x58, 0xdc, 0x9f, 0x48, 0x83, 0xdd, 0x39, 0xfc, 0x48, + 0xfb, 0x8d, 0x15, 0x35, 0x8b, 0xe3, 0x0e, 0xa3, 0x44, 0x2c, 0x4e, 0x79, 0x4f, 0xa1, 0x6e, 0xca, + 0xa7, 0xa6, 0x29, 0x4c, 0xdc, 0x11, 0xe9, 0xf7, 0x89, 0xd5, 0x34, 0x7a, 0x5d, 0x71, 0xc2, 0x1a, + 0x57, 0x19, 0x52, 0xc9, 0x6a, 0x18, 0x36, 0x5d, 0xa7, 0x37, 0x04, 0x1c, 0x2b, 0x0a, 0xfb, 0x15, + 0xa6, 0x5d, 0xd9, 0xf0, 0xf4, 0x17, 0x92, 0xfe, 0x2b, 0x23, 0x6a, 0x60, 0x99, 0x6f, 0xe4, 0x06, + 0x0c, 0xd3, 0x2e, 0xca, 0xed, 0x5f, 0x39, 0x55, 0x46, 0x9b, 0xa0, 0x87, 0x90, 0x45, 0x49, 0x8c, + 0x39, 0x1b, 0x44, 0xba, 0xfc, 0xed, 0xaf, 0x94, 0xd6, 0x8e, 0x7d, 0x78, 0xd8, 0x59, 0x82, 0x1a, + 0x96, 0x97, 0x63, 0xbd, 0x91, 0xcd, 0x80, 0xb9, 0x22, 0x11, 0x38, 0xa5, 0x41, 0x8b, 0xc2, 0x4a, + 0x37, 0x5f, 0xaa, 0x95, 0x56, 0xba, 0x1c, 0x12, 0xcd, 0x4c, 0xbf, 0x08, 0xe3, 0x2a, 0x07, 0x78, + 0x83, 0xa7, 0x72, 0xae, 0x71, 0xcb, 0x65, 0x35, 0x05, 0x63, 0x9d, 0x06, 0xad, 0xc3, 0x49, 0x57, + 0x45, 0xd0, 0x36, 0x3a, 0x9b, 0xbe, 0xd7, 0xa2, 0x45, 0xf9, 0xed, 0x95, 0xc7, 0x0e, 0x0f, 0xe6, + 0x4f, 0xd6, 0xbb, 0xd1, 0x38, 0xaf, 0x0c, 0xda, 0x80, 0xe9, 0x98, 0xe7, 0x3a, 0x97, 0x61, 0x92, + 0x22, 0x45, 0xdc, 0x73, 0xd2, 0xd1, 0xdf, 0x34, 0xd1, 0x47, 0x0c, 0xc4, 0x35, 0x82, 0x0c, 0xac, + 0xcc, 0xb2, 0x40, 0x6f, 0xc0, 0x94, 0xaf, 0x3f, 0xd7, 0xd4, 0x10, 0x81, 0xc4, 0x2a, 0xfc, 0xc1, + 0x78, 0xcc, 0xa9, 0x81, 0x33, 0xd4, 0xe8, 0x2d, 0x98, 0xd5, 0x21, 0xe2, 0xfe, 0xbc, 0x13, 0x6c, + 0x93, 0x58, 0x24, 0x59, 0x7e, 0xe2, 0xf0, 0x60, 0x7e, 0xf6, 0x5a, 0x0f, 0x1a, 0xdc, 0xb3, 0x34, + 0x7a, 0x15, 0x26, 0xe4, 0x48, 0x6a, 0x41, 0xc5, 0x69, 0xe0, 0x8d, 0x86, 0xc3, 0x06, 0xe5, 0x07, + 0x3b, 0xcf, 0xf8, 0x1a, 0x2d, 0xac, 0x2d, 0xa7, 0xe8, 0xab, 0x30, 0xa1, 0xb7, 0x51, 0xe8, 0xc8, + 0x4f, 0x94, 0x7f, 0x02, 0x4b, 0x2c, 0xcb, 0xaa, 0xe5, 0x3a, 0x0e, 0x1b, 0xbc, 0xed, 0x9b, 0x30, + 0xd2, 0xdc, 0x8f, 0x5b, 0x89, 0xff, 0xb0, 0x1e, 0x29, 0x6e, 0xc1, 0x74, 0xe6, 0x35, 0x5f, 0xf5, + 0x2c, 0xb4, 0xf5, 0xb0, 0x9e, 0x85, 0xb6, 0xbf, 0x6e, 0xc1, 0xf0, 0x86, 0xe3, 0x15, 0x3f, 0x4f, + 0x50, 0xa6, 0xc9, 0xe8, 0x65, 0x18, 0x21, 0x5b, 0x5b, 0xa4, 0x25, 0x9f, 0x99, 0x7e, 0x52, 0x9a, + 0x33, 0xab, 0x0c, 0x4a, 0xa7, 0x26, 0xab, 0x8c, 0xff, 0xc5, 0x82, 0xd8, 0xfe, 0x4f, 0x16, 0xc0, + 0x46, 0xe8, 0xcb, 0xa3, 0x9a, 0x82, 0x96, 0x2c, 0x77, 0x3d, 0x94, 0xf0, 0x4c, 0xce, 0x43, 0x09, + 0x28, 0x65, 0x98, 0xf3, 0x4c, 0x82, 0xea, 0x4d, 0xb5, 0x54, 0x6f, 0x86, 0xfa, 0xe9, 0xcd, 0x37, + 0x2d, 0x10, 0x11, 0x33, 0x25, 0x24, 0xc1, 0x95, 0xc9, 0xcd, 0x8d, 0xcc, 0x18, 0xcf, 0x95, 0xb9, + 0x7c, 0x22, 0xf2, 0x61, 0x28, 0xd9, 0x34, 0xb2, 0x60, 0x18, 0x5c, 0xe9, 0x16, 0x7e, 0x9c, 0xa3, + 0xaf, 0x33, 0xdb, 0xb1, 0xb8, 0x5d, 0x7d, 0x65, 0x00, 0x63, 0xb9, 0xbf, 0x29, 0x63, 0x95, 0x0b, + 0x4a, 0xcf, 0xfd, 0x2d, 0x11, 0x38, 0xa5, 0x41, 0xcf, 0xc2, 0x68, 0xdc, 0xd9, 0x64, 0xe4, 0x99, + 0xf0, 0x99, 0x26, 0x07, 0x63, 0x89, 0xb7, 0x7f, 0x11, 0x81, 0xd1, 0x35, 0x23, 0xef, 0x94, 0xf5, + 0xd0, 0xf3, 0x4e, 0xbd, 0x0d, 0x63, 0x64, 0xb7, 0x9d, 0xec, 0xd7, 0xbd, 0xa8, 0x5c, 0xf6, 0xbf, + 0x55, 0x41, 0xdd, 0xcd, 0x5d, 0x62, 0xb0, 0xe2, 0xd8, 0x23, 0x8b, 0x58, 0xf5, 0x43, 0x91, 0x45, + 0x6c, 0xe8, 0x2f, 0x24, 0x8b, 0xd8, 0x5b, 0x30, 0xba, 0xed, 0x25, 0x98, 0xb4, 0x43, 0x71, 0xdf, + 0xb0, 0xe0, 0x0c, 0xec, 0x32, 0x27, 0xee, 0x4e, 0x0d, 0x24, 0x10, 0x58, 0xb2, 0x43, 0x1b, 0x30, + 0xc2, 0xf7, 0x1d, 0x22, 0x31, 0xd7, 0x27, 0xca, 0x78, 0x64, 0xba, 0x73, 0x54, 0x89, 0x18, 0x29, + 0xc1, 0x4b, 0x66, 0x0d, 0x1b, 0xfd, 0xe0, 0x59, 0xc3, 0x54, 0xae, 0xaf, 0xb1, 0x87, 0x95, 0xeb, + 0xcb, 0xc8, 0x99, 0x56, 0x1b, 0x44, 0xce, 0xb4, 0x6f, 0x5a, 0x70, 0xba, 0x9d, 0x97, 0x6f, 0x50, + 0x64, 0xed, 0xfa, 0xcc, 0x03, 0xe4, 0x5f, 0x34, 0xaa, 0x66, 0x77, 0xc0, 0x72, 0xc9, 0x70, 0x7e, + 0xc5, 0x32, 0xf9, 0xda, 0xf8, 0x07, 0x4f, 0xbe, 0x36, 0xe8, 0xf4, 0x5e, 0x69, 0x2a, 0xb6, 0xc9, + 0x81, 0xa4, 0x62, 0x9b, 0x7a, 0x88, 0xa9, 0xd8, 0xb4, 0x24, 0x6a, 0xd3, 0x0f, 0x37, 0x89, 0xda, + 0x0e, 0x8c, 0xbb, 0xe1, 0xbd, 0xe0, 0x9e, 0x13, 0xb9, 0x4b, 0x8d, 0x75, 0x91, 0xb3, 0xab, 0x20, + 0x45, 0x44, 0x3d, 0x2d, 0x60, 0xd4, 0xc0, 0x5d, 0x8f, 0x29, 0x12, 0xeb, 0xac, 0x45, 0x3a, 0xb9, + 0x13, 0x1f, 0x30, 0x9d, 0x9c, 0x91, 0x94, 0x0d, 0x0d, 0x22, 0x29, 0xdb, 0x57, 0xd8, 0x8d, 0xf1, + 0x2d, 0x6f, 0xfb, 0xba, 0xd3, 0x9e, 0x3d, 0x59, 0xa6, 0x86, 0x15, 0x49, 0xde, 0x5d, 0x83, 0x42, + 0xe1, 0x94, 0x69, 0x77, 0xda, 0xb7, 0x53, 0x8f, 0x3a, 0xed, 0xdb, 0xe9, 0x01, 0xa6, 0x7d, 0x3b, + 0xf3, 0x48, 0xd3, 0xbe, 0x3d, 0xf6, 0x17, 0x92, 0xf6, 0xed, 0xaf, 0xc2, 0xd9, 0xe3, 0x3f, 0x47, + 0x9a, 0x52, 0xb8, 0x91, 0xba, 0x0c, 0x32, 0x29, 0x85, 0x99, 0xa9, 0xa3, 0x51, 0x95, 0xce, 0x3e, + 0xf5, 0x3d, 0x0b, 0x1e, 0xeb, 0x91, 0xa6, 0xa5, 0xf4, 0xdd, 0x85, 0x36, 0x4c, 0xb7, 0xcd, 0xa2, + 0xa5, 0xef, 0x17, 0x19, 0x69, 0x61, 0x54, 0x6c, 0x5c, 0x06, 0x81, 0xb3, 0xec, 0x97, 0x3f, 0xf6, + 0xe3, 0xf7, 0xcf, 0x7e, 0xe4, 0x27, 0xef, 0x9f, 0xfd, 0xc8, 0x1f, 0xbd, 0x7f, 0xf6, 0x23, 0xbf, + 0x70, 0x78, 0xd6, 0xfa, 0xf1, 0xe1, 0x59, 0xeb, 0x27, 0x87, 0x67, 0xad, 0x3f, 0x3d, 0x3c, 0x6b, + 0x7d, 0xf3, 0xcf, 0xce, 0x7e, 0xe4, 0x0b, 0x95, 0xbd, 0x8b, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, + 0xe9, 0x83, 0x6c, 0x69, 0x8f, 0xb5, 0x00, 0x00, } diff --git a/pkg/api/v1/generated.proto b/pkg/api/v1/generated.proto index 2b86c8c1ad8..ec09b757329 100644 --- a/pkg/api/v1/generated.proto +++ b/pkg/api/v1/generated.proto @@ -2517,6 +2517,10 @@ message PodSpec { // If not specified, the pod will not have a domainname at all. // +optional optional string subdomain = 17; + + // If specified, the pod's scheduling constraints + // +optional + optional Affinity affinity = 18; } // PodStatus represents information about the status of a pod. Status may trail the actual diff --git a/pkg/api/v1/types.generated.go b/pkg/api/v1/types.generated.go index 7fd5322f3ce..d217f2ea9ce 100644 --- a/pkg/api/v1/types.generated.go +++ b/pkg/api/v1/types.generated.go @@ -27518,7 +27518,7 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } else { yysep2023 := !z.EncBinary() yy2arr2023 := z.EncBasicHandle().StructToArray - var yyq2023 [17]bool + var yyq2023 [18]bool _, _, _ = yysep2023, yyq2023, yy2arr2023 const yyr2023 bool = false yyq2023[0] = len(x.Volumes) != 0 @@ -27537,9 +27537,10 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { yyq2023[14] = len(x.ImagePullSecrets) != 0 yyq2023[15] = x.Hostname != "" yyq2023[16] = x.Subdomain != "" + yyq2023[17] = x.Affinity != nil var yynn2023 int if yyr2023 || yy2arr2023 { - r.EncodeArrayStart(17) + r.EncodeArrayStart(18) } else { yynn2023 = 1 for _, b := range yyq2023 { @@ -27999,6 +28000,29 @@ func (x *PodSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } + if yyr2023 || yy2arr2023 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2023[17] { + if x.Affinity == nil { + r.EncodeNil() + } else { + x.Affinity.CodecEncodeSelf(e) + } + } else { + r.EncodeNil() + } + } else { + if yyq2023[17] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("affinity")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Affinity == nil { + r.EncodeNil() + } else { + x.Affinity.CodecEncodeSelf(e) + } + } + } if yyr2023 || yy2arr2023 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { @@ -28012,25 +28036,25 @@ func (x *PodSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2073 := z.DecBinary() - _ = yym2073 + yym2074 := z.DecBinary() + _ = yym2074 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2074 := r.ContainerType() - if yyct2074 == codecSelferValueTypeMap1234 { - yyl2074 := r.ReadMapStart() - if yyl2074 == 0 { + yyct2075 := r.ContainerType() + if yyct2075 == codecSelferValueTypeMap1234 { + yyl2075 := r.ReadMapStart() + if yyl2075 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2074, d) + x.codecDecodeSelfFromMap(yyl2075, d) } - } else if yyct2074 == codecSelferValueTypeArray1234 { - yyl2074 := r.ReadArrayStart() - if yyl2074 == 0 { + } else if yyct2075 == codecSelferValueTypeArray1234 { + yyl2075 := r.ReadArrayStart() + if yyl2075 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2074, d) + x.codecDecodeSelfFromArray(yyl2075, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28042,12 +28066,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2075Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2075Slc - var yyhl2075 bool = l >= 0 - for yyj2075 := 0; ; yyj2075++ { - if yyhl2075 { - if yyj2075 >= l { + var yys2076Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2076Slc + var yyhl2076 bool = l >= 0 + for yyj2076 := 0; ; yyj2076++ { + if yyhl2076 { + if yyj2076 >= l { break } } else { @@ -28056,32 +28080,32 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2075Slc = r.DecodeBytes(yys2075Slc, true, true) - yys2075 := string(yys2075Slc) + yys2076Slc = r.DecodeBytes(yys2076Slc, true, true) + yys2076 := string(yys2076Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2075 { + switch yys2076 { case "volumes": if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv2076 := &x.Volumes - yym2077 := z.DecBinary() - _ = yym2077 + yyv2077 := &x.Volumes + yym2078 := z.DecBinary() + _ = yym2078 if false { } else { - h.decSliceVolume((*[]Volume)(yyv2076), d) + h.decSliceVolume((*[]Volume)(yyv2077), d) } } case "containers": if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv2078 := &x.Containers - yym2079 := z.DecBinary() - _ = yym2079 + yyv2079 := &x.Containers + yym2080 := z.DecBinary() + _ = yym2080 if false { } else { - h.decSliceContainer((*[]Container)(yyv2078), d) + h.decSliceContainer((*[]Container)(yyv2079), d) } } case "restartPolicy": @@ -28099,8 +28123,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym2082 := z.DecBinary() - _ = yym2082 + yym2083 := z.DecBinary() + _ = yym2083 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -28115,8 +28139,8 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym2084 := z.DecBinary() - _ = yym2084 + yym2085 := z.DecBinary() + _ = yym2085 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) @@ -28132,12 +28156,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv2086 := &x.NodeSelector - yym2087 := z.DecBinary() - _ = yym2087 + yyv2087 := &x.NodeSelector + yym2088 := z.DecBinary() + _ = yym2088 if false { } else { - z.F.DecMapStringStringX(yyv2086, false, d) + z.F.DecMapStringStringX(yyv2087, false, d) } } case "serviceAccountName": @@ -28191,12 +28215,12 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2095 := &x.ImagePullSecrets - yym2096 := z.DecBinary() - _ = yym2096 + yyv2096 := &x.ImagePullSecrets + yym2097 := z.DecBinary() + _ = yym2097 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2095), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2096), d) } } case "hostname": @@ -28211,10 +28235,21 @@ func (x *PodSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } else { x.Subdomain = string(r.DecodeString()) } + case "affinity": + if r.TryDecodeAsNil() { + if x.Affinity != nil { + x.Affinity = nil + } + } else { + if x.Affinity == nil { + x.Affinity = new(Affinity) + } + x.Affinity.CodecDecodeSelf(d) + } default: - z.DecStructFieldNotFound(-1, yys2075) - } // end switch yys2075 - } // end for yyj2075 + z.DecStructFieldNotFound(-1, yys2076) + } // end switch yys2076 + } // end for yyj2076 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28222,16 +28257,16 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2099 int - var yyb2099 bool - var yyhl2099 bool = l >= 0 - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + var yyj2101 int + var yyb2101 bool + var yyhl2101 bool = l >= 0 + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28239,21 +28274,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Volumes = nil } else { - yyv2100 := &x.Volumes - yym2101 := z.DecBinary() - _ = yym2101 + yyv2102 := &x.Volumes + yym2103 := z.DecBinary() + _ = yym2103 if false { } else { - h.decSliceVolume((*[]Volume)(yyv2100), d) + h.decSliceVolume((*[]Volume)(yyv2102), d) } } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28261,21 +28296,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Containers = nil } else { - yyv2102 := &x.Containers - yym2103 := z.DecBinary() - _ = yym2103 + yyv2104 := &x.Containers + yym2105 := z.DecBinary() + _ = yym2105 if false { } else { - h.decSliceContainer((*[]Container)(yyv2102), d) + h.decSliceContainer((*[]Container)(yyv2104), d) } } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28285,13 +28320,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.RestartPolicy = RestartPolicy(r.DecodeString()) } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28304,20 +28339,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TerminationGracePeriodSeconds == nil { x.TerminationGracePeriodSeconds = new(int64) } - yym2106 := z.DecBinary() - _ = yym2106 + yym2108 := z.DecBinary() + _ = yym2108 if false { } else { *((*int64)(x.TerminationGracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28330,20 +28365,20 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.ActiveDeadlineSeconds == nil { x.ActiveDeadlineSeconds = new(int64) } - yym2108 := z.DecBinary() - _ = yym2108 + yym2110 := z.DecBinary() + _ = yym2110 if false { } else { *((*int64)(x.ActiveDeadlineSeconds)) = int64(r.DecodeInt(64)) } } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28353,13 +28388,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DNSPolicy = DNSPolicy(r.DecodeString()) } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28367,21 +28402,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeSelector = nil } else { - yyv2110 := &x.NodeSelector - yym2111 := z.DecBinary() - _ = yym2111 + yyv2112 := &x.NodeSelector + yym2113 := z.DecBinary() + _ = yym2113 if false { } else { - z.F.DecMapStringStringX(yyv2110, false, d) + z.F.DecMapStringStringX(yyv2112, false, d) } } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28391,13 +28426,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ServiceAccountName = string(r.DecodeString()) } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28407,13 +28442,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.DeprecatedServiceAccount = string(r.DecodeString()) } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28423,13 +28458,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.NodeName = string(r.DecodeString()) } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28439,13 +28474,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostNetwork = bool(r.DecodeBool()) } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28455,13 +28490,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostPID = bool(r.DecodeBool()) } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28471,13 +28506,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIPC = bool(r.DecodeBool()) } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28492,13 +28527,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.SecurityContext.CodecDecodeSelf(d) } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28506,21 +28541,21 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2119 := &x.ImagePullSecrets - yym2120 := z.DecBinary() - _ = yym2120 + yyv2121 := &x.ImagePullSecrets + yym2122 := z.DecBinary() + _ = yym2122 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2119), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2121), d) } } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28530,13 +28565,13 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Hostname = string(r.DecodeString()) } - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l } else { - yyb2099 = r.CheckBreak() + yyb2101 = r.CheckBreak() } - if yyb2099 { + if yyb2101 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28546,18 +28581,39 @@ func (x *PodSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Subdomain = string(r.DecodeString()) } - for { - yyj2099++ - if yyhl2099 { - yyb2099 = yyj2099 > l - } else { - yyb2099 = r.CheckBreak() + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l + } else { + yyb2101 = r.CheckBreak() + } + if yyb2101 { + z.DecSendContainerState(codecSelfer_containerArrayEnd1234) + return + } + z.DecSendContainerState(codecSelfer_containerArrayElem1234) + if r.TryDecodeAsNil() { + if x.Affinity != nil { + x.Affinity = nil } - if yyb2099 { + } else { + if x.Affinity == nil { + x.Affinity = new(Affinity) + } + x.Affinity.CodecDecodeSelf(d) + } + for { + yyj2101++ + if yyhl2101 { + yyb2101 = yyj2101 > l + } else { + yyb2101 = r.CheckBreak() + } + if yyb2101 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2099-1, "") + z.DecStructFieldNotFound(yyj2101-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -28569,37 +28625,37 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2123 := z.EncBinary() - _ = yym2123 + yym2126 := z.EncBinary() + _ = yym2126 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2124 := !z.EncBinary() - yy2arr2124 := z.EncBasicHandle().StructToArray - var yyq2124 [5]bool - _, _, _ = yysep2124, yyq2124, yy2arr2124 - const yyr2124 bool = false - yyq2124[0] = x.SELinuxOptions != nil - yyq2124[1] = x.RunAsUser != nil - yyq2124[2] = x.RunAsNonRoot != nil - yyq2124[3] = len(x.SupplementalGroups) != 0 - yyq2124[4] = x.FSGroup != nil - var yynn2124 int - if yyr2124 || yy2arr2124 { + yysep2127 := !z.EncBinary() + yy2arr2127 := z.EncBasicHandle().StructToArray + var yyq2127 [5]bool + _, _, _ = yysep2127, yyq2127, yy2arr2127 + const yyr2127 bool = false + yyq2127[0] = x.SELinuxOptions != nil + yyq2127[1] = x.RunAsUser != nil + yyq2127[2] = x.RunAsNonRoot != nil + yyq2127[3] = len(x.SupplementalGroups) != 0 + yyq2127[4] = x.FSGroup != nil + var yynn2127 int + if yyr2127 || yy2arr2127 { r.EncodeArrayStart(5) } else { - yynn2124 = 0 - for _, b := range yyq2124 { + yynn2127 = 0 + for _, b := range yyq2127 { if b { - yynn2124++ + yynn2127++ } } - r.EncodeMapStart(yynn2124) - yynn2124 = 0 + r.EncodeMapStart(yynn2127) + yynn2127 = 0 } - if yyr2124 || yy2arr2124 { + if yyr2127 || yy2arr2127 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2124[0] { + if yyq2127[0] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -28609,7 +28665,7 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2124[0] { + if yyq2127[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -28620,84 +28676,84 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2124 || yy2arr2124 { + if yyr2127 || yy2arr2127 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2124[1] { + if yyq2127[1] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy2127 := *x.RunAsUser - yym2128 := z.EncBinary() - _ = yym2128 + yy2130 := *x.RunAsUser + yym2131 := z.EncBinary() + _ = yym2131 if false { } else { - r.EncodeInt(int64(yy2127)) + r.EncodeInt(int64(yy2130)) } } } else { r.EncodeNil() } } else { - if yyq2124[1] { + if yyq2127[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy2129 := *x.RunAsUser - yym2130 := z.EncBinary() - _ = yym2130 - if false { - } else { - r.EncodeInt(int64(yy2129)) - } - } - } - } - if yyr2124 || yy2arr2124 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2124[2] { - if x.RunAsNonRoot == nil { - r.EncodeNil() - } else { - yy2132 := *x.RunAsNonRoot + yy2132 := *x.RunAsUser yym2133 := z.EncBinary() _ = yym2133 if false { } else { - r.EncodeBool(bool(yy2132)) + r.EncodeInt(int64(yy2132)) + } + } + } + } + if yyr2127 || yy2arr2127 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2127[2] { + if x.RunAsNonRoot == nil { + r.EncodeNil() + } else { + yy2135 := *x.RunAsNonRoot + yym2136 := z.EncBinary() + _ = yym2136 + if false { + } else { + r.EncodeBool(bool(yy2135)) } } } else { r.EncodeNil() } } else { - if yyq2124[2] { + if yyq2127[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy2134 := *x.RunAsNonRoot - yym2135 := z.EncBinary() - _ = yym2135 + yy2137 := *x.RunAsNonRoot + yym2138 := z.EncBinary() + _ = yym2138 if false { } else { - r.EncodeBool(bool(yy2134)) + r.EncodeBool(bool(yy2137)) } } } } - if yyr2124 || yy2arr2124 { + if yyr2127 || yy2arr2127 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2124[3] { + if yyq2127[3] { if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2137 := z.EncBinary() - _ = yym2137 + yym2140 := z.EncBinary() + _ = yym2140 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -28707,15 +28763,15 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2124[3] { + if yyq2127[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("supplementalGroups")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SupplementalGroups == nil { r.EncodeNil() } else { - yym2138 := z.EncBinary() - _ = yym2138 + yym2141 := z.EncBinary() + _ = yym2141 if false { } else { z.F.EncSliceInt64V(x.SupplementalGroups, false, e) @@ -28723,42 +28779,42 @@ func (x *PodSecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2124 || yy2arr2124 { + if yyr2127 || yy2arr2127 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2124[4] { + if yyq2127[4] { if x.FSGroup == nil { r.EncodeNil() } else { - yy2140 := *x.FSGroup - yym2141 := z.EncBinary() - _ = yym2141 + yy2143 := *x.FSGroup + yym2144 := z.EncBinary() + _ = yym2144 if false { } else { - r.EncodeInt(int64(yy2140)) + r.EncodeInt(int64(yy2143)) } } } else { r.EncodeNil() } } else { - if yyq2124[4] { + if yyq2127[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fsGroup")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.FSGroup == nil { r.EncodeNil() } else { - yy2142 := *x.FSGroup - yym2143 := z.EncBinary() - _ = yym2143 + yy2145 := *x.FSGroup + yym2146 := z.EncBinary() + _ = yym2146 if false { } else { - r.EncodeInt(int64(yy2142)) + r.EncodeInt(int64(yy2145)) } } } } - if yyr2124 || yy2arr2124 { + if yyr2127 || yy2arr2127 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -28771,25 +28827,25 @@ func (x *PodSecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2144 := z.DecBinary() - _ = yym2144 + yym2147 := z.DecBinary() + _ = yym2147 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2145 := r.ContainerType() - if yyct2145 == codecSelferValueTypeMap1234 { - yyl2145 := r.ReadMapStart() - if yyl2145 == 0 { + yyct2148 := r.ContainerType() + if yyct2148 == codecSelferValueTypeMap1234 { + yyl2148 := r.ReadMapStart() + if yyl2148 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2145, d) + x.codecDecodeSelfFromMap(yyl2148, d) } - } else if yyct2145 == codecSelferValueTypeArray1234 { - yyl2145 := r.ReadArrayStart() - if yyl2145 == 0 { + } else if yyct2148 == codecSelferValueTypeArray1234 { + yyl2148 := r.ReadArrayStart() + if yyl2148 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2145, d) + x.codecDecodeSelfFromArray(yyl2148, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -28801,12 +28857,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2146Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2146Slc - var yyhl2146 bool = l >= 0 - for yyj2146 := 0; ; yyj2146++ { - if yyhl2146 { - if yyj2146 >= l { + var yys2149Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2149Slc + var yyhl2149 bool = l >= 0 + for yyj2149 := 0; ; yyj2149++ { + if yyhl2149 { + if yyj2149 >= l { break } } else { @@ -28815,10 +28871,10 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2146Slc = r.DecodeBytes(yys2146Slc, true, true) - yys2146 := string(yys2146Slc) + yys2149Slc = r.DecodeBytes(yys2149Slc, true, true) + yys2149 := string(yys2149Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2146 { + switch yys2149 { case "seLinuxOptions": if r.TryDecodeAsNil() { if x.SELinuxOptions != nil { @@ -28839,8 +28895,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2149 := z.DecBinary() - _ = yym2149 + yym2152 := z.DecBinary() + _ = yym2152 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -28855,8 +28911,8 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2151 := z.DecBinary() - _ = yym2151 + yym2154 := z.DecBinary() + _ = yym2154 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -28866,12 +28922,12 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2152 := &x.SupplementalGroups - yym2153 := z.DecBinary() - _ = yym2153 + yyv2155 := &x.SupplementalGroups + yym2156 := z.DecBinary() + _ = yym2156 if false { } else { - z.F.DecSliceInt64X(yyv2152, false, d) + z.F.DecSliceInt64X(yyv2155, false, d) } } case "fsGroup": @@ -28883,17 +28939,17 @@ func (x *PodSecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2155 := z.DecBinary() - _ = yym2155 + yym2158 := z.DecBinary() + _ = yym2158 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys2146) - } // end switch yys2146 - } // end for yyj2146 + z.DecStructFieldNotFound(-1, yys2149) + } // end switch yys2149 + } // end for yyj2149 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -28901,16 +28957,16 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2156 int - var yyb2156 bool - var yyhl2156 bool = l >= 0 - yyj2156++ - if yyhl2156 { - yyb2156 = yyj2156 > l + var yyj2159 int + var yyb2159 bool + var yyhl2159 bool = l >= 0 + yyj2159++ + if yyhl2159 { + yyb2159 = yyj2159 > l } else { - yyb2156 = r.CheckBreak() + yyb2159 = r.CheckBreak() } - if yyb2156 { + if yyb2159 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28925,13 +28981,13 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj2156++ - if yyhl2156 { - yyb2156 = yyj2156 > l + yyj2159++ + if yyhl2159 { + yyb2159 = yyj2159 > l } else { - yyb2156 = r.CheckBreak() + yyb2159 = r.CheckBreak() } - if yyb2156 { + if yyb2159 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28944,20 +29000,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym2159 := z.DecBinary() - _ = yym2159 + yym2162 := z.DecBinary() + _ = yym2162 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj2156++ - if yyhl2156 { - yyb2156 = yyj2156 > l + yyj2159++ + if yyhl2159 { + yyb2159 = yyj2159 > l } else { - yyb2156 = r.CheckBreak() + yyb2159 = r.CheckBreak() } - if yyb2156 { + if yyb2159 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28970,20 +29026,20 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym2161 := z.DecBinary() - _ = yym2161 + yym2164 := z.DecBinary() + _ = yym2164 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj2156++ - if yyhl2156 { - yyb2156 = yyj2156 > l + yyj2159++ + if yyhl2159 { + yyb2159 = yyj2159 > l } else { - yyb2156 = r.CheckBreak() + yyb2159 = r.CheckBreak() } - if yyb2156 { + if yyb2159 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -28991,21 +29047,21 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.SupplementalGroups = nil } else { - yyv2162 := &x.SupplementalGroups - yym2163 := z.DecBinary() - _ = yym2163 + yyv2165 := &x.SupplementalGroups + yym2166 := z.DecBinary() + _ = yym2166 if false { } else { - z.F.DecSliceInt64X(yyv2162, false, d) + z.F.DecSliceInt64X(yyv2165, false, d) } } - yyj2156++ - if yyhl2156 { - yyb2156 = yyj2156 > l + yyj2159++ + if yyhl2159 { + yyb2159 = yyj2159 > l } else { - yyb2156 = r.CheckBreak() + yyb2159 = r.CheckBreak() } - if yyb2156 { + if yyb2159 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29018,25 +29074,25 @@ func (x *PodSecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decode if x.FSGroup == nil { x.FSGroup = new(int64) } - yym2165 := z.DecBinary() - _ = yym2165 + yym2168 := z.DecBinary() + _ = yym2168 if false { } else { *((*int64)(x.FSGroup)) = int64(r.DecodeInt(64)) } } for { - yyj2156++ - if yyhl2156 { - yyb2156 = yyj2156 > l + yyj2159++ + if yyhl2159 { + yyb2159 = yyj2159 > l } else { - yyb2156 = r.CheckBreak() + yyb2159 = r.CheckBreak() } - if yyb2156 { + if yyb2159 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2156-1, "") + z.DecStructFieldNotFound(yyj2159-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29045,8 +29101,8 @@ func (x PodQOSClass) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2166 := z.EncBinary() - _ = yym2166 + yym2169 := z.EncBinary() + _ = yym2169 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -29058,8 +29114,8 @@ func (x *PodQOSClass) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2167 := z.DecBinary() - _ = yym2167 + yym2170 := z.DecBinary() + _ = yym2170 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -29074,61 +29130,61 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2168 := z.EncBinary() - _ = yym2168 + yym2171 := z.EncBinary() + _ = yym2171 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2169 := !z.EncBinary() - yy2arr2169 := z.EncBasicHandle().StructToArray - var yyq2169 [9]bool - _, _, _ = yysep2169, yyq2169, yy2arr2169 - const yyr2169 bool = false - yyq2169[0] = x.Phase != "" - yyq2169[1] = len(x.Conditions) != 0 - yyq2169[2] = x.Message != "" - yyq2169[3] = x.Reason != "" - yyq2169[4] = x.HostIP != "" - yyq2169[5] = x.PodIP != "" - yyq2169[6] = x.StartTime != nil - yyq2169[7] = len(x.ContainerStatuses) != 0 - yyq2169[8] = x.QOSClass != "" - var yynn2169 int - if yyr2169 || yy2arr2169 { + yysep2172 := !z.EncBinary() + yy2arr2172 := z.EncBasicHandle().StructToArray + var yyq2172 [9]bool + _, _, _ = yysep2172, yyq2172, yy2arr2172 + const yyr2172 bool = false + yyq2172[0] = x.Phase != "" + yyq2172[1] = len(x.Conditions) != 0 + yyq2172[2] = x.Message != "" + yyq2172[3] = x.Reason != "" + yyq2172[4] = x.HostIP != "" + yyq2172[5] = x.PodIP != "" + yyq2172[6] = x.StartTime != nil + yyq2172[7] = len(x.ContainerStatuses) != 0 + yyq2172[8] = x.QOSClass != "" + var yynn2172 int + if yyr2172 || yy2arr2172 { r.EncodeArrayStart(9) } else { - yynn2169 = 0 - for _, b := range yyq2169 { + yynn2172 = 0 + for _, b := range yyq2172 { if b { - yynn2169++ + yynn2172++ } } - r.EncodeMapStart(yynn2169) - yynn2169 = 0 + r.EncodeMapStart(yynn2172) + yynn2172 = 0 } - if yyr2169 || yy2arr2169 { + if yyr2172 || yy2arr2172 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2169[0] { + if yyq2172[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2169[0] { + if yyq2172[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr2169 || yy2arr2169 { + if yyr2172 || yy2arr2172 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2169[1] { + if yyq2172[1] { if x.Conditions == nil { r.EncodeNil() } else { - yym2172 := z.EncBinary() - _ = yym2172 + yym2175 := z.EncBinary() + _ = yym2175 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -29138,15 +29194,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2169[1] { + if yyq2172[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2173 := z.EncBinary() - _ = yym2173 + yym2176 := z.EncBinary() + _ = yym2176 if false { } else { h.encSlicePodCondition(([]PodCondition)(x.Conditions), e) @@ -29154,86 +29210,86 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2169 || yy2arr2169 { + if yyr2172 || yy2arr2172 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2169[2] { - yym2175 := z.EncBinary() - _ = yym2175 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2169[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2176 := z.EncBinary() - _ = yym2176 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } - } - if yyr2169 || yy2arr2169 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2169[3] { + if yyq2172[2] { yym2178 := z.EncBinary() _ = yym2178 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2169[3] { + if yyq2172[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) + r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2179 := z.EncBinary() _ = yym2179 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2169 || yy2arr2169 { + if yyr2172 || yy2arr2172 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2169[4] { + if yyq2172[3] { yym2181 := z.EncBinary() _ = yym2181 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2169[4] { + if yyq2172[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hostIP")) + r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2182 := z.EncBinary() _ = yym2182 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr2172 || yy2arr2172 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2172[4] { + yym2184 := z.EncBinary() + _ = yym2184 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2172[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("hostIP")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2185 := z.EncBinary() + _ = yym2185 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.HostIP)) } } } - if yyr2169 || yy2arr2169 { + if yyr2172 || yy2arr2172 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2169[5] { - yym2184 := z.EncBinary() - _ = yym2184 + if yyq2172[5] { + yym2187 := z.EncBinary() + _ = yym2187 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) @@ -29242,31 +29298,31 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2169[5] { + if yyq2172[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2185 := z.EncBinary() - _ = yym2185 + yym2188 := z.EncBinary() + _ = yym2188 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.PodIP)) } } } - if yyr2169 || yy2arr2169 { + if yyr2172 || yy2arr2172 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2169[6] { + if yyq2172[6] { if x.StartTime == nil { r.EncodeNil() } else { - yym2187 := z.EncBinary() - _ = yym2187 + yym2190 := z.EncBinary() + _ = yym2190 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2187 { + } else if yym2190 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2187 && z.IsJSONHandle() { + } else if !yym2190 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -29276,20 +29332,20 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2169[6] { + if yyq2172[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("startTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StartTime == nil { r.EncodeNil() } else { - yym2188 := z.EncBinary() - _ = yym2188 + yym2191 := z.EncBinary() + _ = yym2191 if false { } else if z.HasExtensions() && z.EncExt(x.StartTime) { - } else if yym2188 { + } else if yym2191 { z.EncBinaryMarshal(x.StartTime) - } else if !yym2188 && z.IsJSONHandle() { + } else if !yym2191 && z.IsJSONHandle() { z.EncJSONMarshal(x.StartTime) } else { z.EncFallback(x.StartTime) @@ -29297,14 +29353,14 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2169 || yy2arr2169 { + if yyr2172 || yy2arr2172 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2169[7] { + if yyq2172[7] { if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2190 := z.EncBinary() - _ = yym2190 + yym2193 := z.EncBinary() + _ = yym2193 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -29314,15 +29370,15 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2169[7] { + if yyq2172[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerStatuses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ContainerStatuses == nil { r.EncodeNil() } else { - yym2191 := z.EncBinary() - _ = yym2191 + yym2194 := z.EncBinary() + _ = yym2194 if false { } else { h.encSliceContainerStatus(([]ContainerStatus)(x.ContainerStatuses), e) @@ -29330,22 +29386,22 @@ func (x *PodStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2169 || yy2arr2169 { + if yyr2172 || yy2arr2172 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2169[8] { + if yyq2172[8] { x.QOSClass.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2169[8] { + if yyq2172[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("qosClass")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.QOSClass.CodecEncodeSelf(e) } } - if yyr2169 || yy2arr2169 { + if yyr2172 || yy2arr2172 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29358,25 +29414,25 @@ func (x *PodStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2193 := z.DecBinary() - _ = yym2193 + yym2196 := z.DecBinary() + _ = yym2196 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2194 := r.ContainerType() - if yyct2194 == codecSelferValueTypeMap1234 { - yyl2194 := r.ReadMapStart() - if yyl2194 == 0 { + yyct2197 := r.ContainerType() + if yyct2197 == codecSelferValueTypeMap1234 { + yyl2197 := r.ReadMapStart() + if yyl2197 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2194, d) + x.codecDecodeSelfFromMap(yyl2197, d) } - } else if yyct2194 == codecSelferValueTypeArray1234 { - yyl2194 := r.ReadArrayStart() - if yyl2194 == 0 { + } else if yyct2197 == codecSelferValueTypeArray1234 { + yyl2197 := r.ReadArrayStart() + if yyl2197 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2194, d) + x.codecDecodeSelfFromArray(yyl2197, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29388,12 +29444,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2195Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2195Slc - var yyhl2195 bool = l >= 0 - for yyj2195 := 0; ; yyj2195++ { - if yyhl2195 { - if yyj2195 >= l { + var yys2198Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2198Slc + var yyhl2198 bool = l >= 0 + for yyj2198 := 0; ; yyj2198++ { + if yyhl2198 { + if yyj2198 >= l { break } } else { @@ -29402,10 +29458,10 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2195Slc = r.DecodeBytes(yys2195Slc, true, true) - yys2195 := string(yys2195Slc) + yys2198Slc = r.DecodeBytes(yys2198Slc, true, true) + yys2198 := string(yys2198Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2195 { + switch yys2198 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -29416,12 +29472,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2197 := &x.Conditions - yym2198 := z.DecBinary() - _ = yym2198 + yyv2200 := &x.Conditions + yym2201 := z.DecBinary() + _ = yym2201 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2197), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2200), d) } } case "message": @@ -29457,13 +29513,13 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_v1.Time) } - yym2204 := z.DecBinary() - _ = yym2204 + yym2207 := z.DecBinary() + _ = yym2207 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2204 { + } else if yym2207 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2204 && z.IsJSONHandle() { + } else if !yym2207 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) @@ -29473,12 +29529,12 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2205 := &x.ContainerStatuses - yym2206 := z.DecBinary() - _ = yym2206 + yyv2208 := &x.ContainerStatuses + yym2209 := z.DecBinary() + _ = yym2209 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2205), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2208), d) } } case "qosClass": @@ -29488,9 +29544,9 @@ func (x *PodStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.QOSClass = PodQOSClass(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2195) - } // end switch yys2195 - } // end for yyj2195 + z.DecStructFieldNotFound(-1, yys2198) + } // end switch yys2198 + } // end for yyj2198 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29498,16 +29554,16 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2208 int - var yyb2208 bool - var yyhl2208 bool = l >= 0 - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + var yyj2211 int + var yyb2211 bool + var yyhl2211 bool = l >= 0 + yyj2211++ + if yyhl2211 { + yyb2211 = yyj2211 > l } else { - yyb2208 = r.CheckBreak() + yyb2211 = r.CheckBreak() } - if yyb2208 { + if yyb2211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29517,13 +29573,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = PodPhase(r.DecodeString()) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2211++ + if yyhl2211 { + yyb2211 = yyj2211 > l } else { - yyb2208 = r.CheckBreak() + yyb2211 = r.CheckBreak() } - if yyb2208 { + if yyb2211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29531,21 +29587,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2210 := &x.Conditions - yym2211 := z.DecBinary() - _ = yym2211 + yyv2213 := &x.Conditions + yym2214 := z.DecBinary() + _ = yym2214 if false { } else { - h.decSlicePodCondition((*[]PodCondition)(yyv2210), d) + h.decSlicePodCondition((*[]PodCondition)(yyv2213), d) } } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2211++ + if yyhl2211 { + yyb2211 = yyj2211 > l } else { - yyb2208 = r.CheckBreak() + yyb2211 = r.CheckBreak() } - if yyb2208 { + if yyb2211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29555,13 +29611,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2211++ + if yyhl2211 { + yyb2211 = yyj2211 > l } else { - yyb2208 = r.CheckBreak() + yyb2211 = r.CheckBreak() } - if yyb2208 { + if yyb2211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29571,13 +29627,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2211++ + if yyhl2211 { + yyb2211 = yyj2211 > l } else { - yyb2208 = r.CheckBreak() + yyb2211 = r.CheckBreak() } - if yyb2208 { + if yyb2211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29587,13 +29643,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.HostIP = string(r.DecodeString()) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2211++ + if yyhl2211 { + yyb2211 = yyj2211 > l } else { - yyb2208 = r.CheckBreak() + yyb2211 = r.CheckBreak() } - if yyb2208 { + if yyb2211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29603,13 +29659,13 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodIP = string(r.DecodeString()) } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2211++ + if yyhl2211 { + yyb2211 = yyj2211 > l } else { - yyb2208 = r.CheckBreak() + yyb2211 = r.CheckBreak() } - if yyb2208 { + if yyb2211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29622,25 +29678,25 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.StartTime == nil { x.StartTime = new(pkg2_v1.Time) } - yym2217 := z.DecBinary() - _ = yym2217 + yym2220 := z.DecBinary() + _ = yym2220 if false { } else if z.HasExtensions() && z.DecExt(x.StartTime) { - } else if yym2217 { + } else if yym2220 { z.DecBinaryUnmarshal(x.StartTime) - } else if !yym2217 && z.IsJSONHandle() { + } else if !yym2220 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.StartTime) } else { z.DecFallback(x.StartTime, false) } } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2211++ + if yyhl2211 { + yyb2211 = yyj2211 > l } else { - yyb2208 = r.CheckBreak() + yyb2211 = r.CheckBreak() } - if yyb2208 { + if yyb2211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29648,21 +29704,21 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ContainerStatuses = nil } else { - yyv2218 := &x.ContainerStatuses - yym2219 := z.DecBinary() - _ = yym2219 + yyv2221 := &x.ContainerStatuses + yym2222 := z.DecBinary() + _ = yym2222 if false { } else { - h.decSliceContainerStatus((*[]ContainerStatus)(yyv2218), d) + h.decSliceContainerStatus((*[]ContainerStatus)(yyv2221), d) } } - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2211++ + if yyhl2211 { + yyb2211 = yyj2211 > l } else { - yyb2208 = r.CheckBreak() + yyb2211 = r.CheckBreak() } - if yyb2208 { + if yyb2211 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29673,17 +29729,17 @@ func (x *PodStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.QOSClass = PodQOSClass(r.DecodeString()) } for { - yyj2208++ - if yyhl2208 { - yyb2208 = yyj2208 > l + yyj2211++ + if yyhl2211 { + yyb2211 = yyj2211 > l } else { - yyb2208 = r.CheckBreak() + yyb2211 = r.CheckBreak() } - if yyb2208 { + if yyb2211 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2208-1, "") + z.DecStructFieldNotFound(yyj2211-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29695,118 +29751,118 @@ func (x *PodStatusResult) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2221 := z.EncBinary() - _ = yym2221 + yym2224 := z.EncBinary() + _ = yym2224 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2222 := !z.EncBinary() - yy2arr2222 := z.EncBasicHandle().StructToArray - var yyq2222 [4]bool - _, _, _ = yysep2222, yyq2222, yy2arr2222 - const yyr2222 bool = false - yyq2222[0] = x.Kind != "" - yyq2222[1] = x.APIVersion != "" - yyq2222[2] = true - yyq2222[3] = true - var yynn2222 int - if yyr2222 || yy2arr2222 { + yysep2225 := !z.EncBinary() + yy2arr2225 := z.EncBasicHandle().StructToArray + var yyq2225 [4]bool + _, _, _ = yysep2225, yyq2225, yy2arr2225 + const yyr2225 bool = false + yyq2225[0] = x.Kind != "" + yyq2225[1] = x.APIVersion != "" + yyq2225[2] = true + yyq2225[3] = true + var yynn2225 int + if yyr2225 || yy2arr2225 { r.EncodeArrayStart(4) } else { - yynn2222 = 0 - for _, b := range yyq2222 { + yynn2225 = 0 + for _, b := range yyq2225 { if b { - yynn2222++ + yynn2225++ } } - r.EncodeMapStart(yynn2222) - yynn2222 = 0 + r.EncodeMapStart(yynn2225) + yynn2225 = 0 } - if yyr2222 || yy2arr2222 { + if yyr2225 || yy2arr2225 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2222[0] { - yym2224 := z.EncBinary() - _ = yym2224 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2222[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2225 := z.EncBinary() - _ = yym2225 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2222 || yy2arr2222 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2222[1] { + if yyq2225[0] { yym2227 := z.EncBinary() _ = yym2227 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2222[1] { + if yyq2225[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2228 := z.EncBinary() _ = yym2228 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2225 || yy2arr2225 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2225[1] { + yym2230 := z.EncBinary() + _ = yym2230 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2225[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2231 := z.EncBinary() + _ = yym2231 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2222 || yy2arr2222 { + if yyr2225 || yy2arr2225 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2222[2] { - yy2230 := &x.ObjectMeta - yy2230.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2222[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2231 := &x.ObjectMeta - yy2231.CodecEncodeSelf(e) - } - } - if yyr2222 || yy2arr2222 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2222[3] { - yy2233 := &x.Status + if yyq2225[2] { + yy2233 := &x.ObjectMeta yy2233.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2222[3] { + if yyq2225[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2234 := &x.Status + yy2234 := &x.ObjectMeta yy2234.CodecEncodeSelf(e) } } - if yyr2222 || yy2arr2222 { + if yyr2225 || yy2arr2225 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2225[3] { + yy2236 := &x.Status + yy2236.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2225[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2237 := &x.Status + yy2237.CodecEncodeSelf(e) + } + } + if yyr2225 || yy2arr2225 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -29819,25 +29875,25 @@ func (x *PodStatusResult) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2235 := z.DecBinary() - _ = yym2235 + yym2238 := z.DecBinary() + _ = yym2238 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2236 := r.ContainerType() - if yyct2236 == codecSelferValueTypeMap1234 { - yyl2236 := r.ReadMapStart() - if yyl2236 == 0 { + yyct2239 := r.ContainerType() + if yyct2239 == codecSelferValueTypeMap1234 { + yyl2239 := r.ReadMapStart() + if yyl2239 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2236, d) + x.codecDecodeSelfFromMap(yyl2239, d) } - } else if yyct2236 == codecSelferValueTypeArray1234 { - yyl2236 := r.ReadArrayStart() - if yyl2236 == 0 { + } else if yyct2239 == codecSelferValueTypeArray1234 { + yyl2239 := r.ReadArrayStart() + if yyl2239 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2236, d) + x.codecDecodeSelfFromArray(yyl2239, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -29849,12 +29905,12 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2237Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2237Slc - var yyhl2237 bool = l >= 0 - for yyj2237 := 0; ; yyj2237++ { - if yyhl2237 { - if yyj2237 >= l { + var yys2240Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2240Slc + var yyhl2240 bool = l >= 0 + for yyj2240 := 0; ; yyj2240++ { + if yyhl2240 { + if yyj2240 >= l { break } } else { @@ -29863,10 +29919,10 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2237Slc = r.DecodeBytes(yys2237Slc, true, true) - yys2237 := string(yys2237Slc) + yys2240Slc = r.DecodeBytes(yys2240Slc, true, true) + yys2240 := string(yys2240Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2237 { + switch yys2240 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -29883,20 +29939,20 @@ func (x *PodStatusResult) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2240 := &x.ObjectMeta - yyv2240.CodecDecodeSelf(d) + yyv2243 := &x.ObjectMeta + yyv2243.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2241 := &x.Status - yyv2241.CodecDecodeSelf(d) + yyv2244 := &x.Status + yyv2244.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2237) - } // end switch yys2237 - } // end for yyj2237 + z.DecStructFieldNotFound(-1, yys2240) + } // end switch yys2240 + } // end for yyj2240 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -29904,16 +29960,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2242 int - var yyb2242 bool - var yyhl2242 bool = l >= 0 - yyj2242++ - if yyhl2242 { - yyb2242 = yyj2242 > l + var yyj2245 int + var yyb2245 bool + var yyhl2245 bool = l >= 0 + yyj2245++ + if yyhl2245 { + yyb2245 = yyj2245 > l } else { - yyb2242 = r.CheckBreak() + yyb2245 = r.CheckBreak() } - if yyb2242 { + if yyb2245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29923,13 +29979,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2242++ - if yyhl2242 { - yyb2242 = yyj2242 > l + yyj2245++ + if yyhl2245 { + yyb2245 = yyj2245 > l } else { - yyb2242 = r.CheckBreak() + yyb2245 = r.CheckBreak() } - if yyb2242 { + if yyb2245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29939,13 +29995,13 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2242++ - if yyhl2242 { - yyb2242 = yyj2242 > l + yyj2245++ + if yyhl2245 { + yyb2245 = yyj2245 > l } else { - yyb2242 = r.CheckBreak() + yyb2245 = r.CheckBreak() } - if yyb2242 { + if yyb2245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29953,16 +30009,16 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2245 := &x.ObjectMeta - yyv2245.CodecDecodeSelf(d) + yyv2248 := &x.ObjectMeta + yyv2248.CodecDecodeSelf(d) } - yyj2242++ - if yyhl2242 { - yyb2242 = yyj2242 > l + yyj2245++ + if yyhl2245 { + yyb2245 = yyj2245 > l } else { - yyb2242 = r.CheckBreak() + yyb2245 = r.CheckBreak() } - if yyb2242 { + if yyb2245 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -29970,21 +30026,21 @@ func (x *PodStatusResult) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2246 := &x.Status - yyv2246.CodecDecodeSelf(d) + yyv2249 := &x.Status + yyv2249.CodecDecodeSelf(d) } for { - yyj2242++ - if yyhl2242 { - yyb2242 = yyj2242 > l + yyj2245++ + if yyhl2245 { + yyb2245 = yyj2245 > l } else { - yyb2242 = r.CheckBreak() + yyb2245 = r.CheckBreak() } - if yyb2242 { + if yyb2245 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2242-1, "") + z.DecStructFieldNotFound(yyj2245-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -29996,136 +30052,136 @@ func (x *Pod) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2247 := z.EncBinary() - _ = yym2247 + yym2250 := z.EncBinary() + _ = yym2250 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2248 := !z.EncBinary() - yy2arr2248 := z.EncBasicHandle().StructToArray - var yyq2248 [5]bool - _, _, _ = yysep2248, yyq2248, yy2arr2248 - const yyr2248 bool = false - yyq2248[0] = x.Kind != "" - yyq2248[1] = x.APIVersion != "" - yyq2248[2] = true - yyq2248[3] = true - yyq2248[4] = true - var yynn2248 int - if yyr2248 || yy2arr2248 { + yysep2251 := !z.EncBinary() + yy2arr2251 := z.EncBasicHandle().StructToArray + var yyq2251 [5]bool + _, _, _ = yysep2251, yyq2251, yy2arr2251 + const yyr2251 bool = false + yyq2251[0] = x.Kind != "" + yyq2251[1] = x.APIVersion != "" + yyq2251[2] = true + yyq2251[3] = true + yyq2251[4] = true + var yynn2251 int + if yyr2251 || yy2arr2251 { r.EncodeArrayStart(5) } else { - yynn2248 = 0 - for _, b := range yyq2248 { + yynn2251 = 0 + for _, b := range yyq2251 { if b { - yynn2248++ + yynn2251++ } } - r.EncodeMapStart(yynn2248) - yynn2248 = 0 + r.EncodeMapStart(yynn2251) + yynn2251 = 0 } - if yyr2248 || yy2arr2248 { + if yyr2251 || yy2arr2251 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2248[0] { - yym2250 := z.EncBinary() - _ = yym2250 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2248[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2251 := z.EncBinary() - _ = yym2251 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2248 || yy2arr2248 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2248[1] { + if yyq2251[0] { yym2253 := z.EncBinary() _ = yym2253 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2248[1] { + if yyq2251[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2254 := z.EncBinary() _ = yym2254 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2251 || yy2arr2251 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2251[1] { + yym2256 := z.EncBinary() + _ = yym2256 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2251[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2257 := z.EncBinary() + _ = yym2257 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2248 || yy2arr2248 { + if yyr2251 || yy2arr2251 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2248[2] { - yy2256 := &x.ObjectMeta - yy2256.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2248[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2257 := &x.ObjectMeta - yy2257.CodecEncodeSelf(e) - } - } - if yyr2248 || yy2arr2248 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2248[3] { - yy2259 := &x.Spec + if yyq2251[2] { + yy2259 := &x.ObjectMeta yy2259.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2248[3] { + if yyq2251[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2260 := &x.Spec + yy2260 := &x.ObjectMeta yy2260.CodecEncodeSelf(e) } } - if yyr2248 || yy2arr2248 { + if yyr2251 || yy2arr2251 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2248[4] { - yy2262 := &x.Status + if yyq2251[3] { + yy2262 := &x.Spec yy2262.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2248[4] { + if yyq2251[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) + r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2263 := &x.Status + yy2263 := &x.Spec yy2263.CodecEncodeSelf(e) } } - if yyr2248 || yy2arr2248 { + if yyr2251 || yy2arr2251 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2251[4] { + yy2265 := &x.Status + yy2265.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2251[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2266 := &x.Status + yy2266.CodecEncodeSelf(e) + } + } + if yyr2251 || yy2arr2251 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30138,25 +30194,25 @@ func (x *Pod) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2264 := z.DecBinary() - _ = yym2264 + yym2267 := z.DecBinary() + _ = yym2267 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2265 := r.ContainerType() - if yyct2265 == codecSelferValueTypeMap1234 { - yyl2265 := r.ReadMapStart() - if yyl2265 == 0 { + yyct2268 := r.ContainerType() + if yyct2268 == codecSelferValueTypeMap1234 { + yyl2268 := r.ReadMapStart() + if yyl2268 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2265, d) + x.codecDecodeSelfFromMap(yyl2268, d) } - } else if yyct2265 == codecSelferValueTypeArray1234 { - yyl2265 := r.ReadArrayStart() - if yyl2265 == 0 { + } else if yyct2268 == codecSelferValueTypeArray1234 { + yyl2268 := r.ReadArrayStart() + if yyl2268 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2265, d) + x.codecDecodeSelfFromArray(yyl2268, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30168,12 +30224,12 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2266Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2266Slc - var yyhl2266 bool = l >= 0 - for yyj2266 := 0; ; yyj2266++ { - if yyhl2266 { - if yyj2266 >= l { + var yys2269Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2269Slc + var yyhl2269 bool = l >= 0 + for yyj2269 := 0; ; yyj2269++ { + if yyhl2269 { + if yyj2269 >= l { break } } else { @@ -30182,10 +30238,10 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2266Slc = r.DecodeBytes(yys2266Slc, true, true) - yys2266 := string(yys2266Slc) + yys2269Slc = r.DecodeBytes(yys2269Slc, true, true) + yys2269 := string(yys2269Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2266 { + switch yys2269 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30202,27 +30258,27 @@ func (x *Pod) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2269 := &x.ObjectMeta - yyv2269.CodecDecodeSelf(d) + yyv2272 := &x.ObjectMeta + yyv2272.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2270 := &x.Spec - yyv2270.CodecDecodeSelf(d) + yyv2273 := &x.Spec + yyv2273.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2271 := &x.Status - yyv2271.CodecDecodeSelf(d) + yyv2274 := &x.Status + yyv2274.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2266) - } // end switch yys2266 - } // end for yyj2266 + z.DecStructFieldNotFound(-1, yys2269) + } // end switch yys2269 + } // end for yyj2269 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30230,16 +30286,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2272 int - var yyb2272 bool - var yyhl2272 bool = l >= 0 - yyj2272++ - if yyhl2272 { - yyb2272 = yyj2272 > l + var yyj2275 int + var yyb2275 bool + var yyhl2275 bool = l >= 0 + yyj2275++ + if yyhl2275 { + yyb2275 = yyj2275 > l } else { - yyb2272 = r.CheckBreak() + yyb2275 = r.CheckBreak() } - if yyb2272 { + if yyb2275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30249,13 +30305,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2272++ - if yyhl2272 { - yyb2272 = yyj2272 > l + yyj2275++ + if yyhl2275 { + yyb2275 = yyj2275 > l } else { - yyb2272 = r.CheckBreak() + yyb2275 = r.CheckBreak() } - if yyb2272 { + if yyb2275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30265,13 +30321,13 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2272++ - if yyhl2272 { - yyb2272 = yyj2272 > l + yyj2275++ + if yyhl2275 { + yyb2275 = yyj2275 > l } else { - yyb2272 = r.CheckBreak() + yyb2275 = r.CheckBreak() } - if yyb2272 { + if yyb2275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30279,16 +30335,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2275 := &x.ObjectMeta - yyv2275.CodecDecodeSelf(d) + yyv2278 := &x.ObjectMeta + yyv2278.CodecDecodeSelf(d) } - yyj2272++ - if yyhl2272 { - yyb2272 = yyj2272 > l + yyj2275++ + if yyhl2275 { + yyb2275 = yyj2275 > l } else { - yyb2272 = r.CheckBreak() + yyb2275 = r.CheckBreak() } - if yyb2272 { + if yyb2275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30296,16 +30352,16 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2276 := &x.Spec - yyv2276.CodecDecodeSelf(d) + yyv2279 := &x.Spec + yyv2279.CodecDecodeSelf(d) } - yyj2272++ - if yyhl2272 { - yyb2272 = yyj2272 > l + yyj2275++ + if yyhl2275 { + yyb2275 = yyj2275 > l } else { - yyb2272 = r.CheckBreak() + yyb2275 = r.CheckBreak() } - if yyb2272 { + if yyb2275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30313,21 +30369,21 @@ func (x *Pod) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = PodStatus{} } else { - yyv2277 := &x.Status - yyv2277.CodecDecodeSelf(d) + yyv2280 := &x.Status + yyv2280.CodecDecodeSelf(d) } for { - yyj2272++ - if yyhl2272 { - yyb2272 = yyj2272 > l + yyj2275++ + if yyhl2275 { + yyb2275 = yyj2275 > l } else { - yyb2272 = r.CheckBreak() + yyb2275 = r.CheckBreak() } - if yyb2272 { + if yyb2275 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2272-1, "") + z.DecStructFieldNotFound(yyj2275-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30339,118 +30395,118 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2278 := z.EncBinary() - _ = yym2278 + yym2281 := z.EncBinary() + _ = yym2281 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2279 := !z.EncBinary() - yy2arr2279 := z.EncBasicHandle().StructToArray - var yyq2279 [4]bool - _, _, _ = yysep2279, yyq2279, yy2arr2279 - const yyr2279 bool = false - yyq2279[0] = x.Kind != "" - yyq2279[1] = x.APIVersion != "" - yyq2279[2] = true - var yynn2279 int - if yyr2279 || yy2arr2279 { + yysep2282 := !z.EncBinary() + yy2arr2282 := z.EncBasicHandle().StructToArray + var yyq2282 [4]bool + _, _, _ = yysep2282, yyq2282, yy2arr2282 + const yyr2282 bool = false + yyq2282[0] = x.Kind != "" + yyq2282[1] = x.APIVersion != "" + yyq2282[2] = true + var yynn2282 int + if yyr2282 || yy2arr2282 { r.EncodeArrayStart(4) } else { - yynn2279 = 1 - for _, b := range yyq2279 { + yynn2282 = 1 + for _, b := range yyq2282 { if b { - yynn2279++ + yynn2282++ } } - r.EncodeMapStart(yynn2279) - yynn2279 = 0 + r.EncodeMapStart(yynn2282) + yynn2282 = 0 } - if yyr2279 || yy2arr2279 { + if yyr2282 || yy2arr2282 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2279[0] { - yym2281 := z.EncBinary() - _ = yym2281 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2279[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2282 := z.EncBinary() - _ = yym2282 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2279 || yy2arr2279 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2279[1] { + if yyq2282[0] { yym2284 := z.EncBinary() _ = yym2284 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2279[1] { + if yyq2282[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2285 := z.EncBinary() _ = yym2285 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2282 || yy2arr2282 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2282[1] { + yym2287 := z.EncBinary() + _ = yym2287 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2282[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2288 := z.EncBinary() + _ = yym2288 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2279 || yy2arr2279 { + if yyr2282 || yy2arr2282 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2279[2] { - yy2287 := &x.ListMeta - yym2288 := z.EncBinary() - _ = yym2288 + if yyq2282[2] { + yy2290 := &x.ListMeta + yym2291 := z.EncBinary() + _ = yym2291 if false { - } else if z.HasExtensions() && z.EncExt(yy2287) { + } else if z.HasExtensions() && z.EncExt(yy2290) { } else { - z.EncFallback(yy2287) + z.EncFallback(yy2290) } } else { r.EncodeNil() } } else { - if yyq2279[2] { + if yyq2282[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2289 := &x.ListMeta - yym2290 := z.EncBinary() - _ = yym2290 + yy2292 := &x.ListMeta + yym2293 := z.EncBinary() + _ = yym2293 if false { - } else if z.HasExtensions() && z.EncExt(yy2289) { + } else if z.HasExtensions() && z.EncExt(yy2292) { } else { - z.EncFallback(yy2289) + z.EncFallback(yy2292) } } } - if yyr2279 || yy2arr2279 { + if yyr2282 || yy2arr2282 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2292 := z.EncBinary() - _ = yym2292 + yym2295 := z.EncBinary() + _ = yym2295 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) @@ -30463,15 +30519,15 @@ func (x *PodList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2293 := z.EncBinary() - _ = yym2293 + yym2296 := z.EncBinary() + _ = yym2296 if false { } else { h.encSlicePod(([]Pod)(x.Items), e) } } } - if yyr2279 || yy2arr2279 { + if yyr2282 || yy2arr2282 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30484,25 +30540,25 @@ func (x *PodList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2294 := z.DecBinary() - _ = yym2294 + yym2297 := z.DecBinary() + _ = yym2297 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2295 := r.ContainerType() - if yyct2295 == codecSelferValueTypeMap1234 { - yyl2295 := r.ReadMapStart() - if yyl2295 == 0 { + yyct2298 := r.ContainerType() + if yyct2298 == codecSelferValueTypeMap1234 { + yyl2298 := r.ReadMapStart() + if yyl2298 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2295, d) + x.codecDecodeSelfFromMap(yyl2298, d) } - } else if yyct2295 == codecSelferValueTypeArray1234 { - yyl2295 := r.ReadArrayStart() - if yyl2295 == 0 { + } else if yyct2298 == codecSelferValueTypeArray1234 { + yyl2298 := r.ReadArrayStart() + if yyl2298 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2295, d) + x.codecDecodeSelfFromArray(yyl2298, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30514,12 +30570,12 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2296Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2296Slc - var yyhl2296 bool = l >= 0 - for yyj2296 := 0; ; yyj2296++ { - if yyhl2296 { - if yyj2296 >= l { + var yys2299Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2299Slc + var yyhl2299 bool = l >= 0 + for yyj2299 := 0; ; yyj2299++ { + if yyhl2299 { + if yyj2299 >= l { break } } else { @@ -30528,10 +30584,10 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2296Slc = r.DecodeBytes(yys2296Slc, true, true) - yys2296 := string(yys2296Slc) + yys2299Slc = r.DecodeBytes(yys2299Slc, true, true) + yys2299 := string(yys2299Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2296 { + switch yys2299 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -30548,31 +30604,31 @@ func (x *PodList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2299 := &x.ListMeta - yym2300 := z.DecBinary() - _ = yym2300 + yyv2302 := &x.ListMeta + yym2303 := z.DecBinary() + _ = yym2303 if false { - } else if z.HasExtensions() && z.DecExt(yyv2299) { + } else if z.HasExtensions() && z.DecExt(yyv2302) { } else { - z.DecFallback(yyv2299, false) + z.DecFallback(yyv2302, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2301 := &x.Items - yym2302 := z.DecBinary() - _ = yym2302 + yyv2304 := &x.Items + yym2305 := z.DecBinary() + _ = yym2305 if false { } else { - h.decSlicePod((*[]Pod)(yyv2301), d) + h.decSlicePod((*[]Pod)(yyv2304), d) } } default: - z.DecStructFieldNotFound(-1, yys2296) - } // end switch yys2296 - } // end for yyj2296 + z.DecStructFieldNotFound(-1, yys2299) + } // end switch yys2299 + } // end for yyj2299 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30580,16 +30636,16 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2303 int - var yyb2303 bool - var yyhl2303 bool = l >= 0 - yyj2303++ - if yyhl2303 { - yyb2303 = yyj2303 > l + var yyj2306 int + var yyb2306 bool + var yyhl2306 bool = l >= 0 + yyj2306++ + if yyhl2306 { + yyb2306 = yyj2306 > l } else { - yyb2303 = r.CheckBreak() + yyb2306 = r.CheckBreak() } - if yyb2303 { + if yyb2306 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30599,13 +30655,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2303++ - if yyhl2303 { - yyb2303 = yyj2303 > l + yyj2306++ + if yyhl2306 { + yyb2306 = yyj2306 > l } else { - yyb2303 = r.CheckBreak() + yyb2306 = r.CheckBreak() } - if yyb2303 { + if yyb2306 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30615,13 +30671,13 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2303++ - if yyhl2303 { - yyb2303 = yyj2303 > l + yyj2306++ + if yyhl2306 { + yyb2306 = yyj2306 > l } else { - yyb2303 = r.CheckBreak() + yyb2306 = r.CheckBreak() } - if yyb2303 { + if yyb2306 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30629,22 +30685,22 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2306 := &x.ListMeta - yym2307 := z.DecBinary() - _ = yym2307 + yyv2309 := &x.ListMeta + yym2310 := z.DecBinary() + _ = yym2310 if false { - } else if z.HasExtensions() && z.DecExt(yyv2306) { + } else if z.HasExtensions() && z.DecExt(yyv2309) { } else { - z.DecFallback(yyv2306, false) + z.DecFallback(yyv2309, false) } } - yyj2303++ - if yyhl2303 { - yyb2303 = yyj2303 > l + yyj2306++ + if yyhl2306 { + yyb2306 = yyj2306 > l } else { - yyb2303 = r.CheckBreak() + yyb2306 = r.CheckBreak() } - if yyb2303 { + if yyb2306 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30652,26 +30708,26 @@ func (x *PodList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2308 := &x.Items - yym2309 := z.DecBinary() - _ = yym2309 + yyv2311 := &x.Items + yym2312 := z.DecBinary() + _ = yym2312 if false { } else { - h.decSlicePod((*[]Pod)(yyv2308), d) + h.decSlicePod((*[]Pod)(yyv2311), d) } } for { - yyj2303++ - if yyhl2303 { - yyb2303 = yyj2303 > l + yyj2306++ + if yyhl2306 { + yyb2306 = yyj2306 > l } else { - yyb2303 = r.CheckBreak() + yyb2306 = r.CheckBreak() } - if yyb2303 { + if yyb2306 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2303-1, "") + z.DecStructFieldNotFound(yyj2306-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30683,66 +30739,66 @@ func (x *PodTemplateSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2310 := z.EncBinary() - _ = yym2310 + yym2313 := z.EncBinary() + _ = yym2313 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2311 := !z.EncBinary() - yy2arr2311 := z.EncBasicHandle().StructToArray - var yyq2311 [2]bool - _, _, _ = yysep2311, yyq2311, yy2arr2311 - const yyr2311 bool = false - yyq2311[0] = true - yyq2311[1] = true - var yynn2311 int - if yyr2311 || yy2arr2311 { + yysep2314 := !z.EncBinary() + yy2arr2314 := z.EncBasicHandle().StructToArray + var yyq2314 [2]bool + _, _, _ = yysep2314, yyq2314, yy2arr2314 + const yyr2314 bool = false + yyq2314[0] = true + yyq2314[1] = true + var yynn2314 int + if yyr2314 || yy2arr2314 { r.EncodeArrayStart(2) } else { - yynn2311 = 0 - for _, b := range yyq2311 { + yynn2314 = 0 + for _, b := range yyq2314 { if b { - yynn2311++ + yynn2314++ } } - r.EncodeMapStart(yynn2311) - yynn2311 = 0 + r.EncodeMapStart(yynn2314) + yynn2314 = 0 } - if yyr2311 || yy2arr2311 { + if yyr2314 || yy2arr2314 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2311[0] { - yy2313 := &x.ObjectMeta - yy2313.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2311[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2314 := &x.ObjectMeta - yy2314.CodecEncodeSelf(e) - } - } - if yyr2311 || yy2arr2311 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2311[1] { - yy2316 := &x.Spec + if yyq2314[0] { + yy2316 := &x.ObjectMeta yy2316.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2311[1] { + if yyq2314[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2317 := &x.Spec + yy2317 := &x.ObjectMeta yy2317.CodecEncodeSelf(e) } } - if yyr2311 || yy2arr2311 { + if yyr2314 || yy2arr2314 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2314[1] { + yy2319 := &x.Spec + yy2319.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2314[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2320 := &x.Spec + yy2320.CodecEncodeSelf(e) + } + } + if yyr2314 || yy2arr2314 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -30755,25 +30811,25 @@ func (x *PodTemplateSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2318 := z.DecBinary() - _ = yym2318 + yym2321 := z.DecBinary() + _ = yym2321 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2319 := r.ContainerType() - if yyct2319 == codecSelferValueTypeMap1234 { - yyl2319 := r.ReadMapStart() - if yyl2319 == 0 { + yyct2322 := r.ContainerType() + if yyct2322 == codecSelferValueTypeMap1234 { + yyl2322 := r.ReadMapStart() + if yyl2322 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2319, d) + x.codecDecodeSelfFromMap(yyl2322, d) } - } else if yyct2319 == codecSelferValueTypeArray1234 { - yyl2319 := r.ReadArrayStart() - if yyl2319 == 0 { + } else if yyct2322 == codecSelferValueTypeArray1234 { + yyl2322 := r.ReadArrayStart() + if yyl2322 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2319, d) + x.codecDecodeSelfFromArray(yyl2322, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -30785,12 +30841,12 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2320Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2320Slc - var yyhl2320 bool = l >= 0 - for yyj2320 := 0; ; yyj2320++ { - if yyhl2320 { - if yyj2320 >= l { + var yys2323Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2323Slc + var yyhl2323 bool = l >= 0 + for yyj2323 := 0; ; yyj2323++ { + if yyhl2323 { + if yyj2323 >= l { break } } else { @@ -30799,28 +30855,28 @@ func (x *PodTemplateSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2320Slc = r.DecodeBytes(yys2320Slc, true, true) - yys2320 := string(yys2320Slc) + yys2323Slc = r.DecodeBytes(yys2323Slc, true, true) + yys2323 := string(yys2323Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2320 { + switch yys2323 { case "metadata": if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2321 := &x.ObjectMeta - yyv2321.CodecDecodeSelf(d) + yyv2324 := &x.ObjectMeta + yyv2324.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2322 := &x.Spec - yyv2322.CodecDecodeSelf(d) + yyv2325 := &x.Spec + yyv2325.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2320) - } // end switch yys2320 - } // end for yyj2320 + z.DecStructFieldNotFound(-1, yys2323) + } // end switch yys2323 + } // end for yyj2323 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -30828,16 +30884,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2323 int - var yyb2323 bool - var yyhl2323 bool = l >= 0 - yyj2323++ - if yyhl2323 { - yyb2323 = yyj2323 > l + var yyj2326 int + var yyb2326 bool + var yyhl2326 bool = l >= 0 + yyj2326++ + if yyhl2326 { + yyb2326 = yyj2326 > l } else { - yyb2323 = r.CheckBreak() + yyb2326 = r.CheckBreak() } - if yyb2323 { + if yyb2326 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30845,16 +30901,16 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2324 := &x.ObjectMeta - yyv2324.CodecDecodeSelf(d) + yyv2327 := &x.ObjectMeta + yyv2327.CodecDecodeSelf(d) } - yyj2323++ - if yyhl2323 { - yyb2323 = yyj2323 > l + yyj2326++ + if yyhl2326 { + yyb2326 = yyj2326 > l } else { - yyb2323 = r.CheckBreak() + yyb2326 = r.CheckBreak() } - if yyb2323 { + if yyb2326 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -30862,21 +30918,21 @@ func (x *PodTemplateSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Spec = PodSpec{} } else { - yyv2325 := &x.Spec - yyv2325.CodecDecodeSelf(d) + yyv2328 := &x.Spec + yyv2328.CodecDecodeSelf(d) } for { - yyj2323++ - if yyhl2323 { - yyb2323 = yyj2323 > l + yyj2326++ + if yyhl2326 { + yyb2326 = yyj2326 > l } else { - yyb2323 = r.CheckBreak() + yyb2326 = r.CheckBreak() } - if yyb2323 { + if yyb2326 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2323-1, "") + z.DecStructFieldNotFound(yyj2326-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -30888,118 +30944,118 @@ func (x *PodTemplate) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2326 := z.EncBinary() - _ = yym2326 + yym2329 := z.EncBinary() + _ = yym2329 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2327 := !z.EncBinary() - yy2arr2327 := z.EncBasicHandle().StructToArray - var yyq2327 [4]bool - _, _, _ = yysep2327, yyq2327, yy2arr2327 - const yyr2327 bool = false - yyq2327[0] = x.Kind != "" - yyq2327[1] = x.APIVersion != "" - yyq2327[2] = true - yyq2327[3] = true - var yynn2327 int - if yyr2327 || yy2arr2327 { + yysep2330 := !z.EncBinary() + yy2arr2330 := z.EncBasicHandle().StructToArray + var yyq2330 [4]bool + _, _, _ = yysep2330, yyq2330, yy2arr2330 + const yyr2330 bool = false + yyq2330[0] = x.Kind != "" + yyq2330[1] = x.APIVersion != "" + yyq2330[2] = true + yyq2330[3] = true + var yynn2330 int + if yyr2330 || yy2arr2330 { r.EncodeArrayStart(4) } else { - yynn2327 = 0 - for _, b := range yyq2327 { + yynn2330 = 0 + for _, b := range yyq2330 { if b { - yynn2327++ + yynn2330++ } } - r.EncodeMapStart(yynn2327) - yynn2327 = 0 + r.EncodeMapStart(yynn2330) + yynn2330 = 0 } - if yyr2327 || yy2arr2327 { + if yyr2330 || yy2arr2330 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2327[0] { - yym2329 := z.EncBinary() - _ = yym2329 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2327[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2330 := z.EncBinary() - _ = yym2330 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2327 || yy2arr2327 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2327[1] { + if yyq2330[0] { yym2332 := z.EncBinary() _ = yym2332 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2327[1] { + if yyq2330[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2333 := z.EncBinary() _ = yym2333 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2330 || yy2arr2330 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2330[1] { + yym2335 := z.EncBinary() + _ = yym2335 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2330[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2336 := z.EncBinary() + _ = yym2336 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2327 || yy2arr2327 { + if yyr2330 || yy2arr2330 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2327[2] { - yy2335 := &x.ObjectMeta - yy2335.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2327[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2336 := &x.ObjectMeta - yy2336.CodecEncodeSelf(e) - } - } - if yyr2327 || yy2arr2327 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2327[3] { - yy2338 := &x.Template + if yyq2330[2] { + yy2338 := &x.ObjectMeta yy2338.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2327[3] { + if yyq2330[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("template")) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2339 := &x.Template + yy2339 := &x.ObjectMeta yy2339.CodecEncodeSelf(e) } } - if yyr2327 || yy2arr2327 { + if yyr2330 || yy2arr2330 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2330[3] { + yy2341 := &x.Template + yy2341.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2330[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("template")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2342 := &x.Template + yy2342.CodecEncodeSelf(e) + } + } + if yyr2330 || yy2arr2330 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31012,25 +31068,25 @@ func (x *PodTemplate) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2340 := z.DecBinary() - _ = yym2340 + yym2343 := z.DecBinary() + _ = yym2343 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2341 := r.ContainerType() - if yyct2341 == codecSelferValueTypeMap1234 { - yyl2341 := r.ReadMapStart() - if yyl2341 == 0 { + yyct2344 := r.ContainerType() + if yyct2344 == codecSelferValueTypeMap1234 { + yyl2344 := r.ReadMapStart() + if yyl2344 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2341, d) + x.codecDecodeSelfFromMap(yyl2344, d) } - } else if yyct2341 == codecSelferValueTypeArray1234 { - yyl2341 := r.ReadArrayStart() - if yyl2341 == 0 { + } else if yyct2344 == codecSelferValueTypeArray1234 { + yyl2344 := r.ReadArrayStart() + if yyl2344 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2341, d) + x.codecDecodeSelfFromArray(yyl2344, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31042,12 +31098,12 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2342Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2342Slc - var yyhl2342 bool = l >= 0 - for yyj2342 := 0; ; yyj2342++ { - if yyhl2342 { - if yyj2342 >= l { + var yys2345Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2345Slc + var yyhl2345 bool = l >= 0 + for yyj2345 := 0; ; yyj2345++ { + if yyhl2345 { + if yyj2345 >= l { break } } else { @@ -31056,10 +31112,10 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2342Slc = r.DecodeBytes(yys2342Slc, true, true) - yys2342 := string(yys2342Slc) + yys2345Slc = r.DecodeBytes(yys2345Slc, true, true) + yys2345 := string(yys2345Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2342 { + switch yys2345 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31076,20 +31132,20 @@ func (x *PodTemplate) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2345 := &x.ObjectMeta - yyv2345.CodecDecodeSelf(d) + yyv2348 := &x.ObjectMeta + yyv2348.CodecDecodeSelf(d) } case "template": if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv2346 := &x.Template - yyv2346.CodecDecodeSelf(d) + yyv2349 := &x.Template + yyv2349.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2342) - } // end switch yys2342 - } // end for yyj2342 + z.DecStructFieldNotFound(-1, yys2345) + } // end switch yys2345 + } // end for yyj2345 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31097,16 +31153,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2347 int - var yyb2347 bool - var yyhl2347 bool = l >= 0 - yyj2347++ - if yyhl2347 { - yyb2347 = yyj2347 > l + var yyj2350 int + var yyb2350 bool + var yyhl2350 bool = l >= 0 + yyj2350++ + if yyhl2350 { + yyb2350 = yyj2350 > l } else { - yyb2347 = r.CheckBreak() + yyb2350 = r.CheckBreak() } - if yyb2347 { + if yyb2350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31116,13 +31172,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2347++ - if yyhl2347 { - yyb2347 = yyj2347 > l + yyj2350++ + if yyhl2350 { + yyb2350 = yyj2350 > l } else { - yyb2347 = r.CheckBreak() + yyb2350 = r.CheckBreak() } - if yyb2347 { + if yyb2350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31132,13 +31188,13 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2347++ - if yyhl2347 { - yyb2347 = yyj2347 > l + yyj2350++ + if yyhl2350 { + yyb2350 = yyj2350 > l } else { - yyb2347 = r.CheckBreak() + yyb2350 = r.CheckBreak() } - if yyb2347 { + if yyb2350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31146,16 +31202,16 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2350 := &x.ObjectMeta - yyv2350.CodecDecodeSelf(d) + yyv2353 := &x.ObjectMeta + yyv2353.CodecDecodeSelf(d) } - yyj2347++ - if yyhl2347 { - yyb2347 = yyj2347 > l + yyj2350++ + if yyhl2350 { + yyb2350 = yyj2350 > l } else { - yyb2347 = r.CheckBreak() + yyb2350 = r.CheckBreak() } - if yyb2347 { + if yyb2350 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31163,21 +31219,21 @@ func (x *PodTemplate) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Template = PodTemplateSpec{} } else { - yyv2351 := &x.Template - yyv2351.CodecDecodeSelf(d) + yyv2354 := &x.Template + yyv2354.CodecDecodeSelf(d) } for { - yyj2347++ - if yyhl2347 { - yyb2347 = yyj2347 > l + yyj2350++ + if yyhl2350 { + yyb2350 = yyj2350 > l } else { - yyb2347 = r.CheckBreak() + yyb2350 = r.CheckBreak() } - if yyb2347 { + if yyb2350 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2347-1, "") + z.DecStructFieldNotFound(yyj2350-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31189,118 +31245,118 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2352 := z.EncBinary() - _ = yym2352 + yym2355 := z.EncBinary() + _ = yym2355 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2353 := !z.EncBinary() - yy2arr2353 := z.EncBasicHandle().StructToArray - var yyq2353 [4]bool - _, _, _ = yysep2353, yyq2353, yy2arr2353 - const yyr2353 bool = false - yyq2353[0] = x.Kind != "" - yyq2353[1] = x.APIVersion != "" - yyq2353[2] = true - var yynn2353 int - if yyr2353 || yy2arr2353 { + yysep2356 := !z.EncBinary() + yy2arr2356 := z.EncBasicHandle().StructToArray + var yyq2356 [4]bool + _, _, _ = yysep2356, yyq2356, yy2arr2356 + const yyr2356 bool = false + yyq2356[0] = x.Kind != "" + yyq2356[1] = x.APIVersion != "" + yyq2356[2] = true + var yynn2356 int + if yyr2356 || yy2arr2356 { r.EncodeArrayStart(4) } else { - yynn2353 = 1 - for _, b := range yyq2353 { + yynn2356 = 1 + for _, b := range yyq2356 { if b { - yynn2353++ + yynn2356++ } } - r.EncodeMapStart(yynn2353) - yynn2353 = 0 + r.EncodeMapStart(yynn2356) + yynn2356 = 0 } - if yyr2353 || yy2arr2353 { + if yyr2356 || yy2arr2356 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2353[0] { - yym2355 := z.EncBinary() - _ = yym2355 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2353[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2356 := z.EncBinary() - _ = yym2356 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2353 || yy2arr2353 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2353[1] { + if yyq2356[0] { yym2358 := z.EncBinary() _ = yym2358 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2353[1] { + if yyq2356[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2359 := z.EncBinary() _ = yym2359 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2356 || yy2arr2356 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2356[1] { + yym2361 := z.EncBinary() + _ = yym2361 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2356[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2362 := z.EncBinary() + _ = yym2362 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2353 || yy2arr2353 { + if yyr2356 || yy2arr2356 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2353[2] { - yy2361 := &x.ListMeta - yym2362 := z.EncBinary() - _ = yym2362 + if yyq2356[2] { + yy2364 := &x.ListMeta + yym2365 := z.EncBinary() + _ = yym2365 if false { - } else if z.HasExtensions() && z.EncExt(yy2361) { + } else if z.HasExtensions() && z.EncExt(yy2364) { } else { - z.EncFallback(yy2361) + z.EncFallback(yy2364) } } else { r.EncodeNil() } } else { - if yyq2353[2] { + if yyq2356[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2363 := &x.ListMeta - yym2364 := z.EncBinary() - _ = yym2364 + yy2366 := &x.ListMeta + yym2367 := z.EncBinary() + _ = yym2367 if false { - } else if z.HasExtensions() && z.EncExt(yy2363) { + } else if z.HasExtensions() && z.EncExt(yy2366) { } else { - z.EncFallback(yy2363) + z.EncFallback(yy2366) } } } - if yyr2353 || yy2arr2353 { + if yyr2356 || yy2arr2356 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2366 := z.EncBinary() - _ = yym2366 + yym2369 := z.EncBinary() + _ = yym2369 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) @@ -31313,15 +31369,15 @@ func (x *PodTemplateList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2367 := z.EncBinary() - _ = yym2367 + yym2370 := z.EncBinary() + _ = yym2370 if false { } else { h.encSlicePodTemplate(([]PodTemplate)(x.Items), e) } } } - if yyr2353 || yy2arr2353 { + if yyr2356 || yy2arr2356 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31334,25 +31390,25 @@ func (x *PodTemplateList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2368 := z.DecBinary() - _ = yym2368 + yym2371 := z.DecBinary() + _ = yym2371 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2369 := r.ContainerType() - if yyct2369 == codecSelferValueTypeMap1234 { - yyl2369 := r.ReadMapStart() - if yyl2369 == 0 { + yyct2372 := r.ContainerType() + if yyct2372 == codecSelferValueTypeMap1234 { + yyl2372 := r.ReadMapStart() + if yyl2372 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2369, d) + x.codecDecodeSelfFromMap(yyl2372, d) } - } else if yyct2369 == codecSelferValueTypeArray1234 { - yyl2369 := r.ReadArrayStart() - if yyl2369 == 0 { + } else if yyct2372 == codecSelferValueTypeArray1234 { + yyl2372 := r.ReadArrayStart() + if yyl2372 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2369, d) + x.codecDecodeSelfFromArray(yyl2372, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31364,12 +31420,12 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2370Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2370Slc - var yyhl2370 bool = l >= 0 - for yyj2370 := 0; ; yyj2370++ { - if yyhl2370 { - if yyj2370 >= l { + var yys2373Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2373Slc + var yyhl2373 bool = l >= 0 + for yyj2373 := 0; ; yyj2373++ { + if yyhl2373 { + if yyj2373 >= l { break } } else { @@ -31378,10 +31434,10 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2370Slc = r.DecodeBytes(yys2370Slc, true, true) - yys2370 := string(yys2370Slc) + yys2373Slc = r.DecodeBytes(yys2373Slc, true, true) + yys2373 := string(yys2373Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2370 { + switch yys2373 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -31398,31 +31454,31 @@ func (x *PodTemplateList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2373 := &x.ListMeta - yym2374 := z.DecBinary() - _ = yym2374 + yyv2376 := &x.ListMeta + yym2377 := z.DecBinary() + _ = yym2377 if false { - } else if z.HasExtensions() && z.DecExt(yyv2373) { + } else if z.HasExtensions() && z.DecExt(yyv2376) { } else { - z.DecFallback(yyv2373, false) + z.DecFallback(yyv2376, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2375 := &x.Items - yym2376 := z.DecBinary() - _ = yym2376 + yyv2378 := &x.Items + yym2379 := z.DecBinary() + _ = yym2379 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2375), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv2378), d) } } default: - z.DecStructFieldNotFound(-1, yys2370) - } // end switch yys2370 - } // end for yyj2370 + z.DecStructFieldNotFound(-1, yys2373) + } // end switch yys2373 + } // end for yyj2373 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31430,16 +31486,16 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2377 int - var yyb2377 bool - var yyhl2377 bool = l >= 0 - yyj2377++ - if yyhl2377 { - yyb2377 = yyj2377 > l + var yyj2380 int + var yyb2380 bool + var yyhl2380 bool = l >= 0 + yyj2380++ + if yyhl2380 { + yyb2380 = yyj2380 > l } else { - yyb2377 = r.CheckBreak() + yyb2380 = r.CheckBreak() } - if yyb2377 { + if yyb2380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31449,13 +31505,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj2377++ - if yyhl2377 { - yyb2377 = yyj2377 > l + yyj2380++ + if yyhl2380 { + yyb2380 = yyj2380 > l } else { - yyb2377 = r.CheckBreak() + yyb2380 = r.CheckBreak() } - if yyb2377 { + if yyb2380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31465,13 +31521,13 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj2377++ - if yyhl2377 { - yyb2377 = yyj2377 > l + yyj2380++ + if yyhl2380 { + yyb2380 = yyj2380 > l } else { - yyb2377 = r.CheckBreak() + yyb2380 = r.CheckBreak() } - if yyb2377 { + if yyb2380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31479,22 +31535,22 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2380 := &x.ListMeta - yym2381 := z.DecBinary() - _ = yym2381 + yyv2383 := &x.ListMeta + yym2384 := z.DecBinary() + _ = yym2384 if false { - } else if z.HasExtensions() && z.DecExt(yyv2380) { + } else if z.HasExtensions() && z.DecExt(yyv2383) { } else { - z.DecFallback(yyv2380, false) + z.DecFallback(yyv2383, false) } } - yyj2377++ - if yyhl2377 { - yyb2377 = yyj2377 > l + yyj2380++ + if yyhl2380 { + yyb2380 = yyj2380 > l } else { - yyb2377 = r.CheckBreak() + yyb2380 = r.CheckBreak() } - if yyb2377 { + if yyb2380 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31502,26 +31558,26 @@ func (x *PodTemplateList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2382 := &x.Items - yym2383 := z.DecBinary() - _ = yym2383 + yyv2385 := &x.Items + yym2386 := z.DecBinary() + _ = yym2386 if false { } else { - h.decSlicePodTemplate((*[]PodTemplate)(yyv2382), d) + h.decSlicePodTemplate((*[]PodTemplate)(yyv2385), d) } } for { - yyj2377++ - if yyhl2377 { - yyb2377 = yyj2377 > l + yyj2380++ + if yyhl2380 { + yyb2380 = yyj2380 > l } else { - yyb2377 = r.CheckBreak() + yyb2380 = r.CheckBreak() } - if yyb2377 { + if yyb2380 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2377-1, "") + z.DecStructFieldNotFound(yyj2380-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31533,73 +31589,73 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2384 := z.EncBinary() - _ = yym2384 + yym2387 := z.EncBinary() + _ = yym2387 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2385 := !z.EncBinary() - yy2arr2385 := z.EncBasicHandle().StructToArray - var yyq2385 [4]bool - _, _, _ = yysep2385, yyq2385, yy2arr2385 - const yyr2385 bool = false - yyq2385[0] = x.Replicas != nil - yyq2385[1] = x.MinReadySeconds != 0 - yyq2385[2] = len(x.Selector) != 0 - yyq2385[3] = x.Template != nil - var yynn2385 int - if yyr2385 || yy2arr2385 { + yysep2388 := !z.EncBinary() + yy2arr2388 := z.EncBasicHandle().StructToArray + var yyq2388 [4]bool + _, _, _ = yysep2388, yyq2388, yy2arr2388 + const yyr2388 bool = false + yyq2388[0] = x.Replicas != nil + yyq2388[1] = x.MinReadySeconds != 0 + yyq2388[2] = len(x.Selector) != 0 + yyq2388[3] = x.Template != nil + var yynn2388 int + if yyr2388 || yy2arr2388 { r.EncodeArrayStart(4) } else { - yynn2385 = 0 - for _, b := range yyq2385 { + yynn2388 = 0 + for _, b := range yyq2388 { if b { - yynn2385++ + yynn2388++ } } - r.EncodeMapStart(yynn2385) - yynn2385 = 0 + r.EncodeMapStart(yynn2388) + yynn2388 = 0 } - if yyr2385 || yy2arr2385 { + if yyr2388 || yy2arr2388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2385[0] { + if yyq2388[0] { if x.Replicas == nil { r.EncodeNil() } else { - yy2387 := *x.Replicas - yym2388 := z.EncBinary() - _ = yym2388 + yy2390 := *x.Replicas + yym2391 := z.EncBinary() + _ = yym2391 if false { } else { - r.EncodeInt(int64(yy2387)) + r.EncodeInt(int64(yy2390)) } } } else { r.EncodeNil() } } else { - if yyq2385[0] { + if yyq2388[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Replicas == nil { r.EncodeNil() } else { - yy2389 := *x.Replicas - yym2390 := z.EncBinary() - _ = yym2390 + yy2392 := *x.Replicas + yym2393 := z.EncBinary() + _ = yym2393 if false { } else { - r.EncodeInt(int64(yy2389)) + r.EncodeInt(int64(yy2392)) } } } } - if yyr2385 || yy2arr2385 { + if yyr2388 || yy2arr2388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2385[1] { - yym2392 := z.EncBinary() - _ = yym2392 + if yyq2388[1] { + yym2395 := z.EncBinary() + _ = yym2395 if false { } else { r.EncodeInt(int64(x.MinReadySeconds)) @@ -31608,26 +31664,26 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2385[1] { + if yyq2388[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("minReadySeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2393 := z.EncBinary() - _ = yym2393 + yym2396 := z.EncBinary() + _ = yym2396 if false { } else { r.EncodeInt(int64(x.MinReadySeconds)) } } } - if yyr2385 || yy2arr2385 { + if yyr2388 || yy2arr2388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2385[2] { + if yyq2388[2] { if x.Selector == nil { r.EncodeNil() } else { - yym2395 := z.EncBinary() - _ = yym2395 + yym2398 := z.EncBinary() + _ = yym2398 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -31637,15 +31693,15 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2385[2] { + if yyq2388[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("selector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Selector == nil { r.EncodeNil() } else { - yym2396 := z.EncBinary() - _ = yym2396 + yym2399 := z.EncBinary() + _ = yym2399 if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) @@ -31653,9 +31709,9 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2385 || yy2arr2385 { + if yyr2388 || yy2arr2388 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2385[3] { + if yyq2388[3] { if x.Template == nil { r.EncodeNil() } else { @@ -31665,7 +31721,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2385[3] { + if yyq2388[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("template")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -31676,7 +31732,7 @@ func (x *ReplicationControllerSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2385 || yy2arr2385 { + if yyr2388 || yy2arr2388 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -31689,25 +31745,25 @@ func (x *ReplicationControllerSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2398 := z.DecBinary() - _ = yym2398 + yym2401 := z.DecBinary() + _ = yym2401 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2399 := r.ContainerType() - if yyct2399 == codecSelferValueTypeMap1234 { - yyl2399 := r.ReadMapStart() - if yyl2399 == 0 { + yyct2402 := r.ContainerType() + if yyct2402 == codecSelferValueTypeMap1234 { + yyl2402 := r.ReadMapStart() + if yyl2402 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2399, d) + x.codecDecodeSelfFromMap(yyl2402, d) } - } else if yyct2399 == codecSelferValueTypeArray1234 { - yyl2399 := r.ReadArrayStart() - if yyl2399 == 0 { + } else if yyct2402 == codecSelferValueTypeArray1234 { + yyl2402 := r.ReadArrayStart() + if yyl2402 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2399, d) + x.codecDecodeSelfFromArray(yyl2402, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -31719,12 +31775,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2400Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2400Slc - var yyhl2400 bool = l >= 0 - for yyj2400 := 0; ; yyj2400++ { - if yyhl2400 { - if yyj2400 >= l { + var yys2403Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2403Slc + var yyhl2403 bool = l >= 0 + for yyj2403 := 0; ; yyj2403++ { + if yyhl2403 { + if yyj2403 >= l { break } } else { @@ -31733,10 +31789,10 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2400Slc = r.DecodeBytes(yys2400Slc, true, true) - yys2400 := string(yys2400Slc) + yys2403Slc = r.DecodeBytes(yys2403Slc, true, true) + yys2403 := string(yys2403Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2400 { + switch yys2403 { case "replicas": if r.TryDecodeAsNil() { if x.Replicas != nil { @@ -31746,8 +31802,8 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if x.Replicas == nil { x.Replicas = new(int32) } - yym2402 := z.DecBinary() - _ = yym2402 + yym2405 := z.DecBinary() + _ = yym2405 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) @@ -31763,12 +31819,12 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2404 := &x.Selector - yym2405 := z.DecBinary() - _ = yym2405 + yyv2407 := &x.Selector + yym2408 := z.DecBinary() + _ = yym2408 if false { } else { - z.F.DecMapStringStringX(yyv2404, false, d) + z.F.DecMapStringStringX(yyv2407, false, d) } } case "template": @@ -31783,9 +31839,9 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromMap(l int, d *codec1978.D x.Template.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2400) - } // end switch yys2400 - } // end for yyj2400 + z.DecStructFieldNotFound(-1, yys2403) + } // end switch yys2403 + } // end for yyj2403 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -31793,16 +31849,16 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2407 int - var yyb2407 bool - var yyhl2407 bool = l >= 0 - yyj2407++ - if yyhl2407 { - yyb2407 = yyj2407 > l + var yyj2410 int + var yyb2410 bool + var yyhl2410 bool = l >= 0 + yyj2410++ + if yyhl2410 { + yyb2410 = yyj2410 > l } else { - yyb2407 = r.CheckBreak() + yyb2410 = r.CheckBreak() } - if yyb2407 { + if yyb2410 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31815,20 +31871,20 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if x.Replicas == nil { x.Replicas = new(int32) } - yym2409 := z.DecBinary() - _ = yym2409 + yym2412 := z.DecBinary() + _ = yym2412 if false { } else { *((*int32)(x.Replicas)) = int32(r.DecodeInt(32)) } } - yyj2407++ - if yyhl2407 { - yyb2407 = yyj2407 > l + yyj2410++ + if yyhl2410 { + yyb2410 = yyj2410 > l } else { - yyb2407 = r.CheckBreak() + yyb2410 = r.CheckBreak() } - if yyb2407 { + if yyb2410 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31838,13 +31894,13 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.MinReadySeconds = int32(r.DecodeInt(32)) } - yyj2407++ - if yyhl2407 { - yyb2407 = yyj2407 > l + yyj2410++ + if yyhl2410 { + yyb2410 = yyj2410 > l } else { - yyb2407 = r.CheckBreak() + yyb2410 = r.CheckBreak() } - if yyb2407 { + if yyb2410 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31852,21 +31908,21 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2411 := &x.Selector - yym2412 := z.DecBinary() - _ = yym2412 + yyv2414 := &x.Selector + yym2415 := z.DecBinary() + _ = yym2415 if false { } else { - z.F.DecMapStringStringX(yyv2411, false, d) + z.F.DecMapStringStringX(yyv2414, false, d) } } - yyj2407++ - if yyhl2407 { - yyb2407 = yyj2407 > l + yyj2410++ + if yyhl2410 { + yyb2410 = yyj2410 > l } else { - yyb2407 = r.CheckBreak() + yyb2410 = r.CheckBreak() } - if yyb2407 { + if yyb2410 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -31882,17 +31938,17 @@ func (x *ReplicationControllerSpec) codecDecodeSelfFromArray(l int, d *codec1978 x.Template.CodecDecodeSelf(d) } for { - yyj2407++ - if yyhl2407 { - yyb2407 = yyj2407 > l + yyj2410++ + if yyhl2410 { + yyb2410 = yyj2410 > l } else { - yyb2407 = r.CheckBreak() + yyb2410 = r.CheckBreak() } - if yyb2407 { + if yyb2410 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2407-1, "") + z.DecStructFieldNotFound(yyj2410-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -31904,38 +31960,38 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2414 := z.EncBinary() - _ = yym2414 + yym2417 := z.EncBinary() + _ = yym2417 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2415 := !z.EncBinary() - yy2arr2415 := z.EncBasicHandle().StructToArray - var yyq2415 [6]bool - _, _, _ = yysep2415, yyq2415, yy2arr2415 - const yyr2415 bool = false - yyq2415[1] = x.FullyLabeledReplicas != 0 - yyq2415[2] = x.ReadyReplicas != 0 - yyq2415[3] = x.AvailableReplicas != 0 - yyq2415[4] = x.ObservedGeneration != 0 - yyq2415[5] = len(x.Conditions) != 0 - var yynn2415 int - if yyr2415 || yy2arr2415 { + yysep2418 := !z.EncBinary() + yy2arr2418 := z.EncBasicHandle().StructToArray + var yyq2418 [6]bool + _, _, _ = yysep2418, yyq2418, yy2arr2418 + const yyr2418 bool = false + yyq2418[1] = x.FullyLabeledReplicas != 0 + yyq2418[2] = x.ReadyReplicas != 0 + yyq2418[3] = x.AvailableReplicas != 0 + yyq2418[4] = x.ObservedGeneration != 0 + yyq2418[5] = len(x.Conditions) != 0 + var yynn2418 int + if yyr2418 || yy2arr2418 { r.EncodeArrayStart(6) } else { - yynn2415 = 1 - for _, b := range yyq2415 { + yynn2418 = 1 + for _, b := range yyq2418 { if b { - yynn2415++ + yynn2418++ } } - r.EncodeMapStart(yynn2415) - yynn2415 = 0 + r.EncodeMapStart(yynn2418) + yynn2418 = 0 } - if yyr2415 || yy2arr2415 { + if yyr2418 || yy2arr2418 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2417 := z.EncBinary() - _ = yym2417 + yym2420 := z.EncBinary() + _ = yym2420 if false { } else { r.EncodeInt(int64(x.Replicas)) @@ -31944,93 +32000,93 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("replicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2418 := z.EncBinary() - _ = yym2418 + yym2421 := z.EncBinary() + _ = yym2421 if false { } else { r.EncodeInt(int64(x.Replicas)) } } - if yyr2415 || yy2arr2415 { + if yyr2418 || yy2arr2418 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[1] { - yym2420 := z.EncBinary() - _ = yym2420 - if false { - } else { - r.EncodeInt(int64(x.FullyLabeledReplicas)) - } - } else { - r.EncodeInt(0) - } - } else { - if yyq2415[1] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("fullyLabeledReplicas")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2421 := z.EncBinary() - _ = yym2421 - if false { - } else { - r.EncodeInt(int64(x.FullyLabeledReplicas)) - } - } - } - if yyr2415 || yy2arr2415 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[2] { + if yyq2418[1] { yym2423 := z.EncBinary() _ = yym2423 if false { } else { - r.EncodeInt(int64(x.ReadyReplicas)) + r.EncodeInt(int64(x.FullyLabeledReplicas)) } } else { r.EncodeInt(0) } } else { - if yyq2415[2] { + if yyq2418[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("readyReplicas")) + r.EncodeString(codecSelferC_UTF81234, string("fullyLabeledReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2424 := z.EncBinary() _ = yym2424 if false { } else { - r.EncodeInt(int64(x.ReadyReplicas)) + r.EncodeInt(int64(x.FullyLabeledReplicas)) } } } - if yyr2415 || yy2arr2415 { + if yyr2418 || yy2arr2418 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[3] { + if yyq2418[2] { yym2426 := z.EncBinary() _ = yym2426 if false { } else { - r.EncodeInt(int64(x.AvailableReplicas)) + r.EncodeInt(int64(x.ReadyReplicas)) } } else { r.EncodeInt(0) } } else { - if yyq2415[3] { + if yyq2418[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("availableReplicas")) + r.EncodeString(codecSelferC_UTF81234, string("readyReplicas")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2427 := z.EncBinary() _ = yym2427 if false { + } else { + r.EncodeInt(int64(x.ReadyReplicas)) + } + } + } + if yyr2418 || yy2arr2418 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2418[3] { + yym2429 := z.EncBinary() + _ = yym2429 + if false { + } else { + r.EncodeInt(int64(x.AvailableReplicas)) + } + } else { + r.EncodeInt(0) + } + } else { + if yyq2418[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("availableReplicas")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2430 := z.EncBinary() + _ = yym2430 + if false { } else { r.EncodeInt(int64(x.AvailableReplicas)) } } } - if yyr2415 || yy2arr2415 { + if yyr2418 || yy2arr2418 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[4] { - yym2429 := z.EncBinary() - _ = yym2429 + if yyq2418[4] { + yym2432 := z.EncBinary() + _ = yym2432 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) @@ -32039,26 +32095,26 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2415[4] { + if yyq2418[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("observedGeneration")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2430 := z.EncBinary() - _ = yym2430 + yym2433 := z.EncBinary() + _ = yym2433 if false { } else { r.EncodeInt(int64(x.ObservedGeneration)) } } } - if yyr2415 || yy2arr2415 { + if yyr2418 || yy2arr2418 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2415[5] { + if yyq2418[5] { if x.Conditions == nil { r.EncodeNil() } else { - yym2432 := z.EncBinary() - _ = yym2432 + yym2435 := z.EncBinary() + _ = yym2435 if false { } else { h.encSliceReplicationControllerCondition(([]ReplicationControllerCondition)(x.Conditions), e) @@ -32068,15 +32124,15 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2415[5] { + if yyq2418[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym2433 := z.EncBinary() - _ = yym2433 + yym2436 := z.EncBinary() + _ = yym2436 if false { } else { h.encSliceReplicationControllerCondition(([]ReplicationControllerCondition)(x.Conditions), e) @@ -32084,7 +32140,7 @@ func (x *ReplicationControllerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2415 || yy2arr2415 { + if yyr2418 || yy2arr2418 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32097,25 +32153,25 @@ func (x *ReplicationControllerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2434 := z.DecBinary() - _ = yym2434 + yym2437 := z.DecBinary() + _ = yym2437 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2435 := r.ContainerType() - if yyct2435 == codecSelferValueTypeMap1234 { - yyl2435 := r.ReadMapStart() - if yyl2435 == 0 { + yyct2438 := r.ContainerType() + if yyct2438 == codecSelferValueTypeMap1234 { + yyl2438 := r.ReadMapStart() + if yyl2438 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2435, d) + x.codecDecodeSelfFromMap(yyl2438, d) } - } else if yyct2435 == codecSelferValueTypeArray1234 { - yyl2435 := r.ReadArrayStart() - if yyl2435 == 0 { + } else if yyct2438 == codecSelferValueTypeArray1234 { + yyl2438 := r.ReadArrayStart() + if yyl2438 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2435, d) + x.codecDecodeSelfFromArray(yyl2438, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32127,12 +32183,12 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2436Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2436Slc - var yyhl2436 bool = l >= 0 - for yyj2436 := 0; ; yyj2436++ { - if yyhl2436 { - if yyj2436 >= l { + var yys2439Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2439Slc + var yyhl2439 bool = l >= 0 + for yyj2439 := 0; ; yyj2439++ { + if yyhl2439 { + if yyj2439 >= l { break } } else { @@ -32141,10 +32197,10 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2436Slc = r.DecodeBytes(yys2436Slc, true, true) - yys2436 := string(yys2436Slc) + yys2439Slc = r.DecodeBytes(yys2439Slc, true, true) + yys2439 := string(yys2439Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2436 { + switch yys2439 { case "replicas": if r.TryDecodeAsNil() { x.Replicas = 0 @@ -32179,18 +32235,18 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromMap(l int, d *codec1978 if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2442 := &x.Conditions - yym2443 := z.DecBinary() - _ = yym2443 + yyv2445 := &x.Conditions + yym2446 := z.DecBinary() + _ = yym2446 if false { } else { - h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2442), d) + h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2445), d) } } default: - z.DecStructFieldNotFound(-1, yys2436) - } // end switch yys2436 - } // end for yyj2436 + z.DecStructFieldNotFound(-1, yys2439) + } // end switch yys2439 + } // end for yyj2439 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32198,16 +32254,16 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2444 int - var yyb2444 bool - var yyhl2444 bool = l >= 0 - yyj2444++ - if yyhl2444 { - yyb2444 = yyj2444 > l + var yyj2447 int + var yyb2447 bool + var yyhl2447 bool = l >= 0 + yyj2447++ + if yyhl2447 { + yyb2447 = yyj2447 > l } else { - yyb2444 = r.CheckBreak() + yyb2447 = r.CheckBreak() } - if yyb2444 { + if yyb2447 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32217,13 +32273,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.Replicas = int32(r.DecodeInt(32)) } - yyj2444++ - if yyhl2444 { - yyb2444 = yyj2444 > l + yyj2447++ + if yyhl2447 { + yyb2447 = yyj2447 > l } else { - yyb2444 = r.CheckBreak() + yyb2447 = r.CheckBreak() } - if yyb2444 { + if yyb2447 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32233,13 +32289,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.FullyLabeledReplicas = int32(r.DecodeInt(32)) } - yyj2444++ - if yyhl2444 { - yyb2444 = yyj2444 > l + yyj2447++ + if yyhl2447 { + yyb2447 = yyj2447 > l } else { - yyb2444 = r.CheckBreak() + yyb2447 = r.CheckBreak() } - if yyb2444 { + if yyb2447 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32249,13 +32305,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.ReadyReplicas = int32(r.DecodeInt(32)) } - yyj2444++ - if yyhl2444 { - yyb2444 = yyj2444 > l + yyj2447++ + if yyhl2447 { + yyb2447 = yyj2447 > l } else { - yyb2444 = r.CheckBreak() + yyb2447 = r.CheckBreak() } - if yyb2444 { + if yyb2447 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32265,13 +32321,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.AvailableReplicas = int32(r.DecodeInt(32)) } - yyj2444++ - if yyhl2444 { - yyb2444 = yyj2444 > l + yyj2447++ + if yyhl2447 { + yyb2447 = yyj2447 > l } else { - yyb2444 = r.CheckBreak() + yyb2447 = r.CheckBreak() } - if yyb2444 { + if yyb2447 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32281,13 +32337,13 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 } else { x.ObservedGeneration = int64(r.DecodeInt(64)) } - yyj2444++ - if yyhl2444 { - yyb2444 = yyj2444 > l + yyj2447++ + if yyhl2447 { + yyb2447 = yyj2447 > l } else { - yyb2444 = r.CheckBreak() + yyb2447 = r.CheckBreak() } - if yyb2444 { + if yyb2447 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32295,26 +32351,26 @@ func (x *ReplicationControllerStatus) codecDecodeSelfFromArray(l int, d *codec19 if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv2450 := &x.Conditions - yym2451 := z.DecBinary() - _ = yym2451 + yyv2453 := &x.Conditions + yym2454 := z.DecBinary() + _ = yym2454 if false { } else { - h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2450), d) + h.decSliceReplicationControllerCondition((*[]ReplicationControllerCondition)(yyv2453), d) } } for { - yyj2444++ - if yyhl2444 { - yyb2444 = yyj2444 > l + yyj2447++ + if yyhl2447 { + yyb2447 = yyj2447 > l } else { - yyb2444 = r.CheckBreak() + yyb2447 = r.CheckBreak() } - if yyb2444 { + if yyb2447 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2444-1, "") + z.DecStructFieldNotFound(yyj2447-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32323,8 +32379,8 @@ func (x ReplicationControllerConditionType) CodecEncodeSelf(e *codec1978.Encoder var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2452 := z.EncBinary() - _ = yym2452 + yym2455 := z.EncBinary() + _ = yym2455 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -32336,8 +32392,8 @@ func (x *ReplicationControllerConditionType) CodecDecodeSelf(d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2453 := z.DecBinary() - _ = yym2453 + yym2456 := z.DecBinary() + _ = yym2456 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -32352,33 +32408,33 @@ func (x *ReplicationControllerCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2454 := z.EncBinary() - _ = yym2454 + yym2457 := z.EncBinary() + _ = yym2457 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2455 := !z.EncBinary() - yy2arr2455 := z.EncBasicHandle().StructToArray - var yyq2455 [5]bool - _, _, _ = yysep2455, yyq2455, yy2arr2455 - const yyr2455 bool = false - yyq2455[2] = true - yyq2455[3] = x.Reason != "" - yyq2455[4] = x.Message != "" - var yynn2455 int - if yyr2455 || yy2arr2455 { + yysep2458 := !z.EncBinary() + yy2arr2458 := z.EncBasicHandle().StructToArray + var yyq2458 [5]bool + _, _, _ = yysep2458, yyq2458, yy2arr2458 + const yyr2458 bool = false + yyq2458[2] = true + yyq2458[3] = x.Reason != "" + yyq2458[4] = x.Message != "" + var yynn2458 int + if yyr2458 || yy2arr2458 { r.EncodeArrayStart(5) } else { - yynn2455 = 2 - for _, b := range yyq2455 { + yynn2458 = 2 + for _, b := range yyq2458 { if b { - yynn2455++ + yynn2458++ } } - r.EncodeMapStart(yynn2455) - yynn2455 = 0 + r.EncodeMapStart(yynn2458) + yynn2458 = 0 } - if yyr2455 || yy2arr2455 { + if yyr2458 || yy2arr2458 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -32387,7 +32443,7 @@ func (x *ReplicationControllerCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr2455 || yy2arr2455 { + if yyr2458 || yy2arr2458 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -32396,94 +32452,94 @@ func (x *ReplicationControllerCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr2455 || yy2arr2455 { + if yyr2458 || yy2arr2458 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2455[2] { - yy2459 := &x.LastTransitionTime - yym2460 := z.EncBinary() - _ = yym2460 + if yyq2458[2] { + yy2462 := &x.LastTransitionTime + yym2463 := z.EncBinary() + _ = yym2463 if false { - } else if z.HasExtensions() && z.EncExt(yy2459) { - } else if yym2460 { - z.EncBinaryMarshal(yy2459) - } else if !yym2460 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2459) + } else if z.HasExtensions() && z.EncExt(yy2462) { + } else if yym2463 { + z.EncBinaryMarshal(yy2462) + } else if !yym2463 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2462) } else { - z.EncFallback(yy2459) + z.EncFallback(yy2462) } } else { r.EncodeNil() } } else { - if yyq2455[2] { + if yyq2458[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2461 := &x.LastTransitionTime - yym2462 := z.EncBinary() - _ = yym2462 - if false { - } else if z.HasExtensions() && z.EncExt(yy2461) { - } else if yym2462 { - z.EncBinaryMarshal(yy2461) - } else if !yym2462 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2461) - } else { - z.EncFallback(yy2461) - } - } - } - if yyr2455 || yy2arr2455 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2455[3] { - yym2464 := z.EncBinary() - _ = yym2464 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2455[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2464 := &x.LastTransitionTime yym2465 := z.EncBinary() _ = yym2465 if false { + } else if z.HasExtensions() && z.EncExt(yy2464) { + } else if yym2465 { + z.EncBinaryMarshal(yy2464) + } else if !yym2465 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2464) } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + z.EncFallback(yy2464) } } } - if yyr2455 || yy2arr2455 { + if yyr2458 || yy2arr2458 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2455[4] { + if yyq2458[3] { yym2467 := z.EncBinary() _ = yym2467 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2455[4] { + if yyq2458[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) + r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2468 := z.EncBinary() _ = yym2468 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr2458 || yy2arr2458 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2458[4] { + yym2470 := z.EncBinary() + _ = yym2470 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2458[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2471 := z.EncBinary() + _ = yym2471 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr2455 || yy2arr2455 { + if yyr2458 || yy2arr2458 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32496,25 +32552,25 @@ func (x *ReplicationControllerCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2469 := z.DecBinary() - _ = yym2469 + yym2472 := z.DecBinary() + _ = yym2472 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2470 := r.ContainerType() - if yyct2470 == codecSelferValueTypeMap1234 { - yyl2470 := r.ReadMapStart() - if yyl2470 == 0 { + yyct2473 := r.ContainerType() + if yyct2473 == codecSelferValueTypeMap1234 { + yyl2473 := r.ReadMapStart() + if yyl2473 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2470, d) + x.codecDecodeSelfFromMap(yyl2473, d) } - } else if yyct2470 == codecSelferValueTypeArray1234 { - yyl2470 := r.ReadArrayStart() - if yyl2470 == 0 { + } else if yyct2473 == codecSelferValueTypeArray1234 { + yyl2473 := r.ReadArrayStart() + if yyl2473 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2470, d) + x.codecDecodeSelfFromArray(yyl2473, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32526,12 +32582,12 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromMap(l int, d *codec1 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2471Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2471Slc - var yyhl2471 bool = l >= 0 - for yyj2471 := 0; ; yyj2471++ { - if yyhl2471 { - if yyj2471 >= l { + var yys2474Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2474Slc + var yyhl2474 bool = l >= 0 + for yyj2474 := 0; ; yyj2474++ { + if yyhl2474 { + if yyj2474 >= l { break } } else { @@ -32540,10 +32596,10 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromMap(l int, d *codec1 } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2471Slc = r.DecodeBytes(yys2471Slc, true, true) - yys2471 := string(yys2471Slc) + yys2474Slc = r.DecodeBytes(yys2474Slc, true, true) + yys2474 := string(yys2474Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2471 { + switch yys2474 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -32560,17 +32616,17 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromMap(l int, d *codec1 if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_v1.Time{} } else { - yyv2474 := &x.LastTransitionTime - yym2475 := z.DecBinary() - _ = yym2475 + yyv2477 := &x.LastTransitionTime + yym2478 := z.DecBinary() + _ = yym2478 if false { - } else if z.HasExtensions() && z.DecExt(yyv2474) { - } else if yym2475 { - z.DecBinaryUnmarshal(yyv2474) - } else if !yym2475 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2474) + } else if z.HasExtensions() && z.DecExt(yyv2477) { + } else if yym2478 { + z.DecBinaryUnmarshal(yyv2477) + } else if !yym2478 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2477) } else { - z.DecFallback(yyv2474, false) + z.DecFallback(yyv2477, false) } } case "reason": @@ -32586,9 +32642,9 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromMap(l int, d *codec1 x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2471) - } // end switch yys2471 - } // end for yyj2471 + z.DecStructFieldNotFound(-1, yys2474) + } // end switch yys2474 + } // end for yyj2474 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32596,16 +32652,16 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromArray(l int, d *code var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2478 int - var yyb2478 bool - var yyhl2478 bool = l >= 0 - yyj2478++ - if yyhl2478 { - yyb2478 = yyj2478 > l + var yyj2481 int + var yyb2481 bool + var yyhl2481 bool = l >= 0 + yyj2481++ + if yyhl2481 { + yyb2481 = yyj2481 > l } else { - yyb2478 = r.CheckBreak() + yyb2481 = r.CheckBreak() } - if yyb2478 { + if yyb2481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32615,13 +32671,13 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromArray(l int, d *code } else { x.Type = ReplicationControllerConditionType(r.DecodeString()) } - yyj2478++ - if yyhl2478 { - yyb2478 = yyj2478 > l + yyj2481++ + if yyhl2481 { + yyb2481 = yyj2481 > l } else { - yyb2478 = r.CheckBreak() + yyb2481 = r.CheckBreak() } - if yyb2478 { + if yyb2481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32631,13 +32687,13 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromArray(l int, d *code } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj2478++ - if yyhl2478 { - yyb2478 = yyj2478 > l + yyj2481++ + if yyhl2481 { + yyb2481 = yyj2481 > l } else { - yyb2478 = r.CheckBreak() + yyb2481 = r.CheckBreak() } - if yyb2478 { + if yyb2481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32645,26 +32701,26 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromArray(l int, d *code if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_v1.Time{} } else { - yyv2481 := &x.LastTransitionTime - yym2482 := z.DecBinary() - _ = yym2482 + yyv2484 := &x.LastTransitionTime + yym2485 := z.DecBinary() + _ = yym2485 if false { - } else if z.HasExtensions() && z.DecExt(yyv2481) { - } else if yym2482 { - z.DecBinaryUnmarshal(yyv2481) - } else if !yym2482 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2481) + } else if z.HasExtensions() && z.DecExt(yyv2484) { + } else if yym2485 { + z.DecBinaryUnmarshal(yyv2484) + } else if !yym2485 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2484) } else { - z.DecFallback(yyv2481, false) + z.DecFallback(yyv2484, false) } } - yyj2478++ - if yyhl2478 { - yyb2478 = yyj2478 > l + yyj2481++ + if yyhl2481 { + yyb2481 = yyj2481 > l } else { - yyb2478 = r.CheckBreak() + yyb2481 = r.CheckBreak() } - if yyb2478 { + if yyb2481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32674,13 +32730,13 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromArray(l int, d *code } else { x.Reason = string(r.DecodeString()) } - yyj2478++ - if yyhl2478 { - yyb2478 = yyj2478 > l + yyj2481++ + if yyhl2481 { + yyb2481 = yyj2481 > l } else { - yyb2478 = r.CheckBreak() + yyb2481 = r.CheckBreak() } - if yyb2478 { + if yyb2481 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32691,17 +32747,17 @@ func (x *ReplicationControllerCondition) codecDecodeSelfFromArray(l int, d *code x.Message = string(r.DecodeString()) } for { - yyj2478++ - if yyhl2478 { - yyb2478 = yyj2478 > l + yyj2481++ + if yyhl2481 { + yyb2481 = yyj2481 > l } else { - yyb2478 = r.CheckBreak() + yyb2481 = r.CheckBreak() } - if yyb2478 { + if yyb2481 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2478-1, "") + z.DecStructFieldNotFound(yyj2481-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -32713,136 +32769,136 @@ func (x *ReplicationController) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2485 := z.EncBinary() - _ = yym2485 + yym2488 := z.EncBinary() + _ = yym2488 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2486 := !z.EncBinary() - yy2arr2486 := z.EncBasicHandle().StructToArray - var yyq2486 [5]bool - _, _, _ = yysep2486, yyq2486, yy2arr2486 - const yyr2486 bool = false - yyq2486[0] = x.Kind != "" - yyq2486[1] = x.APIVersion != "" - yyq2486[2] = true - yyq2486[3] = true - yyq2486[4] = true - var yynn2486 int - if yyr2486 || yy2arr2486 { + yysep2489 := !z.EncBinary() + yy2arr2489 := z.EncBasicHandle().StructToArray + var yyq2489 [5]bool + _, _, _ = yysep2489, yyq2489, yy2arr2489 + const yyr2489 bool = false + yyq2489[0] = x.Kind != "" + yyq2489[1] = x.APIVersion != "" + yyq2489[2] = true + yyq2489[3] = true + yyq2489[4] = true + var yynn2489 int + if yyr2489 || yy2arr2489 { r.EncodeArrayStart(5) } else { - yynn2486 = 0 - for _, b := range yyq2486 { + yynn2489 = 0 + for _, b := range yyq2489 { if b { - yynn2486++ + yynn2489++ } } - r.EncodeMapStart(yynn2486) - yynn2486 = 0 + r.EncodeMapStart(yynn2489) + yynn2489 = 0 } - if yyr2486 || yy2arr2486 { + if yyr2489 || yy2arr2489 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2486[0] { - yym2488 := z.EncBinary() - _ = yym2488 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2486[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2489 := z.EncBinary() - _ = yym2489 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2486 || yy2arr2486 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2486[1] { + if yyq2489[0] { yym2491 := z.EncBinary() _ = yym2491 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2486[1] { + if yyq2489[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2492 := z.EncBinary() _ = yym2492 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2489 || yy2arr2489 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2489[1] { + yym2494 := z.EncBinary() + _ = yym2494 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2489[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2495 := z.EncBinary() + _ = yym2495 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2486 || yy2arr2486 { + if yyr2489 || yy2arr2489 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2486[2] { - yy2494 := &x.ObjectMeta - yy2494.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2486[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2495 := &x.ObjectMeta - yy2495.CodecEncodeSelf(e) - } - } - if yyr2486 || yy2arr2486 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2486[3] { - yy2497 := &x.Spec + if yyq2489[2] { + yy2497 := &x.ObjectMeta yy2497.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2486[3] { + if yyq2489[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2498 := &x.Spec + yy2498 := &x.ObjectMeta yy2498.CodecEncodeSelf(e) } } - if yyr2486 || yy2arr2486 { + if yyr2489 || yy2arr2489 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2486[4] { - yy2500 := &x.Status + if yyq2489[3] { + yy2500 := &x.Spec yy2500.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2486[4] { + if yyq2489[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) + r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2501 := &x.Status + yy2501 := &x.Spec yy2501.CodecEncodeSelf(e) } } - if yyr2486 || yy2arr2486 { + if yyr2489 || yy2arr2489 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2489[4] { + yy2503 := &x.Status + yy2503.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2489[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2504 := &x.Status + yy2504.CodecEncodeSelf(e) + } + } + if yyr2489 || yy2arr2489 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -32855,25 +32911,25 @@ func (x *ReplicationController) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2502 := z.DecBinary() - _ = yym2502 + yym2505 := z.DecBinary() + _ = yym2505 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2503 := r.ContainerType() - if yyct2503 == codecSelferValueTypeMap1234 { - yyl2503 := r.ReadMapStart() - if yyl2503 == 0 { + yyct2506 := r.ContainerType() + if yyct2506 == codecSelferValueTypeMap1234 { + yyl2506 := r.ReadMapStart() + if yyl2506 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2503, d) + x.codecDecodeSelfFromMap(yyl2506, d) } - } else if yyct2503 == codecSelferValueTypeArray1234 { - yyl2503 := r.ReadArrayStart() - if yyl2503 == 0 { + } else if yyct2506 == codecSelferValueTypeArray1234 { + yyl2506 := r.ReadArrayStart() + if yyl2506 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2503, d) + x.codecDecodeSelfFromArray(yyl2506, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -32885,12 +32941,12 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2504Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2504Slc - var yyhl2504 bool = l >= 0 - for yyj2504 := 0; ; yyj2504++ { - if yyhl2504 { - if yyj2504 >= l { + var yys2507Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2507Slc + var yyhl2507 bool = l >= 0 + for yyj2507 := 0; ; yyj2507++ { + if yyhl2507 { + if yyj2507 >= l { break } } else { @@ -32899,10 +32955,10 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2504Slc = r.DecodeBytes(yys2504Slc, true, true) - yys2504 := string(yys2504Slc) + yys2507Slc = r.DecodeBytes(yys2507Slc, true, true) + yys2507 := string(yys2507Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2504 { + switch yys2507 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -32919,27 +32975,27 @@ func (x *ReplicationController) codecDecodeSelfFromMap(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2507 := &x.ObjectMeta - yyv2507.CodecDecodeSelf(d) + yyv2510 := &x.ObjectMeta + yyv2510.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2508 := &x.Spec - yyv2508.CodecDecodeSelf(d) + yyv2511 := &x.Spec + yyv2511.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2509 := &x.Status - yyv2509.CodecDecodeSelf(d) + yyv2512 := &x.Status + yyv2512.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2504) - } // end switch yys2504 - } // end for yyj2504 + z.DecStructFieldNotFound(-1, yys2507) + } // end switch yys2507 + } // end for yyj2507 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -32947,16 +33003,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2510 int - var yyb2510 bool - var yyhl2510 bool = l >= 0 - yyj2510++ - if yyhl2510 { - yyb2510 = yyj2510 > l + var yyj2513 int + var yyb2513 bool + var yyhl2513 bool = l >= 0 + yyj2513++ + if yyhl2513 { + yyb2513 = yyj2513 > l } else { - yyb2510 = r.CheckBreak() + yyb2513 = r.CheckBreak() } - if yyb2510 { + if yyb2513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32966,13 +33022,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Kind = string(r.DecodeString()) } - yyj2510++ - if yyhl2510 { - yyb2510 = yyj2510 > l + yyj2513++ + if yyhl2513 { + yyb2513 = yyj2513 > l } else { - yyb2510 = r.CheckBreak() + yyb2513 = r.CheckBreak() } - if yyb2510 { + if yyb2513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32982,13 +33038,13 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.APIVersion = string(r.DecodeString()) } - yyj2510++ - if yyhl2510 { - yyb2510 = yyj2510 > l + yyj2513++ + if yyhl2513 { + yyb2513 = yyj2513 > l } else { - yyb2510 = r.CheckBreak() + yyb2513 = r.CheckBreak() } - if yyb2510 { + if yyb2513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -32996,16 +33052,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2513 := &x.ObjectMeta - yyv2513.CodecDecodeSelf(d) + yyv2516 := &x.ObjectMeta + yyv2516.CodecDecodeSelf(d) } - yyj2510++ - if yyhl2510 { - yyb2510 = yyj2510 > l + yyj2513++ + if yyhl2513 { + yyb2513 = yyj2513 > l } else { - yyb2510 = r.CheckBreak() + yyb2513 = r.CheckBreak() } - if yyb2510 { + if yyb2513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33013,16 +33069,16 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Spec = ReplicationControllerSpec{} } else { - yyv2514 := &x.Spec - yyv2514.CodecDecodeSelf(d) + yyv2517 := &x.Spec + yyv2517.CodecDecodeSelf(d) } - yyj2510++ - if yyhl2510 { - yyb2510 = yyj2510 > l + yyj2513++ + if yyhl2513 { + yyb2513 = yyj2513 > l } else { - yyb2510 = r.CheckBreak() + yyb2513 = r.CheckBreak() } - if yyb2510 { + if yyb2513 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33030,21 +33086,21 @@ func (x *ReplicationController) codecDecodeSelfFromArray(l int, d *codec1978.Dec if r.TryDecodeAsNil() { x.Status = ReplicationControllerStatus{} } else { - yyv2515 := &x.Status - yyv2515.CodecDecodeSelf(d) + yyv2518 := &x.Status + yyv2518.CodecDecodeSelf(d) } for { - yyj2510++ - if yyhl2510 { - yyb2510 = yyj2510 > l + yyj2513++ + if yyhl2513 { + yyb2513 = yyj2513 > l } else { - yyb2510 = r.CheckBreak() + yyb2513 = r.CheckBreak() } - if yyb2510 { + if yyb2513 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2510-1, "") + z.DecStructFieldNotFound(yyj2513-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33056,118 +33112,118 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2516 := z.EncBinary() - _ = yym2516 + yym2519 := z.EncBinary() + _ = yym2519 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2517 := !z.EncBinary() - yy2arr2517 := z.EncBasicHandle().StructToArray - var yyq2517 [4]bool - _, _, _ = yysep2517, yyq2517, yy2arr2517 - const yyr2517 bool = false - yyq2517[0] = x.Kind != "" - yyq2517[1] = x.APIVersion != "" - yyq2517[2] = true - var yynn2517 int - if yyr2517 || yy2arr2517 { + yysep2520 := !z.EncBinary() + yy2arr2520 := z.EncBasicHandle().StructToArray + var yyq2520 [4]bool + _, _, _ = yysep2520, yyq2520, yy2arr2520 + const yyr2520 bool = false + yyq2520[0] = x.Kind != "" + yyq2520[1] = x.APIVersion != "" + yyq2520[2] = true + var yynn2520 int + if yyr2520 || yy2arr2520 { r.EncodeArrayStart(4) } else { - yynn2517 = 1 - for _, b := range yyq2517 { + yynn2520 = 1 + for _, b := range yyq2520 { if b { - yynn2517++ + yynn2520++ } } - r.EncodeMapStart(yynn2517) - yynn2517 = 0 + r.EncodeMapStart(yynn2520) + yynn2520 = 0 } - if yyr2517 || yy2arr2517 { + if yyr2520 || yy2arr2520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2517[0] { - yym2519 := z.EncBinary() - _ = yym2519 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2517[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2520 := z.EncBinary() - _ = yym2520 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2517 || yy2arr2517 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2517[1] { + if yyq2520[0] { yym2522 := z.EncBinary() _ = yym2522 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2517[1] { + if yyq2520[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2523 := z.EncBinary() _ = yym2523 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2520 || yy2arr2520 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2520[1] { + yym2525 := z.EncBinary() + _ = yym2525 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2520[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2526 := z.EncBinary() + _ = yym2526 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2517 || yy2arr2517 { + if yyr2520 || yy2arr2520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2517[2] { - yy2525 := &x.ListMeta - yym2526 := z.EncBinary() - _ = yym2526 + if yyq2520[2] { + yy2528 := &x.ListMeta + yym2529 := z.EncBinary() + _ = yym2529 if false { - } else if z.HasExtensions() && z.EncExt(yy2525) { + } else if z.HasExtensions() && z.EncExt(yy2528) { } else { - z.EncFallback(yy2525) + z.EncFallback(yy2528) } } else { r.EncodeNil() } } else { - if yyq2517[2] { + if yyq2520[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2527 := &x.ListMeta - yym2528 := z.EncBinary() - _ = yym2528 + yy2530 := &x.ListMeta + yym2531 := z.EncBinary() + _ = yym2531 if false { - } else if z.HasExtensions() && z.EncExt(yy2527) { + } else if z.HasExtensions() && z.EncExt(yy2530) { } else { - z.EncFallback(yy2527) + z.EncFallback(yy2530) } } } - if yyr2517 || yy2arr2517 { + if yyr2520 || yy2arr2520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2530 := z.EncBinary() - _ = yym2530 + yym2533 := z.EncBinary() + _ = yym2533 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) @@ -33180,15 +33236,15 @@ func (x *ReplicationControllerList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2531 := z.EncBinary() - _ = yym2531 + yym2534 := z.EncBinary() + _ = yym2534 if false { } else { h.encSliceReplicationController(([]ReplicationController)(x.Items), e) } } } - if yyr2517 || yy2arr2517 { + if yyr2520 || yy2arr2520 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33201,25 +33257,25 @@ func (x *ReplicationControllerList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2532 := z.DecBinary() - _ = yym2532 + yym2535 := z.DecBinary() + _ = yym2535 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2533 := r.ContainerType() - if yyct2533 == codecSelferValueTypeMap1234 { - yyl2533 := r.ReadMapStart() - if yyl2533 == 0 { + yyct2536 := r.ContainerType() + if yyct2536 == codecSelferValueTypeMap1234 { + yyl2536 := r.ReadMapStart() + if yyl2536 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2533, d) + x.codecDecodeSelfFromMap(yyl2536, d) } - } else if yyct2533 == codecSelferValueTypeArray1234 { - yyl2533 := r.ReadArrayStart() - if yyl2533 == 0 { + } else if yyct2536 == codecSelferValueTypeArray1234 { + yyl2536 := r.ReadArrayStart() + if yyl2536 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2533, d) + x.codecDecodeSelfFromArray(yyl2536, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33231,12 +33287,12 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2534Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2534Slc - var yyhl2534 bool = l >= 0 - for yyj2534 := 0; ; yyj2534++ { - if yyhl2534 { - if yyj2534 >= l { + var yys2537Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2537Slc + var yyhl2537 bool = l >= 0 + for yyj2537 := 0; ; yyj2537++ { + if yyhl2537 { + if yyj2537 >= l { break } } else { @@ -33245,10 +33301,10 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2534Slc = r.DecodeBytes(yys2534Slc, true, true) - yys2534 := string(yys2534Slc) + yys2537Slc = r.DecodeBytes(yys2537Slc, true, true) + yys2537 := string(yys2537Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2534 { + switch yys2537 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -33265,31 +33321,31 @@ func (x *ReplicationControllerList) codecDecodeSelfFromMap(l int, d *codec1978.D if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2537 := &x.ListMeta - yym2538 := z.DecBinary() - _ = yym2538 + yyv2540 := &x.ListMeta + yym2541 := z.DecBinary() + _ = yym2541 if false { - } else if z.HasExtensions() && z.DecExt(yyv2537) { + } else if z.HasExtensions() && z.DecExt(yyv2540) { } else { - z.DecFallback(yyv2537, false) + z.DecFallback(yyv2540, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2539 := &x.Items - yym2540 := z.DecBinary() - _ = yym2540 + yyv2542 := &x.Items + yym2543 := z.DecBinary() + _ = yym2543 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2539), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2542), d) } } default: - z.DecStructFieldNotFound(-1, yys2534) - } // end switch yys2534 - } // end for yyj2534 + z.DecStructFieldNotFound(-1, yys2537) + } // end switch yys2537 + } // end for yyj2537 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33297,16 +33353,16 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2541 int - var yyb2541 bool - var yyhl2541 bool = l >= 0 - yyj2541++ - if yyhl2541 { - yyb2541 = yyj2541 > l + var yyj2544 int + var yyb2544 bool + var yyhl2544 bool = l >= 0 + yyj2544++ + if yyhl2544 { + yyb2544 = yyj2544 > l } else { - yyb2541 = r.CheckBreak() + yyb2544 = r.CheckBreak() } - if yyb2541 { + if yyb2544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33316,13 +33372,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.Kind = string(r.DecodeString()) } - yyj2541++ - if yyhl2541 { - yyb2541 = yyj2541 > l + yyj2544++ + if yyhl2544 { + yyb2544 = yyj2544 > l } else { - yyb2541 = r.CheckBreak() + yyb2544 = r.CheckBreak() } - if yyb2541 { + if yyb2544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33332,13 +33388,13 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 } else { x.APIVersion = string(r.DecodeString()) } - yyj2541++ - if yyhl2541 { - yyb2541 = yyj2541 > l + yyj2544++ + if yyhl2544 { + yyb2544 = yyj2544 > l } else { - yyb2541 = r.CheckBreak() + yyb2544 = r.CheckBreak() } - if yyb2541 { + if yyb2544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33346,22 +33402,22 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2544 := &x.ListMeta - yym2545 := z.DecBinary() - _ = yym2545 + yyv2547 := &x.ListMeta + yym2548 := z.DecBinary() + _ = yym2548 if false { - } else if z.HasExtensions() && z.DecExt(yyv2544) { + } else if z.HasExtensions() && z.DecExt(yyv2547) { } else { - z.DecFallback(yyv2544, false) + z.DecFallback(yyv2547, false) } } - yyj2541++ - if yyhl2541 { - yyb2541 = yyj2541 > l + yyj2544++ + if yyhl2544 { + yyb2544 = yyj2544 > l } else { - yyb2541 = r.CheckBreak() + yyb2544 = r.CheckBreak() } - if yyb2541 { + if yyb2544 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33369,26 +33425,26 @@ func (x *ReplicationControllerList) codecDecodeSelfFromArray(l int, d *codec1978 if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2546 := &x.Items - yym2547 := z.DecBinary() - _ = yym2547 + yyv2549 := &x.Items + yym2550 := z.DecBinary() + _ = yym2550 if false { } else { - h.decSliceReplicationController((*[]ReplicationController)(yyv2546), d) + h.decSliceReplicationController((*[]ReplicationController)(yyv2549), d) } } for { - yyj2541++ - if yyhl2541 { - yyb2541 = yyj2541 > l + yyj2544++ + if yyhl2544 { + yyb2544 = yyj2544 > l } else { - yyb2541 = r.CheckBreak() + yyb2544 = r.CheckBreak() } - if yyb2541 { + if yyb2544 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2541-1, "") + z.DecStructFieldNotFound(yyj2544-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33397,8 +33453,8 @@ func (x ServiceAffinity) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2548 := z.EncBinary() - _ = yym2548 + yym2551 := z.EncBinary() + _ = yym2551 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -33410,8 +33466,8 @@ func (x *ServiceAffinity) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2549 := z.DecBinary() - _ = yym2549 + yym2552 := z.DecBinary() + _ = yym2552 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -33423,8 +33479,8 @@ func (x ServiceType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym2550 := z.EncBinary() - _ = yym2550 + yym2553 := z.EncBinary() + _ = yym2553 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -33436,8 +33492,8 @@ func (x *ServiceType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2551 := z.DecBinary() - _ = yym2551 + yym2554 := z.DecBinary() + _ = yym2554 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -33452,48 +33508,48 @@ func (x *ServiceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2552 := z.EncBinary() - _ = yym2552 + yym2555 := z.EncBinary() + _ = yym2555 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2553 := !z.EncBinary() - yy2arr2553 := z.EncBasicHandle().StructToArray - var yyq2553 [1]bool - _, _, _ = yysep2553, yyq2553, yy2arr2553 - const yyr2553 bool = false - yyq2553[0] = true - var yynn2553 int - if yyr2553 || yy2arr2553 { + yysep2556 := !z.EncBinary() + yy2arr2556 := z.EncBasicHandle().StructToArray + var yyq2556 [1]bool + _, _, _ = yysep2556, yyq2556, yy2arr2556 + const yyr2556 bool = false + yyq2556[0] = true + var yynn2556 int + if yyr2556 || yy2arr2556 { r.EncodeArrayStart(1) } else { - yynn2553 = 0 - for _, b := range yyq2553 { + yynn2556 = 0 + for _, b := range yyq2556 { if b { - yynn2553++ + yynn2556++ } } - r.EncodeMapStart(yynn2553) - yynn2553 = 0 + r.EncodeMapStart(yynn2556) + yynn2556 = 0 } - if yyr2553 || yy2arr2553 { + if yyr2556 || yy2arr2556 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2553[0] { - yy2555 := &x.LoadBalancer - yy2555.CodecEncodeSelf(e) + if yyq2556[0] { + yy2558 := &x.LoadBalancer + yy2558.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2553[0] { + if yyq2556[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancer")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2556 := &x.LoadBalancer - yy2556.CodecEncodeSelf(e) + yy2559 := &x.LoadBalancer + yy2559.CodecEncodeSelf(e) } } - if yyr2553 || yy2arr2553 { + if yyr2556 || yy2arr2556 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33506,25 +33562,25 @@ func (x *ServiceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2557 := z.DecBinary() - _ = yym2557 + yym2560 := z.DecBinary() + _ = yym2560 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2558 := r.ContainerType() - if yyct2558 == codecSelferValueTypeMap1234 { - yyl2558 := r.ReadMapStart() - if yyl2558 == 0 { + yyct2561 := r.ContainerType() + if yyct2561 == codecSelferValueTypeMap1234 { + yyl2561 := r.ReadMapStart() + if yyl2561 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2558, d) + x.codecDecodeSelfFromMap(yyl2561, d) } - } else if yyct2558 == codecSelferValueTypeArray1234 { - yyl2558 := r.ReadArrayStart() - if yyl2558 == 0 { + } else if yyct2561 == codecSelferValueTypeArray1234 { + yyl2561 := r.ReadArrayStart() + if yyl2561 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2558, d) + x.codecDecodeSelfFromArray(yyl2561, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33536,12 +33592,12 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2559Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2559Slc - var yyhl2559 bool = l >= 0 - for yyj2559 := 0; ; yyj2559++ { - if yyhl2559 { - if yyj2559 >= l { + var yys2562Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2562Slc + var yyhl2562 bool = l >= 0 + for yyj2562 := 0; ; yyj2562++ { + if yyhl2562 { + if yyj2562 >= l { break } } else { @@ -33550,21 +33606,21 @@ func (x *ServiceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2559Slc = r.DecodeBytes(yys2559Slc, true, true) - yys2559 := string(yys2559Slc) + yys2562Slc = r.DecodeBytes(yys2562Slc, true, true) + yys2562 := string(yys2562Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2559 { + switch yys2562 { case "loadBalancer": if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2560 := &x.LoadBalancer - yyv2560.CodecDecodeSelf(d) + yyv2563 := &x.LoadBalancer + yyv2563.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2559) - } // end switch yys2559 - } // end for yyj2559 + z.DecStructFieldNotFound(-1, yys2562) + } // end switch yys2562 + } // end for yyj2562 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33572,16 +33628,16 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2561 int - var yyb2561 bool - var yyhl2561 bool = l >= 0 - yyj2561++ - if yyhl2561 { - yyb2561 = yyj2561 > l + var yyj2564 int + var yyb2564 bool + var yyhl2564 bool = l >= 0 + yyj2564++ + if yyhl2564 { + yyb2564 = yyj2564 > l } else { - yyb2561 = r.CheckBreak() + yyb2564 = r.CheckBreak() } - if yyb2561 { + if yyb2564 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33589,21 +33645,21 @@ func (x *ServiceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancer = LoadBalancerStatus{} } else { - yyv2562 := &x.LoadBalancer - yyv2562.CodecDecodeSelf(d) + yyv2565 := &x.LoadBalancer + yyv2565.CodecDecodeSelf(d) } for { - yyj2561++ - if yyhl2561 { - yyb2561 = yyj2561 > l + yyj2564++ + if yyhl2564 { + yyb2564 = yyj2564 > l } else { - yyb2561 = r.CheckBreak() + yyb2564 = r.CheckBreak() } - if yyb2561 { + if yyb2564 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2561-1, "") + z.DecStructFieldNotFound(yyj2564-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33615,38 +33671,38 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2563 := z.EncBinary() - _ = yym2563 + yym2566 := z.EncBinary() + _ = yym2566 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2564 := !z.EncBinary() - yy2arr2564 := z.EncBasicHandle().StructToArray - var yyq2564 [1]bool - _, _, _ = yysep2564, yyq2564, yy2arr2564 - const yyr2564 bool = false - yyq2564[0] = len(x.Ingress) != 0 - var yynn2564 int - if yyr2564 || yy2arr2564 { + yysep2567 := !z.EncBinary() + yy2arr2567 := z.EncBasicHandle().StructToArray + var yyq2567 [1]bool + _, _, _ = yysep2567, yyq2567, yy2arr2567 + const yyr2567 bool = false + yyq2567[0] = len(x.Ingress) != 0 + var yynn2567 int + if yyr2567 || yy2arr2567 { r.EncodeArrayStart(1) } else { - yynn2564 = 0 - for _, b := range yyq2564 { + yynn2567 = 0 + for _, b := range yyq2567 { if b { - yynn2564++ + yynn2567++ } } - r.EncodeMapStart(yynn2564) - yynn2564 = 0 + r.EncodeMapStart(yynn2567) + yynn2567 = 0 } - if yyr2564 || yy2arr2564 { + if yyr2567 || yy2arr2567 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2564[0] { + if yyq2567[0] { if x.Ingress == nil { r.EncodeNil() } else { - yym2566 := z.EncBinary() - _ = yym2566 + yym2569 := z.EncBinary() + _ = yym2569 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -33656,15 +33712,15 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2564[0] { + if yyq2567[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ingress")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ingress == nil { r.EncodeNil() } else { - yym2567 := z.EncBinary() - _ = yym2567 + yym2570 := z.EncBinary() + _ = yym2570 if false { } else { h.encSliceLoadBalancerIngress(([]LoadBalancerIngress)(x.Ingress), e) @@ -33672,7 +33728,7 @@ func (x *LoadBalancerStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2564 || yy2arr2564 { + if yyr2567 || yy2arr2567 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33685,25 +33741,25 @@ func (x *LoadBalancerStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2568 := z.DecBinary() - _ = yym2568 + yym2571 := z.DecBinary() + _ = yym2571 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2569 := r.ContainerType() - if yyct2569 == codecSelferValueTypeMap1234 { - yyl2569 := r.ReadMapStart() - if yyl2569 == 0 { + yyct2572 := r.ContainerType() + if yyct2572 == codecSelferValueTypeMap1234 { + yyl2572 := r.ReadMapStart() + if yyl2572 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2569, d) + x.codecDecodeSelfFromMap(yyl2572, d) } - } else if yyct2569 == codecSelferValueTypeArray1234 { - yyl2569 := r.ReadArrayStart() - if yyl2569 == 0 { + } else if yyct2572 == codecSelferValueTypeArray1234 { + yyl2572 := r.ReadArrayStart() + if yyl2572 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2569, d) + x.codecDecodeSelfFromArray(yyl2572, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33715,12 +33771,12 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2570Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2570Slc - var yyhl2570 bool = l >= 0 - for yyj2570 := 0; ; yyj2570++ { - if yyhl2570 { - if yyj2570 >= l { + var yys2573Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2573Slc + var yyhl2573 bool = l >= 0 + for yyj2573 := 0; ; yyj2573++ { + if yyhl2573 { + if yyj2573 >= l { break } } else { @@ -33729,26 +33785,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2570Slc = r.DecodeBytes(yys2570Slc, true, true) - yys2570 := string(yys2570Slc) + yys2573Slc = r.DecodeBytes(yys2573Slc, true, true) + yys2573 := string(yys2573Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2570 { + switch yys2573 { case "ingress": if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2571 := &x.Ingress - yym2572 := z.DecBinary() - _ = yym2572 + yyv2574 := &x.Ingress + yym2575 := z.DecBinary() + _ = yym2575 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2571), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2574), d) } } default: - z.DecStructFieldNotFound(-1, yys2570) - } // end switch yys2570 - } // end for yyj2570 + z.DecStructFieldNotFound(-1, yys2573) + } // end switch yys2573 + } // end for yyj2573 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33756,16 +33812,16 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2573 int - var yyb2573 bool - var yyhl2573 bool = l >= 0 - yyj2573++ - if yyhl2573 { - yyb2573 = yyj2573 > l + var yyj2576 int + var yyb2576 bool + var yyhl2576 bool = l >= 0 + yyj2576++ + if yyhl2576 { + yyb2576 = yyj2576 > l } else { - yyb2573 = r.CheckBreak() + yyb2576 = r.CheckBreak() } - if yyb2573 { + if yyb2576 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33773,26 +33829,26 @@ func (x *LoadBalancerStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Ingress = nil } else { - yyv2574 := &x.Ingress - yym2575 := z.DecBinary() - _ = yym2575 + yyv2577 := &x.Ingress + yym2578 := z.DecBinary() + _ = yym2578 if false { } else { - h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2574), d) + h.decSliceLoadBalancerIngress((*[]LoadBalancerIngress)(yyv2577), d) } } for { - yyj2573++ - if yyhl2573 { - yyb2573 = yyj2573 > l + yyj2576++ + if yyhl2576 { + yyb2576 = yyj2576 > l } else { - yyb2573 = r.CheckBreak() + yyb2576 = r.CheckBreak() } - if yyb2573 { + if yyb2576 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2573-1, "") + z.DecStructFieldNotFound(yyj2576-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -33804,82 +33860,82 @@ func (x *LoadBalancerIngress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2576 := z.EncBinary() - _ = yym2576 + yym2579 := z.EncBinary() + _ = yym2579 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2577 := !z.EncBinary() - yy2arr2577 := z.EncBasicHandle().StructToArray - var yyq2577 [2]bool - _, _, _ = yysep2577, yyq2577, yy2arr2577 - const yyr2577 bool = false - yyq2577[0] = x.IP != "" - yyq2577[1] = x.Hostname != "" - var yynn2577 int - if yyr2577 || yy2arr2577 { + yysep2580 := !z.EncBinary() + yy2arr2580 := z.EncBasicHandle().StructToArray + var yyq2580 [2]bool + _, _, _ = yysep2580, yyq2580, yy2arr2580 + const yyr2580 bool = false + yyq2580[0] = x.IP != "" + yyq2580[1] = x.Hostname != "" + var yynn2580 int + if yyr2580 || yy2arr2580 { r.EncodeArrayStart(2) } else { - yynn2577 = 0 - for _, b := range yyq2577 { + yynn2580 = 0 + for _, b := range yyq2580 { if b { - yynn2577++ + yynn2580++ } } - r.EncodeMapStart(yynn2577) - yynn2577 = 0 + r.EncodeMapStart(yynn2580) + yynn2580 = 0 } - if yyr2577 || yy2arr2577 { + if yyr2580 || yy2arr2580 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2577[0] { - yym2579 := z.EncBinary() - _ = yym2579 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.IP)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2577[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("ip")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2580 := z.EncBinary() - _ = yym2580 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.IP)) - } - } - } - if yyr2577 || yy2arr2577 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2577[1] { + if yyq2580[0] { yym2582 := z.EncBinary() _ = yym2582 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) + r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2577[1] { + if yyq2580[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("hostname")) + r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2583 := z.EncBinary() _ = yym2583 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.IP)) + } + } + } + if yyr2580 || yy2arr2580 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2580[1] { + yym2585 := z.EncBinary() + _ = yym2585 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2580[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("hostname")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2586 := z.EncBinary() + _ = yym2586 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2577 || yy2arr2577 { + if yyr2580 || yy2arr2580 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -33892,25 +33948,25 @@ func (x *LoadBalancerIngress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2584 := z.DecBinary() - _ = yym2584 + yym2587 := z.DecBinary() + _ = yym2587 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2585 := r.ContainerType() - if yyct2585 == codecSelferValueTypeMap1234 { - yyl2585 := r.ReadMapStart() - if yyl2585 == 0 { + yyct2588 := r.ContainerType() + if yyct2588 == codecSelferValueTypeMap1234 { + yyl2588 := r.ReadMapStart() + if yyl2588 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2585, d) + x.codecDecodeSelfFromMap(yyl2588, d) } - } else if yyct2585 == codecSelferValueTypeArray1234 { - yyl2585 := r.ReadArrayStart() - if yyl2585 == 0 { + } else if yyct2588 == codecSelferValueTypeArray1234 { + yyl2588 := r.ReadArrayStart() + if yyl2588 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2585, d) + x.codecDecodeSelfFromArray(yyl2588, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -33922,12 +33978,12 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2586Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2586Slc - var yyhl2586 bool = l >= 0 - for yyj2586 := 0; ; yyj2586++ { - if yyhl2586 { - if yyj2586 >= l { + var yys2589Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2589Slc + var yyhl2589 bool = l >= 0 + for yyj2589 := 0; ; yyj2589++ { + if yyhl2589 { + if yyj2589 >= l { break } } else { @@ -33936,10 +33992,10 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2586Slc = r.DecodeBytes(yys2586Slc, true, true) - yys2586 := string(yys2586Slc) + yys2589Slc = r.DecodeBytes(yys2589Slc, true, true) + yys2589 := string(yys2589Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2586 { + switch yys2589 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -33953,9 +34009,9 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Hostname = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2586) - } // end switch yys2586 - } // end for yyj2586 + z.DecStructFieldNotFound(-1, yys2589) + } // end switch yys2589 + } // end for yyj2589 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -33963,16 +34019,16 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2589 int - var yyb2589 bool - var yyhl2589 bool = l >= 0 - yyj2589++ - if yyhl2589 { - yyb2589 = yyj2589 > l + var yyj2592 int + var yyb2592 bool + var yyhl2592 bool = l >= 0 + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2589 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2589 { + if yyb2592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33982,13 +34038,13 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.IP = string(r.DecodeString()) } - yyj2589++ - if yyhl2589 { - yyb2589 = yyj2589 > l + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2589 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2589 { + if yyb2592 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -33999,17 +34055,17 @@ func (x *LoadBalancerIngress) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Hostname = string(r.DecodeString()) } for { - yyj2589++ - if yyhl2589 { - yyb2589 = yyj2589 > l + yyj2592++ + if yyhl2592 { + yyb2592 = yyj2592 > l } else { - yyb2589 = r.CheckBreak() + yyb2592 = r.CheckBreak() } - if yyb2589 { + if yyb2592 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2589-1, "") + z.DecStructFieldNotFound(yyj2592-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34021,110 +34077,110 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2592 := z.EncBinary() - _ = yym2592 + yym2595 := z.EncBinary() + _ = yym2595 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2593 := !z.EncBinary() - yy2arr2593 := z.EncBasicHandle().StructToArray - var yyq2593 [10]bool - _, _, _ = yysep2593, yyq2593, yy2arr2593 - const yyr2593 bool = false - yyq2593[0] = len(x.Ports) != 0 - yyq2593[1] = len(x.Selector) != 0 - yyq2593[2] = x.ClusterIP != "" - yyq2593[3] = x.Type != "" - yyq2593[4] = len(x.ExternalIPs) != 0 - yyq2593[5] = len(x.DeprecatedPublicIPs) != 0 - yyq2593[6] = x.SessionAffinity != "" - yyq2593[7] = x.LoadBalancerIP != "" - yyq2593[8] = len(x.LoadBalancerSourceRanges) != 0 - yyq2593[9] = x.ExternalName != "" - var yynn2593 int - if yyr2593 || yy2arr2593 { + yysep2596 := !z.EncBinary() + yy2arr2596 := z.EncBasicHandle().StructToArray + var yyq2596 [10]bool + _, _, _ = yysep2596, yyq2596, yy2arr2596 + const yyr2596 bool = false + yyq2596[0] = len(x.Ports) != 0 + yyq2596[1] = len(x.Selector) != 0 + yyq2596[2] = x.ClusterIP != "" + yyq2596[3] = x.Type != "" + yyq2596[4] = len(x.ExternalIPs) != 0 + yyq2596[5] = len(x.DeprecatedPublicIPs) != 0 + yyq2596[6] = x.SessionAffinity != "" + yyq2596[7] = x.LoadBalancerIP != "" + yyq2596[8] = len(x.LoadBalancerSourceRanges) != 0 + yyq2596[9] = x.ExternalName != "" + var yynn2596 int + if yyr2596 || yy2arr2596 { r.EncodeArrayStart(10) } else { - yynn2593 = 0 - for _, b := range yyq2593 { + yynn2596 = 0 + for _, b := range yyq2596 { if b { - yynn2593++ + yynn2596++ } } - r.EncodeMapStart(yynn2593) - yynn2593 = 0 + r.EncodeMapStart(yynn2596) + yynn2596 = 0 } - if yyr2593 || yy2arr2593 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2593[0] { + if yyq2596[0] { if x.Ports == nil { r.EncodeNil() - } else { - yym2595 := z.EncBinary() - _ = yym2595 - if false { - } else { - h.encSliceServicePort(([]ServicePort)(x.Ports), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2593[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("ports")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Ports == nil { - r.EncodeNil() - } else { - yym2596 := z.EncBinary() - _ = yym2596 - if false { - } else { - h.encSliceServicePort(([]ServicePort)(x.Ports), e) - } - } - } - } - if yyr2593 || yy2arr2593 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2593[1] { - if x.Selector == nil { - r.EncodeNil() } else { yym2598 := z.EncBinary() _ = yym2598 if false { } else { - z.F.EncMapStringStringV(x.Selector, false, e) + h.encSliceServicePort(([]ServicePort)(x.Ports), e) } } } else { r.EncodeNil() } } else { - if yyq2593[1] { + if yyq2596[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("selector")) + r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Selector == nil { + if x.Ports == nil { r.EncodeNil() } else { yym2599 := z.EncBinary() _ = yym2599 if false { + } else { + h.encSliceServicePort(([]ServicePort)(x.Ports), e) + } + } + } + } + if yyr2596 || yy2arr2596 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2596[1] { + if x.Selector == nil { + r.EncodeNil() + } else { + yym2601 := z.EncBinary() + _ = yym2601 + if false { + } else { + z.F.EncMapStringStringV(x.Selector, false, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2596[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("selector")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Selector == nil { + r.EncodeNil() + } else { + yym2602 := z.EncBinary() + _ = yym2602 + if false { } else { z.F.EncMapStringStringV(x.Selector, false, e) } } } } - if yyr2593 || yy2arr2593 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2593[2] { - yym2601 := z.EncBinary() - _ = yym2601 + if yyq2596[2] { + yym2604 := z.EncBinary() + _ = yym2604 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) @@ -34133,119 +34189,119 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2593[2] { + if yyq2596[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("clusterIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2602 := z.EncBinary() - _ = yym2602 + yym2605 := z.EncBinary() + _ = yym2605 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ClusterIP)) } } } - if yyr2593 || yy2arr2593 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2593[3] { + if yyq2596[3] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2593[3] { + if yyq2596[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr2593 || yy2arr2593 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2593[4] { + if yyq2596[4] { if x.ExternalIPs == nil { r.EncodeNil() - } else { - yym2605 := z.EncBinary() - _ = yym2605 - if false { - } else { - z.F.EncSliceStringV(x.ExternalIPs, false, e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2593[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.ExternalIPs == nil { - r.EncodeNil() - } else { - yym2606 := z.EncBinary() - _ = yym2606 - if false { - } else { - z.F.EncSliceStringV(x.ExternalIPs, false, e) - } - } - } - } - if yyr2593 || yy2arr2593 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2593[5] { - if x.DeprecatedPublicIPs == nil { - r.EncodeNil() } else { yym2608 := z.EncBinary() _ = yym2608 if false { } else { - z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) + z.F.EncSliceStringV(x.ExternalIPs, false, e) } } } else { r.EncodeNil() } } else { - if yyq2593[5] { + if yyq2596[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("deprecatedPublicIPs")) + r.EncodeString(codecSelferC_UTF81234, string("externalIPs")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.DeprecatedPublicIPs == nil { + if x.ExternalIPs == nil { r.EncodeNil() } else { yym2609 := z.EncBinary() _ = yym2609 if false { + } else { + z.F.EncSliceStringV(x.ExternalIPs, false, e) + } + } + } + } + if yyr2596 || yy2arr2596 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2596[5] { + if x.DeprecatedPublicIPs == nil { + r.EncodeNil() + } else { + yym2611 := z.EncBinary() + _ = yym2611 + if false { + } else { + z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2596[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("deprecatedPublicIPs")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.DeprecatedPublicIPs == nil { + r.EncodeNil() + } else { + yym2612 := z.EncBinary() + _ = yym2612 + if false { } else { z.F.EncSliceStringV(x.DeprecatedPublicIPs, false, e) } } } } - if yyr2593 || yy2arr2593 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2593[6] { + if yyq2596[6] { x.SessionAffinity.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2593[6] { + if yyq2596[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sessionAffinity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.SessionAffinity.CodecEncodeSelf(e) } } - if yyr2593 || yy2arr2593 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2593[7] { - yym2612 := z.EncBinary() - _ = yym2612 + if yyq2596[7] { + yym2615 := z.EncBinary() + _ = yym2615 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) @@ -34254,26 +34310,26 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2593[7] { + if yyq2596[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerIP")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2613 := z.EncBinary() - _ = yym2613 + yym2616 := z.EncBinary() + _ = yym2616 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LoadBalancerIP)) } } } - if yyr2593 || yy2arr2593 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2593[8] { + if yyq2596[8] { if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2615 := z.EncBinary() - _ = yym2615 + yym2618 := z.EncBinary() + _ = yym2618 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -34283,15 +34339,15 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2593[8] { + if yyq2596[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("loadBalancerSourceRanges")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LoadBalancerSourceRanges == nil { r.EncodeNil() } else { - yym2616 := z.EncBinary() - _ = yym2616 + yym2619 := z.EncBinary() + _ = yym2619 if false { } else { z.F.EncSliceStringV(x.LoadBalancerSourceRanges, false, e) @@ -34299,11 +34355,11 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2593 || yy2arr2593 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2593[9] { - yym2618 := z.EncBinary() - _ = yym2618 + if yyq2596[9] { + yym2621 := z.EncBinary() + _ = yym2621 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) @@ -34312,19 +34368,19 @@ func (x *ServiceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2593[9] { + if yyq2596[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("externalName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2619 := z.EncBinary() - _ = yym2619 + yym2622 := z.EncBinary() + _ = yym2622 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalName)) } } } - if yyr2593 || yy2arr2593 { + if yyr2596 || yy2arr2596 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34337,25 +34393,25 @@ func (x *ServiceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2620 := z.DecBinary() - _ = yym2620 + yym2623 := z.DecBinary() + _ = yym2623 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2621 := r.ContainerType() - if yyct2621 == codecSelferValueTypeMap1234 { - yyl2621 := r.ReadMapStart() - if yyl2621 == 0 { + yyct2624 := r.ContainerType() + if yyct2624 == codecSelferValueTypeMap1234 { + yyl2624 := r.ReadMapStart() + if yyl2624 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2621, d) + x.codecDecodeSelfFromMap(yyl2624, d) } - } else if yyct2621 == codecSelferValueTypeArray1234 { - yyl2621 := r.ReadArrayStart() - if yyl2621 == 0 { + } else if yyct2624 == codecSelferValueTypeArray1234 { + yyl2624 := r.ReadArrayStart() + if yyl2624 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2621, d) + x.codecDecodeSelfFromArray(yyl2624, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34367,12 +34423,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2622Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2622Slc - var yyhl2622 bool = l >= 0 - for yyj2622 := 0; ; yyj2622++ { - if yyhl2622 { - if yyj2622 >= l { + var yys2625Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2625Slc + var yyhl2625 bool = l >= 0 + for yyj2625 := 0; ; yyj2625++ { + if yyhl2625 { + if yyj2625 >= l { break } } else { @@ -34381,32 +34437,32 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2622Slc = r.DecodeBytes(yys2622Slc, true, true) - yys2622 := string(yys2622Slc) + yys2625Slc = r.DecodeBytes(yys2625Slc, true, true) + yys2625 := string(yys2625Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2622 { + switch yys2625 { case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2623 := &x.Ports - yym2624 := z.DecBinary() - _ = yym2624 + yyv2626 := &x.Ports + yym2627 := z.DecBinary() + _ = yym2627 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2623), d) + h.decSliceServicePort((*[]ServicePort)(yyv2626), d) } } case "selector": if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2625 := &x.Selector - yym2626 := z.DecBinary() - _ = yym2626 + yyv2628 := &x.Selector + yym2629 := z.DecBinary() + _ = yym2629 if false { } else { - z.F.DecMapStringStringX(yyv2625, false, d) + z.F.DecMapStringStringX(yyv2628, false, d) } } case "clusterIP": @@ -34425,24 +34481,24 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2629 := &x.ExternalIPs - yym2630 := z.DecBinary() - _ = yym2630 + yyv2632 := &x.ExternalIPs + yym2633 := z.DecBinary() + _ = yym2633 if false { } else { - z.F.DecSliceStringX(yyv2629, false, d) + z.F.DecSliceStringX(yyv2632, false, d) } } case "deprecatedPublicIPs": if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2631 := &x.DeprecatedPublicIPs - yym2632 := z.DecBinary() - _ = yym2632 + yyv2634 := &x.DeprecatedPublicIPs + yym2635 := z.DecBinary() + _ = yym2635 if false { } else { - z.F.DecSliceStringX(yyv2631, false, d) + z.F.DecSliceStringX(yyv2634, false, d) } } case "sessionAffinity": @@ -34461,12 +34517,12 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2635 := &x.LoadBalancerSourceRanges - yym2636 := z.DecBinary() - _ = yym2636 + yyv2638 := &x.LoadBalancerSourceRanges + yym2639 := z.DecBinary() + _ = yym2639 if false { } else { - z.F.DecSliceStringX(yyv2635, false, d) + z.F.DecSliceStringX(yyv2638, false, d) } } case "externalName": @@ -34476,9 +34532,9 @@ func (x *ServiceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.ExternalName = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2622) - } // end switch yys2622 - } // end for yyj2622 + z.DecStructFieldNotFound(-1, yys2625) + } // end switch yys2625 + } // end for yyj2625 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34486,16 +34542,16 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2638 int - var yyb2638 bool - var yyhl2638 bool = l >= 0 - yyj2638++ - if yyhl2638 { - yyb2638 = yyj2638 > l + var yyj2641 int + var yyb2641 bool + var yyhl2641 bool = l >= 0 + yyj2641++ + if yyhl2641 { + yyb2641 = yyj2641 > l } else { - yyb2638 = r.CheckBreak() + yyb2641 = r.CheckBreak() } - if yyb2638 { + if yyb2641 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34503,21 +34559,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2639 := &x.Ports - yym2640 := z.DecBinary() - _ = yym2640 + yyv2642 := &x.Ports + yym2643 := z.DecBinary() + _ = yym2643 if false { } else { - h.decSliceServicePort((*[]ServicePort)(yyv2639), d) + h.decSliceServicePort((*[]ServicePort)(yyv2642), d) } } - yyj2638++ - if yyhl2638 { - yyb2638 = yyj2638 > l + yyj2641++ + if yyhl2641 { + yyb2641 = yyj2641 > l } else { - yyb2638 = r.CheckBreak() + yyb2641 = r.CheckBreak() } - if yyb2638 { + if yyb2641 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34525,21 +34581,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Selector = nil } else { - yyv2641 := &x.Selector - yym2642 := z.DecBinary() - _ = yym2642 + yyv2644 := &x.Selector + yym2645 := z.DecBinary() + _ = yym2645 if false { } else { - z.F.DecMapStringStringX(yyv2641, false, d) + z.F.DecMapStringStringX(yyv2644, false, d) } } - yyj2638++ - if yyhl2638 { - yyb2638 = yyj2638 > l + yyj2641++ + if yyhl2641 { + yyb2641 = yyj2641 > l } else { - yyb2638 = r.CheckBreak() + yyb2641 = r.CheckBreak() } - if yyb2638 { + if yyb2641 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34549,13 +34605,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ClusterIP = string(r.DecodeString()) } - yyj2638++ - if yyhl2638 { - yyb2638 = yyj2638 > l + yyj2641++ + if yyhl2641 { + yyb2641 = yyj2641 > l } else { - yyb2638 = r.CheckBreak() + yyb2641 = r.CheckBreak() } - if yyb2638 { + if yyb2641 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34565,13 +34621,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = ServiceType(r.DecodeString()) } - yyj2638++ - if yyhl2638 { - yyb2638 = yyj2638 > l + yyj2641++ + if yyhl2641 { + yyb2641 = yyj2641 > l } else { - yyb2638 = r.CheckBreak() + yyb2641 = r.CheckBreak() } - if yyb2638 { + if yyb2641 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34579,21 +34635,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ExternalIPs = nil } else { - yyv2645 := &x.ExternalIPs - yym2646 := z.DecBinary() - _ = yym2646 + yyv2648 := &x.ExternalIPs + yym2649 := z.DecBinary() + _ = yym2649 if false { } else { - z.F.DecSliceStringX(yyv2645, false, d) + z.F.DecSliceStringX(yyv2648, false, d) } } - yyj2638++ - if yyhl2638 { - yyb2638 = yyj2638 > l + yyj2641++ + if yyhl2641 { + yyb2641 = yyj2641 > l } else { - yyb2638 = r.CheckBreak() + yyb2641 = r.CheckBreak() } - if yyb2638 { + if yyb2641 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34601,21 +34657,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DeprecatedPublicIPs = nil } else { - yyv2647 := &x.DeprecatedPublicIPs - yym2648 := z.DecBinary() - _ = yym2648 + yyv2650 := &x.DeprecatedPublicIPs + yym2651 := z.DecBinary() + _ = yym2651 if false { } else { - z.F.DecSliceStringX(yyv2647, false, d) + z.F.DecSliceStringX(yyv2650, false, d) } } - yyj2638++ - if yyhl2638 { - yyb2638 = yyj2638 > l + yyj2641++ + if yyhl2641 { + yyb2641 = yyj2641 > l } else { - yyb2638 = r.CheckBreak() + yyb2641 = r.CheckBreak() } - if yyb2638 { + if yyb2641 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34625,13 +34681,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SessionAffinity = ServiceAffinity(r.DecodeString()) } - yyj2638++ - if yyhl2638 { - yyb2638 = yyj2638 > l + yyj2641++ + if yyhl2641 { + yyb2641 = yyj2641 > l } else { - yyb2638 = r.CheckBreak() + yyb2641 = r.CheckBreak() } - if yyb2638 { + if yyb2641 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34641,13 +34697,13 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LoadBalancerIP = string(r.DecodeString()) } - yyj2638++ - if yyhl2638 { - yyb2638 = yyj2638 > l + yyj2641++ + if yyhl2641 { + yyb2641 = yyj2641 > l } else { - yyb2638 = r.CheckBreak() + yyb2641 = r.CheckBreak() } - if yyb2638 { + if yyb2641 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34655,21 +34711,21 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LoadBalancerSourceRanges = nil } else { - yyv2651 := &x.LoadBalancerSourceRanges - yym2652 := z.DecBinary() - _ = yym2652 + yyv2654 := &x.LoadBalancerSourceRanges + yym2655 := z.DecBinary() + _ = yym2655 if false { } else { - z.F.DecSliceStringX(yyv2651, false, d) + z.F.DecSliceStringX(yyv2654, false, d) } } - yyj2638++ - if yyhl2638 { - yyb2638 = yyj2638 > l + yyj2641++ + if yyhl2641 { + yyb2641 = yyj2641 > l } else { - yyb2638 = r.CheckBreak() + yyb2641 = r.CheckBreak() } - if yyb2638 { + if yyb2641 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34680,17 +34736,17 @@ func (x *ServiceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.ExternalName = string(r.DecodeString()) } for { - yyj2638++ - if yyhl2638 { - yyb2638 = yyj2638 > l + yyj2641++ + if yyhl2641 { + yyb2641 = yyj2641 > l } else { - yyb2638 = r.CheckBreak() + yyb2641 = r.CheckBreak() } - if yyb2638 { + if yyb2641 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2638-1, "") + z.DecStructFieldNotFound(yyj2641-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -34702,38 +34758,38 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2654 := z.EncBinary() - _ = yym2654 + yym2657 := z.EncBinary() + _ = yym2657 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2655 := !z.EncBinary() - yy2arr2655 := z.EncBasicHandle().StructToArray - var yyq2655 [5]bool - _, _, _ = yysep2655, yyq2655, yy2arr2655 - const yyr2655 bool = false - yyq2655[0] = x.Name != "" - yyq2655[1] = x.Protocol != "" - yyq2655[3] = true - yyq2655[4] = x.NodePort != 0 - var yynn2655 int - if yyr2655 || yy2arr2655 { + yysep2658 := !z.EncBinary() + yy2arr2658 := z.EncBasicHandle().StructToArray + var yyq2658 [5]bool + _, _, _ = yysep2658, yyq2658, yy2arr2658 + const yyr2658 bool = false + yyq2658[0] = x.Name != "" + yyq2658[1] = x.Protocol != "" + yyq2658[3] = true + yyq2658[4] = x.NodePort != 0 + var yynn2658 int + if yyr2658 || yy2arr2658 { r.EncodeArrayStart(5) } else { - yynn2655 = 1 - for _, b := range yyq2655 { + yynn2658 = 1 + for _, b := range yyq2658 { if b { - yynn2655++ + yynn2658++ } } - r.EncodeMapStart(yynn2655) - yynn2655 = 0 + r.EncodeMapStart(yynn2658) + yynn2658 = 0 } - if yyr2655 || yy2arr2655 { + if yyr2658 || yy2arr2658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2655[0] { - yym2657 := z.EncBinary() - _ = yym2657 + if yyq2658[0] { + yym2660 := z.EncBinary() + _ = yym2660 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -34742,37 +34798,37 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2655[0] { + if yyq2658[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2658 := z.EncBinary() - _ = yym2658 + yym2661 := z.EncBinary() + _ = yym2661 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2655 || yy2arr2655 { + if yyr2658 || yy2arr2658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2655[1] { + if yyq2658[1] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2655[1] { + if yyq2658[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2655 || yy2arr2655 { + if yyr2658 || yy2arr2658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2661 := z.EncBinary() - _ = yym2661 + yym2664 := z.EncBinary() + _ = yym2664 if false { } else { r.EncodeInt(int64(x.Port)) @@ -34781,51 +34837,51 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2662 := z.EncBinary() - _ = yym2662 + yym2665 := z.EncBinary() + _ = yym2665 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2655 || yy2arr2655 { + if yyr2658 || yy2arr2658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2655[3] { - yy2664 := &x.TargetPort - yym2665 := z.EncBinary() - _ = yym2665 + if yyq2658[3] { + yy2667 := &x.TargetPort + yym2668 := z.EncBinary() + _ = yym2668 if false { - } else if z.HasExtensions() && z.EncExt(yy2664) { - } else if !yym2665 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2664) + } else if z.HasExtensions() && z.EncExt(yy2667) { + } else if !yym2668 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2667) } else { - z.EncFallback(yy2664) + z.EncFallback(yy2667) } } else { r.EncodeNil() } } else { - if yyq2655[3] { + if yyq2658[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetPort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2666 := &x.TargetPort - yym2667 := z.EncBinary() - _ = yym2667 + yy2669 := &x.TargetPort + yym2670 := z.EncBinary() + _ = yym2670 if false { - } else if z.HasExtensions() && z.EncExt(yy2666) { - } else if !yym2667 && z.IsJSONHandle() { - z.EncJSONMarshal(yy2666) + } else if z.HasExtensions() && z.EncExt(yy2669) { + } else if !yym2670 && z.IsJSONHandle() { + z.EncJSONMarshal(yy2669) } else { - z.EncFallback(yy2666) + z.EncFallback(yy2669) } } } - if yyr2655 || yy2arr2655 { + if yyr2658 || yy2arr2658 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2655[4] { - yym2669 := z.EncBinary() - _ = yym2669 + if yyq2658[4] { + yym2672 := z.EncBinary() + _ = yym2672 if false { } else { r.EncodeInt(int64(x.NodePort)) @@ -34834,19 +34890,19 @@ func (x *ServicePort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq2655[4] { + if yyq2658[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodePort")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2670 := z.EncBinary() - _ = yym2670 + yym2673 := z.EncBinary() + _ = yym2673 if false { } else { r.EncodeInt(int64(x.NodePort)) } } } - if yyr2655 || yy2arr2655 { + if yyr2658 || yy2arr2658 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -34859,25 +34915,25 @@ func (x *ServicePort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2671 := z.DecBinary() - _ = yym2671 + yym2674 := z.DecBinary() + _ = yym2674 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2672 := r.ContainerType() - if yyct2672 == codecSelferValueTypeMap1234 { - yyl2672 := r.ReadMapStart() - if yyl2672 == 0 { + yyct2675 := r.ContainerType() + if yyct2675 == codecSelferValueTypeMap1234 { + yyl2675 := r.ReadMapStart() + if yyl2675 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2672, d) + x.codecDecodeSelfFromMap(yyl2675, d) } - } else if yyct2672 == codecSelferValueTypeArray1234 { - yyl2672 := r.ReadArrayStart() - if yyl2672 == 0 { + } else if yyct2675 == codecSelferValueTypeArray1234 { + yyl2675 := r.ReadArrayStart() + if yyl2675 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2672, d) + x.codecDecodeSelfFromArray(yyl2675, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -34889,12 +34945,12 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2673Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2673Slc - var yyhl2673 bool = l >= 0 - for yyj2673 := 0; ; yyj2673++ { - if yyhl2673 { - if yyj2673 >= l { + var yys2676Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2676Slc + var yyhl2676 bool = l >= 0 + for yyj2676 := 0; ; yyj2676++ { + if yyhl2676 { + if yyj2676 >= l { break } } else { @@ -34903,10 +34959,10 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2673Slc = r.DecodeBytes(yys2673Slc, true, true) - yys2673 := string(yys2673Slc) + yys2676Slc = r.DecodeBytes(yys2676Slc, true, true) + yys2676 := string(yys2676Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2673 { + switch yys2676 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -34929,15 +34985,15 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2677 := &x.TargetPort - yym2678 := z.DecBinary() - _ = yym2678 + yyv2680 := &x.TargetPort + yym2681 := z.DecBinary() + _ = yym2681 if false { - } else if z.HasExtensions() && z.DecExt(yyv2677) { - } else if !yym2678 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2677) + } else if z.HasExtensions() && z.DecExt(yyv2680) { + } else if !yym2681 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2680) } else { - z.DecFallback(yyv2677, false) + z.DecFallback(yyv2680, false) } } case "nodePort": @@ -34947,9 +35003,9 @@ func (x *ServicePort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2673) - } // end switch yys2673 - } // end for yyj2673 + z.DecStructFieldNotFound(-1, yys2676) + } // end switch yys2676 + } // end for yyj2676 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -34957,16 +35013,16 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2680 int - var yyb2680 bool - var yyhl2680 bool = l >= 0 - yyj2680++ - if yyhl2680 { - yyb2680 = yyj2680 > l + var yyj2683 int + var yyb2683 bool + var yyhl2683 bool = l >= 0 + yyj2683++ + if yyhl2683 { + yyb2683 = yyj2683 > l } else { - yyb2680 = r.CheckBreak() + yyb2683 = r.CheckBreak() } - if yyb2680 { + if yyb2683 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34976,13 +35032,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2680++ - if yyhl2680 { - yyb2680 = yyj2680 > l + yyj2683++ + if yyhl2683 { + yyb2683 = yyj2683 > l } else { - yyb2680 = r.CheckBreak() + yyb2683 = r.CheckBreak() } - if yyb2680 { + if yyb2683 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -34992,13 +35048,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Protocol = Protocol(r.DecodeString()) } - yyj2680++ - if yyhl2680 { - yyb2680 = yyj2680 > l + yyj2683++ + if yyhl2683 { + yyb2683 = yyj2683 > l } else { - yyb2680 = r.CheckBreak() + yyb2683 = r.CheckBreak() } - if yyb2680 { + if yyb2683 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35008,13 +35064,13 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2680++ - if yyhl2680 { - yyb2680 = yyj2680 > l + yyj2683++ + if yyhl2683 { + yyb2683 = yyj2683 > l } else { - yyb2680 = r.CheckBreak() + yyb2683 = r.CheckBreak() } - if yyb2680 { + if yyb2683 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35022,24 +35078,24 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.TargetPort = pkg4_intstr.IntOrString{} } else { - yyv2684 := &x.TargetPort - yym2685 := z.DecBinary() - _ = yym2685 + yyv2687 := &x.TargetPort + yym2688 := z.DecBinary() + _ = yym2688 if false { - } else if z.HasExtensions() && z.DecExt(yyv2684) { - } else if !yym2685 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv2684) + } else if z.HasExtensions() && z.DecExt(yyv2687) { + } else if !yym2688 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv2687) } else { - z.DecFallback(yyv2684, false) + z.DecFallback(yyv2687, false) } } - yyj2680++ - if yyhl2680 { - yyb2680 = yyj2680 > l + yyj2683++ + if yyhl2683 { + yyb2683 = yyj2683 > l } else { - yyb2680 = r.CheckBreak() + yyb2683 = r.CheckBreak() } - if yyb2680 { + if yyb2683 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35050,17 +35106,17 @@ func (x *ServicePort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.NodePort = int32(r.DecodeInt(32)) } for { - yyj2680++ - if yyhl2680 { - yyb2680 = yyj2680 > l + yyj2683++ + if yyhl2683 { + yyb2683 = yyj2683 > l } else { - yyb2680 = r.CheckBreak() + yyb2683 = r.CheckBreak() } - if yyb2680 { + if yyb2683 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2680-1, "") + z.DecStructFieldNotFound(yyj2683-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35072,136 +35128,136 @@ func (x *Service) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2687 := z.EncBinary() - _ = yym2687 + yym2690 := z.EncBinary() + _ = yym2690 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2688 := !z.EncBinary() - yy2arr2688 := z.EncBasicHandle().StructToArray - var yyq2688 [5]bool - _, _, _ = yysep2688, yyq2688, yy2arr2688 - const yyr2688 bool = false - yyq2688[0] = x.Kind != "" - yyq2688[1] = x.APIVersion != "" - yyq2688[2] = true - yyq2688[3] = true - yyq2688[4] = true - var yynn2688 int - if yyr2688 || yy2arr2688 { + yysep2691 := !z.EncBinary() + yy2arr2691 := z.EncBasicHandle().StructToArray + var yyq2691 [5]bool + _, _, _ = yysep2691, yyq2691, yy2arr2691 + const yyr2691 bool = false + yyq2691[0] = x.Kind != "" + yyq2691[1] = x.APIVersion != "" + yyq2691[2] = true + yyq2691[3] = true + yyq2691[4] = true + var yynn2691 int + if yyr2691 || yy2arr2691 { r.EncodeArrayStart(5) } else { - yynn2688 = 0 - for _, b := range yyq2688 { + yynn2691 = 0 + for _, b := range yyq2691 { if b { - yynn2688++ + yynn2691++ } } - r.EncodeMapStart(yynn2688) - yynn2688 = 0 + r.EncodeMapStart(yynn2691) + yynn2691 = 0 } - if yyr2688 || yy2arr2688 { + if yyr2691 || yy2arr2691 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2688[0] { - yym2690 := z.EncBinary() - _ = yym2690 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2688[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2691 := z.EncBinary() - _ = yym2691 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2688 || yy2arr2688 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2688[1] { + if yyq2691[0] { yym2693 := z.EncBinary() _ = yym2693 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2688[1] { + if yyq2691[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2694 := z.EncBinary() _ = yym2694 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2691 || yy2arr2691 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2691[1] { + yym2696 := z.EncBinary() + _ = yym2696 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2691[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2697 := z.EncBinary() + _ = yym2697 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2688 || yy2arr2688 { + if yyr2691 || yy2arr2691 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2688[2] { - yy2696 := &x.ObjectMeta - yy2696.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq2688[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2697 := &x.ObjectMeta - yy2697.CodecEncodeSelf(e) - } - } - if yyr2688 || yy2arr2688 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2688[3] { - yy2699 := &x.Spec + if yyq2691[2] { + yy2699 := &x.ObjectMeta yy2699.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2688[3] { + if yyq2691[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2700 := &x.Spec + yy2700 := &x.ObjectMeta yy2700.CodecEncodeSelf(e) } } - if yyr2688 || yy2arr2688 { + if yyr2691 || yy2arr2691 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2688[4] { - yy2702 := &x.Status + if yyq2691[3] { + yy2702 := &x.Spec yy2702.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2688[4] { + if yyq2691[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) + r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2703 := &x.Status + yy2703 := &x.Spec yy2703.CodecEncodeSelf(e) } } - if yyr2688 || yy2arr2688 { + if yyr2691 || yy2arr2691 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2691[4] { + yy2705 := &x.Status + yy2705.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq2691[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy2706 := &x.Status + yy2706.CodecEncodeSelf(e) + } + } + if yyr2691 || yy2arr2691 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35214,25 +35270,25 @@ func (x *Service) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2704 := z.DecBinary() - _ = yym2704 + yym2707 := z.DecBinary() + _ = yym2707 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2705 := r.ContainerType() - if yyct2705 == codecSelferValueTypeMap1234 { - yyl2705 := r.ReadMapStart() - if yyl2705 == 0 { + yyct2708 := r.ContainerType() + if yyct2708 == codecSelferValueTypeMap1234 { + yyl2708 := r.ReadMapStart() + if yyl2708 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2705, d) + x.codecDecodeSelfFromMap(yyl2708, d) } - } else if yyct2705 == codecSelferValueTypeArray1234 { - yyl2705 := r.ReadArrayStart() - if yyl2705 == 0 { + } else if yyct2708 == codecSelferValueTypeArray1234 { + yyl2708 := r.ReadArrayStart() + if yyl2708 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2705, d) + x.codecDecodeSelfFromArray(yyl2708, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35244,12 +35300,12 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2706Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2706Slc - var yyhl2706 bool = l >= 0 - for yyj2706 := 0; ; yyj2706++ { - if yyhl2706 { - if yyj2706 >= l { + var yys2709Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2709Slc + var yyhl2709 bool = l >= 0 + for yyj2709 := 0; ; yyj2709++ { + if yyhl2709 { + if yyj2709 >= l { break } } else { @@ -35258,10 +35314,10 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2706Slc = r.DecodeBytes(yys2706Slc, true, true) - yys2706 := string(yys2706Slc) + yys2709Slc = r.DecodeBytes(yys2709Slc, true, true) + yys2709 := string(yys2709Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2706 { + switch yys2709 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35278,27 +35334,27 @@ func (x *Service) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2709 := &x.ObjectMeta - yyv2709.CodecDecodeSelf(d) + yyv2712 := &x.ObjectMeta + yyv2712.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2710 := &x.Spec - yyv2710.CodecDecodeSelf(d) + yyv2713 := &x.Spec + yyv2713.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2711 := &x.Status - yyv2711.CodecDecodeSelf(d) + yyv2714 := &x.Status + yyv2714.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2706) - } // end switch yys2706 - } // end for yyj2706 + z.DecStructFieldNotFound(-1, yys2709) + } // end switch yys2709 + } // end for yyj2709 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35306,16 +35362,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2712 int - var yyb2712 bool - var yyhl2712 bool = l >= 0 - yyj2712++ - if yyhl2712 { - yyb2712 = yyj2712 > l + var yyj2715 int + var yyb2715 bool + var yyhl2715 bool = l >= 0 + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2712 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2712 { + if yyb2715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35325,13 +35381,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2712++ - if yyhl2712 { - yyb2712 = yyj2712 > l + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2712 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2712 { + if yyb2715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35341,13 +35397,13 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2712++ - if yyhl2712 { - yyb2712 = yyj2712 > l + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2712 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2712 { + if yyb2715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35355,16 +35411,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2715 := &x.ObjectMeta - yyv2715.CodecDecodeSelf(d) + yyv2718 := &x.ObjectMeta + yyv2718.CodecDecodeSelf(d) } - yyj2712++ - if yyhl2712 { - yyb2712 = yyj2712 > l + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2712 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2712 { + if yyb2715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35372,16 +35428,16 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ServiceSpec{} } else { - yyv2716 := &x.Spec - yyv2716.CodecDecodeSelf(d) + yyv2719 := &x.Spec + yyv2719.CodecDecodeSelf(d) } - yyj2712++ - if yyhl2712 { - yyb2712 = yyj2712 > l + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2712 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2712 { + if yyb2715 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35389,21 +35445,21 @@ func (x *Service) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ServiceStatus{} } else { - yyv2717 := &x.Status - yyv2717.CodecDecodeSelf(d) + yyv2720 := &x.Status + yyv2720.CodecDecodeSelf(d) } for { - yyj2712++ - if yyhl2712 { - yyb2712 = yyj2712 > l + yyj2715++ + if yyhl2715 { + yyb2715 = yyj2715 > l } else { - yyb2712 = r.CheckBreak() + yyb2715 = r.CheckBreak() } - if yyb2712 { + if yyb2715 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2712-1, "") + z.DecStructFieldNotFound(yyj2715-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35415,118 +35471,118 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2718 := z.EncBinary() - _ = yym2718 + yym2721 := z.EncBinary() + _ = yym2721 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2719 := !z.EncBinary() - yy2arr2719 := z.EncBasicHandle().StructToArray - var yyq2719 [4]bool - _, _, _ = yysep2719, yyq2719, yy2arr2719 - const yyr2719 bool = false - yyq2719[0] = x.Kind != "" - yyq2719[1] = x.APIVersion != "" - yyq2719[2] = true - var yynn2719 int - if yyr2719 || yy2arr2719 { + yysep2722 := !z.EncBinary() + yy2arr2722 := z.EncBasicHandle().StructToArray + var yyq2722 [4]bool + _, _, _ = yysep2722, yyq2722, yy2arr2722 + const yyr2722 bool = false + yyq2722[0] = x.Kind != "" + yyq2722[1] = x.APIVersion != "" + yyq2722[2] = true + var yynn2722 int + if yyr2722 || yy2arr2722 { r.EncodeArrayStart(4) } else { - yynn2719 = 1 - for _, b := range yyq2719 { + yynn2722 = 1 + for _, b := range yyq2722 { if b { - yynn2719++ + yynn2722++ } } - r.EncodeMapStart(yynn2719) - yynn2719 = 0 + r.EncodeMapStart(yynn2722) + yynn2722 = 0 } - if yyr2719 || yy2arr2719 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2719[0] { - yym2721 := z.EncBinary() - _ = yym2721 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2719[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2722 := z.EncBinary() - _ = yym2722 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2719 || yy2arr2719 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2719[1] { + if yyq2722[0] { yym2724 := z.EncBinary() _ = yym2724 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2719[1] { + if yyq2722[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2725 := z.EncBinary() _ = yym2725 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2722 || yy2arr2722 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2722[1] { + yym2727 := z.EncBinary() + _ = yym2727 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2722[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2728 := z.EncBinary() + _ = yym2728 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2719 || yy2arr2719 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2719[2] { - yy2727 := &x.ListMeta - yym2728 := z.EncBinary() - _ = yym2728 + if yyq2722[2] { + yy2730 := &x.ListMeta + yym2731 := z.EncBinary() + _ = yym2731 if false { - } else if z.HasExtensions() && z.EncExt(yy2727) { + } else if z.HasExtensions() && z.EncExt(yy2730) { } else { - z.EncFallback(yy2727) + z.EncFallback(yy2730) } } else { r.EncodeNil() } } else { - if yyq2719[2] { + if yyq2722[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2729 := &x.ListMeta - yym2730 := z.EncBinary() - _ = yym2730 + yy2732 := &x.ListMeta + yym2733 := z.EncBinary() + _ = yym2733 if false { - } else if z.HasExtensions() && z.EncExt(yy2729) { + } else if z.HasExtensions() && z.EncExt(yy2732) { } else { - z.EncFallback(yy2729) + z.EncFallback(yy2732) } } } - if yyr2719 || yy2arr2719 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2732 := z.EncBinary() - _ = yym2732 + yym2735 := z.EncBinary() + _ = yym2735 if false { } else { h.encSliceService(([]Service)(x.Items), e) @@ -35539,15 +35595,15 @@ func (x *ServiceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2733 := z.EncBinary() - _ = yym2733 + yym2736 := z.EncBinary() + _ = yym2736 if false { } else { h.encSliceService(([]Service)(x.Items), e) } } } - if yyr2719 || yy2arr2719 { + if yyr2722 || yy2arr2722 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35560,25 +35616,25 @@ func (x *ServiceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2734 := z.DecBinary() - _ = yym2734 + yym2737 := z.DecBinary() + _ = yym2737 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2735 := r.ContainerType() - if yyct2735 == codecSelferValueTypeMap1234 { - yyl2735 := r.ReadMapStart() - if yyl2735 == 0 { + yyct2738 := r.ContainerType() + if yyct2738 == codecSelferValueTypeMap1234 { + yyl2738 := r.ReadMapStart() + if yyl2738 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2735, d) + x.codecDecodeSelfFromMap(yyl2738, d) } - } else if yyct2735 == codecSelferValueTypeArray1234 { - yyl2735 := r.ReadArrayStart() - if yyl2735 == 0 { + } else if yyct2738 == codecSelferValueTypeArray1234 { + yyl2738 := r.ReadArrayStart() + if yyl2738 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2735, d) + x.codecDecodeSelfFromArray(yyl2738, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35590,12 +35646,12 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2736Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2736Slc - var yyhl2736 bool = l >= 0 - for yyj2736 := 0; ; yyj2736++ { - if yyhl2736 { - if yyj2736 >= l { + var yys2739Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2739Slc + var yyhl2739 bool = l >= 0 + for yyj2739 := 0; ; yyj2739++ { + if yyhl2739 { + if yyj2739 >= l { break } } else { @@ -35604,10 +35660,10 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2736Slc = r.DecodeBytes(yys2736Slc, true, true) - yys2736 := string(yys2736Slc) + yys2739Slc = r.DecodeBytes(yys2739Slc, true, true) + yys2739 := string(yys2739Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2736 { + switch yys2739 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35624,31 +35680,31 @@ func (x *ServiceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2739 := &x.ListMeta - yym2740 := z.DecBinary() - _ = yym2740 + yyv2742 := &x.ListMeta + yym2743 := z.DecBinary() + _ = yym2743 if false { - } else if z.HasExtensions() && z.DecExt(yyv2739) { + } else if z.HasExtensions() && z.DecExt(yyv2742) { } else { - z.DecFallback(yyv2739, false) + z.DecFallback(yyv2742, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2741 := &x.Items - yym2742 := z.DecBinary() - _ = yym2742 + yyv2744 := &x.Items + yym2745 := z.DecBinary() + _ = yym2745 if false { } else { - h.decSliceService((*[]Service)(yyv2741), d) + h.decSliceService((*[]Service)(yyv2744), d) } } default: - z.DecStructFieldNotFound(-1, yys2736) - } // end switch yys2736 - } // end for yyj2736 + z.DecStructFieldNotFound(-1, yys2739) + } // end switch yys2739 + } // end for yyj2739 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -35656,16 +35712,16 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2743 int - var yyb2743 bool - var yyhl2743 bool = l >= 0 - yyj2743++ - if yyhl2743 { - yyb2743 = yyj2743 > l + var yyj2746 int + var yyb2746 bool + var yyhl2746 bool = l >= 0 + yyj2746++ + if yyhl2746 { + yyb2746 = yyj2746 > l } else { - yyb2743 = r.CheckBreak() + yyb2746 = r.CheckBreak() } - if yyb2743 { + if yyb2746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35675,13 +35731,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2743++ - if yyhl2743 { - yyb2743 = yyj2743 > l + yyj2746++ + if yyhl2746 { + yyb2746 = yyj2746 > l } else { - yyb2743 = r.CheckBreak() + yyb2746 = r.CheckBreak() } - if yyb2743 { + if yyb2746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35691,13 +35747,13 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2743++ - if yyhl2743 { - yyb2743 = yyj2743 > l + yyj2746++ + if yyhl2746 { + yyb2746 = yyj2746 > l } else { - yyb2743 = r.CheckBreak() + yyb2746 = r.CheckBreak() } - if yyb2743 { + if yyb2746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35705,22 +35761,22 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2746 := &x.ListMeta - yym2747 := z.DecBinary() - _ = yym2747 + yyv2749 := &x.ListMeta + yym2750 := z.DecBinary() + _ = yym2750 if false { - } else if z.HasExtensions() && z.DecExt(yyv2746) { + } else if z.HasExtensions() && z.DecExt(yyv2749) { } else { - z.DecFallback(yyv2746, false) + z.DecFallback(yyv2749, false) } } - yyj2743++ - if yyhl2743 { - yyb2743 = yyj2743 > l + yyj2746++ + if yyhl2746 { + yyb2746 = yyj2746 > l } else { - yyb2743 = r.CheckBreak() + yyb2746 = r.CheckBreak() } - if yyb2743 { + if yyb2746 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -35728,26 +35784,26 @@ func (x *ServiceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2748 := &x.Items - yym2749 := z.DecBinary() - _ = yym2749 + yyv2751 := &x.Items + yym2752 := z.DecBinary() + _ = yym2752 if false { } else { - h.decSliceService((*[]Service)(yyv2748), d) + h.decSliceService((*[]Service)(yyv2751), d) } } for { - yyj2743++ - if yyhl2743 { - yyb2743 = yyj2743 > l + yyj2746++ + if yyhl2746 { + yyb2746 = yyj2746 > l } else { - yyb2743 = r.CheckBreak() + yyb2746 = r.CheckBreak() } - if yyb2743 { + if yyb2746 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2743-1, "") + z.DecStructFieldNotFound(yyj2746-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -35759,143 +35815,143 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2750 := z.EncBinary() - _ = yym2750 + yym2753 := z.EncBinary() + _ = yym2753 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2751 := !z.EncBinary() - yy2arr2751 := z.EncBasicHandle().StructToArray - var yyq2751 [5]bool - _, _, _ = yysep2751, yyq2751, yy2arr2751 - const yyr2751 bool = false - yyq2751[0] = x.Kind != "" - yyq2751[1] = x.APIVersion != "" - yyq2751[2] = true - yyq2751[3] = len(x.Secrets) != 0 - yyq2751[4] = len(x.ImagePullSecrets) != 0 - var yynn2751 int - if yyr2751 || yy2arr2751 { + yysep2754 := !z.EncBinary() + yy2arr2754 := z.EncBasicHandle().StructToArray + var yyq2754 [5]bool + _, _, _ = yysep2754, yyq2754, yy2arr2754 + const yyr2754 bool = false + yyq2754[0] = x.Kind != "" + yyq2754[1] = x.APIVersion != "" + yyq2754[2] = true + yyq2754[3] = len(x.Secrets) != 0 + yyq2754[4] = len(x.ImagePullSecrets) != 0 + var yynn2754 int + if yyr2754 || yy2arr2754 { r.EncodeArrayStart(5) } else { - yynn2751 = 0 - for _, b := range yyq2751 { + yynn2754 = 0 + for _, b := range yyq2754 { if b { - yynn2751++ + yynn2754++ } } - r.EncodeMapStart(yynn2751) - yynn2751 = 0 + r.EncodeMapStart(yynn2754) + yynn2754 = 0 } - if yyr2751 || yy2arr2751 { + if yyr2754 || yy2arr2754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2751[0] { - yym2753 := z.EncBinary() - _ = yym2753 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2751[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2754 := z.EncBinary() - _ = yym2754 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2751 || yy2arr2751 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2751[1] { + if yyq2754[0] { yym2756 := z.EncBinary() _ = yym2756 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2751[1] { + if yyq2754[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2757 := z.EncBinary() _ = yym2757 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2754 || yy2arr2754 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2754[1] { + yym2759 := z.EncBinary() + _ = yym2759 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2754[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2760 := z.EncBinary() + _ = yym2760 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2751 || yy2arr2751 { + if yyr2754 || yy2arr2754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2751[2] { - yy2759 := &x.ObjectMeta - yy2759.CodecEncodeSelf(e) + if yyq2754[2] { + yy2762 := &x.ObjectMeta + yy2762.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2751[2] { + if yyq2754[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2760 := &x.ObjectMeta - yy2760.CodecEncodeSelf(e) + yy2763 := &x.ObjectMeta + yy2763.CodecEncodeSelf(e) } } - if yyr2751 || yy2arr2751 { + if yyr2754 || yy2arr2754 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2751[3] { + if yyq2754[3] { if x.Secrets == nil { r.EncodeNil() - } else { - yym2762 := z.EncBinary() - _ = yym2762 - if false { - } else { - h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2751[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("secrets")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Secrets == nil { - r.EncodeNil() - } else { - yym2763 := z.EncBinary() - _ = yym2763 - if false { - } else { - h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) - } - } - } - } - if yyr2751 || yy2arr2751 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2751[4] { - if x.ImagePullSecrets == nil { - r.EncodeNil() } else { yym2765 := z.EncBinary() _ = yym2765 if false { + } else { + h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2754[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("secrets")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Secrets == nil { + r.EncodeNil() + } else { + yym2766 := z.EncBinary() + _ = yym2766 + if false { + } else { + h.encSliceObjectReference(([]ObjectReference)(x.Secrets), e) + } + } + } + } + if yyr2754 || yy2arr2754 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2754[4] { + if x.ImagePullSecrets == nil { + r.EncodeNil() + } else { + yym2768 := z.EncBinary() + _ = yym2768 + if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) } @@ -35904,15 +35960,15 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2751[4] { + if yyq2754[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("imagePullSecrets")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ImagePullSecrets == nil { r.EncodeNil() } else { - yym2766 := z.EncBinary() - _ = yym2766 + yym2769 := z.EncBinary() + _ = yym2769 if false { } else { h.encSliceLocalObjectReference(([]LocalObjectReference)(x.ImagePullSecrets), e) @@ -35920,7 +35976,7 @@ func (x *ServiceAccount) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2751 || yy2arr2751 { + if yyr2754 || yy2arr2754 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -35933,25 +35989,25 @@ func (x *ServiceAccount) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2767 := z.DecBinary() - _ = yym2767 + yym2770 := z.DecBinary() + _ = yym2770 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2768 := r.ContainerType() - if yyct2768 == codecSelferValueTypeMap1234 { - yyl2768 := r.ReadMapStart() - if yyl2768 == 0 { + yyct2771 := r.ContainerType() + if yyct2771 == codecSelferValueTypeMap1234 { + yyl2771 := r.ReadMapStart() + if yyl2771 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2768, d) + x.codecDecodeSelfFromMap(yyl2771, d) } - } else if yyct2768 == codecSelferValueTypeArray1234 { - yyl2768 := r.ReadArrayStart() - if yyl2768 == 0 { + } else if yyct2771 == codecSelferValueTypeArray1234 { + yyl2771 := r.ReadArrayStart() + if yyl2771 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2768, d) + x.codecDecodeSelfFromArray(yyl2771, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -35963,12 +36019,12 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2769Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2769Slc - var yyhl2769 bool = l >= 0 - for yyj2769 := 0; ; yyj2769++ { - if yyhl2769 { - if yyj2769 >= l { + var yys2772Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2772Slc + var yyhl2772 bool = l >= 0 + for yyj2772 := 0; ; yyj2772++ { + if yyhl2772 { + if yyj2772 >= l { break } } else { @@ -35977,10 +36033,10 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2769Slc = r.DecodeBytes(yys2769Slc, true, true) - yys2769 := string(yys2769Slc) + yys2772Slc = r.DecodeBytes(yys2772Slc, true, true) + yys2772 := string(yys2772Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2769 { + switch yys2772 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -35997,37 +36053,37 @@ func (x *ServiceAccount) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2772 := &x.ObjectMeta - yyv2772.CodecDecodeSelf(d) + yyv2775 := &x.ObjectMeta + yyv2775.CodecDecodeSelf(d) } case "secrets": if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2773 := &x.Secrets - yym2774 := z.DecBinary() - _ = yym2774 + yyv2776 := &x.Secrets + yym2777 := z.DecBinary() + _ = yym2777 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2773), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2776), d) } } case "imagePullSecrets": if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2775 := &x.ImagePullSecrets - yym2776 := z.DecBinary() - _ = yym2776 + yyv2778 := &x.ImagePullSecrets + yym2779 := z.DecBinary() + _ = yym2779 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2775), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2778), d) } } default: - z.DecStructFieldNotFound(-1, yys2769) - } // end switch yys2769 - } // end for yyj2769 + z.DecStructFieldNotFound(-1, yys2772) + } // end switch yys2772 + } // end for yyj2772 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36035,16 +36091,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2777 int - var yyb2777 bool - var yyhl2777 bool = l >= 0 - yyj2777++ - if yyhl2777 { - yyb2777 = yyj2777 > l + var yyj2780 int + var yyb2780 bool + var yyhl2780 bool = l >= 0 + yyj2780++ + if yyhl2780 { + yyb2780 = yyj2780 > l } else { - yyb2777 = r.CheckBreak() + yyb2780 = r.CheckBreak() } - if yyb2777 { + if yyb2780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36054,13 +36110,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2777++ - if yyhl2777 { - yyb2777 = yyj2777 > l + yyj2780++ + if yyhl2780 { + yyb2780 = yyj2780 > l } else { - yyb2777 = r.CheckBreak() + yyb2780 = r.CheckBreak() } - if yyb2777 { + if yyb2780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36070,13 +36126,13 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2777++ - if yyhl2777 { - yyb2777 = yyj2777 > l + yyj2780++ + if yyhl2780 { + yyb2780 = yyj2780 > l } else { - yyb2777 = r.CheckBreak() + yyb2780 = r.CheckBreak() } - if yyb2777 { + if yyb2780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36084,16 +36140,16 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2780 := &x.ObjectMeta - yyv2780.CodecDecodeSelf(d) + yyv2783 := &x.ObjectMeta + yyv2783.CodecDecodeSelf(d) } - yyj2777++ - if yyhl2777 { - yyb2777 = yyj2777 > l + yyj2780++ + if yyhl2780 { + yyb2780 = yyj2780 > l } else { - yyb2777 = r.CheckBreak() + yyb2780 = r.CheckBreak() } - if yyb2777 { + if yyb2780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36101,21 +36157,21 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Secrets = nil } else { - yyv2781 := &x.Secrets - yym2782 := z.DecBinary() - _ = yym2782 + yyv2784 := &x.Secrets + yym2785 := z.DecBinary() + _ = yym2785 if false { } else { - h.decSliceObjectReference((*[]ObjectReference)(yyv2781), d) + h.decSliceObjectReference((*[]ObjectReference)(yyv2784), d) } } - yyj2777++ - if yyhl2777 { - yyb2777 = yyj2777 > l + yyj2780++ + if yyhl2780 { + yyb2780 = yyj2780 > l } else { - yyb2777 = r.CheckBreak() + yyb2780 = r.CheckBreak() } - if yyb2777 { + if yyb2780 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36123,26 +36179,26 @@ func (x *ServiceAccount) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ImagePullSecrets = nil } else { - yyv2783 := &x.ImagePullSecrets - yym2784 := z.DecBinary() - _ = yym2784 + yyv2786 := &x.ImagePullSecrets + yym2787 := z.DecBinary() + _ = yym2787 if false { } else { - h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2783), d) + h.decSliceLocalObjectReference((*[]LocalObjectReference)(yyv2786), d) } } for { - yyj2777++ - if yyhl2777 { - yyb2777 = yyj2777 > l + yyj2780++ + if yyhl2780 { + yyb2780 = yyj2780 > l } else { - yyb2777 = r.CheckBreak() + yyb2780 = r.CheckBreak() } - if yyb2777 { + if yyb2780 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2777-1, "") + z.DecStructFieldNotFound(yyj2780-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36154,118 +36210,118 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2785 := z.EncBinary() - _ = yym2785 + yym2788 := z.EncBinary() + _ = yym2788 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2786 := !z.EncBinary() - yy2arr2786 := z.EncBasicHandle().StructToArray - var yyq2786 [4]bool - _, _, _ = yysep2786, yyq2786, yy2arr2786 - const yyr2786 bool = false - yyq2786[0] = x.Kind != "" - yyq2786[1] = x.APIVersion != "" - yyq2786[2] = true - var yynn2786 int - if yyr2786 || yy2arr2786 { + yysep2789 := !z.EncBinary() + yy2arr2789 := z.EncBasicHandle().StructToArray + var yyq2789 [4]bool + _, _, _ = yysep2789, yyq2789, yy2arr2789 + const yyr2789 bool = false + yyq2789[0] = x.Kind != "" + yyq2789[1] = x.APIVersion != "" + yyq2789[2] = true + var yynn2789 int + if yyr2789 || yy2arr2789 { r.EncodeArrayStart(4) } else { - yynn2786 = 1 - for _, b := range yyq2786 { + yynn2789 = 1 + for _, b := range yyq2789 { if b { - yynn2786++ + yynn2789++ } } - r.EncodeMapStart(yynn2786) - yynn2786 = 0 + r.EncodeMapStart(yynn2789) + yynn2789 = 0 } - if yyr2786 || yy2arr2786 { + if yyr2789 || yy2arr2789 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2786[0] { - yym2788 := z.EncBinary() - _ = yym2788 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2786[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2789 := z.EncBinary() - _ = yym2789 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2786 || yy2arr2786 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2786[1] { + if yyq2789[0] { yym2791 := z.EncBinary() _ = yym2791 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2786[1] { + if yyq2789[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2792 := z.EncBinary() _ = yym2792 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2789 || yy2arr2789 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2789[1] { + yym2794 := z.EncBinary() + _ = yym2794 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2789[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2795 := z.EncBinary() + _ = yym2795 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2786 || yy2arr2786 { + if yyr2789 || yy2arr2789 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2786[2] { - yy2794 := &x.ListMeta - yym2795 := z.EncBinary() - _ = yym2795 + if yyq2789[2] { + yy2797 := &x.ListMeta + yym2798 := z.EncBinary() + _ = yym2798 if false { - } else if z.HasExtensions() && z.EncExt(yy2794) { + } else if z.HasExtensions() && z.EncExt(yy2797) { } else { - z.EncFallback(yy2794) + z.EncFallback(yy2797) } } else { r.EncodeNil() } } else { - if yyq2786[2] { + if yyq2789[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2796 := &x.ListMeta - yym2797 := z.EncBinary() - _ = yym2797 + yy2799 := &x.ListMeta + yym2800 := z.EncBinary() + _ = yym2800 if false { - } else if z.HasExtensions() && z.EncExt(yy2796) { + } else if z.HasExtensions() && z.EncExt(yy2799) { } else { - z.EncFallback(yy2796) + z.EncFallback(yy2799) } } } - if yyr2786 || yy2arr2786 { + if yyr2789 || yy2arr2789 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2799 := z.EncBinary() - _ = yym2799 + yym2802 := z.EncBinary() + _ = yym2802 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) @@ -36278,15 +36334,15 @@ func (x *ServiceAccountList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2800 := z.EncBinary() - _ = yym2800 + yym2803 := z.EncBinary() + _ = yym2803 if false { } else { h.encSliceServiceAccount(([]ServiceAccount)(x.Items), e) } } } - if yyr2786 || yy2arr2786 { + if yyr2789 || yy2arr2789 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36299,25 +36355,25 @@ func (x *ServiceAccountList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2801 := z.DecBinary() - _ = yym2801 + yym2804 := z.DecBinary() + _ = yym2804 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2802 := r.ContainerType() - if yyct2802 == codecSelferValueTypeMap1234 { - yyl2802 := r.ReadMapStart() - if yyl2802 == 0 { + yyct2805 := r.ContainerType() + if yyct2805 == codecSelferValueTypeMap1234 { + yyl2805 := r.ReadMapStart() + if yyl2805 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2802, d) + x.codecDecodeSelfFromMap(yyl2805, d) } - } else if yyct2802 == codecSelferValueTypeArray1234 { - yyl2802 := r.ReadArrayStart() - if yyl2802 == 0 { + } else if yyct2805 == codecSelferValueTypeArray1234 { + yyl2805 := r.ReadArrayStart() + if yyl2805 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2802, d) + x.codecDecodeSelfFromArray(yyl2805, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36329,12 +36385,12 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2803Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2803Slc - var yyhl2803 bool = l >= 0 - for yyj2803 := 0; ; yyj2803++ { - if yyhl2803 { - if yyj2803 >= l { + var yys2806Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2806Slc + var yyhl2806 bool = l >= 0 + for yyj2806 := 0; ; yyj2806++ { + if yyhl2806 { + if yyj2806 >= l { break } } else { @@ -36343,10 +36399,10 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2803Slc = r.DecodeBytes(yys2803Slc, true, true) - yys2803 := string(yys2803Slc) + yys2806Slc = r.DecodeBytes(yys2806Slc, true, true) + yys2806 := string(yys2806Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2803 { + switch yys2806 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36363,31 +36419,31 @@ func (x *ServiceAccountList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2806 := &x.ListMeta - yym2807 := z.DecBinary() - _ = yym2807 + yyv2809 := &x.ListMeta + yym2810 := z.DecBinary() + _ = yym2810 if false { - } else if z.HasExtensions() && z.DecExt(yyv2806) { + } else if z.HasExtensions() && z.DecExt(yyv2809) { } else { - z.DecFallback(yyv2806, false) + z.DecFallback(yyv2809, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2808 := &x.Items - yym2809 := z.DecBinary() - _ = yym2809 + yyv2811 := &x.Items + yym2812 := z.DecBinary() + _ = yym2812 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2808), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2811), d) } } default: - z.DecStructFieldNotFound(-1, yys2803) - } // end switch yys2803 - } // end for yyj2803 + z.DecStructFieldNotFound(-1, yys2806) + } // end switch yys2806 + } // end for yyj2806 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36395,16 +36451,16 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2810 int - var yyb2810 bool - var yyhl2810 bool = l >= 0 - yyj2810++ - if yyhl2810 { - yyb2810 = yyj2810 > l + var yyj2813 int + var yyb2813 bool + var yyhl2813 bool = l >= 0 + yyj2813++ + if yyhl2813 { + yyb2813 = yyj2813 > l } else { - yyb2810 = r.CheckBreak() + yyb2813 = r.CheckBreak() } - if yyb2810 { + if yyb2813 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36414,13 +36470,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Kind = string(r.DecodeString()) } - yyj2810++ - if yyhl2810 { - yyb2810 = yyj2810 > l + yyj2813++ + if yyhl2813 { + yyb2813 = yyj2813 > l } else { - yyb2810 = r.CheckBreak() + yyb2813 = r.CheckBreak() } - if yyb2810 { + if yyb2813 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36430,13 +36486,13 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.APIVersion = string(r.DecodeString()) } - yyj2810++ - if yyhl2810 { - yyb2810 = yyj2810 > l + yyj2813++ + if yyhl2813 { + yyb2813 = yyj2813 > l } else { - yyb2810 = r.CheckBreak() + yyb2813 = r.CheckBreak() } - if yyb2810 { + if yyb2813 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36444,22 +36500,22 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2813 := &x.ListMeta - yym2814 := z.DecBinary() - _ = yym2814 + yyv2816 := &x.ListMeta + yym2817 := z.DecBinary() + _ = yym2817 if false { - } else if z.HasExtensions() && z.DecExt(yyv2813) { + } else if z.HasExtensions() && z.DecExt(yyv2816) { } else { - z.DecFallback(yyv2813, false) + z.DecFallback(yyv2816, false) } } - yyj2810++ - if yyhl2810 { - yyb2810 = yyj2810 > l + yyj2813++ + if yyhl2813 { + yyb2813 = yyj2813 > l } else { - yyb2810 = r.CheckBreak() + yyb2813 = r.CheckBreak() } - if yyb2810 { + if yyb2813 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36467,26 +36523,26 @@ func (x *ServiceAccountList) codecDecodeSelfFromArray(l int, d *codec1978.Decode if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2815 := &x.Items - yym2816 := z.DecBinary() - _ = yym2816 + yyv2818 := &x.Items + yym2819 := z.DecBinary() + _ = yym2819 if false { } else { - h.decSliceServiceAccount((*[]ServiceAccount)(yyv2815), d) + h.decSliceServiceAccount((*[]ServiceAccount)(yyv2818), d) } } for { - yyj2810++ - if yyhl2810 { - yyb2810 = yyj2810 > l + yyj2813++ + if yyhl2813 { + yyb2813 = yyj2813 > l } else { - yyb2810 = r.CheckBreak() + yyb2813 = r.CheckBreak() } - if yyb2810 { + if yyb2813 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2810-1, "") + z.DecStructFieldNotFound(yyj2813-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36498,106 +36554,106 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2817 := z.EncBinary() - _ = yym2817 + yym2820 := z.EncBinary() + _ = yym2820 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2818 := !z.EncBinary() - yy2arr2818 := z.EncBasicHandle().StructToArray - var yyq2818 [4]bool - _, _, _ = yysep2818, yyq2818, yy2arr2818 - const yyr2818 bool = false - yyq2818[0] = x.Kind != "" - yyq2818[1] = x.APIVersion != "" - yyq2818[2] = true - var yynn2818 int - if yyr2818 || yy2arr2818 { + yysep2821 := !z.EncBinary() + yy2arr2821 := z.EncBasicHandle().StructToArray + var yyq2821 [4]bool + _, _, _ = yysep2821, yyq2821, yy2arr2821 + const yyr2821 bool = false + yyq2821[0] = x.Kind != "" + yyq2821[1] = x.APIVersion != "" + yyq2821[2] = true + var yynn2821 int + if yyr2821 || yy2arr2821 { r.EncodeArrayStart(4) } else { - yynn2818 = 1 - for _, b := range yyq2818 { + yynn2821 = 1 + for _, b := range yyq2821 { if b { - yynn2818++ + yynn2821++ } } - r.EncodeMapStart(yynn2818) - yynn2818 = 0 + r.EncodeMapStart(yynn2821) + yynn2821 = 0 } - if yyr2818 || yy2arr2818 { + if yyr2821 || yy2arr2821 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2818[0] { - yym2820 := z.EncBinary() - _ = yym2820 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2818[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2821 := z.EncBinary() - _ = yym2821 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2818 || yy2arr2818 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2818[1] { + if yyq2821[0] { yym2823 := z.EncBinary() _ = yym2823 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2818[1] { + if yyq2821[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2824 := z.EncBinary() _ = yym2824 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2821 || yy2arr2821 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2821[1] { + yym2826 := z.EncBinary() + _ = yym2826 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2821[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2827 := z.EncBinary() + _ = yym2827 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2818 || yy2arr2818 { + if yyr2821 || yy2arr2821 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2818[2] { - yy2826 := &x.ObjectMeta - yy2826.CodecEncodeSelf(e) + if yyq2821[2] { + yy2829 := &x.ObjectMeta + yy2829.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2818[2] { + if yyq2821[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2827 := &x.ObjectMeta - yy2827.CodecEncodeSelf(e) + yy2830 := &x.ObjectMeta + yy2830.CodecEncodeSelf(e) } } - if yyr2818 || yy2arr2818 { + if yyr2821 || yy2arr2821 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Subsets == nil { r.EncodeNil() } else { - yym2829 := z.EncBinary() - _ = yym2829 + yym2832 := z.EncBinary() + _ = yym2832 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) @@ -36610,15 +36666,15 @@ func (x *Endpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x.Subsets == nil { r.EncodeNil() } else { - yym2830 := z.EncBinary() - _ = yym2830 + yym2833 := z.EncBinary() + _ = yym2833 if false { } else { h.encSliceEndpointSubset(([]EndpointSubset)(x.Subsets), e) } } } - if yyr2818 || yy2arr2818 { + if yyr2821 || yy2arr2821 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36631,25 +36687,25 @@ func (x *Endpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2831 := z.DecBinary() - _ = yym2831 + yym2834 := z.DecBinary() + _ = yym2834 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2832 := r.ContainerType() - if yyct2832 == codecSelferValueTypeMap1234 { - yyl2832 := r.ReadMapStart() - if yyl2832 == 0 { + yyct2835 := r.ContainerType() + if yyct2835 == codecSelferValueTypeMap1234 { + yyl2835 := r.ReadMapStart() + if yyl2835 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2832, d) + x.codecDecodeSelfFromMap(yyl2835, d) } - } else if yyct2832 == codecSelferValueTypeArray1234 { - yyl2832 := r.ReadArrayStart() - if yyl2832 == 0 { + } else if yyct2835 == codecSelferValueTypeArray1234 { + yyl2835 := r.ReadArrayStart() + if yyl2835 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2832, d) + x.codecDecodeSelfFromArray(yyl2835, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36661,12 +36717,12 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2833Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2833Slc - var yyhl2833 bool = l >= 0 - for yyj2833 := 0; ; yyj2833++ { - if yyhl2833 { - if yyj2833 >= l { + var yys2836Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2836Slc + var yyhl2836 bool = l >= 0 + for yyj2836 := 0; ; yyj2836++ { + if yyhl2836 { + if yyj2836 >= l { break } } else { @@ -36675,10 +36731,10 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2833Slc = r.DecodeBytes(yys2833Slc, true, true) - yys2833 := string(yys2833Slc) + yys2836Slc = r.DecodeBytes(yys2836Slc, true, true) + yys2836 := string(yys2836Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2833 { + switch yys2836 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -36695,25 +36751,25 @@ func (x *Endpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2836 := &x.ObjectMeta - yyv2836.CodecDecodeSelf(d) + yyv2839 := &x.ObjectMeta + yyv2839.CodecDecodeSelf(d) } case "subsets": if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2837 := &x.Subsets - yym2838 := z.DecBinary() - _ = yym2838 + yyv2840 := &x.Subsets + yym2841 := z.DecBinary() + _ = yym2841 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2837), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2840), d) } } default: - z.DecStructFieldNotFound(-1, yys2833) - } // end switch yys2833 - } // end for yyj2833 + z.DecStructFieldNotFound(-1, yys2836) + } // end switch yys2836 + } // end for yyj2836 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -36721,16 +36777,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2839 int - var yyb2839 bool - var yyhl2839 bool = l >= 0 - yyj2839++ - if yyhl2839 { - yyb2839 = yyj2839 > l + var yyj2842 int + var yyb2842 bool + var yyhl2842 bool = l >= 0 + yyj2842++ + if yyhl2842 { + yyb2842 = yyj2842 > l } else { - yyb2839 = r.CheckBreak() + yyb2842 = r.CheckBreak() } - if yyb2839 { + if yyb2842 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36740,13 +36796,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2839++ - if yyhl2839 { - yyb2839 = yyj2839 > l + yyj2842++ + if yyhl2842 { + yyb2842 = yyj2842 > l } else { - yyb2839 = r.CheckBreak() + yyb2842 = r.CheckBreak() } - if yyb2839 { + if yyb2842 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36756,13 +36812,13 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2839++ - if yyhl2839 { - yyb2839 = yyj2839 > l + yyj2842++ + if yyhl2842 { + yyb2842 = yyj2842 > l } else { - yyb2839 = r.CheckBreak() + yyb2842 = r.CheckBreak() } - if yyb2839 { + if yyb2842 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36770,16 +36826,16 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv2842 := &x.ObjectMeta - yyv2842.CodecDecodeSelf(d) + yyv2845 := &x.ObjectMeta + yyv2845.CodecDecodeSelf(d) } - yyj2839++ - if yyhl2839 { - yyb2839 = yyj2839 > l + yyj2842++ + if yyhl2842 { + yyb2842 = yyj2842 > l } else { - yyb2839 = r.CheckBreak() + yyb2842 = r.CheckBreak() } - if yyb2839 { + if yyb2842 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -36787,26 +36843,26 @@ func (x *Endpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Subsets = nil } else { - yyv2843 := &x.Subsets - yym2844 := z.DecBinary() - _ = yym2844 + yyv2846 := &x.Subsets + yym2847 := z.DecBinary() + _ = yym2847 if false { } else { - h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2843), d) + h.decSliceEndpointSubset((*[]EndpointSubset)(yyv2846), d) } } for { - yyj2839++ - if yyhl2839 { - yyb2839 = yyj2839 > l + yyj2842++ + if yyhl2842 { + yyb2842 = yyj2842 > l } else { - yyb2839 = r.CheckBreak() + yyb2842 = r.CheckBreak() } - if yyb2839 { + if yyb2842 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2839-1, "") + z.DecStructFieldNotFound(yyj2842-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -36818,106 +36874,106 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2845 := z.EncBinary() - _ = yym2845 + yym2848 := z.EncBinary() + _ = yym2848 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2846 := !z.EncBinary() - yy2arr2846 := z.EncBasicHandle().StructToArray - var yyq2846 [3]bool - _, _, _ = yysep2846, yyq2846, yy2arr2846 - const yyr2846 bool = false - yyq2846[0] = len(x.Addresses) != 0 - yyq2846[1] = len(x.NotReadyAddresses) != 0 - yyq2846[2] = len(x.Ports) != 0 - var yynn2846 int - if yyr2846 || yy2arr2846 { + yysep2849 := !z.EncBinary() + yy2arr2849 := z.EncBasicHandle().StructToArray + var yyq2849 [3]bool + _, _, _ = yysep2849, yyq2849, yy2arr2849 + const yyr2849 bool = false + yyq2849[0] = len(x.Addresses) != 0 + yyq2849[1] = len(x.NotReadyAddresses) != 0 + yyq2849[2] = len(x.Ports) != 0 + var yynn2849 int + if yyr2849 || yy2arr2849 { r.EncodeArrayStart(3) } else { - yynn2846 = 0 - for _, b := range yyq2846 { + yynn2849 = 0 + for _, b := range yyq2849 { if b { - yynn2846++ + yynn2849++ } } - r.EncodeMapStart(yynn2846) - yynn2846 = 0 + r.EncodeMapStart(yynn2849) + yynn2849 = 0 } - if yyr2846 || yy2arr2846 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2846[0] { + if yyq2849[0] { if x.Addresses == nil { r.EncodeNil() - } else { - yym2848 := z.EncBinary() - _ = yym2848 - if false { - } else { - h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq2846[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("addresses")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Addresses == nil { - r.EncodeNil() - } else { - yym2849 := z.EncBinary() - _ = yym2849 - if false { - } else { - h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) - } - } - } - } - if yyr2846 || yy2arr2846 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2846[1] { - if x.NotReadyAddresses == nil { - r.EncodeNil() } else { yym2851 := z.EncBinary() _ = yym2851 if false { } else { - h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) + h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) } } } else { r.EncodeNil() } } else { - if yyq2846[1] { + if yyq2849[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) + r.EncodeString(codecSelferC_UTF81234, string("addresses")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.NotReadyAddresses == nil { + if x.Addresses == nil { r.EncodeNil() } else { yym2852 := z.EncBinary() _ = yym2852 if false { + } else { + h.encSliceEndpointAddress(([]EndpointAddress)(x.Addresses), e) + } + } + } + } + if yyr2849 || yy2arr2849 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2849[1] { + if x.NotReadyAddresses == nil { + r.EncodeNil() + } else { + yym2854 := z.EncBinary() + _ = yym2854 + if false { + } else { + h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq2849[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("notReadyAddresses")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.NotReadyAddresses == nil { + r.EncodeNil() + } else { + yym2855 := z.EncBinary() + _ = yym2855 + if false { } else { h.encSliceEndpointAddress(([]EndpointAddress)(x.NotReadyAddresses), e) } } } } - if yyr2846 || yy2arr2846 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2846[2] { + if yyq2849[2] { if x.Ports == nil { r.EncodeNil() } else { - yym2854 := z.EncBinary() - _ = yym2854 + yym2857 := z.EncBinary() + _ = yym2857 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -36927,15 +36983,15 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2846[2] { + if yyq2849[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ports")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Ports == nil { r.EncodeNil() } else { - yym2855 := z.EncBinary() - _ = yym2855 + yym2858 := z.EncBinary() + _ = yym2858 if false { } else { h.encSliceEndpointPort(([]EndpointPort)(x.Ports), e) @@ -36943,7 +36999,7 @@ func (x *EndpointSubset) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2846 || yy2arr2846 { + if yyr2849 || yy2arr2849 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -36956,25 +37012,25 @@ func (x *EndpointSubset) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2856 := z.DecBinary() - _ = yym2856 + yym2859 := z.DecBinary() + _ = yym2859 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2857 := r.ContainerType() - if yyct2857 == codecSelferValueTypeMap1234 { - yyl2857 := r.ReadMapStart() - if yyl2857 == 0 { + yyct2860 := r.ContainerType() + if yyct2860 == codecSelferValueTypeMap1234 { + yyl2860 := r.ReadMapStart() + if yyl2860 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2857, d) + x.codecDecodeSelfFromMap(yyl2860, d) } - } else if yyct2857 == codecSelferValueTypeArray1234 { - yyl2857 := r.ReadArrayStart() - if yyl2857 == 0 { + } else if yyct2860 == codecSelferValueTypeArray1234 { + yyl2860 := r.ReadArrayStart() + if yyl2860 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2857, d) + x.codecDecodeSelfFromArray(yyl2860, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -36986,12 +37042,12 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2858Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2858Slc - var yyhl2858 bool = l >= 0 - for yyj2858 := 0; ; yyj2858++ { - if yyhl2858 { - if yyj2858 >= l { + var yys2861Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2861Slc + var yyhl2861 bool = l >= 0 + for yyj2861 := 0; ; yyj2861++ { + if yyhl2861 { + if yyj2861 >= l { break } } else { @@ -37000,50 +37056,50 @@ func (x *EndpointSubset) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2858Slc = r.DecodeBytes(yys2858Slc, true, true) - yys2858 := string(yys2858Slc) + yys2861Slc = r.DecodeBytes(yys2861Slc, true, true) + yys2861 := string(yys2861Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2858 { + switch yys2861 { case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2859 := &x.Addresses - yym2860 := z.DecBinary() - _ = yym2860 + yyv2862 := &x.Addresses + yym2863 := z.DecBinary() + _ = yym2863 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2859), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2862), d) } } case "notReadyAddresses": if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2861 := &x.NotReadyAddresses - yym2862 := z.DecBinary() - _ = yym2862 + yyv2864 := &x.NotReadyAddresses + yym2865 := z.DecBinary() + _ = yym2865 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2861), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2864), d) } } case "ports": if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2863 := &x.Ports - yym2864 := z.DecBinary() - _ = yym2864 + yyv2866 := &x.Ports + yym2867 := z.DecBinary() + _ = yym2867 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2863), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2866), d) } } default: - z.DecStructFieldNotFound(-1, yys2858) - } // end switch yys2858 - } // end for yyj2858 + z.DecStructFieldNotFound(-1, yys2861) + } // end switch yys2861 + } // end for yyj2861 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37051,16 +37107,16 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2865 int - var yyb2865 bool - var yyhl2865 bool = l >= 0 - yyj2865++ - if yyhl2865 { - yyb2865 = yyj2865 > l + var yyj2868 int + var yyb2868 bool + var yyhl2868 bool = l >= 0 + yyj2868++ + if yyhl2868 { + yyb2868 = yyj2868 > l } else { - yyb2865 = r.CheckBreak() + yyb2868 = r.CheckBreak() } - if yyb2865 { + if yyb2868 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37068,21 +37124,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv2866 := &x.Addresses - yym2867 := z.DecBinary() - _ = yym2867 + yyv2869 := &x.Addresses + yym2870 := z.DecBinary() + _ = yym2870 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2866), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2869), d) } } - yyj2865++ - if yyhl2865 { - yyb2865 = yyj2865 > l + yyj2868++ + if yyhl2868 { + yyb2868 = yyj2868 > l } else { - yyb2865 = r.CheckBreak() + yyb2868 = r.CheckBreak() } - if yyb2865 { + if yyb2868 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37090,21 +37146,21 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NotReadyAddresses = nil } else { - yyv2868 := &x.NotReadyAddresses - yym2869 := z.DecBinary() - _ = yym2869 + yyv2871 := &x.NotReadyAddresses + yym2872 := z.DecBinary() + _ = yym2872 if false { } else { - h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2868), d) + h.decSliceEndpointAddress((*[]EndpointAddress)(yyv2871), d) } } - yyj2865++ - if yyhl2865 { - yyb2865 = yyj2865 > l + yyj2868++ + if yyhl2868 { + yyb2868 = yyj2868 > l } else { - yyb2865 = r.CheckBreak() + yyb2868 = r.CheckBreak() } - if yyb2865 { + if yyb2868 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37112,26 +37168,26 @@ func (x *EndpointSubset) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Ports = nil } else { - yyv2870 := &x.Ports - yym2871 := z.DecBinary() - _ = yym2871 + yyv2873 := &x.Ports + yym2874 := z.DecBinary() + _ = yym2874 if false { } else { - h.decSliceEndpointPort((*[]EndpointPort)(yyv2870), d) + h.decSliceEndpointPort((*[]EndpointPort)(yyv2873), d) } } for { - yyj2865++ - if yyhl2865 { - yyb2865 = yyj2865 > l + yyj2868++ + if yyhl2868 { + yyb2868 = yyj2868 > l } else { - yyb2865 = r.CheckBreak() + yyb2868 = r.CheckBreak() } - if yyb2865 { + if yyb2868 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2865-1, "") + z.DecStructFieldNotFound(yyj2868-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37143,36 +37199,36 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2872 := z.EncBinary() - _ = yym2872 + yym2875 := z.EncBinary() + _ = yym2875 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2873 := !z.EncBinary() - yy2arr2873 := z.EncBasicHandle().StructToArray - var yyq2873 [4]bool - _, _, _ = yysep2873, yyq2873, yy2arr2873 - const yyr2873 bool = false - yyq2873[1] = x.Hostname != "" - yyq2873[2] = x.NodeName != nil - yyq2873[3] = x.TargetRef != nil - var yynn2873 int - if yyr2873 || yy2arr2873 { + yysep2876 := !z.EncBinary() + yy2arr2876 := z.EncBasicHandle().StructToArray + var yyq2876 [4]bool + _, _, _ = yysep2876, yyq2876, yy2arr2876 + const yyr2876 bool = false + yyq2876[1] = x.Hostname != "" + yyq2876[2] = x.NodeName != nil + yyq2876[3] = x.TargetRef != nil + var yynn2876 int + if yyr2876 || yy2arr2876 { r.EncodeArrayStart(4) } else { - yynn2873 = 1 - for _, b := range yyq2873 { + yynn2876 = 1 + for _, b := range yyq2876 { if b { - yynn2873++ + yynn2876++ } } - r.EncodeMapStart(yynn2873) - yynn2873 = 0 + r.EncodeMapStart(yynn2876) + yynn2876 = 0 } - if yyr2873 || yy2arr2873 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2875 := z.EncBinary() - _ = yym2875 + yym2878 := z.EncBinary() + _ = yym2878 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) @@ -37181,18 +37237,18 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("ip")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2876 := z.EncBinary() - _ = yym2876 + yym2879 := z.EncBinary() + _ = yym2879 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.IP)) } } - if yyr2873 || yy2arr2873 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2873[1] { - yym2878 := z.EncBinary() - _ = yym2878 + if yyq2876[1] { + yym2881 := z.EncBinary() + _ = yym2881 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) @@ -37201,56 +37257,56 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2873[1] { + if yyq2876[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hostname")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2879 := z.EncBinary() - _ = yym2879 + yym2882 := z.EncBinary() + _ = yym2882 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Hostname)) } } } - if yyr2873 || yy2arr2873 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2873[2] { + if yyq2876[2] { if x.NodeName == nil { r.EncodeNil() } else { - yy2881 := *x.NodeName - yym2882 := z.EncBinary() - _ = yym2882 + yy2884 := *x.NodeName + yym2885 := z.EncBinary() + _ = yym2885 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2881)) + r.EncodeString(codecSelferC_UTF81234, string(yy2884)) } } } else { r.EncodeNil() } } else { - if yyq2873[2] { + if yyq2876[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("nodeName")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.NodeName == nil { r.EncodeNil() } else { - yy2883 := *x.NodeName - yym2884 := z.EncBinary() - _ = yym2884 + yy2886 := *x.NodeName + yym2887 := z.EncBinary() + _ = yym2887 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy2883)) + r.EncodeString(codecSelferC_UTF81234, string(yy2886)) } } } } - if yyr2873 || yy2arr2873 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2873[3] { + if yyq2876[3] { if x.TargetRef == nil { r.EncodeNil() } else { @@ -37260,7 +37316,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq2873[3] { + if yyq2876[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("targetRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -37271,7 +37327,7 @@ func (x *EndpointAddress) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr2873 || yy2arr2873 { + if yyr2876 || yy2arr2876 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37284,25 +37340,25 @@ func (x *EndpointAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2886 := z.DecBinary() - _ = yym2886 + yym2889 := z.DecBinary() + _ = yym2889 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2887 := r.ContainerType() - if yyct2887 == codecSelferValueTypeMap1234 { - yyl2887 := r.ReadMapStart() - if yyl2887 == 0 { + yyct2890 := r.ContainerType() + if yyct2890 == codecSelferValueTypeMap1234 { + yyl2890 := r.ReadMapStart() + if yyl2890 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2887, d) + x.codecDecodeSelfFromMap(yyl2890, d) } - } else if yyct2887 == codecSelferValueTypeArray1234 { - yyl2887 := r.ReadArrayStart() - if yyl2887 == 0 { + } else if yyct2890 == codecSelferValueTypeArray1234 { + yyl2890 := r.ReadArrayStart() + if yyl2890 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2887, d) + x.codecDecodeSelfFromArray(yyl2890, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37314,12 +37370,12 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2888Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2888Slc - var yyhl2888 bool = l >= 0 - for yyj2888 := 0; ; yyj2888++ { - if yyhl2888 { - if yyj2888 >= l { + var yys2891Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2891Slc + var yyhl2891 bool = l >= 0 + for yyj2891 := 0; ; yyj2891++ { + if yyhl2891 { + if yyj2891 >= l { break } } else { @@ -37328,10 +37384,10 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2888Slc = r.DecodeBytes(yys2888Slc, true, true) - yys2888 := string(yys2888Slc) + yys2891Slc = r.DecodeBytes(yys2891Slc, true, true) + yys2891 := string(yys2891Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2888 { + switch yys2891 { case "ip": if r.TryDecodeAsNil() { x.IP = "" @@ -37353,8 +37409,8 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.NodeName == nil { x.NodeName = new(string) } - yym2892 := z.DecBinary() - _ = yym2892 + yym2895 := z.DecBinary() + _ = yym2895 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() @@ -37372,9 +37428,9 @@ func (x *EndpointAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.TargetRef.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2888) - } // end switch yys2888 - } // end for yyj2888 + z.DecStructFieldNotFound(-1, yys2891) + } // end switch yys2891 + } // end for yyj2891 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37382,16 +37438,16 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2894 int - var yyb2894 bool - var yyhl2894 bool = l >= 0 - yyj2894++ - if yyhl2894 { - yyb2894 = yyj2894 > l + var yyj2897 int + var yyb2897 bool + var yyhl2897 bool = l >= 0 + yyj2897++ + if yyhl2897 { + yyb2897 = yyj2897 > l } else { - yyb2894 = r.CheckBreak() + yyb2897 = r.CheckBreak() } - if yyb2894 { + if yyb2897 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37401,13 +37457,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.IP = string(r.DecodeString()) } - yyj2894++ - if yyhl2894 { - yyb2894 = yyj2894 > l + yyj2897++ + if yyhl2897 { + yyb2897 = yyj2897 > l } else { - yyb2894 = r.CheckBreak() + yyb2897 = r.CheckBreak() } - if yyb2894 { + if yyb2897 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37417,13 +37473,13 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Hostname = string(r.DecodeString()) } - yyj2894++ - if yyhl2894 { - yyb2894 = yyj2894 > l + yyj2897++ + if yyhl2897 { + yyb2897 = yyj2897 > l } else { - yyb2894 = r.CheckBreak() + yyb2897 = r.CheckBreak() } - if yyb2894 { + if yyb2897 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37436,20 +37492,20 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.NodeName == nil { x.NodeName = new(string) } - yym2898 := z.DecBinary() - _ = yym2898 + yym2901 := z.DecBinary() + _ = yym2901 if false { } else { *((*string)(x.NodeName)) = r.DecodeString() } } - yyj2894++ - if yyhl2894 { - yyb2894 = yyj2894 > l + yyj2897++ + if yyhl2897 { + yyb2897 = yyj2897 > l } else { - yyb2894 = r.CheckBreak() + yyb2897 = r.CheckBreak() } - if yyb2894 { + if yyb2897 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37465,17 +37521,17 @@ func (x *EndpointAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.TargetRef.CodecDecodeSelf(d) } for { - yyj2894++ - if yyhl2894 { - yyb2894 = yyj2894 > l + yyj2897++ + if yyhl2897 { + yyb2897 = yyj2897 > l } else { - yyb2894 = r.CheckBreak() + yyb2897 = r.CheckBreak() } - if yyb2894 { + if yyb2897 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2894-1, "") + z.DecStructFieldNotFound(yyj2897-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37487,36 +37543,36 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2900 := z.EncBinary() - _ = yym2900 + yym2903 := z.EncBinary() + _ = yym2903 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2901 := !z.EncBinary() - yy2arr2901 := z.EncBasicHandle().StructToArray - var yyq2901 [3]bool - _, _, _ = yysep2901, yyq2901, yy2arr2901 - const yyr2901 bool = false - yyq2901[0] = x.Name != "" - yyq2901[2] = x.Protocol != "" - var yynn2901 int - if yyr2901 || yy2arr2901 { + yysep2904 := !z.EncBinary() + yy2arr2904 := z.EncBasicHandle().StructToArray + var yyq2904 [3]bool + _, _, _ = yysep2904, yyq2904, yy2arr2904 + const yyr2904 bool = false + yyq2904[0] = x.Name != "" + yyq2904[2] = x.Protocol != "" + var yynn2904 int + if yyr2904 || yy2arr2904 { r.EncodeArrayStart(3) } else { - yynn2901 = 1 - for _, b := range yyq2901 { + yynn2904 = 1 + for _, b := range yyq2904 { if b { - yynn2901++ + yynn2904++ } } - r.EncodeMapStart(yynn2901) - yynn2901 = 0 + r.EncodeMapStart(yynn2904) + yynn2904 = 0 } - if yyr2901 || yy2arr2901 { + if yyr2904 || yy2arr2904 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2901[0] { - yym2903 := z.EncBinary() - _ = yym2903 + if yyq2904[0] { + yym2906 := z.EncBinary() + _ = yym2906 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -37525,22 +37581,22 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2901[0] { + if yyq2904[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2904 := z.EncBinary() - _ = yym2904 + yym2907 := z.EncBinary() + _ = yym2907 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr2901 || yy2arr2901 { + if yyr2904 || yy2arr2904 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2906 := z.EncBinary() - _ = yym2906 + yym2909 := z.EncBinary() + _ = yym2909 if false { } else { r.EncodeInt(int64(x.Port)) @@ -37549,29 +37605,29 @@ func (x *EndpointPort) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2907 := z.EncBinary() - _ = yym2907 + yym2910 := z.EncBinary() + _ = yym2910 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2901 || yy2arr2901 { + if yyr2904 || yy2arr2904 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2901[2] { + if yyq2904[2] { x.Protocol.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2901[2] { + if yyq2904[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("protocol")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Protocol.CodecEncodeSelf(e) } } - if yyr2901 || yy2arr2901 { + if yyr2904 || yy2arr2904 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37584,25 +37640,25 @@ func (x *EndpointPort) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2909 := z.DecBinary() - _ = yym2909 + yym2912 := z.DecBinary() + _ = yym2912 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2910 := r.ContainerType() - if yyct2910 == codecSelferValueTypeMap1234 { - yyl2910 := r.ReadMapStart() - if yyl2910 == 0 { + yyct2913 := r.ContainerType() + if yyct2913 == codecSelferValueTypeMap1234 { + yyl2913 := r.ReadMapStart() + if yyl2913 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2910, d) + x.codecDecodeSelfFromMap(yyl2913, d) } - } else if yyct2910 == codecSelferValueTypeArray1234 { - yyl2910 := r.ReadArrayStart() - if yyl2910 == 0 { + } else if yyct2913 == codecSelferValueTypeArray1234 { + yyl2913 := r.ReadArrayStart() + if yyl2913 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2910, d) + x.codecDecodeSelfFromArray(yyl2913, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37614,12 +37670,12 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2911Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2911Slc - var yyhl2911 bool = l >= 0 - for yyj2911 := 0; ; yyj2911++ { - if yyhl2911 { - if yyj2911 >= l { + var yys2914Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2914Slc + var yyhl2914 bool = l >= 0 + for yyj2914 := 0; ; yyj2914++ { + if yyhl2914 { + if yyj2914 >= l { break } } else { @@ -37628,10 +37684,10 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2911Slc = r.DecodeBytes(yys2911Slc, true, true) - yys2911 := string(yys2911Slc) + yys2914Slc = r.DecodeBytes(yys2914Slc, true, true) + yys2914 := string(yys2914Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2911 { + switch yys2914 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -37651,9 +37707,9 @@ func (x *EndpointPort) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys2911) - } // end switch yys2911 - } // end for yyj2911 + z.DecStructFieldNotFound(-1, yys2914) + } // end switch yys2914 + } // end for yyj2914 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37661,16 +37717,16 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2915 int - var yyb2915 bool - var yyhl2915 bool = l >= 0 - yyj2915++ - if yyhl2915 { - yyb2915 = yyj2915 > l + var yyj2918 int + var yyb2918 bool + var yyhl2918 bool = l >= 0 + yyj2918++ + if yyhl2918 { + yyb2918 = yyj2918 > l } else { - yyb2915 = r.CheckBreak() + yyb2918 = r.CheckBreak() } - if yyb2915 { + if yyb2918 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37680,13 +37736,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = string(r.DecodeString()) } - yyj2915++ - if yyhl2915 { - yyb2915 = yyj2915 > l + yyj2918++ + if yyhl2918 { + yyb2918 = yyj2918 > l } else { - yyb2915 = r.CheckBreak() + yyb2918 = r.CheckBreak() } - if yyb2915 { + if yyb2918 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37696,13 +37752,13 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Port = int32(r.DecodeInt(32)) } - yyj2915++ - if yyhl2915 { - yyb2915 = yyj2915 > l + yyj2918++ + if yyhl2918 { + yyb2918 = yyj2918 > l } else { - yyb2915 = r.CheckBreak() + yyb2918 = r.CheckBreak() } - if yyb2915 { + if yyb2918 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37713,17 +37769,17 @@ func (x *EndpointPort) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Protocol = Protocol(r.DecodeString()) } for { - yyj2915++ - if yyhl2915 { - yyb2915 = yyj2915 > l + yyj2918++ + if yyhl2918 { + yyb2918 = yyj2918 > l } else { - yyb2915 = r.CheckBreak() + yyb2918 = r.CheckBreak() } - if yyb2915 { + if yyb2918 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2915-1, "") + z.DecStructFieldNotFound(yyj2918-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -37735,118 +37791,118 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2919 := z.EncBinary() - _ = yym2919 + yym2922 := z.EncBinary() + _ = yym2922 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2920 := !z.EncBinary() - yy2arr2920 := z.EncBasicHandle().StructToArray - var yyq2920 [4]bool - _, _, _ = yysep2920, yyq2920, yy2arr2920 - const yyr2920 bool = false - yyq2920[0] = x.Kind != "" - yyq2920[1] = x.APIVersion != "" - yyq2920[2] = true - var yynn2920 int - if yyr2920 || yy2arr2920 { + yysep2923 := !z.EncBinary() + yy2arr2923 := z.EncBasicHandle().StructToArray + var yyq2923 [4]bool + _, _, _ = yysep2923, yyq2923, yy2arr2923 + const yyr2923 bool = false + yyq2923[0] = x.Kind != "" + yyq2923[1] = x.APIVersion != "" + yyq2923[2] = true + var yynn2923 int + if yyr2923 || yy2arr2923 { r.EncodeArrayStart(4) } else { - yynn2920 = 1 - for _, b := range yyq2920 { + yynn2923 = 1 + for _, b := range yyq2923 { if b { - yynn2920++ + yynn2923++ } } - r.EncodeMapStart(yynn2920) - yynn2920 = 0 + r.EncodeMapStart(yynn2923) + yynn2923 = 0 } - if yyr2920 || yy2arr2920 { + if yyr2923 || yy2arr2923 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2920[0] { - yym2922 := z.EncBinary() - _ = yym2922 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2920[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2923 := z.EncBinary() - _ = yym2923 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr2920 || yy2arr2920 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2920[1] { + if yyq2923[0] { yym2925 := z.EncBinary() _ = yym2925 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2920[1] { + if yyq2923[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2926 := z.EncBinary() _ = yym2926 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr2923 || yy2arr2923 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2923[1] { + yym2928 := z.EncBinary() + _ = yym2928 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2923[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2929 := z.EncBinary() + _ = yym2929 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr2920 || yy2arr2920 { + if yyr2923 || yy2arr2923 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2920[2] { - yy2928 := &x.ListMeta - yym2929 := z.EncBinary() - _ = yym2929 + if yyq2923[2] { + yy2931 := &x.ListMeta + yym2932 := z.EncBinary() + _ = yym2932 if false { - } else if z.HasExtensions() && z.EncExt(yy2928) { + } else if z.HasExtensions() && z.EncExt(yy2931) { } else { - z.EncFallback(yy2928) + z.EncFallback(yy2931) } } else { r.EncodeNil() } } else { - if yyq2920[2] { + if yyq2923[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2930 := &x.ListMeta - yym2931 := z.EncBinary() - _ = yym2931 + yy2933 := &x.ListMeta + yym2934 := z.EncBinary() + _ = yym2934 if false { - } else if z.HasExtensions() && z.EncExt(yy2930) { + } else if z.HasExtensions() && z.EncExt(yy2933) { } else { - z.EncFallback(yy2930) + z.EncFallback(yy2933) } } } - if yyr2920 || yy2arr2920 { + if yyr2923 || yy2arr2923 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym2933 := z.EncBinary() - _ = yym2933 + yym2936 := z.EncBinary() + _ = yym2936 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) @@ -37859,15 +37915,15 @@ func (x *EndpointsList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym2934 := z.EncBinary() - _ = yym2934 + yym2937 := z.EncBinary() + _ = yym2937 if false { } else { h.encSliceEndpoints(([]Endpoints)(x.Items), e) } } } - if yyr2920 || yy2arr2920 { + if yyr2923 || yy2arr2923 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -37880,25 +37936,25 @@ func (x *EndpointsList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2935 := z.DecBinary() - _ = yym2935 + yym2938 := z.DecBinary() + _ = yym2938 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2936 := r.ContainerType() - if yyct2936 == codecSelferValueTypeMap1234 { - yyl2936 := r.ReadMapStart() - if yyl2936 == 0 { + yyct2939 := r.ContainerType() + if yyct2939 == codecSelferValueTypeMap1234 { + yyl2939 := r.ReadMapStart() + if yyl2939 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2936, d) + x.codecDecodeSelfFromMap(yyl2939, d) } - } else if yyct2936 == codecSelferValueTypeArray1234 { - yyl2936 := r.ReadArrayStart() - if yyl2936 == 0 { + } else if yyct2939 == codecSelferValueTypeArray1234 { + yyl2939 := r.ReadArrayStart() + if yyl2939 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2936, d) + x.codecDecodeSelfFromArray(yyl2939, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -37910,12 +37966,12 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2937Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2937Slc - var yyhl2937 bool = l >= 0 - for yyj2937 := 0; ; yyj2937++ { - if yyhl2937 { - if yyj2937 >= l { + var yys2940Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2940Slc + var yyhl2940 bool = l >= 0 + for yyj2940 := 0; ; yyj2940++ { + if yyhl2940 { + if yyj2940 >= l { break } } else { @@ -37924,10 +37980,10 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2937Slc = r.DecodeBytes(yys2937Slc, true, true) - yys2937 := string(yys2937Slc) + yys2940Slc = r.DecodeBytes(yys2940Slc, true, true) + yys2940 := string(yys2940Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2937 { + switch yys2940 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -37944,31 +38000,31 @@ func (x *EndpointsList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2940 := &x.ListMeta - yym2941 := z.DecBinary() - _ = yym2941 + yyv2943 := &x.ListMeta + yym2944 := z.DecBinary() + _ = yym2944 if false { - } else if z.HasExtensions() && z.DecExt(yyv2940) { + } else if z.HasExtensions() && z.DecExt(yyv2943) { } else { - z.DecFallback(yyv2940, false) + z.DecFallback(yyv2943, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2942 := &x.Items - yym2943 := z.DecBinary() - _ = yym2943 + yyv2945 := &x.Items + yym2946 := z.DecBinary() + _ = yym2946 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2942), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2945), d) } } default: - z.DecStructFieldNotFound(-1, yys2937) - } // end switch yys2937 - } // end for yyj2937 + z.DecStructFieldNotFound(-1, yys2940) + } // end switch yys2940 + } // end for yyj2940 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -37976,16 +38032,16 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2944 int - var yyb2944 bool - var yyhl2944 bool = l >= 0 - yyj2944++ - if yyhl2944 { - yyb2944 = yyj2944 > l + var yyj2947 int + var yyb2947 bool + var yyhl2947 bool = l >= 0 + yyj2947++ + if yyhl2947 { + yyb2947 = yyj2947 > l } else { - yyb2944 = r.CheckBreak() + yyb2947 = r.CheckBreak() } - if yyb2944 { + if yyb2947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -37995,13 +38051,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj2944++ - if yyhl2944 { - yyb2944 = yyj2944 > l + yyj2947++ + if yyhl2947 { + yyb2947 = yyj2947 > l } else { - yyb2944 = r.CheckBreak() + yyb2947 = r.CheckBreak() } - if yyb2944 { + if yyb2947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38011,13 +38067,13 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj2944++ - if yyhl2944 { - yyb2944 = yyj2944 > l + yyj2947++ + if yyhl2947 { + yyb2947 = yyj2947 > l } else { - yyb2944 = r.CheckBreak() + yyb2947 = r.CheckBreak() } - if yyb2944 { + if yyb2947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38025,22 +38081,22 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv2947 := &x.ListMeta - yym2948 := z.DecBinary() - _ = yym2948 + yyv2950 := &x.ListMeta + yym2951 := z.DecBinary() + _ = yym2951 if false { - } else if z.HasExtensions() && z.DecExt(yyv2947) { + } else if z.HasExtensions() && z.DecExt(yyv2950) { } else { - z.DecFallback(yyv2947, false) + z.DecFallback(yyv2950, false) } } - yyj2944++ - if yyhl2944 { - yyb2944 = yyj2944 > l + yyj2947++ + if yyhl2947 { + yyb2947 = yyj2947 > l } else { - yyb2944 = r.CheckBreak() + yyb2947 = r.CheckBreak() } - if yyb2944 { + if yyb2947 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38048,26 +38104,26 @@ func (x *EndpointsList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv2949 := &x.Items - yym2950 := z.DecBinary() - _ = yym2950 + yyv2952 := &x.Items + yym2953 := z.DecBinary() + _ = yym2953 if false { } else { - h.decSliceEndpoints((*[]Endpoints)(yyv2949), d) + h.decSliceEndpoints((*[]Endpoints)(yyv2952), d) } } for { - yyj2944++ - if yyhl2944 { - yyb2944 = yyj2944 > l + yyj2947++ + if yyhl2947 { + yyb2947 = yyj2947 > l } else { - yyb2944 = r.CheckBreak() + yyb2947 = r.CheckBreak() } - if yyb2944 { + if yyb2947 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2944-1, "") + z.DecStructFieldNotFound(yyj2947-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38079,88 +38135,88 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2951 := z.EncBinary() - _ = yym2951 + yym2954 := z.EncBinary() + _ = yym2954 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2952 := !z.EncBinary() - yy2arr2952 := z.EncBasicHandle().StructToArray - var yyq2952 [4]bool - _, _, _ = yysep2952, yyq2952, yy2arr2952 - const yyr2952 bool = false - yyq2952[0] = x.PodCIDR != "" - yyq2952[1] = x.ExternalID != "" - yyq2952[2] = x.ProviderID != "" - yyq2952[3] = x.Unschedulable != false - var yynn2952 int - if yyr2952 || yy2arr2952 { + yysep2955 := !z.EncBinary() + yy2arr2955 := z.EncBasicHandle().StructToArray + var yyq2955 [4]bool + _, _, _ = yysep2955, yyq2955, yy2arr2955 + const yyr2955 bool = false + yyq2955[0] = x.PodCIDR != "" + yyq2955[1] = x.ExternalID != "" + yyq2955[2] = x.ProviderID != "" + yyq2955[3] = x.Unschedulable != false + var yynn2955 int + if yyr2955 || yy2arr2955 { r.EncodeArrayStart(4) } else { - yynn2952 = 0 - for _, b := range yyq2952 { + yynn2955 = 0 + for _, b := range yyq2955 { if b { - yynn2952++ + yynn2955++ } } - r.EncodeMapStart(yynn2952) - yynn2952 = 0 + r.EncodeMapStart(yynn2955) + yynn2955 = 0 } - if yyr2952 || yy2arr2952 { + if yyr2955 || yy2arr2955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2952[0] { - yym2954 := z.EncBinary() - _ = yym2954 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq2952[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2955 := z.EncBinary() - _ = yym2955 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) - } - } - } - if yyr2952 || yy2arr2952 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2952[1] { + if yyq2955[0] { yym2957 := z.EncBinary() _ = yym2957 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) + r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2952[1] { + if yyq2955[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("externalID")) + r.EncodeString(codecSelferC_UTF81234, string("podCIDR")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym2958 := z.EncBinary() _ = yym2958 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.PodCIDR)) + } + } + } + if yyr2955 || yy2arr2955 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq2955[1] { + yym2960 := z.EncBinary() + _ = yym2960 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq2955[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("externalID")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym2961 := z.EncBinary() + _ = yym2961 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ExternalID)) } } } - if yyr2952 || yy2arr2952 { + if yyr2955 || yy2arr2955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2952[2] { - yym2960 := z.EncBinary() - _ = yym2960 + if yyq2955[2] { + yym2963 := z.EncBinary() + _ = yym2963 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) @@ -38169,23 +38225,23 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq2952[2] { + if yyq2955[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("providerID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2961 := z.EncBinary() - _ = yym2961 + yym2964 := z.EncBinary() + _ = yym2964 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ProviderID)) } } } - if yyr2952 || yy2arr2952 { + if yyr2955 || yy2arr2955 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2952[3] { - yym2963 := z.EncBinary() - _ = yym2963 + if yyq2955[3] { + yym2966 := z.EncBinary() + _ = yym2966 if false { } else { r.EncodeBool(bool(x.Unschedulable)) @@ -38194,19 +38250,19 @@ func (x *NodeSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq2952[3] { + if yyq2955[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("unschedulable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2964 := z.EncBinary() - _ = yym2964 + yym2967 := z.EncBinary() + _ = yym2967 if false { } else { r.EncodeBool(bool(x.Unschedulable)) } } } - if yyr2952 || yy2arr2952 { + if yyr2955 || yy2arr2955 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38219,25 +38275,25 @@ func (x *NodeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2965 := z.DecBinary() - _ = yym2965 + yym2968 := z.DecBinary() + _ = yym2968 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2966 := r.ContainerType() - if yyct2966 == codecSelferValueTypeMap1234 { - yyl2966 := r.ReadMapStart() - if yyl2966 == 0 { + yyct2969 := r.ContainerType() + if yyct2969 == codecSelferValueTypeMap1234 { + yyl2969 := r.ReadMapStart() + if yyl2969 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2966, d) + x.codecDecodeSelfFromMap(yyl2969, d) } - } else if yyct2966 == codecSelferValueTypeArray1234 { - yyl2966 := r.ReadArrayStart() - if yyl2966 == 0 { + } else if yyct2969 == codecSelferValueTypeArray1234 { + yyl2969 := r.ReadArrayStart() + if yyl2969 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2966, d) + x.codecDecodeSelfFromArray(yyl2969, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38249,12 +38305,12 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2967Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2967Slc - var yyhl2967 bool = l >= 0 - for yyj2967 := 0; ; yyj2967++ { - if yyhl2967 { - if yyj2967 >= l { + var yys2970Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2970Slc + var yyhl2970 bool = l >= 0 + for yyj2970 := 0; ; yyj2970++ { + if yyhl2970 { + if yyj2970 >= l { break } } else { @@ -38263,10 +38319,10 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2967Slc = r.DecodeBytes(yys2967Slc, true, true) - yys2967 := string(yys2967Slc) + yys2970Slc = r.DecodeBytes(yys2970Slc, true, true) + yys2970 := string(yys2970Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2967 { + switch yys2970 { case "podCIDR": if r.TryDecodeAsNil() { x.PodCIDR = "" @@ -38292,9 +38348,9 @@ func (x *NodeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } default: - z.DecStructFieldNotFound(-1, yys2967) - } // end switch yys2967 - } // end for yyj2967 + z.DecStructFieldNotFound(-1, yys2970) + } // end switch yys2970 + } // end for yyj2970 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38302,16 +38358,16 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2972 int - var yyb2972 bool - var yyhl2972 bool = l >= 0 - yyj2972++ - if yyhl2972 { - yyb2972 = yyj2972 > l + var yyj2975 int + var yyb2975 bool + var yyhl2975 bool = l >= 0 + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2972 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2972 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38321,13 +38377,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.PodCIDR = string(r.DecodeString()) } - yyj2972++ - if yyhl2972 { - yyb2972 = yyj2972 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2972 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2972 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38337,13 +38393,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ExternalID = string(r.DecodeString()) } - yyj2972++ - if yyhl2972 { - yyb2972 = yyj2972 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2972 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2972 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38353,13 +38409,13 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ProviderID = string(r.DecodeString()) } - yyj2972++ - if yyhl2972 { - yyb2972 = yyj2972 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2972 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2972 { + if yyb2975 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38370,17 +38426,17 @@ func (x *NodeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Unschedulable = bool(r.DecodeBool()) } for { - yyj2972++ - if yyhl2972 { - yyb2972 = yyj2972 > l + yyj2975++ + if yyhl2975 { + yyb2975 = yyj2975 > l } else { - yyb2972 = r.CheckBreak() + yyb2975 = r.CheckBreak() } - if yyb2972 { + if yyb2975 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2972-1, "") + z.DecStructFieldNotFound(yyj2975-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38392,33 +38448,33 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2977 := z.EncBinary() - _ = yym2977 + yym2980 := z.EncBinary() + _ = yym2980 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2978 := !z.EncBinary() - yy2arr2978 := z.EncBasicHandle().StructToArray - var yyq2978 [1]bool - _, _, _ = yysep2978, yyq2978, yy2arr2978 - const yyr2978 bool = false - var yynn2978 int - if yyr2978 || yy2arr2978 { + yysep2981 := !z.EncBinary() + yy2arr2981 := z.EncBasicHandle().StructToArray + var yyq2981 [1]bool + _, _, _ = yysep2981, yyq2981, yy2arr2981 + const yyr2981 bool = false + var yynn2981 int + if yyr2981 || yy2arr2981 { r.EncodeArrayStart(1) } else { - yynn2978 = 1 - for _, b := range yyq2978 { + yynn2981 = 1 + for _, b := range yyq2981 { if b { - yynn2978++ + yynn2981++ } } - r.EncodeMapStart(yynn2978) - yynn2978 = 0 + r.EncodeMapStart(yynn2981) + yynn2981 = 0 } - if yyr2978 || yy2arr2978 { + if yyr2981 || yy2arr2981 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym2980 := z.EncBinary() - _ = yym2980 + yym2983 := z.EncBinary() + _ = yym2983 if false { } else { r.EncodeInt(int64(x.Port)) @@ -38427,14 +38483,14 @@ func (x *DaemonEndpoint) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("Port")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym2981 := z.EncBinary() - _ = yym2981 + yym2984 := z.EncBinary() + _ = yym2984 if false { } else { r.EncodeInt(int64(x.Port)) } } - if yyr2978 || yy2arr2978 { + if yyr2981 || yy2arr2981 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38447,25 +38503,25 @@ func (x *DaemonEndpoint) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2982 := z.DecBinary() - _ = yym2982 + yym2985 := z.DecBinary() + _ = yym2985 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2983 := r.ContainerType() - if yyct2983 == codecSelferValueTypeMap1234 { - yyl2983 := r.ReadMapStart() - if yyl2983 == 0 { + yyct2986 := r.ContainerType() + if yyct2986 == codecSelferValueTypeMap1234 { + yyl2986 := r.ReadMapStart() + if yyl2986 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2983, d) + x.codecDecodeSelfFromMap(yyl2986, d) } - } else if yyct2983 == codecSelferValueTypeArray1234 { - yyl2983 := r.ReadArrayStart() - if yyl2983 == 0 { + } else if yyct2986 == codecSelferValueTypeArray1234 { + yyl2986 := r.ReadArrayStart() + if yyl2986 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2983, d) + x.codecDecodeSelfFromArray(yyl2986, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38477,12 +38533,12 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2984Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2984Slc - var yyhl2984 bool = l >= 0 - for yyj2984 := 0; ; yyj2984++ { - if yyhl2984 { - if yyj2984 >= l { + var yys2987Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2987Slc + var yyhl2987 bool = l >= 0 + for yyj2987 := 0; ; yyj2987++ { + if yyhl2987 { + if yyj2987 >= l { break } } else { @@ -38491,10 +38547,10 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2984Slc = r.DecodeBytes(yys2984Slc, true, true) - yys2984 := string(yys2984Slc) + yys2987Slc = r.DecodeBytes(yys2987Slc, true, true) + yys2987 := string(yys2987Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2984 { + switch yys2987 { case "Port": if r.TryDecodeAsNil() { x.Port = 0 @@ -38502,9 +38558,9 @@ func (x *DaemonEndpoint) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } default: - z.DecStructFieldNotFound(-1, yys2984) - } // end switch yys2984 - } // end for yyj2984 + z.DecStructFieldNotFound(-1, yys2987) + } // end switch yys2987 + } // end for yyj2987 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38512,16 +38568,16 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2986 int - var yyb2986 bool - var yyhl2986 bool = l >= 0 - yyj2986++ - if yyhl2986 { - yyb2986 = yyj2986 > l + var yyj2989 int + var yyb2989 bool + var yyhl2989 bool = l >= 0 + yyj2989++ + if yyhl2989 { + yyb2989 = yyj2989 > l } else { - yyb2986 = r.CheckBreak() + yyb2989 = r.CheckBreak() } - if yyb2986 { + if yyb2989 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38532,17 +38588,17 @@ func (x *DaemonEndpoint) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Port = int32(r.DecodeInt(32)) } for { - yyj2986++ - if yyhl2986 { - yyb2986 = yyj2986 > l + yyj2989++ + if yyhl2989 { + yyb2989 = yyj2989 > l } else { - yyb2986 = r.CheckBreak() + yyb2989 = r.CheckBreak() } - if yyb2986 { + if yyb2989 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2986-1, "") + z.DecStructFieldNotFound(yyj2989-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38554,48 +38610,48 @@ func (x *NodeDaemonEndpoints) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2988 := z.EncBinary() - _ = yym2988 + yym2991 := z.EncBinary() + _ = yym2991 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep2989 := !z.EncBinary() - yy2arr2989 := z.EncBasicHandle().StructToArray - var yyq2989 [1]bool - _, _, _ = yysep2989, yyq2989, yy2arr2989 - const yyr2989 bool = false - yyq2989[0] = true - var yynn2989 int - if yyr2989 || yy2arr2989 { + yysep2992 := !z.EncBinary() + yy2arr2992 := z.EncBasicHandle().StructToArray + var yyq2992 [1]bool + _, _, _ = yysep2992, yyq2992, yy2arr2992 + const yyr2992 bool = false + yyq2992[0] = true + var yynn2992 int + if yyr2992 || yy2arr2992 { r.EncodeArrayStart(1) } else { - yynn2989 = 0 - for _, b := range yyq2989 { + yynn2992 = 0 + for _, b := range yyq2992 { if b { - yynn2989++ + yynn2992++ } } - r.EncodeMapStart(yynn2989) - yynn2989 = 0 + r.EncodeMapStart(yynn2992) + yynn2992 = 0 } - if yyr2989 || yy2arr2989 { + if yyr2992 || yy2arr2992 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq2989[0] { - yy2991 := &x.KubeletEndpoint - yy2991.CodecEncodeSelf(e) + if yyq2992[0] { + yy2994 := &x.KubeletEndpoint + yy2994.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq2989[0] { + if yyq2992[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletEndpoint")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy2992 := &x.KubeletEndpoint - yy2992.CodecEncodeSelf(e) + yy2995 := &x.KubeletEndpoint + yy2995.CodecEncodeSelf(e) } } - if yyr2989 || yy2arr2989 { + if yyr2992 || yy2arr2992 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38608,25 +38664,25 @@ func (x *NodeDaemonEndpoints) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym2993 := z.DecBinary() - _ = yym2993 + yym2996 := z.DecBinary() + _ = yym2996 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct2994 := r.ContainerType() - if yyct2994 == codecSelferValueTypeMap1234 { - yyl2994 := r.ReadMapStart() - if yyl2994 == 0 { + yyct2997 := r.ContainerType() + if yyct2997 == codecSelferValueTypeMap1234 { + yyl2997 := r.ReadMapStart() + if yyl2997 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl2994, d) + x.codecDecodeSelfFromMap(yyl2997, d) } - } else if yyct2994 == codecSelferValueTypeArray1234 { - yyl2994 := r.ReadArrayStart() - if yyl2994 == 0 { + } else if yyct2997 == codecSelferValueTypeArray1234 { + yyl2997 := r.ReadArrayStart() + if yyl2997 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl2994, d) + x.codecDecodeSelfFromArray(yyl2997, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38638,12 +38694,12 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys2995Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys2995Slc - var yyhl2995 bool = l >= 0 - for yyj2995 := 0; ; yyj2995++ { - if yyhl2995 { - if yyj2995 >= l { + var yys2998Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys2998Slc + var yyhl2998 bool = l >= 0 + for yyj2998 := 0; ; yyj2998++ { + if yyhl2998 { + if yyj2998 >= l { break } } else { @@ -38652,21 +38708,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys2995Slc = r.DecodeBytes(yys2995Slc, true, true) - yys2995 := string(yys2995Slc) + yys2998Slc = r.DecodeBytes(yys2998Slc, true, true) + yys2998 := string(yys2998Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys2995 { + switch yys2998 { case "kubeletEndpoint": if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2996 := &x.KubeletEndpoint - yyv2996.CodecDecodeSelf(d) + yyv2999 := &x.KubeletEndpoint + yyv2999.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys2995) - } // end switch yys2995 - } // end for yyj2995 + z.DecStructFieldNotFound(-1, yys2998) + } // end switch yys2998 + } // end for yyj2998 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -38674,16 +38730,16 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj2997 int - var yyb2997 bool - var yyhl2997 bool = l >= 0 - yyj2997++ - if yyhl2997 { - yyb2997 = yyj2997 > l + var yyj3000 int + var yyb3000 bool + var yyhl3000 bool = l >= 0 + yyj3000++ + if yyhl3000 { + yyb3000 = yyj3000 > l } else { - yyb2997 = r.CheckBreak() + yyb3000 = r.CheckBreak() } - if yyb2997 { + if yyb3000 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -38691,21 +38747,21 @@ func (x *NodeDaemonEndpoints) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.KubeletEndpoint = DaemonEndpoint{} } else { - yyv2998 := &x.KubeletEndpoint - yyv2998.CodecDecodeSelf(d) + yyv3001 := &x.KubeletEndpoint + yyv3001.CodecDecodeSelf(d) } for { - yyj2997++ - if yyhl2997 { - yyb2997 = yyj2997 > l + yyj3000++ + if yyhl3000 { + yyb3000 = yyj3000 > l } else { - yyb2997 = r.CheckBreak() + yyb3000 = r.CheckBreak() } - if yyb2997 { + if yyb3000 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj2997-1, "") + z.DecStructFieldNotFound(yyj3000-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -38717,33 +38773,33 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym2999 := z.EncBinary() - _ = yym2999 + yym3002 := z.EncBinary() + _ = yym3002 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3000 := !z.EncBinary() - yy2arr3000 := z.EncBasicHandle().StructToArray - var yyq3000 [10]bool - _, _, _ = yysep3000, yyq3000, yy2arr3000 - const yyr3000 bool = false - var yynn3000 int - if yyr3000 || yy2arr3000 { + yysep3003 := !z.EncBinary() + yy2arr3003 := z.EncBasicHandle().StructToArray + var yyq3003 [10]bool + _, _, _ = yysep3003, yyq3003, yy2arr3003 + const yyr3003 bool = false + var yynn3003 int + if yyr3003 || yy2arr3003 { r.EncodeArrayStart(10) } else { - yynn3000 = 10 - for _, b := range yyq3000 { + yynn3003 = 10 + for _, b := range yyq3003 { if b { - yynn3000++ + yynn3003++ } } - r.EncodeMapStart(yynn3000) - yynn3000 = 0 + r.EncodeMapStart(yynn3003) + yynn3003 = 0 } - if yyr3000 || yy2arr3000 { + if yyr3003 || yy2arr3003 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3002 := z.EncBinary() - _ = yym3002 + yym3005 := z.EncBinary() + _ = yym3005 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) @@ -38752,17 +38808,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("machineID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3003 := z.EncBinary() - _ = yym3003 + yym3006 := z.EncBinary() + _ = yym3006 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.MachineID)) } } - if yyr3000 || yy2arr3000 { + if yyr3003 || yy2arr3003 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3005 := z.EncBinary() - _ = yym3005 + yym3008 := z.EncBinary() + _ = yym3008 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) @@ -38771,17 +38827,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("systemUUID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3006 := z.EncBinary() - _ = yym3006 + yym3009 := z.EncBinary() + _ = yym3009 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.SystemUUID)) } } - if yyr3000 || yy2arr3000 { + if yyr3003 || yy2arr3003 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3008 := z.EncBinary() - _ = yym3008 + yym3011 := z.EncBinary() + _ = yym3011 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) @@ -38790,17 +38846,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("bootID")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3009 := z.EncBinary() - _ = yym3009 + yym3012 := z.EncBinary() + _ = yym3012 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.BootID)) } } - if yyr3000 || yy2arr3000 { + if yyr3003 || yy2arr3003 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3011 := z.EncBinary() - _ = yym3011 + yym3014 := z.EncBinary() + _ = yym3014 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) @@ -38809,17 +38865,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kernelVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3012 := z.EncBinary() - _ = yym3012 + yym3015 := z.EncBinary() + _ = yym3015 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KernelVersion)) } } - if yyr3000 || yy2arr3000 { + if yyr3003 || yy2arr3003 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3014 := z.EncBinary() - _ = yym3014 + yym3017 := z.EncBinary() + _ = yym3017 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) @@ -38828,17 +38884,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("osImage")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3015 := z.EncBinary() - _ = yym3015 + yym3018 := z.EncBinary() + _ = yym3018 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OSImage)) } } - if yyr3000 || yy2arr3000 { + if yyr3003 || yy2arr3003 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3017 := z.EncBinary() - _ = yym3017 + yym3020 := z.EncBinary() + _ = yym3020 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) @@ -38847,17 +38903,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("containerRuntimeVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3018 := z.EncBinary() - _ = yym3018 + yym3021 := z.EncBinary() + _ = yym3021 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ContainerRuntimeVersion)) } } - if yyr3000 || yy2arr3000 { + if yyr3003 || yy2arr3003 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3020 := z.EncBinary() - _ = yym3020 + yym3023 := z.EncBinary() + _ = yym3023 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) @@ -38866,17 +38922,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeletVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3021 := z.EncBinary() - _ = yym3021 + yym3024 := z.EncBinary() + _ = yym3024 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeletVersion)) } } - if yyr3000 || yy2arr3000 { + if yyr3003 || yy2arr3003 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3023 := z.EncBinary() - _ = yym3023 + yym3026 := z.EncBinary() + _ = yym3026 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) @@ -38885,17 +38941,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("kubeProxyVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3024 := z.EncBinary() - _ = yym3024 + yym3027 := z.EncBinary() + _ = yym3027 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.KubeProxyVersion)) } } - if yyr3000 || yy2arr3000 { + if yyr3003 || yy2arr3003 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3026 := z.EncBinary() - _ = yym3026 + yym3029 := z.EncBinary() + _ = yym3029 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) @@ -38904,17 +38960,17 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("operatingSystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3027 := z.EncBinary() - _ = yym3027 + yym3030 := z.EncBinary() + _ = yym3030 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.OperatingSystem)) } } - if yyr3000 || yy2arr3000 { + if yyr3003 || yy2arr3003 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3029 := z.EncBinary() - _ = yym3029 + yym3032 := z.EncBinary() + _ = yym3032 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) @@ -38923,14 +38979,14 @@ func (x *NodeSystemInfo) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("architecture")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3030 := z.EncBinary() - _ = yym3030 + yym3033 := z.EncBinary() + _ = yym3033 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Architecture)) } } - if yyr3000 || yy2arr3000 { + if yyr3003 || yy2arr3003 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -38943,25 +38999,25 @@ func (x *NodeSystemInfo) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3031 := z.DecBinary() - _ = yym3031 + yym3034 := z.DecBinary() + _ = yym3034 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3032 := r.ContainerType() - if yyct3032 == codecSelferValueTypeMap1234 { - yyl3032 := r.ReadMapStart() - if yyl3032 == 0 { + yyct3035 := r.ContainerType() + if yyct3035 == codecSelferValueTypeMap1234 { + yyl3035 := r.ReadMapStart() + if yyl3035 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3032, d) + x.codecDecodeSelfFromMap(yyl3035, d) } - } else if yyct3032 == codecSelferValueTypeArray1234 { - yyl3032 := r.ReadArrayStart() - if yyl3032 == 0 { + } else if yyct3035 == codecSelferValueTypeArray1234 { + yyl3035 := r.ReadArrayStart() + if yyl3035 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3032, d) + x.codecDecodeSelfFromArray(yyl3035, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -38973,12 +39029,12 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3033Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3033Slc - var yyhl3033 bool = l >= 0 - for yyj3033 := 0; ; yyj3033++ { - if yyhl3033 { - if yyj3033 >= l { + var yys3036Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3036Slc + var yyhl3036 bool = l >= 0 + for yyj3036 := 0; ; yyj3036++ { + if yyhl3036 { + if yyj3036 >= l { break } } else { @@ -38987,10 +39043,10 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3033Slc = r.DecodeBytes(yys3033Slc, true, true) - yys3033 := string(yys3033Slc) + yys3036Slc = r.DecodeBytes(yys3036Slc, true, true) + yys3036 := string(yys3036Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3033 { + switch yys3036 { case "machineID": if r.TryDecodeAsNil() { x.MachineID = "" @@ -39052,9 +39108,9 @@ func (x *NodeSystemInfo) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3033) - } // end switch yys3033 - } // end for yyj3033 + z.DecStructFieldNotFound(-1, yys3036) + } // end switch yys3036 + } // end for yyj3036 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39062,16 +39118,16 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3044 int - var yyb3044 bool - var yyhl3044 bool = l >= 0 - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + var yyj3047 int + var yyb3047 bool + var yyhl3047 bool = l >= 0 + yyj3047++ + if yyhl3047 { + yyb3047 = yyj3047 > l } else { - yyb3044 = r.CheckBreak() + yyb3047 = r.CheckBreak() } - if yyb3044 { + if yyb3047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39081,13 +39137,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.MachineID = string(r.DecodeString()) } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3047++ + if yyhl3047 { + yyb3047 = yyj3047 > l } else { - yyb3044 = r.CheckBreak() + yyb3047 = r.CheckBreak() } - if yyb3044 { + if yyb3047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39097,13 +39153,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.SystemUUID = string(r.DecodeString()) } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3047++ + if yyhl3047 { + yyb3047 = yyj3047 > l } else { - yyb3044 = r.CheckBreak() + yyb3047 = r.CheckBreak() } - if yyb3044 { + if yyb3047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39113,13 +39169,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.BootID = string(r.DecodeString()) } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3047++ + if yyhl3047 { + yyb3047 = yyj3047 > l } else { - yyb3044 = r.CheckBreak() + yyb3047 = r.CheckBreak() } - if yyb3044 { + if yyb3047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39129,13 +39185,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KernelVersion = string(r.DecodeString()) } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3047++ + if yyhl3047 { + yyb3047 = yyj3047 > l } else { - yyb3044 = r.CheckBreak() + yyb3047 = r.CheckBreak() } - if yyb3044 { + if yyb3047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39145,13 +39201,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OSImage = string(r.DecodeString()) } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3047++ + if yyhl3047 { + yyb3047 = yyj3047 > l } else { - yyb3044 = r.CheckBreak() + yyb3047 = r.CheckBreak() } - if yyb3044 { + if yyb3047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39161,13 +39217,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ContainerRuntimeVersion = string(r.DecodeString()) } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3047++ + if yyhl3047 { + yyb3047 = yyj3047 > l } else { - yyb3044 = r.CheckBreak() + yyb3047 = r.CheckBreak() } - if yyb3044 { + if yyb3047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39177,13 +39233,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeletVersion = string(r.DecodeString()) } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3047++ + if yyhl3047 { + yyb3047 = yyj3047 > l } else { - yyb3044 = r.CheckBreak() + yyb3047 = r.CheckBreak() } - if yyb3044 { + if yyb3047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39193,13 +39249,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.KubeProxyVersion = string(r.DecodeString()) } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3047++ + if yyhl3047 { + yyb3047 = yyj3047 > l } else { - yyb3044 = r.CheckBreak() + yyb3047 = r.CheckBreak() } - if yyb3044 { + if yyb3047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39209,13 +39265,13 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.OperatingSystem = string(r.DecodeString()) } - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3047++ + if yyhl3047 { + yyb3047 = yyj3047 > l } else { - yyb3044 = r.CheckBreak() + yyb3047 = r.CheckBreak() } - if yyb3044 { + if yyb3047 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39226,17 +39282,17 @@ func (x *NodeSystemInfo) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Architecture = string(r.DecodeString()) } for { - yyj3044++ - if yyhl3044 { - yyb3044 = yyj3044 > l + yyj3047++ + if yyhl3047 { + yyb3047 = yyj3047 > l } else { - yyb3044 = r.CheckBreak() + yyb3047 = r.CheckBreak() } - if yyb3044 { + if yyb3047 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3044-1, "") + z.DecStructFieldNotFound(yyj3047-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39248,42 +39304,42 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3055 := z.EncBinary() - _ = yym3055 + yym3058 := z.EncBinary() + _ = yym3058 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3056 := !z.EncBinary() - yy2arr3056 := z.EncBasicHandle().StructToArray - var yyq3056 [10]bool - _, _, _ = yysep3056, yyq3056, yy2arr3056 - const yyr3056 bool = false - yyq3056[0] = len(x.Capacity) != 0 - yyq3056[1] = len(x.Allocatable) != 0 - yyq3056[2] = x.Phase != "" - yyq3056[3] = len(x.Conditions) != 0 - yyq3056[4] = len(x.Addresses) != 0 - yyq3056[5] = true - yyq3056[6] = true - yyq3056[7] = len(x.Images) != 0 - yyq3056[8] = len(x.VolumesInUse) != 0 - yyq3056[9] = len(x.VolumesAttached) != 0 - var yynn3056 int - if yyr3056 || yy2arr3056 { + yysep3059 := !z.EncBinary() + yy2arr3059 := z.EncBasicHandle().StructToArray + var yyq3059 [10]bool + _, _, _ = yysep3059, yyq3059, yy2arr3059 + const yyr3059 bool = false + yyq3059[0] = len(x.Capacity) != 0 + yyq3059[1] = len(x.Allocatable) != 0 + yyq3059[2] = x.Phase != "" + yyq3059[3] = len(x.Conditions) != 0 + yyq3059[4] = len(x.Addresses) != 0 + yyq3059[5] = true + yyq3059[6] = true + yyq3059[7] = len(x.Images) != 0 + yyq3059[8] = len(x.VolumesInUse) != 0 + yyq3059[9] = len(x.VolumesAttached) != 0 + var yynn3059 int + if yyr3059 || yy2arr3059 { r.EncodeArrayStart(10) } else { - yynn3056 = 0 - for _, b := range yyq3056 { + yynn3059 = 0 + for _, b := range yyq3059 { if b { - yynn3056++ + yynn3059++ } } - r.EncodeMapStart(yynn3056) - yynn3056 = 0 + r.EncodeMapStart(yynn3059) + yynn3059 = 0 } - if yyr3056 || yy2arr3056 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3056[0] { + if yyq3059[0] { if x.Capacity == nil { r.EncodeNil() } else { @@ -39293,7 +39349,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3056[0] { + if yyq3059[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capacity")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39304,9 +39360,9 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3056 || yy2arr3056 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3056[1] { + if yyq3059[1] { if x.Allocatable == nil { r.EncodeNil() } else { @@ -39316,7 +39372,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3056[1] { + if yyq3059[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("allocatable")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -39327,195 +39383,195 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3056 || yy2arr3056 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3056[2] { + if yyq3059[2] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3056[2] { + if yyq3059[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3056 || yy2arr3056 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3056[3] { + if yyq3059[3] { if x.Conditions == nil { r.EncodeNil() - } else { - yym3061 := z.EncBinary() - _ = yym3061 - if false { - } else { - h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq3056[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("conditions")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Conditions == nil { - r.EncodeNil() - } else { - yym3062 := z.EncBinary() - _ = yym3062 - if false { - } else { - h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) - } - } - } - } - if yyr3056 || yy2arr3056 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3056[4] { - if x.Addresses == nil { - r.EncodeNil() } else { yym3064 := z.EncBinary() _ = yym3064 if false { } else { - h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) + h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) } } } else { r.EncodeNil() } } else { - if yyq3056[4] { + if yyq3059[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("addresses")) + r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Addresses == nil { + if x.Conditions == nil { r.EncodeNil() } else { yym3065 := z.EncBinary() _ = yym3065 if false { + } else { + h.encSliceNodeCondition(([]NodeCondition)(x.Conditions), e) + } + } + } + } + if yyr3059 || yy2arr3059 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3059[4] { + if x.Addresses == nil { + r.EncodeNil() + } else { + yym3067 := z.EncBinary() + _ = yym3067 + if false { + } else { + h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq3059[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("addresses")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Addresses == nil { + r.EncodeNil() + } else { + yym3068 := z.EncBinary() + _ = yym3068 + if false { } else { h.encSliceNodeAddress(([]NodeAddress)(x.Addresses), e) } } } } - if yyr3056 || yy2arr3056 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3056[5] { - yy3067 := &x.DaemonEndpoints - yy3067.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3056[5] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3068 := &x.DaemonEndpoints - yy3068.CodecEncodeSelf(e) - } - } - if yyr3056 || yy2arr3056 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3056[6] { - yy3070 := &x.NodeInfo + if yyq3059[5] { + yy3070 := &x.DaemonEndpoints yy3070.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3056[6] { + if yyq3059[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) + r.EncodeString(codecSelferC_UTF81234, string("daemonEndpoints")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3071 := &x.NodeInfo + yy3071 := &x.DaemonEndpoints yy3071.CodecEncodeSelf(e) } } - if yyr3056 || yy2arr3056 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3056[7] { - if x.Images == nil { - r.EncodeNil() - } else { - yym3073 := z.EncBinary() - _ = yym3073 - if false { - } else { - h.encSliceContainerImage(([]ContainerImage)(x.Images), e) - } - } + if yyq3059[6] { + yy3073 := &x.NodeInfo + yy3073.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3056[7] { + if yyq3059[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("images")) + r.EncodeString(codecSelferC_UTF81234, string("nodeInfo")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Images == nil { - r.EncodeNil() - } else { - yym3074 := z.EncBinary() - _ = yym3074 - if false { - } else { - h.encSliceContainerImage(([]ContainerImage)(x.Images), e) - } - } + yy3074 := &x.NodeInfo + yy3074.CodecEncodeSelf(e) } } - if yyr3056 || yy2arr3056 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3056[8] { - if x.VolumesInUse == nil { + if yyq3059[7] { + if x.Images == nil { r.EncodeNil() } else { yym3076 := z.EncBinary() _ = yym3076 if false { } else { - h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) + h.encSliceContainerImage(([]ContainerImage)(x.Images), e) } } } else { r.EncodeNil() } } else { - if yyq3056[8] { + if yyq3059[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) + r.EncodeString(codecSelferC_UTF81234, string("images")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.VolumesInUse == nil { + if x.Images == nil { r.EncodeNil() } else { yym3077 := z.EncBinary() _ = yym3077 if false { + } else { + h.encSliceContainerImage(([]ContainerImage)(x.Images), e) + } + } + } + } + if yyr3059 || yy2arr3059 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3059[8] { + if x.VolumesInUse == nil { + r.EncodeNil() + } else { + yym3079 := z.EncBinary() + _ = yym3079 + if false { + } else { + h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq3059[8] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("volumesInUse")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.VolumesInUse == nil { + r.EncodeNil() + } else { + yym3080 := z.EncBinary() + _ = yym3080 + if false { } else { h.encSliceUniqueVolumeName(([]UniqueVolumeName)(x.VolumesInUse), e) } } } } - if yyr3056 || yy2arr3056 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3056[9] { + if yyq3059[9] { if x.VolumesAttached == nil { r.EncodeNil() } else { - yym3079 := z.EncBinary() - _ = yym3079 + yym3082 := z.EncBinary() + _ = yym3082 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -39525,15 +39581,15 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3056[9] { + if yyq3059[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("volumesAttached")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.VolumesAttached == nil { r.EncodeNil() } else { - yym3080 := z.EncBinary() - _ = yym3080 + yym3083 := z.EncBinary() + _ = yym3083 if false { } else { h.encSliceAttachedVolume(([]AttachedVolume)(x.VolumesAttached), e) @@ -39541,7 +39597,7 @@ func (x *NodeStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3056 || yy2arr3056 { + if yyr3059 || yy2arr3059 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -39554,25 +39610,25 @@ func (x *NodeStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3081 := z.DecBinary() - _ = yym3081 + yym3084 := z.DecBinary() + _ = yym3084 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3082 := r.ContainerType() - if yyct3082 == codecSelferValueTypeMap1234 { - yyl3082 := r.ReadMapStart() - if yyl3082 == 0 { + yyct3085 := r.ContainerType() + if yyct3085 == codecSelferValueTypeMap1234 { + yyl3085 := r.ReadMapStart() + if yyl3085 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3082, d) + x.codecDecodeSelfFromMap(yyl3085, d) } - } else if yyct3082 == codecSelferValueTypeArray1234 { - yyl3082 := r.ReadArrayStart() - if yyl3082 == 0 { + } else if yyct3085 == codecSelferValueTypeArray1234 { + yyl3085 := r.ReadArrayStart() + if yyl3085 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3082, d) + x.codecDecodeSelfFromArray(yyl3085, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -39584,12 +39640,12 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3083Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3083Slc - var yyhl3083 bool = l >= 0 - for yyj3083 := 0; ; yyj3083++ { - if yyhl3083 { - if yyj3083 >= l { + var yys3086Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3086Slc + var yyhl3086 bool = l >= 0 + for yyj3086 := 0; ; yyj3086++ { + if yyhl3086 { + if yyj3086 >= l { break } } else { @@ -39598,23 +39654,23 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3083Slc = r.DecodeBytes(yys3083Slc, true, true) - yys3083 := string(yys3083Slc) + yys3086Slc = r.DecodeBytes(yys3086Slc, true, true) + yys3086 := string(yys3086Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3083 { + switch yys3086 { case "capacity": if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3084 := &x.Capacity - yyv3084.CodecDecodeSelf(d) + yyv3087 := &x.Capacity + yyv3087.CodecDecodeSelf(d) } case "allocatable": if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv3085 := &x.Allocatable - yyv3085.CodecDecodeSelf(d) + yyv3088 := &x.Allocatable + yyv3088.CodecDecodeSelf(d) } case "phase": if r.TryDecodeAsNil() { @@ -39626,80 +39682,80 @@ func (x *NodeStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3087 := &x.Conditions - yym3088 := z.DecBinary() - _ = yym3088 + yyv3090 := &x.Conditions + yym3091 := z.DecBinary() + _ = yym3091 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv3087), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv3090), d) } } case "addresses": if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv3089 := &x.Addresses - yym3090 := z.DecBinary() - _ = yym3090 + yyv3092 := &x.Addresses + yym3093 := z.DecBinary() + _ = yym3093 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv3089), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3092), d) } } case "daemonEndpoints": if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv3091 := &x.DaemonEndpoints - yyv3091.CodecDecodeSelf(d) + yyv3094 := &x.DaemonEndpoints + yyv3094.CodecDecodeSelf(d) } case "nodeInfo": if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv3092 := &x.NodeInfo - yyv3092.CodecDecodeSelf(d) + yyv3095 := &x.NodeInfo + yyv3095.CodecDecodeSelf(d) } case "images": if r.TryDecodeAsNil() { x.Images = nil } else { - yyv3093 := &x.Images - yym3094 := z.DecBinary() - _ = yym3094 + yyv3096 := &x.Images + yym3097 := z.DecBinary() + _ = yym3097 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv3093), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3096), d) } } case "volumesInUse": if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv3095 := &x.VolumesInUse - yym3096 := z.DecBinary() - _ = yym3096 + yyv3098 := &x.VolumesInUse + yym3099 := z.DecBinary() + _ = yym3099 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3095), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3098), d) } } case "volumesAttached": if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv3097 := &x.VolumesAttached - yym3098 := z.DecBinary() - _ = yym3098 + yyv3100 := &x.VolumesAttached + yym3101 := z.DecBinary() + _ = yym3101 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3097), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3100), d) } } default: - z.DecStructFieldNotFound(-1, yys3083) - } // end switch yys3083 - } // end for yyj3083 + z.DecStructFieldNotFound(-1, yys3086) + } // end switch yys3086 + } // end for yyj3086 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -39707,16 +39763,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3099 int - var yyb3099 bool - var yyhl3099 bool = l >= 0 - yyj3099++ - if yyhl3099 { - yyb3099 = yyj3099 > l + var yyj3102 int + var yyb3102 bool + var yyhl3102 bool = l >= 0 + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3099 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3099 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39724,16 +39780,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Capacity = nil } else { - yyv3100 := &x.Capacity - yyv3100.CodecDecodeSelf(d) + yyv3103 := &x.Capacity + yyv3103.CodecDecodeSelf(d) } - yyj3099++ - if yyhl3099 { - yyb3099 = yyj3099 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3099 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3099 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39741,16 +39797,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Allocatable = nil } else { - yyv3101 := &x.Allocatable - yyv3101.CodecDecodeSelf(d) + yyv3104 := &x.Allocatable + yyv3104.CodecDecodeSelf(d) } - yyj3099++ - if yyhl3099 { - yyb3099 = yyj3099 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3099 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3099 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39760,13 +39816,13 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Phase = NodePhase(r.DecodeString()) } - yyj3099++ - if yyhl3099 { - yyb3099 = yyj3099 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3099 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3099 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39774,21 +39830,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv3103 := &x.Conditions - yym3104 := z.DecBinary() - _ = yym3104 + yyv3106 := &x.Conditions + yym3107 := z.DecBinary() + _ = yym3107 if false { } else { - h.decSliceNodeCondition((*[]NodeCondition)(yyv3103), d) + h.decSliceNodeCondition((*[]NodeCondition)(yyv3106), d) } } - yyj3099++ - if yyhl3099 { - yyb3099 = yyj3099 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3099 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3099 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39796,21 +39852,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Addresses = nil } else { - yyv3105 := &x.Addresses - yym3106 := z.DecBinary() - _ = yym3106 + yyv3108 := &x.Addresses + yym3109 := z.DecBinary() + _ = yym3109 if false { } else { - h.decSliceNodeAddress((*[]NodeAddress)(yyv3105), d) + h.decSliceNodeAddress((*[]NodeAddress)(yyv3108), d) } } - yyj3099++ - if yyhl3099 { - yyb3099 = yyj3099 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3099 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3099 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39818,16 +39874,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DaemonEndpoints = NodeDaemonEndpoints{} } else { - yyv3107 := &x.DaemonEndpoints - yyv3107.CodecDecodeSelf(d) + yyv3110 := &x.DaemonEndpoints + yyv3110.CodecDecodeSelf(d) } - yyj3099++ - if yyhl3099 { - yyb3099 = yyj3099 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3099 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3099 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39835,16 +39891,16 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.NodeInfo = NodeSystemInfo{} } else { - yyv3108 := &x.NodeInfo - yyv3108.CodecDecodeSelf(d) + yyv3111 := &x.NodeInfo + yyv3111.CodecDecodeSelf(d) } - yyj3099++ - if yyhl3099 { - yyb3099 = yyj3099 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3099 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3099 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39852,21 +39908,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Images = nil } else { - yyv3109 := &x.Images - yym3110 := z.DecBinary() - _ = yym3110 + yyv3112 := &x.Images + yym3113 := z.DecBinary() + _ = yym3113 if false { } else { - h.decSliceContainerImage((*[]ContainerImage)(yyv3109), d) + h.decSliceContainerImage((*[]ContainerImage)(yyv3112), d) } } - yyj3099++ - if yyhl3099 { - yyb3099 = yyj3099 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3099 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3099 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39874,21 +39930,21 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesInUse = nil } else { - yyv3111 := &x.VolumesInUse - yym3112 := z.DecBinary() - _ = yym3112 + yyv3114 := &x.VolumesInUse + yym3115 := z.DecBinary() + _ = yym3115 if false { } else { - h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3111), d) + h.decSliceUniqueVolumeName((*[]UniqueVolumeName)(yyv3114), d) } } - yyj3099++ - if yyhl3099 { - yyb3099 = yyj3099 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3099 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3099 { + if yyb3102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -39896,26 +39952,26 @@ func (x *NodeStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.VolumesAttached = nil } else { - yyv3113 := &x.VolumesAttached - yym3114 := z.DecBinary() - _ = yym3114 + yyv3116 := &x.VolumesAttached + yym3117 := z.DecBinary() + _ = yym3117 if false { } else { - h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3113), d) + h.decSliceAttachedVolume((*[]AttachedVolume)(yyv3116), d) } } for { - yyj3099++ - if yyhl3099 { - yyb3099 = yyj3099 > l + yyj3102++ + if yyhl3102 { + yyb3102 = yyj3102 > l } else { - yyb3099 = r.CheckBreak() + yyb3102 = r.CheckBreak() } - if yyb3099 { + if yyb3102 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3099-1, "") + z.DecStructFieldNotFound(yyj3102-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -39924,8 +39980,8 @@ func (x UniqueVolumeName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3115 := z.EncBinary() - _ = yym3115 + yym3118 := z.EncBinary() + _ = yym3118 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -39937,8 +39993,8 @@ func (x *UniqueVolumeName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3116 := z.DecBinary() - _ = yym3116 + yym3119 := z.DecBinary() + _ = yym3119 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -39953,30 +40009,30 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3117 := z.EncBinary() - _ = yym3117 + yym3120 := z.EncBinary() + _ = yym3120 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3118 := !z.EncBinary() - yy2arr3118 := z.EncBasicHandle().StructToArray - var yyq3118 [2]bool - _, _, _ = yysep3118, yyq3118, yy2arr3118 - const yyr3118 bool = false - var yynn3118 int - if yyr3118 || yy2arr3118 { + yysep3121 := !z.EncBinary() + yy2arr3121 := z.EncBasicHandle().StructToArray + var yyq3121 [2]bool + _, _, _ = yysep3121, yyq3121, yy2arr3121 + const yyr3121 bool = false + var yynn3121 int + if yyr3121 || yy2arr3121 { r.EncodeArrayStart(2) } else { - yynn3118 = 2 - for _, b := range yyq3118 { + yynn3121 = 2 + for _, b := range yyq3121 { if b { - yynn3118++ + yynn3121++ } } - r.EncodeMapStart(yynn3118) - yynn3118 = 0 + r.EncodeMapStart(yynn3121) + yynn3121 = 0 } - if yyr3118 || yy2arr3118 { + if yyr3121 || yy2arr3121 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Name.CodecEncodeSelf(e) } else { @@ -39985,10 +40041,10 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Name.CodecEncodeSelf(e) } - if yyr3118 || yy2arr3118 { + if yyr3121 || yy2arr3121 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3121 := z.EncBinary() - _ = yym3121 + yym3124 := z.EncBinary() + _ = yym3124 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) @@ -39997,14 +40053,14 @@ func (x *AttachedVolume) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("devicePath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3122 := z.EncBinary() - _ = yym3122 + yym3125 := z.EncBinary() + _ = yym3125 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.DevicePath)) } } - if yyr3118 || yy2arr3118 { + if yyr3121 || yy2arr3121 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40017,25 +40073,25 @@ func (x *AttachedVolume) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3123 := z.DecBinary() - _ = yym3123 + yym3126 := z.DecBinary() + _ = yym3126 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3124 := r.ContainerType() - if yyct3124 == codecSelferValueTypeMap1234 { - yyl3124 := r.ReadMapStart() - if yyl3124 == 0 { + yyct3127 := r.ContainerType() + if yyct3127 == codecSelferValueTypeMap1234 { + yyl3127 := r.ReadMapStart() + if yyl3127 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3124, d) + x.codecDecodeSelfFromMap(yyl3127, d) } - } else if yyct3124 == codecSelferValueTypeArray1234 { - yyl3124 := r.ReadArrayStart() - if yyl3124 == 0 { + } else if yyct3127 == codecSelferValueTypeArray1234 { + yyl3127 := r.ReadArrayStart() + if yyl3127 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3124, d) + x.codecDecodeSelfFromArray(yyl3127, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40047,12 +40103,12 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3125Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3125Slc - var yyhl3125 bool = l >= 0 - for yyj3125 := 0; ; yyj3125++ { - if yyhl3125 { - if yyj3125 >= l { + var yys3128Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3128Slc + var yyhl3128 bool = l >= 0 + for yyj3128 := 0; ; yyj3128++ { + if yyhl3128 { + if yyj3128 >= l { break } } else { @@ -40061,10 +40117,10 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3125Slc = r.DecodeBytes(yys3125Slc, true, true) - yys3125 := string(yys3125Slc) + yys3128Slc = r.DecodeBytes(yys3128Slc, true, true) + yys3128 := string(yys3128Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3125 { + switch yys3128 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -40078,9 +40134,9 @@ func (x *AttachedVolume) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3125) - } // end switch yys3125 - } // end for yyj3125 + z.DecStructFieldNotFound(-1, yys3128) + } // end switch yys3128 + } // end for yyj3128 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40088,16 +40144,16 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3128 int - var yyb3128 bool - var yyhl3128 bool = l >= 0 - yyj3128++ - if yyhl3128 { - yyb3128 = yyj3128 > l + var yyj3131 int + var yyb3131 bool + var yyhl3131 bool = l >= 0 + yyj3131++ + if yyhl3131 { + yyb3131 = yyj3131 > l } else { - yyb3128 = r.CheckBreak() + yyb3131 = r.CheckBreak() } - if yyb3128 { + if yyb3131 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40107,13 +40163,13 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Name = UniqueVolumeName(r.DecodeString()) } - yyj3128++ - if yyhl3128 { - yyb3128 = yyj3128 > l + yyj3131++ + if yyhl3131 { + yyb3131 = yyj3131 > l } else { - yyb3128 = r.CheckBreak() + yyb3131 = r.CheckBreak() } - if yyb3128 { + if yyb3131 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40124,17 +40180,17 @@ func (x *AttachedVolume) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.DevicePath = string(r.DecodeString()) } for { - yyj3128++ - if yyhl3128 { - yyb3128 = yyj3128 > l + yyj3131++ + if yyhl3131 { + yyb3131 = yyj3131 > l } else { - yyb3128 = r.CheckBreak() + yyb3131 = r.CheckBreak() } - if yyb3128 { + if yyb3131 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3128-1, "") + z.DecStructFieldNotFound(yyj3131-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40146,38 +40202,38 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3131 := z.EncBinary() - _ = yym3131 + yym3134 := z.EncBinary() + _ = yym3134 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3132 := !z.EncBinary() - yy2arr3132 := z.EncBasicHandle().StructToArray - var yyq3132 [1]bool - _, _, _ = yysep3132, yyq3132, yy2arr3132 - const yyr3132 bool = false - yyq3132[0] = len(x.PreferAvoidPods) != 0 - var yynn3132 int - if yyr3132 || yy2arr3132 { + yysep3135 := !z.EncBinary() + yy2arr3135 := z.EncBasicHandle().StructToArray + var yyq3135 [1]bool + _, _, _ = yysep3135, yyq3135, yy2arr3135 + const yyr3135 bool = false + yyq3135[0] = len(x.PreferAvoidPods) != 0 + var yynn3135 int + if yyr3135 || yy2arr3135 { r.EncodeArrayStart(1) } else { - yynn3132 = 0 - for _, b := range yyq3132 { + yynn3135 = 0 + for _, b := range yyq3135 { if b { - yynn3132++ + yynn3135++ } } - r.EncodeMapStart(yynn3132) - yynn3132 = 0 + r.EncodeMapStart(yynn3135) + yynn3135 = 0 } - if yyr3132 || yy2arr3132 { + if yyr3135 || yy2arr3135 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3132[0] { + if yyq3135[0] { if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym3134 := z.EncBinary() - _ = yym3134 + yym3137 := z.EncBinary() + _ = yym3137 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -40187,15 +40243,15 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3132[0] { + if yyq3135[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preferAvoidPods")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PreferAvoidPods == nil { r.EncodeNil() } else { - yym3135 := z.EncBinary() - _ = yym3135 + yym3138 := z.EncBinary() + _ = yym3138 if false { } else { h.encSlicePreferAvoidPodsEntry(([]PreferAvoidPodsEntry)(x.PreferAvoidPods), e) @@ -40203,7 +40259,7 @@ func (x *AvoidPods) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3132 || yy2arr3132 { + if yyr3135 || yy2arr3135 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40216,25 +40272,25 @@ func (x *AvoidPods) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3136 := z.DecBinary() - _ = yym3136 + yym3139 := z.DecBinary() + _ = yym3139 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3137 := r.ContainerType() - if yyct3137 == codecSelferValueTypeMap1234 { - yyl3137 := r.ReadMapStart() - if yyl3137 == 0 { + yyct3140 := r.ContainerType() + if yyct3140 == codecSelferValueTypeMap1234 { + yyl3140 := r.ReadMapStart() + if yyl3140 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3137, d) + x.codecDecodeSelfFromMap(yyl3140, d) } - } else if yyct3137 == codecSelferValueTypeArray1234 { - yyl3137 := r.ReadArrayStart() - if yyl3137 == 0 { + } else if yyct3140 == codecSelferValueTypeArray1234 { + yyl3140 := r.ReadArrayStart() + if yyl3140 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3137, d) + x.codecDecodeSelfFromArray(yyl3140, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40246,12 +40302,12 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3138Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3138Slc - var yyhl3138 bool = l >= 0 - for yyj3138 := 0; ; yyj3138++ { - if yyhl3138 { - if yyj3138 >= l { + var yys3141Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3141Slc + var yyhl3141 bool = l >= 0 + for yyj3141 := 0; ; yyj3141++ { + if yyhl3141 { + if yyj3141 >= l { break } } else { @@ -40260,26 +40316,26 @@ func (x *AvoidPods) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3138Slc = r.DecodeBytes(yys3138Slc, true, true) - yys3138 := string(yys3138Slc) + yys3141Slc = r.DecodeBytes(yys3141Slc, true, true) + yys3141 := string(yys3141Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3138 { + switch yys3141 { case "preferAvoidPods": if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv3139 := &x.PreferAvoidPods - yym3140 := z.DecBinary() - _ = yym3140 + yyv3142 := &x.PreferAvoidPods + yym3143 := z.DecBinary() + _ = yym3143 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3139), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3142), d) } } default: - z.DecStructFieldNotFound(-1, yys3138) - } // end switch yys3138 - } // end for yyj3138 + z.DecStructFieldNotFound(-1, yys3141) + } // end switch yys3141 + } // end for yyj3141 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40287,16 +40343,16 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3141 int - var yyb3141 bool - var yyhl3141 bool = l >= 0 - yyj3141++ - if yyhl3141 { - yyb3141 = yyj3141 > l + var yyj3144 int + var yyb3144 bool + var yyhl3144 bool = l >= 0 + yyj3144++ + if yyhl3144 { + yyb3144 = yyj3144 > l } else { - yyb3141 = r.CheckBreak() + yyb3144 = r.CheckBreak() } - if yyb3141 { + if yyb3144 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40304,26 +40360,26 @@ func (x *AvoidPods) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.PreferAvoidPods = nil } else { - yyv3142 := &x.PreferAvoidPods - yym3143 := z.DecBinary() - _ = yym3143 + yyv3145 := &x.PreferAvoidPods + yym3146 := z.DecBinary() + _ = yym3146 if false { } else { - h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3142), d) + h.decSlicePreferAvoidPodsEntry((*[]PreferAvoidPodsEntry)(yyv3145), d) } } for { - yyj3141++ - if yyhl3141 { - yyb3141 = yyj3141 > l + yyj3144++ + if yyhl3144 { + yyb3144 = yyj3144 > l } else { - yyb3141 = r.CheckBreak() + yyb3144 = r.CheckBreak() } - if yyb3141 { + if yyb3144 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3141-1, "") + z.DecStructFieldNotFound(yyj3144-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40335,131 +40391,131 @@ func (x *PreferAvoidPodsEntry) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3144 := z.EncBinary() - _ = yym3144 + yym3147 := z.EncBinary() + _ = yym3147 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3145 := !z.EncBinary() - yy2arr3145 := z.EncBasicHandle().StructToArray - var yyq3145 [4]bool - _, _, _ = yysep3145, yyq3145, yy2arr3145 - const yyr3145 bool = false - yyq3145[1] = true - yyq3145[2] = x.Reason != "" - yyq3145[3] = x.Message != "" - var yynn3145 int - if yyr3145 || yy2arr3145 { + yysep3148 := !z.EncBinary() + yy2arr3148 := z.EncBasicHandle().StructToArray + var yyq3148 [4]bool + _, _, _ = yysep3148, yyq3148, yy2arr3148 + const yyr3148 bool = false + yyq3148[1] = true + yyq3148[2] = x.Reason != "" + yyq3148[3] = x.Message != "" + var yynn3148 int + if yyr3148 || yy2arr3148 { r.EncodeArrayStart(4) } else { - yynn3145 = 1 - for _, b := range yyq3145 { + yynn3148 = 1 + for _, b := range yyq3148 { if b { - yynn3145++ + yynn3148++ } } - r.EncodeMapStart(yynn3145) - yynn3145 = 0 + r.EncodeMapStart(yynn3148) + yynn3148 = 0 } - if yyr3145 || yy2arr3145 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3147 := &x.PodSignature - yy3147.CodecEncodeSelf(e) + yy3150 := &x.PodSignature + yy3150.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podSignature")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3148 := &x.PodSignature - yy3148.CodecEncodeSelf(e) + yy3151 := &x.PodSignature + yy3151.CodecEncodeSelf(e) } - if yyr3145 || yy2arr3145 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3145[1] { - yy3150 := &x.EvictionTime - yym3151 := z.EncBinary() - _ = yym3151 + if yyq3148[1] { + yy3153 := &x.EvictionTime + yym3154 := z.EncBinary() + _ = yym3154 if false { - } else if z.HasExtensions() && z.EncExt(yy3150) { - } else if yym3151 { - z.EncBinaryMarshal(yy3150) - } else if !yym3151 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3150) + } else if z.HasExtensions() && z.EncExt(yy3153) { + } else if yym3154 { + z.EncBinaryMarshal(yy3153) + } else if !yym3154 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3153) } else { - z.EncFallback(yy3150) + z.EncFallback(yy3153) } } else { r.EncodeNil() } } else { - if yyq3145[1] { + if yyq3148[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("evictionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3152 := &x.EvictionTime - yym3153 := z.EncBinary() - _ = yym3153 - if false { - } else if z.HasExtensions() && z.EncExt(yy3152) { - } else if yym3153 { - z.EncBinaryMarshal(yy3152) - } else if !yym3153 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3152) - } else { - z.EncFallback(yy3152) - } - } - } - if yyr3145 || yy2arr3145 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3145[2] { - yym3155 := z.EncBinary() - _ = yym3155 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3145[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3155 := &x.EvictionTime yym3156 := z.EncBinary() _ = yym3156 if false { + } else if z.HasExtensions() && z.EncExt(yy3155) { + } else if yym3156 { + z.EncBinaryMarshal(yy3155) + } else if !yym3156 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3155) } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + z.EncFallback(yy3155) } } } - if yyr3145 || yy2arr3145 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3145[3] { + if yyq3148[2] { yym3158 := z.EncBinary() _ = yym3158 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3145[3] { + if yyq3148[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) + r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3159 := z.EncBinary() _ = yym3159 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr3148 || yy2arr3148 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3148[3] { + yym3161 := z.EncBinary() + _ = yym3161 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3148[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3162 := z.EncBinary() + _ = yym3162 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3145 || yy2arr3145 { + if yyr3148 || yy2arr3148 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40472,25 +40528,25 @@ func (x *PreferAvoidPodsEntry) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3160 := z.DecBinary() - _ = yym3160 + yym3163 := z.DecBinary() + _ = yym3163 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3161 := r.ContainerType() - if yyct3161 == codecSelferValueTypeMap1234 { - yyl3161 := r.ReadMapStart() - if yyl3161 == 0 { + yyct3164 := r.ContainerType() + if yyct3164 == codecSelferValueTypeMap1234 { + yyl3164 := r.ReadMapStart() + if yyl3164 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3161, d) + x.codecDecodeSelfFromMap(yyl3164, d) } - } else if yyct3161 == codecSelferValueTypeArray1234 { - yyl3161 := r.ReadArrayStart() - if yyl3161 == 0 { + } else if yyct3164 == codecSelferValueTypeArray1234 { + yyl3164 := r.ReadArrayStart() + if yyl3164 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3161, d) + x.codecDecodeSelfFromArray(yyl3164, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40502,12 +40558,12 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3162Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3162Slc - var yyhl3162 bool = l >= 0 - for yyj3162 := 0; ; yyj3162++ { - if yyhl3162 { - if yyj3162 >= l { + var yys3165Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3165Slc + var yyhl3165 bool = l >= 0 + for yyj3165 := 0; ; yyj3165++ { + if yyhl3165 { + if yyj3165 >= l { break } } else { @@ -40516,32 +40572,32 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3162Slc = r.DecodeBytes(yys3162Slc, true, true) - yys3162 := string(yys3162Slc) + yys3165Slc = r.DecodeBytes(yys3165Slc, true, true) + yys3165 := string(yys3165Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3162 { + switch yys3165 { case "podSignature": if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3163 := &x.PodSignature - yyv3163.CodecDecodeSelf(d) + yyv3166 := &x.PodSignature + yyv3166.CodecDecodeSelf(d) } case "evictionTime": if r.TryDecodeAsNil() { x.EvictionTime = pkg2_v1.Time{} } else { - yyv3164 := &x.EvictionTime - yym3165 := z.DecBinary() - _ = yym3165 + yyv3167 := &x.EvictionTime + yym3168 := z.DecBinary() + _ = yym3168 if false { - } else if z.HasExtensions() && z.DecExt(yyv3164) { - } else if yym3165 { - z.DecBinaryUnmarshal(yyv3164) - } else if !yym3165 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3164) + } else if z.HasExtensions() && z.DecExt(yyv3167) { + } else if yym3168 { + z.DecBinaryUnmarshal(yyv3167) + } else if !yym3168 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3167) } else { - z.DecFallback(yyv3164, false) + z.DecFallback(yyv3167, false) } } case "reason": @@ -40557,9 +40613,9 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3162) - } // end switch yys3162 - } // end for yyj3162 + z.DecStructFieldNotFound(-1, yys3165) + } // end switch yys3165 + } // end for yyj3165 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40567,16 +40623,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3168 int - var yyb3168 bool - var yyhl3168 bool = l >= 0 - yyj3168++ - if yyhl3168 { - yyb3168 = yyj3168 > l + var yyj3171 int + var yyb3171 bool + var yyhl3171 bool = l >= 0 + yyj3171++ + if yyhl3171 { + yyb3171 = yyj3171 > l } else { - yyb3168 = r.CheckBreak() + yyb3171 = r.CheckBreak() } - if yyb3168 { + if yyb3171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40584,16 +40640,16 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.PodSignature = PodSignature{} } else { - yyv3169 := &x.PodSignature - yyv3169.CodecDecodeSelf(d) + yyv3172 := &x.PodSignature + yyv3172.CodecDecodeSelf(d) } - yyj3168++ - if yyhl3168 { - yyb3168 = yyj3168 > l + yyj3171++ + if yyhl3171 { + yyb3171 = yyj3171 > l } else { - yyb3168 = r.CheckBreak() + yyb3171 = r.CheckBreak() } - if yyb3168 { + if yyb3171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40601,26 +40657,26 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco if r.TryDecodeAsNil() { x.EvictionTime = pkg2_v1.Time{} } else { - yyv3170 := &x.EvictionTime - yym3171 := z.DecBinary() - _ = yym3171 + yyv3173 := &x.EvictionTime + yym3174 := z.DecBinary() + _ = yym3174 if false { - } else if z.HasExtensions() && z.DecExt(yyv3170) { - } else if yym3171 { - z.DecBinaryUnmarshal(yyv3170) - } else if !yym3171 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3170) + } else if z.HasExtensions() && z.DecExt(yyv3173) { + } else if yym3174 { + z.DecBinaryUnmarshal(yyv3173) + } else if !yym3174 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3173) } else { - z.DecFallback(yyv3170, false) + z.DecFallback(yyv3173, false) } } - yyj3168++ - if yyhl3168 { - yyb3168 = yyj3168 > l + yyj3171++ + if yyhl3171 { + yyb3171 = yyj3171 > l } else { - yyb3168 = r.CheckBreak() + yyb3171 = r.CheckBreak() } - if yyb3168 { + if yyb3171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40630,13 +40686,13 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco } else { x.Reason = string(r.DecodeString()) } - yyj3168++ - if yyhl3168 { - yyb3168 = yyj3168 > l + yyj3171++ + if yyhl3171 { + yyb3171 = yyj3171 > l } else { - yyb3168 = r.CheckBreak() + yyb3171 = r.CheckBreak() } - if yyb3168 { + if yyb3171 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40647,17 +40703,17 @@ func (x *PreferAvoidPodsEntry) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Message = string(r.DecodeString()) } for { - yyj3168++ - if yyhl3168 { - yyb3168 = yyj3168 > l + yyj3171++ + if yyhl3171 { + yyb3171 = yyj3171 > l } else { - yyb3168 = r.CheckBreak() + yyb3171 = r.CheckBreak() } - if yyb3168 { + if yyb3171 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3168-1, "") + z.DecStructFieldNotFound(yyj3171-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40669,38 +40725,38 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3174 := z.EncBinary() - _ = yym3174 + yym3177 := z.EncBinary() + _ = yym3177 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3175 := !z.EncBinary() - yy2arr3175 := z.EncBasicHandle().StructToArray - var yyq3175 [1]bool - _, _, _ = yysep3175, yyq3175, yy2arr3175 - const yyr3175 bool = false - yyq3175[0] = x.PodController != nil - var yynn3175 int - if yyr3175 || yy2arr3175 { + yysep3178 := !z.EncBinary() + yy2arr3178 := z.EncBasicHandle().StructToArray + var yyq3178 [1]bool + _, _, _ = yysep3178, yyq3178, yy2arr3178 + const yyr3178 bool = false + yyq3178[0] = x.PodController != nil + var yynn3178 int + if yyr3178 || yy2arr3178 { r.EncodeArrayStart(1) } else { - yynn3175 = 0 - for _, b := range yyq3175 { + yynn3178 = 0 + for _, b := range yyq3178 { if b { - yynn3175++ + yynn3178++ } } - r.EncodeMapStart(yynn3175) - yynn3175 = 0 + r.EncodeMapStart(yynn3178) + yynn3178 = 0 } - if yyr3175 || yy2arr3175 { + if yyr3178 || yy2arr3178 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3175[0] { + if yyq3178[0] { if x.PodController == nil { r.EncodeNil() } else { - yym3177 := z.EncBinary() - _ = yym3177 + yym3180 := z.EncBinary() + _ = yym3180 if false { } else if z.HasExtensions() && z.EncExt(x.PodController) { } else { @@ -40711,15 +40767,15 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3175[0] { + if yyq3178[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("podController")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.PodController == nil { r.EncodeNil() } else { - yym3178 := z.EncBinary() - _ = yym3178 + yym3181 := z.EncBinary() + _ = yym3181 if false { } else if z.HasExtensions() && z.EncExt(x.PodController) { } else { @@ -40728,7 +40784,7 @@ func (x *PodSignature) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3175 || yy2arr3175 { + if yyr3178 || yy2arr3178 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40741,25 +40797,25 @@ func (x *PodSignature) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3179 := z.DecBinary() - _ = yym3179 + yym3182 := z.DecBinary() + _ = yym3182 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3180 := r.ContainerType() - if yyct3180 == codecSelferValueTypeMap1234 { - yyl3180 := r.ReadMapStart() - if yyl3180 == 0 { + yyct3183 := r.ContainerType() + if yyct3183 == codecSelferValueTypeMap1234 { + yyl3183 := r.ReadMapStart() + if yyl3183 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3180, d) + x.codecDecodeSelfFromMap(yyl3183, d) } - } else if yyct3180 == codecSelferValueTypeArray1234 { - yyl3180 := r.ReadArrayStart() - if yyl3180 == 0 { + } else if yyct3183 == codecSelferValueTypeArray1234 { + yyl3183 := r.ReadArrayStart() + if yyl3183 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3180, d) + x.codecDecodeSelfFromArray(yyl3183, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40771,12 +40827,12 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3181Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3181Slc - var yyhl3181 bool = l >= 0 - for yyj3181 := 0; ; yyj3181++ { - if yyhl3181 { - if yyj3181 >= l { + var yys3184Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3184Slc + var yyhl3184 bool = l >= 0 + for yyj3184 := 0; ; yyj3184++ { + if yyhl3184 { + if yyj3184 >= l { break } } else { @@ -40785,10 +40841,10 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3181Slc = r.DecodeBytes(yys3181Slc, true, true) - yys3181 := string(yys3181Slc) + yys3184Slc = r.DecodeBytes(yys3184Slc, true, true) + yys3184 := string(yys3184Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3181 { + switch yys3184 { case "podController": if r.TryDecodeAsNil() { if x.PodController != nil { @@ -40798,8 +40854,8 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.PodController == nil { x.PodController = new(pkg2_v1.OwnerReference) } - yym3183 := z.DecBinary() - _ = yym3183 + yym3186 := z.DecBinary() + _ = yym3186 if false { } else if z.HasExtensions() && z.DecExt(x.PodController) { } else { @@ -40807,9 +40863,9 @@ func (x *PodSignature) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3181) - } // end switch yys3181 - } // end for yyj3181 + z.DecStructFieldNotFound(-1, yys3184) + } // end switch yys3184 + } // end for yyj3184 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -40817,16 +40873,16 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3184 int - var yyb3184 bool - var yyhl3184 bool = l >= 0 - yyj3184++ - if yyhl3184 { - yyb3184 = yyj3184 > l + var yyj3187 int + var yyb3187 bool + var yyhl3187 bool = l >= 0 + yyj3187++ + if yyhl3187 { + yyb3187 = yyj3187 > l } else { - yyb3184 = r.CheckBreak() + yyb3187 = r.CheckBreak() } - if yyb3184 { + if yyb3187 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -40839,8 +40895,8 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.PodController == nil { x.PodController = new(pkg2_v1.OwnerReference) } - yym3186 := z.DecBinary() - _ = yym3186 + yym3189 := z.DecBinary() + _ = yym3189 if false { } else if z.HasExtensions() && z.DecExt(x.PodController) { } else { @@ -40848,17 +40904,17 @@ func (x *PodSignature) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3184++ - if yyhl3184 { - yyb3184 = yyj3184 > l + yyj3187++ + if yyhl3187 { + yyb3187 = yyj3187 > l } else { - yyb3184 = r.CheckBreak() + yyb3187 = r.CheckBreak() } - if yyb3184 { + if yyb3187 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3184-1, "") + z.DecStructFieldNotFound(yyj3187-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -40870,37 +40926,37 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3187 := z.EncBinary() - _ = yym3187 + yym3190 := z.EncBinary() + _ = yym3190 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3188 := !z.EncBinary() - yy2arr3188 := z.EncBasicHandle().StructToArray - var yyq3188 [2]bool - _, _, _ = yysep3188, yyq3188, yy2arr3188 - const yyr3188 bool = false - yyq3188[1] = x.SizeBytes != 0 - var yynn3188 int - if yyr3188 || yy2arr3188 { + yysep3191 := !z.EncBinary() + yy2arr3191 := z.EncBasicHandle().StructToArray + var yyq3191 [2]bool + _, _, _ = yysep3191, yyq3191, yy2arr3191 + const yyr3191 bool = false + yyq3191[1] = x.SizeBytes != 0 + var yynn3191 int + if yyr3191 || yy2arr3191 { r.EncodeArrayStart(2) } else { - yynn3188 = 1 - for _, b := range yyq3188 { + yynn3191 = 1 + for _, b := range yyq3191 { if b { - yynn3188++ + yynn3191++ } } - r.EncodeMapStart(yynn3188) - yynn3188 = 0 + r.EncodeMapStart(yynn3191) + yynn3191 = 0 } - if yyr3188 || yy2arr3188 { + if yyr3191 || yy2arr3191 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Names == nil { r.EncodeNil() } else { - yym3190 := z.EncBinary() - _ = yym3190 + yym3193 := z.EncBinary() + _ = yym3193 if false { } else { z.F.EncSliceStringV(x.Names, false, e) @@ -40913,19 +40969,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { if x.Names == nil { r.EncodeNil() } else { - yym3191 := z.EncBinary() - _ = yym3191 + yym3194 := z.EncBinary() + _ = yym3194 if false { } else { z.F.EncSliceStringV(x.Names, false, e) } } } - if yyr3188 || yy2arr3188 { + if yyr3191 || yy2arr3191 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3188[1] { - yym3193 := z.EncBinary() - _ = yym3193 + if yyq3191[1] { + yym3196 := z.EncBinary() + _ = yym3196 if false { } else { r.EncodeInt(int64(x.SizeBytes)) @@ -40934,19 +40990,19 @@ func (x *ContainerImage) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3188[1] { + if yyq3191[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sizeBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3194 := z.EncBinary() - _ = yym3194 + yym3197 := z.EncBinary() + _ = yym3197 if false { } else { r.EncodeInt(int64(x.SizeBytes)) } } } - if yyr3188 || yy2arr3188 { + if yyr3191 || yy2arr3191 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -40959,25 +41015,25 @@ func (x *ContainerImage) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3195 := z.DecBinary() - _ = yym3195 + yym3198 := z.DecBinary() + _ = yym3198 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3196 := r.ContainerType() - if yyct3196 == codecSelferValueTypeMap1234 { - yyl3196 := r.ReadMapStart() - if yyl3196 == 0 { + yyct3199 := r.ContainerType() + if yyct3199 == codecSelferValueTypeMap1234 { + yyl3199 := r.ReadMapStart() + if yyl3199 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3196, d) + x.codecDecodeSelfFromMap(yyl3199, d) } - } else if yyct3196 == codecSelferValueTypeArray1234 { - yyl3196 := r.ReadArrayStart() - if yyl3196 == 0 { + } else if yyct3199 == codecSelferValueTypeArray1234 { + yyl3199 := r.ReadArrayStart() + if yyl3199 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3196, d) + x.codecDecodeSelfFromArray(yyl3199, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -40989,12 +41045,12 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3197Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3197Slc - var yyhl3197 bool = l >= 0 - for yyj3197 := 0; ; yyj3197++ { - if yyhl3197 { - if yyj3197 >= l { + var yys3200Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3200Slc + var yyhl3200 bool = l >= 0 + for yyj3200 := 0; ; yyj3200++ { + if yyhl3200 { + if yyj3200 >= l { break } } else { @@ -41003,20 +41059,20 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3197Slc = r.DecodeBytes(yys3197Slc, true, true) - yys3197 := string(yys3197Slc) + yys3200Slc = r.DecodeBytes(yys3200Slc, true, true) + yys3200 := string(yys3200Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3197 { + switch yys3200 { case "names": if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3198 := &x.Names - yym3199 := z.DecBinary() - _ = yym3199 + yyv3201 := &x.Names + yym3202 := z.DecBinary() + _ = yym3202 if false { } else { - z.F.DecSliceStringX(yyv3198, false, d) + z.F.DecSliceStringX(yyv3201, false, d) } } case "sizeBytes": @@ -41026,9 +41082,9 @@ func (x *ContainerImage) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } default: - z.DecStructFieldNotFound(-1, yys3197) - } // end switch yys3197 - } // end for yyj3197 + z.DecStructFieldNotFound(-1, yys3200) + } // end switch yys3200 + } // end for yyj3200 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41036,16 +41092,16 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3201 int - var yyb3201 bool - var yyhl3201 bool = l >= 0 - yyj3201++ - if yyhl3201 { - yyb3201 = yyj3201 > l + var yyj3204 int + var yyb3204 bool + var yyhl3204 bool = l >= 0 + yyj3204++ + if yyhl3204 { + yyb3204 = yyj3204 > l } else { - yyb3201 = r.CheckBreak() + yyb3204 = r.CheckBreak() } - if yyb3201 { + if yyb3204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41053,21 +41109,21 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Names = nil } else { - yyv3202 := &x.Names - yym3203 := z.DecBinary() - _ = yym3203 + yyv3205 := &x.Names + yym3206 := z.DecBinary() + _ = yym3206 if false { } else { - z.F.DecSliceStringX(yyv3202, false, d) + z.F.DecSliceStringX(yyv3205, false, d) } } - yyj3201++ - if yyhl3201 { - yyb3201 = yyj3201 > l + yyj3204++ + if yyhl3204 { + yyb3204 = yyj3204 > l } else { - yyb3201 = r.CheckBreak() + yyb3204 = r.CheckBreak() } - if yyb3201 { + if yyb3204 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41078,17 +41134,17 @@ func (x *ContainerImage) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.SizeBytes = int64(r.DecodeInt(64)) } for { - yyj3201++ - if yyhl3201 { - yyb3201 = yyj3201 > l + yyj3204++ + if yyhl3204 { + yyb3204 = yyj3204 > l } else { - yyb3201 = r.CheckBreak() + yyb3204 = r.CheckBreak() } - if yyb3201 { + if yyb3204 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3201-1, "") + z.DecStructFieldNotFound(yyj3204-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41097,8 +41153,8 @@ func (x NodePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3205 := z.EncBinary() - _ = yym3205 + yym3208 := z.EncBinary() + _ = yym3208 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41110,8 +41166,8 @@ func (x *NodePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3206 := z.DecBinary() - _ = yym3206 + yym3209 := z.DecBinary() + _ = yym3209 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41123,8 +41179,8 @@ func (x NodeConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3207 := z.EncBinary() - _ = yym3207 + yym3210 := z.EncBinary() + _ = yym3210 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41136,8 +41192,8 @@ func (x *NodeConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3208 := z.DecBinary() - _ = yym3208 + yym3211 := z.DecBinary() + _ = yym3211 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41152,34 +41208,34 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3209 := z.EncBinary() - _ = yym3209 + yym3212 := z.EncBinary() + _ = yym3212 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3210 := !z.EncBinary() - yy2arr3210 := z.EncBasicHandle().StructToArray - var yyq3210 [6]bool - _, _, _ = yysep3210, yyq3210, yy2arr3210 - const yyr3210 bool = false - yyq3210[2] = true - yyq3210[3] = true - yyq3210[4] = x.Reason != "" - yyq3210[5] = x.Message != "" - var yynn3210 int - if yyr3210 || yy2arr3210 { + yysep3213 := !z.EncBinary() + yy2arr3213 := z.EncBasicHandle().StructToArray + var yyq3213 [6]bool + _, _, _ = yysep3213, yyq3213, yy2arr3213 + const yyr3213 bool = false + yyq3213[2] = true + yyq3213[3] = true + yyq3213[4] = x.Reason != "" + yyq3213[5] = x.Message != "" + var yynn3213 int + if yyr3213 || yy2arr3213 { r.EncodeArrayStart(6) } else { - yynn3210 = 2 - for _, b := range yyq3210 { + yynn3213 = 2 + for _, b := range yyq3213 { if b { - yynn3210++ + yynn3213++ } } - r.EncodeMapStart(yynn3210) - yynn3210 = 0 + r.EncodeMapStart(yynn3213) + yynn3213 = 0 } - if yyr3210 || yy2arr3210 { + if yyr3213 || yy2arr3213 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -41188,7 +41244,7 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3210 || yy2arr3210 { + if yyr3213 || yy2arr3213 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -41197,47 +41253,30 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr3210 || yy2arr3210 { + if yyr3213 || yy2arr3213 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3210[2] { - yy3214 := &x.LastHeartbeatTime - yym3215 := z.EncBinary() - _ = yym3215 + if yyq3213[2] { + yy3217 := &x.LastHeartbeatTime + yym3218 := z.EncBinary() + _ = yym3218 if false { - } else if z.HasExtensions() && z.EncExt(yy3214) { - } else if yym3215 { - z.EncBinaryMarshal(yy3214) - } else if !yym3215 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3214) + } else if z.HasExtensions() && z.EncExt(yy3217) { + } else if yym3218 { + z.EncBinaryMarshal(yy3217) + } else if !yym3218 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3217) } else { - z.EncFallback(yy3214) + z.EncFallback(yy3217) } } else { r.EncodeNil() } } else { - if yyq3210[2] { + if yyq3213[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastHeartbeatTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3216 := &x.LastHeartbeatTime - yym3217 := z.EncBinary() - _ = yym3217 - if false { - } else if z.HasExtensions() && z.EncExt(yy3216) { - } else if yym3217 { - z.EncBinaryMarshal(yy3216) - } else if !yym3217 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3216) - } else { - z.EncFallback(yy3216) - } - } - } - if yyr3210 || yy2arr3210 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3210[3] { - yy3219 := &x.LastTransitionTime + yy3219 := &x.LastHeartbeatTime yym3220 := z.EncBinary() _ = yym3220 if false { @@ -41249,79 +41288,96 @@ func (x *NodeCondition) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncFallback(yy3219) } + } + } + if yyr3213 || yy2arr3213 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3213[3] { + yy3222 := &x.LastTransitionTime + yym3223 := z.EncBinary() + _ = yym3223 + if false { + } else if z.HasExtensions() && z.EncExt(yy3222) { + } else if yym3223 { + z.EncBinaryMarshal(yy3222) + } else if !yym3223 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3222) + } else { + z.EncFallback(yy3222) + } } else { r.EncodeNil() } } else { - if yyq3210[3] { + if yyq3213[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTransitionTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3221 := &x.LastTransitionTime - yym3222 := z.EncBinary() - _ = yym3222 - if false { - } else if z.HasExtensions() && z.EncExt(yy3221) { - } else if yym3222 { - z.EncBinaryMarshal(yy3221) - } else if !yym3222 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3221) - } else { - z.EncFallback(yy3221) - } - } - } - if yyr3210 || yy2arr3210 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3210[4] { - yym3224 := z.EncBinary() - _ = yym3224 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3210[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3224 := &x.LastTransitionTime yym3225 := z.EncBinary() _ = yym3225 if false { + } else if z.HasExtensions() && z.EncExt(yy3224) { + } else if yym3225 { + z.EncBinaryMarshal(yy3224) + } else if !yym3225 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3224) } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + z.EncFallback(yy3224) } } } - if yyr3210 || yy2arr3210 { + if yyr3213 || yy2arr3213 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3210[5] { + if yyq3213[4] { yym3227 := z.EncBinary() _ = yym3227 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3210[5] { + if yyq3213[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) + r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3228 := z.EncBinary() _ = yym3228 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr3213 || yy2arr3213 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3213[5] { + yym3230 := z.EncBinary() + _ = yym3230 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3213[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3231 := z.EncBinary() + _ = yym3231 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3210 || yy2arr3210 { + if yyr3213 || yy2arr3213 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41334,25 +41390,25 @@ func (x *NodeCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3229 := z.DecBinary() - _ = yym3229 + yym3232 := z.DecBinary() + _ = yym3232 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3230 := r.ContainerType() - if yyct3230 == codecSelferValueTypeMap1234 { - yyl3230 := r.ReadMapStart() - if yyl3230 == 0 { + yyct3233 := r.ContainerType() + if yyct3233 == codecSelferValueTypeMap1234 { + yyl3233 := r.ReadMapStart() + if yyl3233 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3230, d) + x.codecDecodeSelfFromMap(yyl3233, d) } - } else if yyct3230 == codecSelferValueTypeArray1234 { - yyl3230 := r.ReadArrayStart() - if yyl3230 == 0 { + } else if yyct3233 == codecSelferValueTypeArray1234 { + yyl3233 := r.ReadArrayStart() + if yyl3233 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3230, d) + x.codecDecodeSelfFromArray(yyl3233, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41364,12 +41420,12 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3231Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3231Slc - var yyhl3231 bool = l >= 0 - for yyj3231 := 0; ; yyj3231++ { - if yyhl3231 { - if yyj3231 >= l { + var yys3234Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3234Slc + var yyhl3234 bool = l >= 0 + for yyj3234 := 0; ; yyj3234++ { + if yyhl3234 { + if yyj3234 >= l { break } } else { @@ -41378,10 +41434,10 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3231Slc = r.DecodeBytes(yys3231Slc, true, true) - yys3231 := string(yys3231Slc) + yys3234Slc = r.DecodeBytes(yys3234Slc, true, true) + yys3234 := string(yys3234Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3231 { + switch yys3234 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -41398,34 +41454,34 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_v1.Time{} } else { - yyv3234 := &x.LastHeartbeatTime - yym3235 := z.DecBinary() - _ = yym3235 + yyv3237 := &x.LastHeartbeatTime + yym3238 := z.DecBinary() + _ = yym3238 if false { - } else if z.HasExtensions() && z.DecExt(yyv3234) { - } else if yym3235 { - z.DecBinaryUnmarshal(yyv3234) - } else if !yym3235 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3234) + } else if z.HasExtensions() && z.DecExt(yyv3237) { + } else if yym3238 { + z.DecBinaryUnmarshal(yyv3237) + } else if !yym3238 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3237) } else { - z.DecFallback(yyv3234, false) + z.DecFallback(yyv3237, false) } } case "lastTransitionTime": if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_v1.Time{} } else { - yyv3236 := &x.LastTransitionTime - yym3237 := z.DecBinary() - _ = yym3237 + yyv3239 := &x.LastTransitionTime + yym3240 := z.DecBinary() + _ = yym3240 if false { - } else if z.HasExtensions() && z.DecExt(yyv3236) { - } else if yym3237 { - z.DecBinaryUnmarshal(yyv3236) - } else if !yym3237 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3236) + } else if z.HasExtensions() && z.DecExt(yyv3239) { + } else if yym3240 { + z.DecBinaryUnmarshal(yyv3239) + } else if !yym3240 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3239) } else { - z.DecFallback(yyv3236, false) + z.DecFallback(yyv3239, false) } } case "reason": @@ -41441,9 +41497,9 @@ func (x *NodeCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3231) - } // end switch yys3231 - } // end for yyj3231 + z.DecStructFieldNotFound(-1, yys3234) + } // end switch yys3234 + } // end for yyj3234 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41451,16 +41507,16 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3240 int - var yyb3240 bool - var yyhl3240 bool = l >= 0 - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + var yyj3243 int + var yyb3243 bool + var yyhl3243 bool = l >= 0 + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3240 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3240 { + if yyb3243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41470,13 +41526,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeConditionType(r.DecodeString()) } - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3240 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3240 { + if yyb3243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41486,13 +41542,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3240 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3240 { + if yyb3243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41500,26 +41556,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastHeartbeatTime = pkg2_v1.Time{} } else { - yyv3243 := &x.LastHeartbeatTime - yym3244 := z.DecBinary() - _ = yym3244 + yyv3246 := &x.LastHeartbeatTime + yym3247 := z.DecBinary() + _ = yym3247 if false { - } else if z.HasExtensions() && z.DecExt(yyv3243) { - } else if yym3244 { - z.DecBinaryUnmarshal(yyv3243) - } else if !yym3244 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3243) + } else if z.HasExtensions() && z.DecExt(yyv3246) { + } else if yym3247 { + z.DecBinaryUnmarshal(yyv3246) + } else if !yym3247 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3246) } else { - z.DecFallback(yyv3243, false) + z.DecFallback(yyv3246, false) } } - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3240 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3240 { + if yyb3243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41527,26 +41583,26 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTransitionTime = pkg2_v1.Time{} } else { - yyv3245 := &x.LastTransitionTime - yym3246 := z.DecBinary() - _ = yym3246 + yyv3248 := &x.LastTransitionTime + yym3249 := z.DecBinary() + _ = yym3249 if false { - } else if z.HasExtensions() && z.DecExt(yyv3245) { - } else if yym3246 { - z.DecBinaryUnmarshal(yyv3245) - } else if !yym3246 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3245) + } else if z.HasExtensions() && z.DecExt(yyv3248) { + } else if yym3249 { + z.DecBinaryUnmarshal(yyv3248) + } else if !yym3249 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3248) } else { - z.DecFallback(yyv3245, false) + z.DecFallback(yyv3248, false) } } - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3240 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3240 { + if yyb3243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41556,13 +41612,13 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3240 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3240 { + if yyb3243 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41573,17 +41629,17 @@ func (x *NodeCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Message = string(r.DecodeString()) } for { - yyj3240++ - if yyhl3240 { - yyb3240 = yyj3240 > l + yyj3243++ + if yyhl3243 { + yyb3243 = yyj3243 > l } else { - yyb3240 = r.CheckBreak() + yyb3243 = r.CheckBreak() } - if yyb3240 { + if yyb3243 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3240-1, "") + z.DecStructFieldNotFound(yyj3243-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41592,8 +41648,8 @@ func (x NodeAddressType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3249 := z.EncBinary() - _ = yym3249 + yym3252 := z.EncBinary() + _ = yym3252 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41605,8 +41661,8 @@ func (x *NodeAddressType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3250 := z.DecBinary() - _ = yym3250 + yym3253 := z.DecBinary() + _ = yym3253 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41621,30 +41677,30 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3251 := z.EncBinary() - _ = yym3251 + yym3254 := z.EncBinary() + _ = yym3254 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3252 := !z.EncBinary() - yy2arr3252 := z.EncBasicHandle().StructToArray - var yyq3252 [2]bool - _, _, _ = yysep3252, yyq3252, yy2arr3252 - const yyr3252 bool = false - var yynn3252 int - if yyr3252 || yy2arr3252 { + yysep3255 := !z.EncBinary() + yy2arr3255 := z.EncBasicHandle().StructToArray + var yyq3255 [2]bool + _, _, _ = yysep3255, yyq3255, yy2arr3255 + const yyr3255 bool = false + var yynn3255 int + if yyr3255 || yy2arr3255 { r.EncodeArrayStart(2) } else { - yynn3252 = 2 - for _, b := range yyq3252 { + yynn3255 = 2 + for _, b := range yyq3255 { if b { - yynn3252++ + yynn3255++ } } - r.EncodeMapStart(yynn3252) - yynn3252 = 0 + r.EncodeMapStart(yynn3255) + yynn3255 = 0 } - if yyr3252 || yy2arr3252 { + if yyr3255 || yy2arr3255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -41653,10 +41709,10 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr3252 || yy2arr3252 { + if yyr3255 || yy2arr3255 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym3255 := z.EncBinary() - _ = yym3255 + yym3258 := z.EncBinary() + _ = yym3258 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) @@ -41665,14 +41721,14 @@ func (x *NodeAddress) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("address")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3256 := z.EncBinary() - _ = yym3256 + yym3259 := z.EncBinary() + _ = yym3259 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Address)) } } - if yyr3252 || yy2arr3252 { + if yyr3255 || yy2arr3255 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -41685,25 +41741,25 @@ func (x *NodeAddress) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3257 := z.DecBinary() - _ = yym3257 + yym3260 := z.DecBinary() + _ = yym3260 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3258 := r.ContainerType() - if yyct3258 == codecSelferValueTypeMap1234 { - yyl3258 := r.ReadMapStart() - if yyl3258 == 0 { + yyct3261 := r.ContainerType() + if yyct3261 == codecSelferValueTypeMap1234 { + yyl3261 := r.ReadMapStart() + if yyl3261 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3258, d) + x.codecDecodeSelfFromMap(yyl3261, d) } - } else if yyct3258 == codecSelferValueTypeArray1234 { - yyl3258 := r.ReadArrayStart() - if yyl3258 == 0 { + } else if yyct3261 == codecSelferValueTypeArray1234 { + yyl3261 := r.ReadArrayStart() + if yyl3261 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3258, d) + x.codecDecodeSelfFromArray(yyl3261, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -41715,12 +41771,12 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3259Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3259Slc - var yyhl3259 bool = l >= 0 - for yyj3259 := 0; ; yyj3259++ { - if yyhl3259 { - if yyj3259 >= l { + var yys3262Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3262Slc + var yyhl3262 bool = l >= 0 + for yyj3262 := 0; ; yyj3262++ { + if yyhl3262 { + if yyj3262 >= l { break } } else { @@ -41729,10 +41785,10 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3259Slc = r.DecodeBytes(yys3259Slc, true, true) - yys3259 := string(yys3259Slc) + yys3262Slc = r.DecodeBytes(yys3262Slc, true, true) + yys3262 := string(yys3262Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3259 { + switch yys3262 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -41746,9 +41802,9 @@ func (x *NodeAddress) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3259) - } // end switch yys3259 - } // end for yyj3259 + z.DecStructFieldNotFound(-1, yys3262) + } // end switch yys3262 + } // end for yyj3262 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -41756,16 +41812,16 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3262 int - var yyb3262 bool - var yyhl3262 bool = l >= 0 - yyj3262++ - if yyhl3262 { - yyb3262 = yyj3262 > l + var yyj3265 int + var yyb3265 bool + var yyhl3265 bool = l >= 0 + yyj3265++ + if yyhl3265 { + yyb3265 = yyj3265 > l } else { - yyb3262 = r.CheckBreak() + yyb3265 = r.CheckBreak() } - if yyb3262 { + if yyb3265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41775,13 +41831,13 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = NodeAddressType(r.DecodeString()) } - yyj3262++ - if yyhl3262 { - yyb3262 = yyj3262 > l + yyj3265++ + if yyhl3265 { + yyb3265 = yyj3265 > l } else { - yyb3262 = r.CheckBreak() + yyb3265 = r.CheckBreak() } - if yyb3262 { + if yyb3265 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -41792,17 +41848,17 @@ func (x *NodeAddress) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Address = string(r.DecodeString()) } for { - yyj3262++ - if yyhl3262 { - yyb3262 = yyj3262 > l + yyj3265++ + if yyhl3265 { + yyb3265 = yyj3265 > l } else { - yyb3262 = r.CheckBreak() + yyb3265 = r.CheckBreak() } - if yyb3262 { + if yyb3265 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3262-1, "") + z.DecStructFieldNotFound(yyj3265-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -41811,8 +41867,8 @@ func (x ResourceName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3265 := z.EncBinary() - _ = yym3265 + yym3268 := z.EncBinary() + _ = yym3268 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41824,8 +41880,8 @@ func (x *ResourceName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3266 := z.DecBinary() - _ = yym3266 + yym3269 := z.DecBinary() + _ = yym3269 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41840,8 +41896,8 @@ func (x ResourceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3267 := z.EncBinary() - _ = yym3267 + yym3270 := z.EncBinary() + _ = yym3270 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -41854,8 +41910,8 @@ func (x *ResourceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3268 := z.DecBinary() - _ = yym3268 + yym3271 := z.DecBinary() + _ = yym3271 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -41870,136 +41926,136 @@ func (x *Node) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3269 := z.EncBinary() - _ = yym3269 + yym3272 := z.EncBinary() + _ = yym3272 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3270 := !z.EncBinary() - yy2arr3270 := z.EncBasicHandle().StructToArray - var yyq3270 [5]bool - _, _, _ = yysep3270, yyq3270, yy2arr3270 - const yyr3270 bool = false - yyq3270[0] = x.Kind != "" - yyq3270[1] = x.APIVersion != "" - yyq3270[2] = true - yyq3270[3] = true - yyq3270[4] = true - var yynn3270 int - if yyr3270 || yy2arr3270 { + yysep3273 := !z.EncBinary() + yy2arr3273 := z.EncBasicHandle().StructToArray + var yyq3273 [5]bool + _, _, _ = yysep3273, yyq3273, yy2arr3273 + const yyr3273 bool = false + yyq3273[0] = x.Kind != "" + yyq3273[1] = x.APIVersion != "" + yyq3273[2] = true + yyq3273[3] = true + yyq3273[4] = true + var yynn3273 int + if yyr3273 || yy2arr3273 { r.EncodeArrayStart(5) } else { - yynn3270 = 0 - for _, b := range yyq3270 { + yynn3273 = 0 + for _, b := range yyq3273 { if b { - yynn3270++ + yynn3273++ } } - r.EncodeMapStart(yynn3270) - yynn3270 = 0 + r.EncodeMapStart(yynn3273) + yynn3273 = 0 } - if yyr3270 || yy2arr3270 { + if yyr3273 || yy2arr3273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3270[0] { - yym3272 := z.EncBinary() - _ = yym3272 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3270[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3273 := z.EncBinary() - _ = yym3273 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3270 || yy2arr3270 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3270[1] { + if yyq3273[0] { yym3275 := z.EncBinary() _ = yym3275 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3270[1] { + if yyq3273[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3276 := z.EncBinary() _ = yym3276 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3273 || yy2arr3273 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3273[1] { + yym3278 := z.EncBinary() + _ = yym3278 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3273[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3279 := z.EncBinary() + _ = yym3279 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3270 || yy2arr3270 { + if yyr3273 || yy2arr3273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3270[2] { - yy3278 := &x.ObjectMeta - yy3278.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3270[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3279 := &x.ObjectMeta - yy3279.CodecEncodeSelf(e) - } - } - if yyr3270 || yy2arr3270 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3270[3] { - yy3281 := &x.Spec + if yyq3273[2] { + yy3281 := &x.ObjectMeta yy3281.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3270[3] { + if yyq3273[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3282 := &x.Spec + yy3282 := &x.ObjectMeta yy3282.CodecEncodeSelf(e) } } - if yyr3270 || yy2arr3270 { + if yyr3273 || yy2arr3273 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3270[4] { - yy3284 := &x.Status + if yyq3273[3] { + yy3284 := &x.Spec yy3284.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3270[4] { + if yyq3273[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) + r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3285 := &x.Status + yy3285 := &x.Spec yy3285.CodecEncodeSelf(e) } } - if yyr3270 || yy2arr3270 { + if yyr3273 || yy2arr3273 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3273[4] { + yy3287 := &x.Status + yy3287.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3273[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3288 := &x.Status + yy3288.CodecEncodeSelf(e) + } + } + if yyr3273 || yy2arr3273 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42012,25 +42068,25 @@ func (x *Node) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3286 := z.DecBinary() - _ = yym3286 + yym3289 := z.DecBinary() + _ = yym3289 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3287 := r.ContainerType() - if yyct3287 == codecSelferValueTypeMap1234 { - yyl3287 := r.ReadMapStart() - if yyl3287 == 0 { + yyct3290 := r.ContainerType() + if yyct3290 == codecSelferValueTypeMap1234 { + yyl3290 := r.ReadMapStart() + if yyl3290 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3287, d) + x.codecDecodeSelfFromMap(yyl3290, d) } - } else if yyct3287 == codecSelferValueTypeArray1234 { - yyl3287 := r.ReadArrayStart() - if yyl3287 == 0 { + } else if yyct3290 == codecSelferValueTypeArray1234 { + yyl3290 := r.ReadArrayStart() + if yyl3290 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3287, d) + x.codecDecodeSelfFromArray(yyl3290, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42042,12 +42098,12 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3288Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3288Slc - var yyhl3288 bool = l >= 0 - for yyj3288 := 0; ; yyj3288++ { - if yyhl3288 { - if yyj3288 >= l { + var yys3291Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3291Slc + var yyhl3291 bool = l >= 0 + for yyj3291 := 0; ; yyj3291++ { + if yyhl3291 { + if yyj3291 >= l { break } } else { @@ -42056,10 +42112,10 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3288Slc = r.DecodeBytes(yys3288Slc, true, true) - yys3288 := string(yys3288Slc) + yys3291Slc = r.DecodeBytes(yys3291Slc, true, true) + yys3291 := string(yys3291Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3288 { + switch yys3291 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42076,27 +42132,27 @@ func (x *Node) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3291 := &x.ObjectMeta - yyv3291.CodecDecodeSelf(d) + yyv3294 := &x.ObjectMeta + yyv3294.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3292 := &x.Spec - yyv3292.CodecDecodeSelf(d) + yyv3295 := &x.Spec + yyv3295.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3293 := &x.Status - yyv3293.CodecDecodeSelf(d) + yyv3296 := &x.Status + yyv3296.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3288) - } // end switch yys3288 - } // end for yyj3288 + z.DecStructFieldNotFound(-1, yys3291) + } // end switch yys3291 + } // end for yyj3291 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42104,16 +42160,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3294 int - var yyb3294 bool - var yyhl3294 bool = l >= 0 - yyj3294++ - if yyhl3294 { - yyb3294 = yyj3294 > l + var yyj3297 int + var yyb3297 bool + var yyhl3297 bool = l >= 0 + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l } else { - yyb3294 = r.CheckBreak() + yyb3297 = r.CheckBreak() } - if yyb3294 { + if yyb3297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42123,13 +42179,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3294++ - if yyhl3294 { - yyb3294 = yyj3294 > l + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l } else { - yyb3294 = r.CheckBreak() + yyb3297 = r.CheckBreak() } - if yyb3294 { + if yyb3297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42139,13 +42195,13 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3294++ - if yyhl3294 { - yyb3294 = yyj3294 > l + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l } else { - yyb3294 = r.CheckBreak() + yyb3297 = r.CheckBreak() } - if yyb3294 { + if yyb3297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42153,16 +42209,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3297 := &x.ObjectMeta - yyv3297.CodecDecodeSelf(d) + yyv3300 := &x.ObjectMeta + yyv3300.CodecDecodeSelf(d) } - yyj3294++ - if yyhl3294 { - yyb3294 = yyj3294 > l + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l } else { - yyb3294 = r.CheckBreak() + yyb3297 = r.CheckBreak() } - if yyb3294 { + if yyb3297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42170,16 +42226,16 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NodeSpec{} } else { - yyv3298 := &x.Spec - yyv3298.CodecDecodeSelf(d) + yyv3301 := &x.Spec + yyv3301.CodecDecodeSelf(d) } - yyj3294++ - if yyhl3294 { - yyb3294 = yyj3294 > l + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l } else { - yyb3294 = r.CheckBreak() + yyb3297 = r.CheckBreak() } - if yyb3294 { + if yyb3297 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42187,21 +42243,21 @@ func (x *Node) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NodeStatus{} } else { - yyv3299 := &x.Status - yyv3299.CodecDecodeSelf(d) + yyv3302 := &x.Status + yyv3302.CodecDecodeSelf(d) } for { - yyj3294++ - if yyhl3294 { - yyb3294 = yyj3294 > l + yyj3297++ + if yyhl3297 { + yyb3297 = yyj3297 > l } else { - yyb3294 = r.CheckBreak() + yyb3297 = r.CheckBreak() } - if yyb3294 { + if yyb3297 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3294-1, "") + z.DecStructFieldNotFound(yyj3297-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42213,118 +42269,118 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3300 := z.EncBinary() - _ = yym3300 + yym3303 := z.EncBinary() + _ = yym3303 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3301 := !z.EncBinary() - yy2arr3301 := z.EncBasicHandle().StructToArray - var yyq3301 [4]bool - _, _, _ = yysep3301, yyq3301, yy2arr3301 - const yyr3301 bool = false - yyq3301[0] = x.Kind != "" - yyq3301[1] = x.APIVersion != "" - yyq3301[2] = true - var yynn3301 int - if yyr3301 || yy2arr3301 { + yysep3304 := !z.EncBinary() + yy2arr3304 := z.EncBasicHandle().StructToArray + var yyq3304 [4]bool + _, _, _ = yysep3304, yyq3304, yy2arr3304 + const yyr3304 bool = false + yyq3304[0] = x.Kind != "" + yyq3304[1] = x.APIVersion != "" + yyq3304[2] = true + var yynn3304 int + if yyr3304 || yy2arr3304 { r.EncodeArrayStart(4) } else { - yynn3301 = 1 - for _, b := range yyq3301 { + yynn3304 = 1 + for _, b := range yyq3304 { if b { - yynn3301++ + yynn3304++ } } - r.EncodeMapStart(yynn3301) - yynn3301 = 0 + r.EncodeMapStart(yynn3304) + yynn3304 = 0 } - if yyr3301 || yy2arr3301 { + if yyr3304 || yy2arr3304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3301[0] { - yym3303 := z.EncBinary() - _ = yym3303 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3301[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3304 := z.EncBinary() - _ = yym3304 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3301 || yy2arr3301 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3301[1] { + if yyq3304[0] { yym3306 := z.EncBinary() _ = yym3306 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3301[1] { + if yyq3304[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3307 := z.EncBinary() _ = yym3307 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3304 || yy2arr3304 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3304[1] { + yym3309 := z.EncBinary() + _ = yym3309 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3304[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3310 := z.EncBinary() + _ = yym3310 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3301 || yy2arr3301 { + if yyr3304 || yy2arr3304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3301[2] { - yy3309 := &x.ListMeta - yym3310 := z.EncBinary() - _ = yym3310 + if yyq3304[2] { + yy3312 := &x.ListMeta + yym3313 := z.EncBinary() + _ = yym3313 if false { - } else if z.HasExtensions() && z.EncExt(yy3309) { + } else if z.HasExtensions() && z.EncExt(yy3312) { } else { - z.EncFallback(yy3309) + z.EncFallback(yy3312) } } else { r.EncodeNil() } } else { - if yyq3301[2] { + if yyq3304[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3311 := &x.ListMeta - yym3312 := z.EncBinary() - _ = yym3312 + yy3314 := &x.ListMeta + yym3315 := z.EncBinary() + _ = yym3315 if false { - } else if z.HasExtensions() && z.EncExt(yy3311) { + } else if z.HasExtensions() && z.EncExt(yy3314) { } else { - z.EncFallback(yy3311) + z.EncFallback(yy3314) } } } - if yyr3301 || yy2arr3301 { + if yyr3304 || yy2arr3304 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3314 := z.EncBinary() - _ = yym3314 + yym3317 := z.EncBinary() + _ = yym3317 if false { } else { h.encSliceNode(([]Node)(x.Items), e) @@ -42337,15 +42393,15 @@ func (x *NodeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3315 := z.EncBinary() - _ = yym3315 + yym3318 := z.EncBinary() + _ = yym3318 if false { } else { h.encSliceNode(([]Node)(x.Items), e) } } } - if yyr3301 || yy2arr3301 { + if yyr3304 || yy2arr3304 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42358,25 +42414,25 @@ func (x *NodeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3316 := z.DecBinary() - _ = yym3316 + yym3319 := z.DecBinary() + _ = yym3319 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3317 := r.ContainerType() - if yyct3317 == codecSelferValueTypeMap1234 { - yyl3317 := r.ReadMapStart() - if yyl3317 == 0 { + yyct3320 := r.ContainerType() + if yyct3320 == codecSelferValueTypeMap1234 { + yyl3320 := r.ReadMapStart() + if yyl3320 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3317, d) + x.codecDecodeSelfFromMap(yyl3320, d) } - } else if yyct3317 == codecSelferValueTypeArray1234 { - yyl3317 := r.ReadArrayStart() - if yyl3317 == 0 { + } else if yyct3320 == codecSelferValueTypeArray1234 { + yyl3320 := r.ReadArrayStart() + if yyl3320 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3317, d) + x.codecDecodeSelfFromArray(yyl3320, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42388,12 +42444,12 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3318Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3318Slc - var yyhl3318 bool = l >= 0 - for yyj3318 := 0; ; yyj3318++ { - if yyhl3318 { - if yyj3318 >= l { + var yys3321Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3321Slc + var yyhl3321 bool = l >= 0 + for yyj3321 := 0; ; yyj3321++ { + if yyhl3321 { + if yyj3321 >= l { break } } else { @@ -42402,10 +42458,10 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3318Slc = r.DecodeBytes(yys3318Slc, true, true) - yys3318 := string(yys3318Slc) + yys3321Slc = r.DecodeBytes(yys3321Slc, true, true) + yys3321 := string(yys3321Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3318 { + switch yys3321 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -42422,31 +42478,31 @@ func (x *NodeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv3321 := &x.ListMeta - yym3322 := z.DecBinary() - _ = yym3322 + yyv3324 := &x.ListMeta + yym3325 := z.DecBinary() + _ = yym3325 if false { - } else if z.HasExtensions() && z.DecExt(yyv3321) { + } else if z.HasExtensions() && z.DecExt(yyv3324) { } else { - z.DecFallback(yyv3321, false) + z.DecFallback(yyv3324, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3323 := &x.Items - yym3324 := z.DecBinary() - _ = yym3324 + yyv3326 := &x.Items + yym3327 := z.DecBinary() + _ = yym3327 if false { } else { - h.decSliceNode((*[]Node)(yyv3323), d) + h.decSliceNode((*[]Node)(yyv3326), d) } } default: - z.DecStructFieldNotFound(-1, yys3318) - } // end switch yys3318 - } // end for yyj3318 + z.DecStructFieldNotFound(-1, yys3321) + } // end switch yys3321 + } // end for yyj3321 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42454,16 +42510,16 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3325 int - var yyb3325 bool - var yyhl3325 bool = l >= 0 - yyj3325++ - if yyhl3325 { - yyb3325 = yyj3325 > l + var yyj3328 int + var yyb3328 bool + var yyhl3328 bool = l >= 0 + yyj3328++ + if yyhl3328 { + yyb3328 = yyj3328 > l } else { - yyb3325 = r.CheckBreak() + yyb3328 = r.CheckBreak() } - if yyb3325 { + if yyb3328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42473,13 +42529,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3325++ - if yyhl3325 { - yyb3325 = yyj3325 > l + yyj3328++ + if yyhl3328 { + yyb3328 = yyj3328 > l } else { - yyb3325 = r.CheckBreak() + yyb3328 = r.CheckBreak() } - if yyb3325 { + if yyb3328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42489,13 +42545,13 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3325++ - if yyhl3325 { - yyb3325 = yyj3325 > l + yyj3328++ + if yyhl3328 { + yyb3328 = yyj3328 > l } else { - yyb3325 = r.CheckBreak() + yyb3328 = r.CheckBreak() } - if yyb3325 { + if yyb3328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42503,22 +42559,22 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv3328 := &x.ListMeta - yym3329 := z.DecBinary() - _ = yym3329 + yyv3331 := &x.ListMeta + yym3332 := z.DecBinary() + _ = yym3332 if false { - } else if z.HasExtensions() && z.DecExt(yyv3328) { + } else if z.HasExtensions() && z.DecExt(yyv3331) { } else { - z.DecFallback(yyv3328, false) + z.DecFallback(yyv3331, false) } } - yyj3325++ - if yyhl3325 { - yyb3325 = yyj3325 > l + yyj3328++ + if yyhl3328 { + yyb3328 = yyj3328 > l } else { - yyb3325 = r.CheckBreak() + yyb3328 = r.CheckBreak() } - if yyb3325 { + if yyb3328 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42526,26 +42582,26 @@ func (x *NodeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3330 := &x.Items - yym3331 := z.DecBinary() - _ = yym3331 + yyv3333 := &x.Items + yym3334 := z.DecBinary() + _ = yym3334 if false { } else { - h.decSliceNode((*[]Node)(yyv3330), d) + h.decSliceNode((*[]Node)(yyv3333), d) } } for { - yyj3325++ - if yyhl3325 { - yyb3325 = yyj3325 > l + yyj3328++ + if yyhl3328 { + yyb3328 = yyj3328 > l } else { - yyb3325 = r.CheckBreak() + yyb3328 = r.CheckBreak() } - if yyb3325 { + if yyb3328 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3325-1, "") + z.DecStructFieldNotFound(yyj3328-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42554,8 +42610,8 @@ func (x FinalizerName) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3332 := z.EncBinary() - _ = yym3332 + yym3335 := z.EncBinary() + _ = yym3335 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -42567,8 +42623,8 @@ func (x *FinalizerName) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3333 := z.DecBinary() - _ = yym3333 + yym3336 := z.DecBinary() + _ = yym3336 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -42583,38 +42639,38 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3334 := z.EncBinary() - _ = yym3334 + yym3337 := z.EncBinary() + _ = yym3337 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3335 := !z.EncBinary() - yy2arr3335 := z.EncBasicHandle().StructToArray - var yyq3335 [1]bool - _, _, _ = yysep3335, yyq3335, yy2arr3335 - const yyr3335 bool = false - yyq3335[0] = len(x.Finalizers) != 0 - var yynn3335 int - if yyr3335 || yy2arr3335 { + yysep3338 := !z.EncBinary() + yy2arr3338 := z.EncBasicHandle().StructToArray + var yyq3338 [1]bool + _, _, _ = yysep3338, yyq3338, yy2arr3338 + const yyr3338 bool = false + yyq3338[0] = len(x.Finalizers) != 0 + var yynn3338 int + if yyr3338 || yy2arr3338 { r.EncodeArrayStart(1) } else { - yynn3335 = 0 - for _, b := range yyq3335 { + yynn3338 = 0 + for _, b := range yyq3338 { if b { - yynn3335++ + yynn3338++ } } - r.EncodeMapStart(yynn3335) - yynn3335 = 0 + r.EncodeMapStart(yynn3338) + yynn3338 = 0 } - if yyr3335 || yy2arr3335 { + if yyr3338 || yy2arr3338 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3335[0] { + if yyq3338[0] { if x.Finalizers == nil { r.EncodeNil() } else { - yym3337 := z.EncBinary() - _ = yym3337 + yym3340 := z.EncBinary() + _ = yym3340 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -42624,15 +42680,15 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3335[0] { + if yyq3338[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("finalizers")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Finalizers == nil { r.EncodeNil() } else { - yym3338 := z.EncBinary() - _ = yym3338 + yym3341 := z.EncBinary() + _ = yym3341 if false { } else { h.encSliceFinalizerName(([]FinalizerName)(x.Finalizers), e) @@ -42640,7 +42696,7 @@ func (x *NamespaceSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3335 || yy2arr3335 { + if yyr3338 || yy2arr3338 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42653,25 +42709,25 @@ func (x *NamespaceSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3339 := z.DecBinary() - _ = yym3339 + yym3342 := z.DecBinary() + _ = yym3342 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3340 := r.ContainerType() - if yyct3340 == codecSelferValueTypeMap1234 { - yyl3340 := r.ReadMapStart() - if yyl3340 == 0 { + yyct3343 := r.ContainerType() + if yyct3343 == codecSelferValueTypeMap1234 { + yyl3343 := r.ReadMapStart() + if yyl3343 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3340, d) + x.codecDecodeSelfFromMap(yyl3343, d) } - } else if yyct3340 == codecSelferValueTypeArray1234 { - yyl3340 := r.ReadArrayStart() - if yyl3340 == 0 { + } else if yyct3343 == codecSelferValueTypeArray1234 { + yyl3343 := r.ReadArrayStart() + if yyl3343 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3340, d) + x.codecDecodeSelfFromArray(yyl3343, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42683,12 +42739,12 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3341Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3341Slc - var yyhl3341 bool = l >= 0 - for yyj3341 := 0; ; yyj3341++ { - if yyhl3341 { - if yyj3341 >= l { + var yys3344Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3344Slc + var yyhl3344 bool = l >= 0 + for yyj3344 := 0; ; yyj3344++ { + if yyhl3344 { + if yyj3344 >= l { break } } else { @@ -42697,26 +42753,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3341Slc = r.DecodeBytes(yys3341Slc, true, true) - yys3341 := string(yys3341Slc) + yys3344Slc = r.DecodeBytes(yys3344Slc, true, true) + yys3344 := string(yys3344Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3341 { + switch yys3344 { case "finalizers": if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3342 := &x.Finalizers - yym3343 := z.DecBinary() - _ = yym3343 + yyv3345 := &x.Finalizers + yym3346 := z.DecBinary() + _ = yym3346 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3342), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3345), d) } } default: - z.DecStructFieldNotFound(-1, yys3341) - } // end switch yys3341 - } // end for yyj3341 + z.DecStructFieldNotFound(-1, yys3344) + } // end switch yys3344 + } // end for yyj3344 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42724,16 +42780,16 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3344 int - var yyb3344 bool - var yyhl3344 bool = l >= 0 - yyj3344++ - if yyhl3344 { - yyb3344 = yyj3344 > l + var yyj3347 int + var yyb3347 bool + var yyhl3347 bool = l >= 0 + yyj3347++ + if yyhl3347 { + yyb3347 = yyj3347 > l } else { - yyb3344 = r.CheckBreak() + yyb3347 = r.CheckBreak() } - if yyb3344 { + if yyb3347 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42741,26 +42797,26 @@ func (x *NamespaceSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Finalizers = nil } else { - yyv3345 := &x.Finalizers - yym3346 := z.DecBinary() - _ = yym3346 + yyv3348 := &x.Finalizers + yym3349 := z.DecBinary() + _ = yym3349 if false { } else { - h.decSliceFinalizerName((*[]FinalizerName)(yyv3345), d) + h.decSliceFinalizerName((*[]FinalizerName)(yyv3348), d) } } for { - yyj3344++ - if yyhl3344 { - yyb3344 = yyj3344 > l + yyj3347++ + if yyhl3347 { + yyb3347 = yyj3347 > l } else { - yyb3344 = r.CheckBreak() + yyb3347 = r.CheckBreak() } - if yyb3344 { + if yyb3347 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3344-1, "") + z.DecStructFieldNotFound(yyj3347-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42772,46 +42828,46 @@ func (x *NamespaceStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3347 := z.EncBinary() - _ = yym3347 + yym3350 := z.EncBinary() + _ = yym3350 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3348 := !z.EncBinary() - yy2arr3348 := z.EncBasicHandle().StructToArray - var yyq3348 [1]bool - _, _, _ = yysep3348, yyq3348, yy2arr3348 - const yyr3348 bool = false - yyq3348[0] = x.Phase != "" - var yynn3348 int - if yyr3348 || yy2arr3348 { + yysep3351 := !z.EncBinary() + yy2arr3351 := z.EncBasicHandle().StructToArray + var yyq3351 [1]bool + _, _, _ = yysep3351, yyq3351, yy2arr3351 + const yyr3351 bool = false + yyq3351[0] = x.Phase != "" + var yynn3351 int + if yyr3351 || yy2arr3351 { r.EncodeArrayStart(1) } else { - yynn3348 = 0 - for _, b := range yyq3348 { + yynn3351 = 0 + for _, b := range yyq3351 { if b { - yynn3348++ + yynn3351++ } } - r.EncodeMapStart(yynn3348) - yynn3348 = 0 + r.EncodeMapStart(yynn3351) + yynn3351 = 0 } - if yyr3348 || yy2arr3348 { + if yyr3351 || yy2arr3351 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3348[0] { + if yyq3351[0] { x.Phase.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3348[0] { + if yyq3351[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("phase")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Phase.CodecEncodeSelf(e) } } - if yyr3348 || yy2arr3348 { + if yyr3351 || yy2arr3351 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -42824,25 +42880,25 @@ func (x *NamespaceStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3350 := z.DecBinary() - _ = yym3350 + yym3353 := z.DecBinary() + _ = yym3353 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3351 := r.ContainerType() - if yyct3351 == codecSelferValueTypeMap1234 { - yyl3351 := r.ReadMapStart() - if yyl3351 == 0 { + yyct3354 := r.ContainerType() + if yyct3354 == codecSelferValueTypeMap1234 { + yyl3354 := r.ReadMapStart() + if yyl3354 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3351, d) + x.codecDecodeSelfFromMap(yyl3354, d) } - } else if yyct3351 == codecSelferValueTypeArray1234 { - yyl3351 := r.ReadArrayStart() - if yyl3351 == 0 { + } else if yyct3354 == codecSelferValueTypeArray1234 { + yyl3354 := r.ReadArrayStart() + if yyl3354 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3351, d) + x.codecDecodeSelfFromArray(yyl3354, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -42854,12 +42910,12 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3352Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3352Slc - var yyhl3352 bool = l >= 0 - for yyj3352 := 0; ; yyj3352++ { - if yyhl3352 { - if yyj3352 >= l { + var yys3355Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3355Slc + var yyhl3355 bool = l >= 0 + for yyj3355 := 0; ; yyj3355++ { + if yyhl3355 { + if yyj3355 >= l { break } } else { @@ -42868,10 +42924,10 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3352Slc = r.DecodeBytes(yys3352Slc, true, true) - yys3352 := string(yys3352Slc) + yys3355Slc = r.DecodeBytes(yys3355Slc, true, true) + yys3355 := string(yys3355Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3352 { + switch yys3355 { case "phase": if r.TryDecodeAsNil() { x.Phase = "" @@ -42879,9 +42935,9 @@ func (x *NamespaceStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Phase = NamespacePhase(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3352) - } // end switch yys3352 - } // end for yyj3352 + z.DecStructFieldNotFound(-1, yys3355) + } // end switch yys3355 + } // end for yyj3355 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -42889,16 +42945,16 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3354 int - var yyb3354 bool - var yyhl3354 bool = l >= 0 - yyj3354++ - if yyhl3354 { - yyb3354 = yyj3354 > l + var yyj3357 int + var yyb3357 bool + var yyhl3357 bool = l >= 0 + yyj3357++ + if yyhl3357 { + yyb3357 = yyj3357 > l } else { - yyb3354 = r.CheckBreak() + yyb3357 = r.CheckBreak() } - if yyb3354 { + if yyb3357 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -42909,17 +42965,17 @@ func (x *NamespaceStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Phase = NamespacePhase(r.DecodeString()) } for { - yyj3354++ - if yyhl3354 { - yyb3354 = yyj3354 > l + yyj3357++ + if yyhl3357 { + yyb3357 = yyj3357 > l } else { - yyb3354 = r.CheckBreak() + yyb3357 = r.CheckBreak() } - if yyb3354 { + if yyb3357 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3354-1, "") + z.DecStructFieldNotFound(yyj3357-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -42928,8 +42984,8 @@ func (x NamespacePhase) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3356 := z.EncBinary() - _ = yym3356 + yym3359 := z.EncBinary() + _ = yym3359 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -42941,8 +42997,8 @@ func (x *NamespacePhase) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3357 := z.DecBinary() - _ = yym3357 + yym3360 := z.DecBinary() + _ = yym3360 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -42957,136 +43013,136 @@ func (x *Namespace) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3358 := z.EncBinary() - _ = yym3358 + yym3361 := z.EncBinary() + _ = yym3361 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3359 := !z.EncBinary() - yy2arr3359 := z.EncBasicHandle().StructToArray - var yyq3359 [5]bool - _, _, _ = yysep3359, yyq3359, yy2arr3359 - const yyr3359 bool = false - yyq3359[0] = x.Kind != "" - yyq3359[1] = x.APIVersion != "" - yyq3359[2] = true - yyq3359[3] = true - yyq3359[4] = true - var yynn3359 int - if yyr3359 || yy2arr3359 { + yysep3362 := !z.EncBinary() + yy2arr3362 := z.EncBasicHandle().StructToArray + var yyq3362 [5]bool + _, _, _ = yysep3362, yyq3362, yy2arr3362 + const yyr3362 bool = false + yyq3362[0] = x.Kind != "" + yyq3362[1] = x.APIVersion != "" + yyq3362[2] = true + yyq3362[3] = true + yyq3362[4] = true + var yynn3362 int + if yyr3362 || yy2arr3362 { r.EncodeArrayStart(5) } else { - yynn3359 = 0 - for _, b := range yyq3359 { + yynn3362 = 0 + for _, b := range yyq3362 { if b { - yynn3359++ + yynn3362++ } } - r.EncodeMapStart(yynn3359) - yynn3359 = 0 + r.EncodeMapStart(yynn3362) + yynn3362 = 0 } - if yyr3359 || yy2arr3359 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[0] { - yym3361 := z.EncBinary() - _ = yym3361 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3359[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3362 := z.EncBinary() - _ = yym3362 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3359 || yy2arr3359 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[1] { + if yyq3362[0] { yym3364 := z.EncBinary() _ = yym3364 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3359[1] { + if yyq3362[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3365 := z.EncBinary() _ = yym3365 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3362 || yy2arr3362 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3362[1] { + yym3367 := z.EncBinary() + _ = yym3367 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3362[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3368 := z.EncBinary() + _ = yym3368 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3359 || yy2arr3359 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[2] { - yy3367 := &x.ObjectMeta - yy3367.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq3359[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3368 := &x.ObjectMeta - yy3368.CodecEncodeSelf(e) - } - } - if yyr3359 || yy2arr3359 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[3] { - yy3370 := &x.Spec + if yyq3362[2] { + yy3370 := &x.ObjectMeta yy3370.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3359[3] { + if yyq3362[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3371 := &x.Spec + yy3371 := &x.ObjectMeta yy3371.CodecEncodeSelf(e) } } - if yyr3359 || yy2arr3359 { + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3359[4] { - yy3373 := &x.Status + if yyq3362[3] { + yy3373 := &x.Spec yy3373.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3359[4] { + if yyq3362[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) + r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3374 := &x.Status + yy3374 := &x.Spec yy3374.CodecEncodeSelf(e) } } - if yyr3359 || yy2arr3359 { + if yyr3362 || yy2arr3362 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3362[4] { + yy3376 := &x.Status + yy3376.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq3362[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy3377 := &x.Status + yy3377.CodecEncodeSelf(e) + } + } + if yyr3362 || yy2arr3362 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43099,25 +43155,25 @@ func (x *Namespace) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3375 := z.DecBinary() - _ = yym3375 + yym3378 := z.DecBinary() + _ = yym3378 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3376 := r.ContainerType() - if yyct3376 == codecSelferValueTypeMap1234 { - yyl3376 := r.ReadMapStart() - if yyl3376 == 0 { + yyct3379 := r.ContainerType() + if yyct3379 == codecSelferValueTypeMap1234 { + yyl3379 := r.ReadMapStart() + if yyl3379 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3376, d) + x.codecDecodeSelfFromMap(yyl3379, d) } - } else if yyct3376 == codecSelferValueTypeArray1234 { - yyl3376 := r.ReadArrayStart() - if yyl3376 == 0 { + } else if yyct3379 == codecSelferValueTypeArray1234 { + yyl3379 := r.ReadArrayStart() + if yyl3379 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3376, d) + x.codecDecodeSelfFromArray(yyl3379, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43129,12 +43185,12 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3377Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3377Slc - var yyhl3377 bool = l >= 0 - for yyj3377 := 0; ; yyj3377++ { - if yyhl3377 { - if yyj3377 >= l { + var yys3380Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3380Slc + var yyhl3380 bool = l >= 0 + for yyj3380 := 0; ; yyj3380++ { + if yyhl3380 { + if yyj3380 >= l { break } } else { @@ -43143,10 +43199,10 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3377Slc = r.DecodeBytes(yys3377Slc, true, true) - yys3377 := string(yys3377Slc) + yys3380Slc = r.DecodeBytes(yys3380Slc, true, true) + yys3380 := string(yys3380Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3377 { + switch yys3380 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43163,27 +43219,27 @@ func (x *Namespace) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3380 := &x.ObjectMeta - yyv3380.CodecDecodeSelf(d) + yyv3383 := &x.ObjectMeta + yyv3383.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3381 := &x.Spec - yyv3381.CodecDecodeSelf(d) + yyv3384 := &x.Spec + yyv3384.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3382 := &x.Status - yyv3382.CodecDecodeSelf(d) + yyv3385 := &x.Status + yyv3385.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3377) - } // end switch yys3377 - } // end for yyj3377 + z.DecStructFieldNotFound(-1, yys3380) + } // end switch yys3380 + } // end for yyj3380 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43191,16 +43247,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3383 int - var yyb3383 bool - var yyhl3383 bool = l >= 0 - yyj3383++ - if yyhl3383 { - yyb3383 = yyj3383 > l + var yyj3386 int + var yyb3386 bool + var yyhl3386 bool = l >= 0 + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3383 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3383 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43210,13 +43266,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3383++ - if yyhl3383 { - yyb3383 = yyj3383 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3383 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3383 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43226,13 +43282,13 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3383++ - if yyhl3383 { - yyb3383 = yyj3383 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3383 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3383 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43240,16 +43296,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3386 := &x.ObjectMeta - yyv3386.CodecDecodeSelf(d) + yyv3389 := &x.ObjectMeta + yyv3389.CodecDecodeSelf(d) } - yyj3383++ - if yyhl3383 { - yyb3383 = yyj3383 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3383 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3383 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43257,16 +43313,16 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = NamespaceSpec{} } else { - yyv3387 := &x.Spec - yyv3387.CodecDecodeSelf(d) + yyv3390 := &x.Spec + yyv3390.CodecDecodeSelf(d) } - yyj3383++ - if yyhl3383 { - yyb3383 = yyj3383 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3383 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3383 { + if yyb3386 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43274,21 +43330,21 @@ func (x *Namespace) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = NamespaceStatus{} } else { - yyv3388 := &x.Status - yyv3388.CodecDecodeSelf(d) + yyv3391 := &x.Status + yyv3391.CodecDecodeSelf(d) } for { - yyj3383++ - if yyhl3383 { - yyb3383 = yyj3383 > l + yyj3386++ + if yyhl3386 { + yyb3386 = yyj3386 > l } else { - yyb3383 = r.CheckBreak() + yyb3386 = r.CheckBreak() } - if yyb3383 { + if yyb3386 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3383-1, "") + z.DecStructFieldNotFound(yyj3386-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43300,118 +43356,118 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3389 := z.EncBinary() - _ = yym3389 + yym3392 := z.EncBinary() + _ = yym3392 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3390 := !z.EncBinary() - yy2arr3390 := z.EncBasicHandle().StructToArray - var yyq3390 [4]bool - _, _, _ = yysep3390, yyq3390, yy2arr3390 - const yyr3390 bool = false - yyq3390[0] = x.Kind != "" - yyq3390[1] = x.APIVersion != "" - yyq3390[2] = true - var yynn3390 int - if yyr3390 || yy2arr3390 { + yysep3393 := !z.EncBinary() + yy2arr3393 := z.EncBasicHandle().StructToArray + var yyq3393 [4]bool + _, _, _ = yysep3393, yyq3393, yy2arr3393 + const yyr3393 bool = false + yyq3393[0] = x.Kind != "" + yyq3393[1] = x.APIVersion != "" + yyq3393[2] = true + var yynn3393 int + if yyr3393 || yy2arr3393 { r.EncodeArrayStart(4) } else { - yynn3390 = 1 - for _, b := range yyq3390 { + yynn3393 = 1 + for _, b := range yyq3393 { if b { - yynn3390++ + yynn3393++ } } - r.EncodeMapStart(yynn3390) - yynn3390 = 0 + r.EncodeMapStart(yynn3393) + yynn3393 = 0 } - if yyr3390 || yy2arr3390 { + if yyr3393 || yy2arr3393 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3390[0] { - yym3392 := z.EncBinary() - _ = yym3392 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3390[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3393 := z.EncBinary() - _ = yym3393 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3390 || yy2arr3390 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3390[1] { + if yyq3393[0] { yym3395 := z.EncBinary() _ = yym3395 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3390[1] { + if yyq3393[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3396 := z.EncBinary() _ = yym3396 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3393 || yy2arr3393 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3393[1] { + yym3398 := z.EncBinary() + _ = yym3398 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3393[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3399 := z.EncBinary() + _ = yym3399 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3390 || yy2arr3390 { + if yyr3393 || yy2arr3393 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3390[2] { - yy3398 := &x.ListMeta - yym3399 := z.EncBinary() - _ = yym3399 + if yyq3393[2] { + yy3401 := &x.ListMeta + yym3402 := z.EncBinary() + _ = yym3402 if false { - } else if z.HasExtensions() && z.EncExt(yy3398) { + } else if z.HasExtensions() && z.EncExt(yy3401) { } else { - z.EncFallback(yy3398) + z.EncFallback(yy3401) } } else { r.EncodeNil() } } else { - if yyq3390[2] { + if yyq3393[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3400 := &x.ListMeta - yym3401 := z.EncBinary() - _ = yym3401 + yy3403 := &x.ListMeta + yym3404 := z.EncBinary() + _ = yym3404 if false { - } else if z.HasExtensions() && z.EncExt(yy3400) { + } else if z.HasExtensions() && z.EncExt(yy3403) { } else { - z.EncFallback(yy3400) + z.EncFallback(yy3403) } } } - if yyr3390 || yy2arr3390 { + if yyr3393 || yy2arr3393 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3403 := z.EncBinary() - _ = yym3403 + yym3406 := z.EncBinary() + _ = yym3406 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) @@ -43424,15 +43480,15 @@ func (x *NamespaceList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3404 := z.EncBinary() - _ = yym3404 + yym3407 := z.EncBinary() + _ = yym3407 if false { } else { h.encSliceNamespace(([]Namespace)(x.Items), e) } } } - if yyr3390 || yy2arr3390 { + if yyr3393 || yy2arr3393 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43445,25 +43501,25 @@ func (x *NamespaceList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3405 := z.DecBinary() - _ = yym3405 + yym3408 := z.DecBinary() + _ = yym3408 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3406 := r.ContainerType() - if yyct3406 == codecSelferValueTypeMap1234 { - yyl3406 := r.ReadMapStart() - if yyl3406 == 0 { + yyct3409 := r.ContainerType() + if yyct3409 == codecSelferValueTypeMap1234 { + yyl3409 := r.ReadMapStart() + if yyl3409 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3406, d) + x.codecDecodeSelfFromMap(yyl3409, d) } - } else if yyct3406 == codecSelferValueTypeArray1234 { - yyl3406 := r.ReadArrayStart() - if yyl3406 == 0 { + } else if yyct3409 == codecSelferValueTypeArray1234 { + yyl3409 := r.ReadArrayStart() + if yyl3409 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3406, d) + x.codecDecodeSelfFromArray(yyl3409, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43475,12 +43531,12 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3407Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3407Slc - var yyhl3407 bool = l >= 0 - for yyj3407 := 0; ; yyj3407++ { - if yyhl3407 { - if yyj3407 >= l { + var yys3410Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3410Slc + var yyhl3410 bool = l >= 0 + for yyj3410 := 0; ; yyj3410++ { + if yyhl3410 { + if yyj3410 >= l { break } } else { @@ -43489,10 +43545,10 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3407Slc = r.DecodeBytes(yys3407Slc, true, true) - yys3407 := string(yys3407Slc) + yys3410Slc = r.DecodeBytes(yys3410Slc, true, true) + yys3410 := string(yys3410Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3407 { + switch yys3410 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43509,31 +43565,31 @@ func (x *NamespaceList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv3410 := &x.ListMeta - yym3411 := z.DecBinary() - _ = yym3411 + yyv3413 := &x.ListMeta + yym3414 := z.DecBinary() + _ = yym3414 if false { - } else if z.HasExtensions() && z.DecExt(yyv3410) { + } else if z.HasExtensions() && z.DecExt(yyv3413) { } else { - z.DecFallback(yyv3410, false) + z.DecFallback(yyv3413, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3412 := &x.Items - yym3413 := z.DecBinary() - _ = yym3413 + yyv3415 := &x.Items + yym3416 := z.DecBinary() + _ = yym3416 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3412), d) + h.decSliceNamespace((*[]Namespace)(yyv3415), d) } } default: - z.DecStructFieldNotFound(-1, yys3407) - } // end switch yys3407 - } // end for yyj3407 + z.DecStructFieldNotFound(-1, yys3410) + } // end switch yys3410 + } // end for yyj3410 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43541,16 +43597,16 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3414 int - var yyb3414 bool - var yyhl3414 bool = l >= 0 - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + var yyj3417 int + var yyb3417 bool + var yyhl3417 bool = l >= 0 + yyj3417++ + if yyhl3417 { + yyb3417 = yyj3417 > l } else { - yyb3414 = r.CheckBreak() + yyb3417 = r.CheckBreak() } - if yyb3414 { + if yyb3417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43560,13 +43616,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + yyj3417++ + if yyhl3417 { + yyb3417 = yyj3417 > l } else { - yyb3414 = r.CheckBreak() + yyb3417 = r.CheckBreak() } - if yyb3414 { + if yyb3417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43576,13 +43632,13 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + yyj3417++ + if yyhl3417 { + yyb3417 = yyj3417 > l } else { - yyb3414 = r.CheckBreak() + yyb3417 = r.CheckBreak() } - if yyb3414 { + if yyb3417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43590,22 +43646,22 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv3417 := &x.ListMeta - yym3418 := z.DecBinary() - _ = yym3418 + yyv3420 := &x.ListMeta + yym3421 := z.DecBinary() + _ = yym3421 if false { - } else if z.HasExtensions() && z.DecExt(yyv3417) { + } else if z.HasExtensions() && z.DecExt(yyv3420) { } else { - z.DecFallback(yyv3417, false) + z.DecFallback(yyv3420, false) } } - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + yyj3417++ + if yyhl3417 { + yyb3417 = yyj3417 > l } else { - yyb3414 = r.CheckBreak() + yyb3417 = r.CheckBreak() } - if yyb3414 { + if yyb3417 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43613,26 +43669,26 @@ func (x *NamespaceList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3419 := &x.Items - yym3420 := z.DecBinary() - _ = yym3420 + yyv3422 := &x.Items + yym3423 := z.DecBinary() + _ = yym3423 if false { } else { - h.decSliceNamespace((*[]Namespace)(yyv3419), d) + h.decSliceNamespace((*[]Namespace)(yyv3422), d) } } for { - yyj3414++ - if yyhl3414 { - yyb3414 = yyj3414 > l + yyj3417++ + if yyhl3417 { + yyb3417 = yyj3417 > l } else { - yyb3414 = r.CheckBreak() + yyb3417 = r.CheckBreak() } - if yyb3414 { + if yyb3417 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3414-1, "") + z.DecStructFieldNotFound(yyj3417-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43644,111 +43700,111 @@ func (x *Binding) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3421 := z.EncBinary() - _ = yym3421 + yym3424 := z.EncBinary() + _ = yym3424 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3422 := !z.EncBinary() - yy2arr3422 := z.EncBasicHandle().StructToArray - var yyq3422 [4]bool - _, _, _ = yysep3422, yyq3422, yy2arr3422 - const yyr3422 bool = false - yyq3422[0] = x.Kind != "" - yyq3422[1] = x.APIVersion != "" - yyq3422[2] = true - var yynn3422 int - if yyr3422 || yy2arr3422 { + yysep3425 := !z.EncBinary() + yy2arr3425 := z.EncBasicHandle().StructToArray + var yyq3425 [4]bool + _, _, _ = yysep3425, yyq3425, yy2arr3425 + const yyr3425 bool = false + yyq3425[0] = x.Kind != "" + yyq3425[1] = x.APIVersion != "" + yyq3425[2] = true + var yynn3425 int + if yyr3425 || yy2arr3425 { r.EncodeArrayStart(4) } else { - yynn3422 = 1 - for _, b := range yyq3422 { + yynn3425 = 1 + for _, b := range yyq3425 { if b { - yynn3422++ + yynn3425++ } } - r.EncodeMapStart(yynn3422) - yynn3422 = 0 + r.EncodeMapStart(yynn3425) + yynn3425 = 0 } - if yyr3422 || yy2arr3422 { + if yyr3425 || yy2arr3425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3422[0] { - yym3424 := z.EncBinary() - _ = yym3424 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3422[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3425 := z.EncBinary() - _ = yym3425 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3422 || yy2arr3422 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3422[1] { + if yyq3425[0] { yym3427 := z.EncBinary() _ = yym3427 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3422[1] { + if yyq3425[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3428 := z.EncBinary() _ = yym3428 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3425 || yy2arr3425 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3425[1] { + yym3430 := z.EncBinary() + _ = yym3430 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3425[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3431 := z.EncBinary() + _ = yym3431 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3422 || yy2arr3422 { + if yyr3425 || yy2arr3425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3422[2] { - yy3430 := &x.ObjectMeta - yy3430.CodecEncodeSelf(e) + if yyq3425[2] { + yy3433 := &x.ObjectMeta + yy3433.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3422[2] { + if yyq3425[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3431 := &x.ObjectMeta - yy3431.CodecEncodeSelf(e) + yy3434 := &x.ObjectMeta + yy3434.CodecEncodeSelf(e) } } - if yyr3422 || yy2arr3422 { + if yyr3425 || yy2arr3425 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3433 := &x.Target - yy3433.CodecEncodeSelf(e) + yy3436 := &x.Target + yy3436.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("target")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3434 := &x.Target - yy3434.CodecEncodeSelf(e) + yy3437 := &x.Target + yy3437.CodecEncodeSelf(e) } - if yyr3422 || yy2arr3422 { + if yyr3425 || yy2arr3425 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -43761,25 +43817,25 @@ func (x *Binding) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3435 := z.DecBinary() - _ = yym3435 + yym3438 := z.DecBinary() + _ = yym3438 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3436 := r.ContainerType() - if yyct3436 == codecSelferValueTypeMap1234 { - yyl3436 := r.ReadMapStart() - if yyl3436 == 0 { + yyct3439 := r.ContainerType() + if yyct3439 == codecSelferValueTypeMap1234 { + yyl3439 := r.ReadMapStart() + if yyl3439 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3436, d) + x.codecDecodeSelfFromMap(yyl3439, d) } - } else if yyct3436 == codecSelferValueTypeArray1234 { - yyl3436 := r.ReadArrayStart() - if yyl3436 == 0 { + } else if yyct3439 == codecSelferValueTypeArray1234 { + yyl3439 := r.ReadArrayStart() + if yyl3439 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3436, d) + x.codecDecodeSelfFromArray(yyl3439, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -43791,12 +43847,12 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3437Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3437Slc - var yyhl3437 bool = l >= 0 - for yyj3437 := 0; ; yyj3437++ { - if yyhl3437 { - if yyj3437 >= l { + var yys3440Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3440Slc + var yyhl3440 bool = l >= 0 + for yyj3440 := 0; ; yyj3440++ { + if yyhl3440 { + if yyj3440 >= l { break } } else { @@ -43805,10 +43861,10 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3437Slc = r.DecodeBytes(yys3437Slc, true, true) - yys3437 := string(yys3437Slc) + yys3440Slc = r.DecodeBytes(yys3440Slc, true, true) + yys3440 := string(yys3440Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3437 { + switch yys3440 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -43825,20 +43881,20 @@ func (x *Binding) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3440 := &x.ObjectMeta - yyv3440.CodecDecodeSelf(d) + yyv3443 := &x.ObjectMeta + yyv3443.CodecDecodeSelf(d) } case "target": if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3441 := &x.Target - yyv3441.CodecDecodeSelf(d) + yyv3444 := &x.Target + yyv3444.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3437) - } // end switch yys3437 - } // end for yyj3437 + z.DecStructFieldNotFound(-1, yys3440) + } // end switch yys3440 + } // end for yyj3440 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -43846,16 +43902,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3442 int - var yyb3442 bool - var yyhl3442 bool = l >= 0 - yyj3442++ - if yyhl3442 { - yyb3442 = yyj3442 > l + var yyj3445 int + var yyb3445 bool + var yyhl3445 bool = l >= 0 + yyj3445++ + if yyhl3445 { + yyb3445 = yyj3445 > l } else { - yyb3442 = r.CheckBreak() + yyb3445 = r.CheckBreak() } - if yyb3442 { + if yyb3445 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43865,13 +43921,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3442++ - if yyhl3442 { - yyb3442 = yyj3442 > l + yyj3445++ + if yyhl3445 { + yyb3445 = yyj3445 > l } else { - yyb3442 = r.CheckBreak() + yyb3445 = r.CheckBreak() } - if yyb3442 { + if yyb3445 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43881,13 +43937,13 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3442++ - if yyhl3442 { - yyb3442 = yyj3442 > l + yyj3445++ + if yyhl3445 { + yyb3445 = yyj3445 > l } else { - yyb3442 = r.CheckBreak() + yyb3445 = r.CheckBreak() } - if yyb3442 { + if yyb3445 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43895,16 +43951,16 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3445 := &x.ObjectMeta - yyv3445.CodecDecodeSelf(d) + yyv3448 := &x.ObjectMeta + yyv3448.CodecDecodeSelf(d) } - yyj3442++ - if yyhl3442 { - yyb3442 = yyj3442 > l + yyj3445++ + if yyhl3445 { + yyb3445 = yyj3445 > l } else { - yyb3442 = r.CheckBreak() + yyb3445 = r.CheckBreak() } - if yyb3442 { + if yyb3445 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -43912,21 +43968,21 @@ func (x *Binding) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Target = ObjectReference{} } else { - yyv3446 := &x.Target - yyv3446.CodecDecodeSelf(d) + yyv3449 := &x.Target + yyv3449.CodecDecodeSelf(d) } for { - yyj3442++ - if yyhl3442 { - yyb3442 = yyj3442 > l + yyj3445++ + if yyhl3445 { + yyb3445 = yyj3445 > l } else { - yyb3442 = r.CheckBreak() + yyb3445 = r.CheckBreak() } - if yyb3442 { + if yyb3445 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3442-1, "") + z.DecStructFieldNotFound(yyj3445-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -43938,68 +43994,68 @@ func (x *Preconditions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3447 := z.EncBinary() - _ = yym3447 + yym3450 := z.EncBinary() + _ = yym3450 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3448 := !z.EncBinary() - yy2arr3448 := z.EncBasicHandle().StructToArray - var yyq3448 [1]bool - _, _, _ = yysep3448, yyq3448, yy2arr3448 - const yyr3448 bool = false - yyq3448[0] = x.UID != nil - var yynn3448 int - if yyr3448 || yy2arr3448 { + yysep3451 := !z.EncBinary() + yy2arr3451 := z.EncBasicHandle().StructToArray + var yyq3451 [1]bool + _, _, _ = yysep3451, yyq3451, yy2arr3451 + const yyr3451 bool = false + yyq3451[0] = x.UID != nil + var yynn3451 int + if yyr3451 || yy2arr3451 { r.EncodeArrayStart(1) } else { - yynn3448 = 0 - for _, b := range yyq3448 { + yynn3451 = 0 + for _, b := range yyq3451 { if b { - yynn3448++ + yynn3451++ } } - r.EncodeMapStart(yynn3448) - yynn3448 = 0 + r.EncodeMapStart(yynn3451) + yynn3451 = 0 } - if yyr3448 || yy2arr3448 { + if yyr3451 || yy2arr3451 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3448[0] { + if yyq3451[0] { if x.UID == nil { r.EncodeNil() } else { - yy3450 := *x.UID - yym3451 := z.EncBinary() - _ = yym3451 + yy3453 := *x.UID + yym3454 := z.EncBinary() + _ = yym3454 if false { - } else if z.HasExtensions() && z.EncExt(yy3450) { + } else if z.HasExtensions() && z.EncExt(yy3453) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3450)) + r.EncodeString(codecSelferC_UTF81234, string(yy3453)) } } } else { r.EncodeNil() } } else { - if yyq3448[0] { + if yyq3451[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("uid")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.UID == nil { r.EncodeNil() } else { - yy3452 := *x.UID - yym3453 := z.EncBinary() - _ = yym3453 + yy3455 := *x.UID + yym3456 := z.EncBinary() + _ = yym3456 if false { - } else if z.HasExtensions() && z.EncExt(yy3452) { + } else if z.HasExtensions() && z.EncExt(yy3455) { } else { - r.EncodeString(codecSelferC_UTF81234, string(yy3452)) + r.EncodeString(codecSelferC_UTF81234, string(yy3455)) } } } } - if yyr3448 || yy2arr3448 { + if yyr3451 || yy2arr3451 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44012,25 +44068,25 @@ func (x *Preconditions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3454 := z.DecBinary() - _ = yym3454 + yym3457 := z.DecBinary() + _ = yym3457 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3455 := r.ContainerType() - if yyct3455 == codecSelferValueTypeMap1234 { - yyl3455 := r.ReadMapStart() - if yyl3455 == 0 { + yyct3458 := r.ContainerType() + if yyct3458 == codecSelferValueTypeMap1234 { + yyl3458 := r.ReadMapStart() + if yyl3458 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3455, d) + x.codecDecodeSelfFromMap(yyl3458, d) } - } else if yyct3455 == codecSelferValueTypeArray1234 { - yyl3455 := r.ReadArrayStart() - if yyl3455 == 0 { + } else if yyct3458 == codecSelferValueTypeArray1234 { + yyl3458 := r.ReadArrayStart() + if yyl3458 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3455, d) + x.codecDecodeSelfFromArray(yyl3458, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44042,12 +44098,12 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3456Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3456Slc - var yyhl3456 bool = l >= 0 - for yyj3456 := 0; ; yyj3456++ { - if yyhl3456 { - if yyj3456 >= l { + var yys3459Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3459Slc + var yyhl3459 bool = l >= 0 + for yyj3459 := 0; ; yyj3459++ { + if yyhl3459 { + if yyj3459 >= l { break } } else { @@ -44056,10 +44112,10 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3456Slc = r.DecodeBytes(yys3456Slc, true, true) - yys3456 := string(yys3456Slc) + yys3459Slc = r.DecodeBytes(yys3459Slc, true, true) + yys3459 := string(yys3459Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3456 { + switch yys3459 { case "uid": if r.TryDecodeAsNil() { if x.UID != nil { @@ -44069,8 +44125,8 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3458 := z.DecBinary() - _ = yym3458 + yym3461 := z.DecBinary() + _ = yym3461 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -44078,9 +44134,9 @@ func (x *Preconditions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } default: - z.DecStructFieldNotFound(-1, yys3456) - } // end switch yys3456 - } // end for yyj3456 + z.DecStructFieldNotFound(-1, yys3459) + } // end switch yys3459 + } // end for yyj3459 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44088,16 +44144,16 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3459 int - var yyb3459 bool - var yyhl3459 bool = l >= 0 - yyj3459++ - if yyhl3459 { - yyb3459 = yyj3459 > l + var yyj3462 int + var yyb3462 bool + var yyhl3462 bool = l >= 0 + yyj3462++ + if yyhl3462 { + yyb3462 = yyj3462 > l } else { - yyb3459 = r.CheckBreak() + yyb3462 = r.CheckBreak() } - if yyb3459 { + if yyb3462 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44110,8 +44166,8 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.UID == nil { x.UID = new(pkg1_types.UID) } - yym3461 := z.DecBinary() - _ = yym3461 + yym3464 := z.DecBinary() + _ = yym3464 if false { } else if z.HasExtensions() && z.DecExt(x.UID) { } else { @@ -44119,17 +44175,17 @@ func (x *Preconditions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } } for { - yyj3459++ - if yyhl3459 { - yyb3459 = yyj3459 > l + yyj3462++ + if yyhl3462 { + yyb3462 = yyj3462 > l } else { - yyb3459 = r.CheckBreak() + yyb3462 = r.CheckBreak() } - if yyb3459 { + if yyb3462 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3459-1, "") + z.DecStructFieldNotFound(yyj3462-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44141,122 +44197,122 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3462 := z.EncBinary() - _ = yym3462 + yym3465 := z.EncBinary() + _ = yym3465 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3463 := !z.EncBinary() - yy2arr3463 := z.EncBasicHandle().StructToArray - var yyq3463 [5]bool - _, _, _ = yysep3463, yyq3463, yy2arr3463 - const yyr3463 bool = false - yyq3463[0] = x.Kind != "" - yyq3463[1] = x.APIVersion != "" - yyq3463[2] = x.GracePeriodSeconds != nil - yyq3463[3] = x.Preconditions != nil - yyq3463[4] = x.OrphanDependents != nil - var yynn3463 int - if yyr3463 || yy2arr3463 { + yysep3466 := !z.EncBinary() + yy2arr3466 := z.EncBasicHandle().StructToArray + var yyq3466 [5]bool + _, _, _ = yysep3466, yyq3466, yy2arr3466 + const yyr3466 bool = false + yyq3466[0] = x.Kind != "" + yyq3466[1] = x.APIVersion != "" + yyq3466[2] = x.GracePeriodSeconds != nil + yyq3466[3] = x.Preconditions != nil + yyq3466[4] = x.OrphanDependents != nil + var yynn3466 int + if yyr3466 || yy2arr3466 { r.EncodeArrayStart(5) } else { - yynn3463 = 0 - for _, b := range yyq3463 { + yynn3466 = 0 + for _, b := range yyq3466 { if b { - yynn3463++ + yynn3466++ } } - r.EncodeMapStart(yynn3463) - yynn3463 = 0 + r.EncodeMapStart(yynn3466) + yynn3466 = 0 } - if yyr3463 || yy2arr3463 { + if yyr3466 || yy2arr3466 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3463[0] { - yym3465 := z.EncBinary() - _ = yym3465 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3463[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3466 := z.EncBinary() - _ = yym3466 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3463 || yy2arr3463 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3463[1] { + if yyq3466[0] { yym3468 := z.EncBinary() _ = yym3468 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3463[1] { + if yyq3466[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3469 := z.EncBinary() _ = yym3469 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3466 || yy2arr3466 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3466[1] { + yym3471 := z.EncBinary() + _ = yym3471 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3466[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3472 := z.EncBinary() + _ = yym3472 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3463 || yy2arr3463 { + if yyr3466 || yy2arr3466 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3463[2] { + if yyq3466[2] { if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3471 := *x.GracePeriodSeconds - yym3472 := z.EncBinary() - _ = yym3472 + yy3474 := *x.GracePeriodSeconds + yym3475 := z.EncBinary() + _ = yym3475 if false { } else { - r.EncodeInt(int64(yy3471)) + r.EncodeInt(int64(yy3474)) } } } else { r.EncodeNil() } } else { - if yyq3463[2] { + if yyq3466[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("gracePeriodSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.GracePeriodSeconds == nil { r.EncodeNil() } else { - yy3473 := *x.GracePeriodSeconds - yym3474 := z.EncBinary() - _ = yym3474 + yy3476 := *x.GracePeriodSeconds + yym3477 := z.EncBinary() + _ = yym3477 if false { } else { - r.EncodeInt(int64(yy3473)) + r.EncodeInt(int64(yy3476)) } } } } - if yyr3463 || yy2arr3463 { + if yyr3466 || yy2arr3466 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3463[3] { + if yyq3466[3] { if x.Preconditions == nil { r.EncodeNil() } else { @@ -44266,7 +44322,7 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3463[3] { + if yyq3466[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("preconditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -44277,42 +44333,42 @@ func (x *DeleteOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3463 || yy2arr3463 { + if yyr3466 || yy2arr3466 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3463[4] { + if yyq3466[4] { if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3477 := *x.OrphanDependents - yym3478 := z.EncBinary() - _ = yym3478 + yy3480 := *x.OrphanDependents + yym3481 := z.EncBinary() + _ = yym3481 if false { } else { - r.EncodeBool(bool(yy3477)) + r.EncodeBool(bool(yy3480)) } } } else { r.EncodeNil() } } else { - if yyq3463[4] { + if yyq3466[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("orphanDependents")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.OrphanDependents == nil { r.EncodeNil() } else { - yy3479 := *x.OrphanDependents - yym3480 := z.EncBinary() - _ = yym3480 + yy3482 := *x.OrphanDependents + yym3483 := z.EncBinary() + _ = yym3483 if false { } else { - r.EncodeBool(bool(yy3479)) + r.EncodeBool(bool(yy3482)) } } } } - if yyr3463 || yy2arr3463 { + if yyr3466 || yy2arr3466 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44325,25 +44381,25 @@ func (x *DeleteOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3481 := z.DecBinary() - _ = yym3481 + yym3484 := z.DecBinary() + _ = yym3484 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3482 := r.ContainerType() - if yyct3482 == codecSelferValueTypeMap1234 { - yyl3482 := r.ReadMapStart() - if yyl3482 == 0 { + yyct3485 := r.ContainerType() + if yyct3485 == codecSelferValueTypeMap1234 { + yyl3485 := r.ReadMapStart() + if yyl3485 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3482, d) + x.codecDecodeSelfFromMap(yyl3485, d) } - } else if yyct3482 == codecSelferValueTypeArray1234 { - yyl3482 := r.ReadArrayStart() - if yyl3482 == 0 { + } else if yyct3485 == codecSelferValueTypeArray1234 { + yyl3485 := r.ReadArrayStart() + if yyl3485 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3482, d) + x.codecDecodeSelfFromArray(yyl3485, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44355,12 +44411,12 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3483Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3483Slc - var yyhl3483 bool = l >= 0 - for yyj3483 := 0; ; yyj3483++ { - if yyhl3483 { - if yyj3483 >= l { + var yys3486Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3486Slc + var yyhl3486 bool = l >= 0 + for yyj3486 := 0; ; yyj3486++ { + if yyhl3486 { + if yyj3486 >= l { break } } else { @@ -44369,10 +44425,10 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3483Slc = r.DecodeBytes(yys3483Slc, true, true) - yys3483 := string(yys3483Slc) + yys3486Slc = r.DecodeBytes(yys3486Slc, true, true) + yys3486 := string(yys3486Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3483 { + switch yys3486 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44394,8 +44450,8 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3487 := z.DecBinary() - _ = yym3487 + yym3490 := z.DecBinary() + _ = yym3490 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) @@ -44421,17 +44477,17 @@ func (x *DeleteOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3490 := z.DecBinary() - _ = yym3490 + yym3493 := z.DecBinary() + _ = yym3493 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys3483) - } // end switch yys3483 - } // end for yyj3483 + z.DecStructFieldNotFound(-1, yys3486) + } // end switch yys3486 + } // end for yyj3486 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44439,16 +44495,16 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3491 int - var yyb3491 bool - var yyhl3491 bool = l >= 0 - yyj3491++ - if yyhl3491 { - yyb3491 = yyj3491 > l + var yyj3494 int + var yyb3494 bool + var yyhl3494 bool = l >= 0 + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3491 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3491 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44458,13 +44514,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3491++ - if yyhl3491 { - yyb3491 = yyj3491 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3491 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3491 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44474,13 +44530,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3491++ - if yyhl3491 { - yyb3491 = yyj3491 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3491 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3491 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44493,20 +44549,20 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.GracePeriodSeconds == nil { x.GracePeriodSeconds = new(int64) } - yym3495 := z.DecBinary() - _ = yym3495 + yym3498 := z.DecBinary() + _ = yym3498 if false { } else { *((*int64)(x.GracePeriodSeconds)) = int64(r.DecodeInt(64)) } } - yyj3491++ - if yyhl3491 { - yyb3491 = yyj3491 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3491 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3491 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44521,13 +44577,13 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } x.Preconditions.CodecDecodeSelf(d) } - yyj3491++ - if yyhl3491 { - yyb3491 = yyj3491 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3491 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3491 { + if yyb3494 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44540,25 +44596,25 @@ func (x *DeleteOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.OrphanDependents == nil { x.OrphanDependents = new(bool) } - yym3498 := z.DecBinary() - _ = yym3498 + yym3501 := z.DecBinary() + _ = yym3501 if false { } else { *((*bool)(x.OrphanDependents)) = r.DecodeBool() } } for { - yyj3491++ - if yyhl3491 { - yyb3491 = yyj3491 > l + yyj3494++ + if yyhl3494 { + yyb3494 = yyj3494 > l } else { - yyb3491 = r.CheckBreak() + yyb3494 = r.CheckBreak() } - if yyb3491 { + if yyb3494 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3491-1, "") + z.DecStructFieldNotFound(yyj3494-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -44570,116 +44626,116 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3499 := z.EncBinary() - _ = yym3499 + yym3502 := z.EncBinary() + _ = yym3502 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3500 := !z.EncBinary() - yy2arr3500 := z.EncBasicHandle().StructToArray - var yyq3500 [7]bool - _, _, _ = yysep3500, yyq3500, yy2arr3500 - const yyr3500 bool = false - yyq3500[0] = x.Kind != "" - yyq3500[1] = x.APIVersion != "" - yyq3500[2] = x.LabelSelector != "" - yyq3500[3] = x.FieldSelector != "" - yyq3500[4] = x.Watch != false - yyq3500[5] = x.ResourceVersion != "" - yyq3500[6] = x.TimeoutSeconds != nil - var yynn3500 int - if yyr3500 || yy2arr3500 { + yysep3503 := !z.EncBinary() + yy2arr3503 := z.EncBasicHandle().StructToArray + var yyq3503 [7]bool + _, _, _ = yysep3503, yyq3503, yy2arr3503 + const yyr3503 bool = false + yyq3503[0] = x.Kind != "" + yyq3503[1] = x.APIVersion != "" + yyq3503[2] = x.LabelSelector != "" + yyq3503[3] = x.FieldSelector != "" + yyq3503[4] = x.Watch != false + yyq3503[5] = x.ResourceVersion != "" + yyq3503[6] = x.TimeoutSeconds != nil + var yynn3503 int + if yyr3503 || yy2arr3503 { r.EncodeArrayStart(7) } else { - yynn3500 = 0 - for _, b := range yyq3500 { + yynn3503 = 0 + for _, b := range yyq3503 { if b { - yynn3500++ + yynn3503++ } } - r.EncodeMapStart(yynn3500) - yynn3500 = 0 + r.EncodeMapStart(yynn3503) + yynn3503 = 0 } - if yyr3500 || yy2arr3500 { + if yyr3503 || yy2arr3503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3500[0] { - yym3502 := z.EncBinary() - _ = yym3502 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3500[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3503 := z.EncBinary() - _ = yym3503 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3500 || yy2arr3500 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3500[1] { + if yyq3503[0] { yym3505 := z.EncBinary() _ = yym3505 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3500[1] { + if yyq3503[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3506 := z.EncBinary() _ = yym3506 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3500 || yy2arr3500 { + if yyr3503 || yy2arr3503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3500[2] { + if yyq3503[1] { yym3508 := z.EncBinary() _ = yym3508 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3500[2] { + if yyq3503[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3509 := z.EncBinary() _ = yym3509 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3503 || yy2arr3503 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3503[2] { + yym3511 := z.EncBinary() + _ = yym3511 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3503[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("labelSelector")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3512 := z.EncBinary() + _ = yym3512 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.LabelSelector)) } } } - if yyr3500 || yy2arr3500 { + if yyr3503 || yy2arr3503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3500[3] { - yym3511 := z.EncBinary() - _ = yym3511 + if yyq3503[3] { + yym3514 := z.EncBinary() + _ = yym3514 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) @@ -44688,23 +44744,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3500[3] { + if yyq3503[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldSelector")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3512 := z.EncBinary() - _ = yym3512 + yym3515 := z.EncBinary() + _ = yym3515 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldSelector)) } } } - if yyr3500 || yy2arr3500 { + if yyr3503 || yy2arr3503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3500[4] { - yym3514 := z.EncBinary() - _ = yym3514 + if yyq3503[4] { + yym3517 := z.EncBinary() + _ = yym3517 if false { } else { r.EncodeBool(bool(x.Watch)) @@ -44713,23 +44769,23 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3500[4] { + if yyq3503[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("watch")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3515 := z.EncBinary() - _ = yym3515 + yym3518 := z.EncBinary() + _ = yym3518 if false { } else { r.EncodeBool(bool(x.Watch)) } } } - if yyr3500 || yy2arr3500 { + if yyr3503 || yy2arr3503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3500[5] { - yym3517 := z.EncBinary() - _ = yym3517 + if yyq3503[5] { + yym3520 := z.EncBinary() + _ = yym3520 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) @@ -44738,54 +44794,54 @@ func (x *ListOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3500[5] { + if yyq3503[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3518 := z.EncBinary() - _ = yym3518 + yym3521 := z.EncBinary() + _ = yym3521 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3500 || yy2arr3500 { + if yyr3503 || yy2arr3503 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3500[6] { + if yyq3503[6] { if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3520 := *x.TimeoutSeconds - yym3521 := z.EncBinary() - _ = yym3521 + yy3523 := *x.TimeoutSeconds + yym3524 := z.EncBinary() + _ = yym3524 if false { } else { - r.EncodeInt(int64(yy3520)) + r.EncodeInt(int64(yy3523)) } } } else { r.EncodeNil() } } else { - if yyq3500[6] { + if yyq3503[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timeoutSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TimeoutSeconds == nil { r.EncodeNil() } else { - yy3522 := *x.TimeoutSeconds - yym3523 := z.EncBinary() - _ = yym3523 + yy3525 := *x.TimeoutSeconds + yym3526 := z.EncBinary() + _ = yym3526 if false { } else { - r.EncodeInt(int64(yy3522)) + r.EncodeInt(int64(yy3525)) } } } } - if yyr3500 || yy2arr3500 { + if yyr3503 || yy2arr3503 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -44798,25 +44854,25 @@ func (x *ListOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3524 := z.DecBinary() - _ = yym3524 + yym3527 := z.DecBinary() + _ = yym3527 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3525 := r.ContainerType() - if yyct3525 == codecSelferValueTypeMap1234 { - yyl3525 := r.ReadMapStart() - if yyl3525 == 0 { + yyct3528 := r.ContainerType() + if yyct3528 == codecSelferValueTypeMap1234 { + yyl3528 := r.ReadMapStart() + if yyl3528 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3525, d) + x.codecDecodeSelfFromMap(yyl3528, d) } - } else if yyct3525 == codecSelferValueTypeArray1234 { - yyl3525 := r.ReadArrayStart() - if yyl3525 == 0 { + } else if yyct3528 == codecSelferValueTypeArray1234 { + yyl3528 := r.ReadArrayStart() + if yyl3528 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3525, d) + x.codecDecodeSelfFromArray(yyl3528, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -44828,12 +44884,12 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3526Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3526Slc - var yyhl3526 bool = l >= 0 - for yyj3526 := 0; ; yyj3526++ { - if yyhl3526 { - if yyj3526 >= l { + var yys3529Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3529Slc + var yyhl3529 bool = l >= 0 + for yyj3529 := 0; ; yyj3529++ { + if yyhl3529 { + if yyj3529 >= l { break } } else { @@ -44842,10 +44898,10 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3526Slc = r.DecodeBytes(yys3526Slc, true, true) - yys3526 := string(yys3526Slc) + yys3529Slc = r.DecodeBytes(yys3529Slc, true, true) + yys3529 := string(yys3529Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3526 { + switch yys3529 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -44891,17 +44947,17 @@ func (x *ListOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3534 := z.DecBinary() - _ = yym3534 + yym3537 := z.DecBinary() + _ = yym3537 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3526) - } // end switch yys3526 - } // end for yyj3526 + z.DecStructFieldNotFound(-1, yys3529) + } // end switch yys3529 + } // end for yyj3529 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -44909,16 +44965,16 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3535 int - var yyb3535 bool - var yyhl3535 bool = l >= 0 - yyj3535++ - if yyhl3535 { - yyb3535 = yyj3535 > l + var yyj3538 int + var yyb3538 bool + var yyhl3538 bool = l >= 0 + yyj3538++ + if yyhl3538 { + yyb3538 = yyj3538 > l } else { - yyb3535 = r.CheckBreak() + yyb3538 = r.CheckBreak() } - if yyb3535 { + if yyb3538 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44928,13 +44984,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3535++ - if yyhl3535 { - yyb3535 = yyj3535 > l + yyj3538++ + if yyhl3538 { + yyb3538 = yyj3538 > l } else { - yyb3535 = r.CheckBreak() + yyb3538 = r.CheckBreak() } - if yyb3535 { + if yyb3538 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44944,13 +45000,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3535++ - if yyhl3535 { - yyb3535 = yyj3535 > l + yyj3538++ + if yyhl3538 { + yyb3538 = yyj3538 > l } else { - yyb3535 = r.CheckBreak() + yyb3538 = r.CheckBreak() } - if yyb3535 { + if yyb3538 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44960,13 +45016,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.LabelSelector = string(r.DecodeString()) } - yyj3535++ - if yyhl3535 { - yyb3535 = yyj3535 > l + yyj3538++ + if yyhl3538 { + yyb3538 = yyj3538 > l } else { - yyb3535 = r.CheckBreak() + yyb3538 = r.CheckBreak() } - if yyb3535 { + if yyb3538 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44976,13 +45032,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.FieldSelector = string(r.DecodeString()) } - yyj3535++ - if yyhl3535 { - yyb3535 = yyj3535 > l + yyj3538++ + if yyhl3538 { + yyb3538 = yyj3538 > l } else { - yyb3535 = r.CheckBreak() + yyb3538 = r.CheckBreak() } - if yyb3535 { + if yyb3538 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -44992,13 +45048,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Watch = bool(r.DecodeBool()) } - yyj3535++ - if yyhl3535 { - yyb3535 = yyj3535 > l + yyj3538++ + if yyhl3538 { + yyb3538 = yyj3538 > l } else { - yyb3535 = r.CheckBreak() + yyb3538 = r.CheckBreak() } - if yyb3535 { + if yyb3538 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45008,13 +45064,13 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3535++ - if yyhl3535 { - yyb3535 = yyj3535 > l + yyj3538++ + if yyhl3538 { + yyb3538 = yyj3538 > l } else { - yyb3535 = r.CheckBreak() + yyb3538 = r.CheckBreak() } - if yyb3535 { + if yyb3538 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45027,25 +45083,25 @@ func (x *ListOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TimeoutSeconds == nil { x.TimeoutSeconds = new(int64) } - yym3543 := z.DecBinary() - _ = yym3543 + yym3546 := z.DecBinary() + _ = yym3546 if false { } else { *((*int64)(x.TimeoutSeconds)) = int64(r.DecodeInt(64)) } } for { - yyj3535++ - if yyhl3535 { - yyb3535 = yyj3535 > l + yyj3538++ + if yyhl3538 { + yyb3538 = yyj3538 > l } else { - yyb3535 = r.CheckBreak() + yyb3538 = r.CheckBreak() } - if yyb3535 { + if yyb3538 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3535-1, "") + z.DecStructFieldNotFound(yyj3538-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45057,94 +45113,94 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3544 := z.EncBinary() - _ = yym3544 + yym3547 := z.EncBinary() + _ = yym3547 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3545 := !z.EncBinary() - yy2arr3545 := z.EncBasicHandle().StructToArray - var yyq3545 [10]bool - _, _, _ = yysep3545, yyq3545, yy2arr3545 - const yyr3545 bool = false - yyq3545[0] = x.Kind != "" - yyq3545[1] = x.APIVersion != "" - yyq3545[2] = x.Container != "" - yyq3545[3] = x.Follow != false - yyq3545[4] = x.Previous != false - yyq3545[5] = x.SinceSeconds != nil - yyq3545[6] = x.SinceTime != nil - yyq3545[7] = x.Timestamps != false - yyq3545[8] = x.TailLines != nil - yyq3545[9] = x.LimitBytes != nil - var yynn3545 int - if yyr3545 || yy2arr3545 { + yysep3548 := !z.EncBinary() + yy2arr3548 := z.EncBasicHandle().StructToArray + var yyq3548 [10]bool + _, _, _ = yysep3548, yyq3548, yy2arr3548 + const yyr3548 bool = false + yyq3548[0] = x.Kind != "" + yyq3548[1] = x.APIVersion != "" + yyq3548[2] = x.Container != "" + yyq3548[3] = x.Follow != false + yyq3548[4] = x.Previous != false + yyq3548[5] = x.SinceSeconds != nil + yyq3548[6] = x.SinceTime != nil + yyq3548[7] = x.Timestamps != false + yyq3548[8] = x.TailLines != nil + yyq3548[9] = x.LimitBytes != nil + var yynn3548 int + if yyr3548 || yy2arr3548 { r.EncodeArrayStart(10) } else { - yynn3545 = 0 - for _, b := range yyq3545 { + yynn3548 = 0 + for _, b := range yyq3548 { if b { - yynn3545++ + yynn3548++ } } - r.EncodeMapStart(yynn3545) - yynn3545 = 0 + r.EncodeMapStart(yynn3548) + yynn3548 = 0 } - if yyr3545 || yy2arr3545 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3545[0] { - yym3547 := z.EncBinary() - _ = yym3547 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3545[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3548 := z.EncBinary() - _ = yym3548 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3545 || yy2arr3545 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3545[1] { + if yyq3548[0] { yym3550 := z.EncBinary() _ = yym3550 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3545[1] { + if yyq3548[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3551 := z.EncBinary() _ = yym3551 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3548 || yy2arr3548 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3548[1] { + yym3553 := z.EncBinary() + _ = yym3553 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3548[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3554 := z.EncBinary() + _ = yym3554 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3545 || yy2arr3545 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3545[2] { - yym3553 := z.EncBinary() - _ = yym3553 + if yyq3548[2] { + yym3556 := z.EncBinary() + _ = yym3556 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -45153,116 +45209,116 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3545[2] { + if yyq3548[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3554 := z.EncBinary() - _ = yym3554 + yym3557 := z.EncBinary() + _ = yym3557 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3545 || yy2arr3545 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3545[3] { - yym3556 := z.EncBinary() - _ = yym3556 - if false { - } else { - r.EncodeBool(bool(x.Follow)) - } - } else { - r.EncodeBool(false) - } - } else { - if yyq3545[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("follow")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3557 := z.EncBinary() - _ = yym3557 - if false { - } else { - r.EncodeBool(bool(x.Follow)) - } - } - } - if yyr3545 || yy2arr3545 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3545[4] { + if yyq3548[3] { yym3559 := z.EncBinary() _ = yym3559 if false { } else { - r.EncodeBool(bool(x.Previous)) + r.EncodeBool(bool(x.Follow)) } } else { r.EncodeBool(false) } } else { - if yyq3545[4] { + if yyq3548[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("previous")) + r.EncodeString(codecSelferC_UTF81234, string("follow")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3560 := z.EncBinary() _ = yym3560 if false { + } else { + r.EncodeBool(bool(x.Follow)) + } + } + } + if yyr3548 || yy2arr3548 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3548[4] { + yym3562 := z.EncBinary() + _ = yym3562 + if false { + } else { + r.EncodeBool(bool(x.Previous)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq3548[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("previous")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3563 := z.EncBinary() + _ = yym3563 + if false { } else { r.EncodeBool(bool(x.Previous)) } } } - if yyr3545 || yy2arr3545 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3545[5] { + if yyq3548[5] { if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3562 := *x.SinceSeconds - yym3563 := z.EncBinary() - _ = yym3563 + yy3565 := *x.SinceSeconds + yym3566 := z.EncBinary() + _ = yym3566 if false { } else { - r.EncodeInt(int64(yy3562)) + r.EncodeInt(int64(yy3565)) } } } else { r.EncodeNil() } } else { - if yyq3545[5] { + if yyq3548[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceSeconds")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceSeconds == nil { r.EncodeNil() } else { - yy3564 := *x.SinceSeconds - yym3565 := z.EncBinary() - _ = yym3565 + yy3567 := *x.SinceSeconds + yym3568 := z.EncBinary() + _ = yym3568 if false { } else { - r.EncodeInt(int64(yy3564)) + r.EncodeInt(int64(yy3567)) } } } } - if yyr3545 || yy2arr3545 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3545[6] { + if yyq3548[6] { if x.SinceTime == nil { r.EncodeNil() } else { - yym3567 := z.EncBinary() - _ = yym3567 + yym3570 := z.EncBinary() + _ = yym3570 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3567 { + } else if yym3570 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3567 && z.IsJSONHandle() { + } else if !yym3570 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -45272,20 +45328,20 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3545[6] { + if yyq3548[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("sinceTime")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.SinceTime == nil { r.EncodeNil() } else { - yym3568 := z.EncBinary() - _ = yym3568 + yym3571 := z.EncBinary() + _ = yym3571 if false { } else if z.HasExtensions() && z.EncExt(x.SinceTime) { - } else if yym3568 { + } else if yym3571 { z.EncBinaryMarshal(x.SinceTime) - } else if !yym3568 && z.IsJSONHandle() { + } else if !yym3571 && z.IsJSONHandle() { z.EncJSONMarshal(x.SinceTime) } else { z.EncFallback(x.SinceTime) @@ -45293,11 +45349,11 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3545 || yy2arr3545 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3545[7] { - yym3570 := z.EncBinary() - _ = yym3570 + if yyq3548[7] { + yym3573 := z.EncBinary() + _ = yym3573 if false { } else { r.EncodeBool(bool(x.Timestamps)) @@ -45306,60 +45362,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3545[7] { + if yyq3548[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("timestamps")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3571 := z.EncBinary() - _ = yym3571 + yym3574 := z.EncBinary() + _ = yym3574 if false { } else { r.EncodeBool(bool(x.Timestamps)) } } } - if yyr3545 || yy2arr3545 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3545[8] { + if yyq3548[8] { if x.TailLines == nil { r.EncodeNil() } else { - yy3573 := *x.TailLines - yym3574 := z.EncBinary() - _ = yym3574 + yy3576 := *x.TailLines + yym3577 := z.EncBinary() + _ = yym3577 if false { } else { - r.EncodeInt(int64(yy3573)) + r.EncodeInt(int64(yy3576)) } } } else { r.EncodeNil() } } else { - if yyq3545[8] { + if yyq3548[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tailLines")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.TailLines == nil { r.EncodeNil() } else { - yy3575 := *x.TailLines - yym3576 := z.EncBinary() - _ = yym3576 - if false { - } else { - r.EncodeInt(int64(yy3575)) - } - } - } - } - if yyr3545 || yy2arr3545 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3545[9] { - if x.LimitBytes == nil { - r.EncodeNil() - } else { - yy3578 := *x.LimitBytes + yy3578 := *x.TailLines yym3579 := z.EncBinary() _ = yym3579 if false { @@ -45367,28 +45407,44 @@ func (x *PodLogOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(int64(yy3578)) } } + } + } + if yyr3548 || yy2arr3548 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3548[9] { + if x.LimitBytes == nil { + r.EncodeNil() + } else { + yy3581 := *x.LimitBytes + yym3582 := z.EncBinary() + _ = yym3582 + if false { + } else { + r.EncodeInt(int64(yy3581)) + } + } } else { r.EncodeNil() } } else { - if yyq3545[9] { + if yyq3548[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("limitBytes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.LimitBytes == nil { r.EncodeNil() } else { - yy3580 := *x.LimitBytes - yym3581 := z.EncBinary() - _ = yym3581 + yy3583 := *x.LimitBytes + yym3584 := z.EncBinary() + _ = yym3584 if false { } else { - r.EncodeInt(int64(yy3580)) + r.EncodeInt(int64(yy3583)) } } } } - if yyr3545 || yy2arr3545 { + if yyr3548 || yy2arr3548 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -45401,25 +45457,25 @@ func (x *PodLogOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3582 := z.DecBinary() - _ = yym3582 + yym3585 := z.DecBinary() + _ = yym3585 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3583 := r.ContainerType() - if yyct3583 == codecSelferValueTypeMap1234 { - yyl3583 := r.ReadMapStart() - if yyl3583 == 0 { + yyct3586 := r.ContainerType() + if yyct3586 == codecSelferValueTypeMap1234 { + yyl3586 := r.ReadMapStart() + if yyl3586 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3583, d) + x.codecDecodeSelfFromMap(yyl3586, d) } - } else if yyct3583 == codecSelferValueTypeArray1234 { - yyl3583 := r.ReadArrayStart() - if yyl3583 == 0 { + } else if yyct3586 == codecSelferValueTypeArray1234 { + yyl3586 := r.ReadArrayStart() + if yyl3586 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3583, d) + x.codecDecodeSelfFromArray(yyl3586, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -45431,12 +45487,12 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3584Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3584Slc - var yyhl3584 bool = l >= 0 - for yyj3584 := 0; ; yyj3584++ { - if yyhl3584 { - if yyj3584 >= l { + var yys3587Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3587Slc + var yyhl3587 bool = l >= 0 + for yyj3587 := 0; ; yyj3587++ { + if yyhl3587 { + if yyj3587 >= l { break } } else { @@ -45445,10 +45501,10 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3584Slc = r.DecodeBytes(yys3584Slc, true, true) - yys3584 := string(yys3584Slc) + yys3587Slc = r.DecodeBytes(yys3587Slc, true, true) + yys3587 := string(yys3587Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3584 { + switch yys3587 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -45488,8 +45544,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3591 := z.DecBinary() - _ = yym3591 + yym3594 := z.DecBinary() + _ = yym3594 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) @@ -45504,13 +45560,13 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_v1.Time) } - yym3593 := z.DecBinary() - _ = yym3593 + yym3596 := z.DecBinary() + _ = yym3596 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3593 { + } else if yym3596 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3593 && z.IsJSONHandle() { + } else if !yym3596 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) @@ -45531,8 +45587,8 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3596 := z.DecBinary() - _ = yym3596 + yym3599 := z.DecBinary() + _ = yym3599 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) @@ -45547,17 +45603,17 @@ func (x *PodLogOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3598 := z.DecBinary() - _ = yym3598 + yym3601 := z.DecBinary() + _ = yym3601 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } default: - z.DecStructFieldNotFound(-1, yys3584) - } // end switch yys3584 - } // end for yyj3584 + z.DecStructFieldNotFound(-1, yys3587) + } // end switch yys3587 + } // end for yyj3587 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -45565,16 +45621,16 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3599 int - var yyb3599 bool - var yyhl3599 bool = l >= 0 - yyj3599++ - if yyhl3599 { - yyb3599 = yyj3599 > l + var yyj3602 int + var yyb3602 bool + var yyhl3602 bool = l >= 0 + yyj3602++ + if yyhl3602 { + yyb3602 = yyj3602 > l } else { - yyb3599 = r.CheckBreak() + yyb3602 = r.CheckBreak() } - if yyb3599 { + if yyb3602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45584,13 +45640,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3599++ - if yyhl3599 { - yyb3599 = yyj3599 > l + yyj3602++ + if yyhl3602 { + yyb3602 = yyj3602 > l } else { - yyb3599 = r.CheckBreak() + yyb3602 = r.CheckBreak() } - if yyb3599 { + if yyb3602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45600,13 +45656,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3599++ - if yyhl3599 { - yyb3599 = yyj3599 > l + yyj3602++ + if yyhl3602 { + yyb3602 = yyj3602 > l } else { - yyb3599 = r.CheckBreak() + yyb3602 = r.CheckBreak() } - if yyb3599 { + if yyb3602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45616,13 +45672,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3599++ - if yyhl3599 { - yyb3599 = yyj3599 > l + yyj3602++ + if yyhl3602 { + yyb3602 = yyj3602 > l } else { - yyb3599 = r.CheckBreak() + yyb3602 = r.CheckBreak() } - if yyb3599 { + if yyb3602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45632,13 +45688,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Follow = bool(r.DecodeBool()) } - yyj3599++ - if yyhl3599 { - yyb3599 = yyj3599 > l + yyj3602++ + if yyhl3602 { + yyb3602 = yyj3602 > l } else { - yyb3599 = r.CheckBreak() + yyb3602 = r.CheckBreak() } - if yyb3599 { + if yyb3602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45648,13 +45704,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Previous = bool(r.DecodeBool()) } - yyj3599++ - if yyhl3599 { - yyb3599 = yyj3599 > l + yyj3602++ + if yyhl3602 { + yyb3602 = yyj3602 > l } else { - yyb3599 = r.CheckBreak() + yyb3602 = r.CheckBreak() } - if yyb3599 { + if yyb3602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45667,20 +45723,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceSeconds == nil { x.SinceSeconds = new(int64) } - yym3606 := z.DecBinary() - _ = yym3606 + yym3609 := z.DecBinary() + _ = yym3609 if false { } else { *((*int64)(x.SinceSeconds)) = int64(r.DecodeInt(64)) } } - yyj3599++ - if yyhl3599 { - yyb3599 = yyj3599 > l + yyj3602++ + if yyhl3602 { + yyb3602 = yyj3602 > l } else { - yyb3599 = r.CheckBreak() + yyb3602 = r.CheckBreak() } - if yyb3599 { + if yyb3602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45693,25 +45749,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.SinceTime == nil { x.SinceTime = new(pkg2_v1.Time) } - yym3608 := z.DecBinary() - _ = yym3608 + yym3611 := z.DecBinary() + _ = yym3611 if false { } else if z.HasExtensions() && z.DecExt(x.SinceTime) { - } else if yym3608 { + } else if yym3611 { z.DecBinaryUnmarshal(x.SinceTime) - } else if !yym3608 && z.IsJSONHandle() { + } else if !yym3611 && z.IsJSONHandle() { z.DecJSONUnmarshal(x.SinceTime) } else { z.DecFallback(x.SinceTime, false) } } - yyj3599++ - if yyhl3599 { - yyb3599 = yyj3599 > l + yyj3602++ + if yyhl3602 { + yyb3602 = yyj3602 > l } else { - yyb3599 = r.CheckBreak() + yyb3602 = r.CheckBreak() } - if yyb3599 { + if yyb3602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45721,13 +45777,13 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Timestamps = bool(r.DecodeBool()) } - yyj3599++ - if yyhl3599 { - yyb3599 = yyj3599 > l + yyj3602++ + if yyhl3602 { + yyb3602 = yyj3602 > l } else { - yyb3599 = r.CheckBreak() + yyb3602 = r.CheckBreak() } - if yyb3599 { + if yyb3602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45740,20 +45796,20 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.TailLines == nil { x.TailLines = new(int64) } - yym3611 := z.DecBinary() - _ = yym3611 + yym3614 := z.DecBinary() + _ = yym3614 if false { } else { *((*int64)(x.TailLines)) = int64(r.DecodeInt(64)) } } - yyj3599++ - if yyhl3599 { - yyb3599 = yyj3599 > l + yyj3602++ + if yyhl3602 { + yyb3602 = yyj3602 > l } else { - yyb3599 = r.CheckBreak() + yyb3602 = r.CheckBreak() } - if yyb3599 { + if yyb3602 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -45766,25 +45822,25 @@ func (x *PodLogOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if x.LimitBytes == nil { x.LimitBytes = new(int64) } - yym3613 := z.DecBinary() - _ = yym3613 + yym3616 := z.DecBinary() + _ = yym3616 if false { } else { *((*int64)(x.LimitBytes)) = int64(r.DecodeInt(64)) } } for { - yyj3599++ - if yyhl3599 { - yyb3599 = yyj3599 > l + yyj3602++ + if yyhl3602 { + yyb3602 = yyj3602 > l } else { - yyb3599 = r.CheckBreak() + yyb3602 = r.CheckBreak() } - if yyb3599 { + if yyb3602 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3599-1, "") + z.DecStructFieldNotFound(yyj3602-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -45796,166 +45852,166 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3614 := z.EncBinary() - _ = yym3614 + yym3617 := z.EncBinary() + _ = yym3617 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3615 := !z.EncBinary() - yy2arr3615 := z.EncBasicHandle().StructToArray - var yyq3615 [7]bool - _, _, _ = yysep3615, yyq3615, yy2arr3615 - const yyr3615 bool = false - yyq3615[0] = x.Kind != "" - yyq3615[1] = x.APIVersion != "" - yyq3615[2] = x.Stdin != false - yyq3615[3] = x.Stdout != false - yyq3615[4] = x.Stderr != false - yyq3615[5] = x.TTY != false - yyq3615[6] = x.Container != "" - var yynn3615 int - if yyr3615 || yy2arr3615 { + yysep3618 := !z.EncBinary() + yy2arr3618 := z.EncBasicHandle().StructToArray + var yyq3618 [7]bool + _, _, _ = yysep3618, yyq3618, yy2arr3618 + const yyr3618 bool = false + yyq3618[0] = x.Kind != "" + yyq3618[1] = x.APIVersion != "" + yyq3618[2] = x.Stdin != false + yyq3618[3] = x.Stdout != false + yyq3618[4] = x.Stderr != false + yyq3618[5] = x.TTY != false + yyq3618[6] = x.Container != "" + var yynn3618 int + if yyr3618 || yy2arr3618 { r.EncodeArrayStart(7) } else { - yynn3615 = 0 - for _, b := range yyq3615 { + yynn3618 = 0 + for _, b := range yyq3618 { if b { - yynn3615++ + yynn3618++ } } - r.EncodeMapStart(yynn3615) - yynn3615 = 0 + r.EncodeMapStart(yynn3618) + yynn3618 = 0 } - if yyr3615 || yy2arr3615 { + if yyr3618 || yy2arr3618 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3615[0] { - yym3617 := z.EncBinary() - _ = yym3617 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3615[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3618 := z.EncBinary() - _ = yym3618 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3615 || yy2arr3615 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3615[1] { + if yyq3618[0] { yym3620 := z.EncBinary() _ = yym3620 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3615[1] { + if yyq3618[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3621 := z.EncBinary() _ = yym3621 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3615 || yy2arr3615 { + if yyr3618 || yy2arr3618 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3615[2] { + if yyq3618[1] { yym3623 := z.EncBinary() _ = yym3623 if false { } else { - r.EncodeBool(bool(x.Stdin)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } else { - r.EncodeBool(false) + r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3615[2] { + if yyq3618[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stdin")) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3624 := z.EncBinary() _ = yym3624 if false { } else { - r.EncodeBool(bool(x.Stdin)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3615 || yy2arr3615 { + if yyr3618 || yy2arr3618 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3615[3] { + if yyq3618[2] { yym3626 := z.EncBinary() _ = yym3626 if false { } else { - r.EncodeBool(bool(x.Stdout)) + r.EncodeBool(bool(x.Stdin)) } } else { r.EncodeBool(false) } } else { - if yyq3615[3] { + if yyq3618[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stdout")) + r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3627 := z.EncBinary() _ = yym3627 if false { } else { - r.EncodeBool(bool(x.Stdout)) + r.EncodeBool(bool(x.Stdin)) } } } - if yyr3615 || yy2arr3615 { + if yyr3618 || yy2arr3618 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3615[4] { + if yyq3618[3] { yym3629 := z.EncBinary() _ = yym3629 if false { } else { - r.EncodeBool(bool(x.Stderr)) + r.EncodeBool(bool(x.Stdout)) } } else { r.EncodeBool(false) } } else { - if yyq3615[4] { + if yyq3618[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stderr")) + r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3630 := z.EncBinary() _ = yym3630 if false { + } else { + r.EncodeBool(bool(x.Stdout)) + } + } + } + if yyr3618 || yy2arr3618 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3618[4] { + yym3632 := z.EncBinary() + _ = yym3632 + if false { + } else { + r.EncodeBool(bool(x.Stderr)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq3618[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stderr")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3633 := z.EncBinary() + _ = yym3633 + if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3615 || yy2arr3615 { + if yyr3618 || yy2arr3618 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3615[5] { - yym3632 := z.EncBinary() - _ = yym3632 + if yyq3618[5] { + yym3635 := z.EncBinary() + _ = yym3635 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -45964,23 +46020,23 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3615[5] { + if yyq3618[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3633 := z.EncBinary() - _ = yym3633 + yym3636 := z.EncBinary() + _ = yym3636 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3615 || yy2arr3615 { + if yyr3618 || yy2arr3618 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3615[6] { - yym3635 := z.EncBinary() - _ = yym3635 + if yyq3618[6] { + yym3638 := z.EncBinary() + _ = yym3638 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -45989,19 +46045,19 @@ func (x *PodAttachOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3615[6] { + if yyq3618[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3636 := z.EncBinary() - _ = yym3636 + yym3639 := z.EncBinary() + _ = yym3639 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3615 || yy2arr3615 { + if yyr3618 || yy2arr3618 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46014,25 +46070,25 @@ func (x *PodAttachOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3637 := z.DecBinary() - _ = yym3637 + yym3640 := z.DecBinary() + _ = yym3640 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3638 := r.ContainerType() - if yyct3638 == codecSelferValueTypeMap1234 { - yyl3638 := r.ReadMapStart() - if yyl3638 == 0 { + yyct3641 := r.ContainerType() + if yyct3641 == codecSelferValueTypeMap1234 { + yyl3641 := r.ReadMapStart() + if yyl3641 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3638, d) + x.codecDecodeSelfFromMap(yyl3641, d) } - } else if yyct3638 == codecSelferValueTypeArray1234 { - yyl3638 := r.ReadArrayStart() - if yyl3638 == 0 { + } else if yyct3641 == codecSelferValueTypeArray1234 { + yyl3641 := r.ReadArrayStart() + if yyl3641 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3638, d) + x.codecDecodeSelfFromArray(yyl3641, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46044,12 +46100,12 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3639Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3639Slc - var yyhl3639 bool = l >= 0 - for yyj3639 := 0; ; yyj3639++ { - if yyhl3639 { - if yyj3639 >= l { + var yys3642Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3642Slc + var yyhl3642 bool = l >= 0 + for yyj3642 := 0; ; yyj3642++ { + if yyhl3642 { + if yyj3642 >= l { break } } else { @@ -46058,10 +46114,10 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3639Slc = r.DecodeBytes(yys3639Slc, true, true) - yys3639 := string(yys3639Slc) + yys3642Slc = r.DecodeBytes(yys3642Slc, true, true) + yys3642 := string(yys3642Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3639 { + switch yys3642 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46105,9 +46161,9 @@ func (x *PodAttachOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Container = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3639) - } // end switch yys3639 - } // end for yyj3639 + z.DecStructFieldNotFound(-1, yys3642) + } // end switch yys3642 + } // end for yyj3642 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46115,16 +46171,16 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3647 int - var yyb3647 bool - var yyhl3647 bool = l >= 0 - yyj3647++ - if yyhl3647 { - yyb3647 = yyj3647 > l + var yyj3650 int + var yyb3650 bool + var yyhl3650 bool = l >= 0 + yyj3650++ + if yyhl3650 { + yyb3650 = yyj3650 > l } else { - yyb3647 = r.CheckBreak() + yyb3650 = r.CheckBreak() } - if yyb3647 { + if yyb3650 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46134,13 +46190,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3647++ - if yyhl3647 { - yyb3647 = yyj3647 > l + yyj3650++ + if yyhl3650 { + yyb3650 = yyj3650 > l } else { - yyb3647 = r.CheckBreak() + yyb3650 = r.CheckBreak() } - if yyb3647 { + if yyb3650 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46150,13 +46206,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3647++ - if yyhl3647 { - yyb3647 = yyj3647 > l + yyj3650++ + if yyhl3650 { + yyb3650 = yyj3650 > l } else { - yyb3647 = r.CheckBreak() + yyb3650 = r.CheckBreak() } - if yyb3647 { + if yyb3650 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46166,13 +46222,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdin = bool(r.DecodeBool()) } - yyj3647++ - if yyhl3647 { - yyb3647 = yyj3647 > l + yyj3650++ + if yyhl3650 { + yyb3650 = yyj3650 > l } else { - yyb3647 = r.CheckBreak() + yyb3650 = r.CheckBreak() } - if yyb3647 { + if yyb3650 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46182,13 +46238,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stdout = bool(r.DecodeBool()) } - yyj3647++ - if yyhl3647 { - yyb3647 = yyj3647 > l + yyj3650++ + if yyhl3650 { + yyb3650 = yyj3650 > l } else { - yyb3647 = r.CheckBreak() + yyb3650 = r.CheckBreak() } - if yyb3647 { + if yyb3650 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46198,13 +46254,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Stderr = bool(r.DecodeBool()) } - yyj3647++ - if yyhl3647 { - yyb3647 = yyj3647 > l + yyj3650++ + if yyhl3650 { + yyb3650 = yyj3650 > l } else { - yyb3647 = r.CheckBreak() + yyb3650 = r.CheckBreak() } - if yyb3647 { + if yyb3650 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46214,13 +46270,13 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.TTY = bool(r.DecodeBool()) } - yyj3647++ - if yyhl3647 { - yyb3647 = yyj3647 > l + yyj3650++ + if yyhl3650 { + yyb3650 = yyj3650 > l } else { - yyb3647 = r.CheckBreak() + yyb3650 = r.CheckBreak() } - if yyb3647 { + if yyb3650 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46231,17 +46287,17 @@ func (x *PodAttachOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Container = string(r.DecodeString()) } for { - yyj3647++ - if yyhl3647 { - yyb3647 = yyj3647 > l + yyj3650++ + if yyhl3650 { + yyb3650 = yyj3650 > l } else { - yyb3647 = r.CheckBreak() + yyb3650 = r.CheckBreak() } - if yyb3647 { + if yyb3650 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3647-1, "") + z.DecStructFieldNotFound(yyj3650-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46253,166 +46309,166 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3655 := z.EncBinary() - _ = yym3655 + yym3658 := z.EncBinary() + _ = yym3658 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3656 := !z.EncBinary() - yy2arr3656 := z.EncBasicHandle().StructToArray - var yyq3656 [8]bool - _, _, _ = yysep3656, yyq3656, yy2arr3656 - const yyr3656 bool = false - yyq3656[0] = x.Kind != "" - yyq3656[1] = x.APIVersion != "" - yyq3656[2] = x.Stdin != false - yyq3656[3] = x.Stdout != false - yyq3656[4] = x.Stderr != false - yyq3656[5] = x.TTY != false - yyq3656[6] = x.Container != "" - var yynn3656 int - if yyr3656 || yy2arr3656 { + yysep3659 := !z.EncBinary() + yy2arr3659 := z.EncBasicHandle().StructToArray + var yyq3659 [8]bool + _, _, _ = yysep3659, yyq3659, yy2arr3659 + const yyr3659 bool = false + yyq3659[0] = x.Kind != "" + yyq3659[1] = x.APIVersion != "" + yyq3659[2] = x.Stdin != false + yyq3659[3] = x.Stdout != false + yyq3659[4] = x.Stderr != false + yyq3659[5] = x.TTY != false + yyq3659[6] = x.Container != "" + var yynn3659 int + if yyr3659 || yy2arr3659 { r.EncodeArrayStart(8) } else { - yynn3656 = 1 - for _, b := range yyq3656 { + yynn3659 = 1 + for _, b := range yyq3659 { if b { - yynn3656++ + yynn3659++ } } - r.EncodeMapStart(yynn3656) - yynn3656 = 0 + r.EncodeMapStart(yynn3659) + yynn3659 = 0 } - if yyr3656 || yy2arr3656 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3656[0] { - yym3658 := z.EncBinary() - _ = yym3658 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3656[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3659 := z.EncBinary() - _ = yym3659 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3656 || yy2arr3656 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3656[1] { + if yyq3659[0] { yym3661 := z.EncBinary() _ = yym3661 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3656[1] { + if yyq3659[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3662 := z.EncBinary() _ = yym3662 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3656 || yy2arr3656 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3656[2] { + if yyq3659[1] { yym3664 := z.EncBinary() _ = yym3664 if false { } else { - r.EncodeBool(bool(x.Stdin)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } else { - r.EncodeBool(false) + r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3656[2] { + if yyq3659[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stdin")) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3665 := z.EncBinary() _ = yym3665 if false { } else { - r.EncodeBool(bool(x.Stdin)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3656 || yy2arr3656 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3656[3] { + if yyq3659[2] { yym3667 := z.EncBinary() _ = yym3667 if false { } else { - r.EncodeBool(bool(x.Stdout)) + r.EncodeBool(bool(x.Stdin)) } } else { r.EncodeBool(false) } } else { - if yyq3656[3] { + if yyq3659[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stdout")) + r.EncodeString(codecSelferC_UTF81234, string("stdin")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3668 := z.EncBinary() _ = yym3668 if false { } else { - r.EncodeBool(bool(x.Stdout)) + r.EncodeBool(bool(x.Stdin)) } } } - if yyr3656 || yy2arr3656 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3656[4] { + if yyq3659[3] { yym3670 := z.EncBinary() _ = yym3670 if false { } else { - r.EncodeBool(bool(x.Stderr)) + r.EncodeBool(bool(x.Stdout)) } } else { r.EncodeBool(false) } } else { - if yyq3656[4] { + if yyq3659[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("stderr")) + r.EncodeString(codecSelferC_UTF81234, string("stdout")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3671 := z.EncBinary() _ = yym3671 if false { + } else { + r.EncodeBool(bool(x.Stdout)) + } + } + } + if yyr3659 || yy2arr3659 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3659[4] { + yym3673 := z.EncBinary() + _ = yym3673 + if false { + } else { + r.EncodeBool(bool(x.Stderr)) + } + } else { + r.EncodeBool(false) + } + } else { + if yyq3659[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("stderr")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3674 := z.EncBinary() + _ = yym3674 + if false { } else { r.EncodeBool(bool(x.Stderr)) } } } - if yyr3656 || yy2arr3656 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3656[5] { - yym3673 := z.EncBinary() - _ = yym3673 + if yyq3659[5] { + yym3676 := z.EncBinary() + _ = yym3676 if false { } else { r.EncodeBool(bool(x.TTY)) @@ -46421,23 +46477,23 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(false) } } else { - if yyq3656[5] { + if yyq3659[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("tty")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3674 := z.EncBinary() - _ = yym3674 + yym3677 := z.EncBinary() + _ = yym3677 if false { } else { r.EncodeBool(bool(x.TTY)) } } } - if yyr3656 || yy2arr3656 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3656[6] { - yym3676 := z.EncBinary() - _ = yym3676 + if yyq3659[6] { + yym3679 := z.EncBinary() + _ = yym3679 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) @@ -46446,25 +46502,25 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3656[6] { + if yyq3659[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("container")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3677 := z.EncBinary() - _ = yym3677 + yym3680 := z.EncBinary() + _ = yym3680 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Container)) } } } - if yyr3656 || yy2arr3656 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Command == nil { r.EncodeNil() } else { - yym3679 := z.EncBinary() - _ = yym3679 + yym3682 := z.EncBinary() + _ = yym3682 if false { } else { z.F.EncSliceStringV(x.Command, false, e) @@ -46477,15 +46533,15 @@ func (x *PodExecOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x.Command == nil { r.EncodeNil() } else { - yym3680 := z.EncBinary() - _ = yym3680 + yym3683 := z.EncBinary() + _ = yym3683 if false { } else { z.F.EncSliceStringV(x.Command, false, e) } } } - if yyr3656 || yy2arr3656 { + if yyr3659 || yy2arr3659 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46498,25 +46554,25 @@ func (x *PodExecOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3681 := z.DecBinary() - _ = yym3681 + yym3684 := z.DecBinary() + _ = yym3684 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3682 := r.ContainerType() - if yyct3682 == codecSelferValueTypeMap1234 { - yyl3682 := r.ReadMapStart() - if yyl3682 == 0 { + yyct3685 := r.ContainerType() + if yyct3685 == codecSelferValueTypeMap1234 { + yyl3685 := r.ReadMapStart() + if yyl3685 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3682, d) + x.codecDecodeSelfFromMap(yyl3685, d) } - } else if yyct3682 == codecSelferValueTypeArray1234 { - yyl3682 := r.ReadArrayStart() - if yyl3682 == 0 { + } else if yyct3685 == codecSelferValueTypeArray1234 { + yyl3685 := r.ReadArrayStart() + if yyl3685 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3682, d) + x.codecDecodeSelfFromArray(yyl3685, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46528,12 +46584,12 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3683Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3683Slc - var yyhl3683 bool = l >= 0 - for yyj3683 := 0; ; yyj3683++ { - if yyhl3683 { - if yyj3683 >= l { + var yys3686Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3686Slc + var yyhl3686 bool = l >= 0 + for yyj3686 := 0; ; yyj3686++ { + if yyhl3686 { + if yyj3686 >= l { break } } else { @@ -46542,10 +46598,10 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3683Slc = r.DecodeBytes(yys3683Slc, true, true) - yys3683 := string(yys3683Slc) + yys3686Slc = r.DecodeBytes(yys3686Slc, true, true) + yys3686 := string(yys3686Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3683 { + switch yys3686 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46592,18 +46648,18 @@ func (x *PodExecOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3691 := &x.Command - yym3692 := z.DecBinary() - _ = yym3692 + yyv3694 := &x.Command + yym3695 := z.DecBinary() + _ = yym3695 if false { } else { - z.F.DecSliceStringX(yyv3691, false, d) + z.F.DecSliceStringX(yyv3694, false, d) } } default: - z.DecStructFieldNotFound(-1, yys3683) - } // end switch yys3683 - } // end for yyj3683 + z.DecStructFieldNotFound(-1, yys3686) + } // end switch yys3686 + } // end for yyj3686 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46611,16 +46667,16 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3693 int - var yyb3693 bool - var yyhl3693 bool = l >= 0 - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + var yyj3696 int + var yyb3696 bool + var yyhl3696 bool = l >= 0 + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3693 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3693 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46630,13 +46686,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3693 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3693 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46646,13 +46702,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3693 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3693 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46662,13 +46718,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdin = bool(r.DecodeBool()) } - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3693 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3693 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46678,13 +46734,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stdout = bool(r.DecodeBool()) } - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3693 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3693 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46694,13 +46750,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Stderr = bool(r.DecodeBool()) } - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3693 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3693 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46710,13 +46766,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.TTY = bool(r.DecodeBool()) } - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3693 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3693 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46726,13 +46782,13 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Container = string(r.DecodeString()) } - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3693 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3693 { + if yyb3696 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46740,26 +46796,26 @@ func (x *PodExecOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Command = nil } else { - yyv3701 := &x.Command - yym3702 := z.DecBinary() - _ = yym3702 + yyv3704 := &x.Command + yym3705 := z.DecBinary() + _ = yym3705 if false { } else { - z.F.DecSliceStringX(yyv3701, false, d) + z.F.DecSliceStringX(yyv3704, false, d) } } for { - yyj3693++ - if yyhl3693 { - yyb3693 = yyj3693 > l + yyj3696++ + if yyhl3696 { + yyb3696 = yyj3696 > l } else { - yyb3693 = r.CheckBreak() + yyb3696 = r.CheckBreak() } - if yyb3693 { + if yyb3696 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3693-1, "") + z.DecStructFieldNotFound(yyj3696-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -46771,87 +46827,87 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3703 := z.EncBinary() - _ = yym3703 + yym3706 := z.EncBinary() + _ = yym3706 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3704 := !z.EncBinary() - yy2arr3704 := z.EncBasicHandle().StructToArray - var yyq3704 [3]bool - _, _, _ = yysep3704, yyq3704, yy2arr3704 - const yyr3704 bool = false - yyq3704[0] = x.Kind != "" - yyq3704[1] = x.APIVersion != "" - yyq3704[2] = x.Path != "" - var yynn3704 int - if yyr3704 || yy2arr3704 { + yysep3707 := !z.EncBinary() + yy2arr3707 := z.EncBasicHandle().StructToArray + var yyq3707 [3]bool + _, _, _ = yysep3707, yyq3707, yy2arr3707 + const yyr3707 bool = false + yyq3707[0] = x.Kind != "" + yyq3707[1] = x.APIVersion != "" + yyq3707[2] = x.Path != "" + var yynn3707 int + if yyr3707 || yy2arr3707 { r.EncodeArrayStart(3) } else { - yynn3704 = 0 - for _, b := range yyq3704 { + yynn3707 = 0 + for _, b := range yyq3707 { if b { - yynn3704++ + yynn3707++ } } - r.EncodeMapStart(yynn3704) - yynn3704 = 0 + r.EncodeMapStart(yynn3707) + yynn3707 = 0 } - if yyr3704 || yy2arr3704 { + if yyr3707 || yy2arr3707 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3704[0] { - yym3706 := z.EncBinary() - _ = yym3706 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3704[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3707 := z.EncBinary() - _ = yym3707 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3704 || yy2arr3704 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3704[1] { + if yyq3707[0] { yym3709 := z.EncBinary() _ = yym3709 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3704[1] { + if yyq3707[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3710 := z.EncBinary() _ = yym3710 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3707 || yy2arr3707 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3707[1] { + yym3712 := z.EncBinary() + _ = yym3712 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3707[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3713 := z.EncBinary() + _ = yym3713 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3704 || yy2arr3704 { + if yyr3707 || yy2arr3707 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3704[2] { - yym3712 := z.EncBinary() - _ = yym3712 + if yyq3707[2] { + yym3715 := z.EncBinary() + _ = yym3715 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -46860,19 +46916,19 @@ func (x *PodProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3704[2] { + if yyq3707[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3713 := z.EncBinary() - _ = yym3713 + yym3716 := z.EncBinary() + _ = yym3716 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3704 || yy2arr3704 { + if yyr3707 || yy2arr3707 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -46885,25 +46941,25 @@ func (x *PodProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3714 := z.DecBinary() - _ = yym3714 + yym3717 := z.DecBinary() + _ = yym3717 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3715 := r.ContainerType() - if yyct3715 == codecSelferValueTypeMap1234 { - yyl3715 := r.ReadMapStart() - if yyl3715 == 0 { + yyct3718 := r.ContainerType() + if yyct3718 == codecSelferValueTypeMap1234 { + yyl3718 := r.ReadMapStart() + if yyl3718 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3715, d) + x.codecDecodeSelfFromMap(yyl3718, d) } - } else if yyct3715 == codecSelferValueTypeArray1234 { - yyl3715 := r.ReadArrayStart() - if yyl3715 == 0 { + } else if yyct3718 == codecSelferValueTypeArray1234 { + yyl3718 := r.ReadArrayStart() + if yyl3718 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3715, d) + x.codecDecodeSelfFromArray(yyl3718, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -46915,12 +46971,12 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3716Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3716Slc - var yyhl3716 bool = l >= 0 - for yyj3716 := 0; ; yyj3716++ { - if yyhl3716 { - if yyj3716 >= l { + var yys3719Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3719Slc + var yyhl3719 bool = l >= 0 + for yyj3719 := 0; ; yyj3719++ { + if yyhl3719 { + if yyj3719 >= l { break } } else { @@ -46929,10 +46985,10 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3716Slc = r.DecodeBytes(yys3716Slc, true, true) - yys3716 := string(yys3716Slc) + yys3719Slc = r.DecodeBytes(yys3719Slc, true, true) + yys3719 := string(yys3719Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3716 { + switch yys3719 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -46952,9 +47008,9 @@ func (x *PodProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3716) - } // end switch yys3716 - } // end for yyj3716 + z.DecStructFieldNotFound(-1, yys3719) + } // end switch yys3719 + } // end for yyj3719 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -46962,16 +47018,16 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3720 int - var yyb3720 bool - var yyhl3720 bool = l >= 0 - yyj3720++ - if yyhl3720 { - yyb3720 = yyj3720 > l + var yyj3723 int + var yyb3723 bool + var yyhl3723 bool = l >= 0 + yyj3723++ + if yyhl3723 { + yyb3723 = yyj3723 > l } else { - yyb3720 = r.CheckBreak() + yyb3723 = r.CheckBreak() } - if yyb3720 { + if yyb3723 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46981,13 +47037,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3720++ - if yyhl3720 { - yyb3720 = yyj3720 > l + yyj3723++ + if yyhl3723 { + yyb3723 = yyj3723 > l } else { - yyb3720 = r.CheckBreak() + yyb3723 = r.CheckBreak() } - if yyb3720 { + if yyb3723 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -46997,13 +47053,13 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3720++ - if yyhl3720 { - yyb3720 = yyj3720 > l + yyj3723++ + if yyhl3723 { + yyb3723 = yyj3723 > l } else { - yyb3720 = r.CheckBreak() + yyb3723 = r.CheckBreak() } - if yyb3720 { + if yyb3723 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47014,17 +47070,17 @@ func (x *PodProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3720++ - if yyhl3720 { - yyb3720 = yyj3720 > l + yyj3723++ + if yyhl3723 { + yyb3723 = yyj3723 > l } else { - yyb3720 = r.CheckBreak() + yyb3723 = r.CheckBreak() } - if yyb3720 { + if yyb3723 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3720-1, "") + z.DecStructFieldNotFound(yyj3723-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47036,87 +47092,87 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3724 := z.EncBinary() - _ = yym3724 + yym3727 := z.EncBinary() + _ = yym3727 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3725 := !z.EncBinary() - yy2arr3725 := z.EncBasicHandle().StructToArray - var yyq3725 [3]bool - _, _, _ = yysep3725, yyq3725, yy2arr3725 - const yyr3725 bool = false - yyq3725[0] = x.Kind != "" - yyq3725[1] = x.APIVersion != "" - yyq3725[2] = x.Path != "" - var yynn3725 int - if yyr3725 || yy2arr3725 { + yysep3728 := !z.EncBinary() + yy2arr3728 := z.EncBasicHandle().StructToArray + var yyq3728 [3]bool + _, _, _ = yysep3728, yyq3728, yy2arr3728 + const yyr3728 bool = false + yyq3728[0] = x.Kind != "" + yyq3728[1] = x.APIVersion != "" + yyq3728[2] = x.Path != "" + var yynn3728 int + if yyr3728 || yy2arr3728 { r.EncodeArrayStart(3) } else { - yynn3725 = 0 - for _, b := range yyq3725 { + yynn3728 = 0 + for _, b := range yyq3728 { if b { - yynn3725++ + yynn3728++ } } - r.EncodeMapStart(yynn3725) - yynn3725 = 0 + r.EncodeMapStart(yynn3728) + yynn3728 = 0 } - if yyr3725 || yy2arr3725 { + if yyr3728 || yy2arr3728 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3725[0] { - yym3727 := z.EncBinary() - _ = yym3727 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3725[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3728 := z.EncBinary() - _ = yym3728 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3725 || yy2arr3725 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3725[1] { + if yyq3728[0] { yym3730 := z.EncBinary() _ = yym3730 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3725[1] { + if yyq3728[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3731 := z.EncBinary() _ = yym3731 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3728 || yy2arr3728 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3728[1] { + yym3733 := z.EncBinary() + _ = yym3733 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3728[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3734 := z.EncBinary() + _ = yym3734 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3725 || yy2arr3725 { + if yyr3728 || yy2arr3728 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3725[2] { - yym3733 := z.EncBinary() - _ = yym3733 + if yyq3728[2] { + yym3736 := z.EncBinary() + _ = yym3736 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -47125,19 +47181,19 @@ func (x *NodeProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3725[2] { + if yyq3728[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3734 := z.EncBinary() - _ = yym3734 + yym3737 := z.EncBinary() + _ = yym3737 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3725 || yy2arr3725 { + if yyr3728 || yy2arr3728 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47150,25 +47206,25 @@ func (x *NodeProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3735 := z.DecBinary() - _ = yym3735 + yym3738 := z.DecBinary() + _ = yym3738 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3736 := r.ContainerType() - if yyct3736 == codecSelferValueTypeMap1234 { - yyl3736 := r.ReadMapStart() - if yyl3736 == 0 { + yyct3739 := r.ContainerType() + if yyct3739 == codecSelferValueTypeMap1234 { + yyl3739 := r.ReadMapStart() + if yyl3739 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3736, d) + x.codecDecodeSelfFromMap(yyl3739, d) } - } else if yyct3736 == codecSelferValueTypeArray1234 { - yyl3736 := r.ReadArrayStart() - if yyl3736 == 0 { + } else if yyct3739 == codecSelferValueTypeArray1234 { + yyl3739 := r.ReadArrayStart() + if yyl3739 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3736, d) + x.codecDecodeSelfFromArray(yyl3739, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47180,12 +47236,12 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3737Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3737Slc - var yyhl3737 bool = l >= 0 - for yyj3737 := 0; ; yyj3737++ { - if yyhl3737 { - if yyj3737 >= l { + var yys3740Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3740Slc + var yyhl3740 bool = l >= 0 + for yyj3740 := 0; ; yyj3740++ { + if yyhl3740 { + if yyj3740 >= l { break } } else { @@ -47194,10 +47250,10 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3737Slc = r.DecodeBytes(yys3737Slc, true, true) - yys3737 := string(yys3737Slc) + yys3740Slc = r.DecodeBytes(yys3740Slc, true, true) + yys3740 := string(yys3740Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3737 { + switch yys3740 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47217,9 +47273,9 @@ func (x *NodeProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3737) - } // end switch yys3737 - } // end for yyj3737 + z.DecStructFieldNotFound(-1, yys3740) + } // end switch yys3740 + } // end for yyj3740 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47227,16 +47283,16 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3741 int - var yyb3741 bool - var yyhl3741 bool = l >= 0 - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + var yyj3744 int + var yyb3744 bool + var yyhl3744 bool = l >= 0 + yyj3744++ + if yyhl3744 { + yyb3744 = yyj3744 > l } else { - yyb3741 = r.CheckBreak() + yyb3744 = r.CheckBreak() } - if yyb3741 { + if yyb3744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47246,13 +47302,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3744++ + if yyhl3744 { + yyb3744 = yyj3744 > l } else { - yyb3741 = r.CheckBreak() + yyb3744 = r.CheckBreak() } - if yyb3741 { + if yyb3744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47262,13 +47318,13 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3744++ + if yyhl3744 { + yyb3744 = yyj3744 > l } else { - yyb3741 = r.CheckBreak() + yyb3744 = r.CheckBreak() } - if yyb3741 { + if yyb3744 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47279,17 +47335,17 @@ func (x *NodeProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.Path = string(r.DecodeString()) } for { - yyj3741++ - if yyhl3741 { - yyb3741 = yyj3741 > l + yyj3744++ + if yyhl3744 { + yyb3744 = yyj3744 > l } else { - yyb3741 = r.CheckBreak() + yyb3744 = r.CheckBreak() } - if yyb3741 { + if yyb3744 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3741-1, "") + z.DecStructFieldNotFound(yyj3744-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47301,87 +47357,87 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3745 := z.EncBinary() - _ = yym3745 + yym3748 := z.EncBinary() + _ = yym3748 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3746 := !z.EncBinary() - yy2arr3746 := z.EncBasicHandle().StructToArray - var yyq3746 [3]bool - _, _, _ = yysep3746, yyq3746, yy2arr3746 - const yyr3746 bool = false - yyq3746[0] = x.Kind != "" - yyq3746[1] = x.APIVersion != "" - yyq3746[2] = x.Path != "" - var yynn3746 int - if yyr3746 || yy2arr3746 { + yysep3749 := !z.EncBinary() + yy2arr3749 := z.EncBasicHandle().StructToArray + var yyq3749 [3]bool + _, _, _ = yysep3749, yyq3749, yy2arr3749 + const yyr3749 bool = false + yyq3749[0] = x.Kind != "" + yyq3749[1] = x.APIVersion != "" + yyq3749[2] = x.Path != "" + var yynn3749 int + if yyr3749 || yy2arr3749 { r.EncodeArrayStart(3) } else { - yynn3746 = 0 - for _, b := range yyq3746 { + yynn3749 = 0 + for _, b := range yyq3749 { if b { - yynn3746++ + yynn3749++ } } - r.EncodeMapStart(yynn3746) - yynn3746 = 0 + r.EncodeMapStart(yynn3749) + yynn3749 = 0 } - if yyr3746 || yy2arr3746 { + if yyr3749 || yy2arr3749 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3746[0] { - yym3748 := z.EncBinary() - _ = yym3748 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3746[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3749 := z.EncBinary() - _ = yym3749 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3746 || yy2arr3746 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3746[1] { + if yyq3749[0] { yym3751 := z.EncBinary() _ = yym3751 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3746[1] { + if yyq3749[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3752 := z.EncBinary() _ = yym3752 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3749 || yy2arr3749 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3749[1] { + yym3754 := z.EncBinary() + _ = yym3754 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3749[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3755 := z.EncBinary() + _ = yym3755 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3746 || yy2arr3746 { + if yyr3749 || yy2arr3749 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3746[2] { - yym3754 := z.EncBinary() - _ = yym3754 + if yyq3749[2] { + yym3757 := z.EncBinary() + _ = yym3757 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -47390,19 +47446,19 @@ func (x *ServiceProxyOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3746[2] { + if yyq3749[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3755 := z.EncBinary() - _ = yym3755 + yym3758 := z.EncBinary() + _ = yym3758 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } } - if yyr3746 || yy2arr3746 { + if yyr3749 || yy2arr3749 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47415,25 +47471,25 @@ func (x *ServiceProxyOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3756 := z.DecBinary() - _ = yym3756 + yym3759 := z.DecBinary() + _ = yym3759 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3757 := r.ContainerType() - if yyct3757 == codecSelferValueTypeMap1234 { - yyl3757 := r.ReadMapStart() - if yyl3757 == 0 { + yyct3760 := r.ContainerType() + if yyct3760 == codecSelferValueTypeMap1234 { + yyl3760 := r.ReadMapStart() + if yyl3760 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3757, d) + x.codecDecodeSelfFromMap(yyl3760, d) } - } else if yyct3757 == codecSelferValueTypeArray1234 { - yyl3757 := r.ReadArrayStart() - if yyl3757 == 0 { + } else if yyct3760 == codecSelferValueTypeArray1234 { + yyl3760 := r.ReadArrayStart() + if yyl3760 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3757, d) + x.codecDecodeSelfFromArray(yyl3760, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47445,12 +47501,12 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3758Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3758Slc - var yyhl3758 bool = l >= 0 - for yyj3758 := 0; ; yyj3758++ { - if yyhl3758 { - if yyj3758 >= l { + var yys3761Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3761Slc + var yyhl3761 bool = l >= 0 + for yyj3761 := 0; ; yyj3761++ { + if yyhl3761 { + if yyj3761 >= l { break } } else { @@ -47459,10 +47515,10 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3758Slc = r.DecodeBytes(yys3758Slc, true, true) - yys3758 := string(yys3758Slc) + yys3761Slc = r.DecodeBytes(yys3761Slc, true, true) + yys3761 := string(yys3761Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3758 { + switch yys3761 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47482,9 +47538,9 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder x.Path = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3758) - } // end switch yys3758 - } // end for yyj3758 + z.DecStructFieldNotFound(-1, yys3761) + } // end switch yys3761 + } // end for yyj3761 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47492,16 +47548,16 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3762 int - var yyb3762 bool - var yyhl3762 bool = l >= 0 - yyj3762++ - if yyhl3762 { - yyb3762 = yyj3762 > l + var yyj3765 int + var yyb3765 bool + var yyhl3765 bool = l >= 0 + yyj3765++ + if yyhl3765 { + yyb3765 = yyj3765 > l } else { - yyb3762 = r.CheckBreak() + yyb3765 = r.CheckBreak() } - if yyb3762 { + if yyb3765 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47511,13 +47567,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3762++ - if yyhl3762 { - yyb3762 = yyj3762 > l + yyj3765++ + if yyhl3765 { + yyb3765 = yyj3765 > l } else { - yyb3762 = r.CheckBreak() + yyb3765 = r.CheckBreak() } - if yyb3762 { + if yyb3765 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47527,13 +47583,13 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3762++ - if yyhl3762 { - yyb3762 = yyj3762 > l + yyj3765++ + if yyhl3765 { + yyb3765 = yyj3765 > l } else { - yyb3762 = r.CheckBreak() + yyb3765 = r.CheckBreak() } - if yyb3762 { + if yyb3765 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47544,17 +47600,17 @@ func (x *ServiceProxyOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decod x.Path = string(r.DecodeString()) } for { - yyj3762++ - if yyhl3762 { - yyb3762 = yyj3762 > l + yyj3765++ + if yyhl3765 { + yyb3765 = yyj3765 > l } else { - yyb3762 = r.CheckBreak() + yyb3765 = r.CheckBreak() } - if yyb3762 { + if yyb3765 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3762-1, "") + z.DecStructFieldNotFound(yyj3765-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -47566,193 +47622,193 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3766 := z.EncBinary() - _ = yym3766 + yym3769 := z.EncBinary() + _ = yym3769 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3767 := !z.EncBinary() - yy2arr3767 := z.EncBasicHandle().StructToArray - var yyq3767 [7]bool - _, _, _ = yysep3767, yyq3767, yy2arr3767 - const yyr3767 bool = false - yyq3767[0] = x.Kind != "" - yyq3767[1] = x.Namespace != "" - yyq3767[2] = x.Name != "" - yyq3767[3] = x.UID != "" - yyq3767[4] = x.APIVersion != "" - yyq3767[5] = x.ResourceVersion != "" - yyq3767[6] = x.FieldPath != "" - var yynn3767 int - if yyr3767 || yy2arr3767 { + yysep3770 := !z.EncBinary() + yy2arr3770 := z.EncBasicHandle().StructToArray + var yyq3770 [7]bool + _, _, _ = yysep3770, yyq3770, yy2arr3770 + const yyr3770 bool = false + yyq3770[0] = x.Kind != "" + yyq3770[1] = x.Namespace != "" + yyq3770[2] = x.Name != "" + yyq3770[3] = x.UID != "" + yyq3770[4] = x.APIVersion != "" + yyq3770[5] = x.ResourceVersion != "" + yyq3770[6] = x.FieldPath != "" + var yynn3770 int + if yyr3770 || yy2arr3770 { r.EncodeArrayStart(7) } else { - yynn3767 = 0 - for _, b := range yyq3767 { + yynn3770 = 0 + for _, b := range yyq3770 { if b { - yynn3767++ + yynn3770++ } } - r.EncodeMapStart(yynn3767) - yynn3767 = 0 + r.EncodeMapStart(yynn3770) + yynn3770 = 0 } - if yyr3767 || yy2arr3767 { + if yyr3770 || yy2arr3770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3767[0] { - yym3769 := z.EncBinary() - _ = yym3769 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3767[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3770 := z.EncBinary() - _ = yym3770 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3767 || yy2arr3767 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3767[1] { + if yyq3770[0] { yym3772 := z.EncBinary() _ = yym3772 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3767[1] { + if yyq3770[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("namespace")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3773 := z.EncBinary() _ = yym3773 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } } - if yyr3767 || yy2arr3767 { + if yyr3770 || yy2arr3770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3767[2] { + if yyq3770[1] { yym3775 := z.EncBinary() _ = yym3775 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3767[2] { + if yyq3770[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("name")) + r.EncodeString(codecSelferC_UTF81234, string("namespace")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3776 := z.EncBinary() _ = yym3776 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + r.EncodeString(codecSelferC_UTF81234, string(x.Namespace)) } } } - if yyr3767 || yy2arr3767 { + if yyr3770 || yy2arr3770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3767[3] { + if yyq3770[2] { yym3778 := z.EncBinary() _ = yym3778 if false { - } else if z.HasExtensions() && z.EncExt(x.UID) { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.UID)) + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3767[3] { + if yyq3770[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("uid")) + r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3779 := z.EncBinary() _ = yym3779 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Name)) + } + } + } + if yyr3770 || yy2arr3770 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3770[3] { + yym3781 := z.EncBinary() + _ = yym3781 + if false { + } else if z.HasExtensions() && z.EncExt(x.UID) { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.UID)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3770[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("uid")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3782 := z.EncBinary() + _ = yym3782 + if false { } else if z.HasExtensions() && z.EncExt(x.UID) { } else { r.EncodeString(codecSelferC_UTF81234, string(x.UID)) } } } - if yyr3767 || yy2arr3767 { + if yyr3770 || yy2arr3770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3767[4] { - yym3781 := z.EncBinary() - _ = yym3781 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3767[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3782 := z.EncBinary() - _ = yym3782 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) - } - } - } - if yyr3767 || yy2arr3767 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3767[5] { + if yyq3770[4] { yym3784 := z.EncBinary() _ = yym3784 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3767[5] { + if yyq3770[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3785 := z.EncBinary() _ = yym3785 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } + } + if yyr3770 || yy2arr3770 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3770[5] { + yym3787 := z.EncBinary() + _ = yym3787 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3770[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("resourceVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3788 := z.EncBinary() + _ = yym3788 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.ResourceVersion)) } } } - if yyr3767 || yy2arr3767 { + if yyr3770 || yy2arr3770 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3767[6] { - yym3787 := z.EncBinary() - _ = yym3787 + if yyq3770[6] { + yym3790 := z.EncBinary() + _ = yym3790 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) @@ -47761,19 +47817,19 @@ func (x *ObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3767[6] { + if yyq3770[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldPath")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3788 := z.EncBinary() - _ = yym3788 + yym3791 := z.EncBinary() + _ = yym3791 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.FieldPath)) } } } - if yyr3767 || yy2arr3767 { + if yyr3770 || yy2arr3770 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -47786,25 +47842,25 @@ func (x *ObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3789 := z.DecBinary() - _ = yym3789 + yym3792 := z.DecBinary() + _ = yym3792 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3790 := r.ContainerType() - if yyct3790 == codecSelferValueTypeMap1234 { - yyl3790 := r.ReadMapStart() - if yyl3790 == 0 { + yyct3793 := r.ContainerType() + if yyct3793 == codecSelferValueTypeMap1234 { + yyl3793 := r.ReadMapStart() + if yyl3793 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3790, d) + x.codecDecodeSelfFromMap(yyl3793, d) } - } else if yyct3790 == codecSelferValueTypeArray1234 { - yyl3790 := r.ReadArrayStart() - if yyl3790 == 0 { + } else if yyct3793 == codecSelferValueTypeArray1234 { + yyl3793 := r.ReadArrayStart() + if yyl3793 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3790, d) + x.codecDecodeSelfFromArray(yyl3793, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -47816,12 +47872,12 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3791Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3791Slc - var yyhl3791 bool = l >= 0 - for yyj3791 := 0; ; yyj3791++ { - if yyhl3791 { - if yyj3791 >= l { + var yys3794Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3794Slc + var yyhl3794 bool = l >= 0 + for yyj3794 := 0; ; yyj3794++ { + if yyhl3794 { + if yyj3794 >= l { break } } else { @@ -47830,10 +47886,10 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3791Slc = r.DecodeBytes(yys3791Slc, true, true) - yys3791 := string(yys3791Slc) + yys3794Slc = r.DecodeBytes(yys3794Slc, true, true) + yys3794 := string(yys3794Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3791 { + switch yys3794 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -47877,9 +47933,9 @@ func (x *ObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.FieldPath = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3791) - } // end switch yys3791 - } // end for yyj3791 + z.DecStructFieldNotFound(-1, yys3794) + } // end switch yys3794 + } // end for yyj3794 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -47887,16 +47943,16 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3799 int - var yyb3799 bool - var yyhl3799 bool = l >= 0 - yyj3799++ - if yyhl3799 { - yyb3799 = yyj3799 > l + var yyj3802 int + var yyb3802 bool + var yyhl3802 bool = l >= 0 + yyj3802++ + if yyhl3802 { + yyb3802 = yyj3802 > l } else { - yyb3799 = r.CheckBreak() + yyb3802 = r.CheckBreak() } - if yyb3799 { + if yyb3802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47906,13 +47962,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj3799++ - if yyhl3799 { - yyb3799 = yyj3799 > l + yyj3802++ + if yyhl3802 { + yyb3802 = yyj3802 > l } else { - yyb3799 = r.CheckBreak() + yyb3802 = r.CheckBreak() } - if yyb3799 { + if yyb3802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47922,13 +47978,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Namespace = string(r.DecodeString()) } - yyj3799++ - if yyhl3799 { - yyb3799 = yyj3799 > l + yyj3802++ + if yyhl3802 { + yyb3802 = yyj3802 > l } else { - yyb3799 = r.CheckBreak() + yyb3802 = r.CheckBreak() } - if yyb3799 { + if yyb3802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47938,13 +47994,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Name = string(r.DecodeString()) } - yyj3799++ - if yyhl3799 { - yyb3799 = yyj3799 > l + yyj3802++ + if yyhl3802 { + yyb3802 = yyj3802 > l } else { - yyb3799 = r.CheckBreak() + yyb3802 = r.CheckBreak() } - if yyb3799 { + if yyb3802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47954,13 +48010,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.UID = pkg1_types.UID(r.DecodeString()) } - yyj3799++ - if yyhl3799 { - yyb3799 = yyj3799 > l + yyj3802++ + if yyhl3802 { + yyb3802 = yyj3802 > l } else { - yyb3799 = r.CheckBreak() + yyb3802 = r.CheckBreak() } - if yyb3799 { + if yyb3802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47970,13 +48026,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj3799++ - if yyhl3799 { - yyb3799 = yyj3799 > l + yyj3802++ + if yyhl3802 { + yyb3802 = yyj3802 > l } else { - yyb3799 = r.CheckBreak() + yyb3802 = r.CheckBreak() } - if yyb3799 { + if yyb3802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -47986,13 +48042,13 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.ResourceVersion = string(r.DecodeString()) } - yyj3799++ - if yyhl3799 { - yyb3799 = yyj3799 > l + yyj3802++ + if yyhl3802 { + yyb3802 = yyj3802 > l } else { - yyb3799 = r.CheckBreak() + yyb3802 = r.CheckBreak() } - if yyb3799 { + if yyb3802 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48003,17 +48059,17 @@ func (x *ObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) x.FieldPath = string(r.DecodeString()) } for { - yyj3799++ - if yyhl3799 { - yyb3799 = yyj3799 > l + yyj3802++ + if yyhl3802 { + yyb3802 = yyj3802 > l } else { - yyb3799 = r.CheckBreak() + yyb3802 = r.CheckBreak() } - if yyb3799 { + if yyb3802 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3799-1, "") + z.DecStructFieldNotFound(yyj3802-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48025,35 +48081,35 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3807 := z.EncBinary() - _ = yym3807 + yym3810 := z.EncBinary() + _ = yym3810 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3808 := !z.EncBinary() - yy2arr3808 := z.EncBasicHandle().StructToArray - var yyq3808 [1]bool - _, _, _ = yysep3808, yyq3808, yy2arr3808 - const yyr3808 bool = false - yyq3808[0] = x.Name != "" - var yynn3808 int - if yyr3808 || yy2arr3808 { + yysep3811 := !z.EncBinary() + yy2arr3811 := z.EncBasicHandle().StructToArray + var yyq3811 [1]bool + _, _, _ = yysep3811, yyq3811, yy2arr3811 + const yyr3811 bool = false + yyq3811[0] = x.Name != "" + var yynn3811 int + if yyr3811 || yy2arr3811 { r.EncodeArrayStart(1) } else { - yynn3808 = 0 - for _, b := range yyq3808 { + yynn3811 = 0 + for _, b := range yyq3811 { if b { - yynn3808++ + yynn3811++ } } - r.EncodeMapStart(yynn3808) - yynn3808 = 0 + r.EncodeMapStart(yynn3811) + yynn3811 = 0 } - if yyr3808 || yy2arr3808 { + if yyr3811 || yy2arr3811 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3808[0] { - yym3810 := z.EncBinary() - _ = yym3810 + if yyq3811[0] { + yym3813 := z.EncBinary() + _ = yym3813 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) @@ -48062,19 +48118,19 @@ func (x *LocalObjectReference) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3808[0] { + if yyq3811[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("name")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3811 := z.EncBinary() - _ = yym3811 + yym3814 := z.EncBinary() + _ = yym3814 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Name)) } } } - if yyr3808 || yy2arr3808 { + if yyr3811 || yy2arr3811 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48087,25 +48143,25 @@ func (x *LocalObjectReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3812 := z.DecBinary() - _ = yym3812 + yym3815 := z.DecBinary() + _ = yym3815 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3813 := r.ContainerType() - if yyct3813 == codecSelferValueTypeMap1234 { - yyl3813 := r.ReadMapStart() - if yyl3813 == 0 { + yyct3816 := r.ContainerType() + if yyct3816 == codecSelferValueTypeMap1234 { + yyl3816 := r.ReadMapStart() + if yyl3816 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3813, d) + x.codecDecodeSelfFromMap(yyl3816, d) } - } else if yyct3813 == codecSelferValueTypeArray1234 { - yyl3813 := r.ReadArrayStart() - if yyl3813 == 0 { + } else if yyct3816 == codecSelferValueTypeArray1234 { + yyl3816 := r.ReadArrayStart() + if yyl3816 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3813, d) + x.codecDecodeSelfFromArray(yyl3816, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48117,12 +48173,12 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3814Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3814Slc - var yyhl3814 bool = l >= 0 - for yyj3814 := 0; ; yyj3814++ { - if yyhl3814 { - if yyj3814 >= l { + var yys3817Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3817Slc + var yyhl3817 bool = l >= 0 + for yyj3817 := 0; ; yyj3817++ { + if yyhl3817 { + if yyj3817 >= l { break } } else { @@ -48131,10 +48187,10 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3814Slc = r.DecodeBytes(yys3814Slc, true, true) - yys3814 := string(yys3814Slc) + yys3817Slc = r.DecodeBytes(yys3817Slc, true, true) + yys3817 := string(yys3817Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3814 { + switch yys3817 { case "name": if r.TryDecodeAsNil() { x.Name = "" @@ -48142,9 +48198,9 @@ func (x *LocalObjectReference) codecDecodeSelfFromMap(l int, d *codec1978.Decode x.Name = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3814) - } // end switch yys3814 - } // end for yyj3814 + z.DecStructFieldNotFound(-1, yys3817) + } // end switch yys3817 + } // end for yyj3817 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48152,16 +48208,16 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3816 int - var yyb3816 bool - var yyhl3816 bool = l >= 0 - yyj3816++ - if yyhl3816 { - yyb3816 = yyj3816 > l + var yyj3819 int + var yyb3819 bool + var yyhl3819 bool = l >= 0 + yyj3819++ + if yyhl3819 { + yyb3819 = yyj3819 > l } else { - yyb3816 = r.CheckBreak() + yyb3819 = r.CheckBreak() } - if yyb3816 { + if yyb3819 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48172,17 +48228,17 @@ func (x *LocalObjectReference) codecDecodeSelfFromArray(l int, d *codec1978.Deco x.Name = string(r.DecodeString()) } for { - yyj3816++ - if yyhl3816 { - yyb3816 = yyj3816 > l + yyj3819++ + if yyhl3819 { + yyb3819 = yyj3819 > l } else { - yyb3816 = r.CheckBreak() + yyb3819 = r.CheckBreak() } - if yyb3816 { + if yyb3819 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3816-1, "") + z.DecStructFieldNotFound(yyj3819-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48194,100 +48250,100 @@ func (x *SerializedReference) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3818 := z.EncBinary() - _ = yym3818 + yym3821 := z.EncBinary() + _ = yym3821 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3819 := !z.EncBinary() - yy2arr3819 := z.EncBasicHandle().StructToArray - var yyq3819 [3]bool - _, _, _ = yysep3819, yyq3819, yy2arr3819 - const yyr3819 bool = false - yyq3819[0] = x.Kind != "" - yyq3819[1] = x.APIVersion != "" - yyq3819[2] = true - var yynn3819 int - if yyr3819 || yy2arr3819 { + yysep3822 := !z.EncBinary() + yy2arr3822 := z.EncBasicHandle().StructToArray + var yyq3822 [3]bool + _, _, _ = yysep3822, yyq3822, yy2arr3822 + const yyr3822 bool = false + yyq3822[0] = x.Kind != "" + yyq3822[1] = x.APIVersion != "" + yyq3822[2] = true + var yynn3822 int + if yyr3822 || yy2arr3822 { r.EncodeArrayStart(3) } else { - yynn3819 = 0 - for _, b := range yyq3819 { + yynn3822 = 0 + for _, b := range yyq3822 { if b { - yynn3819++ + yynn3822++ } } - r.EncodeMapStart(yynn3819) - yynn3819 = 0 + r.EncodeMapStart(yynn3822) + yynn3822 = 0 } - if yyr3819 || yy2arr3819 { + if yyr3822 || yy2arr3822 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3819[0] { - yym3821 := z.EncBinary() - _ = yym3821 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3819[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3822 := z.EncBinary() - _ = yym3822 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3819 || yy2arr3819 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3819[1] { + if yyq3822[0] { yym3824 := z.EncBinary() _ = yym3824 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3819[1] { + if yyq3822[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3825 := z.EncBinary() _ = yym3825 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3822 || yy2arr3822 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3822[1] { + yym3827 := z.EncBinary() + _ = yym3827 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3822[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3828 := z.EncBinary() + _ = yym3828 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3819 || yy2arr3819 { + if yyr3822 || yy2arr3822 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3819[2] { - yy3827 := &x.Reference - yy3827.CodecEncodeSelf(e) + if yyq3822[2] { + yy3830 := &x.Reference + yy3830.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3819[2] { + if yyq3822[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("reference")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3828 := &x.Reference - yy3828.CodecEncodeSelf(e) + yy3831 := &x.Reference + yy3831.CodecEncodeSelf(e) } } - if yyr3819 || yy2arr3819 { + if yyr3822 || yy2arr3822 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48300,25 +48356,25 @@ func (x *SerializedReference) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3829 := z.DecBinary() - _ = yym3829 + yym3832 := z.DecBinary() + _ = yym3832 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3830 := r.ContainerType() - if yyct3830 == codecSelferValueTypeMap1234 { - yyl3830 := r.ReadMapStart() - if yyl3830 == 0 { + yyct3833 := r.ContainerType() + if yyct3833 == codecSelferValueTypeMap1234 { + yyl3833 := r.ReadMapStart() + if yyl3833 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3830, d) + x.codecDecodeSelfFromMap(yyl3833, d) } - } else if yyct3830 == codecSelferValueTypeArray1234 { - yyl3830 := r.ReadArrayStart() - if yyl3830 == 0 { + } else if yyct3833 == codecSelferValueTypeArray1234 { + yyl3833 := r.ReadArrayStart() + if yyl3833 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3830, d) + x.codecDecodeSelfFromArray(yyl3833, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48330,12 +48386,12 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3831Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3831Slc - var yyhl3831 bool = l >= 0 - for yyj3831 := 0; ; yyj3831++ { - if yyhl3831 { - if yyj3831 >= l { + var yys3834Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3834Slc + var yyhl3834 bool = l >= 0 + for yyj3834 := 0; ; yyj3834++ { + if yyhl3834 { + if yyj3834 >= l { break } } else { @@ -48344,10 +48400,10 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3831Slc = r.DecodeBytes(yys3831Slc, true, true) - yys3831 := string(yys3831Slc) + yys3834Slc = r.DecodeBytes(yys3834Slc, true, true) + yys3834 := string(yys3834Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3831 { + switch yys3834 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -48364,13 +48420,13 @@ func (x *SerializedReference) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3834 := &x.Reference - yyv3834.CodecDecodeSelf(d) + yyv3837 := &x.Reference + yyv3837.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys3831) - } // end switch yys3831 - } // end for yyj3831 + z.DecStructFieldNotFound(-1, yys3834) + } // end switch yys3834 + } // end for yyj3834 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48378,16 +48434,16 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3835 int - var yyb3835 bool - var yyhl3835 bool = l >= 0 - yyj3835++ - if yyhl3835 { - yyb3835 = yyj3835 > l + var yyj3838 int + var yyb3838 bool + var yyhl3838 bool = l >= 0 + yyj3838++ + if yyhl3838 { + yyb3838 = yyj3838 > l } else { - yyb3835 = r.CheckBreak() + yyb3838 = r.CheckBreak() } - if yyb3835 { + if yyb3838 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48397,13 +48453,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj3835++ - if yyhl3835 { - yyb3835 = yyj3835 > l + yyj3838++ + if yyhl3838 { + yyb3838 = yyj3838 > l } else { - yyb3835 = r.CheckBreak() + yyb3838 = r.CheckBreak() } - if yyb3835 { + if yyb3838 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48413,13 +48469,13 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj3835++ - if yyhl3835 { - yyb3835 = yyj3835 > l + yyj3838++ + if yyhl3838 { + yyb3838 = yyj3838 > l } else { - yyb3835 = r.CheckBreak() + yyb3838 = r.CheckBreak() } - if yyb3835 { + if yyb3838 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48427,21 +48483,21 @@ func (x *SerializedReference) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Reference = ObjectReference{} } else { - yyv3838 := &x.Reference - yyv3838.CodecDecodeSelf(d) + yyv3841 := &x.Reference + yyv3841.CodecDecodeSelf(d) } for { - yyj3835++ - if yyhl3835 { - yyb3835 = yyj3835 > l + yyj3838++ + if yyhl3838 { + yyb3838 = yyj3838 > l } else { - yyb3835 = r.CheckBreak() + yyb3838 = r.CheckBreak() } - if yyb3835 { + if yyb3838 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3835-1, "") + z.DecStructFieldNotFound(yyj3838-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48453,82 +48509,82 @@ func (x *EventSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3839 := z.EncBinary() - _ = yym3839 + yym3842 := z.EncBinary() + _ = yym3842 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3840 := !z.EncBinary() - yy2arr3840 := z.EncBasicHandle().StructToArray - var yyq3840 [2]bool - _, _, _ = yysep3840, yyq3840, yy2arr3840 - const yyr3840 bool = false - yyq3840[0] = x.Component != "" - yyq3840[1] = x.Host != "" - var yynn3840 int - if yyr3840 || yy2arr3840 { + yysep3843 := !z.EncBinary() + yy2arr3843 := z.EncBasicHandle().StructToArray + var yyq3843 [2]bool + _, _, _ = yysep3843, yyq3843, yy2arr3843 + const yyr3843 bool = false + yyq3843[0] = x.Component != "" + yyq3843[1] = x.Host != "" + var yynn3843 int + if yyr3843 || yy2arr3843 { r.EncodeArrayStart(2) } else { - yynn3840 = 0 - for _, b := range yyq3840 { + yynn3843 = 0 + for _, b := range yyq3843 { if b { - yynn3840++ + yynn3843++ } } - r.EncodeMapStart(yynn3840) - yynn3840 = 0 + r.EncodeMapStart(yynn3843) + yynn3843 = 0 } - if yyr3840 || yy2arr3840 { + if yyr3843 || yy2arr3843 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[0] { - yym3842 := z.EncBinary() - _ = yym3842 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Component)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3840[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("component")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3843 := z.EncBinary() - _ = yym3843 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Component)) - } - } - } - if yyr3840 || yy2arr3840 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3840[1] { + if yyq3843[0] { yym3845 := z.EncBinary() _ = yym3845 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Host)) + r.EncodeString(codecSelferC_UTF81234, string(x.Component)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3840[1] { + if yyq3843[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("host")) + r.EncodeString(codecSelferC_UTF81234, string("component")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3846 := z.EncBinary() _ = yym3846 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Component)) + } + } + } + if yyr3843 || yy2arr3843 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3843[1] { + yym3848 := z.EncBinary() + _ = yym3848 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Host)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3843[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("host")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3849 := z.EncBinary() + _ = yym3849 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Host)) } } } - if yyr3840 || yy2arr3840 { + if yyr3843 || yy2arr3843 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48541,25 +48597,25 @@ func (x *EventSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3847 := z.DecBinary() - _ = yym3847 + yym3850 := z.DecBinary() + _ = yym3850 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3848 := r.ContainerType() - if yyct3848 == codecSelferValueTypeMap1234 { - yyl3848 := r.ReadMapStart() - if yyl3848 == 0 { + yyct3851 := r.ContainerType() + if yyct3851 == codecSelferValueTypeMap1234 { + yyl3851 := r.ReadMapStart() + if yyl3851 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3848, d) + x.codecDecodeSelfFromMap(yyl3851, d) } - } else if yyct3848 == codecSelferValueTypeArray1234 { - yyl3848 := r.ReadArrayStart() - if yyl3848 == 0 { + } else if yyct3851 == codecSelferValueTypeArray1234 { + yyl3851 := r.ReadArrayStart() + if yyl3851 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3848, d) + x.codecDecodeSelfFromArray(yyl3851, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -48571,12 +48627,12 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3849Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3849Slc - var yyhl3849 bool = l >= 0 - for yyj3849 := 0; ; yyj3849++ { - if yyhl3849 { - if yyj3849 >= l { + var yys3852Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3852Slc + var yyhl3852 bool = l >= 0 + for yyj3852 := 0; ; yyj3852++ { + if yyhl3852 { + if yyj3852 >= l { break } } else { @@ -48585,10 +48641,10 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3849Slc = r.DecodeBytes(yys3849Slc, true, true) - yys3849 := string(yys3849Slc) + yys3852Slc = r.DecodeBytes(yys3852Slc, true, true) + yys3852 := string(yys3852Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3849 { + switch yys3852 { case "component": if r.TryDecodeAsNil() { x.Component = "" @@ -48602,9 +48658,9 @@ func (x *EventSource) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3849) - } // end switch yys3849 - } // end for yyj3849 + z.DecStructFieldNotFound(-1, yys3852) + } // end switch yys3852 + } // end for yyj3852 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -48612,16 +48668,16 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3852 int - var yyb3852 bool - var yyhl3852 bool = l >= 0 - yyj3852++ - if yyhl3852 { - yyb3852 = yyj3852 > l + var yyj3855 int + var yyb3855 bool + var yyhl3855 bool = l >= 0 + yyj3855++ + if yyhl3855 { + yyb3855 = yyj3855 > l } else { - yyb3852 = r.CheckBreak() + yyb3855 = r.CheckBreak() } - if yyb3852 { + if yyb3855 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48631,13 +48687,13 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Component = string(r.DecodeString()) } - yyj3852++ - if yyhl3852 { - yyb3852 = yyj3852 > l + yyj3855++ + if yyhl3855 { + yyb3855 = yyj3855 > l } else { - yyb3852 = r.CheckBreak() + yyb3855 = r.CheckBreak() } - if yyb3852 { + if yyb3855 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -48648,17 +48704,17 @@ func (x *EventSource) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Host = string(r.DecodeString()) } for { - yyj3852++ - if yyhl3852 { - yyb3852 = yyj3852 > l + yyj3855++ + if yyhl3855 { + yyb3855 = yyj3855 > l } else { - yyb3852 = r.CheckBreak() + yyb3855 = r.CheckBreak() } - if yyb3852 { + if yyb3855 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3852-1, "") + z.DecStructFieldNotFound(yyj3855-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -48670,218 +48726,201 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3855 := z.EncBinary() - _ = yym3855 + yym3858 := z.EncBinary() + _ = yym3858 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3856 := !z.EncBinary() - yy2arr3856 := z.EncBasicHandle().StructToArray - var yyq3856 [11]bool - _, _, _ = yysep3856, yyq3856, yy2arr3856 - const yyr3856 bool = false - yyq3856[0] = x.Kind != "" - yyq3856[1] = x.APIVersion != "" - yyq3856[4] = x.Reason != "" - yyq3856[5] = x.Message != "" - yyq3856[6] = true - yyq3856[7] = true - yyq3856[8] = true - yyq3856[9] = x.Count != 0 - yyq3856[10] = x.Type != "" - var yynn3856 int - if yyr3856 || yy2arr3856 { + yysep3859 := !z.EncBinary() + yy2arr3859 := z.EncBasicHandle().StructToArray + var yyq3859 [11]bool + _, _, _ = yysep3859, yyq3859, yy2arr3859 + const yyr3859 bool = false + yyq3859[0] = x.Kind != "" + yyq3859[1] = x.APIVersion != "" + yyq3859[4] = x.Reason != "" + yyq3859[5] = x.Message != "" + yyq3859[6] = true + yyq3859[7] = true + yyq3859[8] = true + yyq3859[9] = x.Count != 0 + yyq3859[10] = x.Type != "" + var yynn3859 int + if yyr3859 || yy2arr3859 { r.EncodeArrayStart(11) } else { - yynn3856 = 2 - for _, b := range yyq3856 { + yynn3859 = 2 + for _, b := range yyq3859 { if b { - yynn3856++ + yynn3859++ } } - r.EncodeMapStart(yynn3856) - yynn3856 = 0 + r.EncodeMapStart(yynn3859) + yynn3859 = 0 } - if yyr3856 || yy2arr3856 { + if yyr3859 || yy2arr3859 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3856[0] { - yym3858 := z.EncBinary() - _ = yym3858 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3856[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3859 := z.EncBinary() - _ = yym3859 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3856 || yy2arr3856 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3856[1] { + if yyq3859[0] { yym3861 := z.EncBinary() _ = yym3861 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3856[1] { + if yyq3859[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3862 := z.EncBinary() _ = yym3862 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3859 || yy2arr3859 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3859[1] { + yym3864 := z.EncBinary() + _ = yym3864 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3859[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3865 := z.EncBinary() + _ = yym3865 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3856 || yy2arr3856 { + if yyr3859 || yy2arr3859 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3864 := &x.ObjectMeta - yy3864.CodecEncodeSelf(e) + yy3867 := &x.ObjectMeta + yy3867.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3865 := &x.ObjectMeta - yy3865.CodecEncodeSelf(e) + yy3868 := &x.ObjectMeta + yy3868.CodecEncodeSelf(e) } - if yyr3856 || yy2arr3856 { + if yyr3859 || yy2arr3859 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy3867 := &x.InvolvedObject - yy3867.CodecEncodeSelf(e) + yy3870 := &x.InvolvedObject + yy3870.CodecEncodeSelf(e) } else { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("involvedObject")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3868 := &x.InvolvedObject - yy3868.CodecEncodeSelf(e) + yy3871 := &x.InvolvedObject + yy3871.CodecEncodeSelf(e) } - if yyr3856 || yy2arr3856 { + if yyr3859 || yy2arr3859 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3856[4] { - yym3870 := z.EncBinary() - _ = yym3870 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3856[4] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("reason")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3871 := z.EncBinary() - _ = yym3871 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) - } - } - } - if yyr3856 || yy2arr3856 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3856[5] { + if yyq3859[4] { yym3873 := z.EncBinary() _ = yym3873 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3856[5] { + if yyq3859[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) + r.EncodeString(codecSelferC_UTF81234, string("reason")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3874 := z.EncBinary() _ = yym3874 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Reason)) + } + } + } + if yyr3859 || yy2arr3859 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3859[5] { + yym3876 := z.EncBinary() + _ = yym3876 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3859[5] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("message")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3877 := z.EncBinary() + _ = yym3877 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } } - if yyr3856 || yy2arr3856 { + if yyr3859 || yy2arr3859 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3856[6] { - yy3876 := &x.Source - yy3876.CodecEncodeSelf(e) + if yyq3859[6] { + yy3879 := &x.Source + yy3879.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq3856[6] { + if yyq3859[6] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("source")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3877 := &x.Source - yy3877.CodecEncodeSelf(e) + yy3880 := &x.Source + yy3880.CodecEncodeSelf(e) } } - if yyr3856 || yy2arr3856 { + if yyr3859 || yy2arr3859 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3856[7] { - yy3879 := &x.FirstTimestamp - yym3880 := z.EncBinary() - _ = yym3880 + if yyq3859[7] { + yy3882 := &x.FirstTimestamp + yym3883 := z.EncBinary() + _ = yym3883 if false { - } else if z.HasExtensions() && z.EncExt(yy3879) { - } else if yym3880 { - z.EncBinaryMarshal(yy3879) - } else if !yym3880 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3879) + } else if z.HasExtensions() && z.EncExt(yy3882) { + } else if yym3883 { + z.EncBinaryMarshal(yy3882) + } else if !yym3883 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3882) } else { - z.EncFallback(yy3879) + z.EncFallback(yy3882) } } else { r.EncodeNil() } } else { - if yyq3856[7] { + if yyq3859[7] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("firstTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3881 := &x.FirstTimestamp - yym3882 := z.EncBinary() - _ = yym3882 - if false { - } else if z.HasExtensions() && z.EncExt(yy3881) { - } else if yym3882 { - z.EncBinaryMarshal(yy3881) - } else if !yym3882 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3881) - } else { - z.EncFallback(yy3881) - } - } - } - if yyr3856 || yy2arr3856 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3856[8] { - yy3884 := &x.LastTimestamp + yy3884 := &x.FirstTimestamp yym3885 := z.EncBinary() _ = yym3885 if false { @@ -48893,33 +48932,50 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { } else { z.EncFallback(yy3884) } + } + } + if yyr3859 || yy2arr3859 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3859[8] { + yy3887 := &x.LastTimestamp + yym3888 := z.EncBinary() + _ = yym3888 + if false { + } else if z.HasExtensions() && z.EncExt(yy3887) { + } else if yym3888 { + z.EncBinaryMarshal(yy3887) + } else if !yym3888 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3887) + } else { + z.EncFallback(yy3887) + } } else { r.EncodeNil() } } else { - if yyq3856[8] { + if yyq3859[8] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("lastTimestamp")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3886 := &x.LastTimestamp - yym3887 := z.EncBinary() - _ = yym3887 + yy3889 := &x.LastTimestamp + yym3890 := z.EncBinary() + _ = yym3890 if false { - } else if z.HasExtensions() && z.EncExt(yy3886) { - } else if yym3887 { - z.EncBinaryMarshal(yy3886) - } else if !yym3887 && z.IsJSONHandle() { - z.EncJSONMarshal(yy3886) + } else if z.HasExtensions() && z.EncExt(yy3889) { + } else if yym3890 { + z.EncBinaryMarshal(yy3889) + } else if !yym3890 && z.IsJSONHandle() { + z.EncJSONMarshal(yy3889) } else { - z.EncFallback(yy3886) + z.EncFallback(yy3889) } } } - if yyr3856 || yy2arr3856 { + if yyr3859 || yy2arr3859 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3856[9] { - yym3889 := z.EncBinary() - _ = yym3889 + if yyq3859[9] { + yym3892 := z.EncBinary() + _ = yym3892 if false { } else { r.EncodeInt(int64(x.Count)) @@ -48928,23 +48984,23 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeInt(0) } } else { - if yyq3856[9] { + if yyq3859[9] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("count")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3890 := z.EncBinary() - _ = yym3890 + yym3893 := z.EncBinary() + _ = yym3893 if false { } else { r.EncodeInt(int64(x.Count)) } } } - if yyr3856 || yy2arr3856 { + if yyr3859 || yy2arr3859 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3856[10] { - yym3892 := z.EncBinary() - _ = yym3892 + if yyq3859[10] { + yym3895 := z.EncBinary() + _ = yym3895 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) @@ -48953,19 +49009,19 @@ func (x *Event) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3856[10] { + if yyq3859[10] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3893 := z.EncBinary() - _ = yym3893 + yym3896 := z.EncBinary() + _ = yym3896 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr3856 || yy2arr3856 { + if yyr3859 || yy2arr3859 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -48978,25 +49034,25 @@ func (x *Event) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3894 := z.DecBinary() - _ = yym3894 + yym3897 := z.DecBinary() + _ = yym3897 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3895 := r.ContainerType() - if yyct3895 == codecSelferValueTypeMap1234 { - yyl3895 := r.ReadMapStart() - if yyl3895 == 0 { + yyct3898 := r.ContainerType() + if yyct3898 == codecSelferValueTypeMap1234 { + yyl3898 := r.ReadMapStart() + if yyl3898 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3895, d) + x.codecDecodeSelfFromMap(yyl3898, d) } - } else if yyct3895 == codecSelferValueTypeArray1234 { - yyl3895 := r.ReadArrayStart() - if yyl3895 == 0 { + } else if yyct3898 == codecSelferValueTypeArray1234 { + yyl3898 := r.ReadArrayStart() + if yyl3898 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3895, d) + x.codecDecodeSelfFromArray(yyl3898, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49008,12 +49064,12 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3896Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3896Slc - var yyhl3896 bool = l >= 0 - for yyj3896 := 0; ; yyj3896++ { - if yyhl3896 { - if yyj3896 >= l { + var yys3899Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3899Slc + var yyhl3899 bool = l >= 0 + for yyj3899 := 0; ; yyj3899++ { + if yyhl3899 { + if yyj3899 >= l { break } } else { @@ -49022,10 +49078,10 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3896Slc = r.DecodeBytes(yys3896Slc, true, true) - yys3896 := string(yys3896Slc) + yys3899Slc = r.DecodeBytes(yys3899Slc, true, true) + yys3899 := string(yys3899Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3896 { + switch yys3899 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49042,15 +49098,15 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3899 := &x.ObjectMeta - yyv3899.CodecDecodeSelf(d) + yyv3902 := &x.ObjectMeta + yyv3902.CodecDecodeSelf(d) } case "involvedObject": if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3900 := &x.InvolvedObject - yyv3900.CodecDecodeSelf(d) + yyv3903 := &x.InvolvedObject + yyv3903.CodecDecodeSelf(d) } case "reason": if r.TryDecodeAsNil() { @@ -49068,41 +49124,41 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3903 := &x.Source - yyv3903.CodecDecodeSelf(d) + yyv3906 := &x.Source + yyv3906.CodecDecodeSelf(d) } case "firstTimestamp": if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_v1.Time{} } else { - yyv3904 := &x.FirstTimestamp - yym3905 := z.DecBinary() - _ = yym3905 + yyv3907 := &x.FirstTimestamp + yym3908 := z.DecBinary() + _ = yym3908 if false { - } else if z.HasExtensions() && z.DecExt(yyv3904) { - } else if yym3905 { - z.DecBinaryUnmarshal(yyv3904) - } else if !yym3905 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3904) + } else if z.HasExtensions() && z.DecExt(yyv3907) { + } else if yym3908 { + z.DecBinaryUnmarshal(yyv3907) + } else if !yym3908 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3907) } else { - z.DecFallback(yyv3904, false) + z.DecFallback(yyv3907, false) } } case "lastTimestamp": if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_v1.Time{} } else { - yyv3906 := &x.LastTimestamp - yym3907 := z.DecBinary() - _ = yym3907 + yyv3909 := &x.LastTimestamp + yym3910 := z.DecBinary() + _ = yym3910 if false { - } else if z.HasExtensions() && z.DecExt(yyv3906) { - } else if yym3907 { - z.DecBinaryUnmarshal(yyv3906) - } else if !yym3907 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3906) + } else if z.HasExtensions() && z.DecExt(yyv3909) { + } else if yym3910 { + z.DecBinaryUnmarshal(yyv3909) + } else if !yym3910 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3909) } else { - z.DecFallback(yyv3906, false) + z.DecFallback(yyv3909, false) } } case "count": @@ -49118,9 +49174,9 @@ func (x *Event) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys3896) - } // end switch yys3896 - } // end for yyj3896 + z.DecStructFieldNotFound(-1, yys3899) + } // end switch yys3899 + } // end for yyj3899 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49128,16 +49184,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3910 int - var yyb3910 bool - var yyhl3910 bool = l >= 0 - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + var yyj3913 int + var yyb3913 bool + var yyhl3913 bool = l >= 0 + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49147,13 +49203,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49163,13 +49219,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49177,16 +49233,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv3913 := &x.ObjectMeta - yyv3913.CodecDecodeSelf(d) + yyv3916 := &x.ObjectMeta + yyv3916.CodecDecodeSelf(d) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49194,16 +49250,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.InvolvedObject = ObjectReference{} } else { - yyv3914 := &x.InvolvedObject - yyv3914.CodecDecodeSelf(d) + yyv3917 := &x.InvolvedObject + yyv3917.CodecDecodeSelf(d) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49213,13 +49269,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Reason = string(r.DecodeString()) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49229,13 +49285,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Message = string(r.DecodeString()) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49243,16 +49299,16 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Source = EventSource{} } else { - yyv3917 := &x.Source - yyv3917.CodecDecodeSelf(d) + yyv3920 := &x.Source + yyv3920.CodecDecodeSelf(d) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49260,26 +49316,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.FirstTimestamp = pkg2_v1.Time{} } else { - yyv3918 := &x.FirstTimestamp - yym3919 := z.DecBinary() - _ = yym3919 + yyv3921 := &x.FirstTimestamp + yym3922 := z.DecBinary() + _ = yym3922 if false { - } else if z.HasExtensions() && z.DecExt(yyv3918) { - } else if yym3919 { - z.DecBinaryUnmarshal(yyv3918) - } else if !yym3919 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3918) + } else if z.HasExtensions() && z.DecExt(yyv3921) { + } else if yym3922 { + z.DecBinaryUnmarshal(yyv3921) + } else if !yym3922 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3921) } else { - z.DecFallback(yyv3918, false) + z.DecFallback(yyv3921, false) } } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49287,26 +49343,26 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.LastTimestamp = pkg2_v1.Time{} } else { - yyv3920 := &x.LastTimestamp - yym3921 := z.DecBinary() - _ = yym3921 + yyv3923 := &x.LastTimestamp + yym3924 := z.DecBinary() + _ = yym3924 if false { - } else if z.HasExtensions() && z.DecExt(yyv3920) { - } else if yym3921 { - z.DecBinaryUnmarshal(yyv3920) - } else if !yym3921 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv3920) + } else if z.HasExtensions() && z.DecExt(yyv3923) { + } else if yym3924 { + z.DecBinaryUnmarshal(yyv3923) + } else if !yym3924 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv3923) } else { - z.DecFallback(yyv3920, false) + z.DecFallback(yyv3923, false) } } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49316,13 +49372,13 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Count = int32(r.DecodeInt(32)) } - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49333,17 +49389,17 @@ func (x *Event) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = string(r.DecodeString()) } for { - yyj3910++ - if yyhl3910 { - yyb3910 = yyj3910 > l + yyj3913++ + if yyhl3913 { + yyb3913 = yyj3913 > l } else { - yyb3910 = r.CheckBreak() + yyb3913 = r.CheckBreak() } - if yyb3910 { + if yyb3913 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3910-1, "") + z.DecStructFieldNotFound(yyj3913-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49355,118 +49411,118 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3924 := z.EncBinary() - _ = yym3924 + yym3927 := z.EncBinary() + _ = yym3927 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3925 := !z.EncBinary() - yy2arr3925 := z.EncBasicHandle().StructToArray - var yyq3925 [4]bool - _, _, _ = yysep3925, yyq3925, yy2arr3925 - const yyr3925 bool = false - yyq3925[0] = x.Kind != "" - yyq3925[1] = x.APIVersion != "" - yyq3925[2] = true - var yynn3925 int - if yyr3925 || yy2arr3925 { + yysep3928 := !z.EncBinary() + yy2arr3928 := z.EncBasicHandle().StructToArray + var yyq3928 [4]bool + _, _, _ = yysep3928, yyq3928, yy2arr3928 + const yyr3928 bool = false + yyq3928[0] = x.Kind != "" + yyq3928[1] = x.APIVersion != "" + yyq3928[2] = true + var yynn3928 int + if yyr3928 || yy2arr3928 { r.EncodeArrayStart(4) } else { - yynn3925 = 1 - for _, b := range yyq3925 { + yynn3928 = 1 + for _, b := range yyq3928 { if b { - yynn3925++ + yynn3928++ } } - r.EncodeMapStart(yynn3925) - yynn3925 = 0 + r.EncodeMapStart(yynn3928) + yynn3928 = 0 } - if yyr3925 || yy2arr3925 { + if yyr3928 || yy2arr3928 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3925[0] { - yym3927 := z.EncBinary() - _ = yym3927 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3925[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3928 := z.EncBinary() - _ = yym3928 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3925 || yy2arr3925 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3925[1] { + if yyq3928[0] { yym3930 := z.EncBinary() _ = yym3930 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3925[1] { + if yyq3928[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3931 := z.EncBinary() _ = yym3931 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3928 || yy2arr3928 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3928[1] { + yym3933 := z.EncBinary() + _ = yym3933 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3928[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3934 := z.EncBinary() + _ = yym3934 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3925 || yy2arr3925 { + if yyr3928 || yy2arr3928 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3925[2] { - yy3933 := &x.ListMeta - yym3934 := z.EncBinary() - _ = yym3934 + if yyq3928[2] { + yy3936 := &x.ListMeta + yym3937 := z.EncBinary() + _ = yym3937 if false { - } else if z.HasExtensions() && z.EncExt(yy3933) { + } else if z.HasExtensions() && z.EncExt(yy3936) { } else { - z.EncFallback(yy3933) + z.EncFallback(yy3936) } } else { r.EncodeNil() } } else { - if yyq3925[2] { + if yyq3928[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3935 := &x.ListMeta - yym3936 := z.EncBinary() - _ = yym3936 + yy3938 := &x.ListMeta + yym3939 := z.EncBinary() + _ = yym3939 if false { - } else if z.HasExtensions() && z.EncExt(yy3935) { + } else if z.HasExtensions() && z.EncExt(yy3938) { } else { - z.EncFallback(yy3935) + z.EncFallback(yy3938) } } } - if yyr3925 || yy2arr3925 { + if yyr3928 || yy2arr3928 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3938 := z.EncBinary() - _ = yym3938 + yym3941 := z.EncBinary() + _ = yym3941 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) @@ -49479,15 +49535,15 @@ func (x *EventList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3939 := z.EncBinary() - _ = yym3939 + yym3942 := z.EncBinary() + _ = yym3942 if false { } else { h.encSliceEvent(([]Event)(x.Items), e) } } } - if yyr3925 || yy2arr3925 { + if yyr3928 || yy2arr3928 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49500,25 +49556,25 @@ func (x *EventList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3940 := z.DecBinary() - _ = yym3940 + yym3943 := z.DecBinary() + _ = yym3943 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3941 := r.ContainerType() - if yyct3941 == codecSelferValueTypeMap1234 { - yyl3941 := r.ReadMapStart() - if yyl3941 == 0 { + yyct3944 := r.ContainerType() + if yyct3944 == codecSelferValueTypeMap1234 { + yyl3944 := r.ReadMapStart() + if yyl3944 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3941, d) + x.codecDecodeSelfFromMap(yyl3944, d) } - } else if yyct3941 == codecSelferValueTypeArray1234 { - yyl3941 := r.ReadArrayStart() - if yyl3941 == 0 { + } else if yyct3944 == codecSelferValueTypeArray1234 { + yyl3944 := r.ReadArrayStart() + if yyl3944 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3941, d) + x.codecDecodeSelfFromArray(yyl3944, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49530,12 +49586,12 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3942Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3942Slc - var yyhl3942 bool = l >= 0 - for yyj3942 := 0; ; yyj3942++ { - if yyhl3942 { - if yyj3942 >= l { + var yys3945Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3945Slc + var yyhl3945 bool = l >= 0 + for yyj3945 := 0; ; yyj3945++ { + if yyhl3945 { + if yyj3945 >= l { break } } else { @@ -49544,10 +49600,10 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3942Slc = r.DecodeBytes(yys3942Slc, true, true) - yys3942 := string(yys3942Slc) + yys3945Slc = r.DecodeBytes(yys3945Slc, true, true) + yys3945 := string(yys3945Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3942 { + switch yys3945 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49564,31 +49620,31 @@ func (x *EventList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv3945 := &x.ListMeta - yym3946 := z.DecBinary() - _ = yym3946 + yyv3948 := &x.ListMeta + yym3949 := z.DecBinary() + _ = yym3949 if false { - } else if z.HasExtensions() && z.DecExt(yyv3945) { + } else if z.HasExtensions() && z.DecExt(yyv3948) { } else { - z.DecFallback(yyv3945, false) + z.DecFallback(yyv3948, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3947 := &x.Items - yym3948 := z.DecBinary() - _ = yym3948 + yyv3950 := &x.Items + yym3951 := z.DecBinary() + _ = yym3951 if false { } else { - h.decSliceEvent((*[]Event)(yyv3947), d) + h.decSliceEvent((*[]Event)(yyv3950), d) } } default: - z.DecStructFieldNotFound(-1, yys3942) - } // end switch yys3942 - } // end for yyj3942 + z.DecStructFieldNotFound(-1, yys3945) + } // end switch yys3945 + } // end for yyj3945 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49596,16 +49652,16 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3949 int - var yyb3949 bool - var yyhl3949 bool = l >= 0 - yyj3949++ - if yyhl3949 { - yyb3949 = yyj3949 > l + var yyj3952 int + var yyb3952 bool + var yyhl3952 bool = l >= 0 + yyj3952++ + if yyhl3952 { + yyb3952 = yyj3952 > l } else { - yyb3949 = r.CheckBreak() + yyb3952 = r.CheckBreak() } - if yyb3949 { + if yyb3952 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49615,13 +49671,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3949++ - if yyhl3949 { - yyb3949 = yyj3949 > l + yyj3952++ + if yyhl3952 { + yyb3952 = yyj3952 > l } else { - yyb3949 = r.CheckBreak() + yyb3952 = r.CheckBreak() } - if yyb3949 { + if yyb3952 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49631,13 +49687,13 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3949++ - if yyhl3949 { - yyb3949 = yyj3949 > l + yyj3952++ + if yyhl3952 { + yyb3952 = yyj3952 > l } else { - yyb3949 = r.CheckBreak() + yyb3952 = r.CheckBreak() } - if yyb3949 { + if yyb3952 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49645,22 +49701,22 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv3952 := &x.ListMeta - yym3953 := z.DecBinary() - _ = yym3953 + yyv3955 := &x.ListMeta + yym3956 := z.DecBinary() + _ = yym3956 if false { - } else if z.HasExtensions() && z.DecExt(yyv3952) { + } else if z.HasExtensions() && z.DecExt(yyv3955) { } else { - z.DecFallback(yyv3952, false) + z.DecFallback(yyv3955, false) } } - yyj3949++ - if yyhl3949 { - yyb3949 = yyj3949 > l + yyj3952++ + if yyhl3952 { + yyb3952 = yyj3952 > l } else { - yyb3949 = r.CheckBreak() + yyb3952 = r.CheckBreak() } - if yyb3949 { + if yyb3952 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49668,26 +49724,26 @@ func (x *EventList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3954 := &x.Items - yym3955 := z.DecBinary() - _ = yym3955 + yyv3957 := &x.Items + yym3958 := z.DecBinary() + _ = yym3958 if false { } else { - h.decSliceEvent((*[]Event)(yyv3954), d) + h.decSliceEvent((*[]Event)(yyv3957), d) } } for { - yyj3949++ - if yyhl3949 { - yyb3949 = yyj3949 > l + yyj3952++ + if yyhl3952 { + yyb3952 = yyj3952 > l } else { - yyb3949 = r.CheckBreak() + yyb3952 = r.CheckBreak() } - if yyb3949 { + if yyb3952 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3949-1, "") + z.DecStructFieldNotFound(yyj3952-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -49699,118 +49755,118 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3956 := z.EncBinary() - _ = yym3956 + yym3959 := z.EncBinary() + _ = yym3959 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3957 := !z.EncBinary() - yy2arr3957 := z.EncBasicHandle().StructToArray - var yyq3957 [4]bool - _, _, _ = yysep3957, yyq3957, yy2arr3957 - const yyr3957 bool = false - yyq3957[0] = x.Kind != "" - yyq3957[1] = x.APIVersion != "" - yyq3957[2] = true - var yynn3957 int - if yyr3957 || yy2arr3957 { + yysep3960 := !z.EncBinary() + yy2arr3960 := z.EncBasicHandle().StructToArray + var yyq3960 [4]bool + _, _, _ = yysep3960, yyq3960, yy2arr3960 + const yyr3960 bool = false + yyq3960[0] = x.Kind != "" + yyq3960[1] = x.APIVersion != "" + yyq3960[2] = true + var yynn3960 int + if yyr3960 || yy2arr3960 { r.EncodeArrayStart(4) } else { - yynn3957 = 1 - for _, b := range yyq3957 { + yynn3960 = 1 + for _, b := range yyq3960 { if b { - yynn3957++ + yynn3960++ } } - r.EncodeMapStart(yynn3957) - yynn3957 = 0 + r.EncodeMapStart(yynn3960) + yynn3960 = 0 } - if yyr3957 || yy2arr3957 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3957[0] { - yym3959 := z.EncBinary() - _ = yym3959 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq3957[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym3960 := z.EncBinary() - _ = yym3960 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr3957 || yy2arr3957 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3957[1] { + if yyq3960[0] { yym3962 := z.EncBinary() _ = yym3962 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3957[1] { + if yyq3960[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym3963 := z.EncBinary() _ = yym3963 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr3960 || yy2arr3960 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq3960[1] { + yym3965 := z.EncBinary() + _ = yym3965 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq3960[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym3966 := z.EncBinary() + _ = yym3966 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr3957 || yy2arr3957 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3957[2] { - yy3965 := &x.ListMeta - yym3966 := z.EncBinary() - _ = yym3966 + if yyq3960[2] { + yy3968 := &x.ListMeta + yym3969 := z.EncBinary() + _ = yym3969 if false { - } else if z.HasExtensions() && z.EncExt(yy3965) { + } else if z.HasExtensions() && z.EncExt(yy3968) { } else { - z.EncFallback(yy3965) + z.EncFallback(yy3968) } } else { r.EncodeNil() } } else { - if yyq3957[2] { + if yyq3960[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy3967 := &x.ListMeta - yym3968 := z.EncBinary() - _ = yym3968 + yy3970 := &x.ListMeta + yym3971 := z.EncBinary() + _ = yym3971 if false { - } else if z.HasExtensions() && z.EncExt(yy3967) { + } else if z.HasExtensions() && z.EncExt(yy3970) { } else { - z.EncFallback(yy3967) + z.EncFallback(yy3970) } } } - if yyr3957 || yy2arr3957 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym3970 := z.EncBinary() - _ = yym3970 + yym3973 := z.EncBinary() + _ = yym3973 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) @@ -49823,15 +49879,15 @@ func (x *List) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym3971 := z.EncBinary() - _ = yym3971 + yym3974 := z.EncBinary() + _ = yym3974 if false { } else { h.encSliceruntime_RawExtension(([]pkg5_runtime.RawExtension)(x.Items), e) } } } - if yyr3957 || yy2arr3957 { + if yyr3960 || yy2arr3960 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -49844,25 +49900,25 @@ func (x *List) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3972 := z.DecBinary() - _ = yym3972 + yym3975 := z.DecBinary() + _ = yym3975 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3973 := r.ContainerType() - if yyct3973 == codecSelferValueTypeMap1234 { - yyl3973 := r.ReadMapStart() - if yyl3973 == 0 { + yyct3976 := r.ContainerType() + if yyct3976 == codecSelferValueTypeMap1234 { + yyl3976 := r.ReadMapStart() + if yyl3976 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3973, d) + x.codecDecodeSelfFromMap(yyl3976, d) } - } else if yyct3973 == codecSelferValueTypeArray1234 { - yyl3973 := r.ReadArrayStart() - if yyl3973 == 0 { + } else if yyct3976 == codecSelferValueTypeArray1234 { + yyl3976 := r.ReadArrayStart() + if yyl3976 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3973, d) + x.codecDecodeSelfFromArray(yyl3976, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -49874,12 +49930,12 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys3974Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys3974Slc - var yyhl3974 bool = l >= 0 - for yyj3974 := 0; ; yyj3974++ { - if yyhl3974 { - if yyj3974 >= l { + var yys3977Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys3977Slc + var yyhl3977 bool = l >= 0 + for yyj3977 := 0; ; yyj3977++ { + if yyhl3977 { + if yyj3977 >= l { break } } else { @@ -49888,10 +49944,10 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys3974Slc = r.DecodeBytes(yys3974Slc, true, true) - yys3974 := string(yys3974Slc) + yys3977Slc = r.DecodeBytes(yys3977Slc, true, true) + yys3977 := string(yys3977Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys3974 { + switch yys3977 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -49908,31 +49964,31 @@ func (x *List) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv3977 := &x.ListMeta - yym3978 := z.DecBinary() - _ = yym3978 + yyv3980 := &x.ListMeta + yym3981 := z.DecBinary() + _ = yym3981 if false { - } else if z.HasExtensions() && z.DecExt(yyv3977) { + } else if z.HasExtensions() && z.DecExt(yyv3980) { } else { - z.DecFallback(yyv3977, false) + z.DecFallback(yyv3980, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3979 := &x.Items - yym3980 := z.DecBinary() - _ = yym3980 + yyv3982 := &x.Items + yym3983 := z.DecBinary() + _ = yym3983 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3979), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3982), d) } } default: - z.DecStructFieldNotFound(-1, yys3974) - } // end switch yys3974 - } // end for yyj3974 + z.DecStructFieldNotFound(-1, yys3977) + } // end switch yys3977 + } // end for yyj3977 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -49940,16 +49996,16 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj3981 int - var yyb3981 bool - var yyhl3981 bool = l >= 0 - yyj3981++ - if yyhl3981 { - yyb3981 = yyj3981 > l + var yyj3984 int + var yyb3984 bool + var yyhl3984 bool = l >= 0 + yyj3984++ + if yyhl3984 { + yyb3984 = yyj3984 > l } else { - yyb3981 = r.CheckBreak() + yyb3984 = r.CheckBreak() } - if yyb3981 { + if yyb3984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49959,13 +50015,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj3981++ - if yyhl3981 { - yyb3981 = yyj3981 > l + yyj3984++ + if yyhl3984 { + yyb3984 = yyj3984 > l } else { - yyb3981 = r.CheckBreak() + yyb3984 = r.CheckBreak() } - if yyb3981 { + if yyb3984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49975,13 +50031,13 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj3981++ - if yyhl3981 { - yyb3981 = yyj3981 > l + yyj3984++ + if yyhl3984 { + yyb3984 = yyj3984 > l } else { - yyb3981 = r.CheckBreak() + yyb3984 = r.CheckBreak() } - if yyb3981 { + if yyb3984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -49989,22 +50045,22 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv3984 := &x.ListMeta - yym3985 := z.DecBinary() - _ = yym3985 + yyv3987 := &x.ListMeta + yym3988 := z.DecBinary() + _ = yym3988 if false { - } else if z.HasExtensions() && z.DecExt(yyv3984) { + } else if z.HasExtensions() && z.DecExt(yyv3987) { } else { - z.DecFallback(yyv3984, false) + z.DecFallback(yyv3987, false) } } - yyj3981++ - if yyhl3981 { - yyb3981 = yyj3981 > l + yyj3984++ + if yyhl3984 { + yyb3984 = yyj3984 > l } else { - yyb3981 = r.CheckBreak() + yyb3984 = r.CheckBreak() } - if yyb3981 { + if yyb3984 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50012,26 +50068,26 @@ func (x *List) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv3986 := &x.Items - yym3987 := z.DecBinary() - _ = yym3987 + yyv3989 := &x.Items + yym3990 := z.DecBinary() + _ = yym3990 if false { } else { - h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3986), d) + h.decSliceruntime_RawExtension((*[]pkg5_runtime.RawExtension)(yyv3989), d) } } for { - yyj3981++ - if yyhl3981 { - yyb3981 = yyj3981 > l + yyj3984++ + if yyhl3984 { + yyb3984 = yyj3984 > l } else { - yyb3981 = r.CheckBreak() + yyb3984 = r.CheckBreak() } - if yyb3981 { + if yyb3984 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj3981-1, "") + z.DecStructFieldNotFound(yyj3984-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50040,8 +50096,8 @@ func (x LimitType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym3988 := z.EncBinary() - _ = yym3988 + yym3991 := z.EncBinary() + _ = yym3991 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -50053,8 +50109,8 @@ func (x *LimitType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3989 := z.DecBinary() - _ = yym3989 + yym3992 := z.DecBinary() + _ = yym3992 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -50069,53 +50125,53 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym3990 := z.EncBinary() - _ = yym3990 + yym3993 := z.EncBinary() + _ = yym3993 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep3991 := !z.EncBinary() - yy2arr3991 := z.EncBasicHandle().StructToArray - var yyq3991 [6]bool - _, _, _ = yysep3991, yyq3991, yy2arr3991 - const yyr3991 bool = false - yyq3991[0] = x.Type != "" - yyq3991[1] = len(x.Max) != 0 - yyq3991[2] = len(x.Min) != 0 - yyq3991[3] = len(x.Default) != 0 - yyq3991[4] = len(x.DefaultRequest) != 0 - yyq3991[5] = len(x.MaxLimitRequestRatio) != 0 - var yynn3991 int - if yyr3991 || yy2arr3991 { + yysep3994 := !z.EncBinary() + yy2arr3994 := z.EncBasicHandle().StructToArray + var yyq3994 [6]bool + _, _, _ = yysep3994, yyq3994, yy2arr3994 + const yyr3994 bool = false + yyq3994[0] = x.Type != "" + yyq3994[1] = len(x.Max) != 0 + yyq3994[2] = len(x.Min) != 0 + yyq3994[3] = len(x.Default) != 0 + yyq3994[4] = len(x.DefaultRequest) != 0 + yyq3994[5] = len(x.MaxLimitRequestRatio) != 0 + var yynn3994 int + if yyr3994 || yy2arr3994 { r.EncodeArrayStart(6) } else { - yynn3991 = 0 - for _, b := range yyq3991 { + yynn3994 = 0 + for _, b := range yyq3994 { if b { - yynn3991++ + yynn3994++ } } - r.EncodeMapStart(yynn3991) - yynn3991 = 0 + r.EncodeMapStart(yynn3994) + yynn3994 = 0 } - if yyr3991 || yy2arr3991 { + if yyr3994 || yy2arr3994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3991[0] { + if yyq3994[0] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq3991[0] { + if yyq3994[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr3991 || yy2arr3991 { + if yyr3994 || yy2arr3994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3991[1] { + if yyq3994[1] { if x.Max == nil { r.EncodeNil() } else { @@ -50125,7 +50181,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3991[1] { + if yyq3994[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("max")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50136,9 +50192,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3991 || yy2arr3991 { + if yyr3994 || yy2arr3994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3991[2] { + if yyq3994[2] { if x.Min == nil { r.EncodeNil() } else { @@ -50148,7 +50204,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3991[2] { + if yyq3994[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("min")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50159,9 +50215,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3991 || yy2arr3991 { + if yyr3994 || yy2arr3994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3991[3] { + if yyq3994[3] { if x.Default == nil { r.EncodeNil() } else { @@ -50171,7 +50227,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3991[3] { + if yyq3994[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("default")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50182,9 +50238,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3991 || yy2arr3991 { + if yyr3994 || yy2arr3994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3991[4] { + if yyq3994[4] { if x.DefaultRequest == nil { r.EncodeNil() } else { @@ -50194,7 +50250,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3991[4] { + if yyq3994[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultRequest")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50205,9 +50261,9 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3991 || yy2arr3991 { + if yyr3994 || yy2arr3994 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq3991[5] { + if yyq3994[5] { if x.MaxLimitRequestRatio == nil { r.EncodeNil() } else { @@ -50217,7 +50273,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq3991[5] { + if yyq3994[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("maxLimitRequestRatio")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -50228,7 +50284,7 @@ func (x *LimitRangeItem) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr3991 || yy2arr3991 { + if yyr3994 || yy2arr3994 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50241,25 +50297,25 @@ func (x *LimitRangeItem) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym3998 := z.DecBinary() - _ = yym3998 + yym4001 := z.DecBinary() + _ = yym4001 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct3999 := r.ContainerType() - if yyct3999 == codecSelferValueTypeMap1234 { - yyl3999 := r.ReadMapStart() - if yyl3999 == 0 { + yyct4002 := r.ContainerType() + if yyct4002 == codecSelferValueTypeMap1234 { + yyl4002 := r.ReadMapStart() + if yyl4002 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl3999, d) + x.codecDecodeSelfFromMap(yyl4002, d) } - } else if yyct3999 == codecSelferValueTypeArray1234 { - yyl3999 := r.ReadArrayStart() - if yyl3999 == 0 { + } else if yyct4002 == codecSelferValueTypeArray1234 { + yyl4002 := r.ReadArrayStart() + if yyl4002 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl3999, d) + x.codecDecodeSelfFromArray(yyl4002, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50271,12 +50327,12 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4000Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4000Slc - var yyhl4000 bool = l >= 0 - for yyj4000 := 0; ; yyj4000++ { - if yyhl4000 { - if yyj4000 >= l { + var yys4003Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4003Slc + var yyhl4003 bool = l >= 0 + for yyj4003 := 0; ; yyj4003++ { + if yyhl4003 { + if yyj4003 >= l { break } } else { @@ -50285,10 +50341,10 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4000Slc = r.DecodeBytes(yys4000Slc, true, true) - yys4000 := string(yys4000Slc) + yys4003Slc = r.DecodeBytes(yys4003Slc, true, true) + yys4003 := string(yys4003Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4000 { + switch yys4003 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -50299,41 +50355,41 @@ func (x *LimitRangeItem) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv4002 := &x.Max - yyv4002.CodecDecodeSelf(d) + yyv4005 := &x.Max + yyv4005.CodecDecodeSelf(d) } case "min": if r.TryDecodeAsNil() { x.Min = nil } else { - yyv4003 := &x.Min - yyv4003.CodecDecodeSelf(d) + yyv4006 := &x.Min + yyv4006.CodecDecodeSelf(d) } case "default": if r.TryDecodeAsNil() { x.Default = nil } else { - yyv4004 := &x.Default - yyv4004.CodecDecodeSelf(d) + yyv4007 := &x.Default + yyv4007.CodecDecodeSelf(d) } case "defaultRequest": if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv4005 := &x.DefaultRequest - yyv4005.CodecDecodeSelf(d) + yyv4008 := &x.DefaultRequest + yyv4008.CodecDecodeSelf(d) } case "maxLimitRequestRatio": if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv4006 := &x.MaxLimitRequestRatio - yyv4006.CodecDecodeSelf(d) + yyv4009 := &x.MaxLimitRequestRatio + yyv4009.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4000) - } // end switch yys4000 - } // end for yyj4000 + z.DecStructFieldNotFound(-1, yys4003) + } // end switch yys4003 + } // end for yyj4003 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50341,16 +50397,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4007 int - var yyb4007 bool - var yyhl4007 bool = l >= 0 - yyj4007++ - if yyhl4007 { - yyb4007 = yyj4007 > l + var yyj4010 int + var yyb4010 bool + var yyhl4010 bool = l >= 0 + yyj4010++ + if yyhl4010 { + yyb4010 = yyj4010 > l } else { - yyb4007 = r.CheckBreak() + yyb4010 = r.CheckBreak() } - if yyb4007 { + if yyb4010 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50360,13 +50416,13 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = LimitType(r.DecodeString()) } - yyj4007++ - if yyhl4007 { - yyb4007 = yyj4007 > l + yyj4010++ + if yyhl4010 { + yyb4010 = yyj4010 > l } else { - yyb4007 = r.CheckBreak() + yyb4010 = r.CheckBreak() } - if yyb4007 { + if yyb4010 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50374,16 +50430,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Max = nil } else { - yyv4009 := &x.Max - yyv4009.CodecDecodeSelf(d) + yyv4012 := &x.Max + yyv4012.CodecDecodeSelf(d) } - yyj4007++ - if yyhl4007 { - yyb4007 = yyj4007 > l + yyj4010++ + if yyhl4010 { + yyb4010 = yyj4010 > l } else { - yyb4007 = r.CheckBreak() + yyb4010 = r.CheckBreak() } - if yyb4007 { + if yyb4010 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50391,16 +50447,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Min = nil } else { - yyv4010 := &x.Min - yyv4010.CodecDecodeSelf(d) + yyv4013 := &x.Min + yyv4013.CodecDecodeSelf(d) } - yyj4007++ - if yyhl4007 { - yyb4007 = yyj4007 > l + yyj4010++ + if yyhl4010 { + yyb4010 = yyj4010 > l } else { - yyb4007 = r.CheckBreak() + yyb4010 = r.CheckBreak() } - if yyb4007 { + if yyb4010 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50408,16 +50464,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Default = nil } else { - yyv4011 := &x.Default - yyv4011.CodecDecodeSelf(d) + yyv4014 := &x.Default + yyv4014.CodecDecodeSelf(d) } - yyj4007++ - if yyhl4007 { - yyb4007 = yyj4007 > l + yyj4010++ + if yyhl4010 { + yyb4010 = yyj4010 > l } else { - yyb4007 = r.CheckBreak() + yyb4010 = r.CheckBreak() } - if yyb4007 { + if yyb4010 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50425,16 +50481,16 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.DefaultRequest = nil } else { - yyv4012 := &x.DefaultRequest - yyv4012.CodecDecodeSelf(d) + yyv4015 := &x.DefaultRequest + yyv4015.CodecDecodeSelf(d) } - yyj4007++ - if yyhl4007 { - yyb4007 = yyj4007 > l + yyj4010++ + if yyhl4010 { + yyb4010 = yyj4010 > l } else { - yyb4007 = r.CheckBreak() + yyb4010 = r.CheckBreak() } - if yyb4007 { + if yyb4010 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50442,21 +50498,21 @@ func (x *LimitRangeItem) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.MaxLimitRequestRatio = nil } else { - yyv4013 := &x.MaxLimitRequestRatio - yyv4013.CodecDecodeSelf(d) + yyv4016 := &x.MaxLimitRequestRatio + yyv4016.CodecDecodeSelf(d) } for { - yyj4007++ - if yyhl4007 { - yyb4007 = yyj4007 > l + yyj4010++ + if yyhl4010 { + yyb4010 = yyj4010 > l } else { - yyb4007 = r.CheckBreak() + yyb4010 = r.CheckBreak() } - if yyb4007 { + if yyb4010 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4007-1, "") + z.DecStructFieldNotFound(yyj4010-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50468,36 +50524,36 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4014 := z.EncBinary() - _ = yym4014 + yym4017 := z.EncBinary() + _ = yym4017 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4015 := !z.EncBinary() - yy2arr4015 := z.EncBasicHandle().StructToArray - var yyq4015 [1]bool - _, _, _ = yysep4015, yyq4015, yy2arr4015 - const yyr4015 bool = false - var yynn4015 int - if yyr4015 || yy2arr4015 { + yysep4018 := !z.EncBinary() + yy2arr4018 := z.EncBasicHandle().StructToArray + var yyq4018 [1]bool + _, _, _ = yysep4018, yyq4018, yy2arr4018 + const yyr4018 bool = false + var yynn4018 int + if yyr4018 || yy2arr4018 { r.EncodeArrayStart(1) } else { - yynn4015 = 1 - for _, b := range yyq4015 { + yynn4018 = 1 + for _, b := range yyq4018 { if b { - yynn4015++ + yynn4018++ } } - r.EncodeMapStart(yynn4015) - yynn4015 = 0 + r.EncodeMapStart(yynn4018) + yynn4018 = 0 } - if yyr4015 || yy2arr4015 { + if yyr4018 || yy2arr4018 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Limits == nil { r.EncodeNil() } else { - yym4017 := z.EncBinary() - _ = yym4017 + yym4020 := z.EncBinary() + _ = yym4020 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) @@ -50510,15 +50566,15 @@ func (x *LimitRangeSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x.Limits == nil { r.EncodeNil() } else { - yym4018 := z.EncBinary() - _ = yym4018 + yym4021 := z.EncBinary() + _ = yym4021 if false { } else { h.encSliceLimitRangeItem(([]LimitRangeItem)(x.Limits), e) } } } - if yyr4015 || yy2arr4015 { + if yyr4018 || yy2arr4018 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50531,25 +50587,25 @@ func (x *LimitRangeSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4019 := z.DecBinary() - _ = yym4019 + yym4022 := z.DecBinary() + _ = yym4022 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4020 := r.ContainerType() - if yyct4020 == codecSelferValueTypeMap1234 { - yyl4020 := r.ReadMapStart() - if yyl4020 == 0 { + yyct4023 := r.ContainerType() + if yyct4023 == codecSelferValueTypeMap1234 { + yyl4023 := r.ReadMapStart() + if yyl4023 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4020, d) + x.codecDecodeSelfFromMap(yyl4023, d) } - } else if yyct4020 == codecSelferValueTypeArray1234 { - yyl4020 := r.ReadArrayStart() - if yyl4020 == 0 { + } else if yyct4023 == codecSelferValueTypeArray1234 { + yyl4023 := r.ReadArrayStart() + if yyl4023 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4020, d) + x.codecDecodeSelfFromArray(yyl4023, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50561,12 +50617,12 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4021Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4021Slc - var yyhl4021 bool = l >= 0 - for yyj4021 := 0; ; yyj4021++ { - if yyhl4021 { - if yyj4021 >= l { + var yys4024Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4024Slc + var yyhl4024 bool = l >= 0 + for yyj4024 := 0; ; yyj4024++ { + if yyhl4024 { + if yyj4024 >= l { break } } else { @@ -50575,26 +50631,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4021Slc = r.DecodeBytes(yys4021Slc, true, true) - yys4021 := string(yys4021Slc) + yys4024Slc = r.DecodeBytes(yys4024Slc, true, true) + yys4024 := string(yys4024Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4021 { + switch yys4024 { case "limits": if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4022 := &x.Limits - yym4023 := z.DecBinary() - _ = yym4023 + yyv4025 := &x.Limits + yym4026 := z.DecBinary() + _ = yym4026 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4022), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4025), d) } } default: - z.DecStructFieldNotFound(-1, yys4021) - } // end switch yys4021 - } // end for yyj4021 + z.DecStructFieldNotFound(-1, yys4024) + } // end switch yys4024 + } // end for yyj4024 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50602,16 +50658,16 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4024 int - var yyb4024 bool - var yyhl4024 bool = l >= 0 - yyj4024++ - if yyhl4024 { - yyb4024 = yyj4024 > l + var yyj4027 int + var yyb4027 bool + var yyhl4027 bool = l >= 0 + yyj4027++ + if yyhl4027 { + yyb4027 = yyj4027 > l } else { - yyb4024 = r.CheckBreak() + yyb4027 = r.CheckBreak() } - if yyb4024 { + if yyb4027 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50619,26 +50675,26 @@ func (x *LimitRangeSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Limits = nil } else { - yyv4025 := &x.Limits - yym4026 := z.DecBinary() - _ = yym4026 + yyv4028 := &x.Limits + yym4029 := z.DecBinary() + _ = yym4029 if false { } else { - h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4025), d) + h.decSliceLimitRangeItem((*[]LimitRangeItem)(yyv4028), d) } } for { - yyj4024++ - if yyhl4024 { - yyb4024 = yyj4024 > l + yyj4027++ + if yyhl4027 { + yyb4027 = yyj4027 > l } else { - yyb4024 = r.CheckBreak() + yyb4027 = r.CheckBreak() } - if yyb4024 { + if yyb4027 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4024-1, "") + z.DecStructFieldNotFound(yyj4027-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50650,118 +50706,118 @@ func (x *LimitRange) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4027 := z.EncBinary() - _ = yym4027 + yym4030 := z.EncBinary() + _ = yym4030 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4028 := !z.EncBinary() - yy2arr4028 := z.EncBasicHandle().StructToArray - var yyq4028 [4]bool - _, _, _ = yysep4028, yyq4028, yy2arr4028 - const yyr4028 bool = false - yyq4028[0] = x.Kind != "" - yyq4028[1] = x.APIVersion != "" - yyq4028[2] = true - yyq4028[3] = true - var yynn4028 int - if yyr4028 || yy2arr4028 { + yysep4031 := !z.EncBinary() + yy2arr4031 := z.EncBasicHandle().StructToArray + var yyq4031 [4]bool + _, _, _ = yysep4031, yyq4031, yy2arr4031 + const yyr4031 bool = false + yyq4031[0] = x.Kind != "" + yyq4031[1] = x.APIVersion != "" + yyq4031[2] = true + yyq4031[3] = true + var yynn4031 int + if yyr4031 || yy2arr4031 { r.EncodeArrayStart(4) } else { - yynn4028 = 0 - for _, b := range yyq4028 { + yynn4031 = 0 + for _, b := range yyq4031 { if b { - yynn4028++ + yynn4031++ } } - r.EncodeMapStart(yynn4028) - yynn4028 = 0 + r.EncodeMapStart(yynn4031) + yynn4031 = 0 } - if yyr4028 || yy2arr4028 { + if yyr4031 || yy2arr4031 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4028[0] { - yym4030 := z.EncBinary() - _ = yym4030 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4028[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4031 := z.EncBinary() - _ = yym4031 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4028 || yy2arr4028 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4028[1] { + if yyq4031[0] { yym4033 := z.EncBinary() _ = yym4033 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4028[1] { + if yyq4031[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4034 := z.EncBinary() _ = yym4034 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4031 || yy2arr4031 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4031[1] { + yym4036 := z.EncBinary() + _ = yym4036 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4031[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4037 := z.EncBinary() + _ = yym4037 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4028 || yy2arr4028 { + if yyr4031 || yy2arr4031 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4028[2] { - yy4036 := &x.ObjectMeta - yy4036.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq4028[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4037 := &x.ObjectMeta - yy4037.CodecEncodeSelf(e) - } - } - if yyr4028 || yy2arr4028 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4028[3] { - yy4039 := &x.Spec + if yyq4031[2] { + yy4039 := &x.ObjectMeta yy4039.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4028[3] { + if yyq4031[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4040 := &x.Spec + yy4040 := &x.ObjectMeta yy4040.CodecEncodeSelf(e) } } - if yyr4028 || yy2arr4028 { + if yyr4031 || yy2arr4031 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4031[3] { + yy4042 := &x.Spec + yy4042.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq4031[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("spec")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4043 := &x.Spec + yy4043.CodecEncodeSelf(e) + } + } + if yyr4031 || yy2arr4031 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -50774,25 +50830,25 @@ func (x *LimitRange) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4041 := z.DecBinary() - _ = yym4041 + yym4044 := z.DecBinary() + _ = yym4044 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4042 := r.ContainerType() - if yyct4042 == codecSelferValueTypeMap1234 { - yyl4042 := r.ReadMapStart() - if yyl4042 == 0 { + yyct4045 := r.ContainerType() + if yyct4045 == codecSelferValueTypeMap1234 { + yyl4045 := r.ReadMapStart() + if yyl4045 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4042, d) + x.codecDecodeSelfFromMap(yyl4045, d) } - } else if yyct4042 == codecSelferValueTypeArray1234 { - yyl4042 := r.ReadArrayStart() - if yyl4042 == 0 { + } else if yyct4045 == codecSelferValueTypeArray1234 { + yyl4045 := r.ReadArrayStart() + if yyl4045 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4042, d) + x.codecDecodeSelfFromArray(yyl4045, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -50804,12 +50860,12 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4043Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4043Slc - var yyhl4043 bool = l >= 0 - for yyj4043 := 0; ; yyj4043++ { - if yyhl4043 { - if yyj4043 >= l { + var yys4046Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4046Slc + var yyhl4046 bool = l >= 0 + for yyj4046 := 0; ; yyj4046++ { + if yyhl4046 { + if yyj4046 >= l { break } } else { @@ -50818,10 +50874,10 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4043Slc = r.DecodeBytes(yys4043Slc, true, true) - yys4043 := string(yys4043Slc) + yys4046Slc = r.DecodeBytes(yys4046Slc, true, true) + yys4046 := string(yys4046Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4043 { + switch yys4046 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -50838,20 +50894,20 @@ func (x *LimitRange) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4046 := &x.ObjectMeta - yyv4046.CodecDecodeSelf(d) + yyv4049 := &x.ObjectMeta + yyv4049.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv4047 := &x.Spec - yyv4047.CodecDecodeSelf(d) + yyv4050 := &x.Spec + yyv4050.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4043) - } // end switch yys4043 - } // end for yyj4043 + z.DecStructFieldNotFound(-1, yys4046) + } // end switch yys4046 + } // end for yyj4046 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -50859,16 +50915,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4048 int - var yyb4048 bool - var yyhl4048 bool = l >= 0 - yyj4048++ - if yyhl4048 { - yyb4048 = yyj4048 > l + var yyj4051 int + var yyb4051 bool + var yyhl4051 bool = l >= 0 + yyj4051++ + if yyhl4051 { + yyb4051 = yyj4051 > l } else { - yyb4048 = r.CheckBreak() + yyb4051 = r.CheckBreak() } - if yyb4048 { + if yyb4051 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50878,13 +50934,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4048++ - if yyhl4048 { - yyb4048 = yyj4048 > l + yyj4051++ + if yyhl4051 { + yyb4051 = yyj4051 > l } else { - yyb4048 = r.CheckBreak() + yyb4051 = r.CheckBreak() } - if yyb4048 { + if yyb4051 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50894,13 +50950,13 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4048++ - if yyhl4048 { - yyb4048 = yyj4048 > l + yyj4051++ + if yyhl4051 { + yyb4051 = yyj4051 > l } else { - yyb4048 = r.CheckBreak() + yyb4051 = r.CheckBreak() } - if yyb4048 { + if yyb4051 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50908,16 +50964,16 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4051 := &x.ObjectMeta - yyv4051.CodecDecodeSelf(d) + yyv4054 := &x.ObjectMeta + yyv4054.CodecDecodeSelf(d) } - yyj4048++ - if yyhl4048 { - yyb4048 = yyj4048 > l + yyj4051++ + if yyhl4051 { + yyb4051 = yyj4051 > l } else { - yyb4048 = r.CheckBreak() + yyb4051 = r.CheckBreak() } - if yyb4048 { + if yyb4051 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -50925,21 +50981,21 @@ func (x *LimitRange) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = LimitRangeSpec{} } else { - yyv4052 := &x.Spec - yyv4052.CodecDecodeSelf(d) + yyv4055 := &x.Spec + yyv4055.CodecDecodeSelf(d) } for { - yyj4048++ - if yyhl4048 { - yyb4048 = yyj4048 > l + yyj4051++ + if yyhl4051 { + yyb4051 = yyj4051 > l } else { - yyb4048 = r.CheckBreak() + yyb4051 = r.CheckBreak() } - if yyb4048 { + if yyb4051 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4048-1, "") + z.DecStructFieldNotFound(yyj4051-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -50951,118 +51007,118 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4053 := z.EncBinary() - _ = yym4053 + yym4056 := z.EncBinary() + _ = yym4056 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4054 := !z.EncBinary() - yy2arr4054 := z.EncBasicHandle().StructToArray - var yyq4054 [4]bool - _, _, _ = yysep4054, yyq4054, yy2arr4054 - const yyr4054 bool = false - yyq4054[0] = x.Kind != "" - yyq4054[1] = x.APIVersion != "" - yyq4054[2] = true - var yynn4054 int - if yyr4054 || yy2arr4054 { + yysep4057 := !z.EncBinary() + yy2arr4057 := z.EncBasicHandle().StructToArray + var yyq4057 [4]bool + _, _, _ = yysep4057, yyq4057, yy2arr4057 + const yyr4057 bool = false + yyq4057[0] = x.Kind != "" + yyq4057[1] = x.APIVersion != "" + yyq4057[2] = true + var yynn4057 int + if yyr4057 || yy2arr4057 { r.EncodeArrayStart(4) } else { - yynn4054 = 1 - for _, b := range yyq4054 { + yynn4057 = 1 + for _, b := range yyq4057 { if b { - yynn4054++ + yynn4057++ } } - r.EncodeMapStart(yynn4054) - yynn4054 = 0 + r.EncodeMapStart(yynn4057) + yynn4057 = 0 } - if yyr4054 || yy2arr4054 { + if yyr4057 || yy2arr4057 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4054[0] { - yym4056 := z.EncBinary() - _ = yym4056 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4054[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4057 := z.EncBinary() - _ = yym4057 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4054 || yy2arr4054 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4054[1] { + if yyq4057[0] { yym4059 := z.EncBinary() _ = yym4059 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4054[1] { + if yyq4057[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4060 := z.EncBinary() _ = yym4060 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4057 || yy2arr4057 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4057[1] { + yym4062 := z.EncBinary() + _ = yym4062 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4057[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4063 := z.EncBinary() + _ = yym4063 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4054 || yy2arr4054 { + if yyr4057 || yy2arr4057 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4054[2] { - yy4062 := &x.ListMeta - yym4063 := z.EncBinary() - _ = yym4063 + if yyq4057[2] { + yy4065 := &x.ListMeta + yym4066 := z.EncBinary() + _ = yym4066 if false { - } else if z.HasExtensions() && z.EncExt(yy4062) { + } else if z.HasExtensions() && z.EncExt(yy4065) { } else { - z.EncFallback(yy4062) + z.EncFallback(yy4065) } } else { r.EncodeNil() } } else { - if yyq4054[2] { + if yyq4057[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4064 := &x.ListMeta - yym4065 := z.EncBinary() - _ = yym4065 + yy4067 := &x.ListMeta + yym4068 := z.EncBinary() + _ = yym4068 if false { - } else if z.HasExtensions() && z.EncExt(yy4064) { + } else if z.HasExtensions() && z.EncExt(yy4067) { } else { - z.EncFallback(yy4064) + z.EncFallback(yy4067) } } } - if yyr4054 || yy2arr4054 { + if yyr4057 || yy2arr4057 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4067 := z.EncBinary() - _ = yym4067 + yym4070 := z.EncBinary() + _ = yym4070 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) @@ -51075,15 +51131,15 @@ func (x *LimitRangeList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4068 := z.EncBinary() - _ = yym4068 + yym4071 := z.EncBinary() + _ = yym4071 if false { } else { h.encSliceLimitRange(([]LimitRange)(x.Items), e) } } } - if yyr4054 || yy2arr4054 { + if yyr4057 || yy2arr4057 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51096,25 +51152,25 @@ func (x *LimitRangeList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4069 := z.DecBinary() - _ = yym4069 + yym4072 := z.DecBinary() + _ = yym4072 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4070 := r.ContainerType() - if yyct4070 == codecSelferValueTypeMap1234 { - yyl4070 := r.ReadMapStart() - if yyl4070 == 0 { + yyct4073 := r.ContainerType() + if yyct4073 == codecSelferValueTypeMap1234 { + yyl4073 := r.ReadMapStart() + if yyl4073 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4070, d) + x.codecDecodeSelfFromMap(yyl4073, d) } - } else if yyct4070 == codecSelferValueTypeArray1234 { - yyl4070 := r.ReadArrayStart() - if yyl4070 == 0 { + } else if yyct4073 == codecSelferValueTypeArray1234 { + yyl4073 := r.ReadArrayStart() + if yyl4073 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4070, d) + x.codecDecodeSelfFromArray(yyl4073, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51126,12 +51182,12 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4071Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4071Slc - var yyhl4071 bool = l >= 0 - for yyj4071 := 0; ; yyj4071++ { - if yyhl4071 { - if yyj4071 >= l { + var yys4074Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4074Slc + var yyhl4074 bool = l >= 0 + for yyj4074 := 0; ; yyj4074++ { + if yyhl4074 { + if yyj4074 >= l { break } } else { @@ -51140,10 +51196,10 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4071Slc = r.DecodeBytes(yys4071Slc, true, true) - yys4071 := string(yys4071Slc) + yys4074Slc = r.DecodeBytes(yys4074Slc, true, true) + yys4074 := string(yys4074Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4071 { + switch yys4074 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51160,31 +51216,31 @@ func (x *LimitRangeList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4074 := &x.ListMeta - yym4075 := z.DecBinary() - _ = yym4075 + yyv4077 := &x.ListMeta + yym4078 := z.DecBinary() + _ = yym4078 if false { - } else if z.HasExtensions() && z.DecExt(yyv4074) { + } else if z.HasExtensions() && z.DecExt(yyv4077) { } else { - z.DecFallback(yyv4074, false) + z.DecFallback(yyv4077, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4076 := &x.Items - yym4077 := z.DecBinary() - _ = yym4077 + yyv4079 := &x.Items + yym4080 := z.DecBinary() + _ = yym4080 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4076), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4079), d) } } default: - z.DecStructFieldNotFound(-1, yys4071) - } // end switch yys4071 - } // end for yyj4071 + z.DecStructFieldNotFound(-1, yys4074) + } // end switch yys4074 + } // end for yyj4074 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51192,16 +51248,16 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4078 int - var yyb4078 bool - var yyhl4078 bool = l >= 0 - yyj4078++ - if yyhl4078 { - yyb4078 = yyj4078 > l + var yyj4081 int + var yyb4081 bool + var yyhl4081 bool = l >= 0 + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4078 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4078 { + if yyb4081 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51211,13 +51267,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4078++ - if yyhl4078 { - yyb4078 = yyj4078 > l + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4078 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4078 { + if yyb4081 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51227,13 +51283,13 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4078++ - if yyhl4078 { - yyb4078 = yyj4078 > l + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4078 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4078 { + if yyb4081 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51241,22 +51297,22 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4081 := &x.ListMeta - yym4082 := z.DecBinary() - _ = yym4082 + yyv4084 := &x.ListMeta + yym4085 := z.DecBinary() + _ = yym4085 if false { - } else if z.HasExtensions() && z.DecExt(yyv4081) { + } else if z.HasExtensions() && z.DecExt(yyv4084) { } else { - z.DecFallback(yyv4081, false) + z.DecFallback(yyv4084, false) } } - yyj4078++ - if yyhl4078 { - yyb4078 = yyj4078 > l + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4078 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4078 { + if yyb4081 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51264,26 +51320,26 @@ func (x *LimitRangeList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4083 := &x.Items - yym4084 := z.DecBinary() - _ = yym4084 + yyv4086 := &x.Items + yym4087 := z.DecBinary() + _ = yym4087 if false { } else { - h.decSliceLimitRange((*[]LimitRange)(yyv4083), d) + h.decSliceLimitRange((*[]LimitRange)(yyv4086), d) } } for { - yyj4078++ - if yyhl4078 { - yyb4078 = yyj4078 > l + yyj4081++ + if yyhl4081 { + yyb4081 = yyj4081 > l } else { - yyb4078 = r.CheckBreak() + yyb4081 = r.CheckBreak() } - if yyb4078 { + if yyb4081 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4078-1, "") + z.DecStructFieldNotFound(yyj4081-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51292,8 +51348,8 @@ func (x ResourceQuotaScope) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4085 := z.EncBinary() - _ = yym4085 + yym4088 := z.EncBinary() + _ = yym4088 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -51305,8 +51361,8 @@ func (x *ResourceQuotaScope) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4086 := z.DecBinary() - _ = yym4086 + yym4089 := z.DecBinary() + _ = yym4089 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -51321,34 +51377,34 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4087 := z.EncBinary() - _ = yym4087 + yym4090 := z.EncBinary() + _ = yym4090 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4088 := !z.EncBinary() - yy2arr4088 := z.EncBasicHandle().StructToArray - var yyq4088 [2]bool - _, _, _ = yysep4088, yyq4088, yy2arr4088 - const yyr4088 bool = false - yyq4088[0] = len(x.Hard) != 0 - yyq4088[1] = len(x.Scopes) != 0 - var yynn4088 int - if yyr4088 || yy2arr4088 { + yysep4091 := !z.EncBinary() + yy2arr4091 := z.EncBasicHandle().StructToArray + var yyq4091 [2]bool + _, _, _ = yysep4091, yyq4091, yy2arr4091 + const yyr4091 bool = false + yyq4091[0] = len(x.Hard) != 0 + yyq4091[1] = len(x.Scopes) != 0 + var yynn4091 int + if yyr4091 || yy2arr4091 { r.EncodeArrayStart(2) } else { - yynn4088 = 0 - for _, b := range yyq4088 { + yynn4091 = 0 + for _, b := range yyq4091 { if b { - yynn4088++ + yynn4091++ } } - r.EncodeMapStart(yynn4088) - yynn4088 = 0 + r.EncodeMapStart(yynn4091) + yynn4091 = 0 } - if yyr4088 || yy2arr4088 { + if yyr4091 || yy2arr4091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4088[0] { + if yyq4091[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -51358,7 +51414,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4088[0] { + if yyq4091[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51369,14 +51425,14 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4088 || yy2arr4088 { + if yyr4091 || yy2arr4091 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4088[1] { + if yyq4091[1] { if x.Scopes == nil { r.EncodeNil() } else { - yym4091 := z.EncBinary() - _ = yym4091 + yym4094 := z.EncBinary() + _ = yym4094 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -51386,15 +51442,15 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4088[1] { + if yyq4091[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("scopes")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Scopes == nil { r.EncodeNil() } else { - yym4092 := z.EncBinary() - _ = yym4092 + yym4095 := z.EncBinary() + _ = yym4095 if false { } else { h.encSliceResourceQuotaScope(([]ResourceQuotaScope)(x.Scopes), e) @@ -51402,7 +51458,7 @@ func (x *ResourceQuotaSpec) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4088 || yy2arr4088 { + if yyr4091 || yy2arr4091 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51415,25 +51471,25 @@ func (x *ResourceQuotaSpec) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4093 := z.DecBinary() - _ = yym4093 + yym4096 := z.DecBinary() + _ = yym4096 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4094 := r.ContainerType() - if yyct4094 == codecSelferValueTypeMap1234 { - yyl4094 := r.ReadMapStart() - if yyl4094 == 0 { + yyct4097 := r.ContainerType() + if yyct4097 == codecSelferValueTypeMap1234 { + yyl4097 := r.ReadMapStart() + if yyl4097 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4094, d) + x.codecDecodeSelfFromMap(yyl4097, d) } - } else if yyct4094 == codecSelferValueTypeArray1234 { - yyl4094 := r.ReadArrayStart() - if yyl4094 == 0 { + } else if yyct4097 == codecSelferValueTypeArray1234 { + yyl4097 := r.ReadArrayStart() + if yyl4097 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4094, d) + x.codecDecodeSelfFromArray(yyl4097, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51445,12 +51501,12 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4095Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4095Slc - var yyhl4095 bool = l >= 0 - for yyj4095 := 0; ; yyj4095++ { - if yyhl4095 { - if yyj4095 >= l { + var yys4098Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4098Slc + var yyhl4098 bool = l >= 0 + for yyj4098 := 0; ; yyj4098++ { + if yyhl4098 { + if yyj4098 >= l { break } } else { @@ -51459,33 +51515,33 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4095Slc = r.DecodeBytes(yys4095Slc, true, true) - yys4095 := string(yys4095Slc) + yys4098Slc = r.DecodeBytes(yys4098Slc, true, true) + yys4098 := string(yys4098Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4095 { + switch yys4098 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4096 := &x.Hard - yyv4096.CodecDecodeSelf(d) + yyv4099 := &x.Hard + yyv4099.CodecDecodeSelf(d) } case "scopes": if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4097 := &x.Scopes - yym4098 := z.DecBinary() - _ = yym4098 + yyv4100 := &x.Scopes + yym4101 := z.DecBinary() + _ = yym4101 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4097), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4100), d) } } default: - z.DecStructFieldNotFound(-1, yys4095) - } // end switch yys4095 - } // end for yyj4095 + z.DecStructFieldNotFound(-1, yys4098) + } // end switch yys4098 + } // end for yyj4098 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51493,16 +51549,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4099 int - var yyb4099 bool - var yyhl4099 bool = l >= 0 - yyj4099++ - if yyhl4099 { - yyb4099 = yyj4099 > l + var yyj4102 int + var yyb4102 bool + var yyhl4102 bool = l >= 0 + yyj4102++ + if yyhl4102 { + yyb4102 = yyj4102 > l } else { - yyb4099 = r.CheckBreak() + yyb4102 = r.CheckBreak() } - if yyb4099 { + if yyb4102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51510,16 +51566,16 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4100 := &x.Hard - yyv4100.CodecDecodeSelf(d) + yyv4103 := &x.Hard + yyv4103.CodecDecodeSelf(d) } - yyj4099++ - if yyhl4099 { - yyb4099 = yyj4099 > l + yyj4102++ + if yyhl4102 { + yyb4102 = yyj4102 > l } else { - yyb4099 = r.CheckBreak() + yyb4102 = r.CheckBreak() } - if yyb4099 { + if yyb4102 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51527,26 +51583,26 @@ func (x *ResourceQuotaSpec) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Scopes = nil } else { - yyv4101 := &x.Scopes - yym4102 := z.DecBinary() - _ = yym4102 + yyv4104 := &x.Scopes + yym4105 := z.DecBinary() + _ = yym4105 if false { } else { - h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4101), d) + h.decSliceResourceQuotaScope((*[]ResourceQuotaScope)(yyv4104), d) } } for { - yyj4099++ - if yyhl4099 { - yyb4099 = yyj4099 > l + yyj4102++ + if yyhl4102 { + yyb4102 = yyj4102 > l } else { - yyb4099 = r.CheckBreak() + yyb4102 = r.CheckBreak() } - if yyb4099 { + if yyb4102 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4099-1, "") + z.DecStructFieldNotFound(yyj4102-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51558,34 +51614,34 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4103 := z.EncBinary() - _ = yym4103 + yym4106 := z.EncBinary() + _ = yym4106 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4104 := !z.EncBinary() - yy2arr4104 := z.EncBasicHandle().StructToArray - var yyq4104 [2]bool - _, _, _ = yysep4104, yyq4104, yy2arr4104 - const yyr4104 bool = false - yyq4104[0] = len(x.Hard) != 0 - yyq4104[1] = len(x.Used) != 0 - var yynn4104 int - if yyr4104 || yy2arr4104 { + yysep4107 := !z.EncBinary() + yy2arr4107 := z.EncBasicHandle().StructToArray + var yyq4107 [2]bool + _, _, _ = yysep4107, yyq4107, yy2arr4107 + const yyr4107 bool = false + yyq4107[0] = len(x.Hard) != 0 + yyq4107[1] = len(x.Used) != 0 + var yynn4107 int + if yyr4107 || yy2arr4107 { r.EncodeArrayStart(2) } else { - yynn4104 = 0 - for _, b := range yyq4104 { + yynn4107 = 0 + for _, b := range yyq4107 { if b { - yynn4104++ + yynn4107++ } } - r.EncodeMapStart(yynn4104) - yynn4104 = 0 + r.EncodeMapStart(yynn4107) + yynn4107 = 0 } - if yyr4104 || yy2arr4104 { + if yyr4107 || yy2arr4107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4104[0] { + if yyq4107[0] { if x.Hard == nil { r.EncodeNil() } else { @@ -51595,7 +51651,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4104[0] { + if yyq4107[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("hard")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51606,9 +51662,9 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4104 || yy2arr4104 { + if yyr4107 || yy2arr4107 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4104[1] { + if yyq4107[1] { if x.Used == nil { r.EncodeNil() } else { @@ -51618,7 +51674,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4104[1] { + if yyq4107[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("used")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -51629,7 +51685,7 @@ func (x *ResourceQuotaStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4104 || yy2arr4104 { + if yyr4107 || yy2arr4107 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51642,25 +51698,25 @@ func (x *ResourceQuotaStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4107 := z.DecBinary() - _ = yym4107 + yym4110 := z.DecBinary() + _ = yym4110 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4108 := r.ContainerType() - if yyct4108 == codecSelferValueTypeMap1234 { - yyl4108 := r.ReadMapStart() - if yyl4108 == 0 { + yyct4111 := r.ContainerType() + if yyct4111 == codecSelferValueTypeMap1234 { + yyl4111 := r.ReadMapStart() + if yyl4111 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4108, d) + x.codecDecodeSelfFromMap(yyl4111, d) } - } else if yyct4108 == codecSelferValueTypeArray1234 { - yyl4108 := r.ReadArrayStart() - if yyl4108 == 0 { + } else if yyct4111 == codecSelferValueTypeArray1234 { + yyl4111 := r.ReadArrayStart() + if yyl4111 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4108, d) + x.codecDecodeSelfFromArray(yyl4111, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51672,12 +51728,12 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4109Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4109Slc - var yyhl4109 bool = l >= 0 - for yyj4109 := 0; ; yyj4109++ { - if yyhl4109 { - if yyj4109 >= l { + var yys4112Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4112Slc + var yyhl4112 bool = l >= 0 + for yyj4112 := 0; ; yyj4112++ { + if yyhl4112 { + if yyj4112 >= l { break } } else { @@ -51686,28 +51742,28 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4109Slc = r.DecodeBytes(yys4109Slc, true, true) - yys4109 := string(yys4109Slc) + yys4112Slc = r.DecodeBytes(yys4112Slc, true, true) + yys4112 := string(yys4112Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4109 { + switch yys4112 { case "hard": if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4110 := &x.Hard - yyv4110.CodecDecodeSelf(d) + yyv4113 := &x.Hard + yyv4113.CodecDecodeSelf(d) } case "used": if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4111 := &x.Used - yyv4111.CodecDecodeSelf(d) + yyv4114 := &x.Used + yyv4114.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4109) - } // end switch yys4109 - } // end for yyj4109 + z.DecStructFieldNotFound(-1, yys4112) + } // end switch yys4112 + } // end for yyj4112 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -51715,16 +51771,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4112 int - var yyb4112 bool - var yyhl4112 bool = l >= 0 - yyj4112++ - if yyhl4112 { - yyb4112 = yyj4112 > l + var yyj4115 int + var yyb4115 bool + var yyhl4115 bool = l >= 0 + yyj4115++ + if yyhl4115 { + yyb4115 = yyj4115 > l } else { - yyb4112 = r.CheckBreak() + yyb4115 = r.CheckBreak() } - if yyb4112 { + if yyb4115 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51732,16 +51788,16 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Hard = nil } else { - yyv4113 := &x.Hard - yyv4113.CodecDecodeSelf(d) + yyv4116 := &x.Hard + yyv4116.CodecDecodeSelf(d) } - yyj4112++ - if yyhl4112 { - yyb4112 = yyj4112 > l + yyj4115++ + if yyhl4115 { + yyb4115 = yyj4115 > l } else { - yyb4112 = r.CheckBreak() + yyb4115 = r.CheckBreak() } - if yyb4112 { + if yyb4115 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -51749,21 +51805,21 @@ func (x *ResourceQuotaStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Used = nil } else { - yyv4114 := &x.Used - yyv4114.CodecDecodeSelf(d) + yyv4117 := &x.Used + yyv4117.CodecDecodeSelf(d) } for { - yyj4112++ - if yyhl4112 { - yyb4112 = yyj4112 > l + yyj4115++ + if yyhl4115 { + yyb4115 = yyj4115 > l } else { - yyb4112 = r.CheckBreak() + yyb4115 = r.CheckBreak() } - if yyb4112 { + if yyb4115 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4112-1, "") + z.DecStructFieldNotFound(yyj4115-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -51775,136 +51831,136 @@ func (x *ResourceQuota) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4115 := z.EncBinary() - _ = yym4115 + yym4118 := z.EncBinary() + _ = yym4118 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4116 := !z.EncBinary() - yy2arr4116 := z.EncBasicHandle().StructToArray - var yyq4116 [5]bool - _, _, _ = yysep4116, yyq4116, yy2arr4116 - const yyr4116 bool = false - yyq4116[0] = x.Kind != "" - yyq4116[1] = x.APIVersion != "" - yyq4116[2] = true - yyq4116[3] = true - yyq4116[4] = true - var yynn4116 int - if yyr4116 || yy2arr4116 { + yysep4119 := !z.EncBinary() + yy2arr4119 := z.EncBasicHandle().StructToArray + var yyq4119 [5]bool + _, _, _ = yysep4119, yyq4119, yy2arr4119 + const yyr4119 bool = false + yyq4119[0] = x.Kind != "" + yyq4119[1] = x.APIVersion != "" + yyq4119[2] = true + yyq4119[3] = true + yyq4119[4] = true + var yynn4119 int + if yyr4119 || yy2arr4119 { r.EncodeArrayStart(5) } else { - yynn4116 = 0 - for _, b := range yyq4116 { + yynn4119 = 0 + for _, b := range yyq4119 { if b { - yynn4116++ + yynn4119++ } } - r.EncodeMapStart(yynn4116) - yynn4116 = 0 + r.EncodeMapStart(yynn4119) + yynn4119 = 0 } - if yyr4116 || yy2arr4116 { + if yyr4119 || yy2arr4119 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4116[0] { - yym4118 := z.EncBinary() - _ = yym4118 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4116[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4119 := z.EncBinary() - _ = yym4119 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4116 || yy2arr4116 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4116[1] { + if yyq4119[0] { yym4121 := z.EncBinary() _ = yym4121 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4116[1] { + if yyq4119[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4122 := z.EncBinary() _ = yym4122 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4119 || yy2arr4119 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4119[1] { + yym4124 := z.EncBinary() + _ = yym4124 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4119[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4125 := z.EncBinary() + _ = yym4125 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4116 || yy2arr4116 { + if yyr4119 || yy2arr4119 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4116[2] { - yy4124 := &x.ObjectMeta - yy4124.CodecEncodeSelf(e) - } else { - r.EncodeNil() - } - } else { - if yyq4116[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("metadata")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4125 := &x.ObjectMeta - yy4125.CodecEncodeSelf(e) - } - } - if yyr4116 || yy2arr4116 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4116[3] { - yy4127 := &x.Spec + if yyq4119[2] { + yy4127 := &x.ObjectMeta yy4127.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4116[3] { + if yyq4119[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("spec")) + r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4128 := &x.Spec + yy4128 := &x.ObjectMeta yy4128.CodecEncodeSelf(e) } } - if yyr4116 || yy2arr4116 { + if yyr4119 || yy2arr4119 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4116[4] { - yy4130 := &x.Status + if yyq4119[3] { + yy4130 := &x.Spec yy4130.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4116[4] { + if yyq4119[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("status")) + r.EncodeString(codecSelferC_UTF81234, string("spec")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4131 := &x.Status + yy4131 := &x.Spec yy4131.CodecEncodeSelf(e) } } - if yyr4116 || yy2arr4116 { + if yyr4119 || yy2arr4119 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4119[4] { + yy4133 := &x.Status + yy4133.CodecEncodeSelf(e) + } else { + r.EncodeNil() + } + } else { + if yyq4119[4] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("status")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yy4134 := &x.Status + yy4134.CodecEncodeSelf(e) + } + } + if yyr4119 || yy2arr4119 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -51917,25 +51973,25 @@ func (x *ResourceQuota) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4132 := z.DecBinary() - _ = yym4132 + yym4135 := z.DecBinary() + _ = yym4135 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4133 := r.ContainerType() - if yyct4133 == codecSelferValueTypeMap1234 { - yyl4133 := r.ReadMapStart() - if yyl4133 == 0 { + yyct4136 := r.ContainerType() + if yyct4136 == codecSelferValueTypeMap1234 { + yyl4136 := r.ReadMapStart() + if yyl4136 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4133, d) + x.codecDecodeSelfFromMap(yyl4136, d) } - } else if yyct4133 == codecSelferValueTypeArray1234 { - yyl4133 := r.ReadArrayStart() - if yyl4133 == 0 { + } else if yyct4136 == codecSelferValueTypeArray1234 { + yyl4136 := r.ReadArrayStart() + if yyl4136 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4133, d) + x.codecDecodeSelfFromArray(yyl4136, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -51947,12 +52003,12 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4134Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4134Slc - var yyhl4134 bool = l >= 0 - for yyj4134 := 0; ; yyj4134++ { - if yyhl4134 { - if yyj4134 >= l { + var yys4137Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4137Slc + var yyhl4137 bool = l >= 0 + for yyj4137 := 0; ; yyj4137++ { + if yyhl4137 { + if yyj4137 >= l { break } } else { @@ -51961,10 +52017,10 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4134Slc = r.DecodeBytes(yys4134Slc, true, true) - yys4134 := string(yys4134Slc) + yys4137Slc = r.DecodeBytes(yys4137Slc, true, true) + yys4137 := string(yys4137Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4134 { + switch yys4137 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -51981,27 +52037,27 @@ func (x *ResourceQuota) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4137 := &x.ObjectMeta - yyv4137.CodecDecodeSelf(d) + yyv4140 := &x.ObjectMeta + yyv4140.CodecDecodeSelf(d) } case "spec": if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4138 := &x.Spec - yyv4138.CodecDecodeSelf(d) + yyv4141 := &x.Spec + yyv4141.CodecDecodeSelf(d) } case "status": if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4139 := &x.Status - yyv4139.CodecDecodeSelf(d) + yyv4142 := &x.Status + yyv4142.CodecDecodeSelf(d) } default: - z.DecStructFieldNotFound(-1, yys4134) - } // end switch yys4134 - } // end for yyj4134 + z.DecStructFieldNotFound(-1, yys4137) + } // end switch yys4137 + } // end for yyj4137 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52009,16 +52065,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4140 int - var yyb4140 bool - var yyhl4140 bool = l >= 0 - yyj4140++ - if yyhl4140 { - yyb4140 = yyj4140 > l + var yyj4143 int + var yyb4143 bool + var yyhl4143 bool = l >= 0 + yyj4143++ + if yyhl4143 { + yyb4143 = yyj4143 > l } else { - yyb4140 = r.CheckBreak() + yyb4143 = r.CheckBreak() } - if yyb4140 { + if yyb4143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52028,13 +52084,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4140++ - if yyhl4140 { - yyb4140 = yyj4140 > l + yyj4143++ + if yyhl4143 { + yyb4143 = yyj4143 > l } else { - yyb4140 = r.CheckBreak() + yyb4143 = r.CheckBreak() } - if yyb4140 { + if yyb4143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52044,13 +52100,13 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4140++ - if yyhl4140 { - yyb4140 = yyj4140 > l + yyj4143++ + if yyhl4143 { + yyb4143 = yyj4143 > l } else { - yyb4140 = r.CheckBreak() + yyb4143 = r.CheckBreak() } - if yyb4140 { + if yyb4143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52058,16 +52114,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4143 := &x.ObjectMeta - yyv4143.CodecDecodeSelf(d) + yyv4146 := &x.ObjectMeta + yyv4146.CodecDecodeSelf(d) } - yyj4140++ - if yyhl4140 { - yyb4140 = yyj4140 > l + yyj4143++ + if yyhl4143 { + yyb4143 = yyj4143 > l } else { - yyb4140 = r.CheckBreak() + yyb4143 = r.CheckBreak() } - if yyb4140 { + if yyb4143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52075,16 +52131,16 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Spec = ResourceQuotaSpec{} } else { - yyv4144 := &x.Spec - yyv4144.CodecDecodeSelf(d) + yyv4147 := &x.Spec + yyv4147.CodecDecodeSelf(d) } - yyj4140++ - if yyhl4140 { - yyb4140 = yyj4140 > l + yyj4143++ + if yyhl4143 { + yyb4143 = yyj4143 > l } else { - yyb4140 = r.CheckBreak() + yyb4143 = r.CheckBreak() } - if yyb4140 { + if yyb4143 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52092,21 +52148,21 @@ func (x *ResourceQuota) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Status = ResourceQuotaStatus{} } else { - yyv4145 := &x.Status - yyv4145.CodecDecodeSelf(d) + yyv4148 := &x.Status + yyv4148.CodecDecodeSelf(d) } for { - yyj4140++ - if yyhl4140 { - yyb4140 = yyj4140 > l + yyj4143++ + if yyhl4143 { + yyb4143 = yyj4143 > l } else { - yyb4140 = r.CheckBreak() + yyb4143 = r.CheckBreak() } - if yyb4140 { + if yyb4143 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4140-1, "") + z.DecStructFieldNotFound(yyj4143-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52118,118 +52174,118 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4146 := z.EncBinary() - _ = yym4146 + yym4149 := z.EncBinary() + _ = yym4149 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4147 := !z.EncBinary() - yy2arr4147 := z.EncBasicHandle().StructToArray - var yyq4147 [4]bool - _, _, _ = yysep4147, yyq4147, yy2arr4147 - const yyr4147 bool = false - yyq4147[0] = x.Kind != "" - yyq4147[1] = x.APIVersion != "" - yyq4147[2] = true - var yynn4147 int - if yyr4147 || yy2arr4147 { + yysep4150 := !z.EncBinary() + yy2arr4150 := z.EncBasicHandle().StructToArray + var yyq4150 [4]bool + _, _, _ = yysep4150, yyq4150, yy2arr4150 + const yyr4150 bool = false + yyq4150[0] = x.Kind != "" + yyq4150[1] = x.APIVersion != "" + yyq4150[2] = true + var yynn4150 int + if yyr4150 || yy2arr4150 { r.EncodeArrayStart(4) } else { - yynn4147 = 1 - for _, b := range yyq4147 { + yynn4150 = 1 + for _, b := range yyq4150 { if b { - yynn4147++ + yynn4150++ } } - r.EncodeMapStart(yynn4147) - yynn4147 = 0 + r.EncodeMapStart(yynn4150) + yynn4150 = 0 } - if yyr4147 || yy2arr4147 { + if yyr4150 || yy2arr4150 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4147[0] { - yym4149 := z.EncBinary() - _ = yym4149 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4147[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4150 := z.EncBinary() - _ = yym4150 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4147 || yy2arr4147 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4147[1] { + if yyq4150[0] { yym4152 := z.EncBinary() _ = yym4152 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4147[1] { + if yyq4150[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4153 := z.EncBinary() _ = yym4153 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4150 || yy2arr4150 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4150[1] { + yym4155 := z.EncBinary() + _ = yym4155 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4150[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4156 := z.EncBinary() + _ = yym4156 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4147 || yy2arr4147 { + if yyr4150 || yy2arr4150 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4147[2] { - yy4155 := &x.ListMeta - yym4156 := z.EncBinary() - _ = yym4156 + if yyq4150[2] { + yy4158 := &x.ListMeta + yym4159 := z.EncBinary() + _ = yym4159 if false { - } else if z.HasExtensions() && z.EncExt(yy4155) { + } else if z.HasExtensions() && z.EncExt(yy4158) { } else { - z.EncFallback(yy4155) + z.EncFallback(yy4158) } } else { r.EncodeNil() } } else { - if yyq4147[2] { + if yyq4150[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4157 := &x.ListMeta - yym4158 := z.EncBinary() - _ = yym4158 + yy4160 := &x.ListMeta + yym4161 := z.EncBinary() + _ = yym4161 if false { - } else if z.HasExtensions() && z.EncExt(yy4157) { + } else if z.HasExtensions() && z.EncExt(yy4160) { } else { - z.EncFallback(yy4157) + z.EncFallback(yy4160) } } } - if yyr4147 || yy2arr4147 { + if yyr4150 || yy2arr4150 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4160 := z.EncBinary() - _ = yym4160 + yym4163 := z.EncBinary() + _ = yym4163 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) @@ -52242,15 +52298,15 @@ func (x *ResourceQuotaList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4161 := z.EncBinary() - _ = yym4161 + yym4164 := z.EncBinary() + _ = yym4164 if false { } else { h.encSliceResourceQuota(([]ResourceQuota)(x.Items), e) } } } - if yyr4147 || yy2arr4147 { + if yyr4150 || yy2arr4150 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52263,25 +52319,25 @@ func (x *ResourceQuotaList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4162 := z.DecBinary() - _ = yym4162 + yym4165 := z.DecBinary() + _ = yym4165 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4163 := r.ContainerType() - if yyct4163 == codecSelferValueTypeMap1234 { - yyl4163 := r.ReadMapStart() - if yyl4163 == 0 { + yyct4166 := r.ContainerType() + if yyct4166 == codecSelferValueTypeMap1234 { + yyl4166 := r.ReadMapStart() + if yyl4166 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4163, d) + x.codecDecodeSelfFromMap(yyl4166, d) } - } else if yyct4163 == codecSelferValueTypeArray1234 { - yyl4163 := r.ReadArrayStart() - if yyl4163 == 0 { + } else if yyct4166 == codecSelferValueTypeArray1234 { + yyl4166 := r.ReadArrayStart() + if yyl4166 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4163, d) + x.codecDecodeSelfFromArray(yyl4166, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52293,12 +52349,12 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4164Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4164Slc - var yyhl4164 bool = l >= 0 - for yyj4164 := 0; ; yyj4164++ { - if yyhl4164 { - if yyj4164 >= l { + var yys4167Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4167Slc + var yyhl4167 bool = l >= 0 + for yyj4167 := 0; ; yyj4167++ { + if yyhl4167 { + if yyj4167 >= l { break } } else { @@ -52307,10 +52363,10 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4164Slc = r.DecodeBytes(yys4164Slc, true, true) - yys4164 := string(yys4164Slc) + yys4167Slc = r.DecodeBytes(yys4167Slc, true, true) + yys4167 := string(yys4167Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4164 { + switch yys4167 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52327,31 +52383,31 @@ func (x *ResourceQuotaList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4167 := &x.ListMeta - yym4168 := z.DecBinary() - _ = yym4168 + yyv4170 := &x.ListMeta + yym4171 := z.DecBinary() + _ = yym4171 if false { - } else if z.HasExtensions() && z.DecExt(yyv4167) { + } else if z.HasExtensions() && z.DecExt(yyv4170) { } else { - z.DecFallback(yyv4167, false) + z.DecFallback(yyv4170, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4169 := &x.Items - yym4170 := z.DecBinary() - _ = yym4170 + yyv4172 := &x.Items + yym4173 := z.DecBinary() + _ = yym4173 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4169), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4172), d) } } default: - z.DecStructFieldNotFound(-1, yys4164) - } // end switch yys4164 - } // end for yyj4164 + z.DecStructFieldNotFound(-1, yys4167) + } // end switch yys4167 + } // end for yyj4167 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52359,16 +52415,16 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4171 int - var yyb4171 bool - var yyhl4171 bool = l >= 0 - yyj4171++ - if yyhl4171 { - yyb4171 = yyj4171 > l + var yyj4174 int + var yyb4174 bool + var yyhl4174 bool = l >= 0 + yyj4174++ + if yyhl4174 { + yyb4174 = yyj4174 > l } else { - yyb4171 = r.CheckBreak() + yyb4174 = r.CheckBreak() } - if yyb4171 { + if yyb4174 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52378,13 +52434,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.Kind = string(r.DecodeString()) } - yyj4171++ - if yyhl4171 { - yyb4171 = yyj4171 > l + yyj4174++ + if yyhl4174 { + yyb4174 = yyj4174 > l } else { - yyb4171 = r.CheckBreak() + yyb4174 = r.CheckBreak() } - if yyb4171 { + if yyb4174 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52394,13 +52450,13 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder } else { x.APIVersion = string(r.DecodeString()) } - yyj4171++ - if yyhl4171 { - yyb4171 = yyj4171 > l + yyj4174++ + if yyhl4174 { + yyb4174 = yyj4174 > l } else { - yyb4171 = r.CheckBreak() + yyb4174 = r.CheckBreak() } - if yyb4171 { + if yyb4174 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52408,22 +52464,22 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4174 := &x.ListMeta - yym4175 := z.DecBinary() - _ = yym4175 + yyv4177 := &x.ListMeta + yym4178 := z.DecBinary() + _ = yym4178 if false { - } else if z.HasExtensions() && z.DecExt(yyv4174) { + } else if z.HasExtensions() && z.DecExt(yyv4177) { } else { - z.DecFallback(yyv4174, false) + z.DecFallback(yyv4177, false) } } - yyj4171++ - if yyhl4171 { - yyb4171 = yyj4171 > l + yyj4174++ + if yyhl4174 { + yyb4174 = yyj4174 > l } else { - yyb4171 = r.CheckBreak() + yyb4174 = r.CheckBreak() } - if yyb4171 { + if yyb4174 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52431,26 +52487,26 @@ func (x *ResourceQuotaList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4176 := &x.Items - yym4177 := z.DecBinary() - _ = yym4177 + yyv4179 := &x.Items + yym4180 := z.DecBinary() + _ = yym4180 if false { } else { - h.decSliceResourceQuota((*[]ResourceQuota)(yyv4176), d) + h.decSliceResourceQuota((*[]ResourceQuota)(yyv4179), d) } } for { - yyj4171++ - if yyhl4171 { - yyb4171 = yyj4171 > l + yyj4174++ + if yyhl4174 { + yyb4174 = yyj4174 > l } else { - yyb4171 = r.CheckBreak() + yyb4174 = r.CheckBreak() } - if yyb4171 { + if yyb4174 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4171-1, "") + z.DecStructFieldNotFound(yyj4174-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52462,144 +52518,144 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4178 := z.EncBinary() - _ = yym4178 + yym4181 := z.EncBinary() + _ = yym4181 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4179 := !z.EncBinary() - yy2arr4179 := z.EncBasicHandle().StructToArray - var yyq4179 [6]bool - _, _, _ = yysep4179, yyq4179, yy2arr4179 - const yyr4179 bool = false - yyq4179[0] = x.Kind != "" - yyq4179[1] = x.APIVersion != "" - yyq4179[2] = true - yyq4179[3] = len(x.Data) != 0 - yyq4179[4] = len(x.StringData) != 0 - yyq4179[5] = x.Type != "" - var yynn4179 int - if yyr4179 || yy2arr4179 { + yysep4182 := !z.EncBinary() + yy2arr4182 := z.EncBasicHandle().StructToArray + var yyq4182 [6]bool + _, _, _ = yysep4182, yyq4182, yy2arr4182 + const yyr4182 bool = false + yyq4182[0] = x.Kind != "" + yyq4182[1] = x.APIVersion != "" + yyq4182[2] = true + yyq4182[3] = len(x.Data) != 0 + yyq4182[4] = len(x.StringData) != 0 + yyq4182[5] = x.Type != "" + var yynn4182 int + if yyr4182 || yy2arr4182 { r.EncodeArrayStart(6) } else { - yynn4179 = 0 - for _, b := range yyq4179 { + yynn4182 = 0 + for _, b := range yyq4182 { if b { - yynn4179++ + yynn4182++ } } - r.EncodeMapStart(yynn4179) - yynn4179 = 0 + r.EncodeMapStart(yynn4182) + yynn4182 = 0 } - if yyr4179 || yy2arr4179 { + if yyr4182 || yy2arr4182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4179[0] { - yym4181 := z.EncBinary() - _ = yym4181 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4179[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4182 := z.EncBinary() - _ = yym4182 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4179 || yy2arr4179 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4179[1] { + if yyq4182[0] { yym4184 := z.EncBinary() _ = yym4184 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4179[1] { + if yyq4182[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4185 := z.EncBinary() _ = yym4185 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4182 || yy2arr4182 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4182[1] { + yym4187 := z.EncBinary() + _ = yym4187 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4182[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4188 := z.EncBinary() + _ = yym4188 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4179 || yy2arr4179 { + if yyr4182 || yy2arr4182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4179[2] { - yy4187 := &x.ObjectMeta - yy4187.CodecEncodeSelf(e) + if yyq4182[2] { + yy4190 := &x.ObjectMeta + yy4190.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4179[2] { + if yyq4182[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4188 := &x.ObjectMeta - yy4188.CodecEncodeSelf(e) + yy4191 := &x.ObjectMeta + yy4191.CodecEncodeSelf(e) } } - if yyr4179 || yy2arr4179 { + if yyr4182 || yy2arr4182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4179[3] { + if yyq4182[3] { if x.Data == nil { r.EncodeNil() - } else { - yym4190 := z.EncBinary() - _ = yym4190 - if false { - } else { - h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) - } - } - } else { - r.EncodeNil() - } - } else { - if yyq4179[3] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("data")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - if x.Data == nil { - r.EncodeNil() - } else { - yym4191 := z.EncBinary() - _ = yym4191 - if false { - } else { - h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) - } - } - } - } - if yyr4179 || yy2arr4179 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4179[4] { - if x.StringData == nil { - r.EncodeNil() } else { yym4193 := z.EncBinary() _ = yym4193 if false { + } else { + h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) + } + } + } else { + r.EncodeNil() + } + } else { + if yyq4182[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("data")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + if x.Data == nil { + r.EncodeNil() + } else { + yym4194 := z.EncBinary() + _ = yym4194 + if false { + } else { + h.encMapstringSliceuint8((map[string][]uint8)(x.Data), e) + } + } + } + } + if yyr4182 || yy2arr4182 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4182[4] { + if x.StringData == nil { + r.EncodeNil() + } else { + yym4196 := z.EncBinary() + _ = yym4196 + if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) } @@ -52608,15 +52664,15 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4179[4] { + if yyq4182[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("stringData")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.StringData == nil { r.EncodeNil() } else { - yym4194 := z.EncBinary() - _ = yym4194 + yym4197 := z.EncBinary() + _ = yym4197 if false { } else { z.F.EncMapStringStringV(x.StringData, false, e) @@ -52624,22 +52680,22 @@ func (x *Secret) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4179 || yy2arr4179 { + if yyr4182 || yy2arr4182 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4179[5] { + if yyq4182[5] { x.Type.CodecEncodeSelf(e) } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4179[5] { + if yyq4182[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("type")) z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } } - if yyr4179 || yy2arr4179 { + if yyr4182 || yy2arr4182 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -52652,25 +52708,25 @@ func (x *Secret) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4196 := z.DecBinary() - _ = yym4196 + yym4199 := z.DecBinary() + _ = yym4199 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4197 := r.ContainerType() - if yyct4197 == codecSelferValueTypeMap1234 { - yyl4197 := r.ReadMapStart() - if yyl4197 == 0 { + yyct4200 := r.ContainerType() + if yyct4200 == codecSelferValueTypeMap1234 { + yyl4200 := r.ReadMapStart() + if yyl4200 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4197, d) + x.codecDecodeSelfFromMap(yyl4200, d) } - } else if yyct4197 == codecSelferValueTypeArray1234 { - yyl4197 := r.ReadArrayStart() - if yyl4197 == 0 { + } else if yyct4200 == codecSelferValueTypeArray1234 { + yyl4200 := r.ReadArrayStart() + if yyl4200 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4197, d) + x.codecDecodeSelfFromArray(yyl4200, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -52682,12 +52738,12 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4198Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4198Slc - var yyhl4198 bool = l >= 0 - for yyj4198 := 0; ; yyj4198++ { - if yyhl4198 { - if yyj4198 >= l { + var yys4201Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4201Slc + var yyhl4201 bool = l >= 0 + for yyj4201 := 0; ; yyj4201++ { + if yyhl4201 { + if yyj4201 >= l { break } } else { @@ -52696,10 +52752,10 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4198Slc = r.DecodeBytes(yys4198Slc, true, true) - yys4198 := string(yys4198Slc) + yys4201Slc = r.DecodeBytes(yys4201Slc, true, true) + yys4201 := string(yys4201Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4198 { + switch yys4201 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -52716,31 +52772,31 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4201 := &x.ObjectMeta - yyv4201.CodecDecodeSelf(d) + yyv4204 := &x.ObjectMeta + yyv4204.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4202 := &x.Data - yym4203 := z.DecBinary() - _ = yym4203 + yyv4205 := &x.Data + yym4206 := z.DecBinary() + _ = yym4206 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4202), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4205), d) } } case "stringData": if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4204 := &x.StringData - yym4205 := z.DecBinary() - _ = yym4205 + yyv4207 := &x.StringData + yym4208 := z.DecBinary() + _ = yym4208 if false { } else { - z.F.DecMapStringStringX(yyv4204, false, d) + z.F.DecMapStringStringX(yyv4207, false, d) } } case "type": @@ -52750,9 +52806,9 @@ func (x *Secret) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4198) - } // end switch yys4198 - } // end for yyj4198 + z.DecStructFieldNotFound(-1, yys4201) + } // end switch yys4201 + } // end for yyj4201 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -52760,16 +52816,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4207 int - var yyb4207 bool - var yyhl4207 bool = l >= 0 - yyj4207++ - if yyhl4207 { - yyb4207 = yyj4207 > l + var yyj4210 int + var yyb4210 bool + var yyhl4210 bool = l >= 0 + yyj4210++ + if yyhl4210 { + yyb4210 = yyj4210 > l } else { - yyb4207 = r.CheckBreak() + yyb4210 = r.CheckBreak() } - if yyb4207 { + if yyb4210 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52779,13 +52835,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4207++ - if yyhl4207 { - yyb4207 = yyj4207 > l + yyj4210++ + if yyhl4210 { + yyb4210 = yyj4210 > l } else { - yyb4207 = r.CheckBreak() + yyb4210 = r.CheckBreak() } - if yyb4207 { + if yyb4210 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52795,13 +52851,13 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4207++ - if yyhl4207 { - yyb4207 = yyj4207 > l + yyj4210++ + if yyhl4210 { + yyb4210 = yyj4210 > l } else { - yyb4207 = r.CheckBreak() + yyb4210 = r.CheckBreak() } - if yyb4207 { + if yyb4210 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52809,16 +52865,16 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4210 := &x.ObjectMeta - yyv4210.CodecDecodeSelf(d) + yyv4213 := &x.ObjectMeta + yyv4213.CodecDecodeSelf(d) } - yyj4207++ - if yyhl4207 { - yyb4207 = yyj4207 > l + yyj4210++ + if yyhl4210 { + yyb4210 = yyj4210 > l } else { - yyb4207 = r.CheckBreak() + yyb4210 = r.CheckBreak() } - if yyb4207 { + if yyb4210 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52826,21 +52882,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4211 := &x.Data - yym4212 := z.DecBinary() - _ = yym4212 + yyv4214 := &x.Data + yym4215 := z.DecBinary() + _ = yym4215 if false { } else { - h.decMapstringSliceuint8((*map[string][]uint8)(yyv4211), d) + h.decMapstringSliceuint8((*map[string][]uint8)(yyv4214), d) } } - yyj4207++ - if yyhl4207 { - yyb4207 = yyj4207 > l + yyj4210++ + if yyhl4210 { + yyb4210 = yyj4210 > l } else { - yyb4207 = r.CheckBreak() + yyb4210 = r.CheckBreak() } - if yyb4207 { + if yyb4210 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52848,21 +52904,21 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.StringData = nil } else { - yyv4213 := &x.StringData - yym4214 := z.DecBinary() - _ = yym4214 + yyv4216 := &x.StringData + yym4217 := z.DecBinary() + _ = yym4217 if false { } else { - z.F.DecMapStringStringX(yyv4213, false, d) + z.F.DecMapStringStringX(yyv4216, false, d) } } - yyj4207++ - if yyhl4207 { - yyb4207 = yyj4207 > l + yyj4210++ + if yyhl4210 { + yyb4210 = yyj4210 > l } else { - yyb4207 = r.CheckBreak() + yyb4210 = r.CheckBreak() } - if yyb4207 { + if yyb4210 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -52873,17 +52929,17 @@ func (x *Secret) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Type = SecretType(r.DecodeString()) } for { - yyj4207++ - if yyhl4207 { - yyb4207 = yyj4207 > l + yyj4210++ + if yyhl4210 { + yyb4210 = yyj4210 > l } else { - yyb4207 = r.CheckBreak() + yyb4210 = r.CheckBreak() } - if yyb4207 { + if yyb4210 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4207-1, "") + z.DecStructFieldNotFound(yyj4210-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -52892,8 +52948,8 @@ func (x SecretType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4216 := z.EncBinary() - _ = yym4216 + yym4219 := z.EncBinary() + _ = yym4219 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -52905,8 +52961,8 @@ func (x *SecretType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4217 := z.DecBinary() - _ = yym4217 + yym4220 := z.DecBinary() + _ = yym4220 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -52921,118 +52977,118 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4218 := z.EncBinary() - _ = yym4218 + yym4221 := z.EncBinary() + _ = yym4221 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4219 := !z.EncBinary() - yy2arr4219 := z.EncBasicHandle().StructToArray - var yyq4219 [4]bool - _, _, _ = yysep4219, yyq4219, yy2arr4219 - const yyr4219 bool = false - yyq4219[0] = x.Kind != "" - yyq4219[1] = x.APIVersion != "" - yyq4219[2] = true - var yynn4219 int - if yyr4219 || yy2arr4219 { + yysep4222 := !z.EncBinary() + yy2arr4222 := z.EncBasicHandle().StructToArray + var yyq4222 [4]bool + _, _, _ = yysep4222, yyq4222, yy2arr4222 + const yyr4222 bool = false + yyq4222[0] = x.Kind != "" + yyq4222[1] = x.APIVersion != "" + yyq4222[2] = true + var yynn4222 int + if yyr4222 || yy2arr4222 { r.EncodeArrayStart(4) } else { - yynn4219 = 1 - for _, b := range yyq4219 { + yynn4222 = 1 + for _, b := range yyq4222 { if b { - yynn4219++ + yynn4222++ } } - r.EncodeMapStart(yynn4219) - yynn4219 = 0 + r.EncodeMapStart(yynn4222) + yynn4222 = 0 } - if yyr4219 || yy2arr4219 { + if yyr4222 || yy2arr4222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4219[0] { - yym4221 := z.EncBinary() - _ = yym4221 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4219[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4222 := z.EncBinary() - _ = yym4222 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4219 || yy2arr4219 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4219[1] { + if yyq4222[0] { yym4224 := z.EncBinary() _ = yym4224 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4219[1] { + if yyq4222[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4225 := z.EncBinary() _ = yym4225 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4222 || yy2arr4222 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4222[1] { + yym4227 := z.EncBinary() + _ = yym4227 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4222[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4228 := z.EncBinary() + _ = yym4228 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4219 || yy2arr4219 { + if yyr4222 || yy2arr4222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4219[2] { - yy4227 := &x.ListMeta - yym4228 := z.EncBinary() - _ = yym4228 + if yyq4222[2] { + yy4230 := &x.ListMeta + yym4231 := z.EncBinary() + _ = yym4231 if false { - } else if z.HasExtensions() && z.EncExt(yy4227) { + } else if z.HasExtensions() && z.EncExt(yy4230) { } else { - z.EncFallback(yy4227) + z.EncFallback(yy4230) } } else { r.EncodeNil() } } else { - if yyq4219[2] { + if yyq4222[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4229 := &x.ListMeta - yym4230 := z.EncBinary() - _ = yym4230 + yy4232 := &x.ListMeta + yym4233 := z.EncBinary() + _ = yym4233 if false { - } else if z.HasExtensions() && z.EncExt(yy4229) { + } else if z.HasExtensions() && z.EncExt(yy4232) { } else { - z.EncFallback(yy4229) + z.EncFallback(yy4232) } } } - if yyr4219 || yy2arr4219 { + if yyr4222 || yy2arr4222 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4232 := z.EncBinary() - _ = yym4232 + yym4235 := z.EncBinary() + _ = yym4235 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) @@ -53045,15 +53101,15 @@ func (x *SecretList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4233 := z.EncBinary() - _ = yym4233 + yym4236 := z.EncBinary() + _ = yym4236 if false { } else { h.encSliceSecret(([]Secret)(x.Items), e) } } } - if yyr4219 || yy2arr4219 { + if yyr4222 || yy2arr4222 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53066,25 +53122,25 @@ func (x *SecretList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4234 := z.DecBinary() - _ = yym4234 + yym4237 := z.DecBinary() + _ = yym4237 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4235 := r.ContainerType() - if yyct4235 == codecSelferValueTypeMap1234 { - yyl4235 := r.ReadMapStart() - if yyl4235 == 0 { + yyct4238 := r.ContainerType() + if yyct4238 == codecSelferValueTypeMap1234 { + yyl4238 := r.ReadMapStart() + if yyl4238 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4235, d) + x.codecDecodeSelfFromMap(yyl4238, d) } - } else if yyct4235 == codecSelferValueTypeArray1234 { - yyl4235 := r.ReadArrayStart() - if yyl4235 == 0 { + } else if yyct4238 == codecSelferValueTypeArray1234 { + yyl4238 := r.ReadArrayStart() + if yyl4238 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4235, d) + x.codecDecodeSelfFromArray(yyl4238, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53096,12 +53152,12 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4236Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4236Slc - var yyhl4236 bool = l >= 0 - for yyj4236 := 0; ; yyj4236++ { - if yyhl4236 { - if yyj4236 >= l { + var yys4239Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4239Slc + var yyhl4239 bool = l >= 0 + for yyj4239 := 0; ; yyj4239++ { + if yyhl4239 { + if yyj4239 >= l { break } } else { @@ -53110,10 +53166,10 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4236Slc = r.DecodeBytes(yys4236Slc, true, true) - yys4236 := string(yys4236Slc) + yys4239Slc = r.DecodeBytes(yys4239Slc, true, true) + yys4239 := string(yys4239Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4236 { + switch yys4239 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53130,31 +53186,31 @@ func (x *SecretList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4239 := &x.ListMeta - yym4240 := z.DecBinary() - _ = yym4240 + yyv4242 := &x.ListMeta + yym4243 := z.DecBinary() + _ = yym4243 if false { - } else if z.HasExtensions() && z.DecExt(yyv4239) { + } else if z.HasExtensions() && z.DecExt(yyv4242) { } else { - z.DecFallback(yyv4239, false) + z.DecFallback(yyv4242, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4241 := &x.Items - yym4242 := z.DecBinary() - _ = yym4242 + yyv4244 := &x.Items + yym4245 := z.DecBinary() + _ = yym4245 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4241), d) + h.decSliceSecret((*[]Secret)(yyv4244), d) } } default: - z.DecStructFieldNotFound(-1, yys4236) - } // end switch yys4236 - } // end for yyj4236 + z.DecStructFieldNotFound(-1, yys4239) + } // end switch yys4239 + } // end for yyj4239 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53162,16 +53218,16 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4243 int - var yyb4243 bool - var yyhl4243 bool = l >= 0 - yyj4243++ - if yyhl4243 { - yyb4243 = yyj4243 > l + var yyj4246 int + var yyb4246 bool + var yyhl4246 bool = l >= 0 + yyj4246++ + if yyhl4246 { + yyb4246 = yyj4246 > l } else { - yyb4243 = r.CheckBreak() + yyb4246 = r.CheckBreak() } - if yyb4243 { + if yyb4246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53181,13 +53237,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4243++ - if yyhl4243 { - yyb4243 = yyj4243 > l + yyj4246++ + if yyhl4246 { + yyb4246 = yyj4246 > l } else { - yyb4243 = r.CheckBreak() + yyb4246 = r.CheckBreak() } - if yyb4243 { + if yyb4246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53197,13 +53253,13 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4243++ - if yyhl4243 { - yyb4243 = yyj4243 > l + yyj4246++ + if yyhl4246 { + yyb4246 = yyj4246 > l } else { - yyb4243 = r.CheckBreak() + yyb4246 = r.CheckBreak() } - if yyb4243 { + if yyb4246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53211,22 +53267,22 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4246 := &x.ListMeta - yym4247 := z.DecBinary() - _ = yym4247 + yyv4249 := &x.ListMeta + yym4250 := z.DecBinary() + _ = yym4250 if false { - } else if z.HasExtensions() && z.DecExt(yyv4246) { + } else if z.HasExtensions() && z.DecExt(yyv4249) { } else { - z.DecFallback(yyv4246, false) + z.DecFallback(yyv4249, false) } } - yyj4243++ - if yyhl4243 { - yyb4243 = yyj4243 > l + yyj4246++ + if yyhl4246 { + yyb4246 = yyj4246 > l } else { - yyb4243 = r.CheckBreak() + yyb4246 = r.CheckBreak() } - if yyb4243 { + if yyb4246 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53234,26 +53290,26 @@ func (x *SecretList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4248 := &x.Items - yym4249 := z.DecBinary() - _ = yym4249 + yyv4251 := &x.Items + yym4252 := z.DecBinary() + _ = yym4252 if false { } else { - h.decSliceSecret((*[]Secret)(yyv4248), d) + h.decSliceSecret((*[]Secret)(yyv4251), d) } } for { - yyj4243++ - if yyhl4243 { - yyb4243 = yyj4243 > l + yyj4246++ + if yyhl4246 { + yyb4246 = yyj4246 > l } else { - yyb4243 = r.CheckBreak() + yyb4246 = r.CheckBreak() } - if yyb4243 { + if yyb4246 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4243-1, "") + z.DecStructFieldNotFound(yyj4246-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53265,108 +53321,108 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4250 := z.EncBinary() - _ = yym4250 + yym4253 := z.EncBinary() + _ = yym4253 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4251 := !z.EncBinary() - yy2arr4251 := z.EncBasicHandle().StructToArray - var yyq4251 [4]bool - _, _, _ = yysep4251, yyq4251, yy2arr4251 - const yyr4251 bool = false - yyq4251[0] = x.Kind != "" - yyq4251[1] = x.APIVersion != "" - yyq4251[2] = true - yyq4251[3] = len(x.Data) != 0 - var yynn4251 int - if yyr4251 || yy2arr4251 { + yysep4254 := !z.EncBinary() + yy2arr4254 := z.EncBasicHandle().StructToArray + var yyq4254 [4]bool + _, _, _ = yysep4254, yyq4254, yy2arr4254 + const yyr4254 bool = false + yyq4254[0] = x.Kind != "" + yyq4254[1] = x.APIVersion != "" + yyq4254[2] = true + yyq4254[3] = len(x.Data) != 0 + var yynn4254 int + if yyr4254 || yy2arr4254 { r.EncodeArrayStart(4) } else { - yynn4251 = 0 - for _, b := range yyq4251 { + yynn4254 = 0 + for _, b := range yyq4254 { if b { - yynn4251++ + yynn4254++ } } - r.EncodeMapStart(yynn4251) - yynn4251 = 0 + r.EncodeMapStart(yynn4254) + yynn4254 = 0 } - if yyr4251 || yy2arr4251 { + if yyr4254 || yy2arr4254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4251[0] { - yym4253 := z.EncBinary() - _ = yym4253 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4251[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4254 := z.EncBinary() - _ = yym4254 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4251 || yy2arr4251 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4251[1] { + if yyq4254[0] { yym4256 := z.EncBinary() _ = yym4256 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4251[1] { + if yyq4254[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4257 := z.EncBinary() _ = yym4257 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4254 || yy2arr4254 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4254[1] { + yym4259 := z.EncBinary() + _ = yym4259 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4254[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4260 := z.EncBinary() + _ = yym4260 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4251 || yy2arr4251 { + if yyr4254 || yy2arr4254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4251[2] { - yy4259 := &x.ObjectMeta - yy4259.CodecEncodeSelf(e) + if yyq4254[2] { + yy4262 := &x.ObjectMeta + yy4262.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4251[2] { + if yyq4254[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4260 := &x.ObjectMeta - yy4260.CodecEncodeSelf(e) + yy4263 := &x.ObjectMeta + yy4263.CodecEncodeSelf(e) } } - if yyr4251 || yy2arr4251 { + if yyr4254 || yy2arr4254 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4251[3] { + if yyq4254[3] { if x.Data == nil { r.EncodeNil() } else { - yym4262 := z.EncBinary() - _ = yym4262 + yym4265 := z.EncBinary() + _ = yym4265 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -53376,15 +53432,15 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4251[3] { + if yyq4254[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("data")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Data == nil { r.EncodeNil() } else { - yym4263 := z.EncBinary() - _ = yym4263 + yym4266 := z.EncBinary() + _ = yym4266 if false { } else { z.F.EncMapStringStringV(x.Data, false, e) @@ -53392,7 +53448,7 @@ func (x *ConfigMap) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4251 || yy2arr4251 { + if yyr4254 || yy2arr4254 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53405,25 +53461,25 @@ func (x *ConfigMap) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4264 := z.DecBinary() - _ = yym4264 + yym4267 := z.DecBinary() + _ = yym4267 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4265 := r.ContainerType() - if yyct4265 == codecSelferValueTypeMap1234 { - yyl4265 := r.ReadMapStart() - if yyl4265 == 0 { + yyct4268 := r.ContainerType() + if yyct4268 == codecSelferValueTypeMap1234 { + yyl4268 := r.ReadMapStart() + if yyl4268 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4265, d) + x.codecDecodeSelfFromMap(yyl4268, d) } - } else if yyct4265 == codecSelferValueTypeArray1234 { - yyl4265 := r.ReadArrayStart() - if yyl4265 == 0 { + } else if yyct4268 == codecSelferValueTypeArray1234 { + yyl4268 := r.ReadArrayStart() + if yyl4268 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4265, d) + x.codecDecodeSelfFromArray(yyl4268, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53435,12 +53491,12 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4266Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4266Slc - var yyhl4266 bool = l >= 0 - for yyj4266 := 0; ; yyj4266++ { - if yyhl4266 { - if yyj4266 >= l { + var yys4269Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4269Slc + var yyhl4269 bool = l >= 0 + for yyj4269 := 0; ; yyj4269++ { + if yyhl4269 { + if yyj4269 >= l { break } } else { @@ -53449,10 +53505,10 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4266Slc = r.DecodeBytes(yys4266Slc, true, true) - yys4266 := string(yys4266Slc) + yys4269Slc = r.DecodeBytes(yys4269Slc, true, true) + yys4269 := string(yys4269Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4266 { + switch yys4269 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53469,25 +53525,25 @@ func (x *ConfigMap) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4269 := &x.ObjectMeta - yyv4269.CodecDecodeSelf(d) + yyv4272 := &x.ObjectMeta + yyv4272.CodecDecodeSelf(d) } case "data": if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4270 := &x.Data - yym4271 := z.DecBinary() - _ = yym4271 + yyv4273 := &x.Data + yym4274 := z.DecBinary() + _ = yym4274 if false { } else { - z.F.DecMapStringStringX(yyv4270, false, d) + z.F.DecMapStringStringX(yyv4273, false, d) } } default: - z.DecStructFieldNotFound(-1, yys4266) - } // end switch yys4266 - } // end for yyj4266 + z.DecStructFieldNotFound(-1, yys4269) + } // end switch yys4269 + } // end for yyj4269 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53495,16 +53551,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4272 int - var yyb4272 bool - var yyhl4272 bool = l >= 0 - yyj4272++ - if yyhl4272 { - yyb4272 = yyj4272 > l + var yyj4275 int + var yyb4275 bool + var yyhl4275 bool = l >= 0 + yyj4275++ + if yyhl4275 { + yyb4275 = yyj4275 > l } else { - yyb4272 = r.CheckBreak() + yyb4275 = r.CheckBreak() } - if yyb4272 { + if yyb4275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53514,13 +53570,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4272++ - if yyhl4272 { - yyb4272 = yyj4272 > l + yyj4275++ + if yyhl4275 { + yyb4275 = yyj4275 > l } else { - yyb4272 = r.CheckBreak() + yyb4275 = r.CheckBreak() } - if yyb4272 { + if yyb4275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53530,13 +53586,13 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4272++ - if yyhl4272 { - yyb4272 = yyj4272 > l + yyj4275++ + if yyhl4275 { + yyb4275 = yyj4275 > l } else { - yyb4272 = r.CheckBreak() + yyb4275 = r.CheckBreak() } - if yyb4272 { + if yyb4275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53544,16 +53600,16 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4275 := &x.ObjectMeta - yyv4275.CodecDecodeSelf(d) + yyv4278 := &x.ObjectMeta + yyv4278.CodecDecodeSelf(d) } - yyj4272++ - if yyhl4272 { - yyb4272 = yyj4272 > l + yyj4275++ + if yyhl4275 { + yyb4275 = yyj4275 > l } else { - yyb4272 = r.CheckBreak() + yyb4275 = r.CheckBreak() } - if yyb4272 { + if yyb4275 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53561,26 +53617,26 @@ func (x *ConfigMap) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4276 := &x.Data - yym4277 := z.DecBinary() - _ = yym4277 + yyv4279 := &x.Data + yym4280 := z.DecBinary() + _ = yym4280 if false { } else { - z.F.DecMapStringStringX(yyv4276, false, d) + z.F.DecMapStringStringX(yyv4279, false, d) } } for { - yyj4272++ - if yyhl4272 { - yyb4272 = yyj4272 > l + yyj4275++ + if yyhl4275 { + yyb4275 = yyj4275 > l } else { - yyb4272 = r.CheckBreak() + yyb4275 = r.CheckBreak() } - if yyb4272 { + if yyb4275 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4272-1, "") + z.DecStructFieldNotFound(yyj4275-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53592,118 +53648,118 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4278 := z.EncBinary() - _ = yym4278 + yym4281 := z.EncBinary() + _ = yym4281 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4279 := !z.EncBinary() - yy2arr4279 := z.EncBasicHandle().StructToArray - var yyq4279 [4]bool - _, _, _ = yysep4279, yyq4279, yy2arr4279 - const yyr4279 bool = false - yyq4279[0] = x.Kind != "" - yyq4279[1] = x.APIVersion != "" - yyq4279[2] = true - var yynn4279 int - if yyr4279 || yy2arr4279 { + yysep4282 := !z.EncBinary() + yy2arr4282 := z.EncBasicHandle().StructToArray + var yyq4282 [4]bool + _, _, _ = yysep4282, yyq4282, yy2arr4282 + const yyr4282 bool = false + yyq4282[0] = x.Kind != "" + yyq4282[1] = x.APIVersion != "" + yyq4282[2] = true + var yynn4282 int + if yyr4282 || yy2arr4282 { r.EncodeArrayStart(4) } else { - yynn4279 = 1 - for _, b := range yyq4279 { + yynn4282 = 1 + for _, b := range yyq4282 { if b { - yynn4279++ + yynn4282++ } } - r.EncodeMapStart(yynn4279) - yynn4279 = 0 + r.EncodeMapStart(yynn4282) + yynn4282 = 0 } - if yyr4279 || yy2arr4279 { + if yyr4282 || yy2arr4282 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4279[0] { - yym4281 := z.EncBinary() - _ = yym4281 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4279[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4282 := z.EncBinary() - _ = yym4282 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4279 || yy2arr4279 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4279[1] { + if yyq4282[0] { yym4284 := z.EncBinary() _ = yym4284 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4279[1] { + if yyq4282[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4285 := z.EncBinary() _ = yym4285 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4282 || yy2arr4282 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4282[1] { + yym4287 := z.EncBinary() + _ = yym4287 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4282[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4288 := z.EncBinary() + _ = yym4288 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4279 || yy2arr4279 { + if yyr4282 || yy2arr4282 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4279[2] { - yy4287 := &x.ListMeta - yym4288 := z.EncBinary() - _ = yym4288 + if yyq4282[2] { + yy4290 := &x.ListMeta + yym4291 := z.EncBinary() + _ = yym4291 if false { - } else if z.HasExtensions() && z.EncExt(yy4287) { + } else if z.HasExtensions() && z.EncExt(yy4290) { } else { - z.EncFallback(yy4287) + z.EncFallback(yy4290) } } else { r.EncodeNil() } } else { - if yyq4279[2] { + if yyq4282[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4289 := &x.ListMeta - yym4290 := z.EncBinary() - _ = yym4290 + yy4292 := &x.ListMeta + yym4293 := z.EncBinary() + _ = yym4293 if false { - } else if z.HasExtensions() && z.EncExt(yy4289) { + } else if z.HasExtensions() && z.EncExt(yy4292) { } else { - z.EncFallback(yy4289) + z.EncFallback(yy4292) } } } - if yyr4279 || yy2arr4279 { + if yyr4282 || yy2arr4282 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4292 := z.EncBinary() - _ = yym4292 + yym4295 := z.EncBinary() + _ = yym4295 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) @@ -53716,15 +53772,15 @@ func (x *ConfigMapList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4293 := z.EncBinary() - _ = yym4293 + yym4296 := z.EncBinary() + _ = yym4296 if false { } else { h.encSliceConfigMap(([]ConfigMap)(x.Items), e) } } } - if yyr4279 || yy2arr4279 { + if yyr4282 || yy2arr4282 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -53737,25 +53793,25 @@ func (x *ConfigMapList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4294 := z.DecBinary() - _ = yym4294 + yym4297 := z.DecBinary() + _ = yym4297 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4295 := r.ContainerType() - if yyct4295 == codecSelferValueTypeMap1234 { - yyl4295 := r.ReadMapStart() - if yyl4295 == 0 { + yyct4298 := r.ContainerType() + if yyct4298 == codecSelferValueTypeMap1234 { + yyl4298 := r.ReadMapStart() + if yyl4298 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4295, d) + x.codecDecodeSelfFromMap(yyl4298, d) } - } else if yyct4295 == codecSelferValueTypeArray1234 { - yyl4295 := r.ReadArrayStart() - if yyl4295 == 0 { + } else if yyct4298 == codecSelferValueTypeArray1234 { + yyl4298 := r.ReadArrayStart() + if yyl4298 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4295, d) + x.codecDecodeSelfFromArray(yyl4298, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -53767,12 +53823,12 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4296Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4296Slc - var yyhl4296 bool = l >= 0 - for yyj4296 := 0; ; yyj4296++ { - if yyhl4296 { - if yyj4296 >= l { + var yys4299Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4299Slc + var yyhl4299 bool = l >= 0 + for yyj4299 := 0; ; yyj4299++ { + if yyhl4299 { + if yyj4299 >= l { break } } else { @@ -53781,10 +53837,10 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4296Slc = r.DecodeBytes(yys4296Slc, true, true) - yys4296 := string(yys4296Slc) + yys4299Slc = r.DecodeBytes(yys4299Slc, true, true) + yys4299 := string(yys4299Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4296 { + switch yys4299 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -53801,31 +53857,31 @@ func (x *ConfigMapList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4299 := &x.ListMeta - yym4300 := z.DecBinary() - _ = yym4300 + yyv4302 := &x.ListMeta + yym4303 := z.DecBinary() + _ = yym4303 if false { - } else if z.HasExtensions() && z.DecExt(yyv4299) { + } else if z.HasExtensions() && z.DecExt(yyv4302) { } else { - z.DecFallback(yyv4299, false) + z.DecFallback(yyv4302, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4301 := &x.Items - yym4302 := z.DecBinary() - _ = yym4302 + yyv4304 := &x.Items + yym4305 := z.DecBinary() + _ = yym4305 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4301), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4304), d) } } default: - z.DecStructFieldNotFound(-1, yys4296) - } // end switch yys4296 - } // end for yyj4296 + z.DecStructFieldNotFound(-1, yys4299) + } // end switch yys4299 + } // end for yyj4299 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -53833,16 +53889,16 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4303 int - var yyb4303 bool - var yyhl4303 bool = l >= 0 - yyj4303++ - if yyhl4303 { - yyb4303 = yyj4303 > l + var yyj4306 int + var yyb4306 bool + var yyhl4306 bool = l >= 0 + yyj4306++ + if yyhl4306 { + yyb4306 = yyj4306 > l } else { - yyb4303 = r.CheckBreak() + yyb4306 = r.CheckBreak() } - if yyb4303 { + if yyb4306 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53852,13 +53908,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Kind = string(r.DecodeString()) } - yyj4303++ - if yyhl4303 { - yyb4303 = yyj4303 > l + yyj4306++ + if yyhl4306 { + yyb4306 = yyj4306 > l } else { - yyb4303 = r.CheckBreak() + yyb4306 = r.CheckBreak() } - if yyb4303 { + if yyb4306 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53868,13 +53924,13 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.APIVersion = string(r.DecodeString()) } - yyj4303++ - if yyhl4303 { - yyb4303 = yyj4303 > l + yyj4306++ + if yyhl4306 { + yyb4306 = yyj4306 > l } else { - yyb4303 = r.CheckBreak() + yyb4306 = r.CheckBreak() } - if yyb4303 { + if yyb4306 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53882,22 +53938,22 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4306 := &x.ListMeta - yym4307 := z.DecBinary() - _ = yym4307 + yyv4309 := &x.ListMeta + yym4310 := z.DecBinary() + _ = yym4310 if false { - } else if z.HasExtensions() && z.DecExt(yyv4306) { + } else if z.HasExtensions() && z.DecExt(yyv4309) { } else { - z.DecFallback(yyv4306, false) + z.DecFallback(yyv4309, false) } } - yyj4303++ - if yyhl4303 { - yyb4303 = yyj4303 > l + yyj4306++ + if yyhl4306 { + yyb4306 = yyj4306 > l } else { - yyb4303 = r.CheckBreak() + yyb4306 = r.CheckBreak() } - if yyb4303 { + if yyb4306 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -53905,26 +53961,26 @@ func (x *ConfigMapList) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4308 := &x.Items - yym4309 := z.DecBinary() - _ = yym4309 + yyv4311 := &x.Items + yym4312 := z.DecBinary() + _ = yym4312 if false { } else { - h.decSliceConfigMap((*[]ConfigMap)(yyv4308), d) + h.decSliceConfigMap((*[]ConfigMap)(yyv4311), d) } } for { - yyj4303++ - if yyhl4303 { - yyb4303 = yyj4303 > l + yyj4306++ + if yyhl4306 { + yyb4306 = yyj4306 > l } else { - yyb4303 = r.CheckBreak() + yyb4306 = r.CheckBreak() } - if yyb4303 { + if yyb4306 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4303-1, "") + z.DecStructFieldNotFound(yyj4306-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -53933,8 +53989,8 @@ func (x ComponentConditionType) CodecEncodeSelf(e *codec1978.Encoder) { var h codecSelfer1234 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r - yym4310 := z.EncBinary() - _ = yym4310 + yym4313 := z.EncBinary() + _ = yym4313 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { @@ -53946,8 +54002,8 @@ func (x *ComponentConditionType) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4311 := z.DecBinary() - _ = yym4311 + yym4314 := z.DecBinary() + _ = yym4314 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { @@ -53962,32 +54018,32 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4312 := z.EncBinary() - _ = yym4312 + yym4315 := z.EncBinary() + _ = yym4315 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4313 := !z.EncBinary() - yy2arr4313 := z.EncBasicHandle().StructToArray - var yyq4313 [4]bool - _, _, _ = yysep4313, yyq4313, yy2arr4313 - const yyr4313 bool = false - yyq4313[2] = x.Message != "" - yyq4313[3] = x.Error != "" - var yynn4313 int - if yyr4313 || yy2arr4313 { + yysep4316 := !z.EncBinary() + yy2arr4316 := z.EncBasicHandle().StructToArray + var yyq4316 [4]bool + _, _, _ = yysep4316, yyq4316, yy2arr4316 + const yyr4316 bool = false + yyq4316[2] = x.Message != "" + yyq4316[3] = x.Error != "" + var yynn4316 int + if yyr4316 || yy2arr4316 { r.EncodeArrayStart(4) } else { - yynn4313 = 2 - for _, b := range yyq4313 { + yynn4316 = 2 + for _, b := range yyq4316 { if b { - yynn4313++ + yynn4316++ } } - r.EncodeMapStart(yynn4313) - yynn4313 = 0 + r.EncodeMapStart(yynn4316) + yynn4316 = 0 } - if yyr4313 || yy2arr4313 { + if yyr4316 || yy2arr4316 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Type.CodecEncodeSelf(e) } else { @@ -53996,7 +54052,7 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Type.CodecEncodeSelf(e) } - if yyr4313 || yy2arr4313 { + if yyr4316 || yy2arr4316 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) x.Status.CodecEncodeSelf(e) } else { @@ -54005,57 +54061,57 @@ func (x *ComponentCondition) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapValue1234) x.Status.CodecEncodeSelf(e) } - if yyr4313 || yy2arr4313 { + if yyr4316 || yy2arr4316 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4313[2] { - yym4317 := z.EncBinary() - _ = yym4317 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4313[2] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("message")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4318 := z.EncBinary() - _ = yym4318 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Message)) - } - } - } - if yyr4313 || yy2arr4313 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4313[3] { + if yyq4316[2] { yym4320 := z.EncBinary() _ = yym4320 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Error)) + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4313[3] { + if yyq4316[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("error")) + r.EncodeString(codecSelferC_UTF81234, string("message")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4321 := z.EncBinary() _ = yym4321 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Message)) + } + } + } + if yyr4316 || yy2arr4316 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4316[3] { + yym4323 := z.EncBinary() + _ = yym4323 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Error)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4316[3] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("error")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4324 := z.EncBinary() + _ = yym4324 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Error)) } } } - if yyr4313 || yy2arr4313 { + if yyr4316 || yy2arr4316 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54068,25 +54124,25 @@ func (x *ComponentCondition) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4322 := z.DecBinary() - _ = yym4322 + yym4325 := z.DecBinary() + _ = yym4325 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4323 := r.ContainerType() - if yyct4323 == codecSelferValueTypeMap1234 { - yyl4323 := r.ReadMapStart() - if yyl4323 == 0 { + yyct4326 := r.ContainerType() + if yyct4326 == codecSelferValueTypeMap1234 { + yyl4326 := r.ReadMapStart() + if yyl4326 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4323, d) + x.codecDecodeSelfFromMap(yyl4326, d) } - } else if yyct4323 == codecSelferValueTypeArray1234 { - yyl4323 := r.ReadArrayStart() - if yyl4323 == 0 { + } else if yyct4326 == codecSelferValueTypeArray1234 { + yyl4326 := r.ReadArrayStart() + if yyl4326 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4323, d) + x.codecDecodeSelfFromArray(yyl4326, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54098,12 +54154,12 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4324Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4324Slc - var yyhl4324 bool = l >= 0 - for yyj4324 := 0; ; yyj4324++ { - if yyhl4324 { - if yyj4324 >= l { + var yys4327Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4327Slc + var yyhl4327 bool = l >= 0 + for yyj4327 := 0; ; yyj4327++ { + if yyhl4327 { + if yyj4327 >= l { break } } else { @@ -54112,10 +54168,10 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4324Slc = r.DecodeBytes(yys4324Slc, true, true) - yys4324 := string(yys4324Slc) + yys4327Slc = r.DecodeBytes(yys4327Slc, true, true) + yys4327 := string(yys4327Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4324 { + switch yys4327 { case "type": if r.TryDecodeAsNil() { x.Type = "" @@ -54141,9 +54197,9 @@ func (x *ComponentCondition) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) x.Error = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4324) - } // end switch yys4324 - } // end for yyj4324 + z.DecStructFieldNotFound(-1, yys4327) + } // end switch yys4327 + } // end for yyj4327 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54151,16 +54207,16 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4329 int - var yyb4329 bool - var yyhl4329 bool = l >= 0 - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + var yyj4332 int + var yyb4332 bool + var yyhl4332 bool = l >= 0 + yyj4332++ + if yyhl4332 { + yyb4332 = yyj4332 > l } else { - yyb4329 = r.CheckBreak() + yyb4332 = r.CheckBreak() } - if yyb4329 { + if yyb4332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54170,13 +54226,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Type = ComponentConditionType(r.DecodeString()) } - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + yyj4332++ + if yyhl4332 { + yyb4332 = yyj4332 > l } else { - yyb4329 = r.CheckBreak() + yyb4332 = r.CheckBreak() } - if yyb4329 { + if yyb4332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54186,13 +54242,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Status = ConditionStatus(r.DecodeString()) } - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + yyj4332++ + if yyhl4332 { + yyb4332 = yyj4332 > l } else { - yyb4329 = r.CheckBreak() + yyb4332 = r.CheckBreak() } - if yyb4329 { + if yyb4332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54202,13 +54258,13 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode } else { x.Message = string(r.DecodeString()) } - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + yyj4332++ + if yyhl4332 { + yyb4332 = yyj4332 > l } else { - yyb4329 = r.CheckBreak() + yyb4332 = r.CheckBreak() } - if yyb4329 { + if yyb4332 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54219,17 +54275,17 @@ func (x *ComponentCondition) codecDecodeSelfFromArray(l int, d *codec1978.Decode x.Error = string(r.DecodeString()) } for { - yyj4329++ - if yyhl4329 { - yyb4329 = yyj4329 > l + yyj4332++ + if yyhl4332 { + yyb4332 = yyj4332 > l } else { - yyb4329 = r.CheckBreak() + yyb4332 = r.CheckBreak() } - if yyb4329 { + if yyb4332 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4329-1, "") + z.DecStructFieldNotFound(yyj4332-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54241,108 +54297,108 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4334 := z.EncBinary() - _ = yym4334 + yym4337 := z.EncBinary() + _ = yym4337 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4335 := !z.EncBinary() - yy2arr4335 := z.EncBasicHandle().StructToArray - var yyq4335 [4]bool - _, _, _ = yysep4335, yyq4335, yy2arr4335 - const yyr4335 bool = false - yyq4335[0] = x.Kind != "" - yyq4335[1] = x.APIVersion != "" - yyq4335[2] = true - yyq4335[3] = len(x.Conditions) != 0 - var yynn4335 int - if yyr4335 || yy2arr4335 { + yysep4338 := !z.EncBinary() + yy2arr4338 := z.EncBasicHandle().StructToArray + var yyq4338 [4]bool + _, _, _ = yysep4338, yyq4338, yy2arr4338 + const yyr4338 bool = false + yyq4338[0] = x.Kind != "" + yyq4338[1] = x.APIVersion != "" + yyq4338[2] = true + yyq4338[3] = len(x.Conditions) != 0 + var yynn4338 int + if yyr4338 || yy2arr4338 { r.EncodeArrayStart(4) } else { - yynn4335 = 0 - for _, b := range yyq4335 { + yynn4338 = 0 + for _, b := range yyq4338 { if b { - yynn4335++ + yynn4338++ } } - r.EncodeMapStart(yynn4335) - yynn4335 = 0 + r.EncodeMapStart(yynn4338) + yynn4338 = 0 } - if yyr4335 || yy2arr4335 { + if yyr4338 || yy2arr4338 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4335[0] { - yym4337 := z.EncBinary() - _ = yym4337 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4335[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4338 := z.EncBinary() - _ = yym4338 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4335 || yy2arr4335 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4335[1] { + if yyq4338[0] { yym4340 := z.EncBinary() _ = yym4340 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4335[1] { + if yyq4338[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4341 := z.EncBinary() _ = yym4341 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4338 || yy2arr4338 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4338[1] { + yym4343 := z.EncBinary() + _ = yym4343 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4338[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4344 := z.EncBinary() + _ = yym4344 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4335 || yy2arr4335 { + if yyr4338 || yy2arr4338 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4335[2] { - yy4343 := &x.ObjectMeta - yy4343.CodecEncodeSelf(e) + if yyq4338[2] { + yy4346 := &x.ObjectMeta + yy4346.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4335[2] { + if yyq4338[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4344 := &x.ObjectMeta - yy4344.CodecEncodeSelf(e) + yy4347 := &x.ObjectMeta + yy4347.CodecEncodeSelf(e) } } - if yyr4335 || yy2arr4335 { + if yyr4338 || yy2arr4338 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4335[3] { + if yyq4338[3] { if x.Conditions == nil { r.EncodeNil() } else { - yym4346 := z.EncBinary() - _ = yym4346 + yym4349 := z.EncBinary() + _ = yym4349 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -54352,15 +54408,15 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4335[3] { + if yyq4338[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("conditions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Conditions == nil { r.EncodeNil() } else { - yym4347 := z.EncBinary() - _ = yym4347 + yym4350 := z.EncBinary() + _ = yym4350 if false { } else { h.encSliceComponentCondition(([]ComponentCondition)(x.Conditions), e) @@ -54368,7 +54424,7 @@ func (x *ComponentStatus) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4335 || yy2arr4335 { + if yyr4338 || yy2arr4338 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54381,25 +54437,25 @@ func (x *ComponentStatus) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4348 := z.DecBinary() - _ = yym4348 + yym4351 := z.DecBinary() + _ = yym4351 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4349 := r.ContainerType() - if yyct4349 == codecSelferValueTypeMap1234 { - yyl4349 := r.ReadMapStart() - if yyl4349 == 0 { + yyct4352 := r.ContainerType() + if yyct4352 == codecSelferValueTypeMap1234 { + yyl4352 := r.ReadMapStart() + if yyl4352 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4349, d) + x.codecDecodeSelfFromMap(yyl4352, d) } - } else if yyct4349 == codecSelferValueTypeArray1234 { - yyl4349 := r.ReadArrayStart() - if yyl4349 == 0 { + } else if yyct4352 == codecSelferValueTypeArray1234 { + yyl4352 := r.ReadArrayStart() + if yyl4352 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4349, d) + x.codecDecodeSelfFromArray(yyl4352, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54411,12 +54467,12 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4350Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4350Slc - var yyhl4350 bool = l >= 0 - for yyj4350 := 0; ; yyj4350++ { - if yyhl4350 { - if yyj4350 >= l { + var yys4353Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4353Slc + var yyhl4353 bool = l >= 0 + for yyj4353 := 0; ; yyj4353++ { + if yyhl4353 { + if yyj4353 >= l { break } } else { @@ -54425,10 +54481,10 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4350Slc = r.DecodeBytes(yys4350Slc, true, true) - yys4350 := string(yys4350Slc) + yys4353Slc = r.DecodeBytes(yys4353Slc, true, true) + yys4353 := string(yys4353Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4350 { + switch yys4353 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54445,25 +54501,25 @@ func (x *ComponentStatus) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4353 := &x.ObjectMeta - yyv4353.CodecDecodeSelf(d) + yyv4356 := &x.ObjectMeta + yyv4356.CodecDecodeSelf(d) } case "conditions": if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4354 := &x.Conditions - yym4355 := z.DecBinary() - _ = yym4355 + yyv4357 := &x.Conditions + yym4358 := z.DecBinary() + _ = yym4358 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4354), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4357), d) } } default: - z.DecStructFieldNotFound(-1, yys4350) - } // end switch yys4350 - } // end for yyj4350 + z.DecStructFieldNotFound(-1, yys4353) + } // end switch yys4353 + } // end for yyj4353 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54471,16 +54527,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4356 int - var yyb4356 bool - var yyhl4356 bool = l >= 0 - yyj4356++ - if yyhl4356 { - yyb4356 = yyj4356 > l + var yyj4359 int + var yyb4359 bool + var yyhl4359 bool = l >= 0 + yyj4359++ + if yyhl4359 { + yyb4359 = yyj4359 > l } else { - yyb4356 = r.CheckBreak() + yyb4359 = r.CheckBreak() } - if yyb4356 { + if yyb4359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54490,13 +54546,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4356++ - if yyhl4356 { - yyb4356 = yyj4356 > l + yyj4359++ + if yyhl4359 { + yyb4359 = yyj4359 > l } else { - yyb4356 = r.CheckBreak() + yyb4359 = r.CheckBreak() } - if yyb4356 { + if yyb4359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54506,13 +54562,13 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4356++ - if yyhl4356 { - yyb4356 = yyj4356 > l + yyj4359++ + if yyhl4359 { + yyb4359 = yyj4359 > l } else { - yyb4356 = r.CheckBreak() + yyb4359 = r.CheckBreak() } - if yyb4356 { + if yyb4359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54520,16 +54576,16 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4359 := &x.ObjectMeta - yyv4359.CodecDecodeSelf(d) + yyv4362 := &x.ObjectMeta + yyv4362.CodecDecodeSelf(d) } - yyj4356++ - if yyhl4356 { - yyb4356 = yyj4356 > l + yyj4359++ + if yyhl4359 { + yyb4359 = yyj4359 > l } else { - yyb4356 = r.CheckBreak() + yyb4359 = r.CheckBreak() } - if yyb4356 { + if yyb4359 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54537,26 +54593,26 @@ func (x *ComponentStatus) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Conditions = nil } else { - yyv4360 := &x.Conditions - yym4361 := z.DecBinary() - _ = yym4361 + yyv4363 := &x.Conditions + yym4364 := z.DecBinary() + _ = yym4364 if false { } else { - h.decSliceComponentCondition((*[]ComponentCondition)(yyv4360), d) + h.decSliceComponentCondition((*[]ComponentCondition)(yyv4363), d) } } for { - yyj4356++ - if yyhl4356 { - yyb4356 = yyj4356 > l + yyj4359++ + if yyhl4359 { + yyb4359 = yyj4359 > l } else { - yyb4356 = r.CheckBreak() + yyb4359 = r.CheckBreak() } - if yyb4356 { + if yyb4359 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4356-1, "") + z.DecStructFieldNotFound(yyj4359-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54568,118 +54624,118 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4362 := z.EncBinary() - _ = yym4362 + yym4365 := z.EncBinary() + _ = yym4365 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4363 := !z.EncBinary() - yy2arr4363 := z.EncBasicHandle().StructToArray - var yyq4363 [4]bool - _, _, _ = yysep4363, yyq4363, yy2arr4363 - const yyr4363 bool = false - yyq4363[0] = x.Kind != "" - yyq4363[1] = x.APIVersion != "" - yyq4363[2] = true - var yynn4363 int - if yyr4363 || yy2arr4363 { + yysep4366 := !z.EncBinary() + yy2arr4366 := z.EncBasicHandle().StructToArray + var yyq4366 [4]bool + _, _, _ = yysep4366, yyq4366, yy2arr4366 + const yyr4366 bool = false + yyq4366[0] = x.Kind != "" + yyq4366[1] = x.APIVersion != "" + yyq4366[2] = true + var yynn4366 int + if yyr4366 || yy2arr4366 { r.EncodeArrayStart(4) } else { - yynn4363 = 1 - for _, b := range yyq4363 { + yynn4366 = 1 + for _, b := range yyq4366 { if b { - yynn4363++ + yynn4366++ } } - r.EncodeMapStart(yynn4363) - yynn4363 = 0 + r.EncodeMapStart(yynn4366) + yynn4366 = 0 } - if yyr4363 || yy2arr4363 { + if yyr4366 || yy2arr4366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4363[0] { - yym4365 := z.EncBinary() - _ = yym4365 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4363[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4366 := z.EncBinary() - _ = yym4366 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4363 || yy2arr4363 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4363[1] { + if yyq4366[0] { yym4368 := z.EncBinary() _ = yym4368 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4363[1] { + if yyq4366[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4369 := z.EncBinary() _ = yym4369 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4366 || yy2arr4366 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4366[1] { + yym4371 := z.EncBinary() + _ = yym4371 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4366[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4372 := z.EncBinary() + _ = yym4372 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4363 || yy2arr4363 { + if yyr4366 || yy2arr4366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4363[2] { - yy4371 := &x.ListMeta - yym4372 := z.EncBinary() - _ = yym4372 + if yyq4366[2] { + yy4374 := &x.ListMeta + yym4375 := z.EncBinary() + _ = yym4375 if false { - } else if z.HasExtensions() && z.EncExt(yy4371) { + } else if z.HasExtensions() && z.EncExt(yy4374) { } else { - z.EncFallback(yy4371) + z.EncFallback(yy4374) } } else { r.EncodeNil() } } else { - if yyq4363[2] { + if yyq4366[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4373 := &x.ListMeta - yym4374 := z.EncBinary() - _ = yym4374 + yy4376 := &x.ListMeta + yym4377 := z.EncBinary() + _ = yym4377 if false { - } else if z.HasExtensions() && z.EncExt(yy4373) { + } else if z.HasExtensions() && z.EncExt(yy4376) { } else { - z.EncFallback(yy4373) + z.EncFallback(yy4376) } } } - if yyr4363 || yy2arr4363 { + if yyr4366 || yy2arr4366 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Items == nil { r.EncodeNil() } else { - yym4376 := z.EncBinary() - _ = yym4376 + yym4379 := z.EncBinary() + _ = yym4379 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) @@ -54692,15 +54748,15 @@ func (x *ComponentStatusList) CodecEncodeSelf(e *codec1978.Encoder) { if x.Items == nil { r.EncodeNil() } else { - yym4377 := z.EncBinary() - _ = yym4377 + yym4380 := z.EncBinary() + _ = yym4380 if false { } else { h.encSliceComponentStatus(([]ComponentStatus)(x.Items), e) } } } - if yyr4363 || yy2arr4363 { + if yyr4366 || yy2arr4366 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -54713,25 +54769,25 @@ func (x *ComponentStatusList) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4378 := z.DecBinary() - _ = yym4378 + yym4381 := z.DecBinary() + _ = yym4381 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4379 := r.ContainerType() - if yyct4379 == codecSelferValueTypeMap1234 { - yyl4379 := r.ReadMapStart() - if yyl4379 == 0 { + yyct4382 := r.ContainerType() + if yyct4382 == codecSelferValueTypeMap1234 { + yyl4382 := r.ReadMapStart() + if yyl4382 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4379, d) + x.codecDecodeSelfFromMap(yyl4382, d) } - } else if yyct4379 == codecSelferValueTypeArray1234 { - yyl4379 := r.ReadArrayStart() - if yyl4379 == 0 { + } else if yyct4382 == codecSelferValueTypeArray1234 { + yyl4382 := r.ReadArrayStart() + if yyl4382 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4379, d) + x.codecDecodeSelfFromArray(yyl4382, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -54743,12 +54799,12 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4380Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4380Slc - var yyhl4380 bool = l >= 0 - for yyj4380 := 0; ; yyj4380++ { - if yyhl4380 { - if yyj4380 >= l { + var yys4383Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4383Slc + var yyhl4383 bool = l >= 0 + for yyj4383 := 0; ; yyj4383++ { + if yyhl4383 { + if yyj4383 >= l { break } } else { @@ -54757,10 +54813,10 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4380Slc = r.DecodeBytes(yys4380Slc, true, true) - yys4380 := string(yys4380Slc) + yys4383Slc = r.DecodeBytes(yys4383Slc, true, true) + yys4383 := string(yys4383Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4380 { + switch yys4383 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -54777,31 +54833,31 @@ func (x *ComponentStatusList) codecDecodeSelfFromMap(l int, d *codec1978.Decoder if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4383 := &x.ListMeta - yym4384 := z.DecBinary() - _ = yym4384 + yyv4386 := &x.ListMeta + yym4387 := z.DecBinary() + _ = yym4387 if false { - } else if z.HasExtensions() && z.DecExt(yyv4383) { + } else if z.HasExtensions() && z.DecExt(yyv4386) { } else { - z.DecFallback(yyv4383, false) + z.DecFallback(yyv4386, false) } } case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4385 := &x.Items - yym4386 := z.DecBinary() - _ = yym4386 + yyv4388 := &x.Items + yym4389 := z.DecBinary() + _ = yym4389 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4385), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4388), d) } } default: - z.DecStructFieldNotFound(-1, yys4380) - } // end switch yys4380 - } // end for yyj4380 + z.DecStructFieldNotFound(-1, yys4383) + } // end switch yys4383 + } // end for yyj4383 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -54809,16 +54865,16 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4387 int - var yyb4387 bool - var yyhl4387 bool = l >= 0 - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + var yyj4390 int + var yyb4390 bool + var yyhl4390 bool = l >= 0 + yyj4390++ + if yyhl4390 { + yyb4390 = yyj4390 > l } else { - yyb4387 = r.CheckBreak() + yyb4390 = r.CheckBreak() } - if yyb4387 { + if yyb4390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54828,13 +54884,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.Kind = string(r.DecodeString()) } - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + yyj4390++ + if yyhl4390 { + yyb4390 = yyj4390 > l } else { - yyb4387 = r.CheckBreak() + yyb4390 = r.CheckBreak() } - if yyb4387 { + if yyb4390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54844,13 +54900,13 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod } else { x.APIVersion = string(r.DecodeString()) } - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + yyj4390++ + if yyhl4390 { + yyb4390 = yyj4390 > l } else { - yyb4387 = r.CheckBreak() + yyb4390 = r.CheckBreak() } - if yyb4387 { + if yyb4390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54858,22 +54914,22 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.ListMeta = pkg2_v1.ListMeta{} } else { - yyv4390 := &x.ListMeta - yym4391 := z.DecBinary() - _ = yym4391 + yyv4393 := &x.ListMeta + yym4394 := z.DecBinary() + _ = yym4394 if false { - } else if z.HasExtensions() && z.DecExt(yyv4390) { + } else if z.HasExtensions() && z.DecExt(yyv4393) { } else { - z.DecFallback(yyv4390, false) + z.DecFallback(yyv4393, false) } } - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + yyj4390++ + if yyhl4390 { + yyb4390 = yyj4390 > l } else { - yyb4387 = r.CheckBreak() + yyb4390 = r.CheckBreak() } - if yyb4387 { + if yyb4390 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -54881,26 +54937,26 @@ func (x *ComponentStatusList) codecDecodeSelfFromArray(l int, d *codec1978.Decod if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4392 := &x.Items - yym4393 := z.DecBinary() - _ = yym4393 + yyv4395 := &x.Items + yym4396 := z.DecBinary() + _ = yym4396 if false { } else { - h.decSliceComponentStatus((*[]ComponentStatus)(yyv4392), d) + h.decSliceComponentStatus((*[]ComponentStatus)(yyv4395), d) } } for { - yyj4387++ - if yyhl4387 { - yyb4387 = yyj4387 > l + yyj4390++ + if yyhl4390 { + yyb4390 = yyj4390 > l } else { - yyb4387 = r.CheckBreak() + yyb4390 = r.CheckBreak() } - if yyb4387 { + if yyb4390 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4387-1, "") + z.DecStructFieldNotFound(yyj4390-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -54912,39 +54968,39 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4394 := z.EncBinary() - _ = yym4394 + yym4397 := z.EncBinary() + _ = yym4397 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4395 := !z.EncBinary() - yy2arr4395 := z.EncBasicHandle().StructToArray - var yyq4395 [2]bool - _, _, _ = yysep4395, yyq4395, yy2arr4395 - const yyr4395 bool = false - yyq4395[0] = len(x.Items) != 0 - yyq4395[1] = x.DefaultMode != nil - var yynn4395 int - if yyr4395 || yy2arr4395 { + yysep4398 := !z.EncBinary() + yy2arr4398 := z.EncBasicHandle().StructToArray + var yyq4398 [2]bool + _, _, _ = yysep4398, yyq4398, yy2arr4398 + const yyr4398 bool = false + yyq4398[0] = len(x.Items) != 0 + yyq4398[1] = x.DefaultMode != nil + var yynn4398 int + if yyr4398 || yy2arr4398 { r.EncodeArrayStart(2) } else { - yynn4395 = 0 - for _, b := range yyq4395 { + yynn4398 = 0 + for _, b := range yyq4398 { if b { - yynn4395++ + yynn4398++ } } - r.EncodeMapStart(yynn4395) - yynn4395 = 0 + r.EncodeMapStart(yynn4398) + yynn4398 = 0 } - if yyr4395 || yy2arr4395 { + if yyr4398 || yy2arr4398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4395[0] { + if yyq4398[0] { if x.Items == nil { r.EncodeNil() } else { - yym4397 := z.EncBinary() - _ = yym4397 + yym4400 := z.EncBinary() + _ = yym4400 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -54954,15 +55010,15 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4395[0] { + if yyq4398[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("items")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Items == nil { r.EncodeNil() } else { - yym4398 := z.EncBinary() - _ = yym4398 + yym4401 := z.EncBinary() + _ = yym4401 if false { } else { h.encSliceDownwardAPIVolumeFile(([]DownwardAPIVolumeFile)(x.Items), e) @@ -54970,42 +55026,42 @@ func (x *DownwardAPIVolumeSource) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4395 || yy2arr4395 { + if yyr4398 || yy2arr4398 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4395[1] { + if yyq4398[1] { if x.DefaultMode == nil { r.EncodeNil() } else { - yy4400 := *x.DefaultMode - yym4401 := z.EncBinary() - _ = yym4401 + yy4403 := *x.DefaultMode + yym4404 := z.EncBinary() + _ = yym4404 if false { } else { - r.EncodeInt(int64(yy4400)) + r.EncodeInt(int64(yy4403)) } } } else { r.EncodeNil() } } else { - if yyq4395[1] { + if yyq4398[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("defaultMode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.DefaultMode == nil { r.EncodeNil() } else { - yy4402 := *x.DefaultMode - yym4403 := z.EncBinary() - _ = yym4403 + yy4405 := *x.DefaultMode + yym4406 := z.EncBinary() + _ = yym4406 if false { } else { - r.EncodeInt(int64(yy4402)) + r.EncodeInt(int64(yy4405)) } } } } - if yyr4395 || yy2arr4395 { + if yyr4398 || yy2arr4398 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55018,25 +55074,25 @@ func (x *DownwardAPIVolumeSource) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4404 := z.DecBinary() - _ = yym4404 + yym4407 := z.DecBinary() + _ = yym4407 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4405 := r.ContainerType() - if yyct4405 == codecSelferValueTypeMap1234 { - yyl4405 := r.ReadMapStart() - if yyl4405 == 0 { + yyct4408 := r.ContainerType() + if yyct4408 == codecSelferValueTypeMap1234 { + yyl4408 := r.ReadMapStart() + if yyl4408 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4405, d) + x.codecDecodeSelfFromMap(yyl4408, d) } - } else if yyct4405 == codecSelferValueTypeArray1234 { - yyl4405 := r.ReadArrayStart() - if yyl4405 == 0 { + } else if yyct4408 == codecSelferValueTypeArray1234 { + yyl4408 := r.ReadArrayStart() + if yyl4408 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4405, d) + x.codecDecodeSelfFromArray(yyl4408, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55048,12 +55104,12 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4406Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4406Slc - var yyhl4406 bool = l >= 0 - for yyj4406 := 0; ; yyj4406++ { - if yyhl4406 { - if yyj4406 >= l { + var yys4409Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4409Slc + var yyhl4409 bool = l >= 0 + for yyj4409 := 0; ; yyj4409++ { + if yyhl4409 { + if yyj4409 >= l { break } } else { @@ -55062,20 +55118,20 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4406Slc = r.DecodeBytes(yys4406Slc, true, true) - yys4406 := string(yys4406Slc) + yys4409Slc = r.DecodeBytes(yys4409Slc, true, true) + yys4409 := string(yys4409Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4406 { + switch yys4409 { case "items": if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4407 := &x.Items - yym4408 := z.DecBinary() - _ = yym4408 + yyv4410 := &x.Items + yym4411 := z.DecBinary() + _ = yym4411 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4407), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4410), d) } } case "defaultMode": @@ -55087,17 +55143,17 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromMap(l int, d *codec1978.Dec if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4410 := z.DecBinary() - _ = yym4410 + yym4413 := z.DecBinary() + _ = yym4413 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4406) - } // end switch yys4406 - } // end for yyj4406 + z.DecStructFieldNotFound(-1, yys4409) + } // end switch yys4409 + } // end for yyj4409 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55105,16 +55161,16 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4411 int - var yyb4411 bool - var yyhl4411 bool = l >= 0 - yyj4411++ - if yyhl4411 { - yyb4411 = yyj4411 > l + var yyj4414 int + var yyb4414 bool + var yyhl4414 bool = l >= 0 + yyj4414++ + if yyhl4414 { + yyb4414 = yyj4414 > l } else { - yyb4411 = r.CheckBreak() + yyb4414 = r.CheckBreak() } - if yyb4411 { + if yyb4414 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55122,21 +55178,21 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if r.TryDecodeAsNil() { x.Items = nil } else { - yyv4412 := &x.Items - yym4413 := z.DecBinary() - _ = yym4413 + yyv4415 := &x.Items + yym4416 := z.DecBinary() + _ = yym4416 if false { } else { - h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4412), d) + h.decSliceDownwardAPIVolumeFile((*[]DownwardAPIVolumeFile)(yyv4415), d) } } - yyj4411++ - if yyhl4411 { - yyb4411 = yyj4411 > l + yyj4414++ + if yyhl4414 { + yyb4414 = yyj4414 > l } else { - yyb4411 = r.CheckBreak() + yyb4414 = r.CheckBreak() } - if yyb4411 { + if yyb4414 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55149,25 +55205,25 @@ func (x *DownwardAPIVolumeSource) codecDecodeSelfFromArray(l int, d *codec1978.D if x.DefaultMode == nil { x.DefaultMode = new(int32) } - yym4415 := z.DecBinary() - _ = yym4415 + yym4418 := z.DecBinary() + _ = yym4418 if false { } else { *((*int32)(x.DefaultMode)) = int32(r.DecodeInt(32)) } } for { - yyj4411++ - if yyhl4411 { - yyb4411 = yyj4411 > l + yyj4414++ + if yyhl4414 { + yyb4414 = yyj4414 > l } else { - yyb4411 = r.CheckBreak() + yyb4414 = r.CheckBreak() } - if yyb4411 { + if yyb4414 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4411-1, "") + z.DecStructFieldNotFound(yyj4414-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55179,36 +55235,36 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4416 := z.EncBinary() - _ = yym4416 + yym4419 := z.EncBinary() + _ = yym4419 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4417 := !z.EncBinary() - yy2arr4417 := z.EncBasicHandle().StructToArray - var yyq4417 [4]bool - _, _, _ = yysep4417, yyq4417, yy2arr4417 - const yyr4417 bool = false - yyq4417[1] = x.FieldRef != nil - yyq4417[2] = x.ResourceFieldRef != nil - yyq4417[3] = x.Mode != nil - var yynn4417 int - if yyr4417 || yy2arr4417 { + yysep4420 := !z.EncBinary() + yy2arr4420 := z.EncBasicHandle().StructToArray + var yyq4420 [4]bool + _, _, _ = yysep4420, yyq4420, yy2arr4420 + const yyr4420 bool = false + yyq4420[1] = x.FieldRef != nil + yyq4420[2] = x.ResourceFieldRef != nil + yyq4420[3] = x.Mode != nil + var yynn4420 int + if yyr4420 || yy2arr4420 { r.EncodeArrayStart(4) } else { - yynn4417 = 1 - for _, b := range yyq4417 { + yynn4420 = 1 + for _, b := range yyq4420 { if b { - yynn4417++ + yynn4420++ } } - r.EncodeMapStart(yynn4417) - yynn4417 = 0 + r.EncodeMapStart(yynn4420) + yynn4420 = 0 } - if yyr4417 || yy2arr4417 { + if yyr4420 || yy2arr4420 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4419 := z.EncBinary() - _ = yym4419 + yym4422 := z.EncBinary() + _ = yym4422 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) @@ -55217,16 +55273,16 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("path")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4420 := z.EncBinary() - _ = yym4420 + yym4423 := z.EncBinary() + _ = yym4423 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Path)) } } - if yyr4417 || yy2arr4417 { + if yyr4420 || yy2arr4420 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4417[1] { + if yyq4420[1] { if x.FieldRef == nil { r.EncodeNil() } else { @@ -55236,7 +55292,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4417[1] { + if yyq4420[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("fieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55247,9 +55303,9 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4417 || yy2arr4417 { + if yyr4420 || yy2arr4420 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4417[2] { + if yyq4420[2] { if x.ResourceFieldRef == nil { r.EncodeNil() } else { @@ -55259,7 +55315,7 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4417[2] { + if yyq4420[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("resourceFieldRef")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55270,42 +55326,42 @@ func (x *DownwardAPIVolumeFile) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4417 || yy2arr4417 { + if yyr4420 || yy2arr4420 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4417[3] { + if yyq4420[3] { if x.Mode == nil { r.EncodeNil() } else { - yy4424 := *x.Mode - yym4425 := z.EncBinary() - _ = yym4425 + yy4427 := *x.Mode + yym4428 := z.EncBinary() + _ = yym4428 if false { } else { - r.EncodeInt(int64(yy4424)) + r.EncodeInt(int64(yy4427)) } } } else { r.EncodeNil() } } else { - if yyq4417[3] { + if yyq4420[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("mode")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Mode == nil { r.EncodeNil() } else { - yy4426 := *x.Mode - yym4427 := z.EncBinary() - _ = yym4427 + yy4429 := *x.Mode + yym4430 := z.EncBinary() + _ = yym4430 if false { } else { - r.EncodeInt(int64(yy4426)) + r.EncodeInt(int64(yy4429)) } } } } - if yyr4417 || yy2arr4417 { + if yyr4420 || yy2arr4420 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55318,25 +55374,25 @@ func (x *DownwardAPIVolumeFile) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4428 := z.DecBinary() - _ = yym4428 + yym4431 := z.DecBinary() + _ = yym4431 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4429 := r.ContainerType() - if yyct4429 == codecSelferValueTypeMap1234 { - yyl4429 := r.ReadMapStart() - if yyl4429 == 0 { + yyct4432 := r.ContainerType() + if yyct4432 == codecSelferValueTypeMap1234 { + yyl4432 := r.ReadMapStart() + if yyl4432 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4429, d) + x.codecDecodeSelfFromMap(yyl4432, d) } - } else if yyct4429 == codecSelferValueTypeArray1234 { - yyl4429 := r.ReadArrayStart() - if yyl4429 == 0 { + } else if yyct4432 == codecSelferValueTypeArray1234 { + yyl4432 := r.ReadArrayStart() + if yyl4432 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4429, d) + x.codecDecodeSelfFromArray(yyl4432, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55348,12 +55404,12 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4430Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4430Slc - var yyhl4430 bool = l >= 0 - for yyj4430 := 0; ; yyj4430++ { - if yyhl4430 { - if yyj4430 >= l { + var yys4433Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4433Slc + var yyhl4433 bool = l >= 0 + for yyj4433 := 0; ; yyj4433++ { + if yyhl4433 { + if yyj4433 >= l { break } } else { @@ -55362,10 +55418,10 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4430Slc = r.DecodeBytes(yys4430Slc, true, true) - yys4430 := string(yys4430Slc) + yys4433Slc = r.DecodeBytes(yys4433Slc, true, true) + yys4433 := string(yys4433Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4430 { + switch yys4433 { case "path": if r.TryDecodeAsNil() { x.Path = "" @@ -55403,17 +55459,17 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromMap(l int, d *codec1978.Decod if x.Mode == nil { x.Mode = new(int32) } - yym4435 := z.DecBinary() - _ = yym4435 + yym4438 := z.DecBinary() + _ = yym4438 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } default: - z.DecStructFieldNotFound(-1, yys4430) - } // end switch yys4430 - } // end for yyj4430 + z.DecStructFieldNotFound(-1, yys4433) + } // end switch yys4433 + } // end for yyj4433 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55421,16 +55477,16 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4436 int - var yyb4436 bool - var yyhl4436 bool = l >= 0 - yyj4436++ - if yyhl4436 { - yyb4436 = yyj4436 > l + var yyj4439 int + var yyb4439 bool + var yyhl4439 bool = l >= 0 + yyj4439++ + if yyhl4439 { + yyb4439 = yyj4439 > l } else { - yyb4436 = r.CheckBreak() + yyb4439 = r.CheckBreak() } - if yyb4436 { + if yyb4439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55440,13 +55496,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } else { x.Path = string(r.DecodeString()) } - yyj4436++ - if yyhl4436 { - yyb4436 = yyj4436 > l + yyj4439++ + if yyhl4439 { + yyb4439 = yyj4439 > l } else { - yyb4436 = r.CheckBreak() + yyb4439 = r.CheckBreak() } - if yyb4436 { + if yyb4439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55461,13 +55517,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.FieldRef.CodecDecodeSelf(d) } - yyj4436++ - if yyhl4436 { - yyb4436 = yyj4436 > l + yyj4439++ + if yyhl4439 { + yyb4439 = yyj4439 > l } else { - yyb4436 = r.CheckBreak() + yyb4439 = r.CheckBreak() } - if yyb4436 { + if yyb4439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55482,13 +55538,13 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec } x.ResourceFieldRef.CodecDecodeSelf(d) } - yyj4436++ - if yyhl4436 { - yyb4436 = yyj4436 > l + yyj4439++ + if yyhl4439 { + yyb4439 = yyj4439 > l } else { - yyb4436 = r.CheckBreak() + yyb4439 = r.CheckBreak() } - if yyb4436 { + if yyb4439 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55501,25 +55557,25 @@ func (x *DownwardAPIVolumeFile) codecDecodeSelfFromArray(l int, d *codec1978.Dec if x.Mode == nil { x.Mode = new(int32) } - yym4441 := z.DecBinary() - _ = yym4441 + yym4444 := z.DecBinary() + _ = yym4444 if false { } else { *((*int32)(x.Mode)) = int32(r.DecodeInt(32)) } } for { - yyj4436++ - if yyhl4436 { - yyb4436 = yyj4436 > l + yyj4439++ + if yyhl4439 { + yyb4439 = yyj4439 > l } else { - yyb4436 = r.CheckBreak() + yyb4439 = r.CheckBreak() } - if yyb4436 { + if yyb4439 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4436-1, "") + z.DecStructFieldNotFound(yyj4439-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -55531,38 +55587,38 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4442 := z.EncBinary() - _ = yym4442 + yym4445 := z.EncBinary() + _ = yym4445 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4443 := !z.EncBinary() - yy2arr4443 := z.EncBasicHandle().StructToArray - var yyq4443 [6]bool - _, _, _ = yysep4443, yyq4443, yy2arr4443 - const yyr4443 bool = false - yyq4443[0] = x.Capabilities != nil - yyq4443[1] = x.Privileged != nil - yyq4443[2] = x.SELinuxOptions != nil - yyq4443[3] = x.RunAsUser != nil - yyq4443[4] = x.RunAsNonRoot != nil - yyq4443[5] = x.ReadOnlyRootFilesystem != nil - var yynn4443 int - if yyr4443 || yy2arr4443 { + yysep4446 := !z.EncBinary() + yy2arr4446 := z.EncBasicHandle().StructToArray + var yyq4446 [6]bool + _, _, _ = yysep4446, yyq4446, yy2arr4446 + const yyr4446 bool = false + yyq4446[0] = x.Capabilities != nil + yyq4446[1] = x.Privileged != nil + yyq4446[2] = x.SELinuxOptions != nil + yyq4446[3] = x.RunAsUser != nil + yyq4446[4] = x.RunAsNonRoot != nil + yyq4446[5] = x.ReadOnlyRootFilesystem != nil + var yynn4446 int + if yyr4446 || yy2arr4446 { r.EncodeArrayStart(6) } else { - yynn4443 = 0 - for _, b := range yyq4443 { + yynn4446 = 0 + for _, b := range yyq4446 { if b { - yynn4443++ + yynn4446++ } } - r.EncodeMapStart(yynn4443) - yynn4443 = 0 + r.EncodeMapStart(yynn4446) + yynn4446 = 0 } - if yyr4443 || yy2arr4443 { + if yyr4446 || yy2arr4446 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4443[0] { + if yyq4446[0] { if x.Capabilities == nil { r.EncodeNil() } else { @@ -55572,7 +55628,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4443[0] { + if yyq4446[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("capabilities")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55583,44 +55639,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4443 || yy2arr4443 { + if yyr4446 || yy2arr4446 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4443[1] { + if yyq4446[1] { if x.Privileged == nil { r.EncodeNil() } else { - yy4446 := *x.Privileged - yym4447 := z.EncBinary() - _ = yym4447 + yy4449 := *x.Privileged + yym4450 := z.EncBinary() + _ = yym4450 if false { } else { - r.EncodeBool(bool(yy4446)) + r.EncodeBool(bool(yy4449)) } } } else { r.EncodeNil() } } else { - if yyq4443[1] { + if yyq4446[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("privileged")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.Privileged == nil { r.EncodeNil() } else { - yy4448 := *x.Privileged - yym4449 := z.EncBinary() - _ = yym4449 + yy4451 := *x.Privileged + yym4452 := z.EncBinary() + _ = yym4452 if false { } else { - r.EncodeBool(bool(yy4448)) + r.EncodeBool(bool(yy4451)) } } } } - if yyr4443 || yy2arr4443 { + if yyr4446 || yy2arr4446 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4443[2] { + if yyq4446[2] { if x.SELinuxOptions == nil { r.EncodeNil() } else { @@ -55630,7 +55686,7 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeNil() } } else { - if yyq4443[2] { + if yyq4446[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("seLinuxOptions")) z.EncSendContainerState(codecSelfer_containerMapValue1234) @@ -55641,83 +55697,67 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { } } } - if yyr4443 || yy2arr4443 { + if yyr4446 || yy2arr4446 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4443[3] { + if yyq4446[3] { if x.RunAsUser == nil { r.EncodeNil() } else { - yy4452 := *x.RunAsUser - yym4453 := z.EncBinary() - _ = yym4453 + yy4455 := *x.RunAsUser + yym4456 := z.EncBinary() + _ = yym4456 if false { } else { - r.EncodeInt(int64(yy4452)) + r.EncodeInt(int64(yy4455)) } } } else { r.EncodeNil() } } else { - if yyq4443[3] { + if yyq4446[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsUser")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsUser == nil { r.EncodeNil() } else { - yy4454 := *x.RunAsUser - yym4455 := z.EncBinary() - _ = yym4455 - if false { - } else { - r.EncodeInt(int64(yy4454)) - } - } - } - } - if yyr4443 || yy2arr4443 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4443[4] { - if x.RunAsNonRoot == nil { - r.EncodeNil() - } else { - yy4457 := *x.RunAsNonRoot + yy4457 := *x.RunAsUser yym4458 := z.EncBinary() _ = yym4458 if false { } else { - r.EncodeBool(bool(yy4457)) + r.EncodeInt(int64(yy4457)) + } + } + } + } + if yyr4446 || yy2arr4446 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4446[4] { + if x.RunAsNonRoot == nil { + r.EncodeNil() + } else { + yy4460 := *x.RunAsNonRoot + yym4461 := z.EncBinary() + _ = yym4461 + if false { + } else { + r.EncodeBool(bool(yy4460)) } } } else { r.EncodeNil() } } else { - if yyq4443[4] { + if yyq4446[4] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("runAsNonRoot")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.RunAsNonRoot == nil { r.EncodeNil() } else { - yy4459 := *x.RunAsNonRoot - yym4460 := z.EncBinary() - _ = yym4460 - if false { - } else { - r.EncodeBool(bool(yy4459)) - } - } - } - } - if yyr4443 || yy2arr4443 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4443[5] { - if x.ReadOnlyRootFilesystem == nil { - r.EncodeNil() - } else { - yy4462 := *x.ReadOnlyRootFilesystem + yy4462 := *x.RunAsNonRoot yym4463 := z.EncBinary() _ = yym4463 if false { @@ -55725,28 +55765,44 @@ func (x *SecurityContext) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeBool(bool(yy4462)) } } + } + } + if yyr4446 || yy2arr4446 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4446[5] { + if x.ReadOnlyRootFilesystem == nil { + r.EncodeNil() + } else { + yy4465 := *x.ReadOnlyRootFilesystem + yym4466 := z.EncBinary() + _ = yym4466 + if false { + } else { + r.EncodeBool(bool(yy4465)) + } + } } else { r.EncodeNil() } } else { - if yyq4443[5] { + if yyq4446[5] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("readOnlyRootFilesystem")) z.EncSendContainerState(codecSelfer_containerMapValue1234) if x.ReadOnlyRootFilesystem == nil { r.EncodeNil() } else { - yy4464 := *x.ReadOnlyRootFilesystem - yym4465 := z.EncBinary() - _ = yym4465 + yy4467 := *x.ReadOnlyRootFilesystem + yym4468 := z.EncBinary() + _ = yym4468 if false { } else { - r.EncodeBool(bool(yy4464)) + r.EncodeBool(bool(yy4467)) } } } } - if yyr4443 || yy2arr4443 { + if yyr4446 || yy2arr4446 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -55759,25 +55815,25 @@ func (x *SecurityContext) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4466 := z.DecBinary() - _ = yym4466 + yym4469 := z.DecBinary() + _ = yym4469 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4467 := r.ContainerType() - if yyct4467 == codecSelferValueTypeMap1234 { - yyl4467 := r.ReadMapStart() - if yyl4467 == 0 { + yyct4470 := r.ContainerType() + if yyct4470 == codecSelferValueTypeMap1234 { + yyl4470 := r.ReadMapStart() + if yyl4470 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4467, d) + x.codecDecodeSelfFromMap(yyl4470, d) } - } else if yyct4467 == codecSelferValueTypeArray1234 { - yyl4467 := r.ReadArrayStart() - if yyl4467 == 0 { + } else if yyct4470 == codecSelferValueTypeArray1234 { + yyl4470 := r.ReadArrayStart() + if yyl4470 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4467, d) + x.codecDecodeSelfFromArray(yyl4470, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -55789,12 +55845,12 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4468Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4468Slc - var yyhl4468 bool = l >= 0 - for yyj4468 := 0; ; yyj4468++ { - if yyhl4468 { - if yyj4468 >= l { + var yys4471Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4471Slc + var yyhl4471 bool = l >= 0 + for yyj4471 := 0; ; yyj4471++ { + if yyhl4471 { + if yyj4471 >= l { break } } else { @@ -55803,10 +55859,10 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4468Slc = r.DecodeBytes(yys4468Slc, true, true) - yys4468 := string(yys4468Slc) + yys4471Slc = r.DecodeBytes(yys4471Slc, true, true) + yys4471 := string(yys4471Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4468 { + switch yys4471 { case "capabilities": if r.TryDecodeAsNil() { if x.Capabilities != nil { @@ -55827,8 +55883,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.Privileged == nil { x.Privileged = new(bool) } - yym4471 := z.DecBinary() - _ = yym4471 + yym4474 := z.DecBinary() + _ = yym4474 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() @@ -55854,8 +55910,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4474 := z.DecBinary() - _ = yym4474 + yym4477 := z.DecBinary() + _ = yym4477 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) @@ -55870,8 +55926,8 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4476 := z.DecBinary() - _ = yym4476 + yym4479 := z.DecBinary() + _ = yym4479 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() @@ -55886,17 +55942,17 @@ func (x *SecurityContext) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4478 := z.DecBinary() - _ = yym4478 + yym4481 := z.DecBinary() + _ = yym4481 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } default: - z.DecStructFieldNotFound(-1, yys4468) - } // end switch yys4468 - } // end for yyj4468 + z.DecStructFieldNotFound(-1, yys4471) + } // end switch yys4471 + } // end for yyj4471 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -55904,16 +55960,16 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4479 int - var yyb4479 bool - var yyhl4479 bool = l >= 0 - yyj4479++ - if yyhl4479 { - yyb4479 = yyj4479 > l + var yyj4482 int + var yyb4482 bool + var yyhl4482 bool = l >= 0 + yyj4482++ + if yyhl4482 { + yyb4482 = yyj4482 > l } else { - yyb4479 = r.CheckBreak() + yyb4482 = r.CheckBreak() } - if yyb4479 { + if yyb4482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55928,13 +55984,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.Capabilities.CodecDecodeSelf(d) } - yyj4479++ - if yyhl4479 { - yyb4479 = yyj4479 > l + yyj4482++ + if yyhl4482 { + yyb4482 = yyj4482 > l } else { - yyb4479 = r.CheckBreak() + yyb4482 = r.CheckBreak() } - if yyb4479 { + if yyb4482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55947,20 +56003,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.Privileged == nil { x.Privileged = new(bool) } - yym4482 := z.DecBinary() - _ = yym4482 + yym4485 := z.DecBinary() + _ = yym4485 if false { } else { *((*bool)(x.Privileged)) = r.DecodeBool() } } - yyj4479++ - if yyhl4479 { - yyb4479 = yyj4479 > l + yyj4482++ + if yyhl4482 { + yyb4482 = yyj4482 > l } else { - yyb4479 = r.CheckBreak() + yyb4482 = r.CheckBreak() } - if yyb4479 { + if yyb4482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55975,13 +56031,13 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } x.SELinuxOptions.CodecDecodeSelf(d) } - yyj4479++ - if yyhl4479 { - yyb4479 = yyj4479 > l + yyj4482++ + if yyhl4482 { + yyb4482 = yyj4482 > l } else { - yyb4479 = r.CheckBreak() + yyb4482 = r.CheckBreak() } - if yyb4479 { + if yyb4482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -55994,20 +56050,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsUser == nil { x.RunAsUser = new(int64) } - yym4485 := z.DecBinary() - _ = yym4485 + yym4488 := z.DecBinary() + _ = yym4488 if false { } else { *((*int64)(x.RunAsUser)) = int64(r.DecodeInt(64)) } } - yyj4479++ - if yyhl4479 { - yyb4479 = yyj4479 > l + yyj4482++ + if yyhl4482 { + yyb4482 = yyj4482 > l } else { - yyb4479 = r.CheckBreak() + yyb4482 = r.CheckBreak() } - if yyb4479 { + if yyb4482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56020,20 +56076,20 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.RunAsNonRoot == nil { x.RunAsNonRoot = new(bool) } - yym4487 := z.DecBinary() - _ = yym4487 + yym4490 := z.DecBinary() + _ = yym4490 if false { } else { *((*bool)(x.RunAsNonRoot)) = r.DecodeBool() } } - yyj4479++ - if yyhl4479 { - yyb4479 = yyj4479 > l + yyj4482++ + if yyhl4482 { + yyb4482 = yyj4482 > l } else { - yyb4479 = r.CheckBreak() + yyb4482 = r.CheckBreak() } - if yyb4479 { + if yyb4482 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56046,25 +56102,25 @@ func (x *SecurityContext) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if x.ReadOnlyRootFilesystem == nil { x.ReadOnlyRootFilesystem = new(bool) } - yym4489 := z.DecBinary() - _ = yym4489 + yym4492 := z.DecBinary() + _ = yym4492 if false { } else { *((*bool)(x.ReadOnlyRootFilesystem)) = r.DecodeBool() } } for { - yyj4479++ - if yyhl4479 { - yyb4479 = yyj4479 > l + yyj4482++ + if yyhl4482 { + yyb4482 = yyj4482 > l } else { - yyb4479 = r.CheckBreak() + yyb4482 = r.CheckBreak() } - if yyb4479 { + if yyb4482 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4479-1, "") + z.DecStructFieldNotFound(yyj4482-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56076,113 +56132,113 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4490 := z.EncBinary() - _ = yym4490 + yym4493 := z.EncBinary() + _ = yym4493 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4491 := !z.EncBinary() - yy2arr4491 := z.EncBasicHandle().StructToArray - var yyq4491 [4]bool - _, _, _ = yysep4491, yyq4491, yy2arr4491 - const yyr4491 bool = false - yyq4491[0] = x.User != "" - yyq4491[1] = x.Role != "" - yyq4491[2] = x.Type != "" - yyq4491[3] = x.Level != "" - var yynn4491 int - if yyr4491 || yy2arr4491 { + yysep4494 := !z.EncBinary() + yy2arr4494 := z.EncBasicHandle().StructToArray + var yyq4494 [4]bool + _, _, _ = yysep4494, yyq4494, yy2arr4494 + const yyr4494 bool = false + yyq4494[0] = x.User != "" + yyq4494[1] = x.Role != "" + yyq4494[2] = x.Type != "" + yyq4494[3] = x.Level != "" + var yynn4494 int + if yyr4494 || yy2arr4494 { r.EncodeArrayStart(4) } else { - yynn4491 = 0 - for _, b := range yyq4491 { + yynn4494 = 0 + for _, b := range yyq4494 { if b { - yynn4491++ + yynn4494++ } } - r.EncodeMapStart(yynn4491) - yynn4491 = 0 + r.EncodeMapStart(yynn4494) + yynn4494 = 0 } - if yyr4491 || yy2arr4491 { + if yyr4494 || yy2arr4494 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4491[0] { - yym4493 := z.EncBinary() - _ = yym4493 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.User)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4491[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("user")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4494 := z.EncBinary() - _ = yym4494 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.User)) - } - } - } - if yyr4491 || yy2arr4491 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4491[1] { + if yyq4494[0] { yym4496 := z.EncBinary() _ = yym4496 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Role)) + r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4491[1] { + if yyq4494[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("role")) + r.EncodeString(codecSelferC_UTF81234, string("user")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4497 := z.EncBinary() _ = yym4497 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Role)) + r.EncodeString(codecSelferC_UTF81234, string(x.User)) } } } - if yyr4491 || yy2arr4491 { + if yyr4494 || yy2arr4494 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4491[2] { + if yyq4494[1] { yym4499 := z.EncBinary() _ = yym4499 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Type)) + r.EncodeString(codecSelferC_UTF81234, string(x.Role)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4491[2] { + if yyq4494[1] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("type")) + r.EncodeString(codecSelferC_UTF81234, string("role")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4500 := z.EncBinary() _ = yym4500 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Role)) + } + } + } + if yyr4494 || yy2arr4494 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4494[2] { + yym4502 := z.EncBinary() + _ = yym4502 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Type)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4494[2] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("type")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4503 := z.EncBinary() + _ = yym4503 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Type)) } } } - if yyr4491 || yy2arr4491 { + if yyr4494 || yy2arr4494 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4491[3] { - yym4502 := z.EncBinary() - _ = yym4502 + if yyq4494[3] { + yym4505 := z.EncBinary() + _ = yym4505 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) @@ -56191,19 +56247,19 @@ func (x *SELinuxOptions) CodecEncodeSelf(e *codec1978.Encoder) { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4491[3] { + if yyq4494[3] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("level")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4503 := z.EncBinary() - _ = yym4503 + yym4506 := z.EncBinary() + _ = yym4506 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Level)) } } } - if yyr4491 || yy2arr4491 { + if yyr4494 || yy2arr4494 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -56216,25 +56272,25 @@ func (x *SELinuxOptions) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4504 := z.DecBinary() - _ = yym4504 + yym4507 := z.DecBinary() + _ = yym4507 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4505 := r.ContainerType() - if yyct4505 == codecSelferValueTypeMap1234 { - yyl4505 := r.ReadMapStart() - if yyl4505 == 0 { + yyct4508 := r.ContainerType() + if yyct4508 == codecSelferValueTypeMap1234 { + yyl4508 := r.ReadMapStart() + if yyl4508 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4505, d) + x.codecDecodeSelfFromMap(yyl4508, d) } - } else if yyct4505 == codecSelferValueTypeArray1234 { - yyl4505 := r.ReadArrayStart() - if yyl4505 == 0 { + } else if yyct4508 == codecSelferValueTypeArray1234 { + yyl4508 := r.ReadArrayStart() + if yyl4508 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4505, d) + x.codecDecodeSelfFromArray(yyl4508, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -56246,12 +56302,12 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4506Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4506Slc - var yyhl4506 bool = l >= 0 - for yyj4506 := 0; ; yyj4506++ { - if yyhl4506 { - if yyj4506 >= l { + var yys4509Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4509Slc + var yyhl4509 bool = l >= 0 + for yyj4509 := 0; ; yyj4509++ { + if yyhl4509 { + if yyj4509 >= l { break } } else { @@ -56260,10 +56316,10 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4506Slc = r.DecodeBytes(yys4506Slc, true, true) - yys4506 := string(yys4506Slc) + yys4509Slc = r.DecodeBytes(yys4509Slc, true, true) + yys4509 := string(yys4509Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4506 { + switch yys4509 { case "user": if r.TryDecodeAsNil() { x.User = "" @@ -56289,9 +56345,9 @@ func (x *SELinuxOptions) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } default: - z.DecStructFieldNotFound(-1, yys4506) - } // end switch yys4506 - } // end for yyj4506 + z.DecStructFieldNotFound(-1, yys4509) + } // end switch yys4509 + } // end for yyj4509 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -56299,16 +56355,16 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4511 int - var yyb4511 bool - var yyhl4511 bool = l >= 0 - yyj4511++ - if yyhl4511 { - yyb4511 = yyj4511 > l + var yyj4514 int + var yyb4514 bool + var yyhl4514 bool = l >= 0 + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4511 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4511 { + if yyb4514 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56318,13 +56374,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.User = string(r.DecodeString()) } - yyj4511++ - if yyhl4511 { - yyb4511 = yyj4511 > l + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4511 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4511 { + if yyb4514 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56334,13 +56390,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Role = string(r.DecodeString()) } - yyj4511++ - if yyhl4511 { - yyb4511 = yyj4511 > l + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4511 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4511 { + if yyb4514 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56350,13 +56406,13 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { } else { x.Type = string(r.DecodeString()) } - yyj4511++ - if yyhl4511 { - yyb4511 = yyj4511 > l + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4511 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4511 { + if yyb4514 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56367,17 +56423,17 @@ func (x *SELinuxOptions) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) { x.Level = string(r.DecodeString()) } for { - yyj4511++ - if yyhl4511 { - yyb4511 = yyj4511 > l + yyj4514++ + if yyhl4514 { + yyb4514 = yyj4514 > l } else { - yyb4511 = r.CheckBreak() + yyb4514 = r.CheckBreak() } - if yyb4511 { + if yyb4514 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4511-1, "") + z.DecStructFieldNotFound(yyj4514-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56389,103 +56445,103 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x == nil { r.EncodeNil() } else { - yym4516 := z.EncBinary() - _ = yym4516 + yym4519 := z.EncBinary() + _ = yym4519 if false { } else if z.HasExtensions() && z.EncExt(x) { } else { - yysep4517 := !z.EncBinary() - yy2arr4517 := z.EncBasicHandle().StructToArray - var yyq4517 [5]bool - _, _, _ = yysep4517, yyq4517, yy2arr4517 - const yyr4517 bool = false - yyq4517[0] = x.Kind != "" - yyq4517[1] = x.APIVersion != "" - yyq4517[2] = true - var yynn4517 int - if yyr4517 || yy2arr4517 { + yysep4520 := !z.EncBinary() + yy2arr4520 := z.EncBasicHandle().StructToArray + var yyq4520 [5]bool + _, _, _ = yysep4520, yyq4520, yy2arr4520 + const yyr4520 bool = false + yyq4520[0] = x.Kind != "" + yyq4520[1] = x.APIVersion != "" + yyq4520[2] = true + var yynn4520 int + if yyr4520 || yy2arr4520 { r.EncodeArrayStart(5) } else { - yynn4517 = 2 - for _, b := range yyq4517 { + yynn4520 = 2 + for _, b := range yyq4520 { if b { - yynn4517++ + yynn4520++ } } - r.EncodeMapStart(yynn4517) - yynn4517 = 0 + r.EncodeMapStart(yynn4520) + yynn4520 = 0 } - if yyr4517 || yy2arr4517 { + if yyr4520 || yy2arr4520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4517[0] { - yym4519 := z.EncBinary() - _ = yym4519 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } else { - r.EncodeString(codecSelferC_UTF81234, "") - } - } else { - if yyq4517[0] { - z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("kind")) - z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4520 := z.EncBinary() - _ = yym4520 - if false { - } else { - r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) - } - } - } - if yyr4517 || yy2arr4517 { - z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4517[1] { + if yyq4520[0] { yym4522 := z.EncBinary() _ = yym4522 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) } } else { r.EncodeString(codecSelferC_UTF81234, "") } } else { - if yyq4517[1] { + if yyq4520[0] { z.EncSendContainerState(codecSelfer_containerMapKey1234) - r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + r.EncodeString(codecSelferC_UTF81234, string("kind")) z.EncSendContainerState(codecSelfer_containerMapValue1234) yym4523 := z.EncBinary() _ = yym4523 if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.Kind)) + } + } + } + if yyr4520 || yy2arr4520 { + z.EncSendContainerState(codecSelfer_containerArrayElem1234) + if yyq4520[1] { + yym4525 := z.EncBinary() + _ = yym4525 + if false { + } else { + r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) + } + } else { + r.EncodeString(codecSelferC_UTF81234, "") + } + } else { + if yyq4520[1] { + z.EncSendContainerState(codecSelfer_containerMapKey1234) + r.EncodeString(codecSelferC_UTF81234, string("apiVersion")) + z.EncSendContainerState(codecSelfer_containerMapValue1234) + yym4526 := z.EncBinary() + _ = yym4526 + if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.APIVersion)) } } } - if yyr4517 || yy2arr4517 { + if yyr4520 || yy2arr4520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - if yyq4517[2] { - yy4525 := &x.ObjectMeta - yy4525.CodecEncodeSelf(e) + if yyq4520[2] { + yy4528 := &x.ObjectMeta + yy4528.CodecEncodeSelf(e) } else { r.EncodeNil() } } else { - if yyq4517[2] { + if yyq4520[2] { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("metadata")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4526 := &x.ObjectMeta - yy4526.CodecEncodeSelf(e) + yy4529 := &x.ObjectMeta + yy4529.CodecEncodeSelf(e) } } - if yyr4517 || yy2arr4517 { + if yyr4520 || yy2arr4520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yym4528 := z.EncBinary() - _ = yym4528 + yym4531 := z.EncBinary() + _ = yym4531 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) @@ -56494,20 +56550,20 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { z.EncSendContainerState(codecSelfer_containerMapKey1234) r.EncodeString(codecSelferC_UTF81234, string("range")) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yym4529 := z.EncBinary() - _ = yym4529 + yym4532 := z.EncBinary() + _ = yym4532 if false { } else { r.EncodeString(codecSelferC_UTF81234, string(x.Range)) } } - if yyr4517 || yy2arr4517 { + if yyr4520 || yy2arr4520 { z.EncSendContainerState(codecSelfer_containerArrayElem1234) if x.Data == nil { r.EncodeNil() } else { - yym4531 := z.EncBinary() - _ = yym4531 + yym4534 := z.EncBinary() + _ = yym4534 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) @@ -56520,15 +56576,15 @@ func (x *RangeAllocation) CodecEncodeSelf(e *codec1978.Encoder) { if x.Data == nil { r.EncodeNil() } else { - yym4532 := z.EncBinary() - _ = yym4532 + yym4535 := z.EncBinary() + _ = yym4535 if false { } else { r.EncodeStringBytes(codecSelferC_RAW1234, []byte(x.Data)) } } } - if yyr4517 || yy2arr4517 { + if yyr4520 || yy2arr4520 { z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } else { z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -56541,25 +56597,25 @@ func (x *RangeAllocation) CodecDecodeSelf(d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yym4533 := z.DecBinary() - _ = yym4533 + yym4536 := z.DecBinary() + _ = yym4536 if false { } else if z.HasExtensions() && z.DecExt(x) { } else { - yyct4534 := r.ContainerType() - if yyct4534 == codecSelferValueTypeMap1234 { - yyl4534 := r.ReadMapStart() - if yyl4534 == 0 { + yyct4537 := r.ContainerType() + if yyct4537 == codecSelferValueTypeMap1234 { + yyl4537 := r.ReadMapStart() + if yyl4537 == 0 { z.DecSendContainerState(codecSelfer_containerMapEnd1234) } else { - x.codecDecodeSelfFromMap(yyl4534, d) + x.codecDecodeSelfFromMap(yyl4537, d) } - } else if yyct4534 == codecSelferValueTypeArray1234 { - yyl4534 := r.ReadArrayStart() - if yyl4534 == 0 { + } else if yyct4537 == codecSelferValueTypeArray1234 { + yyl4537 := r.ReadArrayStart() + if yyl4537 == 0 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } else { - x.codecDecodeSelfFromArray(yyl4534, d) + x.codecDecodeSelfFromArray(yyl4537, d) } } else { panic(codecSelferOnlyMapOrArrayEncodeToStructErr1234) @@ -56571,12 +56627,12 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yys4535Slc = z.DecScratchBuffer() // default slice to decode into - _ = yys4535Slc - var yyhl4535 bool = l >= 0 - for yyj4535 := 0; ; yyj4535++ { - if yyhl4535 { - if yyj4535 >= l { + var yys4538Slc = z.DecScratchBuffer() // default slice to decode into + _ = yys4538Slc + var yyhl4538 bool = l >= 0 + for yyj4538 := 0; ; yyj4538++ { + if yyhl4538 { + if yyj4538 >= l { break } } else { @@ -56585,10 +56641,10 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { } } z.DecSendContainerState(codecSelfer_containerMapKey1234) - yys4535Slc = r.DecodeBytes(yys4535Slc, true, true) - yys4535 := string(yys4535Slc) + yys4538Slc = r.DecodeBytes(yys4538Slc, true, true) + yys4538 := string(yys4538Slc) z.DecSendContainerState(codecSelfer_containerMapValue1234) - switch yys4535 { + switch yys4538 { case "kind": if r.TryDecodeAsNil() { x.Kind = "" @@ -56605,8 +56661,8 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4538 := &x.ObjectMeta - yyv4538.CodecDecodeSelf(d) + yyv4541 := &x.ObjectMeta + yyv4541.CodecDecodeSelf(d) } case "range": if r.TryDecodeAsNil() { @@ -56618,18 +56674,18 @@ func (x *RangeAllocation) codecDecodeSelfFromMap(l int, d *codec1978.Decoder) { if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4540 := &x.Data - yym4541 := z.DecBinary() - _ = yym4541 + yyv4543 := &x.Data + yym4544 := z.DecBinary() + _ = yym4544 if false { } else { - *yyv4540 = r.DecodeBytes(*(*[]byte)(yyv4540), false, false) + *yyv4543 = r.DecodeBytes(*(*[]byte)(yyv4543), false, false) } } default: - z.DecStructFieldNotFound(-1, yys4535) - } // end switch yys4535 - } // end for yyj4535 + z.DecStructFieldNotFound(-1, yys4538) + } // end switch yys4538 + } // end for yyj4538 z.DecSendContainerState(codecSelfer_containerMapEnd1234) } @@ -56637,16 +56693,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) var h codecSelfer1234 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - var yyj4542 int - var yyb4542 bool - var yyhl4542 bool = l >= 0 - yyj4542++ - if yyhl4542 { - yyb4542 = yyj4542 > l + var yyj4545 int + var yyb4545 bool + var yyhl4545 bool = l >= 0 + yyj4545++ + if yyhl4545 { + yyb4545 = yyj4545 > l } else { - yyb4542 = r.CheckBreak() + yyb4545 = r.CheckBreak() } - if yyb4542 { + if yyb4545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56656,13 +56712,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Kind = string(r.DecodeString()) } - yyj4542++ - if yyhl4542 { - yyb4542 = yyj4542 > l + yyj4545++ + if yyhl4545 { + yyb4545 = yyj4545 > l } else { - yyb4542 = r.CheckBreak() + yyb4545 = r.CheckBreak() } - if yyb4542 { + if yyb4545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56672,13 +56728,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.APIVersion = string(r.DecodeString()) } - yyj4542++ - if yyhl4542 { - yyb4542 = yyj4542 > l + yyj4545++ + if yyhl4545 { + yyb4545 = yyj4545 > l } else { - yyb4542 = r.CheckBreak() + yyb4545 = r.CheckBreak() } - if yyb4542 { + if yyb4545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56686,16 +56742,16 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.ObjectMeta = ObjectMeta{} } else { - yyv4545 := &x.ObjectMeta - yyv4545.CodecDecodeSelf(d) + yyv4548 := &x.ObjectMeta + yyv4548.CodecDecodeSelf(d) } - yyj4542++ - if yyhl4542 { - yyb4542 = yyj4542 > l + yyj4545++ + if yyhl4545 { + yyb4545 = yyj4545 > l } else { - yyb4542 = r.CheckBreak() + yyb4545 = r.CheckBreak() } - if yyb4542 { + if yyb4545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56705,13 +56761,13 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) } else { x.Range = string(r.DecodeString()) } - yyj4542++ - if yyhl4542 { - yyb4542 = yyj4542 > l + yyj4545++ + if yyhl4545 { + yyb4545 = yyj4545 > l } else { - yyb4542 = r.CheckBreak() + yyb4545 = r.CheckBreak() } - if yyb4542 { + if yyb4545 { z.DecSendContainerState(codecSelfer_containerArrayEnd1234) return } @@ -56719,26 +56775,26 @@ func (x *RangeAllocation) codecDecodeSelfFromArray(l int, d *codec1978.Decoder) if r.TryDecodeAsNil() { x.Data = nil } else { - yyv4547 := &x.Data - yym4548 := z.DecBinary() - _ = yym4548 + yyv4550 := &x.Data + yym4551 := z.DecBinary() + _ = yym4551 if false { } else { - *yyv4547 = r.DecodeBytes(*(*[]byte)(yyv4547), false, false) + *yyv4550 = r.DecodeBytes(*(*[]byte)(yyv4550), false, false) } } for { - yyj4542++ - if yyhl4542 { - yyb4542 = yyj4542 > l + yyj4545++ + if yyhl4545 { + yyb4545 = yyj4545 > l } else { - yyb4542 = r.CheckBreak() + yyb4545 = r.CheckBreak() } - if yyb4542 { + if yyb4545 { break } z.DecSendContainerState(codecSelfer_containerArrayElem1234) - z.DecStructFieldNotFound(yyj4542-1, "") + z.DecStructFieldNotFound(yyj4545-1, "") } z.DecSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56748,15 +56804,15 @@ func (x codecSelfer1234) encSlicev1_OwnerReference(v []pkg2_v1.OwnerReference, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4549 := range v { + for _, yyv4552 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4550 := &yyv4549 - yym4551 := z.EncBinary() - _ = yym4551 + yy4553 := &yyv4552 + yym4554 := z.EncBinary() + _ = yym4554 if false { - } else if z.HasExtensions() && z.EncExt(yy4550) { + } else if z.HasExtensions() && z.EncExt(yy4553) { } else { - z.EncFallback(yy4550) + z.EncFallback(yy4553) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -56767,74 +56823,74 @@ func (x codecSelfer1234) decSlicev1_OwnerReference(v *[]pkg2_v1.OwnerReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4552 := *v - yyh4552, yyl4552 := z.DecSliceHelperStart() - var yyc4552 bool - if yyl4552 == 0 { - if yyv4552 == nil { - yyv4552 = []pkg2_v1.OwnerReference{} - yyc4552 = true - } else if len(yyv4552) != 0 { - yyv4552 = yyv4552[:0] - yyc4552 = true + yyv4555 := *v + yyh4555, yyl4555 := z.DecSliceHelperStart() + var yyc4555 bool + if yyl4555 == 0 { + if yyv4555 == nil { + yyv4555 = []pkg2_v1.OwnerReference{} + yyc4555 = true + } else if len(yyv4555) != 0 { + yyv4555 = yyv4555[:0] + yyc4555 = true } - } else if yyl4552 > 0 { - var yyrr4552, yyrl4552 int - var yyrt4552 bool - if yyl4552 > cap(yyv4552) { + } else if yyl4555 > 0 { + var yyrr4555, yyrl4555 int + var yyrt4555 bool + if yyl4555 > cap(yyv4555) { - yyrg4552 := len(yyv4552) > 0 - yyv24552 := yyv4552 - yyrl4552, yyrt4552 = z.DecInferLen(yyl4552, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4552 { - if yyrl4552 <= cap(yyv4552) { - yyv4552 = yyv4552[:yyrl4552] + yyrg4555 := len(yyv4555) > 0 + yyv24555 := yyv4555 + yyrl4555, yyrt4555 = z.DecInferLen(yyl4555, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4555 { + if yyrl4555 <= cap(yyv4555) { + yyv4555 = yyv4555[:yyrl4555] } else { - yyv4552 = make([]pkg2_v1.OwnerReference, yyrl4552) + yyv4555 = make([]pkg2_v1.OwnerReference, yyrl4555) } } else { - yyv4552 = make([]pkg2_v1.OwnerReference, yyrl4552) + yyv4555 = make([]pkg2_v1.OwnerReference, yyrl4555) } - yyc4552 = true - yyrr4552 = len(yyv4552) - if yyrg4552 { - copy(yyv4552, yyv24552) + yyc4555 = true + yyrr4555 = len(yyv4555) + if yyrg4555 { + copy(yyv4555, yyv24555) } - } else if yyl4552 != len(yyv4552) { - yyv4552 = yyv4552[:yyl4552] - yyc4552 = true + } else if yyl4555 != len(yyv4555) { + yyv4555 = yyv4555[:yyl4555] + yyc4555 = true } - yyj4552 := 0 - for ; yyj4552 < yyrr4552; yyj4552++ { - yyh4552.ElemContainerState(yyj4552) + yyj4555 := 0 + for ; yyj4555 < yyrr4555; yyj4555++ { + yyh4555.ElemContainerState(yyj4555) if r.TryDecodeAsNil() { - yyv4552[yyj4552] = pkg2_v1.OwnerReference{} + yyv4555[yyj4555] = pkg2_v1.OwnerReference{} } else { - yyv4553 := &yyv4552[yyj4552] - yym4554 := z.DecBinary() - _ = yym4554 + yyv4556 := &yyv4555[yyj4555] + yym4557 := z.DecBinary() + _ = yym4557 if false { - } else if z.HasExtensions() && z.DecExt(yyv4553) { + } else if z.HasExtensions() && z.DecExt(yyv4556) { } else { - z.DecFallback(yyv4553, false) + z.DecFallback(yyv4556, false) } } } - if yyrt4552 { - for ; yyj4552 < yyl4552; yyj4552++ { - yyv4552 = append(yyv4552, pkg2_v1.OwnerReference{}) - yyh4552.ElemContainerState(yyj4552) + if yyrt4555 { + for ; yyj4555 < yyl4555; yyj4555++ { + yyv4555 = append(yyv4555, pkg2_v1.OwnerReference{}) + yyh4555.ElemContainerState(yyj4555) if r.TryDecodeAsNil() { - yyv4552[yyj4552] = pkg2_v1.OwnerReference{} + yyv4555[yyj4555] = pkg2_v1.OwnerReference{} } else { - yyv4555 := &yyv4552[yyj4552] - yym4556 := z.DecBinary() - _ = yym4556 + yyv4558 := &yyv4555[yyj4555] + yym4559 := z.DecBinary() + _ = yym4559 if false { - } else if z.HasExtensions() && z.DecExt(yyv4555) { + } else if z.HasExtensions() && z.DecExt(yyv4558) { } else { - z.DecFallback(yyv4555, false) + z.DecFallback(yyv4558, false) } } @@ -56842,25 +56898,25 @@ func (x codecSelfer1234) decSlicev1_OwnerReference(v *[]pkg2_v1.OwnerReference, } } else { - yyj4552 := 0 - for ; !r.CheckBreak(); yyj4552++ { + yyj4555 := 0 + for ; !r.CheckBreak(); yyj4555++ { - if yyj4552 >= len(yyv4552) { - yyv4552 = append(yyv4552, pkg2_v1.OwnerReference{}) // var yyz4552 pkg2_v1.OwnerReference - yyc4552 = true + if yyj4555 >= len(yyv4555) { + yyv4555 = append(yyv4555, pkg2_v1.OwnerReference{}) // var yyz4555 pkg2_v1.OwnerReference + yyc4555 = true } - yyh4552.ElemContainerState(yyj4552) - if yyj4552 < len(yyv4552) { + yyh4555.ElemContainerState(yyj4555) + if yyj4555 < len(yyv4555) { if r.TryDecodeAsNil() { - yyv4552[yyj4552] = pkg2_v1.OwnerReference{} + yyv4555[yyj4555] = pkg2_v1.OwnerReference{} } else { - yyv4557 := &yyv4552[yyj4552] - yym4558 := z.DecBinary() - _ = yym4558 + yyv4560 := &yyv4555[yyj4555] + yym4561 := z.DecBinary() + _ = yym4561 if false { - } else if z.HasExtensions() && z.DecExt(yyv4557) { + } else if z.HasExtensions() && z.DecExt(yyv4560) { } else { - z.DecFallback(yyv4557, false) + z.DecFallback(yyv4560, false) } } @@ -56869,17 +56925,17 @@ func (x codecSelfer1234) decSlicev1_OwnerReference(v *[]pkg2_v1.OwnerReference, } } - if yyj4552 < len(yyv4552) { - yyv4552 = yyv4552[:yyj4552] - yyc4552 = true - } else if yyj4552 == 0 && yyv4552 == nil { - yyv4552 = []pkg2_v1.OwnerReference{} - yyc4552 = true + if yyj4555 < len(yyv4555) { + yyv4555 = yyv4555[:yyj4555] + yyc4555 = true + } else if yyj4555 == 0 && yyv4555 == nil { + yyv4555 = []pkg2_v1.OwnerReference{} + yyc4555 = true } } - yyh4552.End() - if yyc4552 { - *v = yyv4552 + yyh4555.End() + if yyc4555 { + *v = yyv4555 } } @@ -56888,9 +56944,9 @@ func (x codecSelfer1234) encSlicePersistentVolumeAccessMode(v []PersistentVolume z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4559 := range v { + for _, yyv4562 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4559.CodecEncodeSelf(e) + yyv4562.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -56900,75 +56956,75 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4560 := *v - yyh4560, yyl4560 := z.DecSliceHelperStart() - var yyc4560 bool - if yyl4560 == 0 { - if yyv4560 == nil { - yyv4560 = []PersistentVolumeAccessMode{} - yyc4560 = true - } else if len(yyv4560) != 0 { - yyv4560 = yyv4560[:0] - yyc4560 = true + yyv4563 := *v + yyh4563, yyl4563 := z.DecSliceHelperStart() + var yyc4563 bool + if yyl4563 == 0 { + if yyv4563 == nil { + yyv4563 = []PersistentVolumeAccessMode{} + yyc4563 = true + } else if len(yyv4563) != 0 { + yyv4563 = yyv4563[:0] + yyc4563 = true } - } else if yyl4560 > 0 { - var yyrr4560, yyrl4560 int - var yyrt4560 bool - if yyl4560 > cap(yyv4560) { + } else if yyl4563 > 0 { + var yyrr4563, yyrl4563 int + var yyrt4563 bool + if yyl4563 > cap(yyv4563) { - yyrl4560, yyrt4560 = z.DecInferLen(yyl4560, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4560 { - if yyrl4560 <= cap(yyv4560) { - yyv4560 = yyv4560[:yyrl4560] + yyrl4563, yyrt4563 = z.DecInferLen(yyl4563, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4563 { + if yyrl4563 <= cap(yyv4563) { + yyv4563 = yyv4563[:yyrl4563] } else { - yyv4560 = make([]PersistentVolumeAccessMode, yyrl4560) + yyv4563 = make([]PersistentVolumeAccessMode, yyrl4563) } } else { - yyv4560 = make([]PersistentVolumeAccessMode, yyrl4560) + yyv4563 = make([]PersistentVolumeAccessMode, yyrl4563) } - yyc4560 = true - yyrr4560 = len(yyv4560) - } else if yyl4560 != len(yyv4560) { - yyv4560 = yyv4560[:yyl4560] - yyc4560 = true + yyc4563 = true + yyrr4563 = len(yyv4563) + } else if yyl4563 != len(yyv4563) { + yyv4563 = yyv4563[:yyl4563] + yyc4563 = true } - yyj4560 := 0 - for ; yyj4560 < yyrr4560; yyj4560++ { - yyh4560.ElemContainerState(yyj4560) + yyj4563 := 0 + for ; yyj4563 < yyrr4563; yyj4563++ { + yyh4563.ElemContainerState(yyj4563) if r.TryDecodeAsNil() { - yyv4560[yyj4560] = "" + yyv4563[yyj4563] = "" } else { - yyv4560[yyj4560] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4563[yyj4563] = PersistentVolumeAccessMode(r.DecodeString()) } } - if yyrt4560 { - for ; yyj4560 < yyl4560; yyj4560++ { - yyv4560 = append(yyv4560, "") - yyh4560.ElemContainerState(yyj4560) + if yyrt4563 { + for ; yyj4563 < yyl4563; yyj4563++ { + yyv4563 = append(yyv4563, "") + yyh4563.ElemContainerState(yyj4563) if r.TryDecodeAsNil() { - yyv4560[yyj4560] = "" + yyv4563[yyj4563] = "" } else { - yyv4560[yyj4560] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4563[yyj4563] = PersistentVolumeAccessMode(r.DecodeString()) } } } } else { - yyj4560 := 0 - for ; !r.CheckBreak(); yyj4560++ { + yyj4563 := 0 + for ; !r.CheckBreak(); yyj4563++ { - if yyj4560 >= len(yyv4560) { - yyv4560 = append(yyv4560, "") // var yyz4560 PersistentVolumeAccessMode - yyc4560 = true + if yyj4563 >= len(yyv4563) { + yyv4563 = append(yyv4563, "") // var yyz4563 PersistentVolumeAccessMode + yyc4563 = true } - yyh4560.ElemContainerState(yyj4560) - if yyj4560 < len(yyv4560) { + yyh4563.ElemContainerState(yyj4563) + if yyj4563 < len(yyv4563) { if r.TryDecodeAsNil() { - yyv4560[yyj4560] = "" + yyv4563[yyj4563] = "" } else { - yyv4560[yyj4560] = PersistentVolumeAccessMode(r.DecodeString()) + yyv4563[yyj4563] = PersistentVolumeAccessMode(r.DecodeString()) } } else { @@ -56976,17 +57032,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeAccessMode(v *[]PersistentVolum } } - if yyj4560 < len(yyv4560) { - yyv4560 = yyv4560[:yyj4560] - yyc4560 = true - } else if yyj4560 == 0 && yyv4560 == nil { - yyv4560 = []PersistentVolumeAccessMode{} - yyc4560 = true + if yyj4563 < len(yyv4563) { + yyv4563 = yyv4563[:yyj4563] + yyc4563 = true + } else if yyj4563 == 0 && yyv4563 == nil { + yyv4563 = []PersistentVolumeAccessMode{} + yyc4563 = true } } - yyh4560.End() - if yyc4560 { - *v = yyv4560 + yyh4563.End() + if yyc4563 { + *v = yyv4563 } } @@ -56995,10 +57051,10 @@ func (x codecSelfer1234) encSlicePersistentVolume(v []PersistentVolume, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4564 := range v { + for _, yyv4567 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4565 := &yyv4564 - yy4565.CodecEncodeSelf(e) + yy4568 := &yyv4567 + yy4568.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57008,83 +57064,83 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4566 := *v - yyh4566, yyl4566 := z.DecSliceHelperStart() - var yyc4566 bool - if yyl4566 == 0 { - if yyv4566 == nil { - yyv4566 = []PersistentVolume{} - yyc4566 = true - } else if len(yyv4566) != 0 { - yyv4566 = yyv4566[:0] - yyc4566 = true + yyv4569 := *v + yyh4569, yyl4569 := z.DecSliceHelperStart() + var yyc4569 bool + if yyl4569 == 0 { + if yyv4569 == nil { + yyv4569 = []PersistentVolume{} + yyc4569 = true + } else if len(yyv4569) != 0 { + yyv4569 = yyv4569[:0] + yyc4569 = true } - } else if yyl4566 > 0 { - var yyrr4566, yyrl4566 int - var yyrt4566 bool - if yyl4566 > cap(yyv4566) { + } else if yyl4569 > 0 { + var yyrr4569, yyrl4569 int + var yyrt4569 bool + if yyl4569 > cap(yyv4569) { - yyrg4566 := len(yyv4566) > 0 - yyv24566 := yyv4566 - yyrl4566, yyrt4566 = z.DecInferLen(yyl4566, z.DecBasicHandle().MaxInitLen, 496) - if yyrt4566 { - if yyrl4566 <= cap(yyv4566) { - yyv4566 = yyv4566[:yyrl4566] + yyrg4569 := len(yyv4569) > 0 + yyv24569 := yyv4569 + yyrl4569, yyrt4569 = z.DecInferLen(yyl4569, z.DecBasicHandle().MaxInitLen, 496) + if yyrt4569 { + if yyrl4569 <= cap(yyv4569) { + yyv4569 = yyv4569[:yyrl4569] } else { - yyv4566 = make([]PersistentVolume, yyrl4566) + yyv4569 = make([]PersistentVolume, yyrl4569) } } else { - yyv4566 = make([]PersistentVolume, yyrl4566) + yyv4569 = make([]PersistentVolume, yyrl4569) } - yyc4566 = true - yyrr4566 = len(yyv4566) - if yyrg4566 { - copy(yyv4566, yyv24566) + yyc4569 = true + yyrr4569 = len(yyv4569) + if yyrg4569 { + copy(yyv4569, yyv24569) } - } else if yyl4566 != len(yyv4566) { - yyv4566 = yyv4566[:yyl4566] - yyc4566 = true + } else if yyl4569 != len(yyv4569) { + yyv4569 = yyv4569[:yyl4569] + yyc4569 = true } - yyj4566 := 0 - for ; yyj4566 < yyrr4566; yyj4566++ { - yyh4566.ElemContainerState(yyj4566) + yyj4569 := 0 + for ; yyj4569 < yyrr4569; yyj4569++ { + yyh4569.ElemContainerState(yyj4569) if r.TryDecodeAsNil() { - yyv4566[yyj4566] = PersistentVolume{} + yyv4569[yyj4569] = PersistentVolume{} } else { - yyv4567 := &yyv4566[yyj4566] - yyv4567.CodecDecodeSelf(d) + yyv4570 := &yyv4569[yyj4569] + yyv4570.CodecDecodeSelf(d) } } - if yyrt4566 { - for ; yyj4566 < yyl4566; yyj4566++ { - yyv4566 = append(yyv4566, PersistentVolume{}) - yyh4566.ElemContainerState(yyj4566) + if yyrt4569 { + for ; yyj4569 < yyl4569; yyj4569++ { + yyv4569 = append(yyv4569, PersistentVolume{}) + yyh4569.ElemContainerState(yyj4569) if r.TryDecodeAsNil() { - yyv4566[yyj4566] = PersistentVolume{} + yyv4569[yyj4569] = PersistentVolume{} } else { - yyv4568 := &yyv4566[yyj4566] - yyv4568.CodecDecodeSelf(d) + yyv4571 := &yyv4569[yyj4569] + yyv4571.CodecDecodeSelf(d) } } } } else { - yyj4566 := 0 - for ; !r.CheckBreak(); yyj4566++ { + yyj4569 := 0 + for ; !r.CheckBreak(); yyj4569++ { - if yyj4566 >= len(yyv4566) { - yyv4566 = append(yyv4566, PersistentVolume{}) // var yyz4566 PersistentVolume - yyc4566 = true + if yyj4569 >= len(yyv4569) { + yyv4569 = append(yyv4569, PersistentVolume{}) // var yyz4569 PersistentVolume + yyc4569 = true } - yyh4566.ElemContainerState(yyj4566) - if yyj4566 < len(yyv4566) { + yyh4569.ElemContainerState(yyj4569) + if yyj4569 < len(yyv4569) { if r.TryDecodeAsNil() { - yyv4566[yyj4566] = PersistentVolume{} + yyv4569[yyj4569] = PersistentVolume{} } else { - yyv4569 := &yyv4566[yyj4566] - yyv4569.CodecDecodeSelf(d) + yyv4572 := &yyv4569[yyj4569] + yyv4572.CodecDecodeSelf(d) } } else { @@ -57092,17 +57148,17 @@ func (x codecSelfer1234) decSlicePersistentVolume(v *[]PersistentVolume, d *code } } - if yyj4566 < len(yyv4566) { - yyv4566 = yyv4566[:yyj4566] - yyc4566 = true - } else if yyj4566 == 0 && yyv4566 == nil { - yyv4566 = []PersistentVolume{} - yyc4566 = true + if yyj4569 < len(yyv4569) { + yyv4569 = yyv4569[:yyj4569] + yyc4569 = true + } else if yyj4569 == 0 && yyv4569 == nil { + yyv4569 = []PersistentVolume{} + yyc4569 = true } } - yyh4566.End() - if yyc4566 { - *v = yyv4566 + yyh4569.End() + if yyc4569 { + *v = yyv4569 } } @@ -57111,10 +57167,10 @@ func (x codecSelfer1234) encSlicePersistentVolumeClaim(v []PersistentVolumeClaim z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4570 := range v { + for _, yyv4573 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4571 := &yyv4570 - yy4571.CodecEncodeSelf(e) + yy4574 := &yyv4573 + yy4574.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57124,83 +57180,83 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4572 := *v - yyh4572, yyl4572 := z.DecSliceHelperStart() - var yyc4572 bool - if yyl4572 == 0 { - if yyv4572 == nil { - yyv4572 = []PersistentVolumeClaim{} - yyc4572 = true - } else if len(yyv4572) != 0 { - yyv4572 = yyv4572[:0] - yyc4572 = true + yyv4575 := *v + yyh4575, yyl4575 := z.DecSliceHelperStart() + var yyc4575 bool + if yyl4575 == 0 { + if yyv4575 == nil { + yyv4575 = []PersistentVolumeClaim{} + yyc4575 = true + } else if len(yyv4575) != 0 { + yyv4575 = yyv4575[:0] + yyc4575 = true } - } else if yyl4572 > 0 { - var yyrr4572, yyrl4572 int - var yyrt4572 bool - if yyl4572 > cap(yyv4572) { + } else if yyl4575 > 0 { + var yyrr4575, yyrl4575 int + var yyrt4575 bool + if yyl4575 > cap(yyv4575) { - yyrg4572 := len(yyv4572) > 0 - yyv24572 := yyv4572 - yyrl4572, yyrt4572 = z.DecInferLen(yyl4572, z.DecBasicHandle().MaxInitLen, 368) - if yyrt4572 { - if yyrl4572 <= cap(yyv4572) { - yyv4572 = yyv4572[:yyrl4572] + yyrg4575 := len(yyv4575) > 0 + yyv24575 := yyv4575 + yyrl4575, yyrt4575 = z.DecInferLen(yyl4575, z.DecBasicHandle().MaxInitLen, 368) + if yyrt4575 { + if yyrl4575 <= cap(yyv4575) { + yyv4575 = yyv4575[:yyrl4575] } else { - yyv4572 = make([]PersistentVolumeClaim, yyrl4572) + yyv4575 = make([]PersistentVolumeClaim, yyrl4575) } } else { - yyv4572 = make([]PersistentVolumeClaim, yyrl4572) + yyv4575 = make([]PersistentVolumeClaim, yyrl4575) } - yyc4572 = true - yyrr4572 = len(yyv4572) - if yyrg4572 { - copy(yyv4572, yyv24572) + yyc4575 = true + yyrr4575 = len(yyv4575) + if yyrg4575 { + copy(yyv4575, yyv24575) } - } else if yyl4572 != len(yyv4572) { - yyv4572 = yyv4572[:yyl4572] - yyc4572 = true + } else if yyl4575 != len(yyv4575) { + yyv4575 = yyv4575[:yyl4575] + yyc4575 = true } - yyj4572 := 0 - for ; yyj4572 < yyrr4572; yyj4572++ { - yyh4572.ElemContainerState(yyj4572) + yyj4575 := 0 + for ; yyj4575 < yyrr4575; yyj4575++ { + yyh4575.ElemContainerState(yyj4575) if r.TryDecodeAsNil() { - yyv4572[yyj4572] = PersistentVolumeClaim{} + yyv4575[yyj4575] = PersistentVolumeClaim{} } else { - yyv4573 := &yyv4572[yyj4572] - yyv4573.CodecDecodeSelf(d) + yyv4576 := &yyv4575[yyj4575] + yyv4576.CodecDecodeSelf(d) } } - if yyrt4572 { - for ; yyj4572 < yyl4572; yyj4572++ { - yyv4572 = append(yyv4572, PersistentVolumeClaim{}) - yyh4572.ElemContainerState(yyj4572) + if yyrt4575 { + for ; yyj4575 < yyl4575; yyj4575++ { + yyv4575 = append(yyv4575, PersistentVolumeClaim{}) + yyh4575.ElemContainerState(yyj4575) if r.TryDecodeAsNil() { - yyv4572[yyj4572] = PersistentVolumeClaim{} + yyv4575[yyj4575] = PersistentVolumeClaim{} } else { - yyv4574 := &yyv4572[yyj4572] - yyv4574.CodecDecodeSelf(d) + yyv4577 := &yyv4575[yyj4575] + yyv4577.CodecDecodeSelf(d) } } } } else { - yyj4572 := 0 - for ; !r.CheckBreak(); yyj4572++ { + yyj4575 := 0 + for ; !r.CheckBreak(); yyj4575++ { - if yyj4572 >= len(yyv4572) { - yyv4572 = append(yyv4572, PersistentVolumeClaim{}) // var yyz4572 PersistentVolumeClaim - yyc4572 = true + if yyj4575 >= len(yyv4575) { + yyv4575 = append(yyv4575, PersistentVolumeClaim{}) // var yyz4575 PersistentVolumeClaim + yyc4575 = true } - yyh4572.ElemContainerState(yyj4572) - if yyj4572 < len(yyv4572) { + yyh4575.ElemContainerState(yyj4575) + if yyj4575 < len(yyv4575) { if r.TryDecodeAsNil() { - yyv4572[yyj4572] = PersistentVolumeClaim{} + yyv4575[yyj4575] = PersistentVolumeClaim{} } else { - yyv4575 := &yyv4572[yyj4572] - yyv4575.CodecDecodeSelf(d) + yyv4578 := &yyv4575[yyj4575] + yyv4578.CodecDecodeSelf(d) } } else { @@ -57208,17 +57264,17 @@ func (x codecSelfer1234) decSlicePersistentVolumeClaim(v *[]PersistentVolumeClai } } - if yyj4572 < len(yyv4572) { - yyv4572 = yyv4572[:yyj4572] - yyc4572 = true - } else if yyj4572 == 0 && yyv4572 == nil { - yyv4572 = []PersistentVolumeClaim{} - yyc4572 = true + if yyj4575 < len(yyv4575) { + yyv4575 = yyv4575[:yyj4575] + yyc4575 = true + } else if yyj4575 == 0 && yyv4575 == nil { + yyv4575 = []PersistentVolumeClaim{} + yyc4575 = true } } - yyh4572.End() - if yyc4572 { - *v = yyv4572 + yyh4575.End() + if yyc4575 { + *v = yyv4575 } } @@ -57227,10 +57283,10 @@ func (x codecSelfer1234) encSliceKeyToPath(v []KeyToPath, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4576 := range v { + for _, yyv4579 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4577 := &yyv4576 - yy4577.CodecEncodeSelf(e) + yy4580 := &yyv4579 + yy4580.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57240,83 +57296,83 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4578 := *v - yyh4578, yyl4578 := z.DecSliceHelperStart() - var yyc4578 bool - if yyl4578 == 0 { - if yyv4578 == nil { - yyv4578 = []KeyToPath{} - yyc4578 = true - } else if len(yyv4578) != 0 { - yyv4578 = yyv4578[:0] - yyc4578 = true + yyv4581 := *v + yyh4581, yyl4581 := z.DecSliceHelperStart() + var yyc4581 bool + if yyl4581 == 0 { + if yyv4581 == nil { + yyv4581 = []KeyToPath{} + yyc4581 = true + } else if len(yyv4581) != 0 { + yyv4581 = yyv4581[:0] + yyc4581 = true } - } else if yyl4578 > 0 { - var yyrr4578, yyrl4578 int - var yyrt4578 bool - if yyl4578 > cap(yyv4578) { + } else if yyl4581 > 0 { + var yyrr4581, yyrl4581 int + var yyrt4581 bool + if yyl4581 > cap(yyv4581) { - yyrg4578 := len(yyv4578) > 0 - yyv24578 := yyv4578 - yyrl4578, yyrt4578 = z.DecInferLen(yyl4578, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4578 { - if yyrl4578 <= cap(yyv4578) { - yyv4578 = yyv4578[:yyrl4578] + yyrg4581 := len(yyv4581) > 0 + yyv24581 := yyv4581 + yyrl4581, yyrt4581 = z.DecInferLen(yyl4581, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4581 { + if yyrl4581 <= cap(yyv4581) { + yyv4581 = yyv4581[:yyrl4581] } else { - yyv4578 = make([]KeyToPath, yyrl4578) + yyv4581 = make([]KeyToPath, yyrl4581) } } else { - yyv4578 = make([]KeyToPath, yyrl4578) + yyv4581 = make([]KeyToPath, yyrl4581) } - yyc4578 = true - yyrr4578 = len(yyv4578) - if yyrg4578 { - copy(yyv4578, yyv24578) + yyc4581 = true + yyrr4581 = len(yyv4581) + if yyrg4581 { + copy(yyv4581, yyv24581) } - } else if yyl4578 != len(yyv4578) { - yyv4578 = yyv4578[:yyl4578] - yyc4578 = true + } else if yyl4581 != len(yyv4581) { + yyv4581 = yyv4581[:yyl4581] + yyc4581 = true } - yyj4578 := 0 - for ; yyj4578 < yyrr4578; yyj4578++ { - yyh4578.ElemContainerState(yyj4578) + yyj4581 := 0 + for ; yyj4581 < yyrr4581; yyj4581++ { + yyh4581.ElemContainerState(yyj4581) if r.TryDecodeAsNil() { - yyv4578[yyj4578] = KeyToPath{} + yyv4581[yyj4581] = KeyToPath{} } else { - yyv4579 := &yyv4578[yyj4578] - yyv4579.CodecDecodeSelf(d) + yyv4582 := &yyv4581[yyj4581] + yyv4582.CodecDecodeSelf(d) } } - if yyrt4578 { - for ; yyj4578 < yyl4578; yyj4578++ { - yyv4578 = append(yyv4578, KeyToPath{}) - yyh4578.ElemContainerState(yyj4578) + if yyrt4581 { + for ; yyj4581 < yyl4581; yyj4581++ { + yyv4581 = append(yyv4581, KeyToPath{}) + yyh4581.ElemContainerState(yyj4581) if r.TryDecodeAsNil() { - yyv4578[yyj4578] = KeyToPath{} + yyv4581[yyj4581] = KeyToPath{} } else { - yyv4580 := &yyv4578[yyj4578] - yyv4580.CodecDecodeSelf(d) + yyv4583 := &yyv4581[yyj4581] + yyv4583.CodecDecodeSelf(d) } } } } else { - yyj4578 := 0 - for ; !r.CheckBreak(); yyj4578++ { + yyj4581 := 0 + for ; !r.CheckBreak(); yyj4581++ { - if yyj4578 >= len(yyv4578) { - yyv4578 = append(yyv4578, KeyToPath{}) // var yyz4578 KeyToPath - yyc4578 = true + if yyj4581 >= len(yyv4581) { + yyv4581 = append(yyv4581, KeyToPath{}) // var yyz4581 KeyToPath + yyc4581 = true } - yyh4578.ElemContainerState(yyj4578) - if yyj4578 < len(yyv4578) { + yyh4581.ElemContainerState(yyj4581) + if yyj4581 < len(yyv4581) { if r.TryDecodeAsNil() { - yyv4578[yyj4578] = KeyToPath{} + yyv4581[yyj4581] = KeyToPath{} } else { - yyv4581 := &yyv4578[yyj4578] - yyv4581.CodecDecodeSelf(d) + yyv4584 := &yyv4581[yyj4581] + yyv4584.CodecDecodeSelf(d) } } else { @@ -57324,17 +57380,17 @@ func (x codecSelfer1234) decSliceKeyToPath(v *[]KeyToPath, d *codec1978.Decoder) } } - if yyj4578 < len(yyv4578) { - yyv4578 = yyv4578[:yyj4578] - yyc4578 = true - } else if yyj4578 == 0 && yyv4578 == nil { - yyv4578 = []KeyToPath{} - yyc4578 = true + if yyj4581 < len(yyv4581) { + yyv4581 = yyv4581[:yyj4581] + yyc4581 = true + } else if yyj4581 == 0 && yyv4581 == nil { + yyv4581 = []KeyToPath{} + yyc4581 = true } } - yyh4578.End() - if yyc4578 { - *v = yyv4578 + yyh4581.End() + if yyc4581 { + *v = yyv4581 } } @@ -57343,10 +57399,10 @@ func (x codecSelfer1234) encSliceHTTPHeader(v []HTTPHeader, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4582 := range v { + for _, yyv4585 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4583 := &yyv4582 - yy4583.CodecEncodeSelf(e) + yy4586 := &yyv4585 + yy4586.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57356,83 +57412,83 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4584 := *v - yyh4584, yyl4584 := z.DecSliceHelperStart() - var yyc4584 bool - if yyl4584 == 0 { - if yyv4584 == nil { - yyv4584 = []HTTPHeader{} - yyc4584 = true - } else if len(yyv4584) != 0 { - yyv4584 = yyv4584[:0] - yyc4584 = true + yyv4587 := *v + yyh4587, yyl4587 := z.DecSliceHelperStart() + var yyc4587 bool + if yyl4587 == 0 { + if yyv4587 == nil { + yyv4587 = []HTTPHeader{} + yyc4587 = true + } else if len(yyv4587) != 0 { + yyv4587 = yyv4587[:0] + yyc4587 = true } - } else if yyl4584 > 0 { - var yyrr4584, yyrl4584 int - var yyrt4584 bool - if yyl4584 > cap(yyv4584) { + } else if yyl4587 > 0 { + var yyrr4587, yyrl4587 int + var yyrt4587 bool + if yyl4587 > cap(yyv4587) { - yyrg4584 := len(yyv4584) > 0 - yyv24584 := yyv4584 - yyrl4584, yyrt4584 = z.DecInferLen(yyl4584, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4584 { - if yyrl4584 <= cap(yyv4584) { - yyv4584 = yyv4584[:yyrl4584] + yyrg4587 := len(yyv4587) > 0 + yyv24587 := yyv4587 + yyrl4587, yyrt4587 = z.DecInferLen(yyl4587, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4587 { + if yyrl4587 <= cap(yyv4587) { + yyv4587 = yyv4587[:yyrl4587] } else { - yyv4584 = make([]HTTPHeader, yyrl4584) + yyv4587 = make([]HTTPHeader, yyrl4587) } } else { - yyv4584 = make([]HTTPHeader, yyrl4584) + yyv4587 = make([]HTTPHeader, yyrl4587) } - yyc4584 = true - yyrr4584 = len(yyv4584) - if yyrg4584 { - copy(yyv4584, yyv24584) + yyc4587 = true + yyrr4587 = len(yyv4587) + if yyrg4587 { + copy(yyv4587, yyv24587) } - } else if yyl4584 != len(yyv4584) { - yyv4584 = yyv4584[:yyl4584] - yyc4584 = true + } else if yyl4587 != len(yyv4587) { + yyv4587 = yyv4587[:yyl4587] + yyc4587 = true } - yyj4584 := 0 - for ; yyj4584 < yyrr4584; yyj4584++ { - yyh4584.ElemContainerState(yyj4584) + yyj4587 := 0 + for ; yyj4587 < yyrr4587; yyj4587++ { + yyh4587.ElemContainerState(yyj4587) if r.TryDecodeAsNil() { - yyv4584[yyj4584] = HTTPHeader{} + yyv4587[yyj4587] = HTTPHeader{} } else { - yyv4585 := &yyv4584[yyj4584] - yyv4585.CodecDecodeSelf(d) + yyv4588 := &yyv4587[yyj4587] + yyv4588.CodecDecodeSelf(d) } } - if yyrt4584 { - for ; yyj4584 < yyl4584; yyj4584++ { - yyv4584 = append(yyv4584, HTTPHeader{}) - yyh4584.ElemContainerState(yyj4584) + if yyrt4587 { + for ; yyj4587 < yyl4587; yyj4587++ { + yyv4587 = append(yyv4587, HTTPHeader{}) + yyh4587.ElemContainerState(yyj4587) if r.TryDecodeAsNil() { - yyv4584[yyj4584] = HTTPHeader{} + yyv4587[yyj4587] = HTTPHeader{} } else { - yyv4586 := &yyv4584[yyj4584] - yyv4586.CodecDecodeSelf(d) + yyv4589 := &yyv4587[yyj4587] + yyv4589.CodecDecodeSelf(d) } } } } else { - yyj4584 := 0 - for ; !r.CheckBreak(); yyj4584++ { + yyj4587 := 0 + for ; !r.CheckBreak(); yyj4587++ { - if yyj4584 >= len(yyv4584) { - yyv4584 = append(yyv4584, HTTPHeader{}) // var yyz4584 HTTPHeader - yyc4584 = true + if yyj4587 >= len(yyv4587) { + yyv4587 = append(yyv4587, HTTPHeader{}) // var yyz4587 HTTPHeader + yyc4587 = true } - yyh4584.ElemContainerState(yyj4584) - if yyj4584 < len(yyv4584) { + yyh4587.ElemContainerState(yyj4587) + if yyj4587 < len(yyv4587) { if r.TryDecodeAsNil() { - yyv4584[yyj4584] = HTTPHeader{} + yyv4587[yyj4587] = HTTPHeader{} } else { - yyv4587 := &yyv4584[yyj4584] - yyv4587.CodecDecodeSelf(d) + yyv4590 := &yyv4587[yyj4587] + yyv4590.CodecDecodeSelf(d) } } else { @@ -57440,17 +57496,17 @@ func (x codecSelfer1234) decSliceHTTPHeader(v *[]HTTPHeader, d *codec1978.Decode } } - if yyj4584 < len(yyv4584) { - yyv4584 = yyv4584[:yyj4584] - yyc4584 = true - } else if yyj4584 == 0 && yyv4584 == nil { - yyv4584 = []HTTPHeader{} - yyc4584 = true + if yyj4587 < len(yyv4587) { + yyv4587 = yyv4587[:yyj4587] + yyc4587 = true + } else if yyj4587 == 0 && yyv4587 == nil { + yyv4587 = []HTTPHeader{} + yyc4587 = true } } - yyh4584.End() - if yyc4584 { - *v = yyv4584 + yyh4587.End() + if yyc4587 { + *v = yyv4587 } } @@ -57459,9 +57515,9 @@ func (x codecSelfer1234) encSliceCapability(v []Capability, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4588 := range v { + for _, yyv4591 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4588.CodecEncodeSelf(e) + yyv4591.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57471,75 +57527,75 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4589 := *v - yyh4589, yyl4589 := z.DecSliceHelperStart() - var yyc4589 bool - if yyl4589 == 0 { - if yyv4589 == nil { - yyv4589 = []Capability{} - yyc4589 = true - } else if len(yyv4589) != 0 { - yyv4589 = yyv4589[:0] - yyc4589 = true + yyv4592 := *v + yyh4592, yyl4592 := z.DecSliceHelperStart() + var yyc4592 bool + if yyl4592 == 0 { + if yyv4592 == nil { + yyv4592 = []Capability{} + yyc4592 = true + } else if len(yyv4592) != 0 { + yyv4592 = yyv4592[:0] + yyc4592 = true } - } else if yyl4589 > 0 { - var yyrr4589, yyrl4589 int - var yyrt4589 bool - if yyl4589 > cap(yyv4589) { + } else if yyl4592 > 0 { + var yyrr4592, yyrl4592 int + var yyrt4592 bool + if yyl4592 > cap(yyv4592) { - yyrl4589, yyrt4589 = z.DecInferLen(yyl4589, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4589 { - if yyrl4589 <= cap(yyv4589) { - yyv4589 = yyv4589[:yyrl4589] + yyrl4592, yyrt4592 = z.DecInferLen(yyl4592, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4592 { + if yyrl4592 <= cap(yyv4592) { + yyv4592 = yyv4592[:yyrl4592] } else { - yyv4589 = make([]Capability, yyrl4589) + yyv4592 = make([]Capability, yyrl4592) } } else { - yyv4589 = make([]Capability, yyrl4589) + yyv4592 = make([]Capability, yyrl4592) } - yyc4589 = true - yyrr4589 = len(yyv4589) - } else if yyl4589 != len(yyv4589) { - yyv4589 = yyv4589[:yyl4589] - yyc4589 = true + yyc4592 = true + yyrr4592 = len(yyv4592) + } else if yyl4592 != len(yyv4592) { + yyv4592 = yyv4592[:yyl4592] + yyc4592 = true } - yyj4589 := 0 - for ; yyj4589 < yyrr4589; yyj4589++ { - yyh4589.ElemContainerState(yyj4589) + yyj4592 := 0 + for ; yyj4592 < yyrr4592; yyj4592++ { + yyh4592.ElemContainerState(yyj4592) if r.TryDecodeAsNil() { - yyv4589[yyj4589] = "" + yyv4592[yyj4592] = "" } else { - yyv4589[yyj4589] = Capability(r.DecodeString()) + yyv4592[yyj4592] = Capability(r.DecodeString()) } } - if yyrt4589 { - for ; yyj4589 < yyl4589; yyj4589++ { - yyv4589 = append(yyv4589, "") - yyh4589.ElemContainerState(yyj4589) + if yyrt4592 { + for ; yyj4592 < yyl4592; yyj4592++ { + yyv4592 = append(yyv4592, "") + yyh4592.ElemContainerState(yyj4592) if r.TryDecodeAsNil() { - yyv4589[yyj4589] = "" + yyv4592[yyj4592] = "" } else { - yyv4589[yyj4589] = Capability(r.DecodeString()) + yyv4592[yyj4592] = Capability(r.DecodeString()) } } } } else { - yyj4589 := 0 - for ; !r.CheckBreak(); yyj4589++ { + yyj4592 := 0 + for ; !r.CheckBreak(); yyj4592++ { - if yyj4589 >= len(yyv4589) { - yyv4589 = append(yyv4589, "") // var yyz4589 Capability - yyc4589 = true + if yyj4592 >= len(yyv4592) { + yyv4592 = append(yyv4592, "") // var yyz4592 Capability + yyc4592 = true } - yyh4589.ElemContainerState(yyj4589) - if yyj4589 < len(yyv4589) { + yyh4592.ElemContainerState(yyj4592) + if yyj4592 < len(yyv4592) { if r.TryDecodeAsNil() { - yyv4589[yyj4589] = "" + yyv4592[yyj4592] = "" } else { - yyv4589[yyj4589] = Capability(r.DecodeString()) + yyv4592[yyj4592] = Capability(r.DecodeString()) } } else { @@ -57547,17 +57603,17 @@ func (x codecSelfer1234) decSliceCapability(v *[]Capability, d *codec1978.Decode } } - if yyj4589 < len(yyv4589) { - yyv4589 = yyv4589[:yyj4589] - yyc4589 = true - } else if yyj4589 == 0 && yyv4589 == nil { - yyv4589 = []Capability{} - yyc4589 = true + if yyj4592 < len(yyv4592) { + yyv4592 = yyv4592[:yyj4592] + yyc4592 = true + } else if yyj4592 == 0 && yyv4592 == nil { + yyv4592 = []Capability{} + yyc4592 = true } } - yyh4589.End() - if yyc4589 { - *v = yyv4589 + yyh4592.End() + if yyc4592 { + *v = yyv4592 } } @@ -57566,10 +57622,10 @@ func (x codecSelfer1234) encSliceContainerPort(v []ContainerPort, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4593 := range v { + for _, yyv4596 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4594 := &yyv4593 - yy4594.CodecEncodeSelf(e) + yy4597 := &yyv4596 + yy4597.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57579,83 +57635,83 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4595 := *v - yyh4595, yyl4595 := z.DecSliceHelperStart() - var yyc4595 bool - if yyl4595 == 0 { - if yyv4595 == nil { - yyv4595 = []ContainerPort{} - yyc4595 = true - } else if len(yyv4595) != 0 { - yyv4595 = yyv4595[:0] - yyc4595 = true + yyv4598 := *v + yyh4598, yyl4598 := z.DecSliceHelperStart() + var yyc4598 bool + if yyl4598 == 0 { + if yyv4598 == nil { + yyv4598 = []ContainerPort{} + yyc4598 = true + } else if len(yyv4598) != 0 { + yyv4598 = yyv4598[:0] + yyc4598 = true } - } else if yyl4595 > 0 { - var yyrr4595, yyrl4595 int - var yyrt4595 bool - if yyl4595 > cap(yyv4595) { + } else if yyl4598 > 0 { + var yyrr4598, yyrl4598 int + var yyrt4598 bool + if yyl4598 > cap(yyv4598) { - yyrg4595 := len(yyv4595) > 0 - yyv24595 := yyv4595 - yyrl4595, yyrt4595 = z.DecInferLen(yyl4595, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4595 { - if yyrl4595 <= cap(yyv4595) { - yyv4595 = yyv4595[:yyrl4595] + yyrg4598 := len(yyv4598) > 0 + yyv24598 := yyv4598 + yyrl4598, yyrt4598 = z.DecInferLen(yyl4598, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4598 { + if yyrl4598 <= cap(yyv4598) { + yyv4598 = yyv4598[:yyrl4598] } else { - yyv4595 = make([]ContainerPort, yyrl4595) + yyv4598 = make([]ContainerPort, yyrl4598) } } else { - yyv4595 = make([]ContainerPort, yyrl4595) + yyv4598 = make([]ContainerPort, yyrl4598) } - yyc4595 = true - yyrr4595 = len(yyv4595) - if yyrg4595 { - copy(yyv4595, yyv24595) + yyc4598 = true + yyrr4598 = len(yyv4598) + if yyrg4598 { + copy(yyv4598, yyv24598) } - } else if yyl4595 != len(yyv4595) { - yyv4595 = yyv4595[:yyl4595] - yyc4595 = true + } else if yyl4598 != len(yyv4598) { + yyv4598 = yyv4598[:yyl4598] + yyc4598 = true } - yyj4595 := 0 - for ; yyj4595 < yyrr4595; yyj4595++ { - yyh4595.ElemContainerState(yyj4595) + yyj4598 := 0 + for ; yyj4598 < yyrr4598; yyj4598++ { + yyh4598.ElemContainerState(yyj4598) if r.TryDecodeAsNil() { - yyv4595[yyj4595] = ContainerPort{} + yyv4598[yyj4598] = ContainerPort{} } else { - yyv4596 := &yyv4595[yyj4595] - yyv4596.CodecDecodeSelf(d) + yyv4599 := &yyv4598[yyj4598] + yyv4599.CodecDecodeSelf(d) } } - if yyrt4595 { - for ; yyj4595 < yyl4595; yyj4595++ { - yyv4595 = append(yyv4595, ContainerPort{}) - yyh4595.ElemContainerState(yyj4595) + if yyrt4598 { + for ; yyj4598 < yyl4598; yyj4598++ { + yyv4598 = append(yyv4598, ContainerPort{}) + yyh4598.ElemContainerState(yyj4598) if r.TryDecodeAsNil() { - yyv4595[yyj4595] = ContainerPort{} + yyv4598[yyj4598] = ContainerPort{} } else { - yyv4597 := &yyv4595[yyj4595] - yyv4597.CodecDecodeSelf(d) + yyv4600 := &yyv4598[yyj4598] + yyv4600.CodecDecodeSelf(d) } } } } else { - yyj4595 := 0 - for ; !r.CheckBreak(); yyj4595++ { + yyj4598 := 0 + for ; !r.CheckBreak(); yyj4598++ { - if yyj4595 >= len(yyv4595) { - yyv4595 = append(yyv4595, ContainerPort{}) // var yyz4595 ContainerPort - yyc4595 = true + if yyj4598 >= len(yyv4598) { + yyv4598 = append(yyv4598, ContainerPort{}) // var yyz4598 ContainerPort + yyc4598 = true } - yyh4595.ElemContainerState(yyj4595) - if yyj4595 < len(yyv4595) { + yyh4598.ElemContainerState(yyj4598) + if yyj4598 < len(yyv4598) { if r.TryDecodeAsNil() { - yyv4595[yyj4595] = ContainerPort{} + yyv4598[yyj4598] = ContainerPort{} } else { - yyv4598 := &yyv4595[yyj4595] - yyv4598.CodecDecodeSelf(d) + yyv4601 := &yyv4598[yyj4598] + yyv4601.CodecDecodeSelf(d) } } else { @@ -57663,17 +57719,17 @@ func (x codecSelfer1234) decSliceContainerPort(v *[]ContainerPort, d *codec1978. } } - if yyj4595 < len(yyv4595) { - yyv4595 = yyv4595[:yyj4595] - yyc4595 = true - } else if yyj4595 == 0 && yyv4595 == nil { - yyv4595 = []ContainerPort{} - yyc4595 = true + if yyj4598 < len(yyv4598) { + yyv4598 = yyv4598[:yyj4598] + yyc4598 = true + } else if yyj4598 == 0 && yyv4598 == nil { + yyv4598 = []ContainerPort{} + yyc4598 = true } } - yyh4595.End() - if yyc4595 { - *v = yyv4595 + yyh4598.End() + if yyc4598 { + *v = yyv4598 } } @@ -57682,10 +57738,10 @@ func (x codecSelfer1234) encSliceEnvVar(v []EnvVar, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4599 := range v { + for _, yyv4602 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4600 := &yyv4599 - yy4600.CodecEncodeSelf(e) + yy4603 := &yyv4602 + yy4603.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57695,83 +57751,83 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4601 := *v - yyh4601, yyl4601 := z.DecSliceHelperStart() - var yyc4601 bool - if yyl4601 == 0 { - if yyv4601 == nil { - yyv4601 = []EnvVar{} - yyc4601 = true - } else if len(yyv4601) != 0 { - yyv4601 = yyv4601[:0] - yyc4601 = true + yyv4604 := *v + yyh4604, yyl4604 := z.DecSliceHelperStart() + var yyc4604 bool + if yyl4604 == 0 { + if yyv4604 == nil { + yyv4604 = []EnvVar{} + yyc4604 = true + } else if len(yyv4604) != 0 { + yyv4604 = yyv4604[:0] + yyc4604 = true } - } else if yyl4601 > 0 { - var yyrr4601, yyrl4601 int - var yyrt4601 bool - if yyl4601 > cap(yyv4601) { + } else if yyl4604 > 0 { + var yyrr4604, yyrl4604 int + var yyrt4604 bool + if yyl4604 > cap(yyv4604) { - yyrg4601 := len(yyv4601) > 0 - yyv24601 := yyv4601 - yyrl4601, yyrt4601 = z.DecInferLen(yyl4601, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4601 { - if yyrl4601 <= cap(yyv4601) { - yyv4601 = yyv4601[:yyrl4601] + yyrg4604 := len(yyv4604) > 0 + yyv24604 := yyv4604 + yyrl4604, yyrt4604 = z.DecInferLen(yyl4604, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4604 { + if yyrl4604 <= cap(yyv4604) { + yyv4604 = yyv4604[:yyrl4604] } else { - yyv4601 = make([]EnvVar, yyrl4601) + yyv4604 = make([]EnvVar, yyrl4604) } } else { - yyv4601 = make([]EnvVar, yyrl4601) + yyv4604 = make([]EnvVar, yyrl4604) } - yyc4601 = true - yyrr4601 = len(yyv4601) - if yyrg4601 { - copy(yyv4601, yyv24601) + yyc4604 = true + yyrr4604 = len(yyv4604) + if yyrg4604 { + copy(yyv4604, yyv24604) } - } else if yyl4601 != len(yyv4601) { - yyv4601 = yyv4601[:yyl4601] - yyc4601 = true + } else if yyl4604 != len(yyv4604) { + yyv4604 = yyv4604[:yyl4604] + yyc4604 = true } - yyj4601 := 0 - for ; yyj4601 < yyrr4601; yyj4601++ { - yyh4601.ElemContainerState(yyj4601) + yyj4604 := 0 + for ; yyj4604 < yyrr4604; yyj4604++ { + yyh4604.ElemContainerState(yyj4604) if r.TryDecodeAsNil() { - yyv4601[yyj4601] = EnvVar{} + yyv4604[yyj4604] = EnvVar{} } else { - yyv4602 := &yyv4601[yyj4601] - yyv4602.CodecDecodeSelf(d) + yyv4605 := &yyv4604[yyj4604] + yyv4605.CodecDecodeSelf(d) } } - if yyrt4601 { - for ; yyj4601 < yyl4601; yyj4601++ { - yyv4601 = append(yyv4601, EnvVar{}) - yyh4601.ElemContainerState(yyj4601) + if yyrt4604 { + for ; yyj4604 < yyl4604; yyj4604++ { + yyv4604 = append(yyv4604, EnvVar{}) + yyh4604.ElemContainerState(yyj4604) if r.TryDecodeAsNil() { - yyv4601[yyj4601] = EnvVar{} + yyv4604[yyj4604] = EnvVar{} } else { - yyv4603 := &yyv4601[yyj4601] - yyv4603.CodecDecodeSelf(d) + yyv4606 := &yyv4604[yyj4604] + yyv4606.CodecDecodeSelf(d) } } } } else { - yyj4601 := 0 - for ; !r.CheckBreak(); yyj4601++ { + yyj4604 := 0 + for ; !r.CheckBreak(); yyj4604++ { - if yyj4601 >= len(yyv4601) { - yyv4601 = append(yyv4601, EnvVar{}) // var yyz4601 EnvVar - yyc4601 = true + if yyj4604 >= len(yyv4604) { + yyv4604 = append(yyv4604, EnvVar{}) // var yyz4604 EnvVar + yyc4604 = true } - yyh4601.ElemContainerState(yyj4601) - if yyj4601 < len(yyv4601) { + yyh4604.ElemContainerState(yyj4604) + if yyj4604 < len(yyv4604) { if r.TryDecodeAsNil() { - yyv4601[yyj4601] = EnvVar{} + yyv4604[yyj4604] = EnvVar{} } else { - yyv4604 := &yyv4601[yyj4601] - yyv4604.CodecDecodeSelf(d) + yyv4607 := &yyv4604[yyj4604] + yyv4607.CodecDecodeSelf(d) } } else { @@ -57779,17 +57835,17 @@ func (x codecSelfer1234) decSliceEnvVar(v *[]EnvVar, d *codec1978.Decoder) { } } - if yyj4601 < len(yyv4601) { - yyv4601 = yyv4601[:yyj4601] - yyc4601 = true - } else if yyj4601 == 0 && yyv4601 == nil { - yyv4601 = []EnvVar{} - yyc4601 = true + if yyj4604 < len(yyv4604) { + yyv4604 = yyv4604[:yyj4604] + yyc4604 = true + } else if yyj4604 == 0 && yyv4604 == nil { + yyv4604 = []EnvVar{} + yyc4604 = true } } - yyh4601.End() - if yyc4601 { - *v = yyv4601 + yyh4604.End() + if yyc4604 { + *v = yyv4604 } } @@ -57798,10 +57854,10 @@ func (x codecSelfer1234) encSliceVolumeMount(v []VolumeMount, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4605 := range v { + for _, yyv4608 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4606 := &yyv4605 - yy4606.CodecEncodeSelf(e) + yy4609 := &yyv4608 + yy4609.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57811,83 +57867,83 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4607 := *v - yyh4607, yyl4607 := z.DecSliceHelperStart() - var yyc4607 bool - if yyl4607 == 0 { - if yyv4607 == nil { - yyv4607 = []VolumeMount{} - yyc4607 = true - } else if len(yyv4607) != 0 { - yyv4607 = yyv4607[:0] - yyc4607 = true + yyv4610 := *v + yyh4610, yyl4610 := z.DecSliceHelperStart() + var yyc4610 bool + if yyl4610 == 0 { + if yyv4610 == nil { + yyv4610 = []VolumeMount{} + yyc4610 = true + } else if len(yyv4610) != 0 { + yyv4610 = yyv4610[:0] + yyc4610 = true } - } else if yyl4607 > 0 { - var yyrr4607, yyrl4607 int - var yyrt4607 bool - if yyl4607 > cap(yyv4607) { + } else if yyl4610 > 0 { + var yyrr4610, yyrl4610 int + var yyrt4610 bool + if yyl4610 > cap(yyv4610) { - yyrg4607 := len(yyv4607) > 0 - yyv24607 := yyv4607 - yyrl4607, yyrt4607 = z.DecInferLen(yyl4607, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4607 { - if yyrl4607 <= cap(yyv4607) { - yyv4607 = yyv4607[:yyrl4607] + yyrg4610 := len(yyv4610) > 0 + yyv24610 := yyv4610 + yyrl4610, yyrt4610 = z.DecInferLen(yyl4610, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4610 { + if yyrl4610 <= cap(yyv4610) { + yyv4610 = yyv4610[:yyrl4610] } else { - yyv4607 = make([]VolumeMount, yyrl4607) + yyv4610 = make([]VolumeMount, yyrl4610) } } else { - yyv4607 = make([]VolumeMount, yyrl4607) + yyv4610 = make([]VolumeMount, yyrl4610) } - yyc4607 = true - yyrr4607 = len(yyv4607) - if yyrg4607 { - copy(yyv4607, yyv24607) + yyc4610 = true + yyrr4610 = len(yyv4610) + if yyrg4610 { + copy(yyv4610, yyv24610) } - } else if yyl4607 != len(yyv4607) { - yyv4607 = yyv4607[:yyl4607] - yyc4607 = true + } else if yyl4610 != len(yyv4610) { + yyv4610 = yyv4610[:yyl4610] + yyc4610 = true } - yyj4607 := 0 - for ; yyj4607 < yyrr4607; yyj4607++ { - yyh4607.ElemContainerState(yyj4607) + yyj4610 := 0 + for ; yyj4610 < yyrr4610; yyj4610++ { + yyh4610.ElemContainerState(yyj4610) if r.TryDecodeAsNil() { - yyv4607[yyj4607] = VolumeMount{} + yyv4610[yyj4610] = VolumeMount{} } else { - yyv4608 := &yyv4607[yyj4607] - yyv4608.CodecDecodeSelf(d) + yyv4611 := &yyv4610[yyj4610] + yyv4611.CodecDecodeSelf(d) } } - if yyrt4607 { - for ; yyj4607 < yyl4607; yyj4607++ { - yyv4607 = append(yyv4607, VolumeMount{}) - yyh4607.ElemContainerState(yyj4607) + if yyrt4610 { + for ; yyj4610 < yyl4610; yyj4610++ { + yyv4610 = append(yyv4610, VolumeMount{}) + yyh4610.ElemContainerState(yyj4610) if r.TryDecodeAsNil() { - yyv4607[yyj4607] = VolumeMount{} + yyv4610[yyj4610] = VolumeMount{} } else { - yyv4609 := &yyv4607[yyj4607] - yyv4609.CodecDecodeSelf(d) + yyv4612 := &yyv4610[yyj4610] + yyv4612.CodecDecodeSelf(d) } } } } else { - yyj4607 := 0 - for ; !r.CheckBreak(); yyj4607++ { + yyj4610 := 0 + for ; !r.CheckBreak(); yyj4610++ { - if yyj4607 >= len(yyv4607) { - yyv4607 = append(yyv4607, VolumeMount{}) // var yyz4607 VolumeMount - yyc4607 = true + if yyj4610 >= len(yyv4610) { + yyv4610 = append(yyv4610, VolumeMount{}) // var yyz4610 VolumeMount + yyc4610 = true } - yyh4607.ElemContainerState(yyj4607) - if yyj4607 < len(yyv4607) { + yyh4610.ElemContainerState(yyj4610) + if yyj4610 < len(yyv4610) { if r.TryDecodeAsNil() { - yyv4607[yyj4607] = VolumeMount{} + yyv4610[yyj4610] = VolumeMount{} } else { - yyv4610 := &yyv4607[yyj4607] - yyv4610.CodecDecodeSelf(d) + yyv4613 := &yyv4610[yyj4610] + yyv4613.CodecDecodeSelf(d) } } else { @@ -57895,17 +57951,17 @@ func (x codecSelfer1234) decSliceVolumeMount(v *[]VolumeMount, d *codec1978.Deco } } - if yyj4607 < len(yyv4607) { - yyv4607 = yyv4607[:yyj4607] - yyc4607 = true - } else if yyj4607 == 0 && yyv4607 == nil { - yyv4607 = []VolumeMount{} - yyc4607 = true + if yyj4610 < len(yyv4610) { + yyv4610 = yyv4610[:yyj4610] + yyc4610 = true + } else if yyj4610 == 0 && yyv4610 == nil { + yyv4610 = []VolumeMount{} + yyc4610 = true } } - yyh4607.End() - if yyc4607 { - *v = yyv4607 + yyh4610.End() + if yyc4610 { + *v = yyv4610 } } @@ -57914,10 +57970,10 @@ func (x codecSelfer1234) encSliceNodeSelectorTerm(v []NodeSelectorTerm, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4611 := range v { + for _, yyv4614 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4612 := &yyv4611 - yy4612.CodecEncodeSelf(e) + yy4615 := &yyv4614 + yy4615.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -57927,83 +57983,83 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4613 := *v - yyh4613, yyl4613 := z.DecSliceHelperStart() - var yyc4613 bool - if yyl4613 == 0 { - if yyv4613 == nil { - yyv4613 = []NodeSelectorTerm{} - yyc4613 = true - } else if len(yyv4613) != 0 { - yyv4613 = yyv4613[:0] - yyc4613 = true + yyv4616 := *v + yyh4616, yyl4616 := z.DecSliceHelperStart() + var yyc4616 bool + if yyl4616 == 0 { + if yyv4616 == nil { + yyv4616 = []NodeSelectorTerm{} + yyc4616 = true + } else if len(yyv4616) != 0 { + yyv4616 = yyv4616[:0] + yyc4616 = true } - } else if yyl4613 > 0 { - var yyrr4613, yyrl4613 int - var yyrt4613 bool - if yyl4613 > cap(yyv4613) { + } else if yyl4616 > 0 { + var yyrr4616, yyrl4616 int + var yyrt4616 bool + if yyl4616 > cap(yyv4616) { - yyrg4613 := len(yyv4613) > 0 - yyv24613 := yyv4613 - yyrl4613, yyrt4613 = z.DecInferLen(yyl4613, z.DecBasicHandle().MaxInitLen, 24) - if yyrt4613 { - if yyrl4613 <= cap(yyv4613) { - yyv4613 = yyv4613[:yyrl4613] + yyrg4616 := len(yyv4616) > 0 + yyv24616 := yyv4616 + yyrl4616, yyrt4616 = z.DecInferLen(yyl4616, z.DecBasicHandle().MaxInitLen, 24) + if yyrt4616 { + if yyrl4616 <= cap(yyv4616) { + yyv4616 = yyv4616[:yyrl4616] } else { - yyv4613 = make([]NodeSelectorTerm, yyrl4613) + yyv4616 = make([]NodeSelectorTerm, yyrl4616) } } else { - yyv4613 = make([]NodeSelectorTerm, yyrl4613) + yyv4616 = make([]NodeSelectorTerm, yyrl4616) } - yyc4613 = true - yyrr4613 = len(yyv4613) - if yyrg4613 { - copy(yyv4613, yyv24613) + yyc4616 = true + yyrr4616 = len(yyv4616) + if yyrg4616 { + copy(yyv4616, yyv24616) } - } else if yyl4613 != len(yyv4613) { - yyv4613 = yyv4613[:yyl4613] - yyc4613 = true + } else if yyl4616 != len(yyv4616) { + yyv4616 = yyv4616[:yyl4616] + yyc4616 = true } - yyj4613 := 0 - for ; yyj4613 < yyrr4613; yyj4613++ { - yyh4613.ElemContainerState(yyj4613) + yyj4616 := 0 + for ; yyj4616 < yyrr4616; yyj4616++ { + yyh4616.ElemContainerState(yyj4616) if r.TryDecodeAsNil() { - yyv4613[yyj4613] = NodeSelectorTerm{} + yyv4616[yyj4616] = NodeSelectorTerm{} } else { - yyv4614 := &yyv4613[yyj4613] - yyv4614.CodecDecodeSelf(d) + yyv4617 := &yyv4616[yyj4616] + yyv4617.CodecDecodeSelf(d) } } - if yyrt4613 { - for ; yyj4613 < yyl4613; yyj4613++ { - yyv4613 = append(yyv4613, NodeSelectorTerm{}) - yyh4613.ElemContainerState(yyj4613) + if yyrt4616 { + for ; yyj4616 < yyl4616; yyj4616++ { + yyv4616 = append(yyv4616, NodeSelectorTerm{}) + yyh4616.ElemContainerState(yyj4616) if r.TryDecodeAsNil() { - yyv4613[yyj4613] = NodeSelectorTerm{} + yyv4616[yyj4616] = NodeSelectorTerm{} } else { - yyv4615 := &yyv4613[yyj4613] - yyv4615.CodecDecodeSelf(d) + yyv4618 := &yyv4616[yyj4616] + yyv4618.CodecDecodeSelf(d) } } } } else { - yyj4613 := 0 - for ; !r.CheckBreak(); yyj4613++ { + yyj4616 := 0 + for ; !r.CheckBreak(); yyj4616++ { - if yyj4613 >= len(yyv4613) { - yyv4613 = append(yyv4613, NodeSelectorTerm{}) // var yyz4613 NodeSelectorTerm - yyc4613 = true + if yyj4616 >= len(yyv4616) { + yyv4616 = append(yyv4616, NodeSelectorTerm{}) // var yyz4616 NodeSelectorTerm + yyc4616 = true } - yyh4613.ElemContainerState(yyj4613) - if yyj4613 < len(yyv4613) { + yyh4616.ElemContainerState(yyj4616) + if yyj4616 < len(yyv4616) { if r.TryDecodeAsNil() { - yyv4613[yyj4613] = NodeSelectorTerm{} + yyv4616[yyj4616] = NodeSelectorTerm{} } else { - yyv4616 := &yyv4613[yyj4613] - yyv4616.CodecDecodeSelf(d) + yyv4619 := &yyv4616[yyj4616] + yyv4619.CodecDecodeSelf(d) } } else { @@ -58011,17 +58067,17 @@ func (x codecSelfer1234) decSliceNodeSelectorTerm(v *[]NodeSelectorTerm, d *code } } - if yyj4613 < len(yyv4613) { - yyv4613 = yyv4613[:yyj4613] - yyc4613 = true - } else if yyj4613 == 0 && yyv4613 == nil { - yyv4613 = []NodeSelectorTerm{} - yyc4613 = true + if yyj4616 < len(yyv4616) { + yyv4616 = yyv4616[:yyj4616] + yyc4616 = true + } else if yyj4616 == 0 && yyv4616 == nil { + yyv4616 = []NodeSelectorTerm{} + yyc4616 = true } } - yyh4613.End() - if yyc4613 { - *v = yyv4613 + yyh4616.End() + if yyc4616 { + *v = yyv4616 } } @@ -58030,10 +58086,10 @@ func (x codecSelfer1234) encSliceNodeSelectorRequirement(v []NodeSelectorRequire z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4617 := range v { + for _, yyv4620 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4618 := &yyv4617 - yy4618.CodecEncodeSelf(e) + yy4621 := &yyv4620 + yy4621.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58043,83 +58099,83 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4619 := *v - yyh4619, yyl4619 := z.DecSliceHelperStart() - var yyc4619 bool - if yyl4619 == 0 { - if yyv4619 == nil { - yyv4619 = []NodeSelectorRequirement{} - yyc4619 = true - } else if len(yyv4619) != 0 { - yyv4619 = yyv4619[:0] - yyc4619 = true + yyv4622 := *v + yyh4622, yyl4622 := z.DecSliceHelperStart() + var yyc4622 bool + if yyl4622 == 0 { + if yyv4622 == nil { + yyv4622 = []NodeSelectorRequirement{} + yyc4622 = true + } else if len(yyv4622) != 0 { + yyv4622 = yyv4622[:0] + yyc4622 = true } - } else if yyl4619 > 0 { - var yyrr4619, yyrl4619 int - var yyrt4619 bool - if yyl4619 > cap(yyv4619) { + } else if yyl4622 > 0 { + var yyrr4622, yyrl4622 int + var yyrt4622 bool + if yyl4622 > cap(yyv4622) { - yyrg4619 := len(yyv4619) > 0 - yyv24619 := yyv4619 - yyrl4619, yyrt4619 = z.DecInferLen(yyl4619, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4619 { - if yyrl4619 <= cap(yyv4619) { - yyv4619 = yyv4619[:yyrl4619] + yyrg4622 := len(yyv4622) > 0 + yyv24622 := yyv4622 + yyrl4622, yyrt4622 = z.DecInferLen(yyl4622, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4622 { + if yyrl4622 <= cap(yyv4622) { + yyv4622 = yyv4622[:yyrl4622] } else { - yyv4619 = make([]NodeSelectorRequirement, yyrl4619) + yyv4622 = make([]NodeSelectorRequirement, yyrl4622) } } else { - yyv4619 = make([]NodeSelectorRequirement, yyrl4619) + yyv4622 = make([]NodeSelectorRequirement, yyrl4622) } - yyc4619 = true - yyrr4619 = len(yyv4619) - if yyrg4619 { - copy(yyv4619, yyv24619) + yyc4622 = true + yyrr4622 = len(yyv4622) + if yyrg4622 { + copy(yyv4622, yyv24622) } - } else if yyl4619 != len(yyv4619) { - yyv4619 = yyv4619[:yyl4619] - yyc4619 = true + } else if yyl4622 != len(yyv4622) { + yyv4622 = yyv4622[:yyl4622] + yyc4622 = true } - yyj4619 := 0 - for ; yyj4619 < yyrr4619; yyj4619++ { - yyh4619.ElemContainerState(yyj4619) + yyj4622 := 0 + for ; yyj4622 < yyrr4622; yyj4622++ { + yyh4622.ElemContainerState(yyj4622) if r.TryDecodeAsNil() { - yyv4619[yyj4619] = NodeSelectorRequirement{} + yyv4622[yyj4622] = NodeSelectorRequirement{} } else { - yyv4620 := &yyv4619[yyj4619] - yyv4620.CodecDecodeSelf(d) + yyv4623 := &yyv4622[yyj4622] + yyv4623.CodecDecodeSelf(d) } } - if yyrt4619 { - for ; yyj4619 < yyl4619; yyj4619++ { - yyv4619 = append(yyv4619, NodeSelectorRequirement{}) - yyh4619.ElemContainerState(yyj4619) + if yyrt4622 { + for ; yyj4622 < yyl4622; yyj4622++ { + yyv4622 = append(yyv4622, NodeSelectorRequirement{}) + yyh4622.ElemContainerState(yyj4622) if r.TryDecodeAsNil() { - yyv4619[yyj4619] = NodeSelectorRequirement{} + yyv4622[yyj4622] = NodeSelectorRequirement{} } else { - yyv4621 := &yyv4619[yyj4619] - yyv4621.CodecDecodeSelf(d) + yyv4624 := &yyv4622[yyj4622] + yyv4624.CodecDecodeSelf(d) } } } } else { - yyj4619 := 0 - for ; !r.CheckBreak(); yyj4619++ { + yyj4622 := 0 + for ; !r.CheckBreak(); yyj4622++ { - if yyj4619 >= len(yyv4619) { - yyv4619 = append(yyv4619, NodeSelectorRequirement{}) // var yyz4619 NodeSelectorRequirement - yyc4619 = true + if yyj4622 >= len(yyv4622) { + yyv4622 = append(yyv4622, NodeSelectorRequirement{}) // var yyz4622 NodeSelectorRequirement + yyc4622 = true } - yyh4619.ElemContainerState(yyj4619) - if yyj4619 < len(yyv4619) { + yyh4622.ElemContainerState(yyj4622) + if yyj4622 < len(yyv4622) { if r.TryDecodeAsNil() { - yyv4619[yyj4619] = NodeSelectorRequirement{} + yyv4622[yyj4622] = NodeSelectorRequirement{} } else { - yyv4622 := &yyv4619[yyj4619] - yyv4622.CodecDecodeSelf(d) + yyv4625 := &yyv4622[yyj4622] + yyv4625.CodecDecodeSelf(d) } } else { @@ -58127,17 +58183,17 @@ func (x codecSelfer1234) decSliceNodeSelectorRequirement(v *[]NodeSelectorRequir } } - if yyj4619 < len(yyv4619) { - yyv4619 = yyv4619[:yyj4619] - yyc4619 = true - } else if yyj4619 == 0 && yyv4619 == nil { - yyv4619 = []NodeSelectorRequirement{} - yyc4619 = true + if yyj4622 < len(yyv4622) { + yyv4622 = yyv4622[:yyj4622] + yyc4622 = true + } else if yyj4622 == 0 && yyv4622 == nil { + yyv4622 = []NodeSelectorRequirement{} + yyc4622 = true } } - yyh4619.End() - if yyc4619 { - *v = yyv4619 + yyh4622.End() + if yyc4622 { + *v = yyv4622 } } @@ -58146,10 +58202,10 @@ func (x codecSelfer1234) encSlicePodAffinityTerm(v []PodAffinityTerm, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4623 := range v { + for _, yyv4626 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4624 := &yyv4623 - yy4624.CodecEncodeSelf(e) + yy4627 := &yyv4626 + yy4627.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58159,83 +58215,83 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4625 := *v - yyh4625, yyl4625 := z.DecSliceHelperStart() - var yyc4625 bool - if yyl4625 == 0 { - if yyv4625 == nil { - yyv4625 = []PodAffinityTerm{} - yyc4625 = true - } else if len(yyv4625) != 0 { - yyv4625 = yyv4625[:0] - yyc4625 = true + yyv4628 := *v + yyh4628, yyl4628 := z.DecSliceHelperStart() + var yyc4628 bool + if yyl4628 == 0 { + if yyv4628 == nil { + yyv4628 = []PodAffinityTerm{} + yyc4628 = true + } else if len(yyv4628) != 0 { + yyv4628 = yyv4628[:0] + yyc4628 = true } - } else if yyl4625 > 0 { - var yyrr4625, yyrl4625 int - var yyrt4625 bool - if yyl4625 > cap(yyv4625) { + } else if yyl4628 > 0 { + var yyrr4628, yyrl4628 int + var yyrt4628 bool + if yyl4628 > cap(yyv4628) { - yyrg4625 := len(yyv4625) > 0 - yyv24625 := yyv4625 - yyrl4625, yyrt4625 = z.DecInferLen(yyl4625, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4625 { - if yyrl4625 <= cap(yyv4625) { - yyv4625 = yyv4625[:yyrl4625] + yyrg4628 := len(yyv4628) > 0 + yyv24628 := yyv4628 + yyrl4628, yyrt4628 = z.DecInferLen(yyl4628, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4628 { + if yyrl4628 <= cap(yyv4628) { + yyv4628 = yyv4628[:yyrl4628] } else { - yyv4625 = make([]PodAffinityTerm, yyrl4625) + yyv4628 = make([]PodAffinityTerm, yyrl4628) } } else { - yyv4625 = make([]PodAffinityTerm, yyrl4625) + yyv4628 = make([]PodAffinityTerm, yyrl4628) } - yyc4625 = true - yyrr4625 = len(yyv4625) - if yyrg4625 { - copy(yyv4625, yyv24625) + yyc4628 = true + yyrr4628 = len(yyv4628) + if yyrg4628 { + copy(yyv4628, yyv24628) } - } else if yyl4625 != len(yyv4625) { - yyv4625 = yyv4625[:yyl4625] - yyc4625 = true + } else if yyl4628 != len(yyv4628) { + yyv4628 = yyv4628[:yyl4628] + yyc4628 = true } - yyj4625 := 0 - for ; yyj4625 < yyrr4625; yyj4625++ { - yyh4625.ElemContainerState(yyj4625) + yyj4628 := 0 + for ; yyj4628 < yyrr4628; yyj4628++ { + yyh4628.ElemContainerState(yyj4628) if r.TryDecodeAsNil() { - yyv4625[yyj4625] = PodAffinityTerm{} + yyv4628[yyj4628] = PodAffinityTerm{} } else { - yyv4626 := &yyv4625[yyj4625] - yyv4626.CodecDecodeSelf(d) + yyv4629 := &yyv4628[yyj4628] + yyv4629.CodecDecodeSelf(d) } } - if yyrt4625 { - for ; yyj4625 < yyl4625; yyj4625++ { - yyv4625 = append(yyv4625, PodAffinityTerm{}) - yyh4625.ElemContainerState(yyj4625) + if yyrt4628 { + for ; yyj4628 < yyl4628; yyj4628++ { + yyv4628 = append(yyv4628, PodAffinityTerm{}) + yyh4628.ElemContainerState(yyj4628) if r.TryDecodeAsNil() { - yyv4625[yyj4625] = PodAffinityTerm{} + yyv4628[yyj4628] = PodAffinityTerm{} } else { - yyv4627 := &yyv4625[yyj4625] - yyv4627.CodecDecodeSelf(d) + yyv4630 := &yyv4628[yyj4628] + yyv4630.CodecDecodeSelf(d) } } } } else { - yyj4625 := 0 - for ; !r.CheckBreak(); yyj4625++ { + yyj4628 := 0 + for ; !r.CheckBreak(); yyj4628++ { - if yyj4625 >= len(yyv4625) { - yyv4625 = append(yyv4625, PodAffinityTerm{}) // var yyz4625 PodAffinityTerm - yyc4625 = true + if yyj4628 >= len(yyv4628) { + yyv4628 = append(yyv4628, PodAffinityTerm{}) // var yyz4628 PodAffinityTerm + yyc4628 = true } - yyh4625.ElemContainerState(yyj4625) - if yyj4625 < len(yyv4625) { + yyh4628.ElemContainerState(yyj4628) + if yyj4628 < len(yyv4628) { if r.TryDecodeAsNil() { - yyv4625[yyj4625] = PodAffinityTerm{} + yyv4628[yyj4628] = PodAffinityTerm{} } else { - yyv4628 := &yyv4625[yyj4625] - yyv4628.CodecDecodeSelf(d) + yyv4631 := &yyv4628[yyj4628] + yyv4631.CodecDecodeSelf(d) } } else { @@ -58243,17 +58299,17 @@ func (x codecSelfer1234) decSlicePodAffinityTerm(v *[]PodAffinityTerm, d *codec1 } } - if yyj4625 < len(yyv4625) { - yyv4625 = yyv4625[:yyj4625] - yyc4625 = true - } else if yyj4625 == 0 && yyv4625 == nil { - yyv4625 = []PodAffinityTerm{} - yyc4625 = true + if yyj4628 < len(yyv4628) { + yyv4628 = yyv4628[:yyj4628] + yyc4628 = true + } else if yyj4628 == 0 && yyv4628 == nil { + yyv4628 = []PodAffinityTerm{} + yyc4628 = true } } - yyh4625.End() - if yyc4625 { - *v = yyv4625 + yyh4628.End() + if yyc4628 { + *v = yyv4628 } } @@ -58262,10 +58318,10 @@ func (x codecSelfer1234) encSliceWeightedPodAffinityTerm(v []WeightedPodAffinity z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4629 := range v { + for _, yyv4632 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4630 := &yyv4629 - yy4630.CodecEncodeSelf(e) + yy4633 := &yyv4632 + yy4633.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58275,83 +58331,83 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4631 := *v - yyh4631, yyl4631 := z.DecSliceHelperStart() - var yyc4631 bool - if yyl4631 == 0 { - if yyv4631 == nil { - yyv4631 = []WeightedPodAffinityTerm{} - yyc4631 = true - } else if len(yyv4631) != 0 { - yyv4631 = yyv4631[:0] - yyc4631 = true + yyv4634 := *v + yyh4634, yyl4634 := z.DecSliceHelperStart() + var yyc4634 bool + if yyl4634 == 0 { + if yyv4634 == nil { + yyv4634 = []WeightedPodAffinityTerm{} + yyc4634 = true + } else if len(yyv4634) != 0 { + yyv4634 = yyv4634[:0] + yyc4634 = true } - } else if yyl4631 > 0 { - var yyrr4631, yyrl4631 int - var yyrt4631 bool - if yyl4631 > cap(yyv4631) { + } else if yyl4634 > 0 { + var yyrr4634, yyrl4634 int + var yyrt4634 bool + if yyl4634 > cap(yyv4634) { - yyrg4631 := len(yyv4631) > 0 - yyv24631 := yyv4631 - yyrl4631, yyrt4631 = z.DecInferLen(yyl4631, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4631 { - if yyrl4631 <= cap(yyv4631) { - yyv4631 = yyv4631[:yyrl4631] + yyrg4634 := len(yyv4634) > 0 + yyv24634 := yyv4634 + yyrl4634, yyrt4634 = z.DecInferLen(yyl4634, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4634 { + if yyrl4634 <= cap(yyv4634) { + yyv4634 = yyv4634[:yyrl4634] } else { - yyv4631 = make([]WeightedPodAffinityTerm, yyrl4631) + yyv4634 = make([]WeightedPodAffinityTerm, yyrl4634) } } else { - yyv4631 = make([]WeightedPodAffinityTerm, yyrl4631) + yyv4634 = make([]WeightedPodAffinityTerm, yyrl4634) } - yyc4631 = true - yyrr4631 = len(yyv4631) - if yyrg4631 { - copy(yyv4631, yyv24631) + yyc4634 = true + yyrr4634 = len(yyv4634) + if yyrg4634 { + copy(yyv4634, yyv24634) } - } else if yyl4631 != len(yyv4631) { - yyv4631 = yyv4631[:yyl4631] - yyc4631 = true + } else if yyl4634 != len(yyv4634) { + yyv4634 = yyv4634[:yyl4634] + yyc4634 = true } - yyj4631 := 0 - for ; yyj4631 < yyrr4631; yyj4631++ { - yyh4631.ElemContainerState(yyj4631) + yyj4634 := 0 + for ; yyj4634 < yyrr4634; yyj4634++ { + yyh4634.ElemContainerState(yyj4634) if r.TryDecodeAsNil() { - yyv4631[yyj4631] = WeightedPodAffinityTerm{} + yyv4634[yyj4634] = WeightedPodAffinityTerm{} } else { - yyv4632 := &yyv4631[yyj4631] - yyv4632.CodecDecodeSelf(d) + yyv4635 := &yyv4634[yyj4634] + yyv4635.CodecDecodeSelf(d) } } - if yyrt4631 { - for ; yyj4631 < yyl4631; yyj4631++ { - yyv4631 = append(yyv4631, WeightedPodAffinityTerm{}) - yyh4631.ElemContainerState(yyj4631) + if yyrt4634 { + for ; yyj4634 < yyl4634; yyj4634++ { + yyv4634 = append(yyv4634, WeightedPodAffinityTerm{}) + yyh4634.ElemContainerState(yyj4634) if r.TryDecodeAsNil() { - yyv4631[yyj4631] = WeightedPodAffinityTerm{} + yyv4634[yyj4634] = WeightedPodAffinityTerm{} } else { - yyv4633 := &yyv4631[yyj4631] - yyv4633.CodecDecodeSelf(d) + yyv4636 := &yyv4634[yyj4634] + yyv4636.CodecDecodeSelf(d) } } } } else { - yyj4631 := 0 - for ; !r.CheckBreak(); yyj4631++ { + yyj4634 := 0 + for ; !r.CheckBreak(); yyj4634++ { - if yyj4631 >= len(yyv4631) { - yyv4631 = append(yyv4631, WeightedPodAffinityTerm{}) // var yyz4631 WeightedPodAffinityTerm - yyc4631 = true + if yyj4634 >= len(yyv4634) { + yyv4634 = append(yyv4634, WeightedPodAffinityTerm{}) // var yyz4634 WeightedPodAffinityTerm + yyc4634 = true } - yyh4631.ElemContainerState(yyj4631) - if yyj4631 < len(yyv4631) { + yyh4634.ElemContainerState(yyj4634) + if yyj4634 < len(yyv4634) { if r.TryDecodeAsNil() { - yyv4631[yyj4631] = WeightedPodAffinityTerm{} + yyv4634[yyj4634] = WeightedPodAffinityTerm{} } else { - yyv4634 := &yyv4631[yyj4631] - yyv4634.CodecDecodeSelf(d) + yyv4637 := &yyv4634[yyj4634] + yyv4637.CodecDecodeSelf(d) } } else { @@ -58359,17 +58415,17 @@ func (x codecSelfer1234) decSliceWeightedPodAffinityTerm(v *[]WeightedPodAffinit } } - if yyj4631 < len(yyv4631) { - yyv4631 = yyv4631[:yyj4631] - yyc4631 = true - } else if yyj4631 == 0 && yyv4631 == nil { - yyv4631 = []WeightedPodAffinityTerm{} - yyc4631 = true + if yyj4634 < len(yyv4634) { + yyv4634 = yyv4634[:yyj4634] + yyc4634 = true + } else if yyj4634 == 0 && yyv4634 == nil { + yyv4634 = []WeightedPodAffinityTerm{} + yyc4634 = true } } - yyh4631.End() - if yyc4631 { - *v = yyv4631 + yyh4634.End() + if yyc4634 { + *v = yyv4634 } } @@ -58378,10 +58434,10 @@ func (x codecSelfer1234) encSlicePreferredSchedulingTerm(v []PreferredScheduling z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4635 := range v { + for _, yyv4638 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4636 := &yyv4635 - yy4636.CodecEncodeSelf(e) + yy4639 := &yyv4638 + yy4639.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58391,83 +58447,83 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4637 := *v - yyh4637, yyl4637 := z.DecSliceHelperStart() - var yyc4637 bool - if yyl4637 == 0 { - if yyv4637 == nil { - yyv4637 = []PreferredSchedulingTerm{} - yyc4637 = true - } else if len(yyv4637) != 0 { - yyv4637 = yyv4637[:0] - yyc4637 = true + yyv4640 := *v + yyh4640, yyl4640 := z.DecSliceHelperStart() + var yyc4640 bool + if yyl4640 == 0 { + if yyv4640 == nil { + yyv4640 = []PreferredSchedulingTerm{} + yyc4640 = true + } else if len(yyv4640) != 0 { + yyv4640 = yyv4640[:0] + yyc4640 = true } - } else if yyl4637 > 0 { - var yyrr4637, yyrl4637 int - var yyrt4637 bool - if yyl4637 > cap(yyv4637) { + } else if yyl4640 > 0 { + var yyrr4640, yyrl4640 int + var yyrt4640 bool + if yyl4640 > cap(yyv4640) { - yyrg4637 := len(yyv4637) > 0 - yyv24637 := yyv4637 - yyrl4637, yyrt4637 = z.DecInferLen(yyl4637, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4637 { - if yyrl4637 <= cap(yyv4637) { - yyv4637 = yyv4637[:yyrl4637] + yyrg4640 := len(yyv4640) > 0 + yyv24640 := yyv4640 + yyrl4640, yyrt4640 = z.DecInferLen(yyl4640, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4640 { + if yyrl4640 <= cap(yyv4640) { + yyv4640 = yyv4640[:yyrl4640] } else { - yyv4637 = make([]PreferredSchedulingTerm, yyrl4637) + yyv4640 = make([]PreferredSchedulingTerm, yyrl4640) } } else { - yyv4637 = make([]PreferredSchedulingTerm, yyrl4637) + yyv4640 = make([]PreferredSchedulingTerm, yyrl4640) } - yyc4637 = true - yyrr4637 = len(yyv4637) - if yyrg4637 { - copy(yyv4637, yyv24637) + yyc4640 = true + yyrr4640 = len(yyv4640) + if yyrg4640 { + copy(yyv4640, yyv24640) } - } else if yyl4637 != len(yyv4637) { - yyv4637 = yyv4637[:yyl4637] - yyc4637 = true + } else if yyl4640 != len(yyv4640) { + yyv4640 = yyv4640[:yyl4640] + yyc4640 = true } - yyj4637 := 0 - for ; yyj4637 < yyrr4637; yyj4637++ { - yyh4637.ElemContainerState(yyj4637) + yyj4640 := 0 + for ; yyj4640 < yyrr4640; yyj4640++ { + yyh4640.ElemContainerState(yyj4640) if r.TryDecodeAsNil() { - yyv4637[yyj4637] = PreferredSchedulingTerm{} + yyv4640[yyj4640] = PreferredSchedulingTerm{} } else { - yyv4638 := &yyv4637[yyj4637] - yyv4638.CodecDecodeSelf(d) + yyv4641 := &yyv4640[yyj4640] + yyv4641.CodecDecodeSelf(d) } } - if yyrt4637 { - for ; yyj4637 < yyl4637; yyj4637++ { - yyv4637 = append(yyv4637, PreferredSchedulingTerm{}) - yyh4637.ElemContainerState(yyj4637) + if yyrt4640 { + for ; yyj4640 < yyl4640; yyj4640++ { + yyv4640 = append(yyv4640, PreferredSchedulingTerm{}) + yyh4640.ElemContainerState(yyj4640) if r.TryDecodeAsNil() { - yyv4637[yyj4637] = PreferredSchedulingTerm{} + yyv4640[yyj4640] = PreferredSchedulingTerm{} } else { - yyv4639 := &yyv4637[yyj4637] - yyv4639.CodecDecodeSelf(d) + yyv4642 := &yyv4640[yyj4640] + yyv4642.CodecDecodeSelf(d) } } } } else { - yyj4637 := 0 - for ; !r.CheckBreak(); yyj4637++ { + yyj4640 := 0 + for ; !r.CheckBreak(); yyj4640++ { - if yyj4637 >= len(yyv4637) { - yyv4637 = append(yyv4637, PreferredSchedulingTerm{}) // var yyz4637 PreferredSchedulingTerm - yyc4637 = true + if yyj4640 >= len(yyv4640) { + yyv4640 = append(yyv4640, PreferredSchedulingTerm{}) // var yyz4640 PreferredSchedulingTerm + yyc4640 = true } - yyh4637.ElemContainerState(yyj4637) - if yyj4637 < len(yyv4637) { + yyh4640.ElemContainerState(yyj4640) + if yyj4640 < len(yyv4640) { if r.TryDecodeAsNil() { - yyv4637[yyj4637] = PreferredSchedulingTerm{} + yyv4640[yyj4640] = PreferredSchedulingTerm{} } else { - yyv4640 := &yyv4637[yyj4637] - yyv4640.CodecDecodeSelf(d) + yyv4643 := &yyv4640[yyj4640] + yyv4643.CodecDecodeSelf(d) } } else { @@ -58475,17 +58531,17 @@ func (x codecSelfer1234) decSlicePreferredSchedulingTerm(v *[]PreferredSchedulin } } - if yyj4637 < len(yyv4637) { - yyv4637 = yyv4637[:yyj4637] - yyc4637 = true - } else if yyj4637 == 0 && yyv4637 == nil { - yyv4637 = []PreferredSchedulingTerm{} - yyc4637 = true + if yyj4640 < len(yyv4640) { + yyv4640 = yyv4640[:yyj4640] + yyc4640 = true + } else if yyj4640 == 0 && yyv4640 == nil { + yyv4640 = []PreferredSchedulingTerm{} + yyc4640 = true } } - yyh4637.End() - if yyc4637 { - *v = yyv4637 + yyh4640.End() + if yyc4640 { + *v = yyv4640 } } @@ -58494,10 +58550,10 @@ func (x codecSelfer1234) encSliceVolume(v []Volume, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4641 := range v { + for _, yyv4644 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4642 := &yyv4641 - yy4642.CodecEncodeSelf(e) + yy4645 := &yyv4644 + yy4645.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58507,83 +58563,83 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4643 := *v - yyh4643, yyl4643 := z.DecSliceHelperStart() - var yyc4643 bool - if yyl4643 == 0 { - if yyv4643 == nil { - yyv4643 = []Volume{} - yyc4643 = true - } else if len(yyv4643) != 0 { - yyv4643 = yyv4643[:0] - yyc4643 = true + yyv4646 := *v + yyh4646, yyl4646 := z.DecSliceHelperStart() + var yyc4646 bool + if yyl4646 == 0 { + if yyv4646 == nil { + yyv4646 = []Volume{} + yyc4646 = true + } else if len(yyv4646) != 0 { + yyv4646 = yyv4646[:0] + yyc4646 = true } - } else if yyl4643 > 0 { - var yyrr4643, yyrl4643 int - var yyrt4643 bool - if yyl4643 > cap(yyv4643) { + } else if yyl4646 > 0 { + var yyrr4646, yyrl4646 int + var yyrt4646 bool + if yyl4646 > cap(yyv4646) { - yyrg4643 := len(yyv4643) > 0 - yyv24643 := yyv4643 - yyrl4643, yyrt4643 = z.DecInferLen(yyl4643, z.DecBasicHandle().MaxInitLen, 200) - if yyrt4643 { - if yyrl4643 <= cap(yyv4643) { - yyv4643 = yyv4643[:yyrl4643] + yyrg4646 := len(yyv4646) > 0 + yyv24646 := yyv4646 + yyrl4646, yyrt4646 = z.DecInferLen(yyl4646, z.DecBasicHandle().MaxInitLen, 200) + if yyrt4646 { + if yyrl4646 <= cap(yyv4646) { + yyv4646 = yyv4646[:yyrl4646] } else { - yyv4643 = make([]Volume, yyrl4643) + yyv4646 = make([]Volume, yyrl4646) } } else { - yyv4643 = make([]Volume, yyrl4643) + yyv4646 = make([]Volume, yyrl4646) } - yyc4643 = true - yyrr4643 = len(yyv4643) - if yyrg4643 { - copy(yyv4643, yyv24643) + yyc4646 = true + yyrr4646 = len(yyv4646) + if yyrg4646 { + copy(yyv4646, yyv24646) } - } else if yyl4643 != len(yyv4643) { - yyv4643 = yyv4643[:yyl4643] - yyc4643 = true + } else if yyl4646 != len(yyv4646) { + yyv4646 = yyv4646[:yyl4646] + yyc4646 = true } - yyj4643 := 0 - for ; yyj4643 < yyrr4643; yyj4643++ { - yyh4643.ElemContainerState(yyj4643) + yyj4646 := 0 + for ; yyj4646 < yyrr4646; yyj4646++ { + yyh4646.ElemContainerState(yyj4646) if r.TryDecodeAsNil() { - yyv4643[yyj4643] = Volume{} + yyv4646[yyj4646] = Volume{} } else { - yyv4644 := &yyv4643[yyj4643] - yyv4644.CodecDecodeSelf(d) + yyv4647 := &yyv4646[yyj4646] + yyv4647.CodecDecodeSelf(d) } } - if yyrt4643 { - for ; yyj4643 < yyl4643; yyj4643++ { - yyv4643 = append(yyv4643, Volume{}) - yyh4643.ElemContainerState(yyj4643) + if yyrt4646 { + for ; yyj4646 < yyl4646; yyj4646++ { + yyv4646 = append(yyv4646, Volume{}) + yyh4646.ElemContainerState(yyj4646) if r.TryDecodeAsNil() { - yyv4643[yyj4643] = Volume{} + yyv4646[yyj4646] = Volume{} } else { - yyv4645 := &yyv4643[yyj4643] - yyv4645.CodecDecodeSelf(d) + yyv4648 := &yyv4646[yyj4646] + yyv4648.CodecDecodeSelf(d) } } } } else { - yyj4643 := 0 - for ; !r.CheckBreak(); yyj4643++ { + yyj4646 := 0 + for ; !r.CheckBreak(); yyj4646++ { - if yyj4643 >= len(yyv4643) { - yyv4643 = append(yyv4643, Volume{}) // var yyz4643 Volume - yyc4643 = true + if yyj4646 >= len(yyv4646) { + yyv4646 = append(yyv4646, Volume{}) // var yyz4646 Volume + yyc4646 = true } - yyh4643.ElemContainerState(yyj4643) - if yyj4643 < len(yyv4643) { + yyh4646.ElemContainerState(yyj4646) + if yyj4646 < len(yyv4646) { if r.TryDecodeAsNil() { - yyv4643[yyj4643] = Volume{} + yyv4646[yyj4646] = Volume{} } else { - yyv4646 := &yyv4643[yyj4643] - yyv4646.CodecDecodeSelf(d) + yyv4649 := &yyv4646[yyj4646] + yyv4649.CodecDecodeSelf(d) } } else { @@ -58591,17 +58647,17 @@ func (x codecSelfer1234) decSliceVolume(v *[]Volume, d *codec1978.Decoder) { } } - if yyj4643 < len(yyv4643) { - yyv4643 = yyv4643[:yyj4643] - yyc4643 = true - } else if yyj4643 == 0 && yyv4643 == nil { - yyv4643 = []Volume{} - yyc4643 = true + if yyj4646 < len(yyv4646) { + yyv4646 = yyv4646[:yyj4646] + yyc4646 = true + } else if yyj4646 == 0 && yyv4646 == nil { + yyv4646 = []Volume{} + yyc4646 = true } } - yyh4643.End() - if yyc4643 { - *v = yyv4643 + yyh4646.End() + if yyc4646 { + *v = yyv4646 } } @@ -58610,10 +58666,10 @@ func (x codecSelfer1234) encSliceContainer(v []Container, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4647 := range v { + for _, yyv4650 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4648 := &yyv4647 - yy4648.CodecEncodeSelf(e) + yy4651 := &yyv4650 + yy4651.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58623,83 +58679,83 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4649 := *v - yyh4649, yyl4649 := z.DecSliceHelperStart() - var yyc4649 bool - if yyl4649 == 0 { - if yyv4649 == nil { - yyv4649 = []Container{} - yyc4649 = true - } else if len(yyv4649) != 0 { - yyv4649 = yyv4649[:0] - yyc4649 = true + yyv4652 := *v + yyh4652, yyl4652 := z.DecSliceHelperStart() + var yyc4652 bool + if yyl4652 == 0 { + if yyv4652 == nil { + yyv4652 = []Container{} + yyc4652 = true + } else if len(yyv4652) != 0 { + yyv4652 = yyv4652[:0] + yyc4652 = true } - } else if yyl4649 > 0 { - var yyrr4649, yyrl4649 int - var yyrt4649 bool - if yyl4649 > cap(yyv4649) { + } else if yyl4652 > 0 { + var yyrr4652, yyrl4652 int + var yyrt4652 bool + if yyl4652 > cap(yyv4652) { - yyrg4649 := len(yyv4649) > 0 - yyv24649 := yyv4649 - yyrl4649, yyrt4649 = z.DecInferLen(yyl4649, z.DecBasicHandle().MaxInitLen, 256) - if yyrt4649 { - if yyrl4649 <= cap(yyv4649) { - yyv4649 = yyv4649[:yyrl4649] + yyrg4652 := len(yyv4652) > 0 + yyv24652 := yyv4652 + yyrl4652, yyrt4652 = z.DecInferLen(yyl4652, z.DecBasicHandle().MaxInitLen, 256) + if yyrt4652 { + if yyrl4652 <= cap(yyv4652) { + yyv4652 = yyv4652[:yyrl4652] } else { - yyv4649 = make([]Container, yyrl4649) + yyv4652 = make([]Container, yyrl4652) } } else { - yyv4649 = make([]Container, yyrl4649) + yyv4652 = make([]Container, yyrl4652) } - yyc4649 = true - yyrr4649 = len(yyv4649) - if yyrg4649 { - copy(yyv4649, yyv24649) + yyc4652 = true + yyrr4652 = len(yyv4652) + if yyrg4652 { + copy(yyv4652, yyv24652) } - } else if yyl4649 != len(yyv4649) { - yyv4649 = yyv4649[:yyl4649] - yyc4649 = true + } else if yyl4652 != len(yyv4652) { + yyv4652 = yyv4652[:yyl4652] + yyc4652 = true } - yyj4649 := 0 - for ; yyj4649 < yyrr4649; yyj4649++ { - yyh4649.ElemContainerState(yyj4649) + yyj4652 := 0 + for ; yyj4652 < yyrr4652; yyj4652++ { + yyh4652.ElemContainerState(yyj4652) if r.TryDecodeAsNil() { - yyv4649[yyj4649] = Container{} + yyv4652[yyj4652] = Container{} } else { - yyv4650 := &yyv4649[yyj4649] - yyv4650.CodecDecodeSelf(d) + yyv4653 := &yyv4652[yyj4652] + yyv4653.CodecDecodeSelf(d) } } - if yyrt4649 { - for ; yyj4649 < yyl4649; yyj4649++ { - yyv4649 = append(yyv4649, Container{}) - yyh4649.ElemContainerState(yyj4649) + if yyrt4652 { + for ; yyj4652 < yyl4652; yyj4652++ { + yyv4652 = append(yyv4652, Container{}) + yyh4652.ElemContainerState(yyj4652) if r.TryDecodeAsNil() { - yyv4649[yyj4649] = Container{} + yyv4652[yyj4652] = Container{} } else { - yyv4651 := &yyv4649[yyj4649] - yyv4651.CodecDecodeSelf(d) + yyv4654 := &yyv4652[yyj4652] + yyv4654.CodecDecodeSelf(d) } } } } else { - yyj4649 := 0 - for ; !r.CheckBreak(); yyj4649++ { + yyj4652 := 0 + for ; !r.CheckBreak(); yyj4652++ { - if yyj4649 >= len(yyv4649) { - yyv4649 = append(yyv4649, Container{}) // var yyz4649 Container - yyc4649 = true + if yyj4652 >= len(yyv4652) { + yyv4652 = append(yyv4652, Container{}) // var yyz4652 Container + yyc4652 = true } - yyh4649.ElemContainerState(yyj4649) - if yyj4649 < len(yyv4649) { + yyh4652.ElemContainerState(yyj4652) + if yyj4652 < len(yyv4652) { if r.TryDecodeAsNil() { - yyv4649[yyj4649] = Container{} + yyv4652[yyj4652] = Container{} } else { - yyv4652 := &yyv4649[yyj4649] - yyv4652.CodecDecodeSelf(d) + yyv4655 := &yyv4652[yyj4652] + yyv4655.CodecDecodeSelf(d) } } else { @@ -58707,17 +58763,17 @@ func (x codecSelfer1234) decSliceContainer(v *[]Container, d *codec1978.Decoder) } } - if yyj4649 < len(yyv4649) { - yyv4649 = yyv4649[:yyj4649] - yyc4649 = true - } else if yyj4649 == 0 && yyv4649 == nil { - yyv4649 = []Container{} - yyc4649 = true + if yyj4652 < len(yyv4652) { + yyv4652 = yyv4652[:yyj4652] + yyc4652 = true + } else if yyj4652 == 0 && yyv4652 == nil { + yyv4652 = []Container{} + yyc4652 = true } } - yyh4649.End() - if yyc4649 { - *v = yyv4649 + yyh4652.End() + if yyc4652 { + *v = yyv4652 } } @@ -58726,10 +58782,10 @@ func (x codecSelfer1234) encSliceLocalObjectReference(v []LocalObjectReference, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4653 := range v { + for _, yyv4656 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4654 := &yyv4653 - yy4654.CodecEncodeSelf(e) + yy4657 := &yyv4656 + yy4657.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58739,83 +58795,83 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4655 := *v - yyh4655, yyl4655 := z.DecSliceHelperStart() - var yyc4655 bool - if yyl4655 == 0 { - if yyv4655 == nil { - yyv4655 = []LocalObjectReference{} - yyc4655 = true - } else if len(yyv4655) != 0 { - yyv4655 = yyv4655[:0] - yyc4655 = true + yyv4658 := *v + yyh4658, yyl4658 := z.DecSliceHelperStart() + var yyc4658 bool + if yyl4658 == 0 { + if yyv4658 == nil { + yyv4658 = []LocalObjectReference{} + yyc4658 = true + } else if len(yyv4658) != 0 { + yyv4658 = yyv4658[:0] + yyc4658 = true } - } else if yyl4655 > 0 { - var yyrr4655, yyrl4655 int - var yyrt4655 bool - if yyl4655 > cap(yyv4655) { + } else if yyl4658 > 0 { + var yyrr4658, yyrl4658 int + var yyrt4658 bool + if yyl4658 > cap(yyv4658) { - yyrg4655 := len(yyv4655) > 0 - yyv24655 := yyv4655 - yyrl4655, yyrt4655 = z.DecInferLen(yyl4655, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4655 { - if yyrl4655 <= cap(yyv4655) { - yyv4655 = yyv4655[:yyrl4655] + yyrg4658 := len(yyv4658) > 0 + yyv24658 := yyv4658 + yyrl4658, yyrt4658 = z.DecInferLen(yyl4658, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4658 { + if yyrl4658 <= cap(yyv4658) { + yyv4658 = yyv4658[:yyrl4658] } else { - yyv4655 = make([]LocalObjectReference, yyrl4655) + yyv4658 = make([]LocalObjectReference, yyrl4658) } } else { - yyv4655 = make([]LocalObjectReference, yyrl4655) + yyv4658 = make([]LocalObjectReference, yyrl4658) } - yyc4655 = true - yyrr4655 = len(yyv4655) - if yyrg4655 { - copy(yyv4655, yyv24655) + yyc4658 = true + yyrr4658 = len(yyv4658) + if yyrg4658 { + copy(yyv4658, yyv24658) } - } else if yyl4655 != len(yyv4655) { - yyv4655 = yyv4655[:yyl4655] - yyc4655 = true + } else if yyl4658 != len(yyv4658) { + yyv4658 = yyv4658[:yyl4658] + yyc4658 = true } - yyj4655 := 0 - for ; yyj4655 < yyrr4655; yyj4655++ { - yyh4655.ElemContainerState(yyj4655) + yyj4658 := 0 + for ; yyj4658 < yyrr4658; yyj4658++ { + yyh4658.ElemContainerState(yyj4658) if r.TryDecodeAsNil() { - yyv4655[yyj4655] = LocalObjectReference{} + yyv4658[yyj4658] = LocalObjectReference{} } else { - yyv4656 := &yyv4655[yyj4655] - yyv4656.CodecDecodeSelf(d) + yyv4659 := &yyv4658[yyj4658] + yyv4659.CodecDecodeSelf(d) } } - if yyrt4655 { - for ; yyj4655 < yyl4655; yyj4655++ { - yyv4655 = append(yyv4655, LocalObjectReference{}) - yyh4655.ElemContainerState(yyj4655) + if yyrt4658 { + for ; yyj4658 < yyl4658; yyj4658++ { + yyv4658 = append(yyv4658, LocalObjectReference{}) + yyh4658.ElemContainerState(yyj4658) if r.TryDecodeAsNil() { - yyv4655[yyj4655] = LocalObjectReference{} + yyv4658[yyj4658] = LocalObjectReference{} } else { - yyv4657 := &yyv4655[yyj4655] - yyv4657.CodecDecodeSelf(d) + yyv4660 := &yyv4658[yyj4658] + yyv4660.CodecDecodeSelf(d) } } } } else { - yyj4655 := 0 - for ; !r.CheckBreak(); yyj4655++ { + yyj4658 := 0 + for ; !r.CheckBreak(); yyj4658++ { - if yyj4655 >= len(yyv4655) { - yyv4655 = append(yyv4655, LocalObjectReference{}) // var yyz4655 LocalObjectReference - yyc4655 = true + if yyj4658 >= len(yyv4658) { + yyv4658 = append(yyv4658, LocalObjectReference{}) // var yyz4658 LocalObjectReference + yyc4658 = true } - yyh4655.ElemContainerState(yyj4655) - if yyj4655 < len(yyv4655) { + yyh4658.ElemContainerState(yyj4658) + if yyj4658 < len(yyv4658) { if r.TryDecodeAsNil() { - yyv4655[yyj4655] = LocalObjectReference{} + yyv4658[yyj4658] = LocalObjectReference{} } else { - yyv4658 := &yyv4655[yyj4655] - yyv4658.CodecDecodeSelf(d) + yyv4661 := &yyv4658[yyj4658] + yyv4661.CodecDecodeSelf(d) } } else { @@ -58823,17 +58879,17 @@ func (x codecSelfer1234) decSliceLocalObjectReference(v *[]LocalObjectReference, } } - if yyj4655 < len(yyv4655) { - yyv4655 = yyv4655[:yyj4655] - yyc4655 = true - } else if yyj4655 == 0 && yyv4655 == nil { - yyv4655 = []LocalObjectReference{} - yyc4655 = true + if yyj4658 < len(yyv4658) { + yyv4658 = yyv4658[:yyj4658] + yyc4658 = true + } else if yyj4658 == 0 && yyv4658 == nil { + yyv4658 = []LocalObjectReference{} + yyc4658 = true } } - yyh4655.End() - if yyc4655 { - *v = yyv4655 + yyh4658.End() + if yyc4658 { + *v = yyv4658 } } @@ -58842,10 +58898,10 @@ func (x codecSelfer1234) encSlicePodCondition(v []PodCondition, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4659 := range v { + for _, yyv4662 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4660 := &yyv4659 - yy4660.CodecEncodeSelf(e) + yy4663 := &yyv4662 + yy4663.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58855,83 +58911,83 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4661 := *v - yyh4661, yyl4661 := z.DecSliceHelperStart() - var yyc4661 bool - if yyl4661 == 0 { - if yyv4661 == nil { - yyv4661 = []PodCondition{} - yyc4661 = true - } else if len(yyv4661) != 0 { - yyv4661 = yyv4661[:0] - yyc4661 = true + yyv4664 := *v + yyh4664, yyl4664 := z.DecSliceHelperStart() + var yyc4664 bool + if yyl4664 == 0 { + if yyv4664 == nil { + yyv4664 = []PodCondition{} + yyc4664 = true + } else if len(yyv4664) != 0 { + yyv4664 = yyv4664[:0] + yyc4664 = true } - } else if yyl4661 > 0 { - var yyrr4661, yyrl4661 int - var yyrt4661 bool - if yyl4661 > cap(yyv4661) { + } else if yyl4664 > 0 { + var yyrr4664, yyrl4664 int + var yyrt4664 bool + if yyl4664 > cap(yyv4664) { - yyrg4661 := len(yyv4661) > 0 - yyv24661 := yyv4661 - yyrl4661, yyrt4661 = z.DecInferLen(yyl4661, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4661 { - if yyrl4661 <= cap(yyv4661) { - yyv4661 = yyv4661[:yyrl4661] + yyrg4664 := len(yyv4664) > 0 + yyv24664 := yyv4664 + yyrl4664, yyrt4664 = z.DecInferLen(yyl4664, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4664 { + if yyrl4664 <= cap(yyv4664) { + yyv4664 = yyv4664[:yyrl4664] } else { - yyv4661 = make([]PodCondition, yyrl4661) + yyv4664 = make([]PodCondition, yyrl4664) } } else { - yyv4661 = make([]PodCondition, yyrl4661) + yyv4664 = make([]PodCondition, yyrl4664) } - yyc4661 = true - yyrr4661 = len(yyv4661) - if yyrg4661 { - copy(yyv4661, yyv24661) + yyc4664 = true + yyrr4664 = len(yyv4664) + if yyrg4664 { + copy(yyv4664, yyv24664) } - } else if yyl4661 != len(yyv4661) { - yyv4661 = yyv4661[:yyl4661] - yyc4661 = true + } else if yyl4664 != len(yyv4664) { + yyv4664 = yyv4664[:yyl4664] + yyc4664 = true } - yyj4661 := 0 - for ; yyj4661 < yyrr4661; yyj4661++ { - yyh4661.ElemContainerState(yyj4661) + yyj4664 := 0 + for ; yyj4664 < yyrr4664; yyj4664++ { + yyh4664.ElemContainerState(yyj4664) if r.TryDecodeAsNil() { - yyv4661[yyj4661] = PodCondition{} + yyv4664[yyj4664] = PodCondition{} } else { - yyv4662 := &yyv4661[yyj4661] - yyv4662.CodecDecodeSelf(d) + yyv4665 := &yyv4664[yyj4664] + yyv4665.CodecDecodeSelf(d) } } - if yyrt4661 { - for ; yyj4661 < yyl4661; yyj4661++ { - yyv4661 = append(yyv4661, PodCondition{}) - yyh4661.ElemContainerState(yyj4661) + if yyrt4664 { + for ; yyj4664 < yyl4664; yyj4664++ { + yyv4664 = append(yyv4664, PodCondition{}) + yyh4664.ElemContainerState(yyj4664) if r.TryDecodeAsNil() { - yyv4661[yyj4661] = PodCondition{} + yyv4664[yyj4664] = PodCondition{} } else { - yyv4663 := &yyv4661[yyj4661] - yyv4663.CodecDecodeSelf(d) + yyv4666 := &yyv4664[yyj4664] + yyv4666.CodecDecodeSelf(d) } } } } else { - yyj4661 := 0 - for ; !r.CheckBreak(); yyj4661++ { + yyj4664 := 0 + for ; !r.CheckBreak(); yyj4664++ { - if yyj4661 >= len(yyv4661) { - yyv4661 = append(yyv4661, PodCondition{}) // var yyz4661 PodCondition - yyc4661 = true + if yyj4664 >= len(yyv4664) { + yyv4664 = append(yyv4664, PodCondition{}) // var yyz4664 PodCondition + yyc4664 = true } - yyh4661.ElemContainerState(yyj4661) - if yyj4661 < len(yyv4661) { + yyh4664.ElemContainerState(yyj4664) + if yyj4664 < len(yyv4664) { if r.TryDecodeAsNil() { - yyv4661[yyj4661] = PodCondition{} + yyv4664[yyj4664] = PodCondition{} } else { - yyv4664 := &yyv4661[yyj4661] - yyv4664.CodecDecodeSelf(d) + yyv4667 := &yyv4664[yyj4664] + yyv4667.CodecDecodeSelf(d) } } else { @@ -58939,17 +58995,17 @@ func (x codecSelfer1234) decSlicePodCondition(v *[]PodCondition, d *codec1978.De } } - if yyj4661 < len(yyv4661) { - yyv4661 = yyv4661[:yyj4661] - yyc4661 = true - } else if yyj4661 == 0 && yyv4661 == nil { - yyv4661 = []PodCondition{} - yyc4661 = true + if yyj4664 < len(yyv4664) { + yyv4664 = yyv4664[:yyj4664] + yyc4664 = true + } else if yyj4664 == 0 && yyv4664 == nil { + yyv4664 = []PodCondition{} + yyc4664 = true } } - yyh4661.End() - if yyc4661 { - *v = yyv4661 + yyh4664.End() + if yyc4664 { + *v = yyv4664 } } @@ -58958,10 +59014,10 @@ func (x codecSelfer1234) encSliceContainerStatus(v []ContainerStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4665 := range v { + for _, yyv4668 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4666 := &yyv4665 - yy4666.CodecEncodeSelf(e) + yy4669 := &yyv4668 + yy4669.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -58971,83 +59027,83 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4667 := *v - yyh4667, yyl4667 := z.DecSliceHelperStart() - var yyc4667 bool - if yyl4667 == 0 { - if yyv4667 == nil { - yyv4667 = []ContainerStatus{} - yyc4667 = true - } else if len(yyv4667) != 0 { - yyv4667 = yyv4667[:0] - yyc4667 = true + yyv4670 := *v + yyh4670, yyl4670 := z.DecSliceHelperStart() + var yyc4670 bool + if yyl4670 == 0 { + if yyv4670 == nil { + yyv4670 = []ContainerStatus{} + yyc4670 = true + } else if len(yyv4670) != 0 { + yyv4670 = yyv4670[:0] + yyc4670 = true } - } else if yyl4667 > 0 { - var yyrr4667, yyrl4667 int - var yyrt4667 bool - if yyl4667 > cap(yyv4667) { + } else if yyl4670 > 0 { + var yyrr4670, yyrl4670 int + var yyrt4670 bool + if yyl4670 > cap(yyv4670) { - yyrg4667 := len(yyv4667) > 0 - yyv24667 := yyv4667 - yyrl4667, yyrt4667 = z.DecInferLen(yyl4667, z.DecBasicHandle().MaxInitLen, 120) - if yyrt4667 { - if yyrl4667 <= cap(yyv4667) { - yyv4667 = yyv4667[:yyrl4667] + yyrg4670 := len(yyv4670) > 0 + yyv24670 := yyv4670 + yyrl4670, yyrt4670 = z.DecInferLen(yyl4670, z.DecBasicHandle().MaxInitLen, 120) + if yyrt4670 { + if yyrl4670 <= cap(yyv4670) { + yyv4670 = yyv4670[:yyrl4670] } else { - yyv4667 = make([]ContainerStatus, yyrl4667) + yyv4670 = make([]ContainerStatus, yyrl4670) } } else { - yyv4667 = make([]ContainerStatus, yyrl4667) + yyv4670 = make([]ContainerStatus, yyrl4670) } - yyc4667 = true - yyrr4667 = len(yyv4667) - if yyrg4667 { - copy(yyv4667, yyv24667) + yyc4670 = true + yyrr4670 = len(yyv4670) + if yyrg4670 { + copy(yyv4670, yyv24670) } - } else if yyl4667 != len(yyv4667) { - yyv4667 = yyv4667[:yyl4667] - yyc4667 = true + } else if yyl4670 != len(yyv4670) { + yyv4670 = yyv4670[:yyl4670] + yyc4670 = true } - yyj4667 := 0 - for ; yyj4667 < yyrr4667; yyj4667++ { - yyh4667.ElemContainerState(yyj4667) + yyj4670 := 0 + for ; yyj4670 < yyrr4670; yyj4670++ { + yyh4670.ElemContainerState(yyj4670) if r.TryDecodeAsNil() { - yyv4667[yyj4667] = ContainerStatus{} + yyv4670[yyj4670] = ContainerStatus{} } else { - yyv4668 := &yyv4667[yyj4667] - yyv4668.CodecDecodeSelf(d) + yyv4671 := &yyv4670[yyj4670] + yyv4671.CodecDecodeSelf(d) } } - if yyrt4667 { - for ; yyj4667 < yyl4667; yyj4667++ { - yyv4667 = append(yyv4667, ContainerStatus{}) - yyh4667.ElemContainerState(yyj4667) + if yyrt4670 { + for ; yyj4670 < yyl4670; yyj4670++ { + yyv4670 = append(yyv4670, ContainerStatus{}) + yyh4670.ElemContainerState(yyj4670) if r.TryDecodeAsNil() { - yyv4667[yyj4667] = ContainerStatus{} + yyv4670[yyj4670] = ContainerStatus{} } else { - yyv4669 := &yyv4667[yyj4667] - yyv4669.CodecDecodeSelf(d) + yyv4672 := &yyv4670[yyj4670] + yyv4672.CodecDecodeSelf(d) } } } } else { - yyj4667 := 0 - for ; !r.CheckBreak(); yyj4667++ { + yyj4670 := 0 + for ; !r.CheckBreak(); yyj4670++ { - if yyj4667 >= len(yyv4667) { - yyv4667 = append(yyv4667, ContainerStatus{}) // var yyz4667 ContainerStatus - yyc4667 = true + if yyj4670 >= len(yyv4670) { + yyv4670 = append(yyv4670, ContainerStatus{}) // var yyz4670 ContainerStatus + yyc4670 = true } - yyh4667.ElemContainerState(yyj4667) - if yyj4667 < len(yyv4667) { + yyh4670.ElemContainerState(yyj4670) + if yyj4670 < len(yyv4670) { if r.TryDecodeAsNil() { - yyv4667[yyj4667] = ContainerStatus{} + yyv4670[yyj4670] = ContainerStatus{} } else { - yyv4670 := &yyv4667[yyj4667] - yyv4670.CodecDecodeSelf(d) + yyv4673 := &yyv4670[yyj4670] + yyv4673.CodecDecodeSelf(d) } } else { @@ -59055,17 +59111,17 @@ func (x codecSelfer1234) decSliceContainerStatus(v *[]ContainerStatus, d *codec1 } } - if yyj4667 < len(yyv4667) { - yyv4667 = yyv4667[:yyj4667] - yyc4667 = true - } else if yyj4667 == 0 && yyv4667 == nil { - yyv4667 = []ContainerStatus{} - yyc4667 = true + if yyj4670 < len(yyv4670) { + yyv4670 = yyv4670[:yyj4670] + yyc4670 = true + } else if yyj4670 == 0 && yyv4670 == nil { + yyv4670 = []ContainerStatus{} + yyc4670 = true } } - yyh4667.End() - if yyc4667 { - *v = yyv4667 + yyh4670.End() + if yyc4670 { + *v = yyv4670 } } @@ -59074,10 +59130,10 @@ func (x codecSelfer1234) encSlicePod(v []Pod, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4671 := range v { + for _, yyv4674 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4672 := &yyv4671 - yy4672.CodecEncodeSelf(e) + yy4675 := &yyv4674 + yy4675.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59087,83 +59143,83 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4673 := *v - yyh4673, yyl4673 := z.DecSliceHelperStart() - var yyc4673 bool - if yyl4673 == 0 { - if yyv4673 == nil { - yyv4673 = []Pod{} - yyc4673 = true - } else if len(yyv4673) != 0 { - yyv4673 = yyv4673[:0] - yyc4673 = true + yyv4676 := *v + yyh4676, yyl4676 := z.DecSliceHelperStart() + var yyc4676 bool + if yyl4676 == 0 { + if yyv4676 == nil { + yyv4676 = []Pod{} + yyc4676 = true + } else if len(yyv4676) != 0 { + yyv4676 = yyv4676[:0] + yyc4676 = true } - } else if yyl4673 > 0 { - var yyrr4673, yyrl4673 int - var yyrt4673 bool - if yyl4673 > cap(yyv4673) { + } else if yyl4676 > 0 { + var yyrr4676, yyrl4676 int + var yyrt4676 bool + if yyl4676 > cap(yyv4676) { - yyrg4673 := len(yyv4673) > 0 - yyv24673 := yyv4673 - yyrl4673, yyrt4673 = z.DecInferLen(yyl4673, z.DecBasicHandle().MaxInitLen, 680) - if yyrt4673 { - if yyrl4673 <= cap(yyv4673) { - yyv4673 = yyv4673[:yyrl4673] + yyrg4676 := len(yyv4676) > 0 + yyv24676 := yyv4676 + yyrl4676, yyrt4676 = z.DecInferLen(yyl4676, z.DecBasicHandle().MaxInitLen, 688) + if yyrt4676 { + if yyrl4676 <= cap(yyv4676) { + yyv4676 = yyv4676[:yyrl4676] } else { - yyv4673 = make([]Pod, yyrl4673) + yyv4676 = make([]Pod, yyrl4676) } } else { - yyv4673 = make([]Pod, yyrl4673) + yyv4676 = make([]Pod, yyrl4676) } - yyc4673 = true - yyrr4673 = len(yyv4673) - if yyrg4673 { - copy(yyv4673, yyv24673) + yyc4676 = true + yyrr4676 = len(yyv4676) + if yyrg4676 { + copy(yyv4676, yyv24676) } - } else if yyl4673 != len(yyv4673) { - yyv4673 = yyv4673[:yyl4673] - yyc4673 = true + } else if yyl4676 != len(yyv4676) { + yyv4676 = yyv4676[:yyl4676] + yyc4676 = true } - yyj4673 := 0 - for ; yyj4673 < yyrr4673; yyj4673++ { - yyh4673.ElemContainerState(yyj4673) + yyj4676 := 0 + for ; yyj4676 < yyrr4676; yyj4676++ { + yyh4676.ElemContainerState(yyj4676) if r.TryDecodeAsNil() { - yyv4673[yyj4673] = Pod{} + yyv4676[yyj4676] = Pod{} } else { - yyv4674 := &yyv4673[yyj4673] - yyv4674.CodecDecodeSelf(d) + yyv4677 := &yyv4676[yyj4676] + yyv4677.CodecDecodeSelf(d) } } - if yyrt4673 { - for ; yyj4673 < yyl4673; yyj4673++ { - yyv4673 = append(yyv4673, Pod{}) - yyh4673.ElemContainerState(yyj4673) + if yyrt4676 { + for ; yyj4676 < yyl4676; yyj4676++ { + yyv4676 = append(yyv4676, Pod{}) + yyh4676.ElemContainerState(yyj4676) if r.TryDecodeAsNil() { - yyv4673[yyj4673] = Pod{} + yyv4676[yyj4676] = Pod{} } else { - yyv4675 := &yyv4673[yyj4673] - yyv4675.CodecDecodeSelf(d) + yyv4678 := &yyv4676[yyj4676] + yyv4678.CodecDecodeSelf(d) } } } } else { - yyj4673 := 0 - for ; !r.CheckBreak(); yyj4673++ { + yyj4676 := 0 + for ; !r.CheckBreak(); yyj4676++ { - if yyj4673 >= len(yyv4673) { - yyv4673 = append(yyv4673, Pod{}) // var yyz4673 Pod - yyc4673 = true + if yyj4676 >= len(yyv4676) { + yyv4676 = append(yyv4676, Pod{}) // var yyz4676 Pod + yyc4676 = true } - yyh4673.ElemContainerState(yyj4673) - if yyj4673 < len(yyv4673) { + yyh4676.ElemContainerState(yyj4676) + if yyj4676 < len(yyv4676) { if r.TryDecodeAsNil() { - yyv4673[yyj4673] = Pod{} + yyv4676[yyj4676] = Pod{} } else { - yyv4676 := &yyv4673[yyj4673] - yyv4676.CodecDecodeSelf(d) + yyv4679 := &yyv4676[yyj4676] + yyv4679.CodecDecodeSelf(d) } } else { @@ -59171,17 +59227,17 @@ func (x codecSelfer1234) decSlicePod(v *[]Pod, d *codec1978.Decoder) { } } - if yyj4673 < len(yyv4673) { - yyv4673 = yyv4673[:yyj4673] - yyc4673 = true - } else if yyj4673 == 0 && yyv4673 == nil { - yyv4673 = []Pod{} - yyc4673 = true + if yyj4676 < len(yyv4676) { + yyv4676 = yyv4676[:yyj4676] + yyc4676 = true + } else if yyj4676 == 0 && yyv4676 == nil { + yyv4676 = []Pod{} + yyc4676 = true } } - yyh4673.End() - if yyc4673 { - *v = yyv4673 + yyh4676.End() + if yyc4676 { + *v = yyv4676 } } @@ -59190,10 +59246,10 @@ func (x codecSelfer1234) encSlicePodTemplate(v []PodTemplate, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4677 := range v { + for _, yyv4680 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4678 := &yyv4677 - yy4678.CodecEncodeSelf(e) + yy4681 := &yyv4680 + yy4681.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59203,83 +59259,83 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4679 := *v - yyh4679, yyl4679 := z.DecSliceHelperStart() - var yyc4679 bool - if yyl4679 == 0 { - if yyv4679 == nil { - yyv4679 = []PodTemplate{} - yyc4679 = true - } else if len(yyv4679) != 0 { - yyv4679 = yyv4679[:0] - yyc4679 = true + yyv4682 := *v + yyh4682, yyl4682 := z.DecSliceHelperStart() + var yyc4682 bool + if yyl4682 == 0 { + if yyv4682 == nil { + yyv4682 = []PodTemplate{} + yyc4682 = true + } else if len(yyv4682) != 0 { + yyv4682 = yyv4682[:0] + yyc4682 = true } - } else if yyl4679 > 0 { - var yyrr4679, yyrl4679 int - var yyrt4679 bool - if yyl4679 > cap(yyv4679) { + } else if yyl4682 > 0 { + var yyrr4682, yyrl4682 int + var yyrt4682 bool + if yyl4682 > cap(yyv4682) { - yyrg4679 := len(yyv4679) > 0 - yyv24679 := yyv4679 - yyrl4679, yyrt4679 = z.DecInferLen(yyl4679, z.DecBasicHandle().MaxInitLen, 728) - if yyrt4679 { - if yyrl4679 <= cap(yyv4679) { - yyv4679 = yyv4679[:yyrl4679] + yyrg4682 := len(yyv4682) > 0 + yyv24682 := yyv4682 + yyrl4682, yyrt4682 = z.DecInferLen(yyl4682, z.DecBasicHandle().MaxInitLen, 736) + if yyrt4682 { + if yyrl4682 <= cap(yyv4682) { + yyv4682 = yyv4682[:yyrl4682] } else { - yyv4679 = make([]PodTemplate, yyrl4679) + yyv4682 = make([]PodTemplate, yyrl4682) } } else { - yyv4679 = make([]PodTemplate, yyrl4679) + yyv4682 = make([]PodTemplate, yyrl4682) } - yyc4679 = true - yyrr4679 = len(yyv4679) - if yyrg4679 { - copy(yyv4679, yyv24679) + yyc4682 = true + yyrr4682 = len(yyv4682) + if yyrg4682 { + copy(yyv4682, yyv24682) } - } else if yyl4679 != len(yyv4679) { - yyv4679 = yyv4679[:yyl4679] - yyc4679 = true + } else if yyl4682 != len(yyv4682) { + yyv4682 = yyv4682[:yyl4682] + yyc4682 = true } - yyj4679 := 0 - for ; yyj4679 < yyrr4679; yyj4679++ { - yyh4679.ElemContainerState(yyj4679) + yyj4682 := 0 + for ; yyj4682 < yyrr4682; yyj4682++ { + yyh4682.ElemContainerState(yyj4682) if r.TryDecodeAsNil() { - yyv4679[yyj4679] = PodTemplate{} + yyv4682[yyj4682] = PodTemplate{} } else { - yyv4680 := &yyv4679[yyj4679] - yyv4680.CodecDecodeSelf(d) + yyv4683 := &yyv4682[yyj4682] + yyv4683.CodecDecodeSelf(d) } } - if yyrt4679 { - for ; yyj4679 < yyl4679; yyj4679++ { - yyv4679 = append(yyv4679, PodTemplate{}) - yyh4679.ElemContainerState(yyj4679) + if yyrt4682 { + for ; yyj4682 < yyl4682; yyj4682++ { + yyv4682 = append(yyv4682, PodTemplate{}) + yyh4682.ElemContainerState(yyj4682) if r.TryDecodeAsNil() { - yyv4679[yyj4679] = PodTemplate{} + yyv4682[yyj4682] = PodTemplate{} } else { - yyv4681 := &yyv4679[yyj4679] - yyv4681.CodecDecodeSelf(d) + yyv4684 := &yyv4682[yyj4682] + yyv4684.CodecDecodeSelf(d) } } } } else { - yyj4679 := 0 - for ; !r.CheckBreak(); yyj4679++ { + yyj4682 := 0 + for ; !r.CheckBreak(); yyj4682++ { - if yyj4679 >= len(yyv4679) { - yyv4679 = append(yyv4679, PodTemplate{}) // var yyz4679 PodTemplate - yyc4679 = true + if yyj4682 >= len(yyv4682) { + yyv4682 = append(yyv4682, PodTemplate{}) // var yyz4682 PodTemplate + yyc4682 = true } - yyh4679.ElemContainerState(yyj4679) - if yyj4679 < len(yyv4679) { + yyh4682.ElemContainerState(yyj4682) + if yyj4682 < len(yyv4682) { if r.TryDecodeAsNil() { - yyv4679[yyj4679] = PodTemplate{} + yyv4682[yyj4682] = PodTemplate{} } else { - yyv4682 := &yyv4679[yyj4679] - yyv4682.CodecDecodeSelf(d) + yyv4685 := &yyv4682[yyj4682] + yyv4685.CodecDecodeSelf(d) } } else { @@ -59287,17 +59343,17 @@ func (x codecSelfer1234) decSlicePodTemplate(v *[]PodTemplate, d *codec1978.Deco } } - if yyj4679 < len(yyv4679) { - yyv4679 = yyv4679[:yyj4679] - yyc4679 = true - } else if yyj4679 == 0 && yyv4679 == nil { - yyv4679 = []PodTemplate{} - yyc4679 = true + if yyj4682 < len(yyv4682) { + yyv4682 = yyv4682[:yyj4682] + yyc4682 = true + } else if yyj4682 == 0 && yyv4682 == nil { + yyv4682 = []PodTemplate{} + yyc4682 = true } } - yyh4679.End() - if yyc4679 { - *v = yyv4679 + yyh4682.End() + if yyc4682 { + *v = yyv4682 } } @@ -59306,10 +59362,10 @@ func (x codecSelfer1234) encSliceReplicationControllerCondition(v []ReplicationC z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4683 := range v { + for _, yyv4686 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4684 := &yyv4683 - yy4684.CodecEncodeSelf(e) + yy4687 := &yyv4686 + yy4687.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59319,83 +59375,83 @@ func (x codecSelfer1234) decSliceReplicationControllerCondition(v *[]Replication z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4685 := *v - yyh4685, yyl4685 := z.DecSliceHelperStart() - var yyc4685 bool - if yyl4685 == 0 { - if yyv4685 == nil { - yyv4685 = []ReplicationControllerCondition{} - yyc4685 = true - } else if len(yyv4685) != 0 { - yyv4685 = yyv4685[:0] - yyc4685 = true + yyv4688 := *v + yyh4688, yyl4688 := z.DecSliceHelperStart() + var yyc4688 bool + if yyl4688 == 0 { + if yyv4688 == nil { + yyv4688 = []ReplicationControllerCondition{} + yyc4688 = true + } else if len(yyv4688) != 0 { + yyv4688 = yyv4688[:0] + yyc4688 = true } - } else if yyl4685 > 0 { - var yyrr4685, yyrl4685 int - var yyrt4685 bool - if yyl4685 > cap(yyv4685) { + } else if yyl4688 > 0 { + var yyrr4688, yyrl4688 int + var yyrt4688 bool + if yyl4688 > cap(yyv4688) { - yyrg4685 := len(yyv4685) > 0 - yyv24685 := yyv4685 - yyrl4685, yyrt4685 = z.DecInferLen(yyl4685, z.DecBasicHandle().MaxInitLen, 88) - if yyrt4685 { - if yyrl4685 <= cap(yyv4685) { - yyv4685 = yyv4685[:yyrl4685] + yyrg4688 := len(yyv4688) > 0 + yyv24688 := yyv4688 + yyrl4688, yyrt4688 = z.DecInferLen(yyl4688, z.DecBasicHandle().MaxInitLen, 88) + if yyrt4688 { + if yyrl4688 <= cap(yyv4688) { + yyv4688 = yyv4688[:yyrl4688] } else { - yyv4685 = make([]ReplicationControllerCondition, yyrl4685) + yyv4688 = make([]ReplicationControllerCondition, yyrl4688) } } else { - yyv4685 = make([]ReplicationControllerCondition, yyrl4685) + yyv4688 = make([]ReplicationControllerCondition, yyrl4688) } - yyc4685 = true - yyrr4685 = len(yyv4685) - if yyrg4685 { - copy(yyv4685, yyv24685) + yyc4688 = true + yyrr4688 = len(yyv4688) + if yyrg4688 { + copy(yyv4688, yyv24688) } - } else if yyl4685 != len(yyv4685) { - yyv4685 = yyv4685[:yyl4685] - yyc4685 = true + } else if yyl4688 != len(yyv4688) { + yyv4688 = yyv4688[:yyl4688] + yyc4688 = true } - yyj4685 := 0 - for ; yyj4685 < yyrr4685; yyj4685++ { - yyh4685.ElemContainerState(yyj4685) + yyj4688 := 0 + for ; yyj4688 < yyrr4688; yyj4688++ { + yyh4688.ElemContainerState(yyj4688) if r.TryDecodeAsNil() { - yyv4685[yyj4685] = ReplicationControllerCondition{} + yyv4688[yyj4688] = ReplicationControllerCondition{} } else { - yyv4686 := &yyv4685[yyj4685] - yyv4686.CodecDecodeSelf(d) + yyv4689 := &yyv4688[yyj4688] + yyv4689.CodecDecodeSelf(d) } } - if yyrt4685 { - for ; yyj4685 < yyl4685; yyj4685++ { - yyv4685 = append(yyv4685, ReplicationControllerCondition{}) - yyh4685.ElemContainerState(yyj4685) + if yyrt4688 { + for ; yyj4688 < yyl4688; yyj4688++ { + yyv4688 = append(yyv4688, ReplicationControllerCondition{}) + yyh4688.ElemContainerState(yyj4688) if r.TryDecodeAsNil() { - yyv4685[yyj4685] = ReplicationControllerCondition{} + yyv4688[yyj4688] = ReplicationControllerCondition{} } else { - yyv4687 := &yyv4685[yyj4685] - yyv4687.CodecDecodeSelf(d) + yyv4690 := &yyv4688[yyj4688] + yyv4690.CodecDecodeSelf(d) } } } } else { - yyj4685 := 0 - for ; !r.CheckBreak(); yyj4685++ { + yyj4688 := 0 + for ; !r.CheckBreak(); yyj4688++ { - if yyj4685 >= len(yyv4685) { - yyv4685 = append(yyv4685, ReplicationControllerCondition{}) // var yyz4685 ReplicationControllerCondition - yyc4685 = true + if yyj4688 >= len(yyv4688) { + yyv4688 = append(yyv4688, ReplicationControllerCondition{}) // var yyz4688 ReplicationControllerCondition + yyc4688 = true } - yyh4685.ElemContainerState(yyj4685) - if yyj4685 < len(yyv4685) { + yyh4688.ElemContainerState(yyj4688) + if yyj4688 < len(yyv4688) { if r.TryDecodeAsNil() { - yyv4685[yyj4685] = ReplicationControllerCondition{} + yyv4688[yyj4688] = ReplicationControllerCondition{} } else { - yyv4688 := &yyv4685[yyj4685] - yyv4688.CodecDecodeSelf(d) + yyv4691 := &yyv4688[yyj4688] + yyv4691.CodecDecodeSelf(d) } } else { @@ -59403,17 +59459,17 @@ func (x codecSelfer1234) decSliceReplicationControllerCondition(v *[]Replication } } - if yyj4685 < len(yyv4685) { - yyv4685 = yyv4685[:yyj4685] - yyc4685 = true - } else if yyj4685 == 0 && yyv4685 == nil { - yyv4685 = []ReplicationControllerCondition{} - yyc4685 = true + if yyj4688 < len(yyv4688) { + yyv4688 = yyv4688[:yyj4688] + yyc4688 = true + } else if yyj4688 == 0 && yyv4688 == nil { + yyv4688 = []ReplicationControllerCondition{} + yyc4688 = true } } - yyh4685.End() - if yyc4685 { - *v = yyv4685 + yyh4688.End() + if yyc4688 { + *v = yyv4688 } } @@ -59422,10 +59478,10 @@ func (x codecSelfer1234) encSliceReplicationController(v []ReplicationController z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4689 := range v { + for _, yyv4692 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4690 := &yyv4689 - yy4690.CodecEncodeSelf(e) + yy4693 := &yyv4692 + yy4693.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59435,83 +59491,83 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4691 := *v - yyh4691, yyl4691 := z.DecSliceHelperStart() - var yyc4691 bool - if yyl4691 == 0 { - if yyv4691 == nil { - yyv4691 = []ReplicationController{} - yyc4691 = true - } else if len(yyv4691) != 0 { - yyv4691 = yyv4691[:0] - yyc4691 = true + yyv4694 := *v + yyh4694, yyl4694 := z.DecSliceHelperStart() + var yyc4694 bool + if yyl4694 == 0 { + if yyv4694 == nil { + yyv4694 = []ReplicationController{} + yyc4694 = true + } else if len(yyv4694) != 0 { + yyv4694 = yyv4694[:0] + yyc4694 = true } - } else if yyl4691 > 0 { - var yyrr4691, yyrl4691 int - var yyrt4691 bool - if yyl4691 > cap(yyv4691) { + } else if yyl4694 > 0 { + var yyrr4694, yyrl4694 int + var yyrt4694 bool + if yyl4694 > cap(yyv4694) { - yyrg4691 := len(yyv4691) > 0 - yyv24691 := yyv4691 - yyrl4691, yyrt4691 = z.DecInferLen(yyl4691, z.DecBasicHandle().MaxInitLen, 336) - if yyrt4691 { - if yyrl4691 <= cap(yyv4691) { - yyv4691 = yyv4691[:yyrl4691] + yyrg4694 := len(yyv4694) > 0 + yyv24694 := yyv4694 + yyrl4694, yyrt4694 = z.DecInferLen(yyl4694, z.DecBasicHandle().MaxInitLen, 336) + if yyrt4694 { + if yyrl4694 <= cap(yyv4694) { + yyv4694 = yyv4694[:yyrl4694] } else { - yyv4691 = make([]ReplicationController, yyrl4691) + yyv4694 = make([]ReplicationController, yyrl4694) } } else { - yyv4691 = make([]ReplicationController, yyrl4691) + yyv4694 = make([]ReplicationController, yyrl4694) } - yyc4691 = true - yyrr4691 = len(yyv4691) - if yyrg4691 { - copy(yyv4691, yyv24691) + yyc4694 = true + yyrr4694 = len(yyv4694) + if yyrg4694 { + copy(yyv4694, yyv24694) } - } else if yyl4691 != len(yyv4691) { - yyv4691 = yyv4691[:yyl4691] - yyc4691 = true + } else if yyl4694 != len(yyv4694) { + yyv4694 = yyv4694[:yyl4694] + yyc4694 = true } - yyj4691 := 0 - for ; yyj4691 < yyrr4691; yyj4691++ { - yyh4691.ElemContainerState(yyj4691) + yyj4694 := 0 + for ; yyj4694 < yyrr4694; yyj4694++ { + yyh4694.ElemContainerState(yyj4694) if r.TryDecodeAsNil() { - yyv4691[yyj4691] = ReplicationController{} + yyv4694[yyj4694] = ReplicationController{} } else { - yyv4692 := &yyv4691[yyj4691] - yyv4692.CodecDecodeSelf(d) + yyv4695 := &yyv4694[yyj4694] + yyv4695.CodecDecodeSelf(d) } } - if yyrt4691 { - for ; yyj4691 < yyl4691; yyj4691++ { - yyv4691 = append(yyv4691, ReplicationController{}) - yyh4691.ElemContainerState(yyj4691) + if yyrt4694 { + for ; yyj4694 < yyl4694; yyj4694++ { + yyv4694 = append(yyv4694, ReplicationController{}) + yyh4694.ElemContainerState(yyj4694) if r.TryDecodeAsNil() { - yyv4691[yyj4691] = ReplicationController{} + yyv4694[yyj4694] = ReplicationController{} } else { - yyv4693 := &yyv4691[yyj4691] - yyv4693.CodecDecodeSelf(d) + yyv4696 := &yyv4694[yyj4694] + yyv4696.CodecDecodeSelf(d) } } } } else { - yyj4691 := 0 - for ; !r.CheckBreak(); yyj4691++ { + yyj4694 := 0 + for ; !r.CheckBreak(); yyj4694++ { - if yyj4691 >= len(yyv4691) { - yyv4691 = append(yyv4691, ReplicationController{}) // var yyz4691 ReplicationController - yyc4691 = true + if yyj4694 >= len(yyv4694) { + yyv4694 = append(yyv4694, ReplicationController{}) // var yyz4694 ReplicationController + yyc4694 = true } - yyh4691.ElemContainerState(yyj4691) - if yyj4691 < len(yyv4691) { + yyh4694.ElemContainerState(yyj4694) + if yyj4694 < len(yyv4694) { if r.TryDecodeAsNil() { - yyv4691[yyj4691] = ReplicationController{} + yyv4694[yyj4694] = ReplicationController{} } else { - yyv4694 := &yyv4691[yyj4691] - yyv4694.CodecDecodeSelf(d) + yyv4697 := &yyv4694[yyj4694] + yyv4697.CodecDecodeSelf(d) } } else { @@ -59519,17 +59575,17 @@ func (x codecSelfer1234) decSliceReplicationController(v *[]ReplicationControlle } } - if yyj4691 < len(yyv4691) { - yyv4691 = yyv4691[:yyj4691] - yyc4691 = true - } else if yyj4691 == 0 && yyv4691 == nil { - yyv4691 = []ReplicationController{} - yyc4691 = true + if yyj4694 < len(yyv4694) { + yyv4694 = yyv4694[:yyj4694] + yyc4694 = true + } else if yyj4694 == 0 && yyv4694 == nil { + yyv4694 = []ReplicationController{} + yyc4694 = true } } - yyh4691.End() - if yyc4691 { - *v = yyv4691 + yyh4694.End() + if yyc4694 { + *v = yyv4694 } } @@ -59538,10 +59594,10 @@ func (x codecSelfer1234) encSliceLoadBalancerIngress(v []LoadBalancerIngress, e z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4695 := range v { + for _, yyv4698 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4696 := &yyv4695 - yy4696.CodecEncodeSelf(e) + yy4699 := &yyv4698 + yy4699.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59551,83 +59607,83 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4697 := *v - yyh4697, yyl4697 := z.DecSliceHelperStart() - var yyc4697 bool - if yyl4697 == 0 { - if yyv4697 == nil { - yyv4697 = []LoadBalancerIngress{} - yyc4697 = true - } else if len(yyv4697) != 0 { - yyv4697 = yyv4697[:0] - yyc4697 = true + yyv4700 := *v + yyh4700, yyl4700 := z.DecSliceHelperStart() + var yyc4700 bool + if yyl4700 == 0 { + if yyv4700 == nil { + yyv4700 = []LoadBalancerIngress{} + yyc4700 = true + } else if len(yyv4700) != 0 { + yyv4700 = yyv4700[:0] + yyc4700 = true } - } else if yyl4697 > 0 { - var yyrr4697, yyrl4697 int - var yyrt4697 bool - if yyl4697 > cap(yyv4697) { + } else if yyl4700 > 0 { + var yyrr4700, yyrl4700 int + var yyrt4700 bool + if yyl4700 > cap(yyv4700) { - yyrg4697 := len(yyv4697) > 0 - yyv24697 := yyv4697 - yyrl4697, yyrt4697 = z.DecInferLen(yyl4697, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4697 { - if yyrl4697 <= cap(yyv4697) { - yyv4697 = yyv4697[:yyrl4697] + yyrg4700 := len(yyv4700) > 0 + yyv24700 := yyv4700 + yyrl4700, yyrt4700 = z.DecInferLen(yyl4700, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4700 { + if yyrl4700 <= cap(yyv4700) { + yyv4700 = yyv4700[:yyrl4700] } else { - yyv4697 = make([]LoadBalancerIngress, yyrl4697) + yyv4700 = make([]LoadBalancerIngress, yyrl4700) } } else { - yyv4697 = make([]LoadBalancerIngress, yyrl4697) + yyv4700 = make([]LoadBalancerIngress, yyrl4700) } - yyc4697 = true - yyrr4697 = len(yyv4697) - if yyrg4697 { - copy(yyv4697, yyv24697) + yyc4700 = true + yyrr4700 = len(yyv4700) + if yyrg4700 { + copy(yyv4700, yyv24700) } - } else if yyl4697 != len(yyv4697) { - yyv4697 = yyv4697[:yyl4697] - yyc4697 = true + } else if yyl4700 != len(yyv4700) { + yyv4700 = yyv4700[:yyl4700] + yyc4700 = true } - yyj4697 := 0 - for ; yyj4697 < yyrr4697; yyj4697++ { - yyh4697.ElemContainerState(yyj4697) + yyj4700 := 0 + for ; yyj4700 < yyrr4700; yyj4700++ { + yyh4700.ElemContainerState(yyj4700) if r.TryDecodeAsNil() { - yyv4697[yyj4697] = LoadBalancerIngress{} + yyv4700[yyj4700] = LoadBalancerIngress{} } else { - yyv4698 := &yyv4697[yyj4697] - yyv4698.CodecDecodeSelf(d) + yyv4701 := &yyv4700[yyj4700] + yyv4701.CodecDecodeSelf(d) } } - if yyrt4697 { - for ; yyj4697 < yyl4697; yyj4697++ { - yyv4697 = append(yyv4697, LoadBalancerIngress{}) - yyh4697.ElemContainerState(yyj4697) + if yyrt4700 { + for ; yyj4700 < yyl4700; yyj4700++ { + yyv4700 = append(yyv4700, LoadBalancerIngress{}) + yyh4700.ElemContainerState(yyj4700) if r.TryDecodeAsNil() { - yyv4697[yyj4697] = LoadBalancerIngress{} + yyv4700[yyj4700] = LoadBalancerIngress{} } else { - yyv4699 := &yyv4697[yyj4697] - yyv4699.CodecDecodeSelf(d) + yyv4702 := &yyv4700[yyj4700] + yyv4702.CodecDecodeSelf(d) } } } } else { - yyj4697 := 0 - for ; !r.CheckBreak(); yyj4697++ { + yyj4700 := 0 + for ; !r.CheckBreak(); yyj4700++ { - if yyj4697 >= len(yyv4697) { - yyv4697 = append(yyv4697, LoadBalancerIngress{}) // var yyz4697 LoadBalancerIngress - yyc4697 = true + if yyj4700 >= len(yyv4700) { + yyv4700 = append(yyv4700, LoadBalancerIngress{}) // var yyz4700 LoadBalancerIngress + yyc4700 = true } - yyh4697.ElemContainerState(yyj4697) - if yyj4697 < len(yyv4697) { + yyh4700.ElemContainerState(yyj4700) + if yyj4700 < len(yyv4700) { if r.TryDecodeAsNil() { - yyv4697[yyj4697] = LoadBalancerIngress{} + yyv4700[yyj4700] = LoadBalancerIngress{} } else { - yyv4700 := &yyv4697[yyj4697] - yyv4700.CodecDecodeSelf(d) + yyv4703 := &yyv4700[yyj4700] + yyv4703.CodecDecodeSelf(d) } } else { @@ -59635,17 +59691,17 @@ func (x codecSelfer1234) decSliceLoadBalancerIngress(v *[]LoadBalancerIngress, d } } - if yyj4697 < len(yyv4697) { - yyv4697 = yyv4697[:yyj4697] - yyc4697 = true - } else if yyj4697 == 0 && yyv4697 == nil { - yyv4697 = []LoadBalancerIngress{} - yyc4697 = true + if yyj4700 < len(yyv4700) { + yyv4700 = yyv4700[:yyj4700] + yyc4700 = true + } else if yyj4700 == 0 && yyv4700 == nil { + yyv4700 = []LoadBalancerIngress{} + yyc4700 = true } } - yyh4697.End() - if yyc4697 { - *v = yyv4697 + yyh4700.End() + if yyc4700 { + *v = yyv4700 } } @@ -59654,10 +59710,10 @@ func (x codecSelfer1234) encSliceServicePort(v []ServicePort, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4701 := range v { + for _, yyv4704 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4702 := &yyv4701 - yy4702.CodecEncodeSelf(e) + yy4705 := &yyv4704 + yy4705.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59667,83 +59723,83 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4703 := *v - yyh4703, yyl4703 := z.DecSliceHelperStart() - var yyc4703 bool - if yyl4703 == 0 { - if yyv4703 == nil { - yyv4703 = []ServicePort{} - yyc4703 = true - } else if len(yyv4703) != 0 { - yyv4703 = yyv4703[:0] - yyc4703 = true + yyv4706 := *v + yyh4706, yyl4706 := z.DecSliceHelperStart() + var yyc4706 bool + if yyl4706 == 0 { + if yyv4706 == nil { + yyv4706 = []ServicePort{} + yyc4706 = true + } else if len(yyv4706) != 0 { + yyv4706 = yyv4706[:0] + yyc4706 = true } - } else if yyl4703 > 0 { - var yyrr4703, yyrl4703 int - var yyrt4703 bool - if yyl4703 > cap(yyv4703) { + } else if yyl4706 > 0 { + var yyrr4706, yyrl4706 int + var yyrt4706 bool + if yyl4706 > cap(yyv4706) { - yyrg4703 := len(yyv4703) > 0 - yyv24703 := yyv4703 - yyrl4703, yyrt4703 = z.DecInferLen(yyl4703, z.DecBasicHandle().MaxInitLen, 80) - if yyrt4703 { - if yyrl4703 <= cap(yyv4703) { - yyv4703 = yyv4703[:yyrl4703] + yyrg4706 := len(yyv4706) > 0 + yyv24706 := yyv4706 + yyrl4706, yyrt4706 = z.DecInferLen(yyl4706, z.DecBasicHandle().MaxInitLen, 80) + if yyrt4706 { + if yyrl4706 <= cap(yyv4706) { + yyv4706 = yyv4706[:yyrl4706] } else { - yyv4703 = make([]ServicePort, yyrl4703) + yyv4706 = make([]ServicePort, yyrl4706) } } else { - yyv4703 = make([]ServicePort, yyrl4703) + yyv4706 = make([]ServicePort, yyrl4706) } - yyc4703 = true - yyrr4703 = len(yyv4703) - if yyrg4703 { - copy(yyv4703, yyv24703) + yyc4706 = true + yyrr4706 = len(yyv4706) + if yyrg4706 { + copy(yyv4706, yyv24706) } - } else if yyl4703 != len(yyv4703) { - yyv4703 = yyv4703[:yyl4703] - yyc4703 = true + } else if yyl4706 != len(yyv4706) { + yyv4706 = yyv4706[:yyl4706] + yyc4706 = true } - yyj4703 := 0 - for ; yyj4703 < yyrr4703; yyj4703++ { - yyh4703.ElemContainerState(yyj4703) + yyj4706 := 0 + for ; yyj4706 < yyrr4706; yyj4706++ { + yyh4706.ElemContainerState(yyj4706) if r.TryDecodeAsNil() { - yyv4703[yyj4703] = ServicePort{} + yyv4706[yyj4706] = ServicePort{} } else { - yyv4704 := &yyv4703[yyj4703] - yyv4704.CodecDecodeSelf(d) + yyv4707 := &yyv4706[yyj4706] + yyv4707.CodecDecodeSelf(d) } } - if yyrt4703 { - for ; yyj4703 < yyl4703; yyj4703++ { - yyv4703 = append(yyv4703, ServicePort{}) - yyh4703.ElemContainerState(yyj4703) + if yyrt4706 { + for ; yyj4706 < yyl4706; yyj4706++ { + yyv4706 = append(yyv4706, ServicePort{}) + yyh4706.ElemContainerState(yyj4706) if r.TryDecodeAsNil() { - yyv4703[yyj4703] = ServicePort{} + yyv4706[yyj4706] = ServicePort{} } else { - yyv4705 := &yyv4703[yyj4703] - yyv4705.CodecDecodeSelf(d) + yyv4708 := &yyv4706[yyj4706] + yyv4708.CodecDecodeSelf(d) } } } } else { - yyj4703 := 0 - for ; !r.CheckBreak(); yyj4703++ { + yyj4706 := 0 + for ; !r.CheckBreak(); yyj4706++ { - if yyj4703 >= len(yyv4703) { - yyv4703 = append(yyv4703, ServicePort{}) // var yyz4703 ServicePort - yyc4703 = true + if yyj4706 >= len(yyv4706) { + yyv4706 = append(yyv4706, ServicePort{}) // var yyz4706 ServicePort + yyc4706 = true } - yyh4703.ElemContainerState(yyj4703) - if yyj4703 < len(yyv4703) { + yyh4706.ElemContainerState(yyj4706) + if yyj4706 < len(yyv4706) { if r.TryDecodeAsNil() { - yyv4703[yyj4703] = ServicePort{} + yyv4706[yyj4706] = ServicePort{} } else { - yyv4706 := &yyv4703[yyj4703] - yyv4706.CodecDecodeSelf(d) + yyv4709 := &yyv4706[yyj4706] + yyv4709.CodecDecodeSelf(d) } } else { @@ -59751,17 +59807,17 @@ func (x codecSelfer1234) decSliceServicePort(v *[]ServicePort, d *codec1978.Deco } } - if yyj4703 < len(yyv4703) { - yyv4703 = yyv4703[:yyj4703] - yyc4703 = true - } else if yyj4703 == 0 && yyv4703 == nil { - yyv4703 = []ServicePort{} - yyc4703 = true + if yyj4706 < len(yyv4706) { + yyv4706 = yyv4706[:yyj4706] + yyc4706 = true + } else if yyj4706 == 0 && yyv4706 == nil { + yyv4706 = []ServicePort{} + yyc4706 = true } } - yyh4703.End() - if yyc4703 { - *v = yyv4703 + yyh4706.End() + if yyc4706 { + *v = yyv4706 } } @@ -59770,10 +59826,10 @@ func (x codecSelfer1234) encSliceService(v []Service, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4707 := range v { + for _, yyv4710 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4708 := &yyv4707 - yy4708.CodecEncodeSelf(e) + yy4711 := &yyv4710 + yy4711.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59783,83 +59839,83 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4709 := *v - yyh4709, yyl4709 := z.DecSliceHelperStart() - var yyc4709 bool - if yyl4709 == 0 { - if yyv4709 == nil { - yyv4709 = []Service{} - yyc4709 = true - } else if len(yyv4709) != 0 { - yyv4709 = yyv4709[:0] - yyc4709 = true + yyv4712 := *v + yyh4712, yyl4712 := z.DecSliceHelperStart() + var yyc4712 bool + if yyl4712 == 0 { + if yyv4712 == nil { + yyv4712 = []Service{} + yyc4712 = true + } else if len(yyv4712) != 0 { + yyv4712 = yyv4712[:0] + yyc4712 = true } - } else if yyl4709 > 0 { - var yyrr4709, yyrl4709 int - var yyrt4709 bool - if yyl4709 > cap(yyv4709) { + } else if yyl4712 > 0 { + var yyrr4712, yyrl4712 int + var yyrt4712 bool + if yyl4712 > cap(yyv4712) { - yyrg4709 := len(yyv4709) > 0 - yyv24709 := yyv4709 - yyrl4709, yyrt4709 = z.DecInferLen(yyl4709, z.DecBasicHandle().MaxInitLen, 464) - if yyrt4709 { - if yyrl4709 <= cap(yyv4709) { - yyv4709 = yyv4709[:yyrl4709] + yyrg4712 := len(yyv4712) > 0 + yyv24712 := yyv4712 + yyrl4712, yyrt4712 = z.DecInferLen(yyl4712, z.DecBasicHandle().MaxInitLen, 464) + if yyrt4712 { + if yyrl4712 <= cap(yyv4712) { + yyv4712 = yyv4712[:yyrl4712] } else { - yyv4709 = make([]Service, yyrl4709) + yyv4712 = make([]Service, yyrl4712) } } else { - yyv4709 = make([]Service, yyrl4709) + yyv4712 = make([]Service, yyrl4712) } - yyc4709 = true - yyrr4709 = len(yyv4709) - if yyrg4709 { - copy(yyv4709, yyv24709) + yyc4712 = true + yyrr4712 = len(yyv4712) + if yyrg4712 { + copy(yyv4712, yyv24712) } - } else if yyl4709 != len(yyv4709) { - yyv4709 = yyv4709[:yyl4709] - yyc4709 = true + } else if yyl4712 != len(yyv4712) { + yyv4712 = yyv4712[:yyl4712] + yyc4712 = true } - yyj4709 := 0 - for ; yyj4709 < yyrr4709; yyj4709++ { - yyh4709.ElemContainerState(yyj4709) + yyj4712 := 0 + for ; yyj4712 < yyrr4712; yyj4712++ { + yyh4712.ElemContainerState(yyj4712) if r.TryDecodeAsNil() { - yyv4709[yyj4709] = Service{} + yyv4712[yyj4712] = Service{} } else { - yyv4710 := &yyv4709[yyj4709] - yyv4710.CodecDecodeSelf(d) + yyv4713 := &yyv4712[yyj4712] + yyv4713.CodecDecodeSelf(d) } } - if yyrt4709 { - for ; yyj4709 < yyl4709; yyj4709++ { - yyv4709 = append(yyv4709, Service{}) - yyh4709.ElemContainerState(yyj4709) + if yyrt4712 { + for ; yyj4712 < yyl4712; yyj4712++ { + yyv4712 = append(yyv4712, Service{}) + yyh4712.ElemContainerState(yyj4712) if r.TryDecodeAsNil() { - yyv4709[yyj4709] = Service{} + yyv4712[yyj4712] = Service{} } else { - yyv4711 := &yyv4709[yyj4709] - yyv4711.CodecDecodeSelf(d) + yyv4714 := &yyv4712[yyj4712] + yyv4714.CodecDecodeSelf(d) } } } } else { - yyj4709 := 0 - for ; !r.CheckBreak(); yyj4709++ { + yyj4712 := 0 + for ; !r.CheckBreak(); yyj4712++ { - if yyj4709 >= len(yyv4709) { - yyv4709 = append(yyv4709, Service{}) // var yyz4709 Service - yyc4709 = true + if yyj4712 >= len(yyv4712) { + yyv4712 = append(yyv4712, Service{}) // var yyz4712 Service + yyc4712 = true } - yyh4709.ElemContainerState(yyj4709) - if yyj4709 < len(yyv4709) { + yyh4712.ElemContainerState(yyj4712) + if yyj4712 < len(yyv4712) { if r.TryDecodeAsNil() { - yyv4709[yyj4709] = Service{} + yyv4712[yyj4712] = Service{} } else { - yyv4712 := &yyv4709[yyj4709] - yyv4712.CodecDecodeSelf(d) + yyv4715 := &yyv4712[yyj4712] + yyv4715.CodecDecodeSelf(d) } } else { @@ -59867,17 +59923,17 @@ func (x codecSelfer1234) decSliceService(v *[]Service, d *codec1978.Decoder) { } } - if yyj4709 < len(yyv4709) { - yyv4709 = yyv4709[:yyj4709] - yyc4709 = true - } else if yyj4709 == 0 && yyv4709 == nil { - yyv4709 = []Service{} - yyc4709 = true + if yyj4712 < len(yyv4712) { + yyv4712 = yyv4712[:yyj4712] + yyc4712 = true + } else if yyj4712 == 0 && yyv4712 == nil { + yyv4712 = []Service{} + yyc4712 = true } } - yyh4709.End() - if yyc4709 { - *v = yyv4709 + yyh4712.End() + if yyc4712 { + *v = yyv4712 } } @@ -59886,10 +59942,10 @@ func (x codecSelfer1234) encSliceObjectReference(v []ObjectReference, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4713 := range v { + for _, yyv4716 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4714 := &yyv4713 - yy4714.CodecEncodeSelf(e) + yy4717 := &yyv4716 + yy4717.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -59899,83 +59955,83 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4715 := *v - yyh4715, yyl4715 := z.DecSliceHelperStart() - var yyc4715 bool - if yyl4715 == 0 { - if yyv4715 == nil { - yyv4715 = []ObjectReference{} - yyc4715 = true - } else if len(yyv4715) != 0 { - yyv4715 = yyv4715[:0] - yyc4715 = true + yyv4718 := *v + yyh4718, yyl4718 := z.DecSliceHelperStart() + var yyc4718 bool + if yyl4718 == 0 { + if yyv4718 == nil { + yyv4718 = []ObjectReference{} + yyc4718 = true + } else if len(yyv4718) != 0 { + yyv4718 = yyv4718[:0] + yyc4718 = true } - } else if yyl4715 > 0 { - var yyrr4715, yyrl4715 int - var yyrt4715 bool - if yyl4715 > cap(yyv4715) { + } else if yyl4718 > 0 { + var yyrr4718, yyrl4718 int + var yyrt4718 bool + if yyl4718 > cap(yyv4718) { - yyrg4715 := len(yyv4715) > 0 - yyv24715 := yyv4715 - yyrl4715, yyrt4715 = z.DecInferLen(yyl4715, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4715 { - if yyrl4715 <= cap(yyv4715) { - yyv4715 = yyv4715[:yyrl4715] + yyrg4718 := len(yyv4718) > 0 + yyv24718 := yyv4718 + yyrl4718, yyrt4718 = z.DecInferLen(yyl4718, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4718 { + if yyrl4718 <= cap(yyv4718) { + yyv4718 = yyv4718[:yyrl4718] } else { - yyv4715 = make([]ObjectReference, yyrl4715) + yyv4718 = make([]ObjectReference, yyrl4718) } } else { - yyv4715 = make([]ObjectReference, yyrl4715) + yyv4718 = make([]ObjectReference, yyrl4718) } - yyc4715 = true - yyrr4715 = len(yyv4715) - if yyrg4715 { - copy(yyv4715, yyv24715) + yyc4718 = true + yyrr4718 = len(yyv4718) + if yyrg4718 { + copy(yyv4718, yyv24718) } - } else if yyl4715 != len(yyv4715) { - yyv4715 = yyv4715[:yyl4715] - yyc4715 = true + } else if yyl4718 != len(yyv4718) { + yyv4718 = yyv4718[:yyl4718] + yyc4718 = true } - yyj4715 := 0 - for ; yyj4715 < yyrr4715; yyj4715++ { - yyh4715.ElemContainerState(yyj4715) + yyj4718 := 0 + for ; yyj4718 < yyrr4718; yyj4718++ { + yyh4718.ElemContainerState(yyj4718) if r.TryDecodeAsNil() { - yyv4715[yyj4715] = ObjectReference{} + yyv4718[yyj4718] = ObjectReference{} } else { - yyv4716 := &yyv4715[yyj4715] - yyv4716.CodecDecodeSelf(d) + yyv4719 := &yyv4718[yyj4718] + yyv4719.CodecDecodeSelf(d) } } - if yyrt4715 { - for ; yyj4715 < yyl4715; yyj4715++ { - yyv4715 = append(yyv4715, ObjectReference{}) - yyh4715.ElemContainerState(yyj4715) + if yyrt4718 { + for ; yyj4718 < yyl4718; yyj4718++ { + yyv4718 = append(yyv4718, ObjectReference{}) + yyh4718.ElemContainerState(yyj4718) if r.TryDecodeAsNil() { - yyv4715[yyj4715] = ObjectReference{} + yyv4718[yyj4718] = ObjectReference{} } else { - yyv4717 := &yyv4715[yyj4715] - yyv4717.CodecDecodeSelf(d) + yyv4720 := &yyv4718[yyj4718] + yyv4720.CodecDecodeSelf(d) } } } } else { - yyj4715 := 0 - for ; !r.CheckBreak(); yyj4715++ { + yyj4718 := 0 + for ; !r.CheckBreak(); yyj4718++ { - if yyj4715 >= len(yyv4715) { - yyv4715 = append(yyv4715, ObjectReference{}) // var yyz4715 ObjectReference - yyc4715 = true + if yyj4718 >= len(yyv4718) { + yyv4718 = append(yyv4718, ObjectReference{}) // var yyz4718 ObjectReference + yyc4718 = true } - yyh4715.ElemContainerState(yyj4715) - if yyj4715 < len(yyv4715) { + yyh4718.ElemContainerState(yyj4718) + if yyj4718 < len(yyv4718) { if r.TryDecodeAsNil() { - yyv4715[yyj4715] = ObjectReference{} + yyv4718[yyj4718] = ObjectReference{} } else { - yyv4718 := &yyv4715[yyj4715] - yyv4718.CodecDecodeSelf(d) + yyv4721 := &yyv4718[yyj4718] + yyv4721.CodecDecodeSelf(d) } } else { @@ -59983,17 +60039,17 @@ func (x codecSelfer1234) decSliceObjectReference(v *[]ObjectReference, d *codec1 } } - if yyj4715 < len(yyv4715) { - yyv4715 = yyv4715[:yyj4715] - yyc4715 = true - } else if yyj4715 == 0 && yyv4715 == nil { - yyv4715 = []ObjectReference{} - yyc4715 = true + if yyj4718 < len(yyv4718) { + yyv4718 = yyv4718[:yyj4718] + yyc4718 = true + } else if yyj4718 == 0 && yyv4718 == nil { + yyv4718 = []ObjectReference{} + yyc4718 = true } } - yyh4715.End() - if yyc4715 { - *v = yyv4715 + yyh4718.End() + if yyc4718 { + *v = yyv4718 } } @@ -60002,10 +60058,10 @@ func (x codecSelfer1234) encSliceServiceAccount(v []ServiceAccount, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4719 := range v { + for _, yyv4722 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4720 := &yyv4719 - yy4720.CodecEncodeSelf(e) + yy4723 := &yyv4722 + yy4723.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60015,83 +60071,83 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4721 := *v - yyh4721, yyl4721 := z.DecSliceHelperStart() - var yyc4721 bool - if yyl4721 == 0 { - if yyv4721 == nil { - yyv4721 = []ServiceAccount{} - yyc4721 = true - } else if len(yyv4721) != 0 { - yyv4721 = yyv4721[:0] - yyc4721 = true + yyv4724 := *v + yyh4724, yyl4724 := z.DecSliceHelperStart() + var yyc4724 bool + if yyl4724 == 0 { + if yyv4724 == nil { + yyv4724 = []ServiceAccount{} + yyc4724 = true + } else if len(yyv4724) != 0 { + yyv4724 = yyv4724[:0] + yyc4724 = true } - } else if yyl4721 > 0 { - var yyrr4721, yyrl4721 int - var yyrt4721 bool - if yyl4721 > cap(yyv4721) { + } else if yyl4724 > 0 { + var yyrr4724, yyrl4724 int + var yyrt4724 bool + if yyl4724 > cap(yyv4724) { - yyrg4721 := len(yyv4721) > 0 - yyv24721 := yyv4721 - yyrl4721, yyrt4721 = z.DecInferLen(yyl4721, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4721 { - if yyrl4721 <= cap(yyv4721) { - yyv4721 = yyv4721[:yyrl4721] + yyrg4724 := len(yyv4724) > 0 + yyv24724 := yyv4724 + yyrl4724, yyrt4724 = z.DecInferLen(yyl4724, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4724 { + if yyrl4724 <= cap(yyv4724) { + yyv4724 = yyv4724[:yyrl4724] } else { - yyv4721 = make([]ServiceAccount, yyrl4721) + yyv4724 = make([]ServiceAccount, yyrl4724) } } else { - yyv4721 = make([]ServiceAccount, yyrl4721) + yyv4724 = make([]ServiceAccount, yyrl4724) } - yyc4721 = true - yyrr4721 = len(yyv4721) - if yyrg4721 { - copy(yyv4721, yyv24721) + yyc4724 = true + yyrr4724 = len(yyv4724) + if yyrg4724 { + copy(yyv4724, yyv24724) } - } else if yyl4721 != len(yyv4721) { - yyv4721 = yyv4721[:yyl4721] - yyc4721 = true + } else if yyl4724 != len(yyv4724) { + yyv4724 = yyv4724[:yyl4724] + yyc4724 = true } - yyj4721 := 0 - for ; yyj4721 < yyrr4721; yyj4721++ { - yyh4721.ElemContainerState(yyj4721) + yyj4724 := 0 + for ; yyj4724 < yyrr4724; yyj4724++ { + yyh4724.ElemContainerState(yyj4724) if r.TryDecodeAsNil() { - yyv4721[yyj4721] = ServiceAccount{} + yyv4724[yyj4724] = ServiceAccount{} } else { - yyv4722 := &yyv4721[yyj4721] - yyv4722.CodecDecodeSelf(d) + yyv4725 := &yyv4724[yyj4724] + yyv4725.CodecDecodeSelf(d) } } - if yyrt4721 { - for ; yyj4721 < yyl4721; yyj4721++ { - yyv4721 = append(yyv4721, ServiceAccount{}) - yyh4721.ElemContainerState(yyj4721) + if yyrt4724 { + for ; yyj4724 < yyl4724; yyj4724++ { + yyv4724 = append(yyv4724, ServiceAccount{}) + yyh4724.ElemContainerState(yyj4724) if r.TryDecodeAsNil() { - yyv4721[yyj4721] = ServiceAccount{} + yyv4724[yyj4724] = ServiceAccount{} } else { - yyv4723 := &yyv4721[yyj4721] - yyv4723.CodecDecodeSelf(d) + yyv4726 := &yyv4724[yyj4724] + yyv4726.CodecDecodeSelf(d) } } } } else { - yyj4721 := 0 - for ; !r.CheckBreak(); yyj4721++ { + yyj4724 := 0 + for ; !r.CheckBreak(); yyj4724++ { - if yyj4721 >= len(yyv4721) { - yyv4721 = append(yyv4721, ServiceAccount{}) // var yyz4721 ServiceAccount - yyc4721 = true + if yyj4724 >= len(yyv4724) { + yyv4724 = append(yyv4724, ServiceAccount{}) // var yyz4724 ServiceAccount + yyc4724 = true } - yyh4721.ElemContainerState(yyj4721) - if yyj4721 < len(yyv4721) { + yyh4724.ElemContainerState(yyj4724) + if yyj4724 < len(yyv4724) { if r.TryDecodeAsNil() { - yyv4721[yyj4721] = ServiceAccount{} + yyv4724[yyj4724] = ServiceAccount{} } else { - yyv4724 := &yyv4721[yyj4721] - yyv4724.CodecDecodeSelf(d) + yyv4727 := &yyv4724[yyj4724] + yyv4727.CodecDecodeSelf(d) } } else { @@ -60099,17 +60155,17 @@ func (x codecSelfer1234) decSliceServiceAccount(v *[]ServiceAccount, d *codec197 } } - if yyj4721 < len(yyv4721) { - yyv4721 = yyv4721[:yyj4721] - yyc4721 = true - } else if yyj4721 == 0 && yyv4721 == nil { - yyv4721 = []ServiceAccount{} - yyc4721 = true + if yyj4724 < len(yyv4724) { + yyv4724 = yyv4724[:yyj4724] + yyc4724 = true + } else if yyj4724 == 0 && yyv4724 == nil { + yyv4724 = []ServiceAccount{} + yyc4724 = true } } - yyh4721.End() - if yyc4721 { - *v = yyv4721 + yyh4724.End() + if yyc4724 { + *v = yyv4724 } } @@ -60118,10 +60174,10 @@ func (x codecSelfer1234) encSliceEndpointSubset(v []EndpointSubset, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4725 := range v { + for _, yyv4728 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4726 := &yyv4725 - yy4726.CodecEncodeSelf(e) + yy4729 := &yyv4728 + yy4729.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60131,83 +60187,83 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4727 := *v - yyh4727, yyl4727 := z.DecSliceHelperStart() - var yyc4727 bool - if yyl4727 == 0 { - if yyv4727 == nil { - yyv4727 = []EndpointSubset{} - yyc4727 = true - } else if len(yyv4727) != 0 { - yyv4727 = yyv4727[:0] - yyc4727 = true + yyv4730 := *v + yyh4730, yyl4730 := z.DecSliceHelperStart() + var yyc4730 bool + if yyl4730 == 0 { + if yyv4730 == nil { + yyv4730 = []EndpointSubset{} + yyc4730 = true + } else if len(yyv4730) != 0 { + yyv4730 = yyv4730[:0] + yyc4730 = true } - } else if yyl4727 > 0 { - var yyrr4727, yyrl4727 int - var yyrt4727 bool - if yyl4727 > cap(yyv4727) { + } else if yyl4730 > 0 { + var yyrr4730, yyrl4730 int + var yyrt4730 bool + if yyl4730 > cap(yyv4730) { - yyrg4727 := len(yyv4727) > 0 - yyv24727 := yyv4727 - yyrl4727, yyrt4727 = z.DecInferLen(yyl4727, z.DecBasicHandle().MaxInitLen, 72) - if yyrt4727 { - if yyrl4727 <= cap(yyv4727) { - yyv4727 = yyv4727[:yyrl4727] + yyrg4730 := len(yyv4730) > 0 + yyv24730 := yyv4730 + yyrl4730, yyrt4730 = z.DecInferLen(yyl4730, z.DecBasicHandle().MaxInitLen, 72) + if yyrt4730 { + if yyrl4730 <= cap(yyv4730) { + yyv4730 = yyv4730[:yyrl4730] } else { - yyv4727 = make([]EndpointSubset, yyrl4727) + yyv4730 = make([]EndpointSubset, yyrl4730) } } else { - yyv4727 = make([]EndpointSubset, yyrl4727) + yyv4730 = make([]EndpointSubset, yyrl4730) } - yyc4727 = true - yyrr4727 = len(yyv4727) - if yyrg4727 { - copy(yyv4727, yyv24727) + yyc4730 = true + yyrr4730 = len(yyv4730) + if yyrg4730 { + copy(yyv4730, yyv24730) } - } else if yyl4727 != len(yyv4727) { - yyv4727 = yyv4727[:yyl4727] - yyc4727 = true + } else if yyl4730 != len(yyv4730) { + yyv4730 = yyv4730[:yyl4730] + yyc4730 = true } - yyj4727 := 0 - for ; yyj4727 < yyrr4727; yyj4727++ { - yyh4727.ElemContainerState(yyj4727) + yyj4730 := 0 + for ; yyj4730 < yyrr4730; yyj4730++ { + yyh4730.ElemContainerState(yyj4730) if r.TryDecodeAsNil() { - yyv4727[yyj4727] = EndpointSubset{} + yyv4730[yyj4730] = EndpointSubset{} } else { - yyv4728 := &yyv4727[yyj4727] - yyv4728.CodecDecodeSelf(d) + yyv4731 := &yyv4730[yyj4730] + yyv4731.CodecDecodeSelf(d) } } - if yyrt4727 { - for ; yyj4727 < yyl4727; yyj4727++ { - yyv4727 = append(yyv4727, EndpointSubset{}) - yyh4727.ElemContainerState(yyj4727) + if yyrt4730 { + for ; yyj4730 < yyl4730; yyj4730++ { + yyv4730 = append(yyv4730, EndpointSubset{}) + yyh4730.ElemContainerState(yyj4730) if r.TryDecodeAsNil() { - yyv4727[yyj4727] = EndpointSubset{} + yyv4730[yyj4730] = EndpointSubset{} } else { - yyv4729 := &yyv4727[yyj4727] - yyv4729.CodecDecodeSelf(d) + yyv4732 := &yyv4730[yyj4730] + yyv4732.CodecDecodeSelf(d) } } } } else { - yyj4727 := 0 - for ; !r.CheckBreak(); yyj4727++ { + yyj4730 := 0 + for ; !r.CheckBreak(); yyj4730++ { - if yyj4727 >= len(yyv4727) { - yyv4727 = append(yyv4727, EndpointSubset{}) // var yyz4727 EndpointSubset - yyc4727 = true + if yyj4730 >= len(yyv4730) { + yyv4730 = append(yyv4730, EndpointSubset{}) // var yyz4730 EndpointSubset + yyc4730 = true } - yyh4727.ElemContainerState(yyj4727) - if yyj4727 < len(yyv4727) { + yyh4730.ElemContainerState(yyj4730) + if yyj4730 < len(yyv4730) { if r.TryDecodeAsNil() { - yyv4727[yyj4727] = EndpointSubset{} + yyv4730[yyj4730] = EndpointSubset{} } else { - yyv4730 := &yyv4727[yyj4727] - yyv4730.CodecDecodeSelf(d) + yyv4733 := &yyv4730[yyj4730] + yyv4733.CodecDecodeSelf(d) } } else { @@ -60215,17 +60271,17 @@ func (x codecSelfer1234) decSliceEndpointSubset(v *[]EndpointSubset, d *codec197 } } - if yyj4727 < len(yyv4727) { - yyv4727 = yyv4727[:yyj4727] - yyc4727 = true - } else if yyj4727 == 0 && yyv4727 == nil { - yyv4727 = []EndpointSubset{} - yyc4727 = true + if yyj4730 < len(yyv4730) { + yyv4730 = yyv4730[:yyj4730] + yyc4730 = true + } else if yyj4730 == 0 && yyv4730 == nil { + yyv4730 = []EndpointSubset{} + yyc4730 = true } } - yyh4727.End() - if yyc4727 { - *v = yyv4727 + yyh4730.End() + if yyc4730 { + *v = yyv4730 } } @@ -60234,10 +60290,10 @@ func (x codecSelfer1234) encSliceEndpointAddress(v []EndpointAddress, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4731 := range v { + for _, yyv4734 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4732 := &yyv4731 - yy4732.CodecEncodeSelf(e) + yy4735 := &yyv4734 + yy4735.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60247,83 +60303,83 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4733 := *v - yyh4733, yyl4733 := z.DecSliceHelperStart() - var yyc4733 bool - if yyl4733 == 0 { - if yyv4733 == nil { - yyv4733 = []EndpointAddress{} - yyc4733 = true - } else if len(yyv4733) != 0 { - yyv4733 = yyv4733[:0] - yyc4733 = true + yyv4736 := *v + yyh4736, yyl4736 := z.DecSliceHelperStart() + var yyc4736 bool + if yyl4736 == 0 { + if yyv4736 == nil { + yyv4736 = []EndpointAddress{} + yyc4736 = true + } else if len(yyv4736) != 0 { + yyv4736 = yyv4736[:0] + yyc4736 = true } - } else if yyl4733 > 0 { - var yyrr4733, yyrl4733 int - var yyrt4733 bool - if yyl4733 > cap(yyv4733) { + } else if yyl4736 > 0 { + var yyrr4736, yyrl4736 int + var yyrt4736 bool + if yyl4736 > cap(yyv4736) { - yyrg4733 := len(yyv4733) > 0 - yyv24733 := yyv4733 - yyrl4733, yyrt4733 = z.DecInferLen(yyl4733, z.DecBasicHandle().MaxInitLen, 48) - if yyrt4733 { - if yyrl4733 <= cap(yyv4733) { - yyv4733 = yyv4733[:yyrl4733] + yyrg4736 := len(yyv4736) > 0 + yyv24736 := yyv4736 + yyrl4736, yyrt4736 = z.DecInferLen(yyl4736, z.DecBasicHandle().MaxInitLen, 48) + if yyrt4736 { + if yyrl4736 <= cap(yyv4736) { + yyv4736 = yyv4736[:yyrl4736] } else { - yyv4733 = make([]EndpointAddress, yyrl4733) + yyv4736 = make([]EndpointAddress, yyrl4736) } } else { - yyv4733 = make([]EndpointAddress, yyrl4733) + yyv4736 = make([]EndpointAddress, yyrl4736) } - yyc4733 = true - yyrr4733 = len(yyv4733) - if yyrg4733 { - copy(yyv4733, yyv24733) + yyc4736 = true + yyrr4736 = len(yyv4736) + if yyrg4736 { + copy(yyv4736, yyv24736) } - } else if yyl4733 != len(yyv4733) { - yyv4733 = yyv4733[:yyl4733] - yyc4733 = true + } else if yyl4736 != len(yyv4736) { + yyv4736 = yyv4736[:yyl4736] + yyc4736 = true } - yyj4733 := 0 - for ; yyj4733 < yyrr4733; yyj4733++ { - yyh4733.ElemContainerState(yyj4733) + yyj4736 := 0 + for ; yyj4736 < yyrr4736; yyj4736++ { + yyh4736.ElemContainerState(yyj4736) if r.TryDecodeAsNil() { - yyv4733[yyj4733] = EndpointAddress{} + yyv4736[yyj4736] = EndpointAddress{} } else { - yyv4734 := &yyv4733[yyj4733] - yyv4734.CodecDecodeSelf(d) + yyv4737 := &yyv4736[yyj4736] + yyv4737.CodecDecodeSelf(d) } } - if yyrt4733 { - for ; yyj4733 < yyl4733; yyj4733++ { - yyv4733 = append(yyv4733, EndpointAddress{}) - yyh4733.ElemContainerState(yyj4733) + if yyrt4736 { + for ; yyj4736 < yyl4736; yyj4736++ { + yyv4736 = append(yyv4736, EndpointAddress{}) + yyh4736.ElemContainerState(yyj4736) if r.TryDecodeAsNil() { - yyv4733[yyj4733] = EndpointAddress{} + yyv4736[yyj4736] = EndpointAddress{} } else { - yyv4735 := &yyv4733[yyj4733] - yyv4735.CodecDecodeSelf(d) + yyv4738 := &yyv4736[yyj4736] + yyv4738.CodecDecodeSelf(d) } } } } else { - yyj4733 := 0 - for ; !r.CheckBreak(); yyj4733++ { + yyj4736 := 0 + for ; !r.CheckBreak(); yyj4736++ { - if yyj4733 >= len(yyv4733) { - yyv4733 = append(yyv4733, EndpointAddress{}) // var yyz4733 EndpointAddress - yyc4733 = true + if yyj4736 >= len(yyv4736) { + yyv4736 = append(yyv4736, EndpointAddress{}) // var yyz4736 EndpointAddress + yyc4736 = true } - yyh4733.ElemContainerState(yyj4733) - if yyj4733 < len(yyv4733) { + yyh4736.ElemContainerState(yyj4736) + if yyj4736 < len(yyv4736) { if r.TryDecodeAsNil() { - yyv4733[yyj4733] = EndpointAddress{} + yyv4736[yyj4736] = EndpointAddress{} } else { - yyv4736 := &yyv4733[yyj4733] - yyv4736.CodecDecodeSelf(d) + yyv4739 := &yyv4736[yyj4736] + yyv4739.CodecDecodeSelf(d) } } else { @@ -60331,17 +60387,17 @@ func (x codecSelfer1234) decSliceEndpointAddress(v *[]EndpointAddress, d *codec1 } } - if yyj4733 < len(yyv4733) { - yyv4733 = yyv4733[:yyj4733] - yyc4733 = true - } else if yyj4733 == 0 && yyv4733 == nil { - yyv4733 = []EndpointAddress{} - yyc4733 = true + if yyj4736 < len(yyv4736) { + yyv4736 = yyv4736[:yyj4736] + yyc4736 = true + } else if yyj4736 == 0 && yyv4736 == nil { + yyv4736 = []EndpointAddress{} + yyc4736 = true } } - yyh4733.End() - if yyc4733 { - *v = yyv4733 + yyh4736.End() + if yyc4736 { + *v = yyv4736 } } @@ -60350,10 +60406,10 @@ func (x codecSelfer1234) encSliceEndpointPort(v []EndpointPort, e *codec1978.Enc z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4737 := range v { + for _, yyv4740 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4738 := &yyv4737 - yy4738.CodecEncodeSelf(e) + yy4741 := &yyv4740 + yy4741.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60363,83 +60419,83 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4739 := *v - yyh4739, yyl4739 := z.DecSliceHelperStart() - var yyc4739 bool - if yyl4739 == 0 { - if yyv4739 == nil { - yyv4739 = []EndpointPort{} - yyc4739 = true - } else if len(yyv4739) != 0 { - yyv4739 = yyv4739[:0] - yyc4739 = true + yyv4742 := *v + yyh4742, yyl4742 := z.DecSliceHelperStart() + var yyc4742 bool + if yyl4742 == 0 { + if yyv4742 == nil { + yyv4742 = []EndpointPort{} + yyc4742 = true + } else if len(yyv4742) != 0 { + yyv4742 = yyv4742[:0] + yyc4742 = true } - } else if yyl4739 > 0 { - var yyrr4739, yyrl4739 int - var yyrt4739 bool - if yyl4739 > cap(yyv4739) { + } else if yyl4742 > 0 { + var yyrr4742, yyrl4742 int + var yyrt4742 bool + if yyl4742 > cap(yyv4742) { - yyrg4739 := len(yyv4739) > 0 - yyv24739 := yyv4739 - yyrl4739, yyrt4739 = z.DecInferLen(yyl4739, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4739 { - if yyrl4739 <= cap(yyv4739) { - yyv4739 = yyv4739[:yyrl4739] + yyrg4742 := len(yyv4742) > 0 + yyv24742 := yyv4742 + yyrl4742, yyrt4742 = z.DecInferLen(yyl4742, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4742 { + if yyrl4742 <= cap(yyv4742) { + yyv4742 = yyv4742[:yyrl4742] } else { - yyv4739 = make([]EndpointPort, yyrl4739) + yyv4742 = make([]EndpointPort, yyrl4742) } } else { - yyv4739 = make([]EndpointPort, yyrl4739) + yyv4742 = make([]EndpointPort, yyrl4742) } - yyc4739 = true - yyrr4739 = len(yyv4739) - if yyrg4739 { - copy(yyv4739, yyv24739) + yyc4742 = true + yyrr4742 = len(yyv4742) + if yyrg4742 { + copy(yyv4742, yyv24742) } - } else if yyl4739 != len(yyv4739) { - yyv4739 = yyv4739[:yyl4739] - yyc4739 = true + } else if yyl4742 != len(yyv4742) { + yyv4742 = yyv4742[:yyl4742] + yyc4742 = true } - yyj4739 := 0 - for ; yyj4739 < yyrr4739; yyj4739++ { - yyh4739.ElemContainerState(yyj4739) + yyj4742 := 0 + for ; yyj4742 < yyrr4742; yyj4742++ { + yyh4742.ElemContainerState(yyj4742) if r.TryDecodeAsNil() { - yyv4739[yyj4739] = EndpointPort{} + yyv4742[yyj4742] = EndpointPort{} } else { - yyv4740 := &yyv4739[yyj4739] - yyv4740.CodecDecodeSelf(d) + yyv4743 := &yyv4742[yyj4742] + yyv4743.CodecDecodeSelf(d) } } - if yyrt4739 { - for ; yyj4739 < yyl4739; yyj4739++ { - yyv4739 = append(yyv4739, EndpointPort{}) - yyh4739.ElemContainerState(yyj4739) + if yyrt4742 { + for ; yyj4742 < yyl4742; yyj4742++ { + yyv4742 = append(yyv4742, EndpointPort{}) + yyh4742.ElemContainerState(yyj4742) if r.TryDecodeAsNil() { - yyv4739[yyj4739] = EndpointPort{} + yyv4742[yyj4742] = EndpointPort{} } else { - yyv4741 := &yyv4739[yyj4739] - yyv4741.CodecDecodeSelf(d) + yyv4744 := &yyv4742[yyj4742] + yyv4744.CodecDecodeSelf(d) } } } } else { - yyj4739 := 0 - for ; !r.CheckBreak(); yyj4739++ { + yyj4742 := 0 + for ; !r.CheckBreak(); yyj4742++ { - if yyj4739 >= len(yyv4739) { - yyv4739 = append(yyv4739, EndpointPort{}) // var yyz4739 EndpointPort - yyc4739 = true + if yyj4742 >= len(yyv4742) { + yyv4742 = append(yyv4742, EndpointPort{}) // var yyz4742 EndpointPort + yyc4742 = true } - yyh4739.ElemContainerState(yyj4739) - if yyj4739 < len(yyv4739) { + yyh4742.ElemContainerState(yyj4742) + if yyj4742 < len(yyv4742) { if r.TryDecodeAsNil() { - yyv4739[yyj4739] = EndpointPort{} + yyv4742[yyj4742] = EndpointPort{} } else { - yyv4742 := &yyv4739[yyj4739] - yyv4742.CodecDecodeSelf(d) + yyv4745 := &yyv4742[yyj4742] + yyv4745.CodecDecodeSelf(d) } } else { @@ -60447,17 +60503,17 @@ func (x codecSelfer1234) decSliceEndpointPort(v *[]EndpointPort, d *codec1978.De } } - if yyj4739 < len(yyv4739) { - yyv4739 = yyv4739[:yyj4739] - yyc4739 = true - } else if yyj4739 == 0 && yyv4739 == nil { - yyv4739 = []EndpointPort{} - yyc4739 = true + if yyj4742 < len(yyv4742) { + yyv4742 = yyv4742[:yyj4742] + yyc4742 = true + } else if yyj4742 == 0 && yyv4742 == nil { + yyv4742 = []EndpointPort{} + yyc4742 = true } } - yyh4739.End() - if yyc4739 { - *v = yyv4739 + yyh4742.End() + if yyc4742 { + *v = yyv4742 } } @@ -60466,10 +60522,10 @@ func (x codecSelfer1234) encSliceEndpoints(v []Endpoints, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4743 := range v { + for _, yyv4746 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4744 := &yyv4743 - yy4744.CodecEncodeSelf(e) + yy4747 := &yyv4746 + yy4747.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60479,83 +60535,83 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4745 := *v - yyh4745, yyl4745 := z.DecSliceHelperStart() - var yyc4745 bool - if yyl4745 == 0 { - if yyv4745 == nil { - yyv4745 = []Endpoints{} - yyc4745 = true - } else if len(yyv4745) != 0 { - yyv4745 = yyv4745[:0] - yyc4745 = true + yyv4748 := *v + yyh4748, yyl4748 := z.DecSliceHelperStart() + var yyc4748 bool + if yyl4748 == 0 { + if yyv4748 == nil { + yyv4748 = []Endpoints{} + yyc4748 = true + } else if len(yyv4748) != 0 { + yyv4748 = yyv4748[:0] + yyc4748 = true } - } else if yyl4745 > 0 { - var yyrr4745, yyrl4745 int - var yyrt4745 bool - if yyl4745 > cap(yyv4745) { + } else if yyl4748 > 0 { + var yyrr4748, yyrl4748 int + var yyrt4748 bool + if yyl4748 > cap(yyv4748) { - yyrg4745 := len(yyv4745) > 0 - yyv24745 := yyv4745 - yyrl4745, yyrt4745 = z.DecInferLen(yyl4745, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4745 { - if yyrl4745 <= cap(yyv4745) { - yyv4745 = yyv4745[:yyrl4745] + yyrg4748 := len(yyv4748) > 0 + yyv24748 := yyv4748 + yyrl4748, yyrt4748 = z.DecInferLen(yyl4748, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4748 { + if yyrl4748 <= cap(yyv4748) { + yyv4748 = yyv4748[:yyrl4748] } else { - yyv4745 = make([]Endpoints, yyrl4745) + yyv4748 = make([]Endpoints, yyrl4748) } } else { - yyv4745 = make([]Endpoints, yyrl4745) + yyv4748 = make([]Endpoints, yyrl4748) } - yyc4745 = true - yyrr4745 = len(yyv4745) - if yyrg4745 { - copy(yyv4745, yyv24745) + yyc4748 = true + yyrr4748 = len(yyv4748) + if yyrg4748 { + copy(yyv4748, yyv24748) } - } else if yyl4745 != len(yyv4745) { - yyv4745 = yyv4745[:yyl4745] - yyc4745 = true + } else if yyl4748 != len(yyv4748) { + yyv4748 = yyv4748[:yyl4748] + yyc4748 = true } - yyj4745 := 0 - for ; yyj4745 < yyrr4745; yyj4745++ { - yyh4745.ElemContainerState(yyj4745) + yyj4748 := 0 + for ; yyj4748 < yyrr4748; yyj4748++ { + yyh4748.ElemContainerState(yyj4748) if r.TryDecodeAsNil() { - yyv4745[yyj4745] = Endpoints{} + yyv4748[yyj4748] = Endpoints{} } else { - yyv4746 := &yyv4745[yyj4745] - yyv4746.CodecDecodeSelf(d) + yyv4749 := &yyv4748[yyj4748] + yyv4749.CodecDecodeSelf(d) } } - if yyrt4745 { - for ; yyj4745 < yyl4745; yyj4745++ { - yyv4745 = append(yyv4745, Endpoints{}) - yyh4745.ElemContainerState(yyj4745) + if yyrt4748 { + for ; yyj4748 < yyl4748; yyj4748++ { + yyv4748 = append(yyv4748, Endpoints{}) + yyh4748.ElemContainerState(yyj4748) if r.TryDecodeAsNil() { - yyv4745[yyj4745] = Endpoints{} + yyv4748[yyj4748] = Endpoints{} } else { - yyv4747 := &yyv4745[yyj4745] - yyv4747.CodecDecodeSelf(d) + yyv4750 := &yyv4748[yyj4748] + yyv4750.CodecDecodeSelf(d) } } } } else { - yyj4745 := 0 - for ; !r.CheckBreak(); yyj4745++ { + yyj4748 := 0 + for ; !r.CheckBreak(); yyj4748++ { - if yyj4745 >= len(yyv4745) { - yyv4745 = append(yyv4745, Endpoints{}) // var yyz4745 Endpoints - yyc4745 = true + if yyj4748 >= len(yyv4748) { + yyv4748 = append(yyv4748, Endpoints{}) // var yyz4748 Endpoints + yyc4748 = true } - yyh4745.ElemContainerState(yyj4745) - if yyj4745 < len(yyv4745) { + yyh4748.ElemContainerState(yyj4748) + if yyj4748 < len(yyv4748) { if r.TryDecodeAsNil() { - yyv4745[yyj4745] = Endpoints{} + yyv4748[yyj4748] = Endpoints{} } else { - yyv4748 := &yyv4745[yyj4745] - yyv4748.CodecDecodeSelf(d) + yyv4751 := &yyv4748[yyj4748] + yyv4751.CodecDecodeSelf(d) } } else { @@ -60563,17 +60619,17 @@ func (x codecSelfer1234) decSliceEndpoints(v *[]Endpoints, d *codec1978.Decoder) } } - if yyj4745 < len(yyv4745) { - yyv4745 = yyv4745[:yyj4745] - yyc4745 = true - } else if yyj4745 == 0 && yyv4745 == nil { - yyv4745 = []Endpoints{} - yyc4745 = true + if yyj4748 < len(yyv4748) { + yyv4748 = yyv4748[:yyj4748] + yyc4748 = true + } else if yyj4748 == 0 && yyv4748 == nil { + yyv4748 = []Endpoints{} + yyc4748 = true } } - yyh4745.End() - if yyc4745 { - *v = yyv4745 + yyh4748.End() + if yyc4748 { + *v = yyv4748 } } @@ -60582,10 +60638,10 @@ func (x codecSelfer1234) encSliceNodeCondition(v []NodeCondition, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4749 := range v { + for _, yyv4752 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4750 := &yyv4749 - yy4750.CodecEncodeSelf(e) + yy4753 := &yyv4752 + yy4753.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60595,83 +60651,83 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4751 := *v - yyh4751, yyl4751 := z.DecSliceHelperStart() - var yyc4751 bool - if yyl4751 == 0 { - if yyv4751 == nil { - yyv4751 = []NodeCondition{} - yyc4751 = true - } else if len(yyv4751) != 0 { - yyv4751 = yyv4751[:0] - yyc4751 = true + yyv4754 := *v + yyh4754, yyl4754 := z.DecSliceHelperStart() + var yyc4754 bool + if yyl4754 == 0 { + if yyv4754 == nil { + yyv4754 = []NodeCondition{} + yyc4754 = true + } else if len(yyv4754) != 0 { + yyv4754 = yyv4754[:0] + yyc4754 = true } - } else if yyl4751 > 0 { - var yyrr4751, yyrl4751 int - var yyrt4751 bool - if yyl4751 > cap(yyv4751) { + } else if yyl4754 > 0 { + var yyrr4754, yyrl4754 int + var yyrt4754 bool + if yyl4754 > cap(yyv4754) { - yyrg4751 := len(yyv4751) > 0 - yyv24751 := yyv4751 - yyrl4751, yyrt4751 = z.DecInferLen(yyl4751, z.DecBasicHandle().MaxInitLen, 112) - if yyrt4751 { - if yyrl4751 <= cap(yyv4751) { - yyv4751 = yyv4751[:yyrl4751] + yyrg4754 := len(yyv4754) > 0 + yyv24754 := yyv4754 + yyrl4754, yyrt4754 = z.DecInferLen(yyl4754, z.DecBasicHandle().MaxInitLen, 112) + if yyrt4754 { + if yyrl4754 <= cap(yyv4754) { + yyv4754 = yyv4754[:yyrl4754] } else { - yyv4751 = make([]NodeCondition, yyrl4751) + yyv4754 = make([]NodeCondition, yyrl4754) } } else { - yyv4751 = make([]NodeCondition, yyrl4751) + yyv4754 = make([]NodeCondition, yyrl4754) } - yyc4751 = true - yyrr4751 = len(yyv4751) - if yyrg4751 { - copy(yyv4751, yyv24751) + yyc4754 = true + yyrr4754 = len(yyv4754) + if yyrg4754 { + copy(yyv4754, yyv24754) } - } else if yyl4751 != len(yyv4751) { - yyv4751 = yyv4751[:yyl4751] - yyc4751 = true + } else if yyl4754 != len(yyv4754) { + yyv4754 = yyv4754[:yyl4754] + yyc4754 = true } - yyj4751 := 0 - for ; yyj4751 < yyrr4751; yyj4751++ { - yyh4751.ElemContainerState(yyj4751) + yyj4754 := 0 + for ; yyj4754 < yyrr4754; yyj4754++ { + yyh4754.ElemContainerState(yyj4754) if r.TryDecodeAsNil() { - yyv4751[yyj4751] = NodeCondition{} + yyv4754[yyj4754] = NodeCondition{} } else { - yyv4752 := &yyv4751[yyj4751] - yyv4752.CodecDecodeSelf(d) + yyv4755 := &yyv4754[yyj4754] + yyv4755.CodecDecodeSelf(d) } } - if yyrt4751 { - for ; yyj4751 < yyl4751; yyj4751++ { - yyv4751 = append(yyv4751, NodeCondition{}) - yyh4751.ElemContainerState(yyj4751) + if yyrt4754 { + for ; yyj4754 < yyl4754; yyj4754++ { + yyv4754 = append(yyv4754, NodeCondition{}) + yyh4754.ElemContainerState(yyj4754) if r.TryDecodeAsNil() { - yyv4751[yyj4751] = NodeCondition{} + yyv4754[yyj4754] = NodeCondition{} } else { - yyv4753 := &yyv4751[yyj4751] - yyv4753.CodecDecodeSelf(d) + yyv4756 := &yyv4754[yyj4754] + yyv4756.CodecDecodeSelf(d) } } } } else { - yyj4751 := 0 - for ; !r.CheckBreak(); yyj4751++ { + yyj4754 := 0 + for ; !r.CheckBreak(); yyj4754++ { - if yyj4751 >= len(yyv4751) { - yyv4751 = append(yyv4751, NodeCondition{}) // var yyz4751 NodeCondition - yyc4751 = true + if yyj4754 >= len(yyv4754) { + yyv4754 = append(yyv4754, NodeCondition{}) // var yyz4754 NodeCondition + yyc4754 = true } - yyh4751.ElemContainerState(yyj4751) - if yyj4751 < len(yyv4751) { + yyh4754.ElemContainerState(yyj4754) + if yyj4754 < len(yyv4754) { if r.TryDecodeAsNil() { - yyv4751[yyj4751] = NodeCondition{} + yyv4754[yyj4754] = NodeCondition{} } else { - yyv4754 := &yyv4751[yyj4751] - yyv4754.CodecDecodeSelf(d) + yyv4757 := &yyv4754[yyj4754] + yyv4757.CodecDecodeSelf(d) } } else { @@ -60679,17 +60735,17 @@ func (x codecSelfer1234) decSliceNodeCondition(v *[]NodeCondition, d *codec1978. } } - if yyj4751 < len(yyv4751) { - yyv4751 = yyv4751[:yyj4751] - yyc4751 = true - } else if yyj4751 == 0 && yyv4751 == nil { - yyv4751 = []NodeCondition{} - yyc4751 = true + if yyj4754 < len(yyv4754) { + yyv4754 = yyv4754[:yyj4754] + yyc4754 = true + } else if yyj4754 == 0 && yyv4754 == nil { + yyv4754 = []NodeCondition{} + yyc4754 = true } } - yyh4751.End() - if yyc4751 { - *v = yyv4751 + yyh4754.End() + if yyc4754 { + *v = yyv4754 } } @@ -60698,10 +60754,10 @@ func (x codecSelfer1234) encSliceNodeAddress(v []NodeAddress, e *codec1978.Encod z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4755 := range v { + for _, yyv4758 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4756 := &yyv4755 - yy4756.CodecEncodeSelf(e) + yy4759 := &yyv4758 + yy4759.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60711,83 +60767,83 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4757 := *v - yyh4757, yyl4757 := z.DecSliceHelperStart() - var yyc4757 bool - if yyl4757 == 0 { - if yyv4757 == nil { - yyv4757 = []NodeAddress{} - yyc4757 = true - } else if len(yyv4757) != 0 { - yyv4757 = yyv4757[:0] - yyc4757 = true + yyv4760 := *v + yyh4760, yyl4760 := z.DecSliceHelperStart() + var yyc4760 bool + if yyl4760 == 0 { + if yyv4760 == nil { + yyv4760 = []NodeAddress{} + yyc4760 = true + } else if len(yyv4760) != 0 { + yyv4760 = yyv4760[:0] + yyc4760 = true } - } else if yyl4757 > 0 { - var yyrr4757, yyrl4757 int - var yyrt4757 bool - if yyl4757 > cap(yyv4757) { + } else if yyl4760 > 0 { + var yyrr4760, yyrl4760 int + var yyrt4760 bool + if yyl4760 > cap(yyv4760) { - yyrg4757 := len(yyv4757) > 0 - yyv24757 := yyv4757 - yyrl4757, yyrt4757 = z.DecInferLen(yyl4757, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4757 { - if yyrl4757 <= cap(yyv4757) { - yyv4757 = yyv4757[:yyrl4757] + yyrg4760 := len(yyv4760) > 0 + yyv24760 := yyv4760 + yyrl4760, yyrt4760 = z.DecInferLen(yyl4760, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4760 { + if yyrl4760 <= cap(yyv4760) { + yyv4760 = yyv4760[:yyrl4760] } else { - yyv4757 = make([]NodeAddress, yyrl4757) + yyv4760 = make([]NodeAddress, yyrl4760) } } else { - yyv4757 = make([]NodeAddress, yyrl4757) + yyv4760 = make([]NodeAddress, yyrl4760) } - yyc4757 = true - yyrr4757 = len(yyv4757) - if yyrg4757 { - copy(yyv4757, yyv24757) + yyc4760 = true + yyrr4760 = len(yyv4760) + if yyrg4760 { + copy(yyv4760, yyv24760) } - } else if yyl4757 != len(yyv4757) { - yyv4757 = yyv4757[:yyl4757] - yyc4757 = true + } else if yyl4760 != len(yyv4760) { + yyv4760 = yyv4760[:yyl4760] + yyc4760 = true } - yyj4757 := 0 - for ; yyj4757 < yyrr4757; yyj4757++ { - yyh4757.ElemContainerState(yyj4757) + yyj4760 := 0 + for ; yyj4760 < yyrr4760; yyj4760++ { + yyh4760.ElemContainerState(yyj4760) if r.TryDecodeAsNil() { - yyv4757[yyj4757] = NodeAddress{} + yyv4760[yyj4760] = NodeAddress{} } else { - yyv4758 := &yyv4757[yyj4757] - yyv4758.CodecDecodeSelf(d) + yyv4761 := &yyv4760[yyj4760] + yyv4761.CodecDecodeSelf(d) } } - if yyrt4757 { - for ; yyj4757 < yyl4757; yyj4757++ { - yyv4757 = append(yyv4757, NodeAddress{}) - yyh4757.ElemContainerState(yyj4757) + if yyrt4760 { + for ; yyj4760 < yyl4760; yyj4760++ { + yyv4760 = append(yyv4760, NodeAddress{}) + yyh4760.ElemContainerState(yyj4760) if r.TryDecodeAsNil() { - yyv4757[yyj4757] = NodeAddress{} + yyv4760[yyj4760] = NodeAddress{} } else { - yyv4759 := &yyv4757[yyj4757] - yyv4759.CodecDecodeSelf(d) + yyv4762 := &yyv4760[yyj4760] + yyv4762.CodecDecodeSelf(d) } } } } else { - yyj4757 := 0 - for ; !r.CheckBreak(); yyj4757++ { + yyj4760 := 0 + for ; !r.CheckBreak(); yyj4760++ { - if yyj4757 >= len(yyv4757) { - yyv4757 = append(yyv4757, NodeAddress{}) // var yyz4757 NodeAddress - yyc4757 = true + if yyj4760 >= len(yyv4760) { + yyv4760 = append(yyv4760, NodeAddress{}) // var yyz4760 NodeAddress + yyc4760 = true } - yyh4757.ElemContainerState(yyj4757) - if yyj4757 < len(yyv4757) { + yyh4760.ElemContainerState(yyj4760) + if yyj4760 < len(yyv4760) { if r.TryDecodeAsNil() { - yyv4757[yyj4757] = NodeAddress{} + yyv4760[yyj4760] = NodeAddress{} } else { - yyv4760 := &yyv4757[yyj4757] - yyv4760.CodecDecodeSelf(d) + yyv4763 := &yyv4760[yyj4760] + yyv4763.CodecDecodeSelf(d) } } else { @@ -60795,17 +60851,17 @@ func (x codecSelfer1234) decSliceNodeAddress(v *[]NodeAddress, d *codec1978.Deco } } - if yyj4757 < len(yyv4757) { - yyv4757 = yyv4757[:yyj4757] - yyc4757 = true - } else if yyj4757 == 0 && yyv4757 == nil { - yyv4757 = []NodeAddress{} - yyc4757 = true + if yyj4760 < len(yyv4760) { + yyv4760 = yyv4760[:yyj4760] + yyc4760 = true + } else if yyj4760 == 0 && yyv4760 == nil { + yyv4760 = []NodeAddress{} + yyc4760 = true } } - yyh4757.End() - if yyc4757 { - *v = yyv4757 + yyh4760.End() + if yyc4760 { + *v = yyv4760 } } @@ -60814,10 +60870,10 @@ func (x codecSelfer1234) encSliceContainerImage(v []ContainerImage, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4761 := range v { + for _, yyv4764 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4762 := &yyv4761 - yy4762.CodecEncodeSelf(e) + yy4765 := &yyv4764 + yy4765.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60827,83 +60883,83 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4763 := *v - yyh4763, yyl4763 := z.DecSliceHelperStart() - var yyc4763 bool - if yyl4763 == 0 { - if yyv4763 == nil { - yyv4763 = []ContainerImage{} - yyc4763 = true - } else if len(yyv4763) != 0 { - yyv4763 = yyv4763[:0] - yyc4763 = true + yyv4766 := *v + yyh4766, yyl4766 := z.DecSliceHelperStart() + var yyc4766 bool + if yyl4766 == 0 { + if yyv4766 == nil { + yyv4766 = []ContainerImage{} + yyc4766 = true + } else if len(yyv4766) != 0 { + yyv4766 = yyv4766[:0] + yyc4766 = true } - } else if yyl4763 > 0 { - var yyrr4763, yyrl4763 int - var yyrt4763 bool - if yyl4763 > cap(yyv4763) { + } else if yyl4766 > 0 { + var yyrr4766, yyrl4766 int + var yyrt4766 bool + if yyl4766 > cap(yyv4766) { - yyrg4763 := len(yyv4763) > 0 - yyv24763 := yyv4763 - yyrl4763, yyrt4763 = z.DecInferLen(yyl4763, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4763 { - if yyrl4763 <= cap(yyv4763) { - yyv4763 = yyv4763[:yyrl4763] + yyrg4766 := len(yyv4766) > 0 + yyv24766 := yyv4766 + yyrl4766, yyrt4766 = z.DecInferLen(yyl4766, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4766 { + if yyrl4766 <= cap(yyv4766) { + yyv4766 = yyv4766[:yyrl4766] } else { - yyv4763 = make([]ContainerImage, yyrl4763) + yyv4766 = make([]ContainerImage, yyrl4766) } } else { - yyv4763 = make([]ContainerImage, yyrl4763) + yyv4766 = make([]ContainerImage, yyrl4766) } - yyc4763 = true - yyrr4763 = len(yyv4763) - if yyrg4763 { - copy(yyv4763, yyv24763) + yyc4766 = true + yyrr4766 = len(yyv4766) + if yyrg4766 { + copy(yyv4766, yyv24766) } - } else if yyl4763 != len(yyv4763) { - yyv4763 = yyv4763[:yyl4763] - yyc4763 = true + } else if yyl4766 != len(yyv4766) { + yyv4766 = yyv4766[:yyl4766] + yyc4766 = true } - yyj4763 := 0 - for ; yyj4763 < yyrr4763; yyj4763++ { - yyh4763.ElemContainerState(yyj4763) + yyj4766 := 0 + for ; yyj4766 < yyrr4766; yyj4766++ { + yyh4766.ElemContainerState(yyj4766) if r.TryDecodeAsNil() { - yyv4763[yyj4763] = ContainerImage{} + yyv4766[yyj4766] = ContainerImage{} } else { - yyv4764 := &yyv4763[yyj4763] - yyv4764.CodecDecodeSelf(d) + yyv4767 := &yyv4766[yyj4766] + yyv4767.CodecDecodeSelf(d) } } - if yyrt4763 { - for ; yyj4763 < yyl4763; yyj4763++ { - yyv4763 = append(yyv4763, ContainerImage{}) - yyh4763.ElemContainerState(yyj4763) + if yyrt4766 { + for ; yyj4766 < yyl4766; yyj4766++ { + yyv4766 = append(yyv4766, ContainerImage{}) + yyh4766.ElemContainerState(yyj4766) if r.TryDecodeAsNil() { - yyv4763[yyj4763] = ContainerImage{} + yyv4766[yyj4766] = ContainerImage{} } else { - yyv4765 := &yyv4763[yyj4763] - yyv4765.CodecDecodeSelf(d) + yyv4768 := &yyv4766[yyj4766] + yyv4768.CodecDecodeSelf(d) } } } } else { - yyj4763 := 0 - for ; !r.CheckBreak(); yyj4763++ { + yyj4766 := 0 + for ; !r.CheckBreak(); yyj4766++ { - if yyj4763 >= len(yyv4763) { - yyv4763 = append(yyv4763, ContainerImage{}) // var yyz4763 ContainerImage - yyc4763 = true + if yyj4766 >= len(yyv4766) { + yyv4766 = append(yyv4766, ContainerImage{}) // var yyz4766 ContainerImage + yyc4766 = true } - yyh4763.ElemContainerState(yyj4763) - if yyj4763 < len(yyv4763) { + yyh4766.ElemContainerState(yyj4766) + if yyj4766 < len(yyv4766) { if r.TryDecodeAsNil() { - yyv4763[yyj4763] = ContainerImage{} + yyv4766[yyj4766] = ContainerImage{} } else { - yyv4766 := &yyv4763[yyj4763] - yyv4766.CodecDecodeSelf(d) + yyv4769 := &yyv4766[yyj4766] + yyv4769.CodecDecodeSelf(d) } } else { @@ -60911,17 +60967,17 @@ func (x codecSelfer1234) decSliceContainerImage(v *[]ContainerImage, d *codec197 } } - if yyj4763 < len(yyv4763) { - yyv4763 = yyv4763[:yyj4763] - yyc4763 = true - } else if yyj4763 == 0 && yyv4763 == nil { - yyv4763 = []ContainerImage{} - yyc4763 = true + if yyj4766 < len(yyv4766) { + yyv4766 = yyv4766[:yyj4766] + yyc4766 = true + } else if yyj4766 == 0 && yyv4766 == nil { + yyv4766 = []ContainerImage{} + yyc4766 = true } } - yyh4763.End() - if yyc4763 { - *v = yyv4763 + yyh4766.End() + if yyc4766 { + *v = yyv4766 } } @@ -60930,9 +60986,9 @@ func (x codecSelfer1234) encSliceUniqueVolumeName(v []UniqueVolumeName, e *codec z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4767 := range v { + for _, yyv4770 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4767.CodecEncodeSelf(e) + yyv4770.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -60942,75 +60998,75 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4768 := *v - yyh4768, yyl4768 := z.DecSliceHelperStart() - var yyc4768 bool - if yyl4768 == 0 { - if yyv4768 == nil { - yyv4768 = []UniqueVolumeName{} - yyc4768 = true - } else if len(yyv4768) != 0 { - yyv4768 = yyv4768[:0] - yyc4768 = true + yyv4771 := *v + yyh4771, yyl4771 := z.DecSliceHelperStart() + var yyc4771 bool + if yyl4771 == 0 { + if yyv4771 == nil { + yyv4771 = []UniqueVolumeName{} + yyc4771 = true + } else if len(yyv4771) != 0 { + yyv4771 = yyv4771[:0] + yyc4771 = true } - } else if yyl4768 > 0 { - var yyrr4768, yyrl4768 int - var yyrt4768 bool - if yyl4768 > cap(yyv4768) { + } else if yyl4771 > 0 { + var yyrr4771, yyrl4771 int + var yyrt4771 bool + if yyl4771 > cap(yyv4771) { - yyrl4768, yyrt4768 = z.DecInferLen(yyl4768, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4768 { - if yyrl4768 <= cap(yyv4768) { - yyv4768 = yyv4768[:yyrl4768] + yyrl4771, yyrt4771 = z.DecInferLen(yyl4771, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4771 { + if yyrl4771 <= cap(yyv4771) { + yyv4771 = yyv4771[:yyrl4771] } else { - yyv4768 = make([]UniqueVolumeName, yyrl4768) + yyv4771 = make([]UniqueVolumeName, yyrl4771) } } else { - yyv4768 = make([]UniqueVolumeName, yyrl4768) + yyv4771 = make([]UniqueVolumeName, yyrl4771) } - yyc4768 = true - yyrr4768 = len(yyv4768) - } else if yyl4768 != len(yyv4768) { - yyv4768 = yyv4768[:yyl4768] - yyc4768 = true + yyc4771 = true + yyrr4771 = len(yyv4771) + } else if yyl4771 != len(yyv4771) { + yyv4771 = yyv4771[:yyl4771] + yyc4771 = true } - yyj4768 := 0 - for ; yyj4768 < yyrr4768; yyj4768++ { - yyh4768.ElemContainerState(yyj4768) + yyj4771 := 0 + for ; yyj4771 < yyrr4771; yyj4771++ { + yyh4771.ElemContainerState(yyj4771) if r.TryDecodeAsNil() { - yyv4768[yyj4768] = "" + yyv4771[yyj4771] = "" } else { - yyv4768[yyj4768] = UniqueVolumeName(r.DecodeString()) + yyv4771[yyj4771] = UniqueVolumeName(r.DecodeString()) } } - if yyrt4768 { - for ; yyj4768 < yyl4768; yyj4768++ { - yyv4768 = append(yyv4768, "") - yyh4768.ElemContainerState(yyj4768) + if yyrt4771 { + for ; yyj4771 < yyl4771; yyj4771++ { + yyv4771 = append(yyv4771, "") + yyh4771.ElemContainerState(yyj4771) if r.TryDecodeAsNil() { - yyv4768[yyj4768] = "" + yyv4771[yyj4771] = "" } else { - yyv4768[yyj4768] = UniqueVolumeName(r.DecodeString()) + yyv4771[yyj4771] = UniqueVolumeName(r.DecodeString()) } } } } else { - yyj4768 := 0 - for ; !r.CheckBreak(); yyj4768++ { + yyj4771 := 0 + for ; !r.CheckBreak(); yyj4771++ { - if yyj4768 >= len(yyv4768) { - yyv4768 = append(yyv4768, "") // var yyz4768 UniqueVolumeName - yyc4768 = true + if yyj4771 >= len(yyv4771) { + yyv4771 = append(yyv4771, "") // var yyz4771 UniqueVolumeName + yyc4771 = true } - yyh4768.ElemContainerState(yyj4768) - if yyj4768 < len(yyv4768) { + yyh4771.ElemContainerState(yyj4771) + if yyj4771 < len(yyv4771) { if r.TryDecodeAsNil() { - yyv4768[yyj4768] = "" + yyv4771[yyj4771] = "" } else { - yyv4768[yyj4768] = UniqueVolumeName(r.DecodeString()) + yyv4771[yyj4771] = UniqueVolumeName(r.DecodeString()) } } else { @@ -61018,17 +61074,17 @@ func (x codecSelfer1234) decSliceUniqueVolumeName(v *[]UniqueVolumeName, d *code } } - if yyj4768 < len(yyv4768) { - yyv4768 = yyv4768[:yyj4768] - yyc4768 = true - } else if yyj4768 == 0 && yyv4768 == nil { - yyv4768 = []UniqueVolumeName{} - yyc4768 = true + if yyj4771 < len(yyv4771) { + yyv4771 = yyv4771[:yyj4771] + yyc4771 = true + } else if yyj4771 == 0 && yyv4771 == nil { + yyv4771 = []UniqueVolumeName{} + yyc4771 = true } } - yyh4768.End() - if yyc4768 { - *v = yyv4768 + yyh4771.End() + if yyc4771 { + *v = yyv4771 } } @@ -61037,10 +61093,10 @@ func (x codecSelfer1234) encSliceAttachedVolume(v []AttachedVolume, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4772 := range v { + for _, yyv4775 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4773 := &yyv4772 - yy4773.CodecEncodeSelf(e) + yy4776 := &yyv4775 + yy4776.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61050,83 +61106,83 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4774 := *v - yyh4774, yyl4774 := z.DecSliceHelperStart() - var yyc4774 bool - if yyl4774 == 0 { - if yyv4774 == nil { - yyv4774 = []AttachedVolume{} - yyc4774 = true - } else if len(yyv4774) != 0 { - yyv4774 = yyv4774[:0] - yyc4774 = true + yyv4777 := *v + yyh4777, yyl4777 := z.DecSliceHelperStart() + var yyc4777 bool + if yyl4777 == 0 { + if yyv4777 == nil { + yyv4777 = []AttachedVolume{} + yyc4777 = true + } else if len(yyv4777) != 0 { + yyv4777 = yyv4777[:0] + yyc4777 = true } - } else if yyl4774 > 0 { - var yyrr4774, yyrl4774 int - var yyrt4774 bool - if yyl4774 > cap(yyv4774) { + } else if yyl4777 > 0 { + var yyrr4777, yyrl4777 int + var yyrt4777 bool + if yyl4777 > cap(yyv4777) { - yyrg4774 := len(yyv4774) > 0 - yyv24774 := yyv4774 - yyrl4774, yyrt4774 = z.DecInferLen(yyl4774, z.DecBasicHandle().MaxInitLen, 32) - if yyrt4774 { - if yyrl4774 <= cap(yyv4774) { - yyv4774 = yyv4774[:yyrl4774] + yyrg4777 := len(yyv4777) > 0 + yyv24777 := yyv4777 + yyrl4777, yyrt4777 = z.DecInferLen(yyl4777, z.DecBasicHandle().MaxInitLen, 32) + if yyrt4777 { + if yyrl4777 <= cap(yyv4777) { + yyv4777 = yyv4777[:yyrl4777] } else { - yyv4774 = make([]AttachedVolume, yyrl4774) + yyv4777 = make([]AttachedVolume, yyrl4777) } } else { - yyv4774 = make([]AttachedVolume, yyrl4774) + yyv4777 = make([]AttachedVolume, yyrl4777) } - yyc4774 = true - yyrr4774 = len(yyv4774) - if yyrg4774 { - copy(yyv4774, yyv24774) + yyc4777 = true + yyrr4777 = len(yyv4777) + if yyrg4777 { + copy(yyv4777, yyv24777) } - } else if yyl4774 != len(yyv4774) { - yyv4774 = yyv4774[:yyl4774] - yyc4774 = true + } else if yyl4777 != len(yyv4777) { + yyv4777 = yyv4777[:yyl4777] + yyc4777 = true } - yyj4774 := 0 - for ; yyj4774 < yyrr4774; yyj4774++ { - yyh4774.ElemContainerState(yyj4774) + yyj4777 := 0 + for ; yyj4777 < yyrr4777; yyj4777++ { + yyh4777.ElemContainerState(yyj4777) if r.TryDecodeAsNil() { - yyv4774[yyj4774] = AttachedVolume{} + yyv4777[yyj4777] = AttachedVolume{} } else { - yyv4775 := &yyv4774[yyj4774] - yyv4775.CodecDecodeSelf(d) + yyv4778 := &yyv4777[yyj4777] + yyv4778.CodecDecodeSelf(d) } } - if yyrt4774 { - for ; yyj4774 < yyl4774; yyj4774++ { - yyv4774 = append(yyv4774, AttachedVolume{}) - yyh4774.ElemContainerState(yyj4774) + if yyrt4777 { + for ; yyj4777 < yyl4777; yyj4777++ { + yyv4777 = append(yyv4777, AttachedVolume{}) + yyh4777.ElemContainerState(yyj4777) if r.TryDecodeAsNil() { - yyv4774[yyj4774] = AttachedVolume{} + yyv4777[yyj4777] = AttachedVolume{} } else { - yyv4776 := &yyv4774[yyj4774] - yyv4776.CodecDecodeSelf(d) + yyv4779 := &yyv4777[yyj4777] + yyv4779.CodecDecodeSelf(d) } } } } else { - yyj4774 := 0 - for ; !r.CheckBreak(); yyj4774++ { + yyj4777 := 0 + for ; !r.CheckBreak(); yyj4777++ { - if yyj4774 >= len(yyv4774) { - yyv4774 = append(yyv4774, AttachedVolume{}) // var yyz4774 AttachedVolume - yyc4774 = true + if yyj4777 >= len(yyv4777) { + yyv4777 = append(yyv4777, AttachedVolume{}) // var yyz4777 AttachedVolume + yyc4777 = true } - yyh4774.ElemContainerState(yyj4774) - if yyj4774 < len(yyv4774) { + yyh4777.ElemContainerState(yyj4777) + if yyj4777 < len(yyv4777) { if r.TryDecodeAsNil() { - yyv4774[yyj4774] = AttachedVolume{} + yyv4777[yyj4777] = AttachedVolume{} } else { - yyv4777 := &yyv4774[yyj4774] - yyv4777.CodecDecodeSelf(d) + yyv4780 := &yyv4777[yyj4777] + yyv4780.CodecDecodeSelf(d) } } else { @@ -61134,17 +61190,17 @@ func (x codecSelfer1234) decSliceAttachedVolume(v *[]AttachedVolume, d *codec197 } } - if yyj4774 < len(yyv4774) { - yyv4774 = yyv4774[:yyj4774] - yyc4774 = true - } else if yyj4774 == 0 && yyv4774 == nil { - yyv4774 = []AttachedVolume{} - yyc4774 = true + if yyj4777 < len(yyv4777) { + yyv4777 = yyv4777[:yyj4777] + yyc4777 = true + } else if yyj4777 == 0 && yyv4777 == nil { + yyv4777 = []AttachedVolume{} + yyc4777 = true } } - yyh4774.End() - if yyc4774 { - *v = yyv4774 + yyh4777.End() + if yyc4777 { + *v = yyv4777 } } @@ -61153,10 +61209,10 @@ func (x codecSelfer1234) encSlicePreferAvoidPodsEntry(v []PreferAvoidPodsEntry, z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4778 := range v { + for _, yyv4781 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4779 := &yyv4778 - yy4779.CodecEncodeSelf(e) + yy4782 := &yyv4781 + yy4782.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61166,83 +61222,83 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4780 := *v - yyh4780, yyl4780 := z.DecSliceHelperStart() - var yyc4780 bool - if yyl4780 == 0 { - if yyv4780 == nil { - yyv4780 = []PreferAvoidPodsEntry{} - yyc4780 = true - } else if len(yyv4780) != 0 { - yyv4780 = yyv4780[:0] - yyc4780 = true + yyv4783 := *v + yyh4783, yyl4783 := z.DecSliceHelperStart() + var yyc4783 bool + if yyl4783 == 0 { + if yyv4783 == nil { + yyv4783 = []PreferAvoidPodsEntry{} + yyc4783 = true + } else if len(yyv4783) != 0 { + yyv4783 = yyv4783[:0] + yyc4783 = true } - } else if yyl4780 > 0 { - var yyrr4780, yyrl4780 int - var yyrt4780 bool - if yyl4780 > cap(yyv4780) { + } else if yyl4783 > 0 { + var yyrr4783, yyrl4783 int + var yyrt4783 bool + if yyl4783 > cap(yyv4783) { - yyrg4780 := len(yyv4780) > 0 - yyv24780 := yyv4780 - yyrl4780, yyrt4780 = z.DecInferLen(yyl4780, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4780 { - if yyrl4780 <= cap(yyv4780) { - yyv4780 = yyv4780[:yyrl4780] + yyrg4783 := len(yyv4783) > 0 + yyv24783 := yyv4783 + yyrl4783, yyrt4783 = z.DecInferLen(yyl4783, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4783 { + if yyrl4783 <= cap(yyv4783) { + yyv4783 = yyv4783[:yyrl4783] } else { - yyv4780 = make([]PreferAvoidPodsEntry, yyrl4780) + yyv4783 = make([]PreferAvoidPodsEntry, yyrl4783) } } else { - yyv4780 = make([]PreferAvoidPodsEntry, yyrl4780) + yyv4783 = make([]PreferAvoidPodsEntry, yyrl4783) } - yyc4780 = true - yyrr4780 = len(yyv4780) - if yyrg4780 { - copy(yyv4780, yyv24780) + yyc4783 = true + yyrr4783 = len(yyv4783) + if yyrg4783 { + copy(yyv4783, yyv24783) } - } else if yyl4780 != len(yyv4780) { - yyv4780 = yyv4780[:yyl4780] - yyc4780 = true + } else if yyl4783 != len(yyv4783) { + yyv4783 = yyv4783[:yyl4783] + yyc4783 = true } - yyj4780 := 0 - for ; yyj4780 < yyrr4780; yyj4780++ { - yyh4780.ElemContainerState(yyj4780) + yyj4783 := 0 + for ; yyj4783 < yyrr4783; yyj4783++ { + yyh4783.ElemContainerState(yyj4783) if r.TryDecodeAsNil() { - yyv4780[yyj4780] = PreferAvoidPodsEntry{} + yyv4783[yyj4783] = PreferAvoidPodsEntry{} } else { - yyv4781 := &yyv4780[yyj4780] - yyv4781.CodecDecodeSelf(d) + yyv4784 := &yyv4783[yyj4783] + yyv4784.CodecDecodeSelf(d) } } - if yyrt4780 { - for ; yyj4780 < yyl4780; yyj4780++ { - yyv4780 = append(yyv4780, PreferAvoidPodsEntry{}) - yyh4780.ElemContainerState(yyj4780) + if yyrt4783 { + for ; yyj4783 < yyl4783; yyj4783++ { + yyv4783 = append(yyv4783, PreferAvoidPodsEntry{}) + yyh4783.ElemContainerState(yyj4783) if r.TryDecodeAsNil() { - yyv4780[yyj4780] = PreferAvoidPodsEntry{} + yyv4783[yyj4783] = PreferAvoidPodsEntry{} } else { - yyv4782 := &yyv4780[yyj4780] - yyv4782.CodecDecodeSelf(d) + yyv4785 := &yyv4783[yyj4783] + yyv4785.CodecDecodeSelf(d) } } } } else { - yyj4780 := 0 - for ; !r.CheckBreak(); yyj4780++ { + yyj4783 := 0 + for ; !r.CheckBreak(); yyj4783++ { - if yyj4780 >= len(yyv4780) { - yyv4780 = append(yyv4780, PreferAvoidPodsEntry{}) // var yyz4780 PreferAvoidPodsEntry - yyc4780 = true + if yyj4783 >= len(yyv4783) { + yyv4783 = append(yyv4783, PreferAvoidPodsEntry{}) // var yyz4783 PreferAvoidPodsEntry + yyc4783 = true } - yyh4780.ElemContainerState(yyj4780) - if yyj4780 < len(yyv4780) { + yyh4783.ElemContainerState(yyj4783) + if yyj4783 < len(yyv4783) { if r.TryDecodeAsNil() { - yyv4780[yyj4780] = PreferAvoidPodsEntry{} + yyv4783[yyj4783] = PreferAvoidPodsEntry{} } else { - yyv4783 := &yyv4780[yyj4780] - yyv4783.CodecDecodeSelf(d) + yyv4786 := &yyv4783[yyj4783] + yyv4786.CodecDecodeSelf(d) } } else { @@ -61250,17 +61306,17 @@ func (x codecSelfer1234) decSlicePreferAvoidPodsEntry(v *[]PreferAvoidPodsEntry, } } - if yyj4780 < len(yyv4780) { - yyv4780 = yyv4780[:yyj4780] - yyc4780 = true - } else if yyj4780 == 0 && yyv4780 == nil { - yyv4780 = []PreferAvoidPodsEntry{} - yyc4780 = true + if yyj4783 < len(yyv4783) { + yyv4783 = yyv4783[:yyj4783] + yyc4783 = true + } else if yyj4783 == 0 && yyv4783 == nil { + yyv4783 = []PreferAvoidPodsEntry{} + yyc4783 = true } } - yyh4780.End() - if yyc4780 { - *v = yyv4780 + yyh4783.End() + if yyc4783 { + *v = yyv4783 } } @@ -61269,19 +61325,19 @@ func (x codecSelfer1234) encResourceList(v ResourceList, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4784, yyv4784 := range v { + for yyk4787, yyv4787 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yyk4784.CodecEncodeSelf(e) + yyk4787.CodecEncodeSelf(e) z.EncSendContainerState(codecSelfer_containerMapValue1234) - yy4785 := &yyv4784 - yym4786 := z.EncBinary() - _ = yym4786 + yy4788 := &yyv4787 + yym4789 := z.EncBinary() + _ = yym4789 if false { - } else if z.HasExtensions() && z.EncExt(yy4785) { - } else if !yym4786 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4785) + } else if z.HasExtensions() && z.EncExt(yy4788) { + } else if !yym4789 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4788) } else { - z.EncFallback(yy4785) + z.EncFallback(yy4788) } } z.EncSendContainerState(codecSelfer_containerMapEnd1234) @@ -61292,73 +61348,39 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4787 := *v - yyl4787 := r.ReadMapStart() - yybh4787 := z.DecBasicHandle() - if yyv4787 == nil { - yyrl4787, _ := z.DecInferLen(yyl4787, yybh4787.MaxInitLen, 72) - yyv4787 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4787) - *v = yyv4787 + yyv4790 := *v + yyl4790 := r.ReadMapStart() + yybh4790 := z.DecBasicHandle() + if yyv4790 == nil { + yyrl4790, _ := z.DecInferLen(yyl4790, yybh4790.MaxInitLen, 72) + yyv4790 = make(map[ResourceName]pkg3_resource.Quantity, yyrl4790) + *v = yyv4790 } - var yymk4787 ResourceName - var yymv4787 pkg3_resource.Quantity - var yymg4787 bool - if yybh4787.MapValueReset { - yymg4787 = true + var yymk4790 ResourceName + var yymv4790 pkg3_resource.Quantity + var yymg4790 bool + if yybh4790.MapValueReset { + yymg4790 = true } - if yyl4787 > 0 { - for yyj4787 := 0; yyj4787 < yyl4787; yyj4787++ { + if yyl4790 > 0 { + for yyj4790 := 0; yyj4790 < yyl4790; yyj4790++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4787 = "" + yymk4790 = "" } else { - yymk4787 = ResourceName(r.DecodeString()) + yymk4790 = ResourceName(r.DecodeString()) } - if yymg4787 { - yymv4787 = yyv4787[yymk4787] + if yymg4790 { + yymv4790 = yyv4790[yymk4790] } else { - yymv4787 = pkg3_resource.Quantity{} + yymv4790 = pkg3_resource.Quantity{} } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4787 = pkg3_resource.Quantity{} + yymv4790 = pkg3_resource.Quantity{} } else { - yyv4789 := &yymv4787 - yym4790 := z.DecBinary() - _ = yym4790 - if false { - } else if z.HasExtensions() && z.DecExt(yyv4789) { - } else if !yym4790 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4789) - } else { - z.DecFallback(yyv4789, false) - } - } - - if yyv4787 != nil { - yyv4787[yymk4787] = yymv4787 - } - } - } else if yyl4787 < 0 { - for yyj4787 := 0; !r.CheckBreak(); yyj4787++ { - z.DecSendContainerState(codecSelfer_containerMapKey1234) - if r.TryDecodeAsNil() { - yymk4787 = "" - } else { - yymk4787 = ResourceName(r.DecodeString()) - } - - if yymg4787 { - yymv4787 = yyv4787[yymk4787] - } else { - yymv4787 = pkg3_resource.Quantity{} - } - z.DecSendContainerState(codecSelfer_containerMapValue1234) - if r.TryDecodeAsNil() { - yymv4787 = pkg3_resource.Quantity{} - } else { - yyv4792 := &yymv4787 + yyv4792 := &yymv4790 yym4793 := z.DecBinary() _ = yym4793 if false { @@ -61370,8 +61392,42 @@ func (x codecSelfer1234) decResourceList(v *ResourceList, d *codec1978.Decoder) } } - if yyv4787 != nil { - yyv4787[yymk4787] = yymv4787 + if yyv4790 != nil { + yyv4790[yymk4790] = yymv4790 + } + } + } else if yyl4790 < 0 { + for yyj4790 := 0; !r.CheckBreak(); yyj4790++ { + z.DecSendContainerState(codecSelfer_containerMapKey1234) + if r.TryDecodeAsNil() { + yymk4790 = "" + } else { + yymk4790 = ResourceName(r.DecodeString()) + } + + if yymg4790 { + yymv4790 = yyv4790[yymk4790] + } else { + yymv4790 = pkg3_resource.Quantity{} + } + z.DecSendContainerState(codecSelfer_containerMapValue1234) + if r.TryDecodeAsNil() { + yymv4790 = pkg3_resource.Quantity{} + } else { + yyv4795 := &yymv4790 + yym4796 := z.DecBinary() + _ = yym4796 + if false { + } else if z.HasExtensions() && z.DecExt(yyv4795) { + } else if !yym4796 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4795) + } else { + z.DecFallback(yyv4795, false) + } + } + + if yyv4790 != nil { + yyv4790[yymk4790] = yymv4790 } } } // else len==0: TODO: Should we clear map entries? @@ -61383,10 +61439,10 @@ func (x codecSelfer1234) encSliceNode(v []Node, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4794 := range v { + for _, yyv4797 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4795 := &yyv4794 - yy4795.CodecEncodeSelf(e) + yy4798 := &yyv4797 + yy4798.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61396,83 +61452,83 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4796 := *v - yyh4796, yyl4796 := z.DecSliceHelperStart() - var yyc4796 bool - if yyl4796 == 0 { - if yyv4796 == nil { - yyv4796 = []Node{} - yyc4796 = true - } else if len(yyv4796) != 0 { - yyv4796 = yyv4796[:0] - yyc4796 = true + yyv4799 := *v + yyh4799, yyl4799 := z.DecSliceHelperStart() + var yyc4799 bool + if yyl4799 == 0 { + if yyv4799 == nil { + yyv4799 = []Node{} + yyc4799 = true + } else if len(yyv4799) != 0 { + yyv4799 = yyv4799[:0] + yyc4799 = true } - } else if yyl4796 > 0 { - var yyrr4796, yyrl4796 int - var yyrt4796 bool - if yyl4796 > cap(yyv4796) { + } else if yyl4799 > 0 { + var yyrr4799, yyrl4799 int + var yyrt4799 bool + if yyl4799 > cap(yyv4799) { - yyrg4796 := len(yyv4796) > 0 - yyv24796 := yyv4796 - yyrl4796, yyrt4796 = z.DecInferLen(yyl4796, z.DecBasicHandle().MaxInitLen, 632) - if yyrt4796 { - if yyrl4796 <= cap(yyv4796) { - yyv4796 = yyv4796[:yyrl4796] + yyrg4799 := len(yyv4799) > 0 + yyv24799 := yyv4799 + yyrl4799, yyrt4799 = z.DecInferLen(yyl4799, z.DecBasicHandle().MaxInitLen, 632) + if yyrt4799 { + if yyrl4799 <= cap(yyv4799) { + yyv4799 = yyv4799[:yyrl4799] } else { - yyv4796 = make([]Node, yyrl4796) + yyv4799 = make([]Node, yyrl4799) } } else { - yyv4796 = make([]Node, yyrl4796) + yyv4799 = make([]Node, yyrl4799) } - yyc4796 = true - yyrr4796 = len(yyv4796) - if yyrg4796 { - copy(yyv4796, yyv24796) + yyc4799 = true + yyrr4799 = len(yyv4799) + if yyrg4799 { + copy(yyv4799, yyv24799) } - } else if yyl4796 != len(yyv4796) { - yyv4796 = yyv4796[:yyl4796] - yyc4796 = true + } else if yyl4799 != len(yyv4799) { + yyv4799 = yyv4799[:yyl4799] + yyc4799 = true } - yyj4796 := 0 - for ; yyj4796 < yyrr4796; yyj4796++ { - yyh4796.ElemContainerState(yyj4796) + yyj4799 := 0 + for ; yyj4799 < yyrr4799; yyj4799++ { + yyh4799.ElemContainerState(yyj4799) if r.TryDecodeAsNil() { - yyv4796[yyj4796] = Node{} + yyv4799[yyj4799] = Node{} } else { - yyv4797 := &yyv4796[yyj4796] - yyv4797.CodecDecodeSelf(d) + yyv4800 := &yyv4799[yyj4799] + yyv4800.CodecDecodeSelf(d) } } - if yyrt4796 { - for ; yyj4796 < yyl4796; yyj4796++ { - yyv4796 = append(yyv4796, Node{}) - yyh4796.ElemContainerState(yyj4796) + if yyrt4799 { + for ; yyj4799 < yyl4799; yyj4799++ { + yyv4799 = append(yyv4799, Node{}) + yyh4799.ElemContainerState(yyj4799) if r.TryDecodeAsNil() { - yyv4796[yyj4796] = Node{} + yyv4799[yyj4799] = Node{} } else { - yyv4798 := &yyv4796[yyj4796] - yyv4798.CodecDecodeSelf(d) + yyv4801 := &yyv4799[yyj4799] + yyv4801.CodecDecodeSelf(d) } } } } else { - yyj4796 := 0 - for ; !r.CheckBreak(); yyj4796++ { + yyj4799 := 0 + for ; !r.CheckBreak(); yyj4799++ { - if yyj4796 >= len(yyv4796) { - yyv4796 = append(yyv4796, Node{}) // var yyz4796 Node - yyc4796 = true + if yyj4799 >= len(yyv4799) { + yyv4799 = append(yyv4799, Node{}) // var yyz4799 Node + yyc4799 = true } - yyh4796.ElemContainerState(yyj4796) - if yyj4796 < len(yyv4796) { + yyh4799.ElemContainerState(yyj4799) + if yyj4799 < len(yyv4799) { if r.TryDecodeAsNil() { - yyv4796[yyj4796] = Node{} + yyv4799[yyj4799] = Node{} } else { - yyv4799 := &yyv4796[yyj4796] - yyv4799.CodecDecodeSelf(d) + yyv4802 := &yyv4799[yyj4799] + yyv4802.CodecDecodeSelf(d) } } else { @@ -61480,17 +61536,17 @@ func (x codecSelfer1234) decSliceNode(v *[]Node, d *codec1978.Decoder) { } } - if yyj4796 < len(yyv4796) { - yyv4796 = yyv4796[:yyj4796] - yyc4796 = true - } else if yyj4796 == 0 && yyv4796 == nil { - yyv4796 = []Node{} - yyc4796 = true + if yyj4799 < len(yyv4799) { + yyv4799 = yyv4799[:yyj4799] + yyc4799 = true + } else if yyj4799 == 0 && yyv4799 == nil { + yyv4799 = []Node{} + yyc4799 = true } } - yyh4796.End() - if yyc4796 { - *v = yyv4796 + yyh4799.End() + if yyc4799 { + *v = yyv4799 } } @@ -61499,9 +61555,9 @@ func (x codecSelfer1234) encSliceFinalizerName(v []FinalizerName, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4800 := range v { + for _, yyv4803 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4800.CodecEncodeSelf(e) + yyv4803.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61511,75 +61567,75 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4801 := *v - yyh4801, yyl4801 := z.DecSliceHelperStart() - var yyc4801 bool - if yyl4801 == 0 { - if yyv4801 == nil { - yyv4801 = []FinalizerName{} - yyc4801 = true - } else if len(yyv4801) != 0 { - yyv4801 = yyv4801[:0] - yyc4801 = true + yyv4804 := *v + yyh4804, yyl4804 := z.DecSliceHelperStart() + var yyc4804 bool + if yyl4804 == 0 { + if yyv4804 == nil { + yyv4804 = []FinalizerName{} + yyc4804 = true + } else if len(yyv4804) != 0 { + yyv4804 = yyv4804[:0] + yyc4804 = true } - } else if yyl4801 > 0 { - var yyrr4801, yyrl4801 int - var yyrt4801 bool - if yyl4801 > cap(yyv4801) { + } else if yyl4804 > 0 { + var yyrr4804, yyrl4804 int + var yyrt4804 bool + if yyl4804 > cap(yyv4804) { - yyrl4801, yyrt4801 = z.DecInferLen(yyl4801, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4801 { - if yyrl4801 <= cap(yyv4801) { - yyv4801 = yyv4801[:yyrl4801] + yyrl4804, yyrt4804 = z.DecInferLen(yyl4804, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4804 { + if yyrl4804 <= cap(yyv4804) { + yyv4804 = yyv4804[:yyrl4804] } else { - yyv4801 = make([]FinalizerName, yyrl4801) + yyv4804 = make([]FinalizerName, yyrl4804) } } else { - yyv4801 = make([]FinalizerName, yyrl4801) + yyv4804 = make([]FinalizerName, yyrl4804) } - yyc4801 = true - yyrr4801 = len(yyv4801) - } else if yyl4801 != len(yyv4801) { - yyv4801 = yyv4801[:yyl4801] - yyc4801 = true + yyc4804 = true + yyrr4804 = len(yyv4804) + } else if yyl4804 != len(yyv4804) { + yyv4804 = yyv4804[:yyl4804] + yyc4804 = true } - yyj4801 := 0 - for ; yyj4801 < yyrr4801; yyj4801++ { - yyh4801.ElemContainerState(yyj4801) + yyj4804 := 0 + for ; yyj4804 < yyrr4804; yyj4804++ { + yyh4804.ElemContainerState(yyj4804) if r.TryDecodeAsNil() { - yyv4801[yyj4801] = "" + yyv4804[yyj4804] = "" } else { - yyv4801[yyj4801] = FinalizerName(r.DecodeString()) + yyv4804[yyj4804] = FinalizerName(r.DecodeString()) } } - if yyrt4801 { - for ; yyj4801 < yyl4801; yyj4801++ { - yyv4801 = append(yyv4801, "") - yyh4801.ElemContainerState(yyj4801) + if yyrt4804 { + for ; yyj4804 < yyl4804; yyj4804++ { + yyv4804 = append(yyv4804, "") + yyh4804.ElemContainerState(yyj4804) if r.TryDecodeAsNil() { - yyv4801[yyj4801] = "" + yyv4804[yyj4804] = "" } else { - yyv4801[yyj4801] = FinalizerName(r.DecodeString()) + yyv4804[yyj4804] = FinalizerName(r.DecodeString()) } } } } else { - yyj4801 := 0 - for ; !r.CheckBreak(); yyj4801++ { + yyj4804 := 0 + for ; !r.CheckBreak(); yyj4804++ { - if yyj4801 >= len(yyv4801) { - yyv4801 = append(yyv4801, "") // var yyz4801 FinalizerName - yyc4801 = true + if yyj4804 >= len(yyv4804) { + yyv4804 = append(yyv4804, "") // var yyz4804 FinalizerName + yyc4804 = true } - yyh4801.ElemContainerState(yyj4801) - if yyj4801 < len(yyv4801) { + yyh4804.ElemContainerState(yyj4804) + if yyj4804 < len(yyv4804) { if r.TryDecodeAsNil() { - yyv4801[yyj4801] = "" + yyv4804[yyj4804] = "" } else { - yyv4801[yyj4801] = FinalizerName(r.DecodeString()) + yyv4804[yyj4804] = FinalizerName(r.DecodeString()) } } else { @@ -61587,17 +61643,17 @@ func (x codecSelfer1234) decSliceFinalizerName(v *[]FinalizerName, d *codec1978. } } - if yyj4801 < len(yyv4801) { - yyv4801 = yyv4801[:yyj4801] - yyc4801 = true - } else if yyj4801 == 0 && yyv4801 == nil { - yyv4801 = []FinalizerName{} - yyc4801 = true + if yyj4804 < len(yyv4804) { + yyv4804 = yyv4804[:yyj4804] + yyc4804 = true + } else if yyj4804 == 0 && yyv4804 == nil { + yyv4804 = []FinalizerName{} + yyc4804 = true } } - yyh4801.End() - if yyc4801 { - *v = yyv4801 + yyh4804.End() + if yyc4804 { + *v = yyv4804 } } @@ -61606,10 +61662,10 @@ func (x codecSelfer1234) encSliceNamespace(v []Namespace, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4805 := range v { + for _, yyv4808 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4806 := &yyv4805 - yy4806.CodecEncodeSelf(e) + yy4809 := &yyv4808 + yy4809.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61619,83 +61675,83 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4807 := *v - yyh4807, yyl4807 := z.DecSliceHelperStart() - var yyc4807 bool - if yyl4807 == 0 { - if yyv4807 == nil { - yyv4807 = []Namespace{} - yyc4807 = true - } else if len(yyv4807) != 0 { - yyv4807 = yyv4807[:0] - yyc4807 = true + yyv4810 := *v + yyh4810, yyl4810 := z.DecSliceHelperStart() + var yyc4810 bool + if yyl4810 == 0 { + if yyv4810 == nil { + yyv4810 = []Namespace{} + yyc4810 = true + } else if len(yyv4810) != 0 { + yyv4810 = yyv4810[:0] + yyc4810 = true } - } else if yyl4807 > 0 { - var yyrr4807, yyrl4807 int - var yyrt4807 bool - if yyl4807 > cap(yyv4807) { + } else if yyl4810 > 0 { + var yyrr4810, yyrl4810 int + var yyrt4810 bool + if yyl4810 > cap(yyv4810) { - yyrg4807 := len(yyv4807) > 0 - yyv24807 := yyv4807 - yyrl4807, yyrt4807 = z.DecInferLen(yyl4807, z.DecBasicHandle().MaxInitLen, 296) - if yyrt4807 { - if yyrl4807 <= cap(yyv4807) { - yyv4807 = yyv4807[:yyrl4807] + yyrg4810 := len(yyv4810) > 0 + yyv24810 := yyv4810 + yyrl4810, yyrt4810 = z.DecInferLen(yyl4810, z.DecBasicHandle().MaxInitLen, 296) + if yyrt4810 { + if yyrl4810 <= cap(yyv4810) { + yyv4810 = yyv4810[:yyrl4810] } else { - yyv4807 = make([]Namespace, yyrl4807) + yyv4810 = make([]Namespace, yyrl4810) } } else { - yyv4807 = make([]Namespace, yyrl4807) + yyv4810 = make([]Namespace, yyrl4810) } - yyc4807 = true - yyrr4807 = len(yyv4807) - if yyrg4807 { - copy(yyv4807, yyv24807) + yyc4810 = true + yyrr4810 = len(yyv4810) + if yyrg4810 { + copy(yyv4810, yyv24810) } - } else if yyl4807 != len(yyv4807) { - yyv4807 = yyv4807[:yyl4807] - yyc4807 = true + } else if yyl4810 != len(yyv4810) { + yyv4810 = yyv4810[:yyl4810] + yyc4810 = true } - yyj4807 := 0 - for ; yyj4807 < yyrr4807; yyj4807++ { - yyh4807.ElemContainerState(yyj4807) + yyj4810 := 0 + for ; yyj4810 < yyrr4810; yyj4810++ { + yyh4810.ElemContainerState(yyj4810) if r.TryDecodeAsNil() { - yyv4807[yyj4807] = Namespace{} + yyv4810[yyj4810] = Namespace{} } else { - yyv4808 := &yyv4807[yyj4807] - yyv4808.CodecDecodeSelf(d) + yyv4811 := &yyv4810[yyj4810] + yyv4811.CodecDecodeSelf(d) } } - if yyrt4807 { - for ; yyj4807 < yyl4807; yyj4807++ { - yyv4807 = append(yyv4807, Namespace{}) - yyh4807.ElemContainerState(yyj4807) + if yyrt4810 { + for ; yyj4810 < yyl4810; yyj4810++ { + yyv4810 = append(yyv4810, Namespace{}) + yyh4810.ElemContainerState(yyj4810) if r.TryDecodeAsNil() { - yyv4807[yyj4807] = Namespace{} + yyv4810[yyj4810] = Namespace{} } else { - yyv4809 := &yyv4807[yyj4807] - yyv4809.CodecDecodeSelf(d) + yyv4812 := &yyv4810[yyj4810] + yyv4812.CodecDecodeSelf(d) } } } } else { - yyj4807 := 0 - for ; !r.CheckBreak(); yyj4807++ { + yyj4810 := 0 + for ; !r.CheckBreak(); yyj4810++ { - if yyj4807 >= len(yyv4807) { - yyv4807 = append(yyv4807, Namespace{}) // var yyz4807 Namespace - yyc4807 = true + if yyj4810 >= len(yyv4810) { + yyv4810 = append(yyv4810, Namespace{}) // var yyz4810 Namespace + yyc4810 = true } - yyh4807.ElemContainerState(yyj4807) - if yyj4807 < len(yyv4807) { + yyh4810.ElemContainerState(yyj4810) + if yyj4810 < len(yyv4810) { if r.TryDecodeAsNil() { - yyv4807[yyj4807] = Namespace{} + yyv4810[yyj4810] = Namespace{} } else { - yyv4810 := &yyv4807[yyj4807] - yyv4810.CodecDecodeSelf(d) + yyv4813 := &yyv4810[yyj4810] + yyv4813.CodecDecodeSelf(d) } } else { @@ -61703,17 +61759,17 @@ func (x codecSelfer1234) decSliceNamespace(v *[]Namespace, d *codec1978.Decoder) } } - if yyj4807 < len(yyv4807) { - yyv4807 = yyv4807[:yyj4807] - yyc4807 = true - } else if yyj4807 == 0 && yyv4807 == nil { - yyv4807 = []Namespace{} - yyc4807 = true + if yyj4810 < len(yyv4810) { + yyv4810 = yyv4810[:yyj4810] + yyc4810 = true + } else if yyj4810 == 0 && yyv4810 == nil { + yyv4810 = []Namespace{} + yyc4810 = true } } - yyh4807.End() - if yyc4807 { - *v = yyv4807 + yyh4810.End() + if yyc4810 { + *v = yyv4810 } } @@ -61722,10 +61778,10 @@ func (x codecSelfer1234) encSliceEvent(v []Event, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4811 := range v { + for _, yyv4814 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4812 := &yyv4811 - yy4812.CodecEncodeSelf(e) + yy4815 := &yyv4814 + yy4815.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61735,83 +61791,83 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4813 := *v - yyh4813, yyl4813 := z.DecSliceHelperStart() - var yyc4813 bool - if yyl4813 == 0 { - if yyv4813 == nil { - yyv4813 = []Event{} - yyc4813 = true - } else if len(yyv4813) != 0 { - yyv4813 = yyv4813[:0] - yyc4813 = true + yyv4816 := *v + yyh4816, yyl4816 := z.DecSliceHelperStart() + var yyc4816 bool + if yyl4816 == 0 { + if yyv4816 == nil { + yyv4816 = []Event{} + yyc4816 = true + } else if len(yyv4816) != 0 { + yyv4816 = yyv4816[:0] + yyc4816 = true } - } else if yyl4813 > 0 { - var yyrr4813, yyrl4813 int - var yyrt4813 bool - if yyl4813 > cap(yyv4813) { + } else if yyl4816 > 0 { + var yyrr4816, yyrl4816 int + var yyrt4816 bool + if yyl4816 > cap(yyv4816) { - yyrg4813 := len(yyv4813) > 0 - yyv24813 := yyv4813 - yyrl4813, yyrt4813 = z.DecInferLen(yyl4813, z.DecBasicHandle().MaxInitLen, 504) - if yyrt4813 { - if yyrl4813 <= cap(yyv4813) { - yyv4813 = yyv4813[:yyrl4813] + yyrg4816 := len(yyv4816) > 0 + yyv24816 := yyv4816 + yyrl4816, yyrt4816 = z.DecInferLen(yyl4816, z.DecBasicHandle().MaxInitLen, 504) + if yyrt4816 { + if yyrl4816 <= cap(yyv4816) { + yyv4816 = yyv4816[:yyrl4816] } else { - yyv4813 = make([]Event, yyrl4813) + yyv4816 = make([]Event, yyrl4816) } } else { - yyv4813 = make([]Event, yyrl4813) + yyv4816 = make([]Event, yyrl4816) } - yyc4813 = true - yyrr4813 = len(yyv4813) - if yyrg4813 { - copy(yyv4813, yyv24813) + yyc4816 = true + yyrr4816 = len(yyv4816) + if yyrg4816 { + copy(yyv4816, yyv24816) } - } else if yyl4813 != len(yyv4813) { - yyv4813 = yyv4813[:yyl4813] - yyc4813 = true + } else if yyl4816 != len(yyv4816) { + yyv4816 = yyv4816[:yyl4816] + yyc4816 = true } - yyj4813 := 0 - for ; yyj4813 < yyrr4813; yyj4813++ { - yyh4813.ElemContainerState(yyj4813) + yyj4816 := 0 + for ; yyj4816 < yyrr4816; yyj4816++ { + yyh4816.ElemContainerState(yyj4816) if r.TryDecodeAsNil() { - yyv4813[yyj4813] = Event{} + yyv4816[yyj4816] = Event{} } else { - yyv4814 := &yyv4813[yyj4813] - yyv4814.CodecDecodeSelf(d) + yyv4817 := &yyv4816[yyj4816] + yyv4817.CodecDecodeSelf(d) } } - if yyrt4813 { - for ; yyj4813 < yyl4813; yyj4813++ { - yyv4813 = append(yyv4813, Event{}) - yyh4813.ElemContainerState(yyj4813) + if yyrt4816 { + for ; yyj4816 < yyl4816; yyj4816++ { + yyv4816 = append(yyv4816, Event{}) + yyh4816.ElemContainerState(yyj4816) if r.TryDecodeAsNil() { - yyv4813[yyj4813] = Event{} + yyv4816[yyj4816] = Event{} } else { - yyv4815 := &yyv4813[yyj4813] - yyv4815.CodecDecodeSelf(d) + yyv4818 := &yyv4816[yyj4816] + yyv4818.CodecDecodeSelf(d) } } } } else { - yyj4813 := 0 - for ; !r.CheckBreak(); yyj4813++ { + yyj4816 := 0 + for ; !r.CheckBreak(); yyj4816++ { - if yyj4813 >= len(yyv4813) { - yyv4813 = append(yyv4813, Event{}) // var yyz4813 Event - yyc4813 = true + if yyj4816 >= len(yyv4816) { + yyv4816 = append(yyv4816, Event{}) // var yyz4816 Event + yyc4816 = true } - yyh4813.ElemContainerState(yyj4813) - if yyj4813 < len(yyv4813) { + yyh4816.ElemContainerState(yyj4816) + if yyj4816 < len(yyv4816) { if r.TryDecodeAsNil() { - yyv4813[yyj4813] = Event{} + yyv4816[yyj4816] = Event{} } else { - yyv4816 := &yyv4813[yyj4813] - yyv4816.CodecDecodeSelf(d) + yyv4819 := &yyv4816[yyj4816] + yyv4819.CodecDecodeSelf(d) } } else { @@ -61819,17 +61875,17 @@ func (x codecSelfer1234) decSliceEvent(v *[]Event, d *codec1978.Decoder) { } } - if yyj4813 < len(yyv4813) { - yyv4813 = yyv4813[:yyj4813] - yyc4813 = true - } else if yyj4813 == 0 && yyv4813 == nil { - yyv4813 = []Event{} - yyc4813 = true + if yyj4816 < len(yyv4816) { + yyv4816 = yyv4816[:yyj4816] + yyc4816 = true + } else if yyj4816 == 0 && yyv4816 == nil { + yyv4816 = []Event{} + yyc4816 = true } } - yyh4813.End() - if yyc4813 { - *v = yyv4813 + yyh4816.End() + if yyc4816 { + *v = yyv4816 } } @@ -61838,17 +61894,17 @@ func (x codecSelfer1234) encSliceruntime_RawExtension(v []pkg5_runtime.RawExtens z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4817 := range v { + for _, yyv4820 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4818 := &yyv4817 - yym4819 := z.EncBinary() - _ = yym4819 + yy4821 := &yyv4820 + yym4822 := z.EncBinary() + _ = yym4822 if false { - } else if z.HasExtensions() && z.EncExt(yy4818) { - } else if !yym4819 && z.IsJSONHandle() { - z.EncJSONMarshal(yy4818) + } else if z.HasExtensions() && z.EncExt(yy4821) { + } else if !yym4822 && z.IsJSONHandle() { + z.EncJSONMarshal(yy4821) } else { - z.EncFallback(yy4818) + z.EncFallback(yy4821) } } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) @@ -61859,78 +61915,78 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4820 := *v - yyh4820, yyl4820 := z.DecSliceHelperStart() - var yyc4820 bool - if yyl4820 == 0 { - if yyv4820 == nil { - yyv4820 = []pkg5_runtime.RawExtension{} - yyc4820 = true - } else if len(yyv4820) != 0 { - yyv4820 = yyv4820[:0] - yyc4820 = true + yyv4823 := *v + yyh4823, yyl4823 := z.DecSliceHelperStart() + var yyc4823 bool + if yyl4823 == 0 { + if yyv4823 == nil { + yyv4823 = []pkg5_runtime.RawExtension{} + yyc4823 = true + } else if len(yyv4823) != 0 { + yyv4823 = yyv4823[:0] + yyc4823 = true } - } else if yyl4820 > 0 { - var yyrr4820, yyrl4820 int - var yyrt4820 bool - if yyl4820 > cap(yyv4820) { + } else if yyl4823 > 0 { + var yyrr4823, yyrl4823 int + var yyrt4823 bool + if yyl4823 > cap(yyv4823) { - yyrg4820 := len(yyv4820) > 0 - yyv24820 := yyv4820 - yyrl4820, yyrt4820 = z.DecInferLen(yyl4820, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4820 { - if yyrl4820 <= cap(yyv4820) { - yyv4820 = yyv4820[:yyrl4820] + yyrg4823 := len(yyv4823) > 0 + yyv24823 := yyv4823 + yyrl4823, yyrt4823 = z.DecInferLen(yyl4823, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4823 { + if yyrl4823 <= cap(yyv4823) { + yyv4823 = yyv4823[:yyrl4823] } else { - yyv4820 = make([]pkg5_runtime.RawExtension, yyrl4820) + yyv4823 = make([]pkg5_runtime.RawExtension, yyrl4823) } } else { - yyv4820 = make([]pkg5_runtime.RawExtension, yyrl4820) + yyv4823 = make([]pkg5_runtime.RawExtension, yyrl4823) } - yyc4820 = true - yyrr4820 = len(yyv4820) - if yyrg4820 { - copy(yyv4820, yyv24820) + yyc4823 = true + yyrr4823 = len(yyv4823) + if yyrg4823 { + copy(yyv4823, yyv24823) } - } else if yyl4820 != len(yyv4820) { - yyv4820 = yyv4820[:yyl4820] - yyc4820 = true + } else if yyl4823 != len(yyv4823) { + yyv4823 = yyv4823[:yyl4823] + yyc4823 = true } - yyj4820 := 0 - for ; yyj4820 < yyrr4820; yyj4820++ { - yyh4820.ElemContainerState(yyj4820) + yyj4823 := 0 + for ; yyj4823 < yyrr4823; yyj4823++ { + yyh4823.ElemContainerState(yyj4823) if r.TryDecodeAsNil() { - yyv4820[yyj4820] = pkg5_runtime.RawExtension{} + yyv4823[yyj4823] = pkg5_runtime.RawExtension{} } else { - yyv4821 := &yyv4820[yyj4820] - yym4822 := z.DecBinary() - _ = yym4822 + yyv4824 := &yyv4823[yyj4823] + yym4825 := z.DecBinary() + _ = yym4825 if false { - } else if z.HasExtensions() && z.DecExt(yyv4821) { - } else if !yym4822 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4821) + } else if z.HasExtensions() && z.DecExt(yyv4824) { + } else if !yym4825 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4824) } else { - z.DecFallback(yyv4821, false) + z.DecFallback(yyv4824, false) } } } - if yyrt4820 { - for ; yyj4820 < yyl4820; yyj4820++ { - yyv4820 = append(yyv4820, pkg5_runtime.RawExtension{}) - yyh4820.ElemContainerState(yyj4820) + if yyrt4823 { + for ; yyj4823 < yyl4823; yyj4823++ { + yyv4823 = append(yyv4823, pkg5_runtime.RawExtension{}) + yyh4823.ElemContainerState(yyj4823) if r.TryDecodeAsNil() { - yyv4820[yyj4820] = pkg5_runtime.RawExtension{} + yyv4823[yyj4823] = pkg5_runtime.RawExtension{} } else { - yyv4823 := &yyv4820[yyj4820] - yym4824 := z.DecBinary() - _ = yym4824 + yyv4826 := &yyv4823[yyj4823] + yym4827 := z.DecBinary() + _ = yym4827 if false { - } else if z.HasExtensions() && z.DecExt(yyv4823) { - } else if !yym4824 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4823) + } else if z.HasExtensions() && z.DecExt(yyv4826) { + } else if !yym4827 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4826) } else { - z.DecFallback(yyv4823, false) + z.DecFallback(yyv4826, false) } } @@ -61938,27 +61994,27 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } else { - yyj4820 := 0 - for ; !r.CheckBreak(); yyj4820++ { + yyj4823 := 0 + for ; !r.CheckBreak(); yyj4823++ { - if yyj4820 >= len(yyv4820) { - yyv4820 = append(yyv4820, pkg5_runtime.RawExtension{}) // var yyz4820 pkg5_runtime.RawExtension - yyc4820 = true + if yyj4823 >= len(yyv4823) { + yyv4823 = append(yyv4823, pkg5_runtime.RawExtension{}) // var yyz4823 pkg5_runtime.RawExtension + yyc4823 = true } - yyh4820.ElemContainerState(yyj4820) - if yyj4820 < len(yyv4820) { + yyh4823.ElemContainerState(yyj4823) + if yyj4823 < len(yyv4823) { if r.TryDecodeAsNil() { - yyv4820[yyj4820] = pkg5_runtime.RawExtension{} + yyv4823[yyj4823] = pkg5_runtime.RawExtension{} } else { - yyv4825 := &yyv4820[yyj4820] - yym4826 := z.DecBinary() - _ = yym4826 + yyv4828 := &yyv4823[yyj4823] + yym4829 := z.DecBinary() + _ = yym4829 if false { - } else if z.HasExtensions() && z.DecExt(yyv4825) { - } else if !yym4826 && z.IsJSONHandle() { - z.DecJSONUnmarshal(yyv4825) + } else if z.HasExtensions() && z.DecExt(yyv4828) { + } else if !yym4829 && z.IsJSONHandle() { + z.DecJSONUnmarshal(yyv4828) } else { - z.DecFallback(yyv4825, false) + z.DecFallback(yyv4828, false) } } @@ -61967,17 +62023,17 @@ func (x codecSelfer1234) decSliceruntime_RawExtension(v *[]pkg5_runtime.RawExten } } - if yyj4820 < len(yyv4820) { - yyv4820 = yyv4820[:yyj4820] - yyc4820 = true - } else if yyj4820 == 0 && yyv4820 == nil { - yyv4820 = []pkg5_runtime.RawExtension{} - yyc4820 = true + if yyj4823 < len(yyv4823) { + yyv4823 = yyv4823[:yyj4823] + yyc4823 = true + } else if yyj4823 == 0 && yyv4823 == nil { + yyv4823 = []pkg5_runtime.RawExtension{} + yyc4823 = true } } - yyh4820.End() - if yyc4820 { - *v = yyv4820 + yyh4823.End() + if yyc4823 { + *v = yyv4823 } } @@ -61986,10 +62042,10 @@ func (x codecSelfer1234) encSliceLimitRangeItem(v []LimitRangeItem, e *codec1978 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4827 := range v { + for _, yyv4830 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4828 := &yyv4827 - yy4828.CodecEncodeSelf(e) + yy4831 := &yyv4830 + yy4831.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -61999,83 +62055,83 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4829 := *v - yyh4829, yyl4829 := z.DecSliceHelperStart() - var yyc4829 bool - if yyl4829 == 0 { - if yyv4829 == nil { - yyv4829 = []LimitRangeItem{} - yyc4829 = true - } else if len(yyv4829) != 0 { - yyv4829 = yyv4829[:0] - yyc4829 = true + yyv4832 := *v + yyh4832, yyl4832 := z.DecSliceHelperStart() + var yyc4832 bool + if yyl4832 == 0 { + if yyv4832 == nil { + yyv4832 = []LimitRangeItem{} + yyc4832 = true + } else if len(yyv4832) != 0 { + yyv4832 = yyv4832[:0] + yyc4832 = true } - } else if yyl4829 > 0 { - var yyrr4829, yyrl4829 int - var yyrt4829 bool - if yyl4829 > cap(yyv4829) { + } else if yyl4832 > 0 { + var yyrr4832, yyrl4832 int + var yyrt4832 bool + if yyl4832 > cap(yyv4832) { - yyrg4829 := len(yyv4829) > 0 - yyv24829 := yyv4829 - yyrl4829, yyrt4829 = z.DecInferLen(yyl4829, z.DecBasicHandle().MaxInitLen, 56) - if yyrt4829 { - if yyrl4829 <= cap(yyv4829) { - yyv4829 = yyv4829[:yyrl4829] + yyrg4832 := len(yyv4832) > 0 + yyv24832 := yyv4832 + yyrl4832, yyrt4832 = z.DecInferLen(yyl4832, z.DecBasicHandle().MaxInitLen, 56) + if yyrt4832 { + if yyrl4832 <= cap(yyv4832) { + yyv4832 = yyv4832[:yyrl4832] } else { - yyv4829 = make([]LimitRangeItem, yyrl4829) + yyv4832 = make([]LimitRangeItem, yyrl4832) } } else { - yyv4829 = make([]LimitRangeItem, yyrl4829) + yyv4832 = make([]LimitRangeItem, yyrl4832) } - yyc4829 = true - yyrr4829 = len(yyv4829) - if yyrg4829 { - copy(yyv4829, yyv24829) + yyc4832 = true + yyrr4832 = len(yyv4832) + if yyrg4832 { + copy(yyv4832, yyv24832) } - } else if yyl4829 != len(yyv4829) { - yyv4829 = yyv4829[:yyl4829] - yyc4829 = true + } else if yyl4832 != len(yyv4832) { + yyv4832 = yyv4832[:yyl4832] + yyc4832 = true } - yyj4829 := 0 - for ; yyj4829 < yyrr4829; yyj4829++ { - yyh4829.ElemContainerState(yyj4829) + yyj4832 := 0 + for ; yyj4832 < yyrr4832; yyj4832++ { + yyh4832.ElemContainerState(yyj4832) if r.TryDecodeAsNil() { - yyv4829[yyj4829] = LimitRangeItem{} + yyv4832[yyj4832] = LimitRangeItem{} } else { - yyv4830 := &yyv4829[yyj4829] - yyv4830.CodecDecodeSelf(d) + yyv4833 := &yyv4832[yyj4832] + yyv4833.CodecDecodeSelf(d) } } - if yyrt4829 { - for ; yyj4829 < yyl4829; yyj4829++ { - yyv4829 = append(yyv4829, LimitRangeItem{}) - yyh4829.ElemContainerState(yyj4829) + if yyrt4832 { + for ; yyj4832 < yyl4832; yyj4832++ { + yyv4832 = append(yyv4832, LimitRangeItem{}) + yyh4832.ElemContainerState(yyj4832) if r.TryDecodeAsNil() { - yyv4829[yyj4829] = LimitRangeItem{} + yyv4832[yyj4832] = LimitRangeItem{} } else { - yyv4831 := &yyv4829[yyj4829] - yyv4831.CodecDecodeSelf(d) + yyv4834 := &yyv4832[yyj4832] + yyv4834.CodecDecodeSelf(d) } } } } else { - yyj4829 := 0 - for ; !r.CheckBreak(); yyj4829++ { + yyj4832 := 0 + for ; !r.CheckBreak(); yyj4832++ { - if yyj4829 >= len(yyv4829) { - yyv4829 = append(yyv4829, LimitRangeItem{}) // var yyz4829 LimitRangeItem - yyc4829 = true + if yyj4832 >= len(yyv4832) { + yyv4832 = append(yyv4832, LimitRangeItem{}) // var yyz4832 LimitRangeItem + yyc4832 = true } - yyh4829.ElemContainerState(yyj4829) - if yyj4829 < len(yyv4829) { + yyh4832.ElemContainerState(yyj4832) + if yyj4832 < len(yyv4832) { if r.TryDecodeAsNil() { - yyv4829[yyj4829] = LimitRangeItem{} + yyv4832[yyj4832] = LimitRangeItem{} } else { - yyv4832 := &yyv4829[yyj4829] - yyv4832.CodecDecodeSelf(d) + yyv4835 := &yyv4832[yyj4832] + yyv4835.CodecDecodeSelf(d) } } else { @@ -62083,17 +62139,17 @@ func (x codecSelfer1234) decSliceLimitRangeItem(v *[]LimitRangeItem, d *codec197 } } - if yyj4829 < len(yyv4829) { - yyv4829 = yyv4829[:yyj4829] - yyc4829 = true - } else if yyj4829 == 0 && yyv4829 == nil { - yyv4829 = []LimitRangeItem{} - yyc4829 = true + if yyj4832 < len(yyv4832) { + yyv4832 = yyv4832[:yyj4832] + yyc4832 = true + } else if yyj4832 == 0 && yyv4832 == nil { + yyv4832 = []LimitRangeItem{} + yyc4832 = true } } - yyh4829.End() - if yyc4829 { - *v = yyv4829 + yyh4832.End() + if yyc4832 { + *v = yyv4832 } } @@ -62102,10 +62158,10 @@ func (x codecSelfer1234) encSliceLimitRange(v []LimitRange, e *codec1978.Encoder z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4833 := range v { + for _, yyv4836 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4834 := &yyv4833 - yy4834.CodecEncodeSelf(e) + yy4837 := &yyv4836 + yy4837.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62115,83 +62171,83 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4835 := *v - yyh4835, yyl4835 := z.DecSliceHelperStart() - var yyc4835 bool - if yyl4835 == 0 { - if yyv4835 == nil { - yyv4835 = []LimitRange{} - yyc4835 = true - } else if len(yyv4835) != 0 { - yyv4835 = yyv4835[:0] - yyc4835 = true + yyv4838 := *v + yyh4838, yyl4838 := z.DecSliceHelperStart() + var yyc4838 bool + if yyl4838 == 0 { + if yyv4838 == nil { + yyv4838 = []LimitRange{} + yyc4838 = true + } else if len(yyv4838) != 0 { + yyv4838 = yyv4838[:0] + yyc4838 = true } - } else if yyl4835 > 0 { - var yyrr4835, yyrl4835 int - var yyrt4835 bool - if yyl4835 > cap(yyv4835) { + } else if yyl4838 > 0 { + var yyrr4838, yyrl4838 int + var yyrt4838 bool + if yyl4838 > cap(yyv4838) { - yyrg4835 := len(yyv4835) > 0 - yyv24835 := yyv4835 - yyrl4835, yyrt4835 = z.DecInferLen(yyl4835, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4835 { - if yyrl4835 <= cap(yyv4835) { - yyv4835 = yyv4835[:yyrl4835] + yyrg4838 := len(yyv4838) > 0 + yyv24838 := yyv4838 + yyrl4838, yyrt4838 = z.DecInferLen(yyl4838, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4838 { + if yyrl4838 <= cap(yyv4838) { + yyv4838 = yyv4838[:yyrl4838] } else { - yyv4835 = make([]LimitRange, yyrl4835) + yyv4838 = make([]LimitRange, yyrl4838) } } else { - yyv4835 = make([]LimitRange, yyrl4835) + yyv4838 = make([]LimitRange, yyrl4838) } - yyc4835 = true - yyrr4835 = len(yyv4835) - if yyrg4835 { - copy(yyv4835, yyv24835) + yyc4838 = true + yyrr4838 = len(yyv4838) + if yyrg4838 { + copy(yyv4838, yyv24838) } - } else if yyl4835 != len(yyv4835) { - yyv4835 = yyv4835[:yyl4835] - yyc4835 = true + } else if yyl4838 != len(yyv4838) { + yyv4838 = yyv4838[:yyl4838] + yyc4838 = true } - yyj4835 := 0 - for ; yyj4835 < yyrr4835; yyj4835++ { - yyh4835.ElemContainerState(yyj4835) + yyj4838 := 0 + for ; yyj4838 < yyrr4838; yyj4838++ { + yyh4838.ElemContainerState(yyj4838) if r.TryDecodeAsNil() { - yyv4835[yyj4835] = LimitRange{} + yyv4838[yyj4838] = LimitRange{} } else { - yyv4836 := &yyv4835[yyj4835] - yyv4836.CodecDecodeSelf(d) + yyv4839 := &yyv4838[yyj4838] + yyv4839.CodecDecodeSelf(d) } } - if yyrt4835 { - for ; yyj4835 < yyl4835; yyj4835++ { - yyv4835 = append(yyv4835, LimitRange{}) - yyh4835.ElemContainerState(yyj4835) + if yyrt4838 { + for ; yyj4838 < yyl4838; yyj4838++ { + yyv4838 = append(yyv4838, LimitRange{}) + yyh4838.ElemContainerState(yyj4838) if r.TryDecodeAsNil() { - yyv4835[yyj4835] = LimitRange{} + yyv4838[yyj4838] = LimitRange{} } else { - yyv4837 := &yyv4835[yyj4835] - yyv4837.CodecDecodeSelf(d) + yyv4840 := &yyv4838[yyj4838] + yyv4840.CodecDecodeSelf(d) } } } } else { - yyj4835 := 0 - for ; !r.CheckBreak(); yyj4835++ { + yyj4838 := 0 + for ; !r.CheckBreak(); yyj4838++ { - if yyj4835 >= len(yyv4835) { - yyv4835 = append(yyv4835, LimitRange{}) // var yyz4835 LimitRange - yyc4835 = true + if yyj4838 >= len(yyv4838) { + yyv4838 = append(yyv4838, LimitRange{}) // var yyz4838 LimitRange + yyc4838 = true } - yyh4835.ElemContainerState(yyj4835) - if yyj4835 < len(yyv4835) { + yyh4838.ElemContainerState(yyj4838) + if yyj4838 < len(yyv4838) { if r.TryDecodeAsNil() { - yyv4835[yyj4835] = LimitRange{} + yyv4838[yyj4838] = LimitRange{} } else { - yyv4838 := &yyv4835[yyj4835] - yyv4838.CodecDecodeSelf(d) + yyv4841 := &yyv4838[yyj4838] + yyv4841.CodecDecodeSelf(d) } } else { @@ -62199,17 +62255,17 @@ func (x codecSelfer1234) decSliceLimitRange(v *[]LimitRange, d *codec1978.Decode } } - if yyj4835 < len(yyv4835) { - yyv4835 = yyv4835[:yyj4835] - yyc4835 = true - } else if yyj4835 == 0 && yyv4835 == nil { - yyv4835 = []LimitRange{} - yyc4835 = true + if yyj4838 < len(yyv4838) { + yyv4838 = yyv4838[:yyj4838] + yyc4838 = true + } else if yyj4838 == 0 && yyv4838 == nil { + yyv4838 = []LimitRange{} + yyc4838 = true } } - yyh4835.End() - if yyc4835 { - *v = yyv4835 + yyh4838.End() + if yyc4838 { + *v = yyv4838 } } @@ -62218,9 +62274,9 @@ func (x codecSelfer1234) encSliceResourceQuotaScope(v []ResourceQuotaScope, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4839 := range v { + for _, yyv4842 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yyv4839.CodecEncodeSelf(e) + yyv4842.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62230,75 +62286,75 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4840 := *v - yyh4840, yyl4840 := z.DecSliceHelperStart() - var yyc4840 bool - if yyl4840 == 0 { - if yyv4840 == nil { - yyv4840 = []ResourceQuotaScope{} - yyc4840 = true - } else if len(yyv4840) != 0 { - yyv4840 = yyv4840[:0] - yyc4840 = true + yyv4843 := *v + yyh4843, yyl4843 := z.DecSliceHelperStart() + var yyc4843 bool + if yyl4843 == 0 { + if yyv4843 == nil { + yyv4843 = []ResourceQuotaScope{} + yyc4843 = true + } else if len(yyv4843) != 0 { + yyv4843 = yyv4843[:0] + yyc4843 = true } - } else if yyl4840 > 0 { - var yyrr4840, yyrl4840 int - var yyrt4840 bool - if yyl4840 > cap(yyv4840) { + } else if yyl4843 > 0 { + var yyrr4843, yyrl4843 int + var yyrt4843 bool + if yyl4843 > cap(yyv4843) { - yyrl4840, yyrt4840 = z.DecInferLen(yyl4840, z.DecBasicHandle().MaxInitLen, 16) - if yyrt4840 { - if yyrl4840 <= cap(yyv4840) { - yyv4840 = yyv4840[:yyrl4840] + yyrl4843, yyrt4843 = z.DecInferLen(yyl4843, z.DecBasicHandle().MaxInitLen, 16) + if yyrt4843 { + if yyrl4843 <= cap(yyv4843) { + yyv4843 = yyv4843[:yyrl4843] } else { - yyv4840 = make([]ResourceQuotaScope, yyrl4840) + yyv4843 = make([]ResourceQuotaScope, yyrl4843) } } else { - yyv4840 = make([]ResourceQuotaScope, yyrl4840) + yyv4843 = make([]ResourceQuotaScope, yyrl4843) } - yyc4840 = true - yyrr4840 = len(yyv4840) - } else if yyl4840 != len(yyv4840) { - yyv4840 = yyv4840[:yyl4840] - yyc4840 = true + yyc4843 = true + yyrr4843 = len(yyv4843) + } else if yyl4843 != len(yyv4843) { + yyv4843 = yyv4843[:yyl4843] + yyc4843 = true } - yyj4840 := 0 - for ; yyj4840 < yyrr4840; yyj4840++ { - yyh4840.ElemContainerState(yyj4840) + yyj4843 := 0 + for ; yyj4843 < yyrr4843; yyj4843++ { + yyh4843.ElemContainerState(yyj4843) if r.TryDecodeAsNil() { - yyv4840[yyj4840] = "" + yyv4843[yyj4843] = "" } else { - yyv4840[yyj4840] = ResourceQuotaScope(r.DecodeString()) + yyv4843[yyj4843] = ResourceQuotaScope(r.DecodeString()) } } - if yyrt4840 { - for ; yyj4840 < yyl4840; yyj4840++ { - yyv4840 = append(yyv4840, "") - yyh4840.ElemContainerState(yyj4840) + if yyrt4843 { + for ; yyj4843 < yyl4843; yyj4843++ { + yyv4843 = append(yyv4843, "") + yyh4843.ElemContainerState(yyj4843) if r.TryDecodeAsNil() { - yyv4840[yyj4840] = "" + yyv4843[yyj4843] = "" } else { - yyv4840[yyj4840] = ResourceQuotaScope(r.DecodeString()) + yyv4843[yyj4843] = ResourceQuotaScope(r.DecodeString()) } } } } else { - yyj4840 := 0 - for ; !r.CheckBreak(); yyj4840++ { + yyj4843 := 0 + for ; !r.CheckBreak(); yyj4843++ { - if yyj4840 >= len(yyv4840) { - yyv4840 = append(yyv4840, "") // var yyz4840 ResourceQuotaScope - yyc4840 = true + if yyj4843 >= len(yyv4843) { + yyv4843 = append(yyv4843, "") // var yyz4843 ResourceQuotaScope + yyc4843 = true } - yyh4840.ElemContainerState(yyj4840) - if yyj4840 < len(yyv4840) { + yyh4843.ElemContainerState(yyj4843) + if yyj4843 < len(yyv4843) { if r.TryDecodeAsNil() { - yyv4840[yyj4840] = "" + yyv4843[yyj4843] = "" } else { - yyv4840[yyj4840] = ResourceQuotaScope(r.DecodeString()) + yyv4843[yyj4843] = ResourceQuotaScope(r.DecodeString()) } } else { @@ -62306,17 +62362,17 @@ func (x codecSelfer1234) decSliceResourceQuotaScope(v *[]ResourceQuotaScope, d * } } - if yyj4840 < len(yyv4840) { - yyv4840 = yyv4840[:yyj4840] - yyc4840 = true - } else if yyj4840 == 0 && yyv4840 == nil { - yyv4840 = []ResourceQuotaScope{} - yyc4840 = true + if yyj4843 < len(yyv4843) { + yyv4843 = yyv4843[:yyj4843] + yyc4843 = true + } else if yyj4843 == 0 && yyv4843 == nil { + yyv4843 = []ResourceQuotaScope{} + yyc4843 = true } } - yyh4840.End() - if yyc4840 { - *v = yyv4840 + yyh4843.End() + if yyc4843 { + *v = yyv4843 } } @@ -62325,10 +62381,10 @@ func (x codecSelfer1234) encSliceResourceQuota(v []ResourceQuota, e *codec1978.E z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4844 := range v { + for _, yyv4847 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4845 := &yyv4844 - yy4845.CodecEncodeSelf(e) + yy4848 := &yyv4847 + yy4848.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62338,83 +62394,83 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4846 := *v - yyh4846, yyl4846 := z.DecSliceHelperStart() - var yyc4846 bool - if yyl4846 == 0 { - if yyv4846 == nil { - yyv4846 = []ResourceQuota{} - yyc4846 = true - } else if len(yyv4846) != 0 { - yyv4846 = yyv4846[:0] - yyc4846 = true + yyv4849 := *v + yyh4849, yyl4849 := z.DecSliceHelperStart() + var yyc4849 bool + if yyl4849 == 0 { + if yyv4849 == nil { + yyv4849 = []ResourceQuota{} + yyc4849 = true + } else if len(yyv4849) != 0 { + yyv4849 = yyv4849[:0] + yyc4849 = true } - } else if yyl4846 > 0 { - var yyrr4846, yyrl4846 int - var yyrt4846 bool - if yyl4846 > cap(yyv4846) { + } else if yyl4849 > 0 { + var yyrr4849, yyrl4849 int + var yyrt4849 bool + if yyl4849 > cap(yyv4849) { - yyrg4846 := len(yyv4846) > 0 - yyv24846 := yyv4846 - yyrl4846, yyrt4846 = z.DecInferLen(yyl4846, z.DecBasicHandle().MaxInitLen, 304) - if yyrt4846 { - if yyrl4846 <= cap(yyv4846) { - yyv4846 = yyv4846[:yyrl4846] + yyrg4849 := len(yyv4849) > 0 + yyv24849 := yyv4849 + yyrl4849, yyrt4849 = z.DecInferLen(yyl4849, z.DecBasicHandle().MaxInitLen, 304) + if yyrt4849 { + if yyrl4849 <= cap(yyv4849) { + yyv4849 = yyv4849[:yyrl4849] } else { - yyv4846 = make([]ResourceQuota, yyrl4846) + yyv4849 = make([]ResourceQuota, yyrl4849) } } else { - yyv4846 = make([]ResourceQuota, yyrl4846) + yyv4849 = make([]ResourceQuota, yyrl4849) } - yyc4846 = true - yyrr4846 = len(yyv4846) - if yyrg4846 { - copy(yyv4846, yyv24846) + yyc4849 = true + yyrr4849 = len(yyv4849) + if yyrg4849 { + copy(yyv4849, yyv24849) } - } else if yyl4846 != len(yyv4846) { - yyv4846 = yyv4846[:yyl4846] - yyc4846 = true + } else if yyl4849 != len(yyv4849) { + yyv4849 = yyv4849[:yyl4849] + yyc4849 = true } - yyj4846 := 0 - for ; yyj4846 < yyrr4846; yyj4846++ { - yyh4846.ElemContainerState(yyj4846) + yyj4849 := 0 + for ; yyj4849 < yyrr4849; yyj4849++ { + yyh4849.ElemContainerState(yyj4849) if r.TryDecodeAsNil() { - yyv4846[yyj4846] = ResourceQuota{} + yyv4849[yyj4849] = ResourceQuota{} } else { - yyv4847 := &yyv4846[yyj4846] - yyv4847.CodecDecodeSelf(d) + yyv4850 := &yyv4849[yyj4849] + yyv4850.CodecDecodeSelf(d) } } - if yyrt4846 { - for ; yyj4846 < yyl4846; yyj4846++ { - yyv4846 = append(yyv4846, ResourceQuota{}) - yyh4846.ElemContainerState(yyj4846) + if yyrt4849 { + for ; yyj4849 < yyl4849; yyj4849++ { + yyv4849 = append(yyv4849, ResourceQuota{}) + yyh4849.ElemContainerState(yyj4849) if r.TryDecodeAsNil() { - yyv4846[yyj4846] = ResourceQuota{} + yyv4849[yyj4849] = ResourceQuota{} } else { - yyv4848 := &yyv4846[yyj4846] - yyv4848.CodecDecodeSelf(d) + yyv4851 := &yyv4849[yyj4849] + yyv4851.CodecDecodeSelf(d) } } } } else { - yyj4846 := 0 - for ; !r.CheckBreak(); yyj4846++ { + yyj4849 := 0 + for ; !r.CheckBreak(); yyj4849++ { - if yyj4846 >= len(yyv4846) { - yyv4846 = append(yyv4846, ResourceQuota{}) // var yyz4846 ResourceQuota - yyc4846 = true + if yyj4849 >= len(yyv4849) { + yyv4849 = append(yyv4849, ResourceQuota{}) // var yyz4849 ResourceQuota + yyc4849 = true } - yyh4846.ElemContainerState(yyj4846) - if yyj4846 < len(yyv4846) { + yyh4849.ElemContainerState(yyj4849) + if yyj4849 < len(yyv4849) { if r.TryDecodeAsNil() { - yyv4846[yyj4846] = ResourceQuota{} + yyv4849[yyj4849] = ResourceQuota{} } else { - yyv4849 := &yyv4846[yyj4846] - yyv4849.CodecDecodeSelf(d) + yyv4852 := &yyv4849[yyj4849] + yyv4852.CodecDecodeSelf(d) } } else { @@ -62422,17 +62478,17 @@ func (x codecSelfer1234) decSliceResourceQuota(v *[]ResourceQuota, d *codec1978. } } - if yyj4846 < len(yyv4846) { - yyv4846 = yyv4846[:yyj4846] - yyc4846 = true - } else if yyj4846 == 0 && yyv4846 == nil { - yyv4846 = []ResourceQuota{} - yyc4846 = true + if yyj4849 < len(yyv4849) { + yyv4849 = yyv4849[:yyj4849] + yyc4849 = true + } else if yyj4849 == 0 && yyv4849 == nil { + yyv4849 = []ResourceQuota{} + yyc4849 = true } } - yyh4846.End() - if yyc4846 { - *v = yyv4846 + yyh4849.End() + if yyc4849 { + *v = yyv4849 } } @@ -62441,23 +62497,23 @@ func (x codecSelfer1234) encMapstringSliceuint8(v map[string][]uint8, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeMapStart(len(v)) - for yyk4850, yyv4850 := range v { + for yyk4853, yyv4853 := range v { z.EncSendContainerState(codecSelfer_containerMapKey1234) - yym4851 := z.EncBinary() - _ = yym4851 + yym4854 := z.EncBinary() + _ = yym4854 if false { } else { - r.EncodeString(codecSelferC_UTF81234, string(yyk4850)) + r.EncodeString(codecSelferC_UTF81234, string(yyk4853)) } z.EncSendContainerState(codecSelfer_containerMapValue1234) - if yyv4850 == nil { + if yyv4853 == nil { r.EncodeNil() } else { - yym4852 := z.EncBinary() - _ = yym4852 + yym4855 := z.EncBinary() + _ = yym4855 if false { } else { - r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4850)) + r.EncodeStringBytes(codecSelferC_RAW1234, []byte(yyv4853)) } } } @@ -62469,70 +62525,39 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4853 := *v - yyl4853 := r.ReadMapStart() - yybh4853 := z.DecBasicHandle() - if yyv4853 == nil { - yyrl4853, _ := z.DecInferLen(yyl4853, yybh4853.MaxInitLen, 40) - yyv4853 = make(map[string][]uint8, yyrl4853) - *v = yyv4853 + yyv4856 := *v + yyl4856 := r.ReadMapStart() + yybh4856 := z.DecBasicHandle() + if yyv4856 == nil { + yyrl4856, _ := z.DecInferLen(yyl4856, yybh4856.MaxInitLen, 40) + yyv4856 = make(map[string][]uint8, yyrl4856) + *v = yyv4856 } - var yymk4853 string - var yymv4853 []uint8 - var yymg4853 bool - if yybh4853.MapValueReset { - yymg4853 = true + var yymk4856 string + var yymv4856 []uint8 + var yymg4856 bool + if yybh4856.MapValueReset { + yymg4856 = true } - if yyl4853 > 0 { - for yyj4853 := 0; yyj4853 < yyl4853; yyj4853++ { + if yyl4856 > 0 { + for yyj4856 := 0; yyj4856 < yyl4856; yyj4856++ { z.DecSendContainerState(codecSelfer_containerMapKey1234) if r.TryDecodeAsNil() { - yymk4853 = "" + yymk4856 = "" } else { - yymk4853 = string(r.DecodeString()) + yymk4856 = string(r.DecodeString()) } - if yymg4853 { - yymv4853 = yyv4853[yymk4853] + if yymg4856 { + yymv4856 = yyv4856[yymk4856] } else { - yymv4853 = nil + yymv4856 = nil } z.DecSendContainerState(codecSelfer_containerMapValue1234) if r.TryDecodeAsNil() { - yymv4853 = nil + yymv4856 = nil } else { - yyv4855 := &yymv4853 - yym4856 := z.DecBinary() - _ = yym4856 - if false { - } else { - *yyv4855 = r.DecodeBytes(*(*[]byte)(yyv4855), false, false) - } - } - - if yyv4853 != nil { - yyv4853[yymk4853] = yymv4853 - } - } - } else if yyl4853 < 0 { - for yyj4853 := 0; !r.CheckBreak(); yyj4853++ { - z.DecSendContainerState(codecSelfer_containerMapKey1234) - if r.TryDecodeAsNil() { - yymk4853 = "" - } else { - yymk4853 = string(r.DecodeString()) - } - - if yymg4853 { - yymv4853 = yyv4853[yymk4853] - } else { - yymv4853 = nil - } - z.DecSendContainerState(codecSelfer_containerMapValue1234) - if r.TryDecodeAsNil() { - yymv4853 = nil - } else { - yyv4858 := &yymv4853 + yyv4858 := &yymv4856 yym4859 := z.DecBinary() _ = yym4859 if false { @@ -62541,8 +62566,39 @@ func (x codecSelfer1234) decMapstringSliceuint8(v *map[string][]uint8, d *codec1 } } - if yyv4853 != nil { - yyv4853[yymk4853] = yymv4853 + if yyv4856 != nil { + yyv4856[yymk4856] = yymv4856 + } + } + } else if yyl4856 < 0 { + for yyj4856 := 0; !r.CheckBreak(); yyj4856++ { + z.DecSendContainerState(codecSelfer_containerMapKey1234) + if r.TryDecodeAsNil() { + yymk4856 = "" + } else { + yymk4856 = string(r.DecodeString()) + } + + if yymg4856 { + yymv4856 = yyv4856[yymk4856] + } else { + yymv4856 = nil + } + z.DecSendContainerState(codecSelfer_containerMapValue1234) + if r.TryDecodeAsNil() { + yymv4856 = nil + } else { + yyv4861 := &yymv4856 + yym4862 := z.DecBinary() + _ = yym4862 + if false { + } else { + *yyv4861 = r.DecodeBytes(*(*[]byte)(yyv4861), false, false) + } + } + + if yyv4856 != nil { + yyv4856[yymk4856] = yymv4856 } } } // else len==0: TODO: Should we clear map entries? @@ -62554,10 +62610,10 @@ func (x codecSelfer1234) encSliceSecret(v []Secret, e *codec1978.Encoder) { z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4860 := range v { + for _, yyv4863 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4861 := &yyv4860 - yy4861.CodecEncodeSelf(e) + yy4864 := &yyv4863 + yy4864.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62567,83 +62623,83 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4862 := *v - yyh4862, yyl4862 := z.DecSliceHelperStart() - var yyc4862 bool - if yyl4862 == 0 { - if yyv4862 == nil { - yyv4862 = []Secret{} - yyc4862 = true - } else if len(yyv4862) != 0 { - yyv4862 = yyv4862[:0] - yyc4862 = true + yyv4865 := *v + yyh4865, yyl4865 := z.DecSliceHelperStart() + var yyc4865 bool + if yyl4865 == 0 { + if yyv4865 == nil { + yyv4865 = []Secret{} + yyc4865 = true + } else if len(yyv4865) != 0 { + yyv4865 = yyv4865[:0] + yyc4865 = true } - } else if yyl4862 > 0 { - var yyrr4862, yyrl4862 int - var yyrt4862 bool - if yyl4862 > cap(yyv4862) { + } else if yyl4865 > 0 { + var yyrr4865, yyrl4865 int + var yyrt4865 bool + if yyl4865 > cap(yyv4865) { - yyrg4862 := len(yyv4862) > 0 - yyv24862 := yyv4862 - yyrl4862, yyrt4862 = z.DecInferLen(yyl4862, z.DecBasicHandle().MaxInitLen, 288) - if yyrt4862 { - if yyrl4862 <= cap(yyv4862) { - yyv4862 = yyv4862[:yyrl4862] + yyrg4865 := len(yyv4865) > 0 + yyv24865 := yyv4865 + yyrl4865, yyrt4865 = z.DecInferLen(yyl4865, z.DecBasicHandle().MaxInitLen, 288) + if yyrt4865 { + if yyrl4865 <= cap(yyv4865) { + yyv4865 = yyv4865[:yyrl4865] } else { - yyv4862 = make([]Secret, yyrl4862) + yyv4865 = make([]Secret, yyrl4865) } } else { - yyv4862 = make([]Secret, yyrl4862) + yyv4865 = make([]Secret, yyrl4865) } - yyc4862 = true - yyrr4862 = len(yyv4862) - if yyrg4862 { - copy(yyv4862, yyv24862) + yyc4865 = true + yyrr4865 = len(yyv4865) + if yyrg4865 { + copy(yyv4865, yyv24865) } - } else if yyl4862 != len(yyv4862) { - yyv4862 = yyv4862[:yyl4862] - yyc4862 = true + } else if yyl4865 != len(yyv4865) { + yyv4865 = yyv4865[:yyl4865] + yyc4865 = true } - yyj4862 := 0 - for ; yyj4862 < yyrr4862; yyj4862++ { - yyh4862.ElemContainerState(yyj4862) + yyj4865 := 0 + for ; yyj4865 < yyrr4865; yyj4865++ { + yyh4865.ElemContainerState(yyj4865) if r.TryDecodeAsNil() { - yyv4862[yyj4862] = Secret{} + yyv4865[yyj4865] = Secret{} } else { - yyv4863 := &yyv4862[yyj4862] - yyv4863.CodecDecodeSelf(d) + yyv4866 := &yyv4865[yyj4865] + yyv4866.CodecDecodeSelf(d) } } - if yyrt4862 { - for ; yyj4862 < yyl4862; yyj4862++ { - yyv4862 = append(yyv4862, Secret{}) - yyh4862.ElemContainerState(yyj4862) + if yyrt4865 { + for ; yyj4865 < yyl4865; yyj4865++ { + yyv4865 = append(yyv4865, Secret{}) + yyh4865.ElemContainerState(yyj4865) if r.TryDecodeAsNil() { - yyv4862[yyj4862] = Secret{} + yyv4865[yyj4865] = Secret{} } else { - yyv4864 := &yyv4862[yyj4862] - yyv4864.CodecDecodeSelf(d) + yyv4867 := &yyv4865[yyj4865] + yyv4867.CodecDecodeSelf(d) } } } } else { - yyj4862 := 0 - for ; !r.CheckBreak(); yyj4862++ { + yyj4865 := 0 + for ; !r.CheckBreak(); yyj4865++ { - if yyj4862 >= len(yyv4862) { - yyv4862 = append(yyv4862, Secret{}) // var yyz4862 Secret - yyc4862 = true + if yyj4865 >= len(yyv4865) { + yyv4865 = append(yyv4865, Secret{}) // var yyz4865 Secret + yyc4865 = true } - yyh4862.ElemContainerState(yyj4862) - if yyj4862 < len(yyv4862) { + yyh4865.ElemContainerState(yyj4865) + if yyj4865 < len(yyv4865) { if r.TryDecodeAsNil() { - yyv4862[yyj4862] = Secret{} + yyv4865[yyj4865] = Secret{} } else { - yyv4865 := &yyv4862[yyj4862] - yyv4865.CodecDecodeSelf(d) + yyv4868 := &yyv4865[yyj4865] + yyv4868.CodecDecodeSelf(d) } } else { @@ -62651,17 +62707,17 @@ func (x codecSelfer1234) decSliceSecret(v *[]Secret, d *codec1978.Decoder) { } } - if yyj4862 < len(yyv4862) { - yyv4862 = yyv4862[:yyj4862] - yyc4862 = true - } else if yyj4862 == 0 && yyv4862 == nil { - yyv4862 = []Secret{} - yyc4862 = true + if yyj4865 < len(yyv4865) { + yyv4865 = yyv4865[:yyj4865] + yyc4865 = true + } else if yyj4865 == 0 && yyv4865 == nil { + yyv4865 = []Secret{} + yyc4865 = true } } - yyh4862.End() - if yyc4862 { - *v = yyv4862 + yyh4865.End() + if yyc4865 { + *v = yyv4865 } } @@ -62670,10 +62726,10 @@ func (x codecSelfer1234) encSliceConfigMap(v []ConfigMap, e *codec1978.Encoder) z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4866 := range v { + for _, yyv4869 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4867 := &yyv4866 - yy4867.CodecEncodeSelf(e) + yy4870 := &yyv4869 + yy4870.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62683,83 +62739,83 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4868 := *v - yyh4868, yyl4868 := z.DecSliceHelperStart() - var yyc4868 bool - if yyl4868 == 0 { - if yyv4868 == nil { - yyv4868 = []ConfigMap{} - yyc4868 = true - } else if len(yyv4868) != 0 { - yyv4868 = yyv4868[:0] - yyc4868 = true + yyv4871 := *v + yyh4871, yyl4871 := z.DecSliceHelperStart() + var yyc4871 bool + if yyl4871 == 0 { + if yyv4871 == nil { + yyv4871 = []ConfigMap{} + yyc4871 = true + } else if len(yyv4871) != 0 { + yyv4871 = yyv4871[:0] + yyc4871 = true } - } else if yyl4868 > 0 { - var yyrr4868, yyrl4868 int - var yyrt4868 bool - if yyl4868 > cap(yyv4868) { + } else if yyl4871 > 0 { + var yyrr4871, yyrl4871 int + var yyrt4871 bool + if yyl4871 > cap(yyv4871) { - yyrg4868 := len(yyv4868) > 0 - yyv24868 := yyv4868 - yyrl4868, yyrt4868 = z.DecInferLen(yyl4868, z.DecBasicHandle().MaxInitLen, 264) - if yyrt4868 { - if yyrl4868 <= cap(yyv4868) { - yyv4868 = yyv4868[:yyrl4868] + yyrg4871 := len(yyv4871) > 0 + yyv24871 := yyv4871 + yyrl4871, yyrt4871 = z.DecInferLen(yyl4871, z.DecBasicHandle().MaxInitLen, 264) + if yyrt4871 { + if yyrl4871 <= cap(yyv4871) { + yyv4871 = yyv4871[:yyrl4871] } else { - yyv4868 = make([]ConfigMap, yyrl4868) + yyv4871 = make([]ConfigMap, yyrl4871) } } else { - yyv4868 = make([]ConfigMap, yyrl4868) + yyv4871 = make([]ConfigMap, yyrl4871) } - yyc4868 = true - yyrr4868 = len(yyv4868) - if yyrg4868 { - copy(yyv4868, yyv24868) + yyc4871 = true + yyrr4871 = len(yyv4871) + if yyrg4871 { + copy(yyv4871, yyv24871) } - } else if yyl4868 != len(yyv4868) { - yyv4868 = yyv4868[:yyl4868] - yyc4868 = true + } else if yyl4871 != len(yyv4871) { + yyv4871 = yyv4871[:yyl4871] + yyc4871 = true } - yyj4868 := 0 - for ; yyj4868 < yyrr4868; yyj4868++ { - yyh4868.ElemContainerState(yyj4868) + yyj4871 := 0 + for ; yyj4871 < yyrr4871; yyj4871++ { + yyh4871.ElemContainerState(yyj4871) if r.TryDecodeAsNil() { - yyv4868[yyj4868] = ConfigMap{} + yyv4871[yyj4871] = ConfigMap{} } else { - yyv4869 := &yyv4868[yyj4868] - yyv4869.CodecDecodeSelf(d) + yyv4872 := &yyv4871[yyj4871] + yyv4872.CodecDecodeSelf(d) } } - if yyrt4868 { - for ; yyj4868 < yyl4868; yyj4868++ { - yyv4868 = append(yyv4868, ConfigMap{}) - yyh4868.ElemContainerState(yyj4868) + if yyrt4871 { + for ; yyj4871 < yyl4871; yyj4871++ { + yyv4871 = append(yyv4871, ConfigMap{}) + yyh4871.ElemContainerState(yyj4871) if r.TryDecodeAsNil() { - yyv4868[yyj4868] = ConfigMap{} + yyv4871[yyj4871] = ConfigMap{} } else { - yyv4870 := &yyv4868[yyj4868] - yyv4870.CodecDecodeSelf(d) + yyv4873 := &yyv4871[yyj4871] + yyv4873.CodecDecodeSelf(d) } } } } else { - yyj4868 := 0 - for ; !r.CheckBreak(); yyj4868++ { + yyj4871 := 0 + for ; !r.CheckBreak(); yyj4871++ { - if yyj4868 >= len(yyv4868) { - yyv4868 = append(yyv4868, ConfigMap{}) // var yyz4868 ConfigMap - yyc4868 = true + if yyj4871 >= len(yyv4871) { + yyv4871 = append(yyv4871, ConfigMap{}) // var yyz4871 ConfigMap + yyc4871 = true } - yyh4868.ElemContainerState(yyj4868) - if yyj4868 < len(yyv4868) { + yyh4871.ElemContainerState(yyj4871) + if yyj4871 < len(yyv4871) { if r.TryDecodeAsNil() { - yyv4868[yyj4868] = ConfigMap{} + yyv4871[yyj4871] = ConfigMap{} } else { - yyv4871 := &yyv4868[yyj4868] - yyv4871.CodecDecodeSelf(d) + yyv4874 := &yyv4871[yyj4871] + yyv4874.CodecDecodeSelf(d) } } else { @@ -62767,17 +62823,17 @@ func (x codecSelfer1234) decSliceConfigMap(v *[]ConfigMap, d *codec1978.Decoder) } } - if yyj4868 < len(yyv4868) { - yyv4868 = yyv4868[:yyj4868] - yyc4868 = true - } else if yyj4868 == 0 && yyv4868 == nil { - yyv4868 = []ConfigMap{} - yyc4868 = true + if yyj4871 < len(yyv4871) { + yyv4871 = yyv4871[:yyj4871] + yyc4871 = true + } else if yyj4871 == 0 && yyv4871 == nil { + yyv4871 = []ConfigMap{} + yyc4871 = true } } - yyh4868.End() - if yyc4868 { - *v = yyv4868 + yyh4871.End() + if yyc4871 { + *v = yyv4871 } } @@ -62786,10 +62842,10 @@ func (x codecSelfer1234) encSliceComponentCondition(v []ComponentCondition, e *c z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4872 := range v { + for _, yyv4875 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4873 := &yyv4872 - yy4873.CodecEncodeSelf(e) + yy4876 := &yyv4875 + yy4876.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62799,83 +62855,83 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4874 := *v - yyh4874, yyl4874 := z.DecSliceHelperStart() - var yyc4874 bool - if yyl4874 == 0 { - if yyv4874 == nil { - yyv4874 = []ComponentCondition{} - yyc4874 = true - } else if len(yyv4874) != 0 { - yyv4874 = yyv4874[:0] - yyc4874 = true + yyv4877 := *v + yyh4877, yyl4877 := z.DecSliceHelperStart() + var yyc4877 bool + if yyl4877 == 0 { + if yyv4877 == nil { + yyv4877 = []ComponentCondition{} + yyc4877 = true + } else if len(yyv4877) != 0 { + yyv4877 = yyv4877[:0] + yyc4877 = true } - } else if yyl4874 > 0 { - var yyrr4874, yyrl4874 int - var yyrt4874 bool - if yyl4874 > cap(yyv4874) { + } else if yyl4877 > 0 { + var yyrr4877, yyrl4877 int + var yyrt4877 bool + if yyl4877 > cap(yyv4877) { - yyrg4874 := len(yyv4874) > 0 - yyv24874 := yyv4874 - yyrl4874, yyrt4874 = z.DecInferLen(yyl4874, z.DecBasicHandle().MaxInitLen, 64) - if yyrt4874 { - if yyrl4874 <= cap(yyv4874) { - yyv4874 = yyv4874[:yyrl4874] + yyrg4877 := len(yyv4877) > 0 + yyv24877 := yyv4877 + yyrl4877, yyrt4877 = z.DecInferLen(yyl4877, z.DecBasicHandle().MaxInitLen, 64) + if yyrt4877 { + if yyrl4877 <= cap(yyv4877) { + yyv4877 = yyv4877[:yyrl4877] } else { - yyv4874 = make([]ComponentCondition, yyrl4874) + yyv4877 = make([]ComponentCondition, yyrl4877) } } else { - yyv4874 = make([]ComponentCondition, yyrl4874) + yyv4877 = make([]ComponentCondition, yyrl4877) } - yyc4874 = true - yyrr4874 = len(yyv4874) - if yyrg4874 { - copy(yyv4874, yyv24874) + yyc4877 = true + yyrr4877 = len(yyv4877) + if yyrg4877 { + copy(yyv4877, yyv24877) } - } else if yyl4874 != len(yyv4874) { - yyv4874 = yyv4874[:yyl4874] - yyc4874 = true + } else if yyl4877 != len(yyv4877) { + yyv4877 = yyv4877[:yyl4877] + yyc4877 = true } - yyj4874 := 0 - for ; yyj4874 < yyrr4874; yyj4874++ { - yyh4874.ElemContainerState(yyj4874) + yyj4877 := 0 + for ; yyj4877 < yyrr4877; yyj4877++ { + yyh4877.ElemContainerState(yyj4877) if r.TryDecodeAsNil() { - yyv4874[yyj4874] = ComponentCondition{} + yyv4877[yyj4877] = ComponentCondition{} } else { - yyv4875 := &yyv4874[yyj4874] - yyv4875.CodecDecodeSelf(d) + yyv4878 := &yyv4877[yyj4877] + yyv4878.CodecDecodeSelf(d) } } - if yyrt4874 { - for ; yyj4874 < yyl4874; yyj4874++ { - yyv4874 = append(yyv4874, ComponentCondition{}) - yyh4874.ElemContainerState(yyj4874) + if yyrt4877 { + for ; yyj4877 < yyl4877; yyj4877++ { + yyv4877 = append(yyv4877, ComponentCondition{}) + yyh4877.ElemContainerState(yyj4877) if r.TryDecodeAsNil() { - yyv4874[yyj4874] = ComponentCondition{} + yyv4877[yyj4877] = ComponentCondition{} } else { - yyv4876 := &yyv4874[yyj4874] - yyv4876.CodecDecodeSelf(d) + yyv4879 := &yyv4877[yyj4877] + yyv4879.CodecDecodeSelf(d) } } } } else { - yyj4874 := 0 - for ; !r.CheckBreak(); yyj4874++ { + yyj4877 := 0 + for ; !r.CheckBreak(); yyj4877++ { - if yyj4874 >= len(yyv4874) { - yyv4874 = append(yyv4874, ComponentCondition{}) // var yyz4874 ComponentCondition - yyc4874 = true + if yyj4877 >= len(yyv4877) { + yyv4877 = append(yyv4877, ComponentCondition{}) // var yyz4877 ComponentCondition + yyc4877 = true } - yyh4874.ElemContainerState(yyj4874) - if yyj4874 < len(yyv4874) { + yyh4877.ElemContainerState(yyj4877) + if yyj4877 < len(yyv4877) { if r.TryDecodeAsNil() { - yyv4874[yyj4874] = ComponentCondition{} + yyv4877[yyj4877] = ComponentCondition{} } else { - yyv4877 := &yyv4874[yyj4874] - yyv4877.CodecDecodeSelf(d) + yyv4880 := &yyv4877[yyj4877] + yyv4880.CodecDecodeSelf(d) } } else { @@ -62883,17 +62939,17 @@ func (x codecSelfer1234) decSliceComponentCondition(v *[]ComponentCondition, d * } } - if yyj4874 < len(yyv4874) { - yyv4874 = yyv4874[:yyj4874] - yyc4874 = true - } else if yyj4874 == 0 && yyv4874 == nil { - yyv4874 = []ComponentCondition{} - yyc4874 = true + if yyj4877 < len(yyv4877) { + yyv4877 = yyv4877[:yyj4877] + yyc4877 = true + } else if yyj4877 == 0 && yyv4877 == nil { + yyv4877 = []ComponentCondition{} + yyc4877 = true } } - yyh4874.End() - if yyc4874 { - *v = yyv4874 + yyh4877.End() + if yyc4877 { + *v = yyv4877 } } @@ -62902,10 +62958,10 @@ func (x codecSelfer1234) encSliceComponentStatus(v []ComponentStatus, e *codec19 z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4878 := range v { + for _, yyv4881 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4879 := &yyv4878 - yy4879.CodecEncodeSelf(e) + yy4882 := &yyv4881 + yy4882.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -62915,83 +62971,83 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4880 := *v - yyh4880, yyl4880 := z.DecSliceHelperStart() - var yyc4880 bool - if yyl4880 == 0 { - if yyv4880 == nil { - yyv4880 = []ComponentStatus{} - yyc4880 = true - } else if len(yyv4880) != 0 { - yyv4880 = yyv4880[:0] - yyc4880 = true + yyv4883 := *v + yyh4883, yyl4883 := z.DecSliceHelperStart() + var yyc4883 bool + if yyl4883 == 0 { + if yyv4883 == nil { + yyv4883 = []ComponentStatus{} + yyc4883 = true + } else if len(yyv4883) != 0 { + yyv4883 = yyv4883[:0] + yyc4883 = true } - } else if yyl4880 > 0 { - var yyrr4880, yyrl4880 int - var yyrt4880 bool - if yyl4880 > cap(yyv4880) { + } else if yyl4883 > 0 { + var yyrr4883, yyrl4883 int + var yyrt4883 bool + if yyl4883 > cap(yyv4883) { - yyrg4880 := len(yyv4880) > 0 - yyv24880 := yyv4880 - yyrl4880, yyrt4880 = z.DecInferLen(yyl4880, z.DecBasicHandle().MaxInitLen, 280) - if yyrt4880 { - if yyrl4880 <= cap(yyv4880) { - yyv4880 = yyv4880[:yyrl4880] + yyrg4883 := len(yyv4883) > 0 + yyv24883 := yyv4883 + yyrl4883, yyrt4883 = z.DecInferLen(yyl4883, z.DecBasicHandle().MaxInitLen, 280) + if yyrt4883 { + if yyrl4883 <= cap(yyv4883) { + yyv4883 = yyv4883[:yyrl4883] } else { - yyv4880 = make([]ComponentStatus, yyrl4880) + yyv4883 = make([]ComponentStatus, yyrl4883) } } else { - yyv4880 = make([]ComponentStatus, yyrl4880) + yyv4883 = make([]ComponentStatus, yyrl4883) } - yyc4880 = true - yyrr4880 = len(yyv4880) - if yyrg4880 { - copy(yyv4880, yyv24880) + yyc4883 = true + yyrr4883 = len(yyv4883) + if yyrg4883 { + copy(yyv4883, yyv24883) } - } else if yyl4880 != len(yyv4880) { - yyv4880 = yyv4880[:yyl4880] - yyc4880 = true + } else if yyl4883 != len(yyv4883) { + yyv4883 = yyv4883[:yyl4883] + yyc4883 = true } - yyj4880 := 0 - for ; yyj4880 < yyrr4880; yyj4880++ { - yyh4880.ElemContainerState(yyj4880) + yyj4883 := 0 + for ; yyj4883 < yyrr4883; yyj4883++ { + yyh4883.ElemContainerState(yyj4883) if r.TryDecodeAsNil() { - yyv4880[yyj4880] = ComponentStatus{} + yyv4883[yyj4883] = ComponentStatus{} } else { - yyv4881 := &yyv4880[yyj4880] - yyv4881.CodecDecodeSelf(d) + yyv4884 := &yyv4883[yyj4883] + yyv4884.CodecDecodeSelf(d) } } - if yyrt4880 { - for ; yyj4880 < yyl4880; yyj4880++ { - yyv4880 = append(yyv4880, ComponentStatus{}) - yyh4880.ElemContainerState(yyj4880) + if yyrt4883 { + for ; yyj4883 < yyl4883; yyj4883++ { + yyv4883 = append(yyv4883, ComponentStatus{}) + yyh4883.ElemContainerState(yyj4883) if r.TryDecodeAsNil() { - yyv4880[yyj4880] = ComponentStatus{} + yyv4883[yyj4883] = ComponentStatus{} } else { - yyv4882 := &yyv4880[yyj4880] - yyv4882.CodecDecodeSelf(d) + yyv4885 := &yyv4883[yyj4883] + yyv4885.CodecDecodeSelf(d) } } } } else { - yyj4880 := 0 - for ; !r.CheckBreak(); yyj4880++ { + yyj4883 := 0 + for ; !r.CheckBreak(); yyj4883++ { - if yyj4880 >= len(yyv4880) { - yyv4880 = append(yyv4880, ComponentStatus{}) // var yyz4880 ComponentStatus - yyc4880 = true + if yyj4883 >= len(yyv4883) { + yyv4883 = append(yyv4883, ComponentStatus{}) // var yyz4883 ComponentStatus + yyc4883 = true } - yyh4880.ElemContainerState(yyj4880) - if yyj4880 < len(yyv4880) { + yyh4883.ElemContainerState(yyj4883) + if yyj4883 < len(yyv4883) { if r.TryDecodeAsNil() { - yyv4880[yyj4880] = ComponentStatus{} + yyv4883[yyj4883] = ComponentStatus{} } else { - yyv4883 := &yyv4880[yyj4880] - yyv4883.CodecDecodeSelf(d) + yyv4886 := &yyv4883[yyj4883] + yyv4886.CodecDecodeSelf(d) } } else { @@ -62999,17 +63055,17 @@ func (x codecSelfer1234) decSliceComponentStatus(v *[]ComponentStatus, d *codec1 } } - if yyj4880 < len(yyv4880) { - yyv4880 = yyv4880[:yyj4880] - yyc4880 = true - } else if yyj4880 == 0 && yyv4880 == nil { - yyv4880 = []ComponentStatus{} - yyc4880 = true + if yyj4883 < len(yyv4883) { + yyv4883 = yyv4883[:yyj4883] + yyc4883 = true + } else if yyj4883 == 0 && yyv4883 == nil { + yyv4883 = []ComponentStatus{} + yyc4883 = true } } - yyh4880.End() - if yyc4880 { - *v = yyv4880 + yyh4883.End() + if yyc4883 { + *v = yyv4883 } } @@ -63018,10 +63074,10 @@ func (x codecSelfer1234) encSliceDownwardAPIVolumeFile(v []DownwardAPIVolumeFile z, r := codec1978.GenHelperEncoder(e) _, _, _ = h, z, r r.EncodeArrayStart(len(v)) - for _, yyv4884 := range v { + for _, yyv4887 := range v { z.EncSendContainerState(codecSelfer_containerArrayElem1234) - yy4885 := &yyv4884 - yy4885.CodecEncodeSelf(e) + yy4888 := &yyv4887 + yy4888.CodecEncodeSelf(e) } z.EncSendContainerState(codecSelfer_containerArrayEnd1234) } @@ -63031,83 +63087,83 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil z, r := codec1978.GenHelperDecoder(d) _, _, _ = h, z, r - yyv4886 := *v - yyh4886, yyl4886 := z.DecSliceHelperStart() - var yyc4886 bool - if yyl4886 == 0 { - if yyv4886 == nil { - yyv4886 = []DownwardAPIVolumeFile{} - yyc4886 = true - } else if len(yyv4886) != 0 { - yyv4886 = yyv4886[:0] - yyc4886 = true + yyv4889 := *v + yyh4889, yyl4889 := z.DecSliceHelperStart() + var yyc4889 bool + if yyl4889 == 0 { + if yyv4889 == nil { + yyv4889 = []DownwardAPIVolumeFile{} + yyc4889 = true + } else if len(yyv4889) != 0 { + yyv4889 = yyv4889[:0] + yyc4889 = true } - } else if yyl4886 > 0 { - var yyrr4886, yyrl4886 int - var yyrt4886 bool - if yyl4886 > cap(yyv4886) { + } else if yyl4889 > 0 { + var yyrr4889, yyrl4889 int + var yyrt4889 bool + if yyl4889 > cap(yyv4889) { - yyrg4886 := len(yyv4886) > 0 - yyv24886 := yyv4886 - yyrl4886, yyrt4886 = z.DecInferLen(yyl4886, z.DecBasicHandle().MaxInitLen, 40) - if yyrt4886 { - if yyrl4886 <= cap(yyv4886) { - yyv4886 = yyv4886[:yyrl4886] + yyrg4889 := len(yyv4889) > 0 + yyv24889 := yyv4889 + yyrl4889, yyrt4889 = z.DecInferLen(yyl4889, z.DecBasicHandle().MaxInitLen, 40) + if yyrt4889 { + if yyrl4889 <= cap(yyv4889) { + yyv4889 = yyv4889[:yyrl4889] } else { - yyv4886 = make([]DownwardAPIVolumeFile, yyrl4886) + yyv4889 = make([]DownwardAPIVolumeFile, yyrl4889) } } else { - yyv4886 = make([]DownwardAPIVolumeFile, yyrl4886) + yyv4889 = make([]DownwardAPIVolumeFile, yyrl4889) } - yyc4886 = true - yyrr4886 = len(yyv4886) - if yyrg4886 { - copy(yyv4886, yyv24886) + yyc4889 = true + yyrr4889 = len(yyv4889) + if yyrg4889 { + copy(yyv4889, yyv24889) } - } else if yyl4886 != len(yyv4886) { - yyv4886 = yyv4886[:yyl4886] - yyc4886 = true + } else if yyl4889 != len(yyv4889) { + yyv4889 = yyv4889[:yyl4889] + yyc4889 = true } - yyj4886 := 0 - for ; yyj4886 < yyrr4886; yyj4886++ { - yyh4886.ElemContainerState(yyj4886) + yyj4889 := 0 + for ; yyj4889 < yyrr4889; yyj4889++ { + yyh4889.ElemContainerState(yyj4889) if r.TryDecodeAsNil() { - yyv4886[yyj4886] = DownwardAPIVolumeFile{} + yyv4889[yyj4889] = DownwardAPIVolumeFile{} } else { - yyv4887 := &yyv4886[yyj4886] - yyv4887.CodecDecodeSelf(d) + yyv4890 := &yyv4889[yyj4889] + yyv4890.CodecDecodeSelf(d) } } - if yyrt4886 { - for ; yyj4886 < yyl4886; yyj4886++ { - yyv4886 = append(yyv4886, DownwardAPIVolumeFile{}) - yyh4886.ElemContainerState(yyj4886) + if yyrt4889 { + for ; yyj4889 < yyl4889; yyj4889++ { + yyv4889 = append(yyv4889, DownwardAPIVolumeFile{}) + yyh4889.ElemContainerState(yyj4889) if r.TryDecodeAsNil() { - yyv4886[yyj4886] = DownwardAPIVolumeFile{} + yyv4889[yyj4889] = DownwardAPIVolumeFile{} } else { - yyv4888 := &yyv4886[yyj4886] - yyv4888.CodecDecodeSelf(d) + yyv4891 := &yyv4889[yyj4889] + yyv4891.CodecDecodeSelf(d) } } } } else { - yyj4886 := 0 - for ; !r.CheckBreak(); yyj4886++ { + yyj4889 := 0 + for ; !r.CheckBreak(); yyj4889++ { - if yyj4886 >= len(yyv4886) { - yyv4886 = append(yyv4886, DownwardAPIVolumeFile{}) // var yyz4886 DownwardAPIVolumeFile - yyc4886 = true + if yyj4889 >= len(yyv4889) { + yyv4889 = append(yyv4889, DownwardAPIVolumeFile{}) // var yyz4889 DownwardAPIVolumeFile + yyc4889 = true } - yyh4886.ElemContainerState(yyj4886) - if yyj4886 < len(yyv4886) { + yyh4889.ElemContainerState(yyj4889) + if yyj4889 < len(yyv4889) { if r.TryDecodeAsNil() { - yyv4886[yyj4886] = DownwardAPIVolumeFile{} + yyv4889[yyj4889] = DownwardAPIVolumeFile{} } else { - yyv4889 := &yyv4886[yyj4886] - yyv4889.CodecDecodeSelf(d) + yyv4892 := &yyv4889[yyj4889] + yyv4892.CodecDecodeSelf(d) } } else { @@ -63115,16 +63171,16 @@ func (x codecSelfer1234) decSliceDownwardAPIVolumeFile(v *[]DownwardAPIVolumeFil } } - if yyj4886 < len(yyv4886) { - yyv4886 = yyv4886[:yyj4886] - yyc4886 = true - } else if yyj4886 == 0 && yyv4886 == nil { - yyv4886 = []DownwardAPIVolumeFile{} - yyc4886 = true + if yyj4889 < len(yyv4889) { + yyv4889 = yyv4889[:yyj4889] + yyc4889 = true + } else if yyj4889 == 0 && yyv4889 == nil { + yyv4889 = []DownwardAPIVolumeFile{} + yyc4889 = true } } - yyh4886.End() - if yyc4886 { - *v = yyv4886 + yyh4889.End() + if yyc4889 { + *v = yyv4889 } } diff --git a/pkg/api/v1/types_swagger_doc_generated.go b/pkg/api/v1/types_swagger_doc_generated.go index 27f073743b8..d7dbcea4006 100644 --- a/pkg/api/v1/types_swagger_doc_generated.go +++ b/pkg/api/v1/types_swagger_doc_generated.go @@ -1274,6 +1274,7 @@ var map_PodSpec = map[string]string{ "imagePullSecrets": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: http://kubernetes.io/docs/user-guide/images#specifying-imagepullsecrets-on-a-pod", "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", } func (PodSpec) SwaggerDoc() map[string]string { diff --git a/pkg/api/v1/zz_generated.conversion.go b/pkg/api/v1/zz_generated.conversion.go index c4013b6da4f..df77700c688 100644 --- a/pkg/api/v1/zz_generated.conversion.go +++ b/pkg/api/v1/zz_generated.conversion.go @@ -3064,6 +3064,7 @@ func autoConvert_v1_PodSpec_To_api_PodSpec(in *PodSpec, out *api.PodSpec, s conv out.ImagePullSecrets = *(*[]api.LocalObjectReference)(unsafe.Pointer(&in.ImagePullSecrets)) out.Hostname = in.Hostname out.Subdomain = in.Subdomain + out.Affinity = (*api.Affinity)(unsafe.Pointer(in.Affinity)) return nil } @@ -3100,6 +3101,7 @@ func autoConvert_api_PodSpec_To_v1_PodSpec(in *api.PodSpec, out *PodSpec, s conv out.ImagePullSecrets = *(*[]LocalObjectReference)(unsafe.Pointer(&in.ImagePullSecrets)) out.Hostname = in.Hostname out.Subdomain = in.Subdomain + out.Affinity = (*Affinity)(unsafe.Pointer(in.Affinity)) return nil } diff --git a/pkg/api/v1/zz_generated.deepcopy.go b/pkg/api/v1/zz_generated.deepcopy.go index e370dff1562..2e41e827a0b 100644 --- a/pkg/api/v1/zz_generated.deepcopy.go +++ b/pkg/api/v1/zz_generated.deepcopy.go @@ -2660,6 +2660,15 @@ func DeepCopy_v1_PodSpec(in interface{}, out interface{}, c *conversion.Cloner) } out.Hostname = in.Hostname out.Subdomain = in.Subdomain + if in.Affinity != nil { + in, out := &in.Affinity, &out.Affinity + *out = new(Affinity) + if err := DeepCopy_v1_Affinity(*in, *out, c); err != nil { + return err + } + } else { + out.Affinity = nil + } return nil } } diff --git a/pkg/api/zz_generated.deepcopy.go b/pkg/api/zz_generated.deepcopy.go index dfbbbf2bf51..e1358e98c39 100644 --- a/pkg/api/zz_generated.deepcopy.go +++ b/pkg/api/zz_generated.deepcopy.go @@ -2699,6 +2699,15 @@ func DeepCopy_api_PodSpec(in interface{}, out interface{}, c *conversion.Cloner) } out.Hostname = in.Hostname out.Subdomain = in.Subdomain + if in.Affinity != nil { + in, out := &in.Affinity, &out.Affinity + *out = new(Affinity) + if err := DeepCopy_api_Affinity(*in, *out, c); err != nil { + return err + } + } else { + out.Affinity = nil + } return nil } } diff --git a/pkg/apis/apps/v1beta1/types.generated.go b/pkg/apis/apps/v1beta1/types.generated.go index 71ee844caaa..f84f2ba00ed 100644 --- a/pkg/apis/apps/v1beta1/types.generated.go +++ b/pkg/apis/apps/v1beta1/types.generated.go @@ -1577,7 +1577,7 @@ func (x codecSelfer1234) decSliceStatefulSet(v *[]StatefulSet, d *codec1978.Deco yyrg131 := len(yyv131) > 0 yyv2131 := yyv131 - yyrl131, yyrt131 = z.DecInferLen(yyl131, z.DecBasicHandle().MaxInitLen, 800) + yyrl131, yyrt131 = z.DecInferLen(yyl131, z.DecBasicHandle().MaxInitLen, 808) if yyrt131 { if yyrl131 <= cap(yyv131) { yyv131 = yyv131[:yyrl131] diff --git a/pkg/apis/batch/v1/types.generated.go b/pkg/apis/batch/v1/types.generated.go index 7242a724186..3c9fb3c2690 100644 --- a/pkg/apis/batch/v1/types.generated.go +++ b/pkg/apis/batch/v1/types.generated.go @@ -2352,7 +2352,7 @@ func (x codecSelfer1234) decSliceJob(v *[]Job, d *codec1978.Decoder) { yyrg206 := len(yyv206) > 0 yyv2206 := yyv206 - yyrl206, yyrt206 = z.DecInferLen(yyl206, z.DecBasicHandle().MaxInitLen, 824) + yyrl206, yyrt206 = z.DecInferLen(yyl206, z.DecBasicHandle().MaxInitLen, 832) if yyrt206 { if yyrl206 <= cap(yyv206) { yyv206 = yyv206[:yyrl206] diff --git a/pkg/apis/batch/v2alpha1/types.generated.go b/pkg/apis/batch/v2alpha1/types.generated.go index c69dc1effc2..38bf9e54c45 100644 --- a/pkg/apis/batch/v2alpha1/types.generated.go +++ b/pkg/apis/batch/v2alpha1/types.generated.go @@ -4247,7 +4247,7 @@ func (x codecSelfer1234) decSliceJob(v *[]Job, d *codec1978.Decoder) { yyrg370 := len(yyv370) > 0 yyv2370 := yyv370 - yyrl370, yyrt370 = z.DecInferLen(yyl370, z.DecBasicHandle().MaxInitLen, 824) + yyrl370, yyrt370 = z.DecInferLen(yyl370, z.DecBasicHandle().MaxInitLen, 832) if yyrt370 { if yyrl370 <= cap(yyv370) { yyv370 = yyv370[:yyrl370] @@ -4479,7 +4479,7 @@ func (x codecSelfer1234) decSliceCronJob(v *[]CronJob, d *codec1978.Decoder) { yyrg382 := len(yyv382) > 0 yyv2382 := yyv382 - yyrl382, yyrt382 = z.DecInferLen(yyl382, z.DecBasicHandle().MaxInitLen, 1072) + yyrl382, yyrt382 = z.DecInferLen(yyl382, z.DecBasicHandle().MaxInitLen, 1080) if yyrt382 { if yyrl382 <= cap(yyv382) { yyv382 = yyv382[:yyrl382] diff --git a/pkg/apis/extensions/v1beta1/types.generated.go b/pkg/apis/extensions/v1beta1/types.generated.go index 9a2a95e0f95..c682803a52d 100644 --- a/pkg/apis/extensions/v1beta1/types.generated.go +++ b/pkg/apis/extensions/v1beta1/types.generated.go @@ -21849,7 +21849,7 @@ func (x codecSelfer1234) decSliceDeployment(v *[]Deployment, d *codec1978.Decode yyrg1828 := len(yyv1828) > 0 yyv21828 := yyv1828 - yyrl1828, yyrt1828 = z.DecInferLen(yyl1828, z.DecBasicHandle().MaxInitLen, 856) + yyrl1828, yyrt1828 = z.DecInferLen(yyl1828, z.DecBasicHandle().MaxInitLen, 864) if yyrt1828 { if yyrl1828 <= cap(yyv1828) { yyv1828 = yyv1828[:yyrl1828] @@ -21965,7 +21965,7 @@ func (x codecSelfer1234) decSliceDaemonSet(v *[]DaemonSet, d *codec1978.Decoder) yyrg1834 := len(yyv1834) > 0 yyv21834 := yyv1834 - yyrl1834, yyrt1834 = z.DecInferLen(yyl1834, z.DecBasicHandle().MaxInitLen, 752) + yyrl1834, yyrt1834 = z.DecInferLen(yyl1834, z.DecBasicHandle().MaxInitLen, 760) if yyrt1834 { if yyrl1834 <= cap(yyv1834) { yyv1834 = yyv1834[:yyrl1834] @@ -22197,7 +22197,7 @@ func (x codecSelfer1234) decSliceJob(v *[]Job, d *codec1978.Decoder) { yyrg1846 := len(yyv1846) > 0 yyv21846 := yyv1846 - yyrl1846, yyrt1846 = z.DecInferLen(yyl1846, z.DecBasicHandle().MaxInitLen, 824) + yyrl1846, yyrt1846 = z.DecInferLen(yyl1846, z.DecBasicHandle().MaxInitLen, 832) if yyrt1846 { if yyrl1846 <= cap(yyv1846) { yyv1846 = yyv1846[:yyrl1846] @@ -22893,7 +22893,7 @@ func (x codecSelfer1234) decSliceReplicaSet(v *[]ReplicaSet, d *codec1978.Decode yyrg1882 := len(yyv1882) > 0 yyv21882 := yyv1882 - yyrl1882, yyrt1882 = z.DecInferLen(yyl1882, z.DecBasicHandle().MaxInitLen, 800) + yyrl1882, yyrt1882 = z.DecInferLen(yyl1882, z.DecBasicHandle().MaxInitLen, 808) if yyrt1882 { if yyrl1882 <= cap(yyv1882) { yyv1882 = yyv1882[:yyrl1882] diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index 37f07781f6a..854acfbe8ce 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -5373,12 +5373,18 @@ var OpenAPIDefinitions *common.OpenAPIDefinitions = &common.OpenAPIDefinitions{ Format: "", }, }, + "affinity": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, the pod's scheduling constraints", + Ref: spec.MustCreateRef("#/definitions/v1.Affinity"), + }, + }, }, Required: []string{"containers"}, }, }, Dependencies: []string{ - "v1.Container", "v1.LocalObjectReference", "v1.PodSecurityContext", "v1.Volume"}, + "v1.Affinity", "v1.Container", "v1.LocalObjectReference", "v1.PodSecurityContext", "v1.Volume"}, }, "v1.PodStatus": { Schema: spec.Schema{ diff --git a/staging/src/k8s.io/client-go/pkg/apis/apps/types.generated.go b/staging/src/k8s.io/client-go/pkg/apis/apps/types.generated.go index 033162a0957..261dbdd952d 100644 --- a/staging/src/k8s.io/client-go/pkg/apis/apps/types.generated.go +++ b/staging/src/k8s.io/client-go/pkg/apis/apps/types.generated.go @@ -1547,7 +1547,7 @@ func (x codecSelfer1234) decSliceStatefulSet(v *[]StatefulSet, d *codec1978.Deco yyrg127 := len(yyv127) > 0 yyv2127 := yyv127 - yyrl127, yyrt127 = z.DecInferLen(yyl127, z.DecBasicHandle().MaxInitLen, 776) + yyrl127, yyrt127 = z.DecInferLen(yyl127, z.DecBasicHandle().MaxInitLen, 784) if yyrt127 { if yyrl127 <= cap(yyv127) { yyv127 = yyv127[:yyrl127] diff --git a/staging/src/k8s.io/client-go/pkg/apis/batch/types.generated.go b/staging/src/k8s.io/client-go/pkg/apis/batch/types.generated.go index a4c1cc859b1..18a4f98051e 100644 --- a/staging/src/k8s.io/client-go/pkg/apis/batch/types.generated.go +++ b/staging/src/k8s.io/client-go/pkg/apis/batch/types.generated.go @@ -4247,7 +4247,7 @@ func (x codecSelfer1234) decSliceJob(v *[]Job, d *codec1978.Decoder) { yyrg370 := len(yyv370) > 0 yyv2370 := yyv370 - yyrl370, yyrt370 = z.DecInferLen(yyl370, z.DecBasicHandle().MaxInitLen, 800) + yyrl370, yyrt370 = z.DecInferLen(yyl370, z.DecBasicHandle().MaxInitLen, 808) if yyrt370 { if yyrl370 <= cap(yyv370) { yyv370 = yyv370[:yyrl370] @@ -4479,7 +4479,7 @@ func (x codecSelfer1234) decSliceCronJob(v *[]CronJob, d *codec1978.Decoder) { yyrg382 := len(yyv382) > 0 yyv2382 := yyv382 - yyrl382, yyrt382 = z.DecInferLen(yyl382, z.DecBasicHandle().MaxInitLen, 1048) + yyrl382, yyrt382 = z.DecInferLen(yyl382, z.DecBasicHandle().MaxInitLen, 1056) if yyrt382 { if yyrl382 <= cap(yyv382) { yyv382 = yyv382[:yyrl382] diff --git a/staging/src/k8s.io/client-go/pkg/apis/extensions/types.generated.go b/staging/src/k8s.io/client-go/pkg/apis/extensions/types.generated.go index 2ebcb6e3673..d7ddbeefa8e 100644 --- a/staging/src/k8s.io/client-go/pkg/apis/extensions/types.generated.go +++ b/staging/src/k8s.io/client-go/pkg/apis/extensions/types.generated.go @@ -17413,7 +17413,7 @@ func (x codecSelfer1234) decSliceDeployment(v *[]Deployment, d *codec1978.Decode yyrg1441 := len(yyv1441) > 0 yyv21441 := yyv1441 - yyrl1441, yyrt1441 = z.DecInferLen(yyl1441, z.DecBasicHandle().MaxInitLen, 832) + yyrl1441, yyrt1441 = z.DecInferLen(yyl1441, z.DecBasicHandle().MaxInitLen, 840) if yyrt1441 { if yyrl1441 <= cap(yyv1441) { yyv1441 = yyv1441[:yyrl1441] @@ -17529,7 +17529,7 @@ func (x codecSelfer1234) decSliceDaemonSet(v *[]DaemonSet, d *codec1978.Decoder) yyrg1447 := len(yyv1447) > 0 yyv21447 := yyv1447 - yyrl1447, yyrt1447 = z.DecInferLen(yyl1447, z.DecBasicHandle().MaxInitLen, 728) + yyrl1447, yyrt1447 = z.DecInferLen(yyl1447, z.DecBasicHandle().MaxInitLen, 736) if yyrt1447 { if yyrl1447 <= cap(yyv1447) { yyv1447 = yyv1447[:yyrl1447] @@ -18225,7 +18225,7 @@ func (x codecSelfer1234) decSliceReplicaSet(v *[]ReplicaSet, d *codec1978.Decode yyrg1483 := len(yyv1483) > 0 yyv21483 := yyv1483 - yyrl1483, yyrt1483 = z.DecInferLen(yyl1483, z.DecBasicHandle().MaxInitLen, 768) + yyrl1483, yyrt1483 = z.DecInferLen(yyl1483, z.DecBasicHandle().MaxInitLen, 776) if yyrt1483 { if yyrl1483 <= cap(yyv1483) { yyv1483 = yyv1483[:yyrl1483] diff --git a/test/test_owners.csv b/test/test_owners.csv index df920368d1a..c9ec1b5028d 100644 --- a/test/test_owners.csv +++ b/test/test_owners.csv @@ -5,7 +5,7 @@ AppArmor should enforce an AppArmor profile,derekwaynecarr,0 AppArmor when running with AppArmor should enforce a permissive profile,yujuhong,1 AppArmor when running with AppArmor should enforce a profile blocking writes,freehan,1 AppArmor when running with AppArmor should reject an unloaded profile,kargakis,1 -AppArmor when running without AppArmor should reject a pod with an AppArmor profile,derekwaynecarr,0 +AppArmor when running without AppArmor should reject a pod with an AppArmor profile,rrati,0 Cadvisor should be healthy on every node.,vishh,0 Cassandra should create and scale cassandra,fabioy,1 CassandraStatefulSet should create statefulset,wojtek-t,1 @@ -19,14 +19,14 @@ Cluster size autoscaling should increase cluster size if pending pods are small, Cluster size autoscaling should increase cluster size if pending pods are small and there is another node pool that is not autoscaled,apelisse,1 Cluster size autoscaling should increase cluster size if pods are pending due to host port conflict,brendandburns,1 Cluster size autoscaling should scale up correct target pool,mikedanese,1 -Cluster size autoscaling shouldn't increase cluster size if pending pod is too large,derekwaynecarr,0 +Cluster size autoscaling shouldn't increase cluster size if pending pod is too large,rrati,0 ClusterDns should create pod that uses dns,sttts,0 ConfigMap should be consumable from pods in volume,alex-mohr,1 -ConfigMap should be consumable from pods in volume as non-root,derekwaynecarr,0 +ConfigMap should be consumable from pods in volume as non-root,rrati,0 ConfigMap should be consumable from pods in volume as non-root with FSGroup,roberthbailey,1 -ConfigMap should be consumable from pods in volume as non-root with defaultMode and fsGroup set,derekwaynecarr,0 +ConfigMap should be consumable from pods in volume as non-root with defaultMode and fsGroup set,rrati,0 ConfigMap should be consumable from pods in volume with defaultMode set,Random-Liu,1 -ConfigMap should be consumable from pods in volume with mappings,derekwaynecarr,0 +ConfigMap should be consumable from pods in volume with mappings,rrati,0 ConfigMap should be consumable from pods in volume with mappings and Item mode set,eparis,1 ConfigMap should be consumable from pods in volume with mappings as non-root,apelisse,1 ConfigMap should be consumable from pods in volume with mappings as non-root with FSGroup,zmerlynn,1 @@ -34,7 +34,7 @@ ConfigMap should be consumable in multiple volumes in the same pod,caesarxuchao, ConfigMap should be consumable via environment variable,ncdc,1 ConfigMap updates should be reflected in volume,kevin-wangzefeng,1 Container Lifecycle Hook when create a pod with lifecycle hook when it is exec hook should execute poststart exec hook properly,kargakis,1 -Container Lifecycle Hook when create a pod with lifecycle hook when it is exec hook should execute prestop exec hook properly,derekwaynecarr,0 +Container Lifecycle Hook when create a pod with lifecycle hook when it is exec hook should execute prestop exec hook properly,rrati,0 Container Lifecycle Hook when create a pod with lifecycle hook when it is http hook should execute poststart http hook properly,vishh,1 Container Lifecycle Hook when create a pod with lifecycle hook when it is http hook should execute prestop http hook properly,freehan,1 Container Runtime Conformance Test container runtime conformance blackbox test when running a container with a new image *,Random-Liu,0 @@ -56,14 +56,14 @@ DNS should provide DNS for the cluster,roberthbailey,1 Daemon set should run and stop complex daemon,jlowdermilk,1 Daemon set should run and stop complex daemon with node affinity,erictune,1 Daemon set should run and stop simple daemon,mtaufen,1 -DaemonRestart Controller Manager should not create/delete replicas across restart,derekwaynecarr,0 +DaemonRestart Controller Manager should not create/delete replicas across restart,rrati,0 DaemonRestart Kubelet should not restart containers across restart,madhusudancs,1 DaemonRestart Scheduler should continue assigning pods to nodes across restart,lavalamp,1 Density create a batch of pods latency/resource should be within limit when create * pods with * interval,apelisse,1 Density create a batch of pods with higher API QPS latency/resource should be within limit when create * pods with * interval (QPS *),jlowdermilk,1 Density create a sequence of pods latency/resource should be within limit when create * pods with * background pods,wojtek-t,1 Density should allow running maximum capacity pods on nodes,smarterclayton,1 -Density should allow starting * pods per node using *,derekwaynecarr,0 +Density should allow starting * pods per node using * with * secrets,rrati,0 Deployment RecreateDeployment should delete old pods and create new ones,pwittrock,0 Deployment RollingUpdateDeployment should delete old pods and create new ones,pwittrock,0 Deployment deployment reaping should cascade to its replica sets and pods,wojtek-t,1 @@ -97,18 +97,18 @@ Downward API volume should provide container's memory limit,krousey,1 Downward API volume should provide container's memory request,mikedanese,1 Downward API volume should provide node allocatable (cpu) as default cpu limit if the limit is not set,lavalamp,1 Downward API volume should provide node allocatable (memory) as default memory limit if the limit is not set,freehan,1 -Downward API volume should provide podname as non-root with fsgroup,derekwaynecarr,0 -Downward API volume should provide podname as non-root with fsgroup and defaultMode,derekwaynecarr,0 +Downward API volume should provide podname as non-root with fsgroup,rrati,0 +Downward API volume should provide podname as non-root with fsgroup and defaultMode,rrati,0 Downward API volume should provide podname only,mwielgus,1 Downward API volume should set DefaultMode on files,davidopp,1 Downward API volume should set mode on item file,mtaufen,1 Downward API volume should update annotations on modification,eparis,1 Downward API volume should update labels on modification,timothysc,1 -Dynamic provisioning DynamicProvisioner Alpha should create and delete alpha persistent volumes,derekwaynecarr,0 +Dynamic provisioning DynamicProvisioner Alpha should create and delete alpha persistent volumes,rrati,0 Dynamic provisioning DynamicProvisioner should create and delete persistent volumes,jsafrane,0 DynamicKubeletConfiguration When a configmap called `kubelet-` is added to the `kube-system` namespace The Kubelet on that node should restart to take up the new config,mwielgus,1 ESIPP should handle updates to source ip annotation,jsafrane,1 -ESIPP should only target nodes with endpoints,derekwaynecarr,0 +ESIPP should only target nodes with endpoints,rrati,0 ESIPP should work for type=LoadBalancer,fgrzadkowski,1 ESIPP should work for type=NodePort,kargakis,1 ESIPP should work from pods,cjcullen,1 @@ -142,19 +142,19 @@ Federated Services DNS non-local federated service missing local service should Federated Services DNS non-local federated service should be able to discover a non-local federated service,jlowdermilk,1 Federated Services DNS should be able to discover a federated service,derekwaynecarr,1 Federated Services Service creation should create matching services in underlying clusters,jbeda,1 -Federated Services Service creation should not be deleted from underlying clusters when it is deleted,derekwaynecarr,0 +Federated Services Service creation should not be deleted from underlying clusters when it is deleted,madhusudancs,0 Federated Services Service creation should succeed,rmmh,1 Federated ingresses Federated Ingresses Ingress connectivity and DNS should be able to connect to a federated ingress via its load balancer,rmmh,1 Federated ingresses Federated Ingresses should be created and deleted successfully,dchen1107,1 Federated ingresses Federated Ingresses should be deleted from underlying clusters when OrphanDependents is false,nikhiljindal,0 -Federated ingresses Federated Ingresses should create and update matching ingresses in underlying clusters,derekwaynecarr,0 +Federated ingresses Federated Ingresses should create and update matching ingresses in underlying clusters,rrati,0 Federated ingresses Federated Ingresses should not be deleted from underlying clusters when OrphanDependents is nil,nikhiljindal,0 Federated ingresses Federated Ingresses should not be deleted from underlying clusters when OrphanDependents is true,nikhiljindal,0 Federation API server authentication should accept cluster resources when the client has right authentication credentials,davidopp,1 Federation API server authentication should not accept cluster resources when the client has invalid authentication credentials,yujuhong,1 Federation API server authentication should not accept cluster resources when the client has no authentication credentials,nikhiljindal,1 Federation apiserver Admission control should not be able to create resources if namespace does not exist,alex-mohr,1 -Federation apiserver Cluster objects should be created and deleted successfully,derekwaynecarr,0 +Federation apiserver Cluster objects should be created and deleted successfully,rrati,0 Federation daemonsets DaemonSet objects should be created and deleted successfully,nikhiljindal,0 Federation daemonsets DaemonSet objects should be deleted from underlying clusters when OrphanDependents is false,nikhiljindal,0 Federation daemonsets DaemonSet objects should not be deleted from underlying clusters when OrphanDependents is nil,nikhiljindal,0 @@ -164,7 +164,7 @@ Federation deployments Federated Deployment should be deleted from underlying cl Federation deployments Federated Deployment should create and update matching deployments in underling clusters,soltysh,1 Federation deployments Federated Deployment should not be deleted from underlying clusters when OrphanDependents is nil,nikhiljindal,0 Federation deployments Federated Deployment should not be deleted from underlying clusters when OrphanDependents is true,nikhiljindal,0 -Federation events Event objects should be created and deleted successfully,derekwaynecarr,0 +Federation events Event objects should be created and deleted successfully,rrati,0 Federation namespace Namespace objects all resources in the namespace should be deleted when namespace is deleted,nikhiljindal,0 Federation namespace Namespace objects should be created and deleted successfully,xiang90,1 Federation namespace Namespace objects should be deleted from underlying clusters when OrphanDependents is false,nikhiljindal,0 @@ -187,7 +187,7 @@ Garbage Collection Test: * Should eventually garbage collect containers when we Garbage collector should delete pods created by rc when not orphaning,justinsb,1 Garbage collector should orphan pods created by rc if delete options say so,fabioy,1 Garbage collector should orphan pods created by rc if deleteOptions.OrphanDependents is nil,zmerlynn,1 -"Generated release_1_5 clientset should create pods, delete pods, watch pods",derekwaynecarr,0 +"Generated release_1_5 clientset should create pods, delete pods, watch pods",rrati,0 "Generated release_1_5 clientset should create v2alpha1 cronJobs, delete cronJobs, watch cronJobs",soltysh,1 HA-master survive addition/removal replicas different zones,derekwaynecarr,0 HA-master survive addition/removal replicas same zone,derekwaynecarr,0 @@ -202,9 +202,9 @@ Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Sho HostPath should give a volume the correct mode,thockin,1 HostPath should support r/w,luxas,1 HostPath should support subPath,sttts,1 -ImageID should be set to the manifest digest (from RepoDigests) when available,derekwaynecarr,0 +ImageID should be set to the manifest digest (from RepoDigests) when available,rrati,0 InitContainer should invoke init containers on a RestartAlways pod,saad-ali,1 -InitContainer should invoke init containers on a RestartNever pod,derekwaynecarr,0 +InitContainer should invoke init containers on a RestartNever pod,rrati,0 InitContainer should not start app containers and fail the pod if init containers fail on a RestartNever pod,maisem,0 InitContainer should not start app containers if init containers fail on a RestartAlways pod,maisem,0 Initial Resources should set initial resources based on historical data,piosz,0 @@ -224,7 +224,7 @@ Kubectl client Kubectl api-versions should check if v1 is in available api versi Kubectl client Kubectl apply should apply a new configuration to an existing RC,pwittrock,0 Kubectl client Kubectl apply should reuse port when apply to an existing SVC,deads2k,0 Kubectl client Kubectl cluster-info should check if Kubernetes master services is included in cluster-info,pwittrock,0 -Kubectl client Kubectl create quota should create a quota with scopes,derekwaynecarr,0 +Kubectl client Kubectl create quota should create a quota with scopes,rrati,0 Kubectl client Kubectl create quota should create a quota without scopes,xiang90,1 Kubectl client Kubectl create quota should reject quota with invalid scopes,brendandburns,1 Kubectl client Kubectl describe should check if kubectl describe prints relevant information for rc and pods,pwittrock,0 @@ -232,7 +232,7 @@ Kubectl client Kubectl expose should create services for rc,pwittrock,0 Kubectl client Kubectl label should update the label on a resource,pwittrock,0 Kubectl client Kubectl logs should be able to retrieve and filter logs,jlowdermilk,0 Kubectl client Kubectl patch should add annotations for pods in rc,janetkuo,0 -Kubectl client Kubectl replace should update a single-container pod's image,derekwaynecarr,0 +Kubectl client Kubectl replace should update a single-container pod's image,rrati,0 Kubectl client Kubectl rolling-update should support rolling-update to same image,janetkuo,0 "Kubectl client Kubectl run --rm job should create a job from an image, then delete the job",soltysh,1 Kubectl client Kubectl run default should create an rc or deployment from an image,janetkuo,0 @@ -262,7 +262,7 @@ Kubelet Container Manager Validate OOM score adjustments once the node is setup Kubelet Container Manager Validate OOM score adjustments once the node is setup docker daemon's oom-score-adj should be -999,thockin,1 Kubelet Container Manager Validate OOM score adjustments once the node is setup guaranteed container's oom-score-adj should be -998,kargakis,1 Kubelet Container Manager Validate OOM score adjustments once the node is setup pod infra containers oom-score-adj should be -998 and best effort container's should be 1000,timothysc,1 -Kubelet Eviction Manager hard eviction test pod using the most disk space gets evicted when the node disk usage is above the eviction hard threshold should evict the pod using the most disk space,derekwaynecarr,0 +Kubelet Eviction Manager hard eviction test pod using the most disk space gets evicted when the node disk usage is above the eviction hard threshold should evict the pod using the most disk space,rrati,0 Kubelet Volume Manager Volume Manager On terminatation of pod with memory backed volume should remove the volume from the node,derekwaynecarr,0 Kubelet experimental resource usage tracking resource tracking for * pods per node,yujuhong,0 Kubelet regular resource usage tracking resource tracking for * pods per node,yujuhong,0 @@ -273,10 +273,10 @@ Kubelet when scheduling a read only busybox container it should not write to roo KubeletManagedEtcHosts should test kubelet managed /etc/hosts file,Random-Liu,1 Kubernetes Dashboard should check that the kubernetes-dashboard instance is alive,wonderfly,0 LimitRange should create a LimitRange with defaults and ensure pod has those defaults applied.,cjcullen,1 -Liveness liveness pods should be automatically restarted,derekwaynecarr,0 -Load capacity should be able to handle * pods per node *,derekwaynecarr,0 -Loadbalancing: L7 GCE shoud create ingress with given static-ip,derekwaynecarr,0 -Loadbalancing: L7 GCE should conform to Ingress spec,derekwaynecarr,0 +Liveness liveness pods should be automatically restarted,rrati,0 +Load capacity should be able to handle * pods per node * with * secrets,rrati,0 +Loadbalancing: L7 GCE shoud create ingress with given static-ip,rrati,0 +Loadbalancing: L7 GCE should conform to Ingress spec,rrati,0 Loadbalancing: L7 Nginx should conform to Ingress spec,ncdc,1 "Logging soak should survive logging 1KB every * seconds, for a duration of *, scaling up to * pods per node",justinsb,1 "MemoryEviction when there is memory pressure should evict pods in the correct order (besteffort first, then burstable, then guaranteed)",ixdy,1 @@ -302,7 +302,7 @@ Network Partition Pods should return to running and ready state after network pa Network Partition should come back up if node goes down,foxish,0 Network Partition should create new pods when node is partitioned,foxish,0 Network Partition should eagerly create replacement pod during network partition when termination grace is non-zero,foxish,0 -Network Partition should not reschedule pets if there is a network partition,foxish,0 +Network Partition should not reschedule stateful pods if there is a network partition,rrati,0 Network should set TCP CLOSE_WAIT timeout,bowei,0 Networking Granular Checks: Pods should function for intra-pod communication: http,stts,0 Networking Granular Checks: Pods should function for intra-pod communication: udp,freehan,0 @@ -314,7 +314,7 @@ Networking Granular Checks: Services should function for node-Service: http,thoc Networking Granular Checks: Services should function for node-Service: udp,yifan-gu,1 Networking Granular Checks: Services should function for pod-Service: http,childsb,1 Networking Granular Checks: Services should function for pod-Service: udp,brendandburns,1 -Networking Granular Checks: Services should update endpoints: http,derekwaynecarr,0 +Networking Granular Checks: Services should update endpoints: http,rrati,0 Networking Granular Checks: Services should update endpoints: udp,freehan,1 Networking Granular Checks: Services should update nodePort: http,nikhiljindal,1 Networking Granular Checks: Services should update nodePort: udp,smarterclayton,1 @@ -339,7 +339,7 @@ PersistentVolumes with multiple PVs and PVCs all in same ns should create 3 PVs PersistentVolumes with multiple PVs and PVCs all in same ns should create 4 PVs and 2 PVCs: test write access,caesarxuchao,1 Pet Store should scale to persist a nominal number ( * ) of transactions in * seconds,xiang90,1 "Pod Disks Should schedule a pod w/ a RW PD, gracefully remove it, then schedule it on another host",alex-mohr,1 -"Pod Disks Should schedule a pod w/ a readonly PD on two hosts, then remove both gracefully.",derekwaynecarr,0 +"Pod Disks Should schedule a pod w/ a readonly PD on two hosts, then remove both gracefully.",rrati,0 "Pod Disks should schedule a pod w/ a RW PD shared between multiple containers, write to PD, delete pod, verify contents, and repeat in rapid succession",saad-ali,0 "Pod Disks should schedule a pod w/ a RW PD, ungracefully remove it, then schedule it on another host",mml,1 "Pod Disks should schedule a pod w/ a readonly PD on two hosts, then remove both ungracefully.",saad-ali,1 @@ -368,11 +368,11 @@ Probing container should be restarted with a docker exec liveness probe with tim Probing container should have monotonically increasing restart count,Random-Liu,0 Probing container with readiness probe should not be ready before initial delay and never restart,Random-Liu,0 Probing container with readiness probe that fails should never be ready and never restart,Random-Liu,0 -Proxy * should proxy logs on node,derekwaynecarr,0 -Proxy * should proxy logs on node using proxy subresource,derekwaynecarr,0 +Proxy * should proxy logs on node,rrati,0 +Proxy * should proxy logs on node using proxy subresource,rrati,0 Proxy * should proxy logs on node with explicit kubelet port,ixdy,1 Proxy * should proxy logs on node with explicit kubelet port using proxy subresource,dchen1107,1 -Proxy * should proxy through a service and a pod,derekwaynecarr,0 +Proxy * should proxy through a service and a pod,rrati,0 Proxy * should proxy to cadvisor,jszczepkowski,1 Proxy * should proxy to cadvisor using proxy subresource,roberthbailey,1 Reboot each node by dropping all inbound packets for a while and ensure they function afterwards,quinton-hoole,0 @@ -394,19 +394,19 @@ ResourceQuota should create a ResourceQuota and capture the life of a configMap. ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim with a storage class.,derekwaynecarr,0 ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim.,bgrant0607,1 ResourceQuota should create a ResourceQuota and capture the life of a pod.,pmorie,1 -ResourceQuota should create a ResourceQuota and capture the life of a replication controller.,derekwaynecarr,0 +ResourceQuota should create a ResourceQuota and capture the life of a replication controller.,rrati,0 ResourceQuota should create a ResourceQuota and capture the life of a secret.,ncdc,1 ResourceQuota should create a ResourceQuota and capture the life of a service.,timstclair,1 ResourceQuota should create a ResourceQuota and ensure its status is promptly calculated.,krousey,1 ResourceQuota should verify ResourceQuota with best effort scope.,mml,1 ResourceQuota should verify ResourceQuota with terminating scopes.,ncdc,1 Restart Docker Daemon Network should recover from ip leak,bprashanth,0 -Restart should restart all nodes and ensure all nodes and pods recover,derekwaynecarr,0 +Restart should restart all nodes and ensure all nodes and pods recover,rrati,0 RethinkDB should create and stop rethinkdb servers,mwielgus,1 SSH should SSH to all nodes and run commands,quinton-hoole,0 SchedulerPredicates validates MaxPods limit number of pods that are allowed to run,gmarek,0 SchedulerPredicates validates resource limits of pods that are allowed to run,gmarek,0 -SchedulerPredicates validates that Inter-pod-Affinity is respected if not matching,derekwaynecarr,0 +SchedulerPredicates validates that Inter-pod-Affinity is respected if not matching,rrati,0 SchedulerPredicates validates that InterPod Affinity and AntiAffinity is respected if matching,yifan-gu,1 SchedulerPredicates validates that InterPodAffinity is respected if matching,kevin-wangzefeng,1 SchedulerPredicates validates that InterPodAffinity is respected if matching with multiple Affinities,caesarxuchao,1 @@ -416,23 +416,22 @@ SchedulerPredicates validates that NodeSelector is respected if matching,gmarek, SchedulerPredicates validates that NodeSelector is respected if not matching,gmarek,0 SchedulerPredicates validates that a pod with an invalid NodeAffinity is rejected,deads2k,1 SchedulerPredicates validates that a pod with an invalid podAffinity is rejected because of the LabelSelectorRequirement is invalid,smarterclayton,1 -SchedulerPredicates validates that embedding the JSON NodeAffinity setting as a string in the annotation value work,kevin-wangzefeng,1 -SchedulerPredicates validates that embedding the JSON PodAffinity and PodAntiAffinity setting as a string in the annotation value work,derekwaynecarr,0 +SchedulerPredicates validates that embedding the JSON PodAffinity and PodAntiAffinity setting as a string in the annotation value work,rrati,0 SchedulerPredicates validates that required NodeAffinity setting is respected if matching,mml,1 SchedulerPredicates validates that taints-tolerations is respected if matching,jlowdermilk,1 SchedulerPredicates validates that taints-tolerations is respected if not matching,derekwaynecarr,1 Secret should create a pod that reads a secret,luxas,1 Secrets should be able to mount in a volume regardless of a different secret existing with same name in different namespace,rkouj,0 Secrets should be consumable from pods in env vars,mml,1 -Secrets should be consumable from pods in volume,derekwaynecarr,0 -Secrets should be consumable from pods in volume as non-root with defaultMode and fsGroup set,derekwaynecarr,0 +Secrets should be consumable from pods in volume,rrati,0 +Secrets should be consumable from pods in volume as non-root with defaultMode and fsGroup set,rrati,0 Secrets should be consumable from pods in volume with defaultMode set,derekwaynecarr,1 Secrets should be consumable from pods in volume with mappings,jbeda,1 Secrets should be consumable from pods in volume with mappings and Item Mode set,quinton-hoole,1 Secrets should be consumable in multiple volumes in a pod,alex-mohr,1 Security Context should support container.SecurityContext.RunAsUser,alex-mohr,1 Security Context should support pod.Spec.SecurityContext.RunAsUser,bgrant0607,1 -Security Context should support pod.Spec.SecurityContext.SupplementalGroups,derekwaynecarr,0 +Security Context should support pod.Spec.SecurityContext.SupplementalGroups,rrati,0 Security Context should support seccomp alpha docker/default annotation,freehan,1 Security Context should support seccomp alpha unconfined annotation on the container,childsb,1 Security Context should support seccomp alpha unconfined annotation on the pod,krousey,1 @@ -449,7 +448,7 @@ Services should be able to create a functioning NodePort service,bprashanth,0 Services should be able to up and down services,bprashanth,0 Services should check NodePort out-of-range,bprashanth,0 Services should create endpoints for unready pods,maisem,0 -Services should only allow access from service loadbalancer source ranges,derekwaynecarr,0 +Services should only allow access from service loadbalancer source ranges,madhusudancs,0 Services should preserve source pod IP for traffic thru service cluster IP,Random-Liu,1 Services should prevent NodePort collisions,bprashanth,0 Services should provide secure master service,bprashanth,0 @@ -459,14 +458,14 @@ Services should serve multiport endpoints from pods,bprashanth,0 Services should use same NodePort with same port but different protocols,timothysc,1 Services should work after restarting apiserver,bprashanth,0 Services should work after restarting kube-proxy,bprashanth,0 -SimpleMount should be able to mount an emptydir on a container,derekwaynecarr,0 +SimpleMount should be able to mount an emptydir on a container,rrati,0 "Spark should start spark master, driver and workers",jszczepkowski,1 "Staging client repo client should create pods, delete pods, watch pods",jbeda,1 -Stateful Set recreate should recreate evicted statefulset,derekwaynecarr,0 StatefulSet Basic StatefulSet functionality Scaling down before scale up is finished should wait until current pod will be running and ready before it will be removed,derekwaynecarr,0 -StatefulSet Basic StatefulSet functionality Scaling should happen in predictable order and halt if any pet is unhealthy,derekwaynecarr,0 +StatefulSet Basic StatefulSet functionality Scaling should happen in predictable order and halt if any stateful pod is unhealthy,rrati,0 +StatefulSet Basic StatefulSet functionality Should recreate evicted statefulset,rrati,0 StatefulSet Basic StatefulSet functionality should allow template updates,derekwaynecarr,0 -StatefulSet Basic StatefulSet functionality should handle healthy pet restarts during scale,kevin-wangzefeng,1 +StatefulSet Basic StatefulSet functionality should handle healthy stateful pod restarts during scale,rrati,0 StatefulSet Basic StatefulSet functionality should provide basic identity,bprashanth,1 StatefulSet Deploy clustered applications should creating a working CockroachDB cluster,derekwaynecarr,0 StatefulSet Deploy clustered applications should creating a working mysql cluster,yujuhong,1 @@ -492,14 +491,14 @@ V1Job should run a job to completion when tasks sometimes fail and are not local V1Job should run a job to completion when tasks succeed,soltysh,1 V1Job should scale a job down,soltysh,1 V1Job should scale a job up,soltysh,1 -Variable Expansion should allow composing env vars into new env vars,derekwaynecarr,0 +Variable Expansion should allow composing env vars into new env vars,rrati,0 Variable Expansion should allow substituting values in a container's args,dchen1107,1 Variable Expansion should allow substituting values in a container's command,mml,1 Volumes Ceph RBD should be mountable,fabioy,1 Volumes CephFS should be mountable,Q-Lee,1 Volumes Cinder should be mountable,cjcullen,1 Volumes GlusterFS should be mountable,eparis,1 -Volumes NFS should be mountable,derekwaynecarr,0 +Volumes NFS should be mountable,rrati,0 Volumes PD should be mountable,caesarxuchao,1 Volumes iSCSI should be mountable,jsafrane,1 k8s.io/kubernetes/cmd/genutils,rmmh,1 @@ -508,13 +507,15 @@ k8s.io/kubernetes/cmd/kube-apiserver/app/options,nikhiljindal,0 k8s.io/kubernetes/cmd/kube-discovery/app,pmorie,1 k8s.io/kubernetes/cmd/kube-proxy/app,luxas,1 k8s.io/kubernetes/cmd/kubeadm/app/cmd,caesarxuchao,1 +k8s.io/kubernetes/cmd/kubeadm/app/discovery,rrati,0 k8s.io/kubernetes/cmd/kubeadm/app/images,davidopp,1 k8s.io/kubernetes/cmd/kubeadm/app/master,apprenda,0 k8s.io/kubernetes/cmd/kubeadm/app/node,apprenda,0 k8s.io/kubernetes/cmd/kubeadm/app/preflight,apprenda,0 k8s.io/kubernetes/cmd/kubeadm/app/util,krousey,1 k8s.io/kubernetes/cmd/kubeadm/test,pipejakob,0 -k8s.io/kubernetes/cmd/kubelet/app,derekwaynecarr,0 +k8s.io/kubernetes/cmd/kubelet/app,rrati,0 +k8s.io/kubernetes/cmd/kubernetes-discovery/pkg/apiserver,rrati,0 k8s.io/kubernetes/cmd/libs/go2idl/client-gen/types,caesarxuchao,0 k8s.io/kubernetes/cmd/libs/go2idl/go-to-protobuf/protobuf,smarterclayton,0 k8s.io/kubernetes/cmd/libs/go2idl/openapi-gen/generators,davidopp,1 @@ -525,13 +526,14 @@ k8s.io/kubernetes/federation/apis/federation/validation,nikhiljindal,0 k8s.io/kubernetes/federation/cmd/federation-controller-manager/app,kzwang,0 k8s.io/kubernetes/federation/pkg/dnsprovider,sttts,1 k8s.io/kubernetes/federation/pkg/dnsprovider/providers/aws/route53,cjcullen,1 +k8s.io/kubernetes/federation/pkg/dnsprovider/providers/coredns,rrati,0 k8s.io/kubernetes/federation/pkg/dnsprovider/providers/google/clouddns,jsafrane,1 k8s.io/kubernetes/federation/pkg/federation-controller/cluster,nikhiljindal,0 k8s.io/kubernetes/federation/pkg/federation-controller/configmap,mwielgus,0 k8s.io/kubernetes/federation/pkg/federation-controller/daemonset,childsb,1 k8s.io/kubernetes/federation/pkg/federation-controller/deployment,zmerlynn,1 k8s.io/kubernetes/federation/pkg/federation-controller/ingress,vishh,1 -k8s.io/kubernetes/federation/pkg/federation-controller/namespace,derekwaynecarr,0 +k8s.io/kubernetes/federation/pkg/federation-controller/namespace,rrati,0 k8s.io/kubernetes/federation/pkg/federation-controller/replicaset,roberthbailey,1 k8s.io/kubernetes/federation/pkg/federation-controller/secret,apelisse,1 k8s.io/kubernetes/federation/pkg/federation-controller/service,pmorie,1 @@ -554,11 +556,11 @@ k8s.io/kubernetes/pkg/api/meta,fabioy,1 k8s.io/kubernetes/pkg/api/resource,smarterclayton,1 k8s.io/kubernetes/pkg/api/service,spxtr,1 k8s.io/kubernetes/pkg/api/testapi,caesarxuchao,1 -k8s.io/kubernetes/pkg/api/util,derekwaynecarr,0 -k8s.io/kubernetes/pkg/api/v1,derekwaynecarr,0 -k8s.io/kubernetes/pkg/api/v1/endpoints,derekwaynecarr,0 -k8s.io/kubernetes/pkg/api/v1/pod,derekwaynecarr,0 -k8s.io/kubernetes/pkg/api/v1/service,derekwaynecarr,0 +k8s.io/kubernetes/pkg/api/util,rrati,0 +k8s.io/kubernetes/pkg/api/v1,rrati,0 +k8s.io/kubernetes/pkg/api/v1/endpoints,madhusudancs,0 +k8s.io/kubernetes/pkg/api/v1/pod,madhusudancs,0 +k8s.io/kubernetes/pkg/api/v1/service,madhusudancs,0 k8s.io/kubernetes/pkg/api/validation,smarterclayton,1 k8s.io/kubernetes/pkg/api/validation/path,luxas,1 k8s.io/kubernetes/pkg/apimachinery,gmarek,1 @@ -577,8 +579,6 @@ k8s.io/kubernetes/pkg/apis/extensions,bgrant0607,1 k8s.io/kubernetes/pkg/apis/extensions/v1beta1,madhusudancs,1 k8s.io/kubernetes/pkg/apis/extensions/validation,nikhiljindal,1 k8s.io/kubernetes/pkg/apis/meta/v1,sttts,0 -k8s.io/kubernetes/pkg/apis/meta/v1/validation,derekwaynecarr,0 -k8s.io/kubernetes/pkg/apis/meta/v1/validation,jszczepkowski,1 k8s.io/kubernetes/pkg/apis/meta/v1/unstructured,smarterclayton,0 k8s.io/kubernetes/pkg/apis/meta/v1/validation,smarterclayton,0 k8s.io/kubernetes/pkg/apis/policy/validation,deads2k,1 @@ -590,13 +590,13 @@ k8s.io/kubernetes/pkg/apiserver/request,lavalamp,1 k8s.io/kubernetes/pkg/auth/authenticator/bearertoken,liggitt,0 k8s.io/kubernetes/pkg/auth/authorizer/abac,liggitt,0 k8s.io/kubernetes/pkg/auth/authorizer/union,liggitt,0 -k8s.io/kubernetes/pkg/auth/group,derekwaynecarr,0 +k8s.io/kubernetes/pkg/auth/group,rrati,0 k8s.io/kubernetes/pkg/auth/handlers,liggitt,0 k8s.io/kubernetes/pkg/client/cache,xiang90,1 k8s.io/kubernetes/pkg/client/chaosclient,deads2k,1 k8s.io/kubernetes/pkg/client/leaderelection,xiang90,1 k8s.io/kubernetes/pkg/client/listers/batch/internalversion,mqliang,0 -k8s.io/kubernetes/pkg/client/record,derekwaynecarr,0 +k8s.io/kubernetes/pkg/client/record,rrati,0 k8s.io/kubernetes/pkg/client/restclient,kargakis,1 k8s.io/kubernetes/pkg/client/retry,caesarxuchao,1 k8s.io/kubernetes/pkg/client/testing/cache,mikedanese,1 @@ -609,7 +609,7 @@ k8s.io/kubernetes/pkg/client/unversioned/auth,jbeda,1 k8s.io/kubernetes/pkg/client/unversioned/clientcmd,yifan-gu,1 k8s.io/kubernetes/pkg/client/unversioned/clientcmd/api,thockin,1 k8s.io/kubernetes/pkg/client/unversioned/portforward,lavalamp,1 -k8s.io/kubernetes/pkg/client/unversioned/remotecommand,derekwaynecarr,0 +k8s.io/kubernetes/pkg/client/unversioned/remotecommand,rrati,0 k8s.io/kubernetes/pkg/cloudprovider/providers/aws,eparis,1 k8s.io/kubernetes/pkg/cloudprovider/providers/azure,saad-ali,1 k8s.io/kubernetes/pkg/cloudprovider/providers/cloudstack,roberthbailey,1 @@ -630,28 +630,29 @@ k8s.io/kubernetes/pkg/controller/endpoint,mwielgus,1 k8s.io/kubernetes/pkg/controller/garbagecollector,rmmh,1 k8s.io/kubernetes/pkg/controller/garbagecollector/metaonly,cjcullen,1 k8s.io/kubernetes/pkg/controller/job,soltysh,1 -k8s.io/kubernetes/pkg/controller/namespace,derekwaynecarr,0 +k8s.io/kubernetes/pkg/controller/namespace,rrati,0 k8s.io/kubernetes/pkg/controller/node,gmarek,0 k8s.io/kubernetes/pkg/controller/petset,fgrzadkowski,1 k8s.io/kubernetes/pkg/controller/podautoscaler,piosz,0 k8s.io/kubernetes/pkg/controller/podautoscaler/metrics,piosz,0 -k8s.io/kubernetes/pkg/controller/podgc,derekwaynecarr,0 +k8s.io/kubernetes/pkg/controller/podgc,rrati,0 k8s.io/kubernetes/pkg/controller/replicaset,fgrzadkowski,0 k8s.io/kubernetes/pkg/controller/replication,fgrzadkowski,0 -k8s.io/kubernetes/pkg/controller/resourcequota,derekwaynecarr,0 +k8s.io/kubernetes/pkg/controller/resourcequota,rrati,0 k8s.io/kubernetes/pkg/controller/route,gmarek,0 k8s.io/kubernetes/pkg/controller/service,asalkeld,0 k8s.io/kubernetes/pkg/controller/serviceaccount,liggitt,0 k8s.io/kubernetes/pkg/controller/volume/attachdetach,luxas,1 -k8s.io/kubernetes/pkg/controller/volume/attachdetach/cache,derekwaynecarr,0 +k8s.io/kubernetes/pkg/controller/volume/attachdetach/cache,rrati,0 k8s.io/kubernetes/pkg/controller/volume/attachdetach/reconciler,jsafrane,1 k8s.io/kubernetes/pkg/controller/volume/persistentvolume,jsafrane,0 k8s.io/kubernetes/pkg/conversion,ixdy,1 k8s.io/kubernetes/pkg/conversion/queryparams,caesarxuchao,1 k8s.io/kubernetes/pkg/credentialprovider,justinsb,1 k8s.io/kubernetes/pkg/credentialprovider/aws,zmerlynn,1 +k8s.io/kubernetes/pkg/credentialprovider/azure,rrati,0 k8s.io/kubernetes/pkg/credentialprovider/gcp,mml,1 -k8s.io/kubernetes/pkg/dns,derekwaynecarr,0 +k8s.io/kubernetes/pkg/dns,rrati,0 k8s.io/kubernetes/pkg/dns/config,derekwaynecarr,0 k8s.io/kubernetes/pkg/dns/federation,derekwaynecarr,0 k8s.io/kubernetes/pkg/dns/treecache,bowei,0 @@ -662,7 +663,6 @@ k8s.io/kubernetes/pkg/genericapiserver/authorizer,lavalamp,1 k8s.io/kubernetes/pkg/genericapiserver/filters,dchen1107,1 k8s.io/kubernetes/pkg/genericapiserver/mux,spxtr,1 k8s.io/kubernetes/pkg/genericapiserver/openapi,davidopp,1 -k8s.io/kubernetes/pkg/genericapiserver/routes,vishh,1 k8s.io/kubernetes/pkg/healthz,thockin,1 k8s.io/kubernetes/pkg/httplog,mtaufen,1 k8s.io/kubernetes/pkg/kubectl,madhusudancs,1 @@ -670,7 +670,7 @@ k8s.io/kubernetes/pkg/kubectl/cmd,rmmh,1 k8s.io/kubernetes/pkg/kubectl/cmd/config,asalkeld,0 k8s.io/kubernetes/pkg/kubectl/cmd/set,erictune,1 k8s.io/kubernetes/pkg/kubectl/cmd/util,asalkeld,0 -k8s.io/kubernetes/pkg/kubectl/cmd/util/editor,derekwaynecarr,0 +k8s.io/kubernetes/pkg/kubectl/cmd/util/editor,rrati,0 k8s.io/kubernetes/pkg/kubectl/resource,caesarxuchao,1 k8s.io/kubernetes/pkg/kubelet,vishh,0 k8s.io/kubernetes/pkg/kubelet/cadvisor,sttts,1 @@ -681,7 +681,7 @@ k8s.io/kubernetes/pkg/kubelet/container,yujuhong,0 k8s.io/kubernetes/pkg/kubelet/custommetrics,kevin-wangzefeng,0 k8s.io/kubernetes/pkg/kubelet/dockershim,zmerlynn,1 k8s.io/kubernetes/pkg/kubelet/dockertools,deads2k,1 -k8s.io/kubernetes/pkg/kubelet/envvars,derekwaynecarr,0 +k8s.io/kubernetes/pkg/kubelet/envvars,rrati,0 k8s.io/kubernetes/pkg/kubelet/eviction,childsb,1 k8s.io/kubernetes/pkg/kubelet/images,caesarxuchao,1 k8s.io/kubernetes/pkg/kubelet/kuberuntime,yifan-gu,1 @@ -709,7 +709,7 @@ k8s.io/kubernetes/pkg/kubelet/types,jlowdermilk,1 k8s.io/kubernetes/pkg/kubelet/util/cache,timothysc,1 k8s.io/kubernetes/pkg/kubelet/util/format,ncdc,1 k8s.io/kubernetes/pkg/kubelet/util/queue,yujuhong,0 -k8s.io/kubernetes/pkg/kubelet/volumemanager,derekwaynecarr,0 +k8s.io/kubernetes/pkg/kubelet/volumemanager,rrati,0 k8s.io/kubernetes/pkg/kubelet/volumemanager/cache,janetkuo,1 k8s.io/kubernetes/pkg/kubelet/volumemanager/reconciler,timstclair,1 k8s.io/kubernetes/pkg/labels,ixdy,1 @@ -718,7 +718,7 @@ k8s.io/kubernetes/pkg/probe/exec,bgrant0607,1 k8s.io/kubernetes/pkg/probe/http,mtaufen,1 k8s.io/kubernetes/pkg/probe/tcp,mtaufen,1 k8s.io/kubernetes/pkg/proxy/config,ixdy,1 -k8s.io/kubernetes/pkg/proxy/healthcheck,derekwaynecarr,0 +k8s.io/kubernetes/pkg/proxy/healthcheck,rrati,0 k8s.io/kubernetes/pkg/proxy/iptables,freehan,0 k8s.io/kubernetes/pkg/proxy/userspace,luxas,1 k8s.io/kubernetes/pkg/proxy/winuserspace,jbhurat,0 @@ -751,16 +751,16 @@ k8s.io/kubernetes/pkg/registry/core/node/etcd,deads2k,1 k8s.io/kubernetes/pkg/registry/core/persistentvolume,lavalamp,1 k8s.io/kubernetes/pkg/registry/core/persistentvolume/etcd,derekwaynecarr,1 k8s.io/kubernetes/pkg/registry/core/persistentvolumeclaim,bgrant0607,1 -k8s.io/kubernetes/pkg/registry/core/persistentvolumeclaim/etcd,derekwaynecarr,0 +k8s.io/kubernetes/pkg/registry/core/persistentvolumeclaim/etcd,rrati,0 k8s.io/kubernetes/pkg/registry/core/pod,Random-Liu,1 k8s.io/kubernetes/pkg/registry/core/pod/etcd,alex-mohr,1 k8s.io/kubernetes/pkg/registry/core/pod/rest,jsafrane,1 k8s.io/kubernetes/pkg/registry/core/podtemplate,thockin,1 k8s.io/kubernetes/pkg/registry/core/podtemplate/etcd,brendandburns,1 -k8s.io/kubernetes/pkg/registry/core/resourcequota,derekwaynecarr,0 -k8s.io/kubernetes/pkg/registry/core/resourcequota/etcd,derekwaynecarr,0 +k8s.io/kubernetes/pkg/registry/core/resourcequota,rrati,0 +k8s.io/kubernetes/pkg/registry/core/resourcequota/etcd,rrati,0 k8s.io/kubernetes/pkg/registry/core/rest,deads2k,0 -k8s.io/kubernetes/pkg/registry/core/secret,derekwaynecarr,0 +k8s.io/kubernetes/pkg/registry/core/secret,rrati,0 k8s.io/kubernetes/pkg/registry/core/secret/etcd,freehan,1 k8s.io/kubernetes/pkg/registry/core/service,madhusudancs,1 k8s.io/kubernetes/pkg/registry/core/service/allocator,jbeda,1 @@ -769,24 +769,24 @@ k8s.io/kubernetes/pkg/registry/core/service/etcd,apelisse,1 k8s.io/kubernetes/pkg/registry/core/service/ipallocator,eparis,1 k8s.io/kubernetes/pkg/registry/core/service/ipallocator/controller,mtaufen,1 k8s.io/kubernetes/pkg/registry/core/service/ipallocator/etcd,kargakis,1 -k8s.io/kubernetes/pkg/registry/core/service/portallocator,derekwaynecarr,0 +k8s.io/kubernetes/pkg/registry/core/service/portallocator,rrati,0 k8s.io/kubernetes/pkg/registry/core/serviceaccount,caesarxuchao,1 k8s.io/kubernetes/pkg/registry/core/serviceaccount/etcd,bprashanth,1 k8s.io/kubernetes/pkg/registry/extensions/controller/etcd,mwielgus,1 k8s.io/kubernetes/pkg/registry/extensions/daemonset,nikhiljindal,1 k8s.io/kubernetes/pkg/registry/extensions/daemonset/etcd,spxtr,1 k8s.io/kubernetes/pkg/registry/extensions/deployment,dchen1107,1 -k8s.io/kubernetes/pkg/registry/extensions/deployment/etcd,derekwaynecarr,0 +k8s.io/kubernetes/pkg/registry/extensions/deployment/etcd,rrati,0 k8s.io/kubernetes/pkg/registry/extensions/ingress,apelisse,1 k8s.io/kubernetes/pkg/registry/extensions/ingress/etcd,apelisse,1 k8s.io/kubernetes/pkg/registry/extensions/networkpolicy,deads2k,1 k8s.io/kubernetes/pkg/registry/extensions/networkpolicy/etcd,ncdc,1 k8s.io/kubernetes/pkg/registry/extensions/podsecuritypolicy/etcd,erictune,1 -k8s.io/kubernetes/pkg/registry/extensions/replicaset,derekwaynecarr,0 +k8s.io/kubernetes/pkg/registry/extensions/replicaset,rrati,0 k8s.io/kubernetes/pkg/registry/extensions/replicaset/etcd,fabioy,1 -k8s.io/kubernetes/pkg/registry/extensions/rest,derekwaynecarr,0 +k8s.io/kubernetes/pkg/registry/extensions/rest,rrati,0 k8s.io/kubernetes/pkg/registry/extensions/thirdpartyresource,mwielgus,1 -k8s.io/kubernetes/pkg/registry/extensions/thirdpartyresource/etcd,derekwaynecarr,0 +k8s.io/kubernetes/pkg/registry/extensions/thirdpartyresource/etcd,rrati,0 k8s.io/kubernetes/pkg/registry/extensions/thirdpartyresourcedata,sttts,1 k8s.io/kubernetes/pkg/registry/extensions/thirdpartyresourcedata/etcd,sttts,1 k8s.io/kubernetes/pkg/registry/generic/registry,jsafrane,1 @@ -796,7 +796,7 @@ k8s.io/kubernetes/pkg/registry/policy/poddisruptionbudget/etcd,xiang90,1 k8s.io/kubernetes/pkg/registry/storage/storageclass,brendandburns,1 k8s.io/kubernetes/pkg/registry/storage/storageclass/etcd,eparis,1 k8s.io/kubernetes/pkg/runtime,wojtek-t,0 -k8s.io/kubernetes/pkg/runtime/schema,derekwaynecarr,0 +k8s.io/kubernetes/pkg/runtime/schema,madhusudancs,0 k8s.io/kubernetes/pkg/runtime/serializer,wojtek-t,0 k8s.io/kubernetes/pkg/runtime/serializer/json,wojtek-t,0 k8s.io/kubernetes/pkg/runtime/serializer/protobuf,wojtek-t,0 @@ -805,12 +805,12 @@ k8s.io/kubernetes/pkg/runtime/serializer/streaming,wojtek-t,0 k8s.io/kubernetes/pkg/runtime/serializer/versioning,wojtek-t,0 k8s.io/kubernetes/pkg/security/apparmor,bgrant0607,1 k8s.io/kubernetes/pkg/security/podsecuritypolicy,erictune,0 -k8s.io/kubernetes/pkg/security/podsecuritypolicy/apparmor,derekwaynecarr,0 +k8s.io/kubernetes/pkg/security/podsecuritypolicy/apparmor,rrati,0 k8s.io/kubernetes/pkg/security/podsecuritypolicy/capabilities,erictune,0 k8s.io/kubernetes/pkg/security/podsecuritypolicy/group,erictune,0 k8s.io/kubernetes/pkg/security/podsecuritypolicy/seccomp,rmmh,1 k8s.io/kubernetes/pkg/security/podsecuritypolicy/selinux,erictune,0 -k8s.io/kubernetes/pkg/security/podsecuritypolicy/sysctl,derekwaynecarr,0 +k8s.io/kubernetes/pkg/security/podsecuritypolicy/sysctl,rrati,0 k8s.io/kubernetes/pkg/security/podsecuritypolicy/user,erictune,0 k8s.io/kubernetes/pkg/security/podsecuritypolicy/util,erictune,0 k8s.io/kubernetes/pkg/securitycontext,erictune,1 @@ -825,7 +825,7 @@ k8s.io/kubernetes/pkg/util,jbeda,1 k8s.io/kubernetes/pkg/util/async,spxtr,1 k8s.io/kubernetes/pkg/util/bandwidth,thockin,1 k8s.io/kubernetes/pkg/util/cache,thockin,1 -k8s.io/kubernetes/pkg/util/cert,derekwaynecarr,0 +k8s.io/kubernetes/pkg/util/cert,rrati,0 k8s.io/kubernetes/pkg/util/clock,zmerlynn,1 k8s.io/kubernetes/pkg/util/config,jszczepkowski,1 k8s.io/kubernetes/pkg/util/configz,ixdy,1 @@ -835,7 +835,7 @@ k8s.io/kubernetes/pkg/util/env,asalkeld,0 k8s.io/kubernetes/pkg/util/errors,jlowdermilk,1 k8s.io/kubernetes/pkg/util/exec,krousey,1 k8s.io/kubernetes/pkg/util/flowcontrol,ixdy,1 -k8s.io/kubernetes/pkg/util/flushwriter,derekwaynecarr,0 +k8s.io/kubernetes/pkg/util/flushwriter,rrati,0 k8s.io/kubernetes/pkg/util/framer,piosz,1 k8s.io/kubernetes/pkg/util/goroutinemap,saad-ali,0 k8s.io/kubernetes/pkg/util/hash,timothysc,1 @@ -844,7 +844,7 @@ k8s.io/kubernetes/pkg/util/httpstream/spdy,zmerlynn,1 k8s.io/kubernetes/pkg/util/integer,childsb,1 k8s.io/kubernetes/pkg/util/intstr,brendandburns,1 k8s.io/kubernetes/pkg/util/io,mtaufen,1 -k8s.io/kubernetes/pkg/util/iptables,derekwaynecarr,0 +k8s.io/kubernetes/pkg/util/iptables,rrati,0 k8s.io/kubernetes/pkg/util/json,liggitt,0 k8s.io/kubernetes/pkg/util/jsonpath,spxtr,1 k8s.io/kubernetes/pkg/util/keymutex,saad-ali,0 @@ -852,7 +852,7 @@ k8s.io/kubernetes/pkg/util/labels,rmmh,1 k8s.io/kubernetes/pkg/util/limitwriter,deads2k,1 k8s.io/kubernetes/pkg/util/mount,xiang90,1 k8s.io/kubernetes/pkg/util/net,spxtr,1 -k8s.io/kubernetes/pkg/util/net/sets,derekwaynecarr,0 +k8s.io/kubernetes/pkg/util/net/sets,rrati,0 k8s.io/kubernetes/pkg/util/node,liggitt,0 k8s.io/kubernetes/pkg/util/oom,vishh,0 k8s.io/kubernetes/pkg/util/parsers,derekwaynecarr,1 @@ -865,7 +865,7 @@ k8s.io/kubernetes/pkg/util/slice,quinton-hoole,0 k8s.io/kubernetes/pkg/util/strategicpatch,brendandburns,1 k8s.io/kubernetes/pkg/util/strings,quinton-hoole,0 k8s.io/kubernetes/pkg/util/system,mwielgus,0 -k8s.io/kubernetes/pkg/util/taints,derekwaynecarr,0 +k8s.io/kubernetes/pkg/util/taints,rrati,0 k8s.io/kubernetes/pkg/util/term,davidopp,1 k8s.io/kubernetes/pkg/util/testing,jlowdermilk,1 k8s.io/kubernetes/pkg/util/threading,roberthbailey,1 @@ -885,7 +885,7 @@ k8s.io/kubernetes/pkg/volume/cinder,jsafrane,1 k8s.io/kubernetes/pkg/volume/configmap,derekwaynecarr,1 k8s.io/kubernetes/pkg/volume/downwardapi,mikedanese,1 k8s.io/kubernetes/pkg/volume/empty_dir,quinton-hoole,1 -k8s.io/kubernetes/pkg/volume/fc,derekwaynecarr,0 +k8s.io/kubernetes/pkg/volume/fc,rrati,0 k8s.io/kubernetes/pkg/volume/flexvolume,Q-Lee,1 k8s.io/kubernetes/pkg/volume/flocker,jbeda,1 k8s.io/kubernetes/pkg/volume/gce_pd,saad-ali,0 @@ -915,11 +915,11 @@ k8s.io/kubernetes/plugin/pkg/admission/limitranger,ncdc,1 k8s.io/kubernetes/plugin/pkg/admission/namespace/autoprovision,derekwaynecarr,0 k8s.io/kubernetes/plugin/pkg/admission/namespace/exists,derekwaynecarr,0 k8s.io/kubernetes/plugin/pkg/admission/namespace/lifecycle,derekwaynecarr,0 -k8s.io/kubernetes/plugin/pkg/admission/persistentvolume/label,derekwaynecarr,0 +k8s.io/kubernetes/plugin/pkg/admission/persistentvolume/label,rrati,0 k8s.io/kubernetes/plugin/pkg/admission/podnodeselector,ixdy,1 k8s.io/kubernetes/plugin/pkg/admission/resourcequota,fabioy,1 k8s.io/kubernetes/plugin/pkg/admission/security/podsecuritypolicy,maisem,1 -k8s.io/kubernetes/plugin/pkg/admission/securitycontext/scdeny,derekwaynecarr,0 +k8s.io/kubernetes/plugin/pkg/admission/securitycontext/scdeny,rrati,0 k8s.io/kubernetes/plugin/pkg/admission/serviceaccount,liggitt,0 k8s.io/kubernetes/plugin/pkg/admission/storageclass/default,pmorie,1 k8s.io/kubernetes/plugin/pkg/auth/authenticator/password/allow,liggitt,0 @@ -932,10 +932,10 @@ k8s.io/kubernetes/plugin/pkg/auth/authenticator/request/x509,liggitt,0 k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/anytoken,krousey,1 k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/oidc,brendandburns,1 k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/tokenfile,liggitt,0 -k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/webhook,derekwaynecarr,0 -k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac,derekwaynecarr,0 +k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/webhook,rrati,0 +k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac,rrati,0 k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac/bootstrappolicy,mml,1 -k8s.io/kubernetes/plugin/pkg/auth/authorizer/webhook,derekwaynecarr,0 +k8s.io/kubernetes/plugin/pkg/auth/authorizer/webhook,rrati,0 k8s.io/kubernetes/plugin/pkg/client/auth/gcp,jlowdermilk,0 k8s.io/kubernetes/plugin/pkg/client/auth/oidc,cjcullen,1 k8s.io/kubernetes/plugin/pkg/scheduler,fgrzadkowski,0 @@ -954,10 +954,11 @@ k8s.io/kubernetes/test/integration/auth,jbeda,1 k8s.io/kubernetes/test/integration/client,Q-Lee,1 k8s.io/kubernetes/test/integration/configmap,Q-Lee,1 k8s.io/kubernetes/test/integration/discoverysummarizer,fabioy,1 +k8s.io/kubernetes/test/integration/evictions,rrati,0 k8s.io/kubernetes/test/integration/examples,maisem,1 -k8s.io/kubernetes/test/integration/federation,derekwaynecarr,0 +k8s.io/kubernetes/test/integration/federation,rrati,0 k8s.io/kubernetes/test/integration/garbagecollector,jlowdermilk,1 -k8s.io/kubernetes/test/integration/kubectl,derekwaynecarr,0 +k8s.io/kubernetes/test/integration/kubectl,rrati,0 k8s.io/kubernetes/test/integration/master,fabioy,1 k8s.io/kubernetes/test/integration/metrics,lavalamp,1 k8s.io/kubernetes/test/integration/objectmeta,janetkuo,1 @@ -970,9 +971,9 @@ k8s.io/kubernetes/test/integration/scheduler,mikedanese,1 k8s.io/kubernetes/test/integration/scheduler_perf,roberthbailey,1 k8s.io/kubernetes/test/integration/secrets,rmmh,1 k8s.io/kubernetes/test/integration/serviceaccount,deads2k,1 -k8s.io/kubernetes/test/integration/storageclasses,derekwaynecarr,0 +k8s.io/kubernetes/test/integration/storageclasses,rrati,0 k8s.io/kubernetes/test/integration/thirdparty,davidopp,1 -k8s.io/kubernetes/test/integration/volume,derekwaynecarr,0 +k8s.io/kubernetes/test/integration/volume,rrati,0 k8s.io/kubernetes/test/list,maisem,1 kubelet Clean up pods on node kubelet should be able to delete * pods per node in *.,yujuhong,0 "when we run containers that should cause * should eventually see *, and then evict all of the correct pods",Random-Liu,0