From 47ae7cbf522af448f8e78949244ebb8289559f25 Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Fri, 19 Jun 2020 19:04:49 +0200 Subject: [PATCH 01/16] Add route type field to loadbalancer status ingress Signed-off-by: Patrik Cyvoct --- pkg/apis/core/types.go | 15 +++++++++++ pkg/proxy/iptables/proxier.go | 34 +++++++++++++------------ pkg/proxy/ipvs/proxier.go | 20 +++++++-------- pkg/proxy/service.go | 10 +++----- pkg/proxy/types.go | 4 +-- staging/src/k8s.io/api/core/v1/types.go | 15 +++++++++++ 6 files changed, 63 insertions(+), 35 deletions(-) diff --git a/pkg/apis/core/types.go b/pkg/apis/core/types.go index a2064817a64..cbf4aedbe90 100644 --- a/pkg/apis/core/types.go +++ b/pkg/apis/core/types.go @@ -3508,6 +3508,11 @@ type LoadBalancerIngress struct { // (typically AWS load-balancers) // +optional Hostname string + + // RouteType specifies the type of route to use for this ingress + // Defaults to `VIP` + // +optional + RouteType LoadBalancerRouteType } const ( @@ -3515,6 +3520,16 @@ const ( MaxServiceTopologyKeys = 16 ) +// LoadBalancerRouteType represents the type of route available for a LoadBalancer ingress +type LoadBalancerRouteType string + +const ( + // LoadBalancerRouteTypeVIP is the type of route used by a LoadBalancer where dstIP = lbIP + LoadBalancerRouteTypeVIP LoadBalancerRouteType = "VIP" + // LoadBalancerRouteTypeProxy is the type of route used by a proxy like LoadBalancer + LoadBalancerRouteTypeProxy LoadBalancerRouteType = "Proxy" +) + // IPFamily represents the IP Family (IPv4 or IPv6). This type is used // to express the family of an IP expressed by a type (e.g. service.spec.ipFamilies). type IPFamily string diff --git a/pkg/proxy/iptables/proxier.go b/pkg/proxy/iptables/proxier.go index 50d13c57308..a8e28dddfdc 100644 --- a/pkg/proxy/iptables/proxier.go +++ b/pkg/proxy/iptables/proxier.go @@ -782,10 +782,10 @@ func (proxier *Proxier) deleteEndpointConnections(connectionMap []proxy.ServiceE klog.Errorf("Failed to delete %s endpoint connections for externalIP %s, error: %v", epSvcPair.ServicePortName.String(), extIP, err) } } - for _, lbIP := range svcInfo.LoadBalancerIPStrings() { - err := conntrack.ClearEntriesForNAT(proxier.exec, lbIP, endpointIP, svcProto) + for _, lbIngress := range svcInfo.LoadBalancerIngress() { + err := conntrack.ClearEntriesForNAT(proxier.exec, lbIngress.IP, endpointIP, svcProto) if err != nil { - klog.Errorf("Failed to delete %s endpoint connections for LoabBalancerIP %s, error: %v", epSvcPair.ServicePortName.String(), lbIP, err) + klog.Errorf("Failed to delete %s endpoint connections for LoabBalancerIP %s, error: %v", epSvcPair.ServicePortName.String(), lbIngress.IP, err) } } } @@ -1161,8 +1161,8 @@ func (proxier *Proxier) syncProxyRules() { // Capture load-balancer ingress. fwChain := svcInfo.serviceFirewallChainName - for _, ingress := range svcInfo.LoadBalancerIPStrings() { - if ingress != "" { + for _, ingress := range svcInfo.LoadBalancerIngress() { + if ingress.IP != "" { if hasEndpoints { // create service firewall chain if chain, ok := existingNATChains[fwChain]; ok { @@ -1175,15 +1175,17 @@ func (proxier *Proxier) syncProxyRules() { // This currently works for loadbalancers that preserves source ips. // For loadbalancers which direct traffic to service NodePort, the firewall rules will not apply. - args = append(args[:0], - "-A", string(kubeServicesChain), - "-m", "comment", "--comment", fmt.Sprintf(`"%s loadbalancer IP"`, svcNameString), - "-m", protocol, "-p", protocol, - "-d", utilproxy.ToCIDR(net.ParseIP(ingress)), - "--dport", strconv.Itoa(svcInfo.Port()), - ) - // jump to service firewall chain - writeLine(proxier.natRules, append(args, "-j", string(fwChain))...) + if ingress.RouteType != v1.LoadBalancerRouteTypeProxy { + args = append(args[:0], + "-A", string(kubeServicesChain), + "-m", "comment", "--comment", fmt.Sprintf(`"%s loadbalancer IP"`, svcNameString), + "-m", protocol, "-p", protocol, + "-d", utilproxy.ToCIDR(net.ParseIP(ingress.IP)), + "--dport", strconv.Itoa(svcInfo.Port()), + ) + // jump to service firewall chain + writeLine(proxier.natRules, append(args, "-j", string(fwChain))...) + } args = append(args[:0], "-A", string(fwChain), @@ -1218,7 +1220,7 @@ func (proxier *Proxier) syncProxyRules() { // loadbalancer's backend hosts. In this case, request will not hit the loadbalancer but loop back directly. // Need to add the following rule to allow request on host. if allowFromNode { - writeLine(proxier.natRules, append(args, "-s", utilproxy.ToCIDR(net.ParseIP(ingress)), "-j", string(chosenChain))...) + writeLine(proxier.natRules, append(args, "-s", utilproxy.ToCIDR(net.ParseIP(ingress.IP)), "-j", string(chosenChain))...) } } @@ -1231,7 +1233,7 @@ func (proxier *Proxier) syncProxyRules() { "-A", string(kubeExternalServicesChain), "-m", "comment", "--comment", fmt.Sprintf(`"%s has no endpoints"`, svcNameString), "-m", protocol, "-p", protocol, - "-d", utilproxy.ToCIDR(net.ParseIP(ingress)), + "-d", utilproxy.ToCIDR(net.ParseIP(ingress.IP)), "--dport", strconv.Itoa(svcInfo.Port()), "-j", "REJECT", ) diff --git a/pkg/proxy/ipvs/proxier.go b/pkg/proxy/ipvs/proxier.go index 7d67008332c..df8370f4181 100644 --- a/pkg/proxy/ipvs/proxier.go +++ b/pkg/proxy/ipvs/proxier.go @@ -1332,11 +1332,11 @@ func (proxier *Proxier) syncProxyRules() { } // Capture load-balancer ingress. - for _, ingress := range svcInfo.LoadBalancerIPStrings() { - if ingress != "" { + for _, ingress := range svcInfo.LoadBalancerIngress() { + if ingress.IP != "" && ingress.RouteType != v1.LoadBalancerRouteTypeProxy { // ipset call entry = &utilipset.Entry{ - IP: ingress, + IP: ingress.IP, Port: svcInfo.Port(), Protocol: protocol, SetType: utilipset.HashIPPort, @@ -1371,7 +1371,7 @@ func (proxier *Proxier) syncProxyRules() { for _, src := range svcInfo.LoadBalancerSourceRanges() { // ipset call entry = &utilipset.Entry{ - IP: ingress, + IP: ingress.IP, Port: svcInfo.Port(), Protocol: protocol, Net: src, @@ -1395,10 +1395,10 @@ func (proxier *Proxier) syncProxyRules() { // Need to add the following rule to allow request on host. if allowFromNode { entry = &utilipset.Entry{ - IP: ingress, + IP: ingress.IP, Port: svcInfo.Port(), Protocol: protocol, - IP2: ingress, + IP2: ingress.IP, SetType: utilipset.HashIPPortIP, } // enumerate all white list source ip @@ -1412,7 +1412,7 @@ func (proxier *Proxier) syncProxyRules() { // ipvs call serv := &utilipvs.VirtualServer{ - Address: net.ParseIP(ingress), + Address: net.ParseIP(ingress.IP), Port: uint16(svcInfo.Port()), Protocol: string(svcInfo.Protocol()), Scheduler: proxier.ipvsScheduler, @@ -1957,10 +1957,10 @@ func (proxier *Proxier) deleteEndpointConnections(connectionMap []proxy.ServiceE klog.Errorf("Failed to delete %s endpoint connections for externalIP %s, error: %v", epSvcPair.ServicePortName.String(), extIP, err) } } - for _, lbIP := range svcInfo.LoadBalancerIPStrings() { - err := conntrack.ClearEntriesForNAT(proxier.exec, lbIP, endpointIP, svcProto) + for _, lbIngress := range svcInfo.LoadBalancerIngress() { + err := conntrack.ClearEntriesForNAT(proxier.exec, lbIngress.IP, endpointIP, svcProto) if err != nil { - klog.Errorf("Failed to delete %s endpoint connections for LoadBalancerIP %s, error: %v", epSvcPair.ServicePortName.String(), lbIP, err) + klog.Errorf("Failed to delete %s endpoint connections for LoadBalancerIP %s, error: %v", epSvcPair.ServicePortName.String(), lbIngress.IP, err) } } } diff --git a/pkg/proxy/service.go b/pkg/proxy/service.go index a00b2ddab1c..d8c2e0a9c5e 100644 --- a/pkg/proxy/service.go +++ b/pkg/proxy/service.go @@ -105,13 +105,9 @@ func (info *BaseServiceInfo) ExternalIPStrings() []string { return info.externalIPs } -// LoadBalancerIPStrings is part of ServicePort interface. -func (info *BaseServiceInfo) LoadBalancerIPStrings() []string { - var ips []string - for _, ing := range info.loadBalancerStatus.Ingress { - ips = append(ips, ing.IP) - } - return ips +// LoadBalancerIngress is part of ServicePort interface. +func (info *BaseServiceInfo) LoadBalancerIngress() []v1.LoadBalancerIngress { + return info.loadBalancerStatus.Ingress } // OnlyNodeLocalEndpoints is part of ServicePort interface. diff --git a/pkg/proxy/types.go b/pkg/proxy/types.go index 2d0f9e42856..db6c8b12828 100644 --- a/pkg/proxy/types.go +++ b/pkg/proxy/types.go @@ -73,8 +73,8 @@ type ServicePort interface { StickyMaxAgeSeconds() int // ExternalIPStrings returns service ExternalIPs as a string array. ExternalIPStrings() []string - // LoadBalancerIPStrings returns service LoadBalancerIPs as a string array. - LoadBalancerIPStrings() []string + // LoadBalancerIngress returns service an array of LoadBalancerIngress. + LoadBalancerIngress() []v1.LoadBalancerIngress // GetProtocol returns service protocol. Protocol() v1.Protocol // LoadBalancerSourceRanges returns service LoadBalancerSourceRanges if present empty array if not diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go index 45fd5d82367..dae1d0330ab 100644 --- a/staging/src/k8s.io/api/core/v1/types.go +++ b/staging/src/k8s.io/api/core/v1/types.go @@ -3971,6 +3971,11 @@ type LoadBalancerIngress struct { // (typically AWS load-balancers) // +optional Hostname string `json:"hostname,omitempty" protobuf:"bytes,2,opt,name=hostname"` + + // RouteType specifies the type of route to use for this ingress + // Defaults to `VIP` + // +optional + RouteType LoadBalancerRouteType `json:"routeType,omitempty" protobuf:"bytes,3,opt,name=routeType"` } const ( @@ -3978,6 +3983,16 @@ const ( MaxServiceTopologyKeys = 16 ) +// LoadBalancerRouteType represents the type of route available for a LoadBalancer ingress +type LoadBalancerRouteType string + +const ( + // LoadBalancerRouteTypeVIP is the type of route used by a LoadBalancer where dstIP = lbIP + LoadBalancerRouteTypeVIP LoadBalancerRouteType = "VIP" + // LoadBalancerRouteTypeProxy is the type of route used by a proxy like LoadBalancer + LoadBalancerRouteTypeProxy LoadBalancerRouteType = "Proxy" +) + // IPFamily represents the IP Family (IPv4 or IPv6). This type is used // to express the family of an IP expressed by a type (e.g. service.spec.ipFamilies). type IPFamily string From d562b6924a65e4f50129a075d27eca39cbeb810f Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Fri, 19 Jun 2020 19:05:01 +0200 Subject: [PATCH 02/16] Add tests Signed-off-by: Patrik Cyvoct --- pkg/proxy/iptables/proxier_test.go | 57 ++++++++++++++++++++++++++++++ pkg/proxy/ipvs/proxier_test.go | 54 ++++++++++++++++++++++++++++ 2 files changed, 111 insertions(+) diff --git a/pkg/proxy/iptables/proxier_test.go b/pkg/proxy/iptables/proxier_test.go index 0cae52809dd..40fb0d9a75a 100644 --- a/pkg/proxy/iptables/proxier_test.go +++ b/pkg/proxy/iptables/proxier_test.go @@ -2682,4 +2682,61 @@ COMMIT assert.NotEqual(t, expectedIPTablesWithSlice, fp.iptablesData.String()) } +func TestLoadBalancerIngressRouteTypeProxy(t *testing.T) { + ipt := iptablestest.NewFake() + fp := NewFakeProxier(ipt, false) + svcIP := "10.20.30.41" + svcPort := 80 + svcNodePort := 3001 + svcLBIP := "1.2.3.4" + svcPortName := proxy.ServicePortName{ + NamespacedName: makeNSN("ns1", "svc1"), + Port: "p80", + Protocol: v1.ProtocolTCP, + } + + makeServiceMap(fp, + makeTestService(svcPortName.Namespace, svcPortName.Name, func(svc *v1.Service) { + svc.Spec.Type = "LoadBalancer" + svc.Spec.ClusterIP = svcIP + svc.Spec.Ports = []v1.ServicePort{{ + Name: svcPortName.Port, + Port: int32(svcPort), + Protocol: v1.ProtocolTCP, + NodePort: int32(svcNodePort), + }} + svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{ + IP: svcLBIP, + RouteType: v1.LoadBalancerRouteTypeProxy, + }} + }), + ) + + epIP := "10.180.0.1" + makeEndpointsMap(fp, + makeTestEndpoints(svcPortName.Namespace, svcPortName.Name, func(ept *v1.Endpoints) { + ept.Subsets = []v1.EndpointSubset{{ + Addresses: []v1.EndpointAddress{{ + IP: epIP, + }}, + Ports: []v1.EndpointPort{{ + Name: svcPortName.Port, + Port: int32(svcPort), + Protocol: v1.ProtocolTCP, + }}, + }} + }), + ) + + fp.syncProxyRules() + + proto := strings.ToLower(string(v1.ProtocolTCP)) + fwChain := string(serviceFirewallChainName(svcPortName.String(), proto)) + + kubeSvcRules := ipt.GetRules(string(kubeServicesChain)) + if hasJump(kubeSvcRules, fwChain, svcLBIP, svcPort) { + errorf(fmt.Sprintf("Found jump to firewall chain %v", fwChain), kubeSvcRules, t) + } +} + // TODO(thockin): add *more* tests for syncProxyRules() or break it down further and test the pieces. diff --git a/pkg/proxy/ipvs/proxier_test.go b/pkg/proxy/ipvs/proxier_test.go index 39e87f407d0..5ca3ce26afd 100644 --- a/pkg/proxy/ipvs/proxier_test.go +++ b/pkg/proxy/ipvs/proxier_test.go @@ -4320,3 +4320,57 @@ func TestFilterCIDRs(t *testing.T) { t.Errorf("cidrs %v is not expected %v", cidrs, expected) } } + +func TestLoadBalancerIngressRouteTypeProxy(t *testing.T) { + _, fp := buildFakeProxier() + svcIP := "10.20.30.41" + svcPort := 80 + svcNodePort := 3001 + svcLBIP := "1.2.3.4" + svcPortName := proxy.ServicePortName{ + NamespacedName: makeNSN("ns1", "svc1"), + Port: "p80", + } + + makeServiceMap(fp, + makeTestService(svcPortName.Namespace, svcPortName.Name, func(svc *v1.Service) { + svc.Spec.Type = "LoadBalancer" + svc.Spec.ClusterIP = svcIP + svc.Spec.Ports = []v1.ServicePort{{ + Name: svcPortName.Port, + Port: int32(svcPort), + Protocol: v1.ProtocolTCP, + NodePort: int32(svcNodePort), + }} + svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{ + IP: svcLBIP, + RouteType: v1.LoadBalancerRouteTypeProxy, + }} + }), + ) + + epIP := "10.180.0.1" + makeEndpointsMap(fp, + makeTestEndpoints(svcPortName.Namespace, svcPortName.Name, func(ept *v1.Endpoints) { + ept.Subsets = []v1.EndpointSubset{{ + Addresses: []v1.EndpointAddress{{ + IP: epIP, + }}, + Ports: []v1.EndpointPort{{ + Name: svcPortName.Port, + Port: int32(svcPort), + }}, + }} + }), + ) + + fp.syncProxyRules() + + services, err := fp.ipvs.GetVirtualServers() + if err != nil { + t.Errorf("Failed to get ipvs services, err: %v", err) + } + if len(services) != 1 { + t.Errorf("Expect 1 ipvs services, got %d", len(services)) + } +} From 0153b96ab8ad969b340b869fa27d3ecc38348bdc Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Thu, 22 Oct 2020 10:44:04 +0200 Subject: [PATCH 03/16] fix review Signed-off-by: Patrik Cyvoct --- pkg/apis/core/types.go | 20 +++-- pkg/apis/core/v1/defaults.go | 15 +++- pkg/apis/core/validation/validation.go | 21 +++++ pkg/features/kube_features.go | 6 ++ pkg/proxy/iptables/proxier.go | 2 +- pkg/proxy/iptables/proxier_test.go | 112 +++++++++++++++-------- pkg/proxy/ipvs/proxier.go | 2 +- pkg/proxy/ipvs/proxier_test.go | 114 +++++++++++++++--------- pkg/proxy/service.go | 26 +++--- pkg/registry/core/service/strategy.go | 19 ++++ staging/src/k8s.io/api/core/v1/types.go | 20 +++-- 11 files changed, 242 insertions(+), 115 deletions(-) diff --git a/pkg/apis/core/types.go b/pkg/apis/core/types.go index cbf4aedbe90..5e605adbe08 100644 --- a/pkg/apis/core/types.go +++ b/pkg/apis/core/types.go @@ -3509,10 +3509,10 @@ type LoadBalancerIngress struct { // +optional Hostname string - // RouteType specifies the type of route to use for this ingress - // Defaults to `VIP` + // IPMode specifies the IP mode to use for this ingress + // Defaults to `VIP` if IP is set, null otherwise // +optional - RouteType LoadBalancerRouteType + IPMode *LoadBalancerIPMode } const ( @@ -3520,14 +3520,16 @@ const ( MaxServiceTopologyKeys = 16 ) -// LoadBalancerRouteType represents the type of route available for a LoadBalancer ingress -type LoadBalancerRouteType string +// LoadBalancerIPMode represents the mode of the LoadBalancer ingress IP +type LoadBalancerIPMode string const ( - // LoadBalancerRouteTypeVIP is the type of route used by a LoadBalancer where dstIP = lbIP - LoadBalancerRouteTypeVIP LoadBalancerRouteType = "VIP" - // LoadBalancerRouteTypeProxy is the type of route used by a proxy like LoadBalancer - LoadBalancerRouteTypeProxy LoadBalancerRouteType = "Proxy" + // LoadBalancerIPModeVIP indicates that the traffic passing through this LoadBalancer + // is delivered with the destination IP set to the specified LoadBalancer IP + LoadBalancerIPModeVIP LoadBalancerIPMode = "VIP" + // LoadBalancerIPModeProxy indicates that the specified LoadBalancer acts like a proxy, + // changing the destination IP to the node IP and the source IP to the LoadBalaner (mostly private) IP + LoadBalancerIPModeProxy LoadBalancerIPMode = "Proxy" ) // IPFamily represents the IP Family (IPv4 or IPv6). This type is used diff --git a/pkg/apis/core/v1/defaults.go b/pkg/apis/core/v1/defaults.go index 560c8ea0a97..f5d083a1f8a 100644 --- a/pkg/apis/core/v1/defaults.go +++ b/pkg/apis/core/v1/defaults.go @@ -19,7 +19,7 @@ package v1 import ( "time" - "k8s.io/api/core/v1" + v1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/util/intstr" "k8s.io/kubernetes/pkg/util/parsers" @@ -161,10 +161,17 @@ func SetDefaults_Service(obj *v1.Service) { // NOTE: strategy handles cases where ClusterIPs is used (but not ClusterIP). } } + } - // any other defaulting depends on cluster configuration. - // further IPFamilies, IPFamilyPolicy defaulting is in ClusterIP alloc/reserve logic - // note: conversion logic handles cases where ClusterIPs is used (but not ClusterIP). + if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) && + obj.Spec.Type == v1.ServiceTypeLoadBalancer { + + for _, ing := range obj.Status.LoadBalancer.Ingress { + if ing.IPMode == nil { + ipMode := v1.LoadBalancerIPModeVIP + ing.IPMode = &ipMode + } + } } } func SetDefaults_Pod(obj *v1.Pod) { diff --git a/pkg/apis/core/validation/validation.go b/pkg/apis/core/validation/validation.go index 915fe7d7640..d1f5a674a3a 100644 --- a/pkg/apis/core/validation/validation.go +++ b/pkg/apis/core/validation/validation.go @@ -5973,6 +5973,10 @@ func ValidatePodLogOptions(opts *core.PodLogOptions) field.ErrorList { return allErrs } +var ( + supportedLoadBalancerIPMode = sets.NewString(string(core.LoadBalancerIPModeVIP), string(core.LoadBalancerIPModeProxy)) +) + // ValidateLoadBalancerStatus validates required fields on a LoadBalancerStatus func ValidateLoadBalancerStatus(status *core.LoadBalancerStatus, fldPath *field.Path) field.ErrorList { allErrs := field.ErrorList{} @@ -5983,6 +5987,22 @@ func ValidateLoadBalancerStatus(status *core.LoadBalancerStatus, fldPath *field. allErrs = append(allErrs, field.Invalid(idxPath.Child("ip"), ingress.IP, "must be a valid IP address")) } } + + if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) { + if len(ingress.IP) > 0 && ingress.IPMode != nil { + switch *ingress.IPMode { + case core.LoadBalancerIPModeVIP, core.LoadBalancerIPModeProxy: + break + default: + allErrs = append(allErrs, field.NotSupported(idxPath.Child("ipMode"), ingress.IPMode, supportedLoadBalancerIPMode.List())) + } + } else if len(ingress.IP) > 0 && ingress.IPMode == nil { + allErrs = append(allErrs, field.Required(idxPath.Child("ipMode"), "must be specified when `ip` is set")) + } else if len(ingress.IP) == 0 && ingress.IPMode != nil { + allErrs = append(allErrs, field.Forbidden(idxPath.Child("ipMode"), "may not be used when `ip` is not set")) + } + } + if len(ingress.Hostname) > 0 { for _, msg := range validation.IsDNS1123Subdomain(ingress.Hostname) { allErrs = append(allErrs, field.Invalid(idxPath.Child("hostname"), ingress.Hostname, msg)) @@ -5991,6 +6011,7 @@ func ValidateLoadBalancerStatus(status *core.LoadBalancerStatus, fldPath *field. allErrs = append(allErrs, field.Invalid(idxPath.Child("hostname"), ingress.Hostname, "must be a DNS name, not an IP address")) } } + } return allErrs } diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index f0b824a9340..4881969f959 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -663,6 +663,11 @@ const ( // // Enables kubelet support to size memory backed volumes SizeMemoryBackedVolumes featuregate.Feature = "SizeMemoryBackedVolumes" + + // owner: TBD ? + // alpha: v1.21 + // LoadBalancerIPMode enables the IPMode field in the LoadBalancerIngress status of a Service + LoadBalancerIPMode featuregate.Feature = "LoadBalancerIPMode" ) func init() { @@ -763,6 +768,7 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS HPAContainerMetrics: {Default: false, PreRelease: featuregate.Alpha}, RootCAConfigMap: {Default: true, PreRelease: featuregate.Beta}, SizeMemoryBackedVolumes: {Default: false, PreRelease: featuregate.Alpha}, + LoadBalancerIPMode: {Default: false, PreRelease: featuregate.Alpha}, // inherited features from generic apiserver, relisted here to get a conflict if it is changed // unintentionally on either side: diff --git a/pkg/proxy/iptables/proxier.go b/pkg/proxy/iptables/proxier.go index a8e28dddfdc..6b3bd48432b 100644 --- a/pkg/proxy/iptables/proxier.go +++ b/pkg/proxy/iptables/proxier.go @@ -1175,7 +1175,7 @@ func (proxier *Proxier) syncProxyRules() { // This currently works for loadbalancers that preserves source ips. // For loadbalancers which direct traffic to service NodePort, the firewall rules will not apply. - if ingress.RouteType != v1.LoadBalancerRouteTypeProxy { + if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || ingress.IPMode == nil || *ingress.IPMode == v1.LoadBalancerIPModeVIP { args = append(args[:0], "-A", string(kubeServicesChain), "-m", "comment", "--comment", fmt.Sprintf(`"%s loadbalancer IP"`, svcNameString), diff --git a/pkg/proxy/iptables/proxier_test.go b/pkg/proxy/iptables/proxier_test.go index 40fb0d9a75a..93fde53a41e 100644 --- a/pkg/proxy/iptables/proxier_test.go +++ b/pkg/proxy/iptables/proxier_test.go @@ -26,6 +26,7 @@ import ( "testing" "time" + utilfeature "k8s.io/apiserver/pkg/util/feature" "k8s.io/klog/v2" "github.com/stretchr/testify/assert" @@ -34,6 +35,7 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "k8s.io/apimachinery/pkg/util/intstr" + "k8s.io/kubernetes/pkg/features" "k8s.io/kubernetes/pkg/proxy" "k8s.io/kubernetes/pkg/proxy/healthcheck" utilproxy "k8s.io/kubernetes/pkg/proxy/util" @@ -46,6 +48,8 @@ import ( "k8s.io/utils/exec" fakeexec "k8s.io/utils/exec/testing" utilpointer "k8s.io/utils/pointer" + + featuregatetesting "k8s.io/component-base/featuregate/testing" ) func checkAllLines(t *testing.T, table utiliptables.Table, save []byte, expectedLines map[utiliptables.Chain]string) { @@ -2683,59 +2687,89 @@ COMMIT } func TestLoadBalancerIngressRouteTypeProxy(t *testing.T) { - ipt := iptablestest.NewFake() - fp := NewFakeProxier(ipt, false) - svcIP := "10.20.30.41" + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, true)() + ipModeProxy := v1.LoadBalancerIPModeProxy + ipModeVIP := v1.LoadBalancerIPModeVIP + + testCases := []struct { + svcIP string + svcLBIP string + ipMode *v1.LoadBalancerIPMode + expectedRule bool + }{ + { + svcIP: "10.20.30.41", + svcLBIP: "1.2.3.4", + ipMode: &ipModeProxy, + expectedRule: false, + }, + { + svcIP: "10.20.30.42", + svcLBIP: "1.2.3.5", + ipMode: &ipModeVIP, + expectedRule: true, + }, + { + svcIP: "10.20.30.43", + svcLBIP: "1.2.3.6", + ipMode: nil, + expectedRule: true, + }, + } + svcPort := 80 svcNodePort := 3001 - svcLBIP := "1.2.3.4" svcPortName := proxy.ServicePortName{ NamespacedName: makeNSN("ns1", "svc1"), Port: "p80", Protocol: v1.ProtocolTCP, } - makeServiceMap(fp, - makeTestService(svcPortName.Namespace, svcPortName.Name, func(svc *v1.Service) { - svc.Spec.Type = "LoadBalancer" - svc.Spec.ClusterIP = svcIP - svc.Spec.Ports = []v1.ServicePort{{ - Name: svcPortName.Port, - Port: int32(svcPort), - Protocol: v1.ProtocolTCP, - NodePort: int32(svcNodePort), - }} - svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{ - IP: svcLBIP, - RouteType: v1.LoadBalancerRouteTypeProxy, - }} - }), - ) - - epIP := "10.180.0.1" - makeEndpointsMap(fp, - makeTestEndpoints(svcPortName.Namespace, svcPortName.Name, func(ept *v1.Endpoints) { - ept.Subsets = []v1.EndpointSubset{{ - Addresses: []v1.EndpointAddress{{ - IP: epIP, - }}, - Ports: []v1.EndpointPort{{ + for _, testCase := range testCases { + ipt := iptablestest.NewFake() + fp := NewFakeProxier(ipt, false) + makeServiceMap(fp, + makeTestService(svcPortName.Namespace, svcPortName.Name, func(svc *v1.Service) { + svc.Spec.Type = "LoadBalancer" + svc.Spec.ClusterIP = testCase.svcIP + svc.Spec.Ports = []v1.ServicePort{{ Name: svcPortName.Port, Port: int32(svcPort), Protocol: v1.ProtocolTCP, - }}, - }} - }), - ) + NodePort: int32(svcNodePort), + }} + svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{ + IP: testCase.svcLBIP, + IPMode: testCase.ipMode, + }} + }), + ) - fp.syncProxyRules() + epIP := "10.180.0.1" + makeEndpointsMap(fp, + makeTestEndpoints(svcPortName.Namespace, svcPortName.Name, func(ept *v1.Endpoints) { + ept.Subsets = []v1.EndpointSubset{{ + Addresses: []v1.EndpointAddress{{ + IP: epIP, + }}, + Ports: []v1.EndpointPort{{ + Name: svcPortName.Port, + Port: int32(svcPort), + Protocol: v1.ProtocolTCP, + }}, + }} + }), + ) - proto := strings.ToLower(string(v1.ProtocolTCP)) - fwChain := string(serviceFirewallChainName(svcPortName.String(), proto)) + fp.syncProxyRules() - kubeSvcRules := ipt.GetRules(string(kubeServicesChain)) - if hasJump(kubeSvcRules, fwChain, svcLBIP, svcPort) { - errorf(fmt.Sprintf("Found jump to firewall chain %v", fwChain), kubeSvcRules, t) + proto := strings.ToLower(string(v1.ProtocolTCP)) + fwChain := string(serviceFirewallChainName(svcPortName.String(), proto)) + + kubeSvcRules := ipt.GetRules(string(kubeServicesChain)) + if hasJump(kubeSvcRules, fwChain, testCase.svcLBIP, svcPort) != testCase.expectedRule { + errorf(fmt.Sprintf("Found jump to firewall chain %v", fwChain), kubeSvcRules, t) + } } } diff --git a/pkg/proxy/ipvs/proxier.go b/pkg/proxy/ipvs/proxier.go index df8370f4181..4a481a5b330 100644 --- a/pkg/proxy/ipvs/proxier.go +++ b/pkg/proxy/ipvs/proxier.go @@ -1333,7 +1333,7 @@ func (proxier *Proxier) syncProxyRules() { // Capture load-balancer ingress. for _, ingress := range svcInfo.LoadBalancerIngress() { - if ingress.IP != "" && ingress.RouteType != v1.LoadBalancerRouteTypeProxy { + if ingress.IP != "" && (!utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || ingress.IPMode == nil || *ingress.IPMode == v1.LoadBalancerIPModeVIP) { // ipset call entry = &utilipset.Entry{ IP: ingress.IP, diff --git a/pkg/proxy/ipvs/proxier_test.go b/pkg/proxy/ipvs/proxier_test.go index 5ca3ce26afd..5531189b5be 100644 --- a/pkg/proxy/ipvs/proxier_test.go +++ b/pkg/proxy/ipvs/proxier_test.go @@ -33,6 +33,8 @@ import ( "k8s.io/apimachinery/pkg/types" "k8s.io/apimachinery/pkg/util/intstr" "k8s.io/apimachinery/pkg/util/sets" + utilfeature "k8s.io/apiserver/pkg/util/feature" + "k8s.io/kubernetes/pkg/features" "k8s.io/kubernetes/pkg/proxy" "k8s.io/kubernetes/pkg/proxy/healthcheck" netlinktest "k8s.io/kubernetes/pkg/proxy/ipvs/testing" @@ -51,6 +53,8 @@ import ( utilpointer "k8s.io/utils/pointer" utilnet "k8s.io/utils/net" + + featuregatetesting "k8s.io/component-base/featuregate/testing" ) const testHostname = "test-hostname" @@ -4322,55 +4326,85 @@ func TestFilterCIDRs(t *testing.T) { } func TestLoadBalancerIngressRouteTypeProxy(t *testing.T) { - _, fp := buildFakeProxier() - svcIP := "10.20.30.41" + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, true)() + ipModeProxy := v1.LoadBalancerIPModeProxy + ipModeVIP := v1.LoadBalancerIPModeVIP + + testCases := []struct { + svcIP string + svcLBIP string + ipMode *v1.LoadBalancerIPMode + expectedServices int + }{ + { + svcIP: "10.20.30.41", + svcLBIP: "1.2.3.4", + ipMode: &ipModeProxy, + expectedServices: 1, + }, + { + svcIP: "10.20.30.42", + svcLBIP: "1.2.3.5", + ipMode: &ipModeVIP, + expectedServices: 2, + }, + { + svcIP: "10.20.30.43", + svcLBIP: "1.2.3.6", + ipMode: nil, + expectedServices: 2, + }, + } + svcPort := 80 svcNodePort := 3001 - svcLBIP := "1.2.3.4" svcPortName := proxy.ServicePortName{ NamespacedName: makeNSN("ns1", "svc1"), Port: "p80", } - makeServiceMap(fp, - makeTestService(svcPortName.Namespace, svcPortName.Name, func(svc *v1.Service) { - svc.Spec.Type = "LoadBalancer" - svc.Spec.ClusterIP = svcIP - svc.Spec.Ports = []v1.ServicePort{{ - Name: svcPortName.Port, - Port: int32(svcPort), - Protocol: v1.ProtocolTCP, - NodePort: int32(svcNodePort), - }} - svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{ - IP: svcLBIP, - RouteType: v1.LoadBalancerRouteTypeProxy, - }} - }), - ) + for _, testCase := range testCases { + _, fp := buildFakeProxier() + makeServiceMap(fp, + makeTestService(svcPortName.Namespace, svcPortName.Name, func(svc *v1.Service) { + svc.Spec.Type = "LoadBalancer" + svc.Spec.ClusterIP = testCase.svcIP + svc.Spec.Ports = []v1.ServicePort{{ + Name: svcPortName.Port, + Port: int32(svcPort), + Protocol: v1.ProtocolTCP, + NodePort: int32(svcNodePort), + }} + svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{ + IP: testCase.svcLBIP, + IPMode: testCase.ipMode, + }} + }), + ) - epIP := "10.180.0.1" - makeEndpointsMap(fp, - makeTestEndpoints(svcPortName.Namespace, svcPortName.Name, func(ept *v1.Endpoints) { - ept.Subsets = []v1.EndpointSubset{{ - Addresses: []v1.EndpointAddress{{ - IP: epIP, - }}, - Ports: []v1.EndpointPort{{ - Name: svcPortName.Port, - Port: int32(svcPort), - }}, - }} - }), - ) + epIP := "10.180.0.1" + makeEndpointsMap(fp, + makeTestEndpoints(svcPortName.Namespace, svcPortName.Name, func(ept *v1.Endpoints) { + ept.Subsets = []v1.EndpointSubset{{ + Addresses: []v1.EndpointAddress{{ + IP: epIP, + }}, + Ports: []v1.EndpointPort{{ + Name: svcPortName.Port, + Port: int32(svcPort), + }}, + }} + }), + ) - fp.syncProxyRules() + fp.syncProxyRules() - services, err := fp.ipvs.GetVirtualServers() - if err != nil { - t.Errorf("Failed to get ipvs services, err: %v", err) - } - if len(services) != 1 { - t.Errorf("Expect 1 ipvs services, got %d", len(services)) + services, err := fp.ipvs.GetVirtualServers() + if err != nil { + t.Errorf("Failed to get ipvs services, err: %v", err) + } + if len(services) != testCase.expectedServices { + t.Errorf("Expect %d ipvs services, got %d", testCase.expectedServices, len(services)) + } } } diff --git a/pkg/proxy/service.go b/pkg/proxy/service.go index d8c2e0a9c5e..ab94127ae07 100644 --- a/pkg/proxy/service.go +++ b/pkg/proxy/service.go @@ -164,22 +164,24 @@ func (sct *ServiceChangeTracker) newBaseServiceInfo(port *v1.ServicePort, servic } // Obtain Load Balancer Ingress IPs - var ips []string + var allIncorrectIPs []string for _, ing := range service.Status.LoadBalancer.Ingress { - ips = append(ips, ing.IP) + correctIPs, incorrectIPs := utilproxy.FilterIncorrectIPVersion([]string{ing.IP}, sct.ipFamily) + + // len is either 1 or 0 + if len(correctIPs) == 1 { + // Update the LoadBalancerStatus with the filtered IPs + info.loadBalancerStatus.Ingress = append(info.loadBalancerStatus.Ingress, ing) + continue + } + + // here len(incorrectIPs) == 1 + allIncorrectIPs = append(allIncorrectIPs, incorrectIPs[0]) } - if len(ips) > 0 { - correctIPs, incorrectIPs := utilproxy.FilterIncorrectIPVersion(ips, sct.ipFamily) + if len(incorrectIPs) > 0 { + klog.V(4).Infof("service change tracker(%v) ignored the following load balancer(%s) ingress ips for service %v/%v as they don't match IPFamily", sct.ipFamily, strings.Join(incorrectIPs, ","), service.Namespace, service.Name) - if len(incorrectIPs) > 0 { - klog.V(4).Infof("service change tracker(%v) ignored the following load balancer(%s) ingress ips for service %v/%v as they don't match IPFamily", sct.ipFamily, strings.Join(incorrectIPs, ","), service.Namespace, service.Name) - - } - // Create the LoadBalancerStatus with the filtered IPs - for _, ip := range correctIPs { - info.loadBalancerStatus.Ingress = append(info.loadBalancerStatus.Ingress, v1.LoadBalancerIngress{IP: ip}) - } } if apiservice.NeedsHealthCheck(service) { diff --git a/pkg/registry/core/service/strategy.go b/pkg/registry/core/service/strategy.go index c84e0315ce9..f0aa548c813 100644 --- a/pkg/registry/core/service/strategy.go +++ b/pkg/registry/core/service/strategy.go @@ -179,6 +179,12 @@ func dropServiceDisabledFields(newSvc *api.Service, oldSvc *api.Service) { if !utilfeature.DefaultFeatureGate.Enabled(features.ServiceTopology) && !topologyKeysInUse(oldSvc) { newSvc.Spec.TopologyKeys = nil } + + if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) && !loadbalancerIPModeInUse(oldSvc) { + for _, ing := range newSvc.Status.LoadBalancer.Ingress { + ing.IPMode = nil + } + } } // returns true if svc.Spec.ServiceIPFamily field is in use @@ -202,6 +208,19 @@ func topologyKeysInUse(svc *api.Service) bool { return len(svc.Spec.TopologyKeys) > 0 } +// returns true is svc.Status.LoadBalancer.Ingress[].IPMode fields are in use +func loadbalancerIPModeInUse(svc *api.Service) bool { + if svc == nil { + return false + } + for _, ing := range svc.Status.LoadBalancer.Ingress { + if ing.IPMode != nil { + return true + } + } + return false +} + type serviceStatusStrategy struct { Strategy } diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go index dae1d0330ab..301db96fc2b 100644 --- a/staging/src/k8s.io/api/core/v1/types.go +++ b/staging/src/k8s.io/api/core/v1/types.go @@ -3972,10 +3972,10 @@ type LoadBalancerIngress struct { // +optional Hostname string `json:"hostname,omitempty" protobuf:"bytes,2,opt,name=hostname"` - // RouteType specifies the type of route to use for this ingress - // Defaults to `VIP` + // IPMode specifies the IP mode to use for this ingress + // Defaults to `VIP` if IP is set, null otherwise // +optional - RouteType LoadBalancerRouteType `json:"routeType,omitempty" protobuf:"bytes,3,opt,name=routeType"` + IPMode *LoadBalancerIPMode `json:"ipMode,omitempty" protobuf:"bytes,3,opt,name=ipMode"` } const ( @@ -3983,14 +3983,16 @@ const ( MaxServiceTopologyKeys = 16 ) -// LoadBalancerRouteType represents the type of route available for a LoadBalancer ingress -type LoadBalancerRouteType string +// LoadBalancerIPMode represents the mode of the LoadBalancer ingress IP +type LoadBalancerIPMode string const ( - // LoadBalancerRouteTypeVIP is the type of route used by a LoadBalancer where dstIP = lbIP - LoadBalancerRouteTypeVIP LoadBalancerRouteType = "VIP" - // LoadBalancerRouteTypeProxy is the type of route used by a proxy like LoadBalancer - LoadBalancerRouteTypeProxy LoadBalancerRouteType = "Proxy" + // LoadBalancerIPModeVIP indicates that the traffic passing through this LoadBalancer + // is delivered with the destination IP set to the specified LoadBalancer IP + LoadBalancerIPModeVIP LoadBalancerIPMode = "VIP" + // LoadBalancerIPModeProxy indicates that the specified LoadBalancer acts like a proxy, + // changing the destination IP to the node IP and the source IP to the LoadBalaner (mostly private) IP + LoadBalancerIPModeProxy LoadBalancerIPMode = "Proxy" ) // IPFamily represents the IP Family (IPv4 or IPv6). This type is used From 7460f9e00b7926f41080a94f5b618e25a5b1cba5 Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Wed, 28 Oct 2020 19:29:40 +0100 Subject: [PATCH 04/16] fix rebase Signed-off-by: Patrik Cyvoct --- pkg/apis/core/v1/defaults.go | 4 ++++ pkg/apis/core/validation/validation.go | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg/apis/core/v1/defaults.go b/pkg/apis/core/v1/defaults.go index f5d083a1f8a..5c5a95c61c3 100644 --- a/pkg/apis/core/v1/defaults.go +++ b/pkg/apis/core/v1/defaults.go @@ -161,6 +161,10 @@ func SetDefaults_Service(obj *v1.Service) { // NOTE: strategy handles cases where ClusterIPs is used (but not ClusterIP). } } + + // any other defaulting depends on cluster configuration. + // further IPFamilies, IPFamilyPolicy defaulting is in ClusterIP alloc/reserve logic + // note: conversion logic handles cases where ClusterIPs is used (but not ClusterIP). } if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) && diff --git a/pkg/apis/core/validation/validation.go b/pkg/apis/core/validation/validation.go index d1f5a674a3a..154f18609c4 100644 --- a/pkg/apis/core/validation/validation.go +++ b/pkg/apis/core/validation/validation.go @@ -6011,7 +6011,6 @@ func ValidateLoadBalancerStatus(status *core.LoadBalancerStatus, fldPath *field. allErrs = append(allErrs, field.Invalid(idxPath.Child("hostname"), ingress.Hostname, "must be a DNS name, not an IP address")) } } - } return allErrs } From 7977e0ac44a6ce4cdc8f23d037c7ccd31c097282 Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Wed, 28 Oct 2020 19:54:35 +0100 Subject: [PATCH 05/16] add owner for feature gate Signed-off-by: Patrik Cyvoct --- pkg/features/kube_features.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index 4881969f959..53c8bdf19c3 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -664,7 +664,7 @@ const ( // Enables kubelet support to size memory backed volumes SizeMemoryBackedVolumes featuregate.Feature = "SizeMemoryBackedVolumes" - // owner: TBD ? + // owner: @Sh4d1 // alpha: v1.21 // LoadBalancerIPMode enables the IPMode field in the LoadBalancerIngress status of a Service LoadBalancerIPMode featuregate.Feature = "LoadBalancerIPMode" From 88330eafef40d4ac8141350630fac47fc8e27f3f Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Thu, 29 Oct 2020 08:19:03 +0100 Subject: [PATCH 06/16] fix typo Signed-off-by: Patrik Cyvoct --- pkg/proxy/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/proxy/service.go b/pkg/proxy/service.go index ab94127ae07..1614c2a1cf1 100644 --- a/pkg/proxy/service.go +++ b/pkg/proxy/service.go @@ -179,7 +179,7 @@ func (sct *ServiceChangeTracker) newBaseServiceInfo(port *v1.ServicePort, servic allIncorrectIPs = append(allIncorrectIPs, incorrectIPs[0]) } - if len(incorrectIPs) > 0 { + if len(allIncorrectIPs) > 0 { klog.V(4).Infof("service change tracker(%v) ignored the following load balancer(%s) ingress ips for service %v/%v as they don't match IPFamily", sct.ipFamily, strings.Join(incorrectIPs, ","), service.Namespace, service.Name) } From 7bdf2af6488f3be6ac77c087e547d3d577c0f60d Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Fri, 30 Oct 2020 09:20:43 +0100 Subject: [PATCH 07/16] fix review Signed-off-by: Patrik Cyvoct --- pkg/apis/core/v1/defaults.go | 2 +- pkg/proxy/ipvs/proxier_test.go | 2 +- pkg/proxy/service.go | 5 +++-- pkg/registry/core/service/strategy.go | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pkg/apis/core/v1/defaults.go b/pkg/apis/core/v1/defaults.go index 5c5a95c61c3..5e8ef589b28 100644 --- a/pkg/apis/core/v1/defaults.go +++ b/pkg/apis/core/v1/defaults.go @@ -169,10 +169,10 @@ func SetDefaults_Service(obj *v1.Service) { if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) && obj.Spec.Type == v1.ServiceTypeLoadBalancer { + ipMode := v1.LoadBalancerIPModeVIP for _, ing := range obj.Status.LoadBalancer.Ingress { if ing.IPMode == nil { - ipMode := v1.LoadBalancerIPModeVIP ing.IPMode = &ipMode } } diff --git a/pkg/proxy/ipvs/proxier_test.go b/pkg/proxy/ipvs/proxier_test.go index 5531189b5be..acfce215ef5 100644 --- a/pkg/proxy/ipvs/proxier_test.go +++ b/pkg/proxy/ipvs/proxier_test.go @@ -4404,7 +4404,7 @@ func TestLoadBalancerIngressRouteTypeProxy(t *testing.T) { t.Errorf("Failed to get ipvs services, err: %v", err) } if len(services) != testCase.expectedServices { - t.Errorf("Expect %d ipvs services, got %d", testCase.expectedServices, len(services)) + t.Errorf("Expected %d ipvs services, got %d", testCase.expectedServices, len(services)) } } } diff --git a/pkg/proxy/service.go b/pkg/proxy/service.go index 1614c2a1cf1..4557c283760 100644 --- a/pkg/proxy/service.go +++ b/pkg/proxy/service.go @@ -166,16 +166,17 @@ func (sct *ServiceChangeTracker) newBaseServiceInfo(port *v1.ServicePort, servic // Obtain Load Balancer Ingress IPs var allIncorrectIPs []string for _, ing := range service.Status.LoadBalancer.Ingress { + // []string{ing.IP} have a len of 1, so len(correctIPs) + len(incorrectIPs) == 1 correctIPs, incorrectIPs := utilproxy.FilterIncorrectIPVersion([]string{ing.IP}, sct.ipFamily) // len is either 1 or 0 if len(correctIPs) == 1 { - // Update the LoadBalancerStatus with the filtered IPs + // Update the LoadBalancerStatus with the filtered IP info.loadBalancerStatus.Ingress = append(info.loadBalancerStatus.Ingress, ing) continue } - // here len(incorrectIPs) == 1 + // here len(incorrectIPs) == 1 since len(correctIPs) == 0 allIncorrectIPs = append(allIncorrectIPs, incorrectIPs[0]) } diff --git a/pkg/registry/core/service/strategy.go b/pkg/registry/core/service/strategy.go index f0aa548c813..e3137430d52 100644 --- a/pkg/registry/core/service/strategy.go +++ b/pkg/registry/core/service/strategy.go @@ -208,7 +208,7 @@ func topologyKeysInUse(svc *api.Service) bool { return len(svc.Spec.TopologyKeys) > 0 } -// returns true is svc.Status.LoadBalancer.Ingress[].IPMode fields are in use +// returns true when the LoadBalancer Ingress IPMode fields are in use. func loadbalancerIPModeInUse(svc *api.Service) bool { if svc == nil { return false From af7494e8969a737cc22fa807bb9d35a49765919e Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Fri, 30 Oct 2020 09:30:54 +0100 Subject: [PATCH 08/16] Update generated Signed-off-by: Patrik Cyvoct --- api/openapi-spec/swagger.json | 4 + pkg/apis/core/v1/zz_generated.conversion.go | 2 + pkg/apis/core/zz_generated.deepcopy.go | 9 +- pkg/proxy/iptables/BUILD | 3 + pkg/proxy/ipvs/BUILD | 3 + .../src/k8s.io/api/core/v1/generated.pb.go | 1764 +++++++++-------- .../src/k8s.io/api/core/v1/generated.proto | 5 + .../core/v1/types_swagger_doc_generated.go | 1 + .../api/core/v1/zz_generated.deepcopy.go | 9 +- .../api/testdata/HEAD/core.v1.Service.json | 3 +- .../api/testdata/HEAD/core.v1.Service.pb | Bin 440 -> 450 bytes .../api/testdata/HEAD/core.v1.Service.yaml | 1 + .../HEAD/extensions.v1beta1.Ingress.json | 3 +- .../HEAD/extensions.v1beta1.Ingress.pb | Bin 345 -> 371 bytes .../HEAD/extensions.v1beta1.Ingress.yaml | 1 + .../HEAD/networking.k8s.io.v1.Ingress.json | 3 +- .../HEAD/networking.k8s.io.v1.Ingress.pb | Bin 348 -> 352 bytes .../HEAD/networking.k8s.io.v1.Ingress.yaml | 1 + .../networking.k8s.io.v1beta1.Ingress.json | 3 +- .../HEAD/networking.k8s.io.v1beta1.Ingress.pb | Bin 352 -> 378 bytes .../networking.k8s.io.v1beta1.Ingress.yaml | 1 + 21 files changed, 951 insertions(+), 865 deletions(-) diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 894b8eac196..5ae049b6a36 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -7337,6 +7337,10 @@ "ip": { "description": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", "type": "string" + }, + "ipMode": { + "description": "IPMode specifies the IP mode to use for this ingress Defaults to `VIP` if IP is set, null otherwise", + "type": "string" } }, "type": "object" diff --git a/pkg/apis/core/v1/zz_generated.conversion.go b/pkg/apis/core/v1/zz_generated.conversion.go index 1ee8400f915..628f5c31b5b 100644 --- a/pkg/apis/core/v1/zz_generated.conversion.go +++ b/pkg/apis/core/v1/zz_generated.conversion.go @@ -4291,6 +4291,7 @@ func Convert_core_List_To_v1_List(in *core.List, out *v1.List, s conversion.Scop func autoConvert_v1_LoadBalancerIngress_To_core_LoadBalancerIngress(in *v1.LoadBalancerIngress, out *core.LoadBalancerIngress, s conversion.Scope) error { out.IP = in.IP out.Hostname = in.Hostname + out.IPMode = (*core.LoadBalancerIPMode)(unsafe.Pointer(in.IPMode)) return nil } @@ -4302,6 +4303,7 @@ func Convert_v1_LoadBalancerIngress_To_core_LoadBalancerIngress(in *v1.LoadBalan func autoConvert_core_LoadBalancerIngress_To_v1_LoadBalancerIngress(in *core.LoadBalancerIngress, out *v1.LoadBalancerIngress, s conversion.Scope) error { out.IP = in.IP out.Hostname = in.Hostname + out.IPMode = (*v1.LoadBalancerIPMode)(unsafe.Pointer(in.IPMode)) return nil } diff --git a/pkg/apis/core/zz_generated.deepcopy.go b/pkg/apis/core/zz_generated.deepcopy.go index c305761dbd9..526e1f67c89 100644 --- a/pkg/apis/core/zz_generated.deepcopy.go +++ b/pkg/apis/core/zz_generated.deepcopy.go @@ -2146,6 +2146,11 @@ func (in *List) DeepCopyObject() runtime.Object { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *LoadBalancerIngress) DeepCopyInto(out *LoadBalancerIngress) { *out = *in + if in.IPMode != nil { + in, out := &in.IPMode, &out.IPMode + *out = new(LoadBalancerIPMode) + **out = **in + } return } @@ -2165,7 +2170,9 @@ func (in *LoadBalancerStatus) DeepCopyInto(out *LoadBalancerStatus) { if in.Ingress != nil { in, out := &in.Ingress, &out.Ingress *out = make([]LoadBalancerIngress, len(*in)) - copy(*out, *in) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } } return } diff --git a/pkg/proxy/iptables/BUILD b/pkg/proxy/iptables/BUILD index 2bd97cf9eef..98ffef7f2f4 100644 --- a/pkg/proxy/iptables/BUILD +++ b/pkg/proxy/iptables/BUILD @@ -39,6 +39,7 @@ go_test( srcs = ["proxier_test.go"], embed = [":go_default_library"], deps = [ + "//pkg/features:go_default_library", "//pkg/proxy:go_default_library", "//pkg/proxy/healthcheck:go_default_library", "//pkg/proxy/util:go_default_library", @@ -53,6 +54,8 @@ go_test( "//staging/src/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/types:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/util/intstr:go_default_library", + "//staging/src/k8s.io/apiserver/pkg/util/feature:go_default_library", + "//staging/src/k8s.io/component-base/featuregate/testing:go_default_library", "//vendor/github.com/stretchr/testify/assert:go_default_library", "//vendor/k8s.io/klog/v2:go_default_library", "//vendor/k8s.io/utils/exec:go_default_library", diff --git a/pkg/proxy/ipvs/BUILD b/pkg/proxy/ipvs/BUILD index f10643ece38..fa04ee67707 100644 --- a/pkg/proxy/ipvs/BUILD +++ b/pkg/proxy/ipvs/BUILD @@ -15,6 +15,7 @@ go_test( ], embed = [":go_default_library"], deps = [ + "//pkg/features:go_default_library", "//pkg/proxy:go_default_library", "//pkg/proxy/healthcheck:go_default_library", "//pkg/proxy/ipvs/testing:go_default_library", @@ -34,6 +35,8 @@ go_test( "//staging/src/k8s.io/apimachinery/pkg/types:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/util/intstr:go_default_library", "//staging/src/k8s.io/apimachinery/pkg/util/sets:go_default_library", + "//staging/src/k8s.io/apiserver/pkg/util/feature:go_default_library", + "//staging/src/k8s.io/component-base/featuregate/testing:go_default_library", "//vendor/github.com/stretchr/testify/assert:go_default_library", "//vendor/k8s.io/utils/exec:go_default_library", "//vendor/k8s.io/utils/exec/testing:go_default_library", diff --git a/staging/src/k8s.io/api/core/v1/generated.pb.go b/staging/src/k8s.io/api/core/v1/generated.pb.go index d76257b88b8..30866fd58af 100644 --- a/staging/src/k8s.io/api/core/v1/generated.pb.go +++ b/staging/src/k8s.io/api/core/v1/generated.pb.go @@ -6087,326 +6087,326 @@ func init() { } var fileDescriptor_83c10c24ec417dc9 = []byte{ - // 13927 bytes of a gzipped FileDescriptorProto + // 13950 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x6b, 0x70, 0x1c, 0xd9, 0x79, 0x18, 0xaa, 0x9e, 0xc1, 0x6b, 0x3e, 0xbc, 0x0f, 0x48, 0x2e, 0x88, 0x25, 0x09, 0x6e, 0x53, 0xe2, 0x72, 0xb5, 0xbb, 0xa0, 0xf6, 0x25, 0xad, 0x77, 0xa5, 0xb5, 0x00, 0x0c, 0x40, 0xce, 0x92, - 0x00, 0x67, 0xcf, 0x80, 0xa4, 0x24, 0xaf, 0x74, 0xd5, 0x98, 0x39, 0x00, 0x5a, 0x98, 0xe9, 0x9e, - 0xed, 0xee, 0x01, 0x89, 0xbd, 0x72, 0x5d, 0x5f, 0xf9, 0x29, 0x3f, 0x6e, 0xa9, 0x6e, 0xb9, 0xf2, - 0xb0, 0x5d, 0xae, 0x94, 0xe3, 0x94, 0xad, 0x38, 0x49, 0xc5, 0xb1, 0x63, 0x3b, 0x96, 0x13, 0x3b, - 0x76, 0x1e, 0x4e, 0x7e, 0x38, 0x8e, 0x2b, 0x89, 0x5c, 0xe5, 0x0a, 0x62, 0xd3, 0xa9, 0xb8, 0xf4, - 0x23, 0xb6, 0x13, 0x3b, 0x3f, 0x82, 0xb8, 0xe2, 0xd4, 0x79, 0xf6, 0x39, 0xfd, 0x98, 0x19, 0x70, - 0x41, 0x68, 0xa5, 0xda, 0x7f, 0x33, 0xe7, 0xfb, 0xce, 0x77, 0x4e, 0x9f, 0xe7, 0x77, 0xbe, 0x27, - 0xbc, 0xba, 0xfb, 0x72, 0xb8, 0xe0, 0xfa, 0x57, 0x77, 0x3b, 0x9b, 0x24, 0xf0, 0x48, 0x44, 0xc2, - 0xab, 0x7b, 0xc4, 0x6b, 0xf8, 0xc1, 0x55, 0x01, 0x70, 0xda, 0xee, 0xd5, 0xba, 0x1f, 0x90, 0xab, - 0x7b, 0xcf, 0x5d, 0xdd, 0x26, 0x1e, 0x09, 0x9c, 0x88, 0x34, 0x16, 0xda, 0x81, 0x1f, 0xf9, 0x08, - 0x71, 0x9c, 0x05, 0xa7, 0xed, 0x2e, 0x50, 0x9c, 0x85, 0xbd, 0xe7, 0xe6, 0x9e, 0xdd, 0x76, 0xa3, - 0x9d, 0xce, 0xe6, 0x42, 0xdd, 0x6f, 0x5d, 0xdd, 0xf6, 0xb7, 0xfd, 0xab, 0x0c, 0x75, 0xb3, 0xb3, - 0xc5, 0xfe, 0xb1, 0x3f, 0xec, 0x17, 0x27, 0x31, 0xf7, 0x62, 0xdc, 0x4c, 0xcb, 0xa9, 0xef, 0xb8, - 0x1e, 0x09, 0xf6, 0xaf, 0xb6, 0x77, 0xb7, 0x59, 0xbb, 0x01, 0x09, 0xfd, 0x4e, 0x50, 0x27, 0xc9, - 0x86, 0xbb, 0xd6, 0x0a, 0xaf, 0xb6, 0x48, 0xe4, 0x64, 0x74, 0x77, 0xee, 0x6a, 0x5e, 0xad, 0xa0, - 0xe3, 0x45, 0x6e, 0x2b, 0xdd, 0xcc, 0x87, 0x7b, 0x55, 0x08, 0xeb, 0x3b, 0xa4, 0xe5, 0xa4, 0xea, - 0xbd, 0x90, 0x57, 0xaf, 0x13, 0xb9, 0xcd, 0xab, 0xae, 0x17, 0x85, 0x51, 0x90, 0xac, 0x64, 0x7f, - 0xd5, 0x82, 0x8b, 0x8b, 0x77, 0x6b, 0x2b, 0x4d, 0x27, 0x8c, 0xdc, 0xfa, 0x52, 0xd3, 0xaf, 0xef, - 0xd6, 0x22, 0x3f, 0x20, 0x77, 0xfc, 0x66, 0xa7, 0x45, 0x6a, 0x6c, 0x20, 0xd0, 0x33, 0x30, 0xb2, - 0xc7, 0xfe, 0x57, 0xca, 0xb3, 0xd6, 0x45, 0xeb, 0x4a, 0x69, 0x69, 0xea, 0x37, 0x0f, 0xe6, 0xdf, - 0xf7, 0xe0, 0x60, 0x7e, 0xe4, 0x8e, 0x28, 0xc7, 0x0a, 0x03, 0x5d, 0x86, 0xa1, 0xad, 0x70, 0x63, - 0xbf, 0x4d, 0x66, 0x0b, 0x0c, 0x77, 0x42, 0xe0, 0x0e, 0xad, 0xd6, 0x68, 0x29, 0x16, 0x50, 0x74, - 0x15, 0x4a, 0x6d, 0x27, 0x88, 0xdc, 0xc8, 0xf5, 0xbd, 0xd9, 0xe2, 0x45, 0xeb, 0xca, 0xe0, 0xd2, - 0xb4, 0x40, 0x2d, 0x55, 0x25, 0x00, 0xc7, 0x38, 0xb4, 0x1b, 0x01, 0x71, 0x1a, 0xb7, 0xbc, 0xe6, - 0xfe, 0xec, 0xc0, 0x45, 0xeb, 0xca, 0x48, 0xdc, 0x0d, 0x2c, 0xca, 0xb1, 0xc2, 0xb0, 0x7f, 0xa4, - 0x00, 0x23, 0x8b, 0x5b, 0x5b, 0xae, 0xe7, 0x46, 0xfb, 0xe8, 0x0e, 0x8c, 0x79, 0x7e, 0x83, 0xc8, - 0xff, 0xec, 0x2b, 0x46, 0x9f, 0xbf, 0xb8, 0x90, 0x5e, 0x4a, 0x0b, 0xeb, 0x1a, 0xde, 0xd2, 0xd4, - 0x83, 0x83, 0xf9, 0x31, 0xbd, 0x04, 0x1b, 0x74, 0x10, 0x86, 0xd1, 0xb6, 0xdf, 0x50, 0x64, 0x0b, - 0x8c, 0xec, 0x7c, 0x16, 0xd9, 0x6a, 0x8c, 0xb6, 0x34, 0xf9, 0xe0, 0x60, 0x7e, 0x54, 0x2b, 0xc0, - 0x3a, 0x11, 0xb4, 0x09, 0x93, 0xf4, 0xaf, 0x17, 0xb9, 0x8a, 0x6e, 0x91, 0xd1, 0xbd, 0x94, 0x47, - 0x57, 0x43, 0x5d, 0x9a, 0x79, 0x70, 0x30, 0x3f, 0x99, 0x28, 0xc4, 0x49, 0x82, 0xf6, 0xdb, 0x30, - 0xb1, 0x18, 0x45, 0x4e, 0x7d, 0x87, 0x34, 0xf8, 0x0c, 0xa2, 0x17, 0x61, 0xc0, 0x73, 0x5a, 0x44, - 0xcc, 0xef, 0x45, 0x31, 0xb0, 0x03, 0xeb, 0x4e, 0x8b, 0x1c, 0x1e, 0xcc, 0x4f, 0xdd, 0xf6, 0xdc, - 0xb7, 0x3a, 0x62, 0x55, 0xd0, 0x32, 0xcc, 0xb0, 0xd1, 0xf3, 0x00, 0x0d, 0xb2, 0xe7, 0xd6, 0x49, - 0xd5, 0x89, 0x76, 0xc4, 0x7c, 0x23, 0x51, 0x17, 0xca, 0x0a, 0x82, 0x35, 0x2c, 0xfb, 0x3e, 0x94, - 0x16, 0xf7, 0x7c, 0xb7, 0x51, 0xf5, 0x1b, 0x21, 0xda, 0x85, 0xc9, 0x76, 0x40, 0xb6, 0x48, 0xa0, - 0x8a, 0x66, 0xad, 0x8b, 0xc5, 0x2b, 0xa3, 0xcf, 0x5f, 0xc9, 0xfc, 0x58, 0x13, 0x75, 0xc5, 0x8b, - 0x82, 0xfd, 0xa5, 0xc7, 0x44, 0x7b, 0x93, 0x09, 0x28, 0x4e, 0x52, 0xb6, 0xff, 0x59, 0x01, 0x4e, - 0x2f, 0xbe, 0xdd, 0x09, 0x48, 0xd9, 0x0d, 0x77, 0x93, 0x2b, 0xbc, 0xe1, 0x86, 0xbb, 0xeb, 0xf1, - 0x08, 0xa8, 0xa5, 0x55, 0x16, 0xe5, 0x58, 0x61, 0xa0, 0x67, 0x61, 0x98, 0xfe, 0xbe, 0x8d, 0x2b, - 0xe2, 0x93, 0x67, 0x04, 0xf2, 0x68, 0xd9, 0x89, 0x9c, 0x32, 0x07, 0x61, 0x89, 0x83, 0xd6, 0x60, - 0xb4, 0xce, 0x36, 0xe4, 0xf6, 0x9a, 0xdf, 0x20, 0x6c, 0x32, 0x4b, 0x4b, 0x4f, 0x53, 0xf4, 0xe5, - 0xb8, 0xf8, 0xf0, 0x60, 0x7e, 0x96, 0xf7, 0x4d, 0x90, 0xd0, 0x60, 0x58, 0xaf, 0x8f, 0x6c, 0xb5, - 0xbf, 0x06, 0x18, 0x25, 0xc8, 0xd8, 0x5b, 0x57, 0xb4, 0xad, 0x32, 0xc8, 0xb6, 0xca, 0x58, 0xf6, - 0x36, 0x41, 0xcf, 0xc1, 0xc0, 0xae, 0xeb, 0x35, 0x66, 0x87, 0x18, 0xad, 0xf3, 0x74, 0xce, 0x6f, - 0xb8, 0x5e, 0xe3, 0xf0, 0x60, 0x7e, 0xda, 0xe8, 0x0e, 0x2d, 0xc4, 0x0c, 0xd5, 0xfe, 0x33, 0x0b, - 0xe6, 0x19, 0x6c, 0xd5, 0x6d, 0x92, 0x2a, 0x09, 0x42, 0x37, 0x8c, 0x88, 0x17, 0x19, 0x03, 0xfa, - 0x3c, 0x40, 0x48, 0xea, 0x01, 0x89, 0xb4, 0x21, 0x55, 0x0b, 0xa3, 0xa6, 0x20, 0x58, 0xc3, 0xa2, - 0x07, 0x42, 0xb8, 0xe3, 0x04, 0x6c, 0x7d, 0x89, 0x81, 0x55, 0x07, 0x42, 0x4d, 0x02, 0x70, 0x8c, - 0x63, 0x1c, 0x08, 0xc5, 0x5e, 0x07, 0x02, 0xfa, 0x18, 0x4c, 0xc6, 0x8d, 0x85, 0x6d, 0xa7, 0x2e, - 0x07, 0x90, 0x6d, 0x99, 0x9a, 0x09, 0xc2, 0x49, 0x5c, 0xfb, 0x6f, 0x5b, 0x62, 0xf1, 0xd0, 0xaf, - 0x7e, 0x97, 0x7f, 0xab, 0xfd, 0x4b, 0x16, 0x0c, 0x2f, 0xb9, 0x5e, 0xc3, 0xf5, 0xb6, 0xd1, 0x67, - 0x61, 0x84, 0xde, 0x4d, 0x0d, 0x27, 0x72, 0xc4, 0xb9, 0xf7, 0x21, 0x6d, 0x6f, 0xa9, 0xab, 0x62, - 0xa1, 0xbd, 0xbb, 0x4d, 0x0b, 0xc2, 0x05, 0x8a, 0x4d, 0x77, 0xdb, 0xad, 0xcd, 0xcf, 0x91, 0x7a, - 0xb4, 0x46, 0x22, 0x27, 0xfe, 0x9c, 0xb8, 0x0c, 0x2b, 0xaa, 0xe8, 0x06, 0x0c, 0x45, 0x4e, 0xb0, - 0x4d, 0x22, 0x71, 0x00, 0x66, 0x1e, 0x54, 0xbc, 0x26, 0xa6, 0x3b, 0x92, 0x78, 0x75, 0x12, 0x5f, - 0x0b, 0x1b, 0xac, 0x2a, 0x16, 0x24, 0xec, 0x1f, 0x1a, 0x86, 0xb3, 0xcb, 0xb5, 0x4a, 0xce, 0xba, - 0xba, 0x0c, 0x43, 0x8d, 0xc0, 0xdd, 0x23, 0x81, 0x18, 0x67, 0x45, 0xa5, 0xcc, 0x4a, 0xb1, 0x80, - 0xa2, 0x97, 0x61, 0x8c, 0x5f, 0x48, 0xd7, 0x1d, 0xaf, 0xd1, 0x94, 0x43, 0x7c, 0x4a, 0x60, 0x8f, - 0xdd, 0xd1, 0x60, 0xd8, 0xc0, 0x3c, 0xe2, 0xa2, 0xba, 0x9c, 0xd8, 0x8c, 0x79, 0x97, 0xdd, 0x17, - 0x2d, 0x98, 0xe2, 0xcd, 0x2c, 0x46, 0x51, 0xe0, 0x6e, 0x76, 0x22, 0x12, 0xce, 0x0e, 0xb2, 0x93, - 0x6e, 0x39, 0x6b, 0xb4, 0x72, 0x47, 0x60, 0xe1, 0x4e, 0x82, 0x0a, 0x3f, 0x04, 0x67, 0x45, 0xbb, - 0x53, 0x49, 0x30, 0x4e, 0x35, 0x8b, 0xbe, 0xd3, 0x82, 0xb9, 0xba, 0xef, 0x45, 0x81, 0xdf, 0x6c, - 0x92, 0xa0, 0xda, 0xd9, 0x6c, 0xba, 0xe1, 0x0e, 0x5f, 0xa7, 0x98, 0x6c, 0xb1, 0x93, 0x20, 0x67, - 0x0e, 0x15, 0x92, 0x98, 0xc3, 0x0b, 0x0f, 0x0e, 0xe6, 0xe7, 0x96, 0x73, 0x49, 0xe1, 0x2e, 0xcd, - 0xa0, 0x5d, 0x40, 0xf4, 0x2a, 0xad, 0x45, 0xce, 0x36, 0x89, 0x1b, 0x1f, 0xee, 0xbf, 0xf1, 0x33, - 0x0f, 0x0e, 0xe6, 0xd1, 0x7a, 0x8a, 0x04, 0xce, 0x20, 0x8b, 0xde, 0x82, 0x53, 0xb4, 0x34, 0xf5, - 0xad, 0x23, 0xfd, 0x37, 0x37, 0xfb, 0xe0, 0x60, 0xfe, 0xd4, 0x7a, 0x06, 0x11, 0x9c, 0x49, 0x1a, - 0x7d, 0x87, 0x05, 0x67, 0xe3, 0xcf, 0x5f, 0xb9, 0xdf, 0x76, 0xbc, 0x46, 0xdc, 0x70, 0xa9, 0xff, - 0x86, 0xe9, 0x99, 0x7c, 0x76, 0x39, 0x8f, 0x12, 0xce, 0x6f, 0x64, 0x6e, 0x19, 0x4e, 0x67, 0xae, - 0x16, 0x34, 0x05, 0xc5, 0x5d, 0xc2, 0xb9, 0xa0, 0x12, 0xa6, 0x3f, 0xd1, 0x29, 0x18, 0xdc, 0x73, - 0x9a, 0x1d, 0xb1, 0x51, 0x30, 0xff, 0xf3, 0x4a, 0xe1, 0x65, 0xcb, 0xfe, 0xe7, 0x45, 0x98, 0x5c, - 0xae, 0x55, 0x1e, 0x6a, 0x17, 0xea, 0xd7, 0x50, 0xa1, 0xeb, 0x35, 0x14, 0x5f, 0x6a, 0xc5, 0xdc, - 0x4b, 0xed, 0xff, 0xc9, 0xd8, 0x42, 0x03, 0x6c, 0x0b, 0x7d, 0x4b, 0xce, 0x16, 0x3a, 0xe6, 0x8d, - 0xb3, 0x97, 0xb3, 0x8a, 0x06, 0xd9, 0x64, 0x66, 0x72, 0x2c, 0x37, 0xfd, 0xba, 0xd3, 0x4c, 0x1e, - 0x7d, 0x47, 0x5c, 0x4a, 0xc7, 0x33, 0x8f, 0x75, 0x18, 0x5b, 0x76, 0xda, 0xce, 0xa6, 0xdb, 0x74, - 0x23, 0x97, 0x84, 0xe8, 0x49, 0x28, 0x3a, 0x8d, 0x06, 0xe3, 0xb6, 0x4a, 0x4b, 0xa7, 0x1f, 0x1c, - 0xcc, 0x17, 0x17, 0x1b, 0xf4, 0xda, 0x07, 0x85, 0xb5, 0x8f, 0x29, 0x06, 0xfa, 0x20, 0x0c, 0x34, - 0x02, 0xbf, 0x3d, 0x5b, 0x60, 0x98, 0x74, 0xd7, 0x0d, 0x94, 0x03, 0xbf, 0x9d, 0x40, 0x65, 0x38, - 0xf6, 0xaf, 0x15, 0xe0, 0xdc, 0x32, 0x69, 0xef, 0xac, 0xd6, 0x72, 0xce, 0xef, 0x2b, 0x30, 0xd2, - 0xf2, 0x3d, 0x37, 0xf2, 0x83, 0x50, 0x34, 0xcd, 0x56, 0xc4, 0x9a, 0x28, 0xc3, 0x0a, 0x8a, 0x2e, - 0xc2, 0x40, 0x3b, 0x66, 0x2a, 0xc7, 0x24, 0x43, 0xca, 0xd8, 0x49, 0x06, 0xa1, 0x18, 0x9d, 0x90, - 0x04, 0x62, 0xc5, 0x28, 0x8c, 0xdb, 0x21, 0x09, 0x30, 0x83, 0xc4, 0x37, 0x33, 0xbd, 0xb3, 0xc5, - 0x09, 0x9d, 0xb8, 0x99, 0x29, 0x04, 0x6b, 0x58, 0xa8, 0x0a, 0xa5, 0x30, 0x31, 0xb3, 0x7d, 0x6d, - 0xd3, 0x71, 0x76, 0x75, 0xab, 0x99, 0x8c, 0x89, 0x18, 0x37, 0xca, 0x50, 0xcf, 0xab, 0xfb, 0x2b, - 0x05, 0x40, 0x7c, 0x08, 0xbf, 0xc1, 0x06, 0xee, 0x76, 0x7a, 0xe0, 0xfa, 0xdf, 0x12, 0xc7, 0x35, - 0x7a, 0x7f, 0x6e, 0xc1, 0xb9, 0x65, 0xd7, 0x6b, 0x90, 0x20, 0x67, 0x01, 0x3e, 0x9a, 0xb7, 0xec, - 0xd1, 0x98, 0x06, 0x63, 0x89, 0x0d, 0x1c, 0xc3, 0x12, 0xb3, 0xff, 0xc4, 0x02, 0xc4, 0x3f, 0xfb, - 0x5d, 0xf7, 0xb1, 0xb7, 0xd3, 0x1f, 0x7b, 0x0c, 0xcb, 0xc2, 0xbe, 0x09, 0x13, 0xcb, 0x4d, 0x97, - 0x78, 0x51, 0xa5, 0xba, 0xec, 0x7b, 0x5b, 0xee, 0x36, 0x7a, 0x05, 0x26, 0x22, 0xb7, 0x45, 0xfc, - 0x4e, 0x54, 0x23, 0x75, 0xdf, 0x63, 0x2f, 0x49, 0xeb, 0xca, 0xe0, 0x12, 0x7a, 0x70, 0x30, 0x3f, - 0xb1, 0x61, 0x40, 0x70, 0x02, 0xd3, 0xfe, 0x3d, 0x3a, 0x7e, 0x7e, 0xab, 0xed, 0x7b, 0xc4, 0x8b, - 0x96, 0x7d, 0xaf, 0xc1, 0x25, 0x0e, 0xaf, 0xc0, 0x40, 0x44, 0xc7, 0x83, 0x8f, 0xdd, 0x65, 0xb9, - 0x51, 0xe8, 0x28, 0x1c, 0x1e, 0xcc, 0x9f, 0x49, 0xd7, 0x60, 0xe3, 0xc4, 0xea, 0xa0, 0x6f, 0x81, - 0xa1, 0x30, 0x72, 0xa2, 0x4e, 0x28, 0x46, 0xf3, 0x09, 0x39, 0x9a, 0x35, 0x56, 0x7a, 0x78, 0x30, - 0x3f, 0xa9, 0xaa, 0xf1, 0x22, 0x2c, 0x2a, 0xa0, 0xa7, 0x60, 0xb8, 0x45, 0xc2, 0xd0, 0xd9, 0x96, - 0xb7, 0xe1, 0xa4, 0xa8, 0x3b, 0xbc, 0xc6, 0x8b, 0xb1, 0x84, 0xa3, 0x4b, 0x30, 0x48, 0x82, 0xc0, - 0x0f, 0xc4, 0x1e, 0x1d, 0x17, 0x88, 0x83, 0x2b, 0xb4, 0x10, 0x73, 0x98, 0xfd, 0x6f, 0x2c, 0x98, - 0x54, 0x7d, 0xe5, 0x6d, 0x9d, 0xc0, 0xab, 0xe0, 0x53, 0x00, 0x75, 0xf9, 0x81, 0x21, 0xbb, 0x3d, - 0x46, 0x9f, 0xbf, 0x9c, 0x79, 0x51, 0xa7, 0x86, 0x31, 0xa6, 0xac, 0x8a, 0x42, 0xac, 0x51, 0xb3, - 0xff, 0xb1, 0x05, 0x33, 0x89, 0x2f, 0xba, 0xe9, 0x86, 0x11, 0x7a, 0x33, 0xf5, 0x55, 0x0b, 0xfd, - 0x7d, 0x15, 0xad, 0xcd, 0xbe, 0x49, 0x2d, 0x65, 0x59, 0xa2, 0x7d, 0xd1, 0x75, 0x18, 0x74, 0x23, - 0xd2, 0x92, 0x1f, 0x73, 0xa9, 0xeb, 0xc7, 0xf0, 0x5e, 0xc5, 0x33, 0x52, 0xa1, 0x35, 0x31, 0x27, - 0x60, 0xff, 0x5a, 0x11, 0x4a, 0x7c, 0xd9, 0xae, 0x39, 0xed, 0x13, 0x98, 0x8b, 0xa7, 0xa1, 0xe4, - 0xb6, 0x5a, 0x9d, 0xc8, 0xd9, 0x14, 0xc7, 0xf9, 0x08, 0xdf, 0x5a, 0x15, 0x59, 0x88, 0x63, 0x38, - 0xaa, 0xc0, 0x00, 0xeb, 0x0a, 0xff, 0xca, 0x27, 0xb3, 0xbf, 0x52, 0xf4, 0x7d, 0xa1, 0xec, 0x44, - 0x0e, 0xe7, 0xa4, 0xd4, 0x3d, 0x42, 0x8b, 0x30, 0x23, 0x81, 0x1c, 0x80, 0x4d, 0xd7, 0x73, 0x82, - 0x7d, 0x5a, 0x36, 0x5b, 0x64, 0x04, 0x9f, 0xed, 0x4e, 0x70, 0x49, 0xe1, 0x73, 0xb2, 0xea, 0xc3, - 0x62, 0x00, 0xd6, 0x88, 0xce, 0x7d, 0x04, 0x4a, 0x0a, 0xf9, 0x28, 0x0c, 0xd1, 0xdc, 0xc7, 0x60, - 0x32, 0xd1, 0x56, 0xaf, 0xea, 0x63, 0x3a, 0x3f, 0xf5, 0xcb, 0xec, 0xc8, 0x10, 0xbd, 0x5e, 0xf1, - 0xf6, 0xc4, 0x91, 0xfb, 0x36, 0x9c, 0x6a, 0x66, 0x9c, 0x64, 0x62, 0x5e, 0xfb, 0x3f, 0xf9, 0xce, - 0x89, 0xcf, 0x3e, 0x95, 0x05, 0xc5, 0x99, 0x6d, 0x50, 0x1e, 0xc1, 0x6f, 0xd3, 0x0d, 0xe2, 0x34, - 0x75, 0x76, 0xfb, 0x96, 0x28, 0xc3, 0x0a, 0x4a, 0xcf, 0xbb, 0x53, 0xaa, 0xf3, 0x37, 0xc8, 0x7e, - 0x8d, 0x34, 0x49, 0x3d, 0xf2, 0x83, 0xaf, 0x6b, 0xf7, 0xcf, 0xf3, 0xd1, 0xe7, 0xc7, 0xe5, 0xa8, - 0x20, 0x50, 0xbc, 0x41, 0xf6, 0xf9, 0x54, 0xe8, 0x5f, 0x57, 0xec, 0xfa, 0x75, 0x3f, 0x6b, 0xc1, - 0xb8, 0xfa, 0xba, 0x13, 0x38, 0x17, 0x96, 0xcc, 0x73, 0xe1, 0x7c, 0xd7, 0x05, 0x9e, 0x73, 0x22, - 0x7c, 0xa5, 0x00, 0x67, 0x15, 0x0e, 0x7d, 0x1b, 0xf0, 0x3f, 0x62, 0x55, 0x5d, 0x85, 0x92, 0xa7, - 0xa4, 0x56, 0x96, 0x29, 0x2e, 0x8a, 0x65, 0x56, 0x31, 0x0e, 0x65, 0xf1, 0xbc, 0x58, 0xb4, 0x34, - 0xa6, 0x8b, 0x73, 0x85, 0xe8, 0x76, 0x09, 0x8a, 0x1d, 0xb7, 0x21, 0x2e, 0x98, 0x0f, 0xc9, 0xd1, - 0xbe, 0x5d, 0x29, 0x1f, 0x1e, 0xcc, 0x3f, 0x91, 0xa7, 0x4a, 0xa0, 0x37, 0x5b, 0xb8, 0x70, 0xbb, - 0x52, 0xc6, 0xb4, 0x32, 0x5a, 0x84, 0x49, 0xa9, 0x2d, 0xb9, 0x43, 0xd9, 0x2d, 0xdf, 0x13, 0xf7, - 0x90, 0x92, 0xc9, 0x62, 0x13, 0x8c, 0x93, 0xf8, 0xa8, 0x0c, 0x53, 0xbb, 0x9d, 0x4d, 0xd2, 0x24, - 0x11, 0xff, 0xe0, 0x1b, 0x84, 0x4b, 0x2c, 0x4b, 0xf1, 0xcb, 0xec, 0x46, 0x02, 0x8e, 0x53, 0x35, - 0xec, 0xbf, 0x64, 0xf7, 0x81, 0x18, 0xbd, 0x6a, 0xe0, 0xd3, 0x85, 0x45, 0xa9, 0x7f, 0x3d, 0x97, - 0x73, 0x3f, 0xab, 0xe2, 0x06, 0xd9, 0xdf, 0xf0, 0x29, 0x67, 0x9e, 0xbd, 0x2a, 0x8c, 0x35, 0x3f, - 0xd0, 0x75, 0xcd, 0xff, 0x7c, 0x01, 0x4e, 0xab, 0x11, 0x30, 0x98, 0xc0, 0x6f, 0xf4, 0x31, 0x78, - 0x0e, 0x46, 0x1b, 0x64, 0xcb, 0xe9, 0x34, 0x23, 0x25, 0x3e, 0x1f, 0xe4, 0x2a, 0x94, 0x72, 0x5c, - 0x8c, 0x75, 0x9c, 0x23, 0x0c, 0xdb, 0xff, 0x18, 0x65, 0x17, 0x71, 0xe4, 0xd0, 0x35, 0xae, 0x76, - 0x8d, 0x95, 0xbb, 0x6b, 0x2e, 0xc1, 0xa0, 0xdb, 0xa2, 0x8c, 0x59, 0xc1, 0xe4, 0xb7, 0x2a, 0xb4, - 0x10, 0x73, 0x18, 0xfa, 0x00, 0x0c, 0xd7, 0xfd, 0x56, 0xcb, 0xf1, 0x1a, 0xec, 0xca, 0x2b, 0x2d, - 0x8d, 0x52, 0xde, 0x6d, 0x99, 0x17, 0x61, 0x09, 0x43, 0xe7, 0x60, 0xc0, 0x09, 0xb6, 0xb9, 0x0c, - 0xa3, 0xb4, 0x34, 0x42, 0x5b, 0x5a, 0x0c, 0xb6, 0x43, 0xcc, 0x4a, 0xe9, 0x13, 0xec, 0x9e, 0x1f, - 0xec, 0xba, 0xde, 0x76, 0xd9, 0x0d, 0xc4, 0x96, 0x50, 0x77, 0xe1, 0x5d, 0x05, 0xc1, 0x1a, 0x16, - 0x5a, 0x85, 0xc1, 0xb6, 0x1f, 0x44, 0xe1, 0xec, 0x10, 0x1b, 0xee, 0x27, 0x72, 0x0e, 0x22, 0xfe, - 0xb5, 0x55, 0x3f, 0x88, 0xe2, 0x0f, 0xa0, 0xff, 0x42, 0xcc, 0xab, 0xa3, 0x9b, 0x30, 0x4c, 0xbc, - 0xbd, 0xd5, 0xc0, 0x6f, 0xcd, 0xce, 0xe4, 0x53, 0x5a, 0xe1, 0x28, 0x7c, 0x99, 0xc5, 0x3c, 0xaa, - 0x28, 0xc6, 0x92, 0x04, 0xfa, 0x16, 0x28, 0x12, 0x6f, 0x6f, 0x76, 0x98, 0x51, 0x9a, 0xcb, 0xa1, - 0x74, 0xc7, 0x09, 0xe2, 0x33, 0x7f, 0xc5, 0xdb, 0xc3, 0xb4, 0x0e, 0xfa, 0x24, 0x94, 0xe4, 0x81, - 0x11, 0x0a, 0x61, 0x5d, 0xe6, 0x82, 0x95, 0xc7, 0x0c, 0x26, 0x6f, 0x75, 0xdc, 0x80, 0xb4, 0x88, - 0x17, 0x85, 0xf1, 0x09, 0x29, 0xa1, 0x21, 0x8e, 0xa9, 0xa1, 0x4f, 0x4a, 0x09, 0xf1, 0x9a, 0xdf, - 0xf1, 0xa2, 0x70, 0xb6, 0xc4, 0xba, 0x97, 0xa9, 0xbb, 0xbb, 0x13, 0xe3, 0x25, 0x45, 0xc8, 0xbc, - 0x32, 0x36, 0x48, 0xa1, 0x4f, 0xc3, 0x38, 0xff, 0xcf, 0x35, 0x60, 0xe1, 0xec, 0x69, 0x46, 0xfb, - 0x62, 0x3e, 0x6d, 0x8e, 0xb8, 0x74, 0x5a, 0x10, 0x1f, 0xd7, 0x4b, 0x43, 0x6c, 0x52, 0x43, 0x18, - 0xc6, 0x9b, 0xee, 0x1e, 0xf1, 0x48, 0x18, 0x56, 0x03, 0x7f, 0x93, 0xcc, 0x02, 0x1b, 0x98, 0xb3, - 0xd9, 0x1a, 0x33, 0x7f, 0x93, 0x2c, 0x4d, 0x53, 0x9a, 0x37, 0xf5, 0x3a, 0xd8, 0x24, 0x81, 0x6e, - 0xc3, 0x04, 0x7d, 0xb1, 0xb9, 0x31, 0xd1, 0xd1, 0x5e, 0x44, 0xd9, 0xbb, 0x0a, 0x1b, 0x95, 0x70, - 0x82, 0x08, 0xba, 0x05, 0x63, 0x61, 0xe4, 0x04, 0x51, 0xa7, 0xcd, 0x89, 0x9e, 0xe9, 0x45, 0x94, - 0x29, 0x5c, 0x6b, 0x5a, 0x15, 0x6c, 0x10, 0x40, 0xaf, 0x43, 0xa9, 0xe9, 0x6e, 0x91, 0xfa, 0x7e, - 0xbd, 0x49, 0x66, 0xc7, 0x18, 0xb5, 0xcc, 0x43, 0xe5, 0xa6, 0x44, 0xe2, 0x7c, 0xae, 0xfa, 0x8b, - 0xe3, 0xea, 0xe8, 0x0e, 0x9c, 0x89, 0x48, 0xd0, 0x72, 0x3d, 0x87, 0x1e, 0x06, 0xe2, 0x69, 0xc5, - 0x14, 0x99, 0xe3, 0x6c, 0xb7, 0x5d, 0x10, 0xb3, 0x71, 0x66, 0x23, 0x13, 0x0b, 0xe7, 0xd4, 0x46, - 0xf7, 0x61, 0x36, 0x03, 0xe2, 0x37, 0xdd, 0xfa, 0xfe, 0xec, 0x29, 0x46, 0xf9, 0xa3, 0x82, 0xf2, - 0xec, 0x46, 0x0e, 0xde, 0x61, 0x17, 0x18, 0xce, 0xa5, 0x8e, 0x6e, 0xc1, 0x24, 0x3b, 0x81, 0xaa, - 0x9d, 0x66, 0x53, 0x34, 0x38, 0xc1, 0x1a, 0xfc, 0x80, 0xbc, 0x8f, 0x2b, 0x26, 0xf8, 0xf0, 0x60, - 0x1e, 0xe2, 0x7f, 0x38, 0x59, 0x1b, 0x6d, 0x32, 0x9d, 0x59, 0x27, 0x70, 0xa3, 0x7d, 0x7a, 0x6e, - 0x90, 0xfb, 0xd1, 0xec, 0x64, 0x57, 0x79, 0x85, 0x8e, 0xaa, 0x14, 0x6b, 0x7a, 0x21, 0x4e, 0x12, - 0xa4, 0x47, 0x6a, 0x18, 0x35, 0x5c, 0x6f, 0x76, 0x8a, 0xbf, 0x4b, 0xe4, 0x89, 0x54, 0xa3, 0x85, - 0x98, 0xc3, 0x98, 0xbe, 0x8c, 0xfe, 0xb8, 0x45, 0x6f, 0xae, 0x69, 0x86, 0x18, 0xeb, 0xcb, 0x24, - 0x00, 0xc7, 0x38, 0x94, 0x99, 0x8c, 0xa2, 0xfd, 0x59, 0xc4, 0x50, 0xd5, 0xc1, 0xb2, 0xb1, 0xf1, - 0x49, 0x4c, 0xcb, 0xed, 0x4d, 0x98, 0x50, 0x07, 0x21, 0x1b, 0x13, 0x34, 0x0f, 0x83, 0x8c, 0x7d, - 0x12, 0xd2, 0xb5, 0x12, 0xed, 0x02, 0x63, 0xad, 0x30, 0x2f, 0x67, 0x5d, 0x70, 0xdf, 0x26, 0x4b, - 0xfb, 0x11, 0xe1, 0x6f, 0xfa, 0xa2, 0xd6, 0x05, 0x09, 0xc0, 0x31, 0x8e, 0xfd, 0xbf, 0x39, 0x1b, - 0x1a, 0x9f, 0xb6, 0x7d, 0xdc, 0x2f, 0xcf, 0xc0, 0xc8, 0x8e, 0x1f, 0x46, 0x14, 0x9b, 0xb5, 0x31, - 0x18, 0x33, 0x9e, 0xd7, 0x45, 0x39, 0x56, 0x18, 0xe8, 0x55, 0x18, 0xaf, 0xeb, 0x0d, 0x88, 0xcb, - 0x51, 0x1d, 0x23, 0x46, 0xeb, 0xd8, 0xc4, 0x45, 0x2f, 0xc3, 0x08, 0xb3, 0x01, 0xa9, 0xfb, 0x4d, - 0xc1, 0xb5, 0xc9, 0x1b, 0x7e, 0xa4, 0x2a, 0xca, 0x0f, 0xb5, 0xdf, 0x58, 0x61, 0xa3, 0xcb, 0x30, - 0x44, 0xbb, 0x50, 0xa9, 0x8a, 0x6b, 0x49, 0x09, 0x8a, 0xae, 0xb3, 0x52, 0x2c, 0xa0, 0xf6, 0xff, - 0x5f, 0xd0, 0x46, 0x99, 0xbe, 0x87, 0x09, 0xaa, 0xc2, 0xf0, 0x3d, 0xc7, 0x8d, 0x5c, 0x6f, 0x5b, - 0xf0, 0x1f, 0x4f, 0x75, 0xbd, 0xa3, 0x58, 0xa5, 0xbb, 0xbc, 0x02, 0xbf, 0x45, 0xc5, 0x1f, 0x2c, - 0xc9, 0x50, 0x8a, 0x41, 0xc7, 0xf3, 0x28, 0xc5, 0x42, 0xbf, 0x14, 0x31, 0xaf, 0xc0, 0x29, 0x8a, - 0x3f, 0x58, 0x92, 0x41, 0x6f, 0x02, 0xc8, 0x1d, 0x46, 0x1a, 0xc2, 0xf6, 0xe2, 0x99, 0xde, 0x44, - 0x37, 0x54, 0x9d, 0xa5, 0x09, 0x7a, 0x47, 0xc7, 0xff, 0xb1, 0x46, 0xcf, 0x8e, 0x18, 0x9f, 0x96, - 0xee, 0x0c, 0xfa, 0x36, 0xba, 0xc4, 0x9d, 0x20, 0x22, 0x8d, 0xc5, 0x48, 0x0c, 0xce, 0x07, 0xfb, - 0x7b, 0xa4, 0x6c, 0xb8, 0x2d, 0xa2, 0x6f, 0x07, 0x41, 0x04, 0xc7, 0xf4, 0xec, 0x5f, 0x2c, 0xc2, - 0x6c, 0x5e, 0x77, 0xe9, 0xa2, 0x23, 0xf7, 0xdd, 0x68, 0x99, 0xb2, 0x57, 0x96, 0xb9, 0xe8, 0x56, - 0x44, 0x39, 0x56, 0x18, 0x74, 0xf6, 0x43, 0x77, 0x5b, 0xbe, 0x31, 0x07, 0xe3, 0xd9, 0xaf, 0xb1, - 0x52, 0x2c, 0xa0, 0x14, 0x2f, 0x20, 0x4e, 0x28, 0x8c, 0x7b, 0xb4, 0x55, 0x82, 0x59, 0x29, 0x16, - 0x50, 0x5d, 0xda, 0x35, 0xd0, 0x43, 0xda, 0x65, 0x0c, 0xd1, 0xe0, 0xf1, 0x0e, 0x11, 0xfa, 0x0c, - 0xc0, 0x96, 0xeb, 0xb9, 0xe1, 0x0e, 0xa3, 0x3e, 0x74, 0x64, 0xea, 0x8a, 0x39, 0x5b, 0x55, 0x54, - 0xb0, 0x46, 0x11, 0xbd, 0x04, 0xa3, 0x6a, 0x03, 0x56, 0xca, 0x4c, 0xd3, 0xa9, 0x59, 0x8e, 0xc4, - 0xa7, 0x51, 0x19, 0xeb, 0x78, 0xf6, 0xe7, 0x92, 0xeb, 0x45, 0xec, 0x00, 0x6d, 0x7c, 0xad, 0x7e, - 0xc7, 0xb7, 0xd0, 0x7d, 0x7c, 0xed, 0xaf, 0x15, 0x61, 0xd2, 0x68, 0xac, 0x13, 0xf6, 0x71, 0x66, - 0x5d, 0xa3, 0x07, 0xb8, 0x13, 0x11, 0xb1, 0xff, 0xec, 0xde, 0x5b, 0x45, 0x3f, 0xe4, 0xe9, 0x0e, - 0xe0, 0xf5, 0xd1, 0x67, 0xa0, 0xd4, 0x74, 0x42, 0x26, 0x39, 0x23, 0x62, 0xdf, 0xf5, 0x43, 0x2c, - 0x7e, 0x98, 0x38, 0x61, 0xa4, 0xdd, 0x9a, 0x9c, 0x76, 0x4c, 0x92, 0xde, 0x34, 0x94, 0x3f, 0x91, - 0xd6, 0x63, 0xaa, 0x13, 0x94, 0x89, 0xd9, 0xc7, 0x1c, 0x86, 0x5e, 0x86, 0xb1, 0x80, 0xb0, 0x55, - 0xb1, 0x4c, 0xb9, 0x39, 0xb6, 0xcc, 0x06, 0x63, 0xb6, 0x0f, 0x6b, 0x30, 0x6c, 0x60, 0xc6, 0x6f, - 0x83, 0xa1, 0x2e, 0x6f, 0x83, 0xa7, 0x60, 0x98, 0xfd, 0x50, 0x2b, 0x40, 0xcd, 0x46, 0x85, 0x17, - 0x63, 0x09, 0x4f, 0x2e, 0x98, 0x91, 0xfe, 0x16, 0x0c, 0x7d, 0x7d, 0x88, 0x45, 0xcd, 0xb4, 0xcc, - 0x23, 0xfc, 0x94, 0x13, 0x4b, 0x1e, 0x4b, 0x98, 0xfd, 0x41, 0x98, 0x28, 0x3b, 0xa4, 0xe5, 0x7b, - 0x2b, 0x5e, 0xa3, 0xed, 0xbb, 0x5e, 0x84, 0x66, 0x61, 0x80, 0x5d, 0x22, 0xfc, 0x08, 0x18, 0xa0, - 0x0d, 0xe1, 0x01, 0xfa, 0x20, 0xb0, 0xb7, 0xe1, 0x74, 0xd9, 0xbf, 0xe7, 0xdd, 0x73, 0x82, 0xc6, - 0x62, 0xb5, 0xa2, 0xbd, 0xaf, 0xd7, 0xe5, 0xfb, 0x8e, 0x1b, 0x6d, 0x65, 0x1e, 0xbd, 0x5a, 0x4d, - 0xce, 0xd6, 0xae, 0xba, 0x4d, 0x92, 0x23, 0x05, 0xf9, 0xab, 0x05, 0xa3, 0xa5, 0x18, 0x5f, 0x69, - 0xb5, 0xac, 0x5c, 0xad, 0xd6, 0x1b, 0x30, 0xb2, 0xe5, 0x92, 0x66, 0x03, 0x93, 0x2d, 0xb1, 0x12, - 0x9f, 0xcc, 0xb7, 0x43, 0x59, 0xa5, 0x98, 0x52, 0xea, 0xc5, 0x5f, 0x87, 0xab, 0xa2, 0x32, 0x56, - 0x64, 0xd0, 0x2e, 0x4c, 0xc9, 0x07, 0x83, 0x84, 0x8a, 0x75, 0xf9, 0x54, 0xb7, 0x57, 0x88, 0x49, - 0xfc, 0xd4, 0x83, 0x83, 0xf9, 0x29, 0x9c, 0x20, 0x83, 0x53, 0x84, 0xe9, 0x73, 0xb0, 0x45, 0x4f, - 0xe0, 0x01, 0x36, 0xfc, 0xec, 0x39, 0xc8, 0x5e, 0xb6, 0xac, 0xd4, 0xfe, 0x31, 0x0b, 0x1e, 0x4b, - 0x8d, 0x8c, 0x78, 0xe1, 0x1f, 0xf3, 0x2c, 0x24, 0x5f, 0xdc, 0x85, 0xde, 0x2f, 0x6e, 0xfb, 0xef, - 0x58, 0x70, 0x6a, 0xa5, 0xd5, 0x8e, 0xf6, 0xcb, 0xae, 0xa9, 0x82, 0xfa, 0x08, 0x0c, 0xb5, 0x48, - 0xc3, 0xed, 0xb4, 0xc4, 0xcc, 0xcd, 0xcb, 0x53, 0x6a, 0x8d, 0x95, 0x1e, 0x1e, 0xcc, 0x8f, 0xd7, - 0x22, 0x3f, 0x70, 0xb6, 0x09, 0x2f, 0xc0, 0x02, 0x9d, 0x9d, 0xf5, 0xee, 0xdb, 0xe4, 0xa6, 0xdb, - 0x72, 0xa5, 0x5d, 0x51, 0x57, 0x99, 0xdd, 0x82, 0x1c, 0xd0, 0x85, 0x37, 0x3a, 0x8e, 0x17, 0xb9, - 0xd1, 0xbe, 0xd0, 0x1e, 0x49, 0x22, 0x38, 0xa6, 0x67, 0x7f, 0xd5, 0x82, 0x49, 0xb9, 0xee, 0x17, - 0x1b, 0x8d, 0x80, 0x84, 0x21, 0x9a, 0x83, 0x82, 0xdb, 0x16, 0xbd, 0x04, 0xd1, 0xcb, 0x42, 0xa5, - 0x8a, 0x0b, 0x6e, 0x5b, 0xb2, 0x65, 0xec, 0x20, 0x2c, 0x9a, 0x8a, 0xb4, 0xeb, 0xa2, 0x1c, 0x2b, - 0x0c, 0x74, 0x05, 0x46, 0x3c, 0xbf, 0xc1, 0x6d, 0xbb, 0xf8, 0x95, 0xc6, 0x16, 0xd8, 0xba, 0x28, - 0xc3, 0x0a, 0x8a, 0xaa, 0x50, 0xe2, 0x66, 0x4f, 0xf1, 0xa2, 0xed, 0xcb, 0x78, 0x8a, 0x7d, 0xd9, - 0x86, 0xac, 0x89, 0x63, 0x22, 0xf6, 0xaf, 0x5a, 0x30, 0x26, 0xbf, 0xac, 0x4f, 0x9e, 0x93, 0x6e, - 0xad, 0x98, 0xdf, 0x8c, 0xb7, 0x16, 0xe5, 0x19, 0x19, 0xc4, 0x60, 0x15, 0x8b, 0x47, 0x62, 0x15, - 0x9f, 0x83, 0x51, 0xa7, 0xdd, 0xae, 0x9a, 0x7c, 0x26, 0x5b, 0x4a, 0x8b, 0x71, 0x31, 0xd6, 0x71, - 0xec, 0x1f, 0x2d, 0xc0, 0x84, 0xfc, 0x82, 0x5a, 0x67, 0x33, 0x24, 0x11, 0xda, 0x80, 0x92, 0xc3, - 0x67, 0x89, 0xc8, 0x45, 0x7e, 0x29, 0x5b, 0x8e, 0x60, 0x4c, 0x69, 0x7c, 0xe1, 0x2f, 0xca, 0xda, - 0x38, 0x26, 0x84, 0x9a, 0x30, 0xed, 0xf9, 0x11, 0x3b, 0xfc, 0x15, 0xbc, 0x9b, 0x6a, 0x27, 0x49, - 0xfd, 0xac, 0xa0, 0x3e, 0xbd, 0x9e, 0xa4, 0x82, 0xd3, 0x84, 0xd1, 0x8a, 0x94, 0xcd, 0x14, 0xf3, - 0x85, 0x01, 0xfa, 0xc4, 0x65, 0x8b, 0x66, 0xec, 0x5f, 0xb1, 0xa0, 0x24, 0xd1, 0x4e, 0x42, 0x8b, - 0xb7, 0x06, 0xc3, 0x21, 0x9b, 0x04, 0x39, 0x34, 0x76, 0xb7, 0x8e, 0xf3, 0xf9, 0x8a, 0xef, 0x34, - 0xfe, 0x3f, 0xc4, 0x92, 0x06, 0x13, 0xcd, 0xab, 0xee, 0xbf, 0x4b, 0x44, 0xf3, 0xaa, 0x3f, 0x39, - 0x97, 0xd2, 0x1f, 0xb1, 0x3e, 0x6b, 0xb2, 0x2e, 0xca, 0x7a, 0xb5, 0x03, 0xb2, 0xe5, 0xde, 0x4f, - 0xb2, 0x5e, 0x55, 0x56, 0x8a, 0x05, 0x14, 0xbd, 0x09, 0x63, 0x75, 0x29, 0x93, 0x8d, 0x77, 0xf8, - 0xe5, 0xae, 0xfa, 0x01, 0xa5, 0x4a, 0xe2, 0xb2, 0x90, 0x65, 0xad, 0x3e, 0x36, 0xa8, 0x99, 0x66, - 0x04, 0xc5, 0x5e, 0x66, 0x04, 0x31, 0xdd, 0x7c, 0xa5, 0xfa, 0x8f, 0x5b, 0x30, 0xc4, 0x65, 0x71, - 0xfd, 0x89, 0x42, 0x35, 0xcd, 0x5a, 0x3c, 0x76, 0x77, 0x68, 0xa1, 0xd0, 0x94, 0xa1, 0x35, 0x28, - 0xb1, 0x1f, 0x4c, 0x96, 0x58, 0xcc, 0xb7, 0xba, 0xe7, 0xad, 0xea, 0x1d, 0xbc, 0x23, 0xab, 0xe1, - 0x98, 0x82, 0xfd, 0xc3, 0x45, 0x7a, 0xba, 0xc5, 0xa8, 0xc6, 0xa5, 0x6f, 0x3d, 0xba, 0x4b, 0xbf, - 0xf0, 0xa8, 0x2e, 0xfd, 0x6d, 0x98, 0xac, 0x6b, 0x7a, 0xb8, 0x78, 0x26, 0xaf, 0x74, 0x5d, 0x24, - 0x9a, 0xca, 0x8e, 0x4b, 0x59, 0x96, 0x4d, 0x22, 0x38, 0x49, 0x15, 0x7d, 0x1b, 0x8c, 0xf1, 0x79, - 0x16, 0xad, 0x70, 0x4b, 0x8c, 0x0f, 0xe4, 0xaf, 0x17, 0xbd, 0x09, 0x2e, 0x95, 0xd3, 0xaa, 0x63, - 0x83, 0x98, 0xfd, 0xa7, 0x16, 0xa0, 0x95, 0xf6, 0x0e, 0x69, 0x91, 0xc0, 0x69, 0xc6, 0xe2, 0xf4, - 0xef, 0xb7, 0x60, 0x96, 0xa4, 0x8a, 0x97, 0xfd, 0x56, 0x4b, 0x3c, 0x5a, 0x72, 0xde, 0xd5, 0x2b, - 0x39, 0x75, 0x94, 0x5b, 0xc2, 0x6c, 0x1e, 0x06, 0xce, 0x6d, 0x0f, 0xad, 0xc1, 0x0c, 0xbf, 0x25, - 0x15, 0x40, 0xb3, 0xbd, 0x7e, 0x5c, 0x10, 0x9e, 0xd9, 0x48, 0xa3, 0xe0, 0xac, 0x7a, 0xf6, 0x77, - 0x8d, 0x41, 0x6e, 0x2f, 0xde, 0xd3, 0x23, 0xbc, 0xa7, 0x47, 0x78, 0x4f, 0x8f, 0xf0, 0x9e, 0x1e, - 0xe1, 0x3d, 0x3d, 0xc2, 0x37, 0xbd, 0x1e, 0xe1, 0x8f, 0x2d, 0x98, 0x49, 0x5f, 0x03, 0x27, 0xc1, - 0x98, 0x77, 0x60, 0x26, 0x7d, 0xd7, 0x75, 0xb5, 0xb3, 0x4b, 0xf7, 0x33, 0xbe, 0xf7, 0x32, 0xbe, - 0x01, 0x67, 0xd1, 0xb7, 0x7f, 0xc3, 0x82, 0xd3, 0x0a, 0xd9, 0x78, 0xe9, 0x7f, 0x1e, 0x66, 0xf8, - 0xf9, 0xb2, 0xdc, 0x74, 0xdc, 0xd6, 0x06, 0x69, 0xb5, 0x9b, 0x4e, 0x24, 0xcd, 0x0c, 0x9e, 0xcb, - 0xdc, 0xaa, 0x09, 0x13, 0x5d, 0xa3, 0xe2, 0xd2, 0x63, 0xb4, 0x5f, 0x19, 0x00, 0x9c, 0xd5, 0x8c, - 0x61, 0x94, 0x5a, 0xe8, 0x69, 0x26, 0xfc, 0x8b, 0x23, 0x30, 0xb8, 0xb2, 0x47, 0xbc, 0xe8, 0x04, - 0x26, 0xaa, 0x0e, 0x13, 0xae, 0xb7, 0xe7, 0x37, 0xf7, 0x48, 0x83, 0xc3, 0x8f, 0xf2, 0xd0, 0x3f, - 0x23, 0x48, 0x4f, 0x54, 0x0c, 0x12, 0x38, 0x41, 0xf2, 0x51, 0x08, 0xdb, 0xaf, 0xc1, 0x10, 0xbf, - 0xe3, 0x84, 0xa4, 0x3d, 0xf3, 0x4a, 0x63, 0x83, 0x28, 0x6e, 0xee, 0x58, 0x11, 0xc0, 0xef, 0x50, - 0x51, 0x1d, 0x7d, 0x0e, 0x26, 0xb6, 0xdc, 0x20, 0x8c, 0x36, 0xdc, 0x16, 0x09, 0x23, 0xa7, 0xd5, - 0x7e, 0x08, 0xe1, 0xba, 0x1a, 0x87, 0x55, 0x83, 0x12, 0x4e, 0x50, 0x46, 0xdb, 0x30, 0xde, 0x74, - 0xf4, 0xa6, 0x86, 0x8f, 0xdc, 0x94, 0xba, 0x3c, 0x6f, 0xea, 0x84, 0xb0, 0x49, 0x97, 0x9e, 0x36, - 0x75, 0x26, 0x1f, 0x1e, 0x61, 0x52, 0x13, 0x75, 0xda, 0x70, 0xc1, 0x30, 0x87, 0x51, 0x3e, 0x90, - 0xd9, 0x0f, 0x97, 0x4c, 0x3e, 0x50, 0xb3, 0x12, 0xfe, 0x2c, 0x94, 0x08, 0x1d, 0x42, 0x4a, 0x58, - 0xdc, 0xbf, 0x57, 0xfb, 0xeb, 0xeb, 0x9a, 0x5b, 0x0f, 0x7c, 0x53, 0xad, 0xb1, 0x22, 0x29, 0xe1, - 0x98, 0x28, 0x5a, 0x86, 0xa1, 0x90, 0x04, 0x2e, 0x09, 0xc5, 0x4d, 0xdc, 0x65, 0x1a, 0x19, 0x1a, - 0x77, 0xbd, 0xe1, 0xbf, 0xb1, 0xa8, 0x4a, 0x97, 0x97, 0xc3, 0x24, 0xbe, 0xec, 0xae, 0xd4, 0x96, - 0xd7, 0x22, 0x2b, 0xc5, 0x02, 0x8a, 0x5e, 0x87, 0xe1, 0x80, 0x34, 0x99, 0xde, 0x6c, 0xbc, 0xff, - 0x45, 0xce, 0xd5, 0x70, 0xbc, 0x1e, 0x96, 0x04, 0xd0, 0x0d, 0x40, 0x01, 0xa1, 0x7c, 0xa4, 0xeb, - 0x6d, 0x2b, 0xab, 0x5a, 0x71, 0x0f, 0xa9, 0x73, 0x0b, 0xc7, 0x18, 0xd2, 0x0b, 0x0a, 0x67, 0x54, - 0x43, 0xd7, 0x60, 0x5a, 0x95, 0x56, 0xbc, 0x30, 0x72, 0xe8, 0xf9, 0x3f, 0xc9, 0x68, 0x29, 0x31, - 0x0e, 0x4e, 0x22, 0xe0, 0x74, 0x1d, 0xfb, 0xcb, 0x16, 0xf0, 0x71, 0x3e, 0x01, 0xe1, 0xc5, 0x6b, - 0xa6, 0xf0, 0xe2, 0x6c, 0xee, 0xcc, 0xe5, 0x08, 0x2e, 0xbe, 0x6c, 0xc1, 0xa8, 0x36, 0xb3, 0xf1, - 0x9a, 0xb5, 0xba, 0xac, 0xd9, 0x0e, 0x4c, 0xd1, 0x95, 0x7e, 0x6b, 0x33, 0x24, 0xc1, 0x1e, 0x69, - 0xb0, 0x85, 0x59, 0x78, 0xb8, 0x85, 0xa9, 0x2c, 0xf8, 0x6e, 0x26, 0x08, 0xe2, 0x54, 0x13, 0xf6, - 0x67, 0x65, 0x57, 0x95, 0xc1, 0x63, 0x5d, 0xcd, 0x79, 0xc2, 0xe0, 0x51, 0xcd, 0x2a, 0x8e, 0x71, - 0xe8, 0x56, 0xdb, 0xf1, 0xc3, 0x28, 0x69, 0xf0, 0x78, 0xdd, 0x0f, 0x23, 0xcc, 0x20, 0xf6, 0x0b, - 0x00, 0x2b, 0xf7, 0x49, 0x9d, 0xaf, 0x58, 0xfd, 0x6d, 0x65, 0xe5, 0xbf, 0xad, 0xec, 0xdf, 0xb1, - 0x60, 0x62, 0x75, 0xd9, 0xb8, 0xe7, 0x16, 0x00, 0xf8, 0x83, 0xf0, 0xee, 0xdd, 0x75, 0x69, 0x2d, - 0xc0, 0x15, 0xbe, 0xaa, 0x14, 0x6b, 0x18, 0xe8, 0x2c, 0x14, 0x9b, 0x1d, 0x4f, 0x48, 0x57, 0x87, - 0x29, 0xf7, 0x70, 0xb3, 0xe3, 0x61, 0x5a, 0xa6, 0x79, 0x5c, 0x14, 0xfb, 0xf6, 0xb8, 0xe8, 0x19, - 0xf9, 0x00, 0xcd, 0xc3, 0xe0, 0xbd, 0x7b, 0x6e, 0x83, 0xfb, 0x97, 0x0a, 0x4b, 0x86, 0xbb, 0x77, - 0x2b, 0xe5, 0x10, 0xf3, 0x72, 0xfb, 0x4b, 0x45, 0x98, 0x5b, 0x6d, 0x92, 0xfb, 0xef, 0xd0, 0xc7, - 0xb6, 0x5f, 0x7f, 0x91, 0xa3, 0xc9, 0xa9, 0x8e, 0xea, 0x13, 0xd4, 0x7b, 0x3c, 0xb6, 0x60, 0x98, - 0xdb, 0xfb, 0x49, 0x8f, 0xdb, 0x57, 0xb3, 0x5a, 0xcf, 0x1f, 0x90, 0x05, 0x6e, 0x37, 0x28, 0x1c, - 0x06, 0xd5, 0x85, 0x29, 0x4a, 0xb1, 0x24, 0x3e, 0xf7, 0x0a, 0x8c, 0xe9, 0x98, 0x47, 0xf2, 0xce, - 0xfb, 0x7f, 0x8b, 0x30, 0x45, 0x7b, 0xf0, 0x48, 0x27, 0xe2, 0x76, 0x7a, 0x22, 0x8e, 0xdb, 0x43, - 0xab, 0xf7, 0x6c, 0xbc, 0x99, 0x9c, 0x8d, 0xe7, 0xf2, 0x66, 0xe3, 0xa4, 0xe7, 0xe0, 0x3b, 0x2d, - 0x98, 0x59, 0x6d, 0xfa, 0xf5, 0xdd, 0x84, 0x17, 0xd5, 0x4b, 0x30, 0x4a, 0x8f, 0xe3, 0xd0, 0x70, - 0xf0, 0x37, 0x42, 0x3e, 0x08, 0x10, 0xd6, 0xf1, 0xb4, 0x6a, 0xb7, 0x6f, 0x57, 0xca, 0x59, 0x91, - 0x22, 0x04, 0x08, 0xeb, 0x78, 0xf6, 0x6f, 0x59, 0x70, 0xfe, 0xda, 0xf2, 0x4a, 0xbc, 0x14, 0x53, - 0xc1, 0x2a, 0x2e, 0xc3, 0x50, 0xbb, 0xa1, 0x75, 0x25, 0x96, 0x3e, 0x97, 0x59, 0x2f, 0x04, 0xf4, - 0xdd, 0x12, 0x88, 0xe5, 0xa7, 0x2d, 0x98, 0xb9, 0xe6, 0x46, 0xf4, 0x76, 0x4d, 0x86, 0x4d, 0xa0, - 0xd7, 0x6b, 0xe8, 0x46, 0x7e, 0xb0, 0x9f, 0x0c, 0x9b, 0x80, 0x15, 0x04, 0x6b, 0x58, 0xbc, 0xe5, - 0x3d, 0x97, 0x59, 0x9a, 0x17, 0x4c, 0x3d, 0x1c, 0x16, 0xe5, 0x58, 0x61, 0xd0, 0x0f, 0x6b, 0xb8, - 0x01, 0x13, 0x61, 0xee, 0x8b, 0x13, 0x56, 0x7d, 0x58, 0x59, 0x02, 0x70, 0x8c, 0x43, 0x5f, 0x73, - 0xf3, 0xd7, 0x9a, 0x9d, 0x30, 0x22, 0xc1, 0x56, 0x98, 0x73, 0x3a, 0xbe, 0x00, 0x25, 0x22, 0x15, - 0x06, 0xa2, 0xd7, 0x8a, 0x63, 0x54, 0x9a, 0x04, 0x1e, 0xbd, 0x41, 0xe1, 0xf5, 0xe1, 0x93, 0x79, - 0x34, 0xa7, 0xba, 0x55, 0x40, 0x44, 0x6f, 0x4b, 0x0f, 0x67, 0xc1, 0xfc, 0xe2, 0x57, 0x52, 0x50, - 0x9c, 0x51, 0xc3, 0xfe, 0x31, 0x0b, 0x4e, 0xab, 0x0f, 0x7e, 0xd7, 0x7d, 0xa6, 0xfd, 0x73, 0x05, - 0x18, 0xbf, 0xbe, 0xb1, 0x51, 0xbd, 0x46, 0x22, 0x71, 0x6d, 0xf7, 0x36, 0x03, 0xc0, 0x9a, 0x36, - 0xb3, 0xdb, 0x63, 0xae, 0x13, 0xb9, 0xcd, 0x05, 0x1e, 0x15, 0x69, 0xa1, 0xe2, 0x45, 0xb7, 0x82, - 0x5a, 0x14, 0xb8, 0xde, 0x76, 0xa6, 0xfe, 0x53, 0x32, 0x17, 0xc5, 0x3c, 0xe6, 0x02, 0xbd, 0x00, - 0x43, 0x2c, 0x2c, 0x93, 0x9c, 0x84, 0xc7, 0xd5, 0x5b, 0x88, 0x95, 0x1e, 0x1e, 0xcc, 0x97, 0x6e, - 0xe3, 0x0a, 0xff, 0x83, 0x05, 0x2a, 0xba, 0x0d, 0xa3, 0x3b, 0x51, 0xd4, 0xbe, 0x4e, 0x9c, 0x06, - 0x7d, 0xba, 0xf3, 0xe3, 0xf0, 0x42, 0xd6, 0x71, 0x48, 0x07, 0x81, 0xa3, 0xc5, 0x27, 0x48, 0x5c, - 0x16, 0x62, 0x9d, 0x8e, 0x5d, 0x03, 0x88, 0x61, 0xc7, 0xa4, 0xc8, 0xb1, 0xff, 0xd0, 0x82, 0x61, - 0x1e, 0x21, 0x23, 0x40, 0x1f, 0x85, 0x01, 0x72, 0x9f, 0xd4, 0x05, 0xc7, 0x9b, 0xd9, 0xe1, 0x98, - 0xd3, 0xe2, 0x02, 0x69, 0xfa, 0x1f, 0xb3, 0x5a, 0xe8, 0x3a, 0x0c, 0xd3, 0xde, 0x5e, 0x53, 0xe1, - 0x42, 0x9e, 0xc8, 0xfb, 0x62, 0x35, 0xed, 0x9c, 0x39, 0x13, 0x45, 0x58, 0x56, 0x67, 0xda, 0xf3, - 0x7a, 0xbb, 0x46, 0x4f, 0xec, 0xa8, 0x1b, 0x63, 0xb1, 0xb1, 0x5c, 0xe5, 0x48, 0x82, 0x1a, 0xd7, - 0x9e, 0xcb, 0x42, 0x1c, 0x13, 0xb1, 0x37, 0xa0, 0x44, 0x27, 0x75, 0xb1, 0xe9, 0x3a, 0xdd, 0x0d, - 0x02, 0x9e, 0x86, 0x92, 0x54, 0xf7, 0x87, 0xc2, 0x33, 0x9e, 0x51, 0x95, 0xd6, 0x00, 0x21, 0x8e, - 0xe1, 0xf6, 0x16, 0x9c, 0x62, 0xc6, 0x9b, 0x4e, 0xb4, 0x63, 0xec, 0xb1, 0xde, 0x8b, 0xf9, 0x19, - 0xf1, 0x80, 0xe4, 0x33, 0x33, 0xab, 0x39, 0x9f, 0x8e, 0x49, 0x8a, 0xf1, 0x63, 0xd2, 0xfe, 0xda, - 0x00, 0x3c, 0x5e, 0xa9, 0xe5, 0x07, 0x4f, 0x79, 0x19, 0xc6, 0x38, 0x5f, 0x4a, 0x97, 0xb6, 0xd3, - 0x14, 0xed, 0x2a, 0x49, 0xf4, 0x86, 0x06, 0xc3, 0x06, 0x26, 0x3a, 0x0f, 0x45, 0xf7, 0x2d, 0x2f, - 0xe9, 0x9a, 0x55, 0x79, 0x63, 0x1d, 0xd3, 0x72, 0x0a, 0xa6, 0x2c, 0x2e, 0xbf, 0x3b, 0x14, 0x58, - 0xb1, 0xb9, 0xaf, 0xc1, 0x84, 0x1b, 0xd6, 0x43, 0xb7, 0xe2, 0xd1, 0x73, 0x46, 0x3b, 0xa9, 0x94, - 0x70, 0x83, 0x76, 0x5a, 0x41, 0x71, 0x02, 0x5b, 0xbb, 0xc8, 0x06, 0xfb, 0x66, 0x93, 0x7b, 0xba, - 0x8a, 0xd3, 0x17, 0x40, 0x9b, 0x7d, 0x5d, 0xc8, 0x54, 0x0a, 0xe2, 0x05, 0xc0, 0x3f, 0x38, 0xc4, - 0x12, 0x46, 0x5f, 0x8e, 0xf5, 0x1d, 0xa7, 0xbd, 0xd8, 0x89, 0x76, 0xca, 0x6e, 0x58, 0xf7, 0xf7, - 0x48, 0xb0, 0xcf, 0x1e, 0xfd, 0x23, 0xf1, 0xcb, 0x51, 0x01, 0x96, 0xaf, 0x2f, 0x56, 0x29, 0x26, - 0x4e, 0xd7, 0x41, 0x8b, 0x30, 0x29, 0x0b, 0x6b, 0x24, 0x64, 0x57, 0xd8, 0x28, 0x23, 0xa3, 0x9c, - 0xa5, 0x44, 0xb1, 0x22, 0x92, 0xc4, 0x37, 0x39, 0x69, 0x38, 0x0e, 0x4e, 0xfa, 0x23, 0x30, 0xee, - 0x7a, 0x6e, 0xe4, 0x3a, 0x91, 0xcf, 0xf5, 0x61, 0xfc, 0x7d, 0xcf, 0x04, 0xfd, 0x15, 0x1d, 0x80, - 0x4d, 0x3c, 0xfb, 0x3f, 0x0f, 0xc0, 0x34, 0x9b, 0xb6, 0xf7, 0x56, 0xd8, 0x37, 0xd3, 0x0a, 0xbb, - 0x9d, 0x5e, 0x61, 0xc7, 0xf1, 0x44, 0x78, 0xe8, 0x65, 0xf6, 0x39, 0x28, 0x29, 0xff, 0x30, 0xe9, - 0x20, 0x6a, 0xe5, 0x38, 0x88, 0xf6, 0xe6, 0x3e, 0xa4, 0x89, 0x5d, 0x31, 0xd3, 0xc4, 0xee, 0xaf, - 0x5b, 0x10, 0x2b, 0x78, 0xd0, 0x75, 0x28, 0xb5, 0x7d, 0x66, 0x39, 0x1a, 0x48, 0x73, 0xec, 0xc7, + 0x00, 0x67, 0xcf, 0x80, 0xa4, 0x24, 0xaf, 0x54, 0x6a, 0xcc, 0x1c, 0x00, 0x2d, 0xcc, 0x74, 0xcf, + 0x76, 0xf7, 0x80, 0xc4, 0x5e, 0xb9, 0xae, 0xaf, 0xfc, 0x94, 0x1f, 0xb7, 0x54, 0xb7, 0x5c, 0x37, + 0xf1, 0xa3, 0x5c, 0x29, 0xc7, 0x29, 0x5b, 0x71, 0x92, 0x8a, 0x63, 0xc7, 0x76, 0x2c, 0x27, 0x76, + 0xec, 0x3c, 0x9c, 0xfc, 0x70, 0x1c, 0x57, 0x12, 0xb9, 0xca, 0x15, 0xc4, 0xa6, 0x53, 0x71, 0xe9, + 0x47, 0x6c, 0x27, 0x76, 0x7e, 0x04, 0x71, 0xc5, 0xa9, 0xf3, 0xec, 0x73, 0xfa, 0x31, 0x33, 0xe0, + 0x82, 0xd0, 0x4a, 0xb5, 0xff, 0x66, 0xce, 0xf7, 0x9d, 0xef, 0x9c, 0x3e, 0xcf, 0xef, 0x7c, 0x4f, + 0x78, 0x75, 0xf7, 0xe5, 0x70, 0xc1, 0xf5, 0xaf, 0xee, 0x76, 0x36, 0x49, 0xe0, 0x91, 0x88, 0x84, + 0x57, 0xf7, 0x88, 0xd7, 0xf0, 0x83, 0xab, 0x02, 0xe0, 0xb4, 0xdd, 0xab, 0x75, 0x3f, 0x20, 0x57, + 0xf7, 0x9e, 0xbb, 0xba, 0x4d, 0x3c, 0x12, 0x38, 0x11, 0x69, 0x2c, 0xb4, 0x03, 0x3f, 0xf2, 0x11, + 0xe2, 0x38, 0x0b, 0x4e, 0xdb, 0x5d, 0xa0, 0x38, 0x0b, 0x7b, 0xcf, 0xcd, 0x3d, 0xbb, 0xed, 0x46, + 0x3b, 0x9d, 0xcd, 0x85, 0xba, 0xdf, 0xba, 0xba, 0xed, 0x6f, 0xfb, 0x57, 0x19, 0xea, 0x66, 0x67, + 0x8b, 0xfd, 0x63, 0x7f, 0xd8, 0x2f, 0x4e, 0x62, 0xee, 0xc5, 0xb8, 0x99, 0x96, 0x53, 0xdf, 0x71, + 0x3d, 0x12, 0xec, 0x5f, 0x6d, 0xef, 0x6e, 0xb3, 0x76, 0x03, 0x12, 0xfa, 0x9d, 0xa0, 0x4e, 0x92, + 0x0d, 0x77, 0xad, 0x15, 0x5e, 0x6d, 0x91, 0xc8, 0xc9, 0xe8, 0xee, 0xdc, 0xd5, 0xbc, 0x5a, 0x41, + 0xc7, 0x8b, 0xdc, 0x56, 0xba, 0x99, 0x0f, 0xf7, 0xaa, 0x10, 0xd6, 0x77, 0x48, 0xcb, 0x49, 0xd5, + 0x7b, 0x21, 0xaf, 0x5e, 0x27, 0x72, 0x9b, 0x57, 0x5d, 0x2f, 0x0a, 0xa3, 0x20, 0x59, 0xc9, 0xfe, + 0xaa, 0x05, 0x17, 0x17, 0xef, 0xd6, 0x56, 0x9a, 0x4e, 0x18, 0xb9, 0xf5, 0xa5, 0xa6, 0x5f, 0xdf, + 0xad, 0x45, 0x7e, 0x40, 0xee, 0xf8, 0xcd, 0x4e, 0x8b, 0xd4, 0xd8, 0x40, 0xa0, 0x67, 0x60, 0x64, + 0x8f, 0xfd, 0xaf, 0x94, 0x67, 0xad, 0x8b, 0xd6, 0x95, 0xd2, 0xd2, 0xd4, 0x6f, 0x1d, 0xcc, 0xbf, + 0xef, 0xc1, 0xc1, 0xfc, 0xc8, 0x1d, 0x51, 0x8e, 0x15, 0x06, 0xba, 0x0c, 0x43, 0x5b, 0xe1, 0xc6, + 0x7e, 0x9b, 0xcc, 0x16, 0x18, 0xee, 0x84, 0xc0, 0x1d, 0x5a, 0xad, 0xd1, 0x52, 0x2c, 0xa0, 0xe8, + 0x2a, 0x94, 0xda, 0x4e, 0x10, 0xb9, 0x91, 0xeb, 0x7b, 0xb3, 0xc5, 0x8b, 0xd6, 0x95, 0xc1, 0xa5, + 0x69, 0x81, 0x5a, 0xaa, 0x4a, 0x00, 0x8e, 0x71, 0x68, 0x37, 0x02, 0xe2, 0x34, 0x6e, 0x79, 0xcd, + 0xfd, 0xd9, 0x81, 0x8b, 0xd6, 0x95, 0x91, 0xb8, 0x1b, 0x58, 0x94, 0x63, 0x85, 0x61, 0xff, 0x68, + 0x01, 0x46, 0x16, 0xb7, 0xb6, 0x5c, 0xcf, 0x8d, 0xf6, 0xd1, 0x1d, 0x18, 0xf3, 0xfc, 0x06, 0x91, + 0xff, 0xd9, 0x57, 0x8c, 0x3e, 0x7f, 0x71, 0x21, 0xbd, 0x94, 0x16, 0xd6, 0x35, 0xbc, 0xa5, 0xa9, + 0x07, 0x07, 0xf3, 0x63, 0x7a, 0x09, 0x36, 0xe8, 0x20, 0x0c, 0xa3, 0x6d, 0xbf, 0xa1, 0xc8, 0x16, + 0x18, 0xd9, 0xf9, 0x2c, 0xb2, 0xd5, 0x18, 0x6d, 0x69, 0xf2, 0xc1, 0xc1, 0xfc, 0xa8, 0x56, 0x80, + 0x75, 0x22, 0x68, 0x13, 0x26, 0xe9, 0x5f, 0x2f, 0x72, 0x15, 0xdd, 0x22, 0xa3, 0x7b, 0x29, 0x8f, + 0xae, 0x86, 0xba, 0x34, 0xf3, 0xe0, 0x60, 0x7e, 0x32, 0x51, 0x88, 0x93, 0x04, 0xed, 0xb7, 0x61, + 0x62, 0x31, 0x8a, 0x9c, 0xfa, 0x0e, 0x69, 0xf0, 0x19, 0x44, 0x2f, 0xc2, 0x80, 0xe7, 0xb4, 0x88, + 0x98, 0xdf, 0x8b, 0x62, 0x60, 0x07, 0xd6, 0x9d, 0x16, 0x39, 0x3c, 0x98, 0x9f, 0xba, 0xed, 0xb9, + 0x6f, 0x75, 0xc4, 0xaa, 0xa0, 0x65, 0x98, 0x61, 0xa3, 0xe7, 0x01, 0x1a, 0x64, 0xcf, 0xad, 0x93, + 0xaa, 0x13, 0xed, 0x88, 0xf9, 0x46, 0xa2, 0x2e, 0x94, 0x15, 0x04, 0x6b, 0x58, 0xf6, 0x7d, 0x28, + 0x2d, 0xee, 0xf9, 0x6e, 0xa3, 0xea, 0x37, 0x42, 0xb4, 0x0b, 0x93, 0xed, 0x80, 0x6c, 0x91, 0x40, + 0x15, 0xcd, 0x5a, 0x17, 0x8b, 0x57, 0x46, 0x9f, 0xbf, 0x92, 0xf9, 0xb1, 0x26, 0xea, 0x8a, 0x17, + 0x05, 0xfb, 0x4b, 0x8f, 0x89, 0xf6, 0x26, 0x13, 0x50, 0x9c, 0xa4, 0x6c, 0xff, 0xb3, 0x02, 0x9c, + 0x5e, 0x7c, 0xbb, 0x13, 0x90, 0xb2, 0x1b, 0xee, 0x26, 0x57, 0x78, 0xc3, 0x0d, 0x77, 0xd7, 0xe3, + 0x11, 0x50, 0x4b, 0xab, 0x2c, 0xca, 0xb1, 0xc2, 0x40, 0xcf, 0xc2, 0x30, 0xfd, 0x7d, 0x1b, 0x57, + 0xc4, 0x27, 0xcf, 0x08, 0xe4, 0xd1, 0xb2, 0x13, 0x39, 0x65, 0x0e, 0xc2, 0x12, 0x07, 0xad, 0xc1, + 0x68, 0x9d, 0x6d, 0xc8, 0xed, 0x35, 0xbf, 0x41, 0xd8, 0x64, 0x96, 0x96, 0x9e, 0xa6, 0xe8, 0xcb, + 0x71, 0xf1, 0xe1, 0xc1, 0xfc, 0x2c, 0xef, 0x9b, 0x20, 0xa1, 0xc1, 0xb0, 0x5e, 0x1f, 0xd9, 0x6a, + 0x7f, 0x0d, 0x30, 0x4a, 0x90, 0xb1, 0xb7, 0xae, 0x68, 0x5b, 0x65, 0x90, 0x6d, 0x95, 0xb1, 0xec, + 0x6d, 0x82, 0x9e, 0x83, 0x81, 0x5d, 0xd7, 0x6b, 0xcc, 0x0e, 0x31, 0x5a, 0xe7, 0xe9, 0x9c, 0xdf, + 0x70, 0xbd, 0xc6, 0xe1, 0xc1, 0xfc, 0xb4, 0xd1, 0x1d, 0x5a, 0x88, 0x19, 0xaa, 0xfd, 0xe7, 0x16, + 0xcc, 0x33, 0xd8, 0xaa, 0xdb, 0x24, 0x55, 0x12, 0x84, 0x6e, 0x18, 0x11, 0x2f, 0x32, 0x06, 0xf4, + 0x79, 0x80, 0x90, 0xd4, 0x03, 0x12, 0x69, 0x43, 0xaa, 0x16, 0x46, 0x4d, 0x41, 0xb0, 0x86, 0x45, + 0x0f, 0x84, 0x70, 0xc7, 0x09, 0xd8, 0xfa, 0x12, 0x03, 0xab, 0x0e, 0x84, 0x9a, 0x04, 0xe0, 0x18, + 0xc7, 0x38, 0x10, 0x8a, 0xbd, 0x0e, 0x04, 0xf4, 0x31, 0x98, 0x8c, 0x1b, 0x0b, 0xdb, 0x4e, 0x5d, + 0x0e, 0x20, 0xdb, 0x32, 0x35, 0x13, 0x84, 0x93, 0xb8, 0xf6, 0xdf, 0xb6, 0xc4, 0xe2, 0xa1, 0x5f, + 0xfd, 0x2e, 0xff, 0x56, 0xfb, 0x97, 0x2d, 0x18, 0x5e, 0x72, 0xbd, 0x86, 0xeb, 0x6d, 0xa3, 0xcf, + 0xc2, 0x08, 0xbd, 0x9b, 0x1a, 0x4e, 0xe4, 0x88, 0x73, 0xef, 0x43, 0xda, 0xde, 0x52, 0x57, 0xc5, + 0x42, 0x7b, 0x77, 0x9b, 0x16, 0x84, 0x0b, 0x14, 0x9b, 0xee, 0xb6, 0x5b, 0x9b, 0x9f, 0x23, 0xf5, + 0x68, 0x8d, 0x44, 0x4e, 0xfc, 0x39, 0x71, 0x19, 0x56, 0x54, 0xd1, 0x0d, 0x18, 0x8a, 0x9c, 0x60, + 0x9b, 0x44, 0xe2, 0x00, 0xcc, 0x3c, 0xa8, 0x78, 0x4d, 0x4c, 0x77, 0x24, 0xf1, 0xea, 0x24, 0xbe, + 0x16, 0x36, 0x58, 0x55, 0x2c, 0x48, 0xd8, 0x3f, 0x34, 0x0c, 0x67, 0x97, 0x6b, 0x95, 0x9c, 0x75, + 0x75, 0x19, 0x86, 0x1a, 0x81, 0xbb, 0x47, 0x02, 0x31, 0xce, 0x8a, 0x4a, 0x99, 0x95, 0x62, 0x01, + 0x45, 0x2f, 0xc3, 0x18, 0xbf, 0x90, 0xae, 0x3b, 0x5e, 0xa3, 0x29, 0x87, 0xf8, 0x94, 0xc0, 0x1e, + 0xbb, 0xa3, 0xc1, 0xb0, 0x81, 0x79, 0xc4, 0x45, 0x75, 0x39, 0xb1, 0x19, 0xf3, 0x2e, 0xbb, 0x2f, + 0x5a, 0x30, 0xc5, 0x9b, 0x59, 0x8c, 0xa2, 0xc0, 0xdd, 0xec, 0x44, 0x24, 0x9c, 0x1d, 0x64, 0x27, + 0xdd, 0x72, 0xd6, 0x68, 0xe5, 0x8e, 0xc0, 0xc2, 0x9d, 0x04, 0x15, 0x7e, 0x08, 0xce, 0x8a, 0x76, + 0xa7, 0x92, 0x60, 0x9c, 0x6a, 0x16, 0x7d, 0xa7, 0x05, 0x73, 0x75, 0xdf, 0x8b, 0x02, 0xbf, 0xd9, + 0x24, 0x41, 0xb5, 0xb3, 0xd9, 0x74, 0xc3, 0x1d, 0xbe, 0x4e, 0x31, 0xd9, 0x62, 0x27, 0x41, 0xce, + 0x1c, 0x2a, 0x24, 0x31, 0x87, 0x17, 0x1e, 0x1c, 0xcc, 0xcf, 0x2d, 0xe7, 0x92, 0xc2, 0x5d, 0x9a, + 0x41, 0xbb, 0x80, 0xe8, 0x55, 0x5a, 0x8b, 0x9c, 0x6d, 0x12, 0x37, 0x3e, 0xdc, 0x7f, 0xe3, 0x67, + 0x1e, 0x1c, 0xcc, 0xa3, 0xf5, 0x14, 0x09, 0x9c, 0x41, 0x16, 0xbd, 0x05, 0xa7, 0x68, 0x69, 0xea, + 0x5b, 0x47, 0xfa, 0x6f, 0x6e, 0xf6, 0xc1, 0xc1, 0xfc, 0xa9, 0xf5, 0x0c, 0x22, 0x38, 0x93, 0x34, + 0xfa, 0x0e, 0x0b, 0xce, 0xc6, 0x9f, 0xbf, 0x72, 0xbf, 0xed, 0x78, 0x8d, 0xb8, 0xe1, 0x52, 0xff, + 0x0d, 0xd3, 0x33, 0xf9, 0xec, 0x72, 0x1e, 0x25, 0x9c, 0xdf, 0xc8, 0xdc, 0x32, 0x9c, 0xce, 0x5c, + 0x2d, 0x68, 0x0a, 0x8a, 0xbb, 0x84, 0x73, 0x41, 0x25, 0x4c, 0x7f, 0xa2, 0x53, 0x30, 0xb8, 0xe7, + 0x34, 0x3b, 0x62, 0xa3, 0x60, 0xfe, 0xe7, 0x95, 0xc2, 0xcb, 0x96, 0xfd, 0xcf, 0x8b, 0x30, 0xb9, + 0x5c, 0xab, 0x3c, 0xd4, 0x2e, 0xd4, 0xaf, 0xa1, 0x42, 0xd7, 0x6b, 0x28, 0xbe, 0xd4, 0x8a, 0xb9, + 0x97, 0xda, 0xff, 0x9d, 0xb1, 0x85, 0x06, 0xd8, 0x16, 0xfa, 0x96, 0x9c, 0x2d, 0x74, 0xcc, 0x1b, + 0x67, 0x2f, 0x67, 0x15, 0x0d, 0xb2, 0xc9, 0xcc, 0xe4, 0x58, 0x6e, 0xfa, 0x75, 0xa7, 0x99, 0x3c, + 0xfa, 0x8e, 0xb8, 0x94, 0x8e, 0x67, 0x1e, 0xeb, 0x30, 0xb6, 0xec, 0xb4, 0x9d, 0x4d, 0xb7, 0xe9, + 0x46, 0x2e, 0x09, 0xd1, 0x93, 0x50, 0x74, 0x1a, 0x0d, 0xc6, 0x6d, 0x95, 0x96, 0x4e, 0x3f, 0x38, + 0x98, 0x2f, 0x2e, 0x36, 0xe8, 0xb5, 0x0f, 0x0a, 0x6b, 0x1f, 0x53, 0x0c, 0xf4, 0x41, 0x18, 0x68, + 0x04, 0x7e, 0x7b, 0xb6, 0xc0, 0x30, 0xe9, 0xae, 0x1b, 0x28, 0x07, 0x7e, 0x3b, 0x81, 0xca, 0x70, + 0xec, 0x5f, 0x2f, 0xc0, 0xb9, 0x65, 0xd2, 0xde, 0x59, 0xad, 0xe5, 0x9c, 0xdf, 0x57, 0x60, 0xa4, + 0xe5, 0x7b, 0x6e, 0xe4, 0x07, 0xa1, 0x68, 0x9a, 0xad, 0x88, 0x35, 0x51, 0x86, 0x15, 0x14, 0x5d, + 0x84, 0x81, 0x76, 0xcc, 0x54, 0x8e, 0x49, 0x86, 0x94, 0xb1, 0x93, 0x0c, 0x42, 0x31, 0x3a, 0x21, + 0x09, 0xc4, 0x8a, 0x51, 0x18, 0xb7, 0x43, 0x12, 0x60, 0x06, 0x89, 0x6f, 0x66, 0x7a, 0x67, 0x8b, + 0x13, 0x3a, 0x71, 0x33, 0x53, 0x08, 0xd6, 0xb0, 0x50, 0x15, 0x4a, 0x61, 0x62, 0x66, 0xfb, 0xda, + 0xa6, 0xe3, 0xec, 0xea, 0x56, 0x33, 0x19, 0x13, 0x31, 0x6e, 0x94, 0xa1, 0x9e, 0x57, 0xf7, 0x57, + 0x0a, 0x80, 0xf8, 0x10, 0x7e, 0x83, 0x0d, 0xdc, 0xed, 0xf4, 0xc0, 0xf5, 0xbf, 0x25, 0x8e, 0x6b, + 0xf4, 0xfe, 0xc2, 0x82, 0x73, 0xcb, 0xae, 0xd7, 0x20, 0x41, 0xce, 0x02, 0x7c, 0x34, 0x6f, 0xd9, + 0xa3, 0x31, 0x0d, 0xc6, 0x12, 0x1b, 0x38, 0x86, 0x25, 0x66, 0xff, 0xa9, 0x05, 0x88, 0x7f, 0xf6, + 0xbb, 0xee, 0x63, 0x6f, 0xa7, 0x3f, 0xf6, 0x18, 0x96, 0x85, 0x7d, 0x13, 0x26, 0x96, 0x9b, 0x2e, + 0xf1, 0xa2, 0x4a, 0x75, 0xd9, 0xf7, 0xb6, 0xdc, 0x6d, 0xf4, 0x0a, 0x4c, 0x44, 0x6e, 0x8b, 0xf8, + 0x9d, 0xa8, 0x46, 0xea, 0xbe, 0xc7, 0x5e, 0x92, 0xd6, 0x95, 0xc1, 0x25, 0xf4, 0xe0, 0x60, 0x7e, + 0x62, 0xc3, 0x80, 0xe0, 0x04, 0xa6, 0xfd, 0xfb, 0x74, 0xfc, 0xfc, 0x56, 0xdb, 0xf7, 0x88, 0x17, + 0x2d, 0xfb, 0x5e, 0x83, 0x4b, 0x1c, 0x5e, 0x81, 0x81, 0x88, 0x8e, 0x07, 0x1f, 0xbb, 0xcb, 0x72, + 0xa3, 0xd0, 0x51, 0x38, 0x3c, 0x98, 0x3f, 0x93, 0xae, 0xc1, 0xc6, 0x89, 0xd5, 0x41, 0xdf, 0x02, + 0x43, 0x61, 0xe4, 0x44, 0x9d, 0x50, 0x8c, 0xe6, 0x13, 0x72, 0x34, 0x6b, 0xac, 0xf4, 0xf0, 0x60, + 0x7e, 0x52, 0x55, 0xe3, 0x45, 0x58, 0x54, 0x40, 0x4f, 0xc1, 0x70, 0x8b, 0x84, 0xa1, 0xb3, 0x2d, + 0x6f, 0xc3, 0x49, 0x51, 0x77, 0x78, 0x8d, 0x17, 0x63, 0x09, 0x47, 0x97, 0x60, 0x90, 0x04, 0x81, + 0x1f, 0x88, 0x3d, 0x3a, 0x2e, 0x10, 0x07, 0x57, 0x68, 0x21, 0xe6, 0x30, 0xfb, 0xdf, 0x58, 0x30, + 0xa9, 0xfa, 0xca, 0xdb, 0x3a, 0x81, 0x57, 0xc1, 0xa7, 0x00, 0xea, 0xf2, 0x03, 0x43, 0x76, 0x7b, + 0x8c, 0x3e, 0x7f, 0x39, 0xf3, 0xa2, 0x4e, 0x0d, 0x63, 0x4c, 0x59, 0x15, 0x85, 0x58, 0xa3, 0x66, + 0xff, 0x63, 0x0b, 0x66, 0x12, 0x5f, 0x74, 0xd3, 0x0d, 0x23, 0xf4, 0x66, 0xea, 0xab, 0x16, 0xfa, + 0xfb, 0x2a, 0x5a, 0x9b, 0x7d, 0x93, 0x5a, 0xca, 0xb2, 0x44, 0xfb, 0xa2, 0xeb, 0x30, 0xe8, 0x46, + 0xa4, 0x25, 0x3f, 0xe6, 0x52, 0xd7, 0x8f, 0xe1, 0xbd, 0x8a, 0x67, 0xa4, 0x42, 0x6b, 0x62, 0x4e, + 0xc0, 0xfe, 0xf5, 0x22, 0x94, 0xf8, 0xb2, 0x5d, 0x73, 0xda, 0x27, 0x30, 0x17, 0x4f, 0x43, 0xc9, + 0x6d, 0xb5, 0x3a, 0x91, 0xb3, 0x29, 0x8e, 0xf3, 0x11, 0xbe, 0xb5, 0x2a, 0xb2, 0x10, 0xc7, 0x70, + 0x54, 0x81, 0x01, 0xd6, 0x15, 0xfe, 0x95, 0x4f, 0x66, 0x7f, 0xa5, 0xe8, 0xfb, 0x42, 0xd9, 0x89, + 0x1c, 0xce, 0x49, 0xa9, 0x7b, 0x84, 0x16, 0x61, 0x46, 0x02, 0x39, 0x00, 0x9b, 0xae, 0xe7, 0x04, + 0xfb, 0xb4, 0x6c, 0xb6, 0xc8, 0x08, 0x3e, 0xdb, 0x9d, 0xe0, 0x92, 0xc2, 0xe7, 0x64, 0xd5, 0x87, + 0xc5, 0x00, 0xac, 0x11, 0x9d, 0xfb, 0x08, 0x94, 0x14, 0xf2, 0x51, 0x18, 0xa2, 0xb9, 0x8f, 0xc1, + 0x64, 0xa2, 0xad, 0x5e, 0xd5, 0xc7, 0x74, 0x7e, 0xea, 0x57, 0xd8, 0x91, 0x21, 0x7a, 0xbd, 0xe2, + 0xed, 0x89, 0x23, 0xf7, 0x6d, 0x38, 0xd5, 0xcc, 0x38, 0xc9, 0xc4, 0xbc, 0xf6, 0x7f, 0xf2, 0x9d, + 0x13, 0x9f, 0x7d, 0x2a, 0x0b, 0x8a, 0x33, 0xdb, 0xa0, 0x3c, 0x82, 0xdf, 0xa6, 0x1b, 0xc4, 0x69, + 0xea, 0xec, 0xf6, 0x2d, 0x51, 0x86, 0x15, 0x94, 0x9e, 0x77, 0xa7, 0x54, 0xe7, 0x6f, 0x90, 0xfd, + 0x1a, 0x69, 0x92, 0x7a, 0xe4, 0x07, 0x5f, 0xd7, 0xee, 0x9f, 0xe7, 0xa3, 0xcf, 0x8f, 0xcb, 0x51, + 0x41, 0xa0, 0x78, 0x83, 0xec, 0xf3, 0xa9, 0xd0, 0xbf, 0xae, 0xd8, 0xf5, 0xeb, 0x7e, 0xce, 0x82, + 0x71, 0xf5, 0x75, 0x27, 0x70, 0x2e, 0x2c, 0x99, 0xe7, 0xc2, 0xf9, 0xae, 0x0b, 0x3c, 0xe7, 0x44, + 0xf8, 0x4a, 0x01, 0xce, 0x2a, 0x1c, 0xfa, 0x36, 0xe0, 0x7f, 0xc4, 0xaa, 0xba, 0x0a, 0x25, 0x4f, + 0x49, 0xad, 0x2c, 0x53, 0x5c, 0x14, 0xcb, 0xac, 0x62, 0x1c, 0xca, 0xe2, 0x79, 0xb1, 0x68, 0x69, + 0x4c, 0x17, 0xe7, 0x0a, 0xd1, 0xed, 0x12, 0x14, 0x3b, 0x6e, 0x43, 0x5c, 0x30, 0x1f, 0x92, 0xa3, + 0x7d, 0xbb, 0x52, 0x3e, 0x3c, 0x98, 0x7f, 0x22, 0x4f, 0x95, 0x40, 0x6f, 0xb6, 0x70, 0xe1, 0x76, + 0xa5, 0x8c, 0x69, 0x65, 0xb4, 0x08, 0x93, 0x52, 0x5b, 0x72, 0x87, 0xb2, 0x5b, 0xbe, 0x27, 0xee, + 0x21, 0x25, 0x93, 0xc5, 0x26, 0x18, 0x27, 0xf1, 0x51, 0x19, 0xa6, 0x76, 0x3b, 0x9b, 0xa4, 0x49, + 0x22, 0xfe, 0xc1, 0x37, 0x08, 0x97, 0x58, 0x96, 0xe2, 0x97, 0xd9, 0x8d, 0x04, 0x1c, 0xa7, 0x6a, + 0xd8, 0x7f, 0xc5, 0xee, 0x03, 0x31, 0x7a, 0xd5, 0xc0, 0xa7, 0x0b, 0x8b, 0x52, 0xff, 0x7a, 0x2e, + 0xe7, 0x7e, 0x56, 0xc5, 0x0d, 0xb2, 0xbf, 0xe1, 0x53, 0xce, 0x3c, 0x7b, 0x55, 0x18, 0x6b, 0x7e, + 0xa0, 0xeb, 0x9a, 0xff, 0x85, 0x02, 0x9c, 0x56, 0x23, 0x60, 0x30, 0x81, 0xdf, 0xe8, 0x63, 0xf0, + 0x1c, 0x8c, 0x36, 0xc8, 0x96, 0xd3, 0x69, 0x46, 0x4a, 0x7c, 0x3e, 0xc8, 0x55, 0x28, 0xe5, 0xb8, + 0x18, 0xeb, 0x38, 0x47, 0x18, 0xb6, 0xff, 0x31, 0xca, 0x2e, 0xe2, 0xc8, 0xa1, 0x6b, 0x5c, 0xed, + 0x1a, 0x2b, 0x77, 0xd7, 0x5c, 0x82, 0x41, 0xb7, 0x45, 0x19, 0xb3, 0x82, 0xc9, 0x6f, 0x55, 0x68, + 0x21, 0xe6, 0x30, 0xf4, 0x01, 0x18, 0xae, 0xfb, 0xad, 0x96, 0xe3, 0x35, 0xd8, 0x95, 0x57, 0x5a, + 0x1a, 0xa5, 0xbc, 0xdb, 0x32, 0x2f, 0xc2, 0x12, 0x86, 0xce, 0xc1, 0x80, 0x13, 0x6c, 0x73, 0x19, + 0x46, 0x69, 0x69, 0x84, 0xb6, 0xb4, 0x18, 0x6c, 0x87, 0x98, 0x95, 0xd2, 0x27, 0xd8, 0x3d, 0x3f, + 0xd8, 0x75, 0xbd, 0xed, 0xb2, 0x1b, 0x88, 0x2d, 0xa1, 0xee, 0xc2, 0xbb, 0x0a, 0x82, 0x35, 0x2c, + 0xb4, 0x0a, 0x83, 0x6d, 0x3f, 0x88, 0xc2, 0xd9, 0x21, 0x36, 0xdc, 0x4f, 0xe4, 0x1c, 0x44, 0xfc, + 0x6b, 0xab, 0x7e, 0x10, 0xc5, 0x1f, 0x40, 0xff, 0x85, 0x98, 0x57, 0x47, 0x37, 0x61, 0x98, 0x78, + 0x7b, 0xab, 0x81, 0xdf, 0x9a, 0x9d, 0xc9, 0xa7, 0xb4, 0xc2, 0x51, 0xf8, 0x32, 0x8b, 0x79, 0x54, + 0x51, 0x8c, 0x25, 0x09, 0xf4, 0x2d, 0x50, 0x24, 0xde, 0xde, 0xec, 0x30, 0xa3, 0x34, 0x97, 0x43, + 0xe9, 0x8e, 0x13, 0xc4, 0x67, 0xfe, 0x8a, 0xb7, 0x87, 0x69, 0x1d, 0xf4, 0x49, 0x28, 0xc9, 0x03, + 0x23, 0x14, 0xc2, 0xba, 0xcc, 0x05, 0x2b, 0x8f, 0x19, 0x4c, 0xde, 0xea, 0xb8, 0x01, 0x69, 0x11, + 0x2f, 0x0a, 0xe3, 0x13, 0x52, 0x42, 0x43, 0x1c, 0x53, 0x43, 0x9f, 0x94, 0x12, 0xe2, 0x35, 0xbf, + 0xe3, 0x45, 0xe1, 0x6c, 0x89, 0x75, 0x2f, 0x53, 0x77, 0x77, 0x27, 0xc6, 0x4b, 0x8a, 0x90, 0x79, + 0x65, 0x6c, 0x90, 0x42, 0x9f, 0x86, 0x71, 0xfe, 0x9f, 0x6b, 0xc0, 0xc2, 0xd9, 0xd3, 0x8c, 0xf6, + 0xc5, 0x7c, 0xda, 0x1c, 0x71, 0xe9, 0xb4, 0x20, 0x3e, 0xae, 0x97, 0x86, 0xd8, 0xa4, 0x86, 0x30, + 0x8c, 0x37, 0xdd, 0x3d, 0xe2, 0x91, 0x30, 0xac, 0x06, 0xfe, 0x26, 0x99, 0x05, 0x36, 0x30, 0x67, + 0xb3, 0x35, 0x66, 0xfe, 0x26, 0x59, 0x9a, 0xa6, 0x34, 0x6f, 0xea, 0x75, 0xb0, 0x49, 0x02, 0xdd, + 0x86, 0x09, 0xfa, 0x62, 0x73, 0x63, 0xa2, 0xa3, 0xbd, 0x88, 0xb2, 0x77, 0x15, 0x36, 0x2a, 0xe1, + 0x04, 0x11, 0x74, 0x0b, 0xc6, 0xc2, 0xc8, 0x09, 0xa2, 0x4e, 0x9b, 0x13, 0x3d, 0xd3, 0x8b, 0x28, + 0x53, 0xb8, 0xd6, 0xb4, 0x2a, 0xd8, 0x20, 0x80, 0x5e, 0x87, 0x52, 0xd3, 0xdd, 0x22, 0xf5, 0xfd, + 0x7a, 0x93, 0xcc, 0x8e, 0x31, 0x6a, 0x99, 0x87, 0xca, 0x4d, 0x89, 0xc4, 0xf9, 0x5c, 0xf5, 0x17, + 0xc7, 0xd5, 0xd1, 0x1d, 0x38, 0x13, 0x91, 0xa0, 0xe5, 0x7a, 0x0e, 0x3d, 0x0c, 0xc4, 0xd3, 0x8a, + 0x29, 0x32, 0xc7, 0xd9, 0x6e, 0xbb, 0x20, 0x66, 0xe3, 0xcc, 0x46, 0x26, 0x16, 0xce, 0xa9, 0x8d, + 0xee, 0xc3, 0x6c, 0x06, 0xc4, 0x6f, 0xba, 0xf5, 0xfd, 0xd9, 0x53, 0x8c, 0xf2, 0x47, 0x05, 0xe5, + 0xd9, 0x8d, 0x1c, 0xbc, 0xc3, 0x2e, 0x30, 0x9c, 0x4b, 0x1d, 0xdd, 0x82, 0x49, 0x76, 0x02, 0x55, + 0x3b, 0xcd, 0xa6, 0x68, 0x70, 0x82, 0x35, 0xf8, 0x01, 0x79, 0x1f, 0x57, 0x4c, 0xf0, 0xe1, 0xc1, + 0x3c, 0xc4, 0xff, 0x70, 0xb2, 0x36, 0xda, 0x64, 0x3a, 0xb3, 0x4e, 0xe0, 0x46, 0xfb, 0xf4, 0xdc, + 0x20, 0xf7, 0xa3, 0xd9, 0xc9, 0xae, 0xf2, 0x0a, 0x1d, 0x55, 0x29, 0xd6, 0xf4, 0x42, 0x9c, 0x24, + 0x48, 0x8f, 0xd4, 0x30, 0x6a, 0xb8, 0xde, 0xec, 0x14, 0x7f, 0x97, 0xc8, 0x13, 0xa9, 0x46, 0x0b, + 0x31, 0x87, 0x31, 0x7d, 0x19, 0xfd, 0x71, 0x8b, 0xde, 0x5c, 0xd3, 0x0c, 0x31, 0xd6, 0x97, 0x49, + 0x00, 0x8e, 0x71, 0x28, 0x33, 0x19, 0x45, 0xfb, 0xb3, 0x88, 0xa1, 0xaa, 0x83, 0x65, 0x63, 0xe3, + 0x93, 0x98, 0x96, 0xdb, 0x9b, 0x30, 0xa1, 0x0e, 0x42, 0x36, 0x26, 0x68, 0x1e, 0x06, 0x19, 0xfb, + 0x24, 0xa4, 0x6b, 0x25, 0xda, 0x05, 0xc6, 0x5a, 0x61, 0x5e, 0xce, 0xba, 0xe0, 0xbe, 0x4d, 0x96, + 0xf6, 0x23, 0xc2, 0xdf, 0xf4, 0x45, 0xad, 0x0b, 0x12, 0x80, 0x63, 0x1c, 0xfb, 0x7f, 0x73, 0x36, + 0x34, 0x3e, 0x6d, 0xfb, 0xb8, 0x5f, 0x9e, 0x81, 0x91, 0x1d, 0x3f, 0x8c, 0x28, 0x36, 0x6b, 0x63, + 0x30, 0x66, 0x3c, 0xaf, 0x8b, 0x72, 0xac, 0x30, 0xd0, 0xab, 0x30, 0x5e, 0xd7, 0x1b, 0x10, 0x97, + 0xa3, 0x3a, 0x46, 0x8c, 0xd6, 0xb1, 0x89, 0x8b, 0x5e, 0x86, 0x11, 0x66, 0x03, 0x52, 0xf7, 0x9b, + 0x82, 0x6b, 0x93, 0x37, 0xfc, 0x48, 0x55, 0x94, 0x1f, 0x6a, 0xbf, 0xb1, 0xc2, 0x46, 0x97, 0x61, + 0x88, 0x76, 0xa1, 0x52, 0x15, 0xd7, 0x92, 0x12, 0x14, 0x5d, 0x67, 0xa5, 0x58, 0x40, 0xed, 0xff, + 0xaf, 0xa0, 0x8d, 0x32, 0x7d, 0x0f, 0x13, 0x54, 0x85, 0xe1, 0x7b, 0x8e, 0x1b, 0xb9, 0xde, 0xb6, + 0xe0, 0x3f, 0x9e, 0xea, 0x7a, 0x47, 0xb1, 0x4a, 0x77, 0x79, 0x05, 0x7e, 0x8b, 0x8a, 0x3f, 0x58, + 0x92, 0xa1, 0x14, 0x83, 0x8e, 0xe7, 0x51, 0x8a, 0x85, 0x7e, 0x29, 0x62, 0x5e, 0x81, 0x53, 0x14, + 0x7f, 0xb0, 0x24, 0x83, 0xde, 0x04, 0x90, 0x3b, 0x8c, 0x34, 0x84, 0xed, 0xc5, 0x33, 0xbd, 0x89, + 0x6e, 0xa8, 0x3a, 0x4b, 0x13, 0xf4, 0x8e, 0x8e, 0xff, 0x63, 0x8d, 0x9e, 0x1d, 0x31, 0x3e, 0x2d, + 0xdd, 0x19, 0xf4, 0x6d, 0x74, 0x89, 0x3b, 0x41, 0x44, 0x1a, 0x8b, 0x91, 0x18, 0x9c, 0x0f, 0xf6, + 0xf7, 0x48, 0xd9, 0x70, 0x5b, 0x44, 0xdf, 0x0e, 0x82, 0x08, 0x8e, 0xe9, 0xd9, 0xbf, 0x54, 0x84, + 0xd9, 0xbc, 0xee, 0xd2, 0x45, 0x47, 0xee, 0xbb, 0xd1, 0x32, 0x65, 0xaf, 0x2c, 0x73, 0xd1, 0xad, + 0x88, 0x72, 0xac, 0x30, 0xe8, 0xec, 0x87, 0xee, 0xb6, 0x7c, 0x63, 0x0e, 0xc6, 0xb3, 0x5f, 0x63, + 0xa5, 0x58, 0x40, 0x29, 0x5e, 0x40, 0x9c, 0x50, 0x18, 0xf7, 0x68, 0xab, 0x04, 0xb3, 0x52, 0x2c, + 0xa0, 0xba, 0xb4, 0x6b, 0xa0, 0x87, 0xb4, 0xcb, 0x18, 0xa2, 0xc1, 0xe3, 0x1d, 0x22, 0xf4, 0x19, + 0x80, 0x2d, 0xd7, 0x73, 0xc3, 0x1d, 0x46, 0x7d, 0xe8, 0xc8, 0xd4, 0x15, 0x73, 0xb6, 0xaa, 0xa8, + 0x60, 0x8d, 0x22, 0x7a, 0x09, 0x46, 0xd5, 0x06, 0xac, 0x94, 0x99, 0xa6, 0x53, 0xb3, 0x1c, 0x89, + 0x4f, 0xa3, 0x32, 0xd6, 0xf1, 0xec, 0xcf, 0x25, 0xd7, 0x8b, 0xd8, 0x01, 0xda, 0xf8, 0x5a, 0xfd, + 0x8e, 0x6f, 0xa1, 0xfb, 0xf8, 0xda, 0x5f, 0x2b, 0xc2, 0xa4, 0xd1, 0x58, 0x27, 0xec, 0xe3, 0xcc, + 0xba, 0x46, 0x0f, 0x70, 0x27, 0x22, 0x62, 0xff, 0xd9, 0xbd, 0xb7, 0x8a, 0x7e, 0xc8, 0xd3, 0x1d, + 0xc0, 0xeb, 0xa3, 0xcf, 0x40, 0xa9, 0xe9, 0x84, 0x4c, 0x72, 0x46, 0xc4, 0xbe, 0xeb, 0x87, 0x58, + 0xfc, 0x30, 0x71, 0xc2, 0x48, 0xbb, 0x35, 0x39, 0xed, 0x98, 0x24, 0xbd, 0x69, 0x28, 0x7f, 0x22, + 0xad, 0xc7, 0x54, 0x27, 0x28, 0x13, 0xb3, 0x8f, 0x39, 0x0c, 0xbd, 0x0c, 0x63, 0x01, 0x61, 0xab, + 0x62, 0x99, 0x72, 0x73, 0x6c, 0x99, 0x0d, 0xc6, 0x6c, 0x1f, 0xd6, 0x60, 0xd8, 0xc0, 0x8c, 0xdf, + 0x06, 0x43, 0x5d, 0xde, 0x06, 0x4f, 0xc1, 0x30, 0xfb, 0xa1, 0x56, 0x80, 0x9a, 0x8d, 0x0a, 0x2f, + 0xc6, 0x12, 0x9e, 0x5c, 0x30, 0x23, 0xfd, 0x2d, 0x18, 0xfa, 0xfa, 0x10, 0x8b, 0x9a, 0x69, 0x99, + 0x47, 0xf8, 0x29, 0x27, 0x96, 0x3c, 0x96, 0x30, 0xfb, 0x83, 0x30, 0x51, 0x76, 0x48, 0xcb, 0xf7, + 0x56, 0xbc, 0x46, 0xdb, 0x77, 0xbd, 0x08, 0xcd, 0xc2, 0x00, 0xbb, 0x44, 0xf8, 0x11, 0x30, 0x40, + 0x1b, 0xc2, 0x03, 0xf4, 0x41, 0x60, 0x6f, 0xc3, 0xe9, 0xb2, 0x7f, 0xcf, 0xbb, 0xe7, 0x04, 0x8d, + 0xc5, 0x6a, 0x45, 0x7b, 0x5f, 0xaf, 0xcb, 0xf7, 0x1d, 0x37, 0xda, 0xca, 0x3c, 0x7a, 0xb5, 0x9a, + 0x9c, 0xad, 0x5d, 0x75, 0x9b, 0x24, 0x47, 0x0a, 0xf2, 0xd7, 0x0a, 0x46, 0x4b, 0x31, 0xbe, 0xd2, + 0x6a, 0x59, 0xb9, 0x5a, 0xad, 0x37, 0x60, 0x64, 0xcb, 0x25, 0xcd, 0x06, 0x26, 0x5b, 0x62, 0x25, + 0x3e, 0x99, 0x6f, 0x87, 0xb2, 0x4a, 0x31, 0xa5, 0xd4, 0x8b, 0xbf, 0x0e, 0x57, 0x45, 0x65, 0xac, + 0xc8, 0xa0, 0x5d, 0x98, 0x92, 0x0f, 0x06, 0x09, 0x15, 0xeb, 0xf2, 0xa9, 0x6e, 0xaf, 0x10, 0x93, + 0xf8, 0xa9, 0x07, 0x07, 0xf3, 0x53, 0x38, 0x41, 0x06, 0xa7, 0x08, 0xd3, 0xe7, 0x60, 0x8b, 0x9e, + 0xc0, 0x03, 0x6c, 0xf8, 0xd9, 0x73, 0x90, 0xbd, 0x6c, 0x59, 0xa9, 0xfd, 0xe3, 0x16, 0x3c, 0x96, + 0x1a, 0x19, 0xf1, 0xc2, 0x3f, 0xe6, 0x59, 0x48, 0xbe, 0xb8, 0x0b, 0xbd, 0x5f, 0xdc, 0xf6, 0xdf, + 0xb1, 0xe0, 0xd4, 0x4a, 0xab, 0x1d, 0xed, 0x97, 0x5d, 0x53, 0x05, 0xf5, 0x11, 0x18, 0x6a, 0x91, + 0x86, 0xdb, 0x69, 0x89, 0x99, 0x9b, 0x97, 0xa7, 0xd4, 0x1a, 0x2b, 0x3d, 0x3c, 0x98, 0x1f, 0xaf, + 0x45, 0x7e, 0xe0, 0x6c, 0x13, 0x5e, 0x80, 0x05, 0x3a, 0x3b, 0xeb, 0xdd, 0xb7, 0xc9, 0x4d, 0xb7, + 0xe5, 0x4a, 0xbb, 0xa2, 0xae, 0x32, 0xbb, 0x05, 0x39, 0xa0, 0x0b, 0x6f, 0x74, 0x1c, 0x2f, 0x72, + 0xa3, 0x7d, 0xa1, 0x3d, 0x92, 0x44, 0x70, 0x4c, 0xcf, 0xfe, 0xaa, 0x05, 0x93, 0x72, 0xdd, 0x2f, + 0x36, 0x1a, 0x01, 0x09, 0x43, 0x34, 0x07, 0x05, 0xb7, 0x2d, 0x7a, 0x09, 0xa2, 0x97, 0x85, 0x4a, + 0x15, 0x17, 0xdc, 0xb6, 0x64, 0xcb, 0xd8, 0x41, 0x58, 0x34, 0x15, 0x69, 0xd7, 0x45, 0x39, 0x56, + 0x18, 0xe8, 0x0a, 0x8c, 0x78, 0x7e, 0x83, 0xdb, 0x76, 0xf1, 0x2b, 0x8d, 0x2d, 0xb0, 0x75, 0x51, + 0x86, 0x15, 0x14, 0x55, 0xa1, 0xc4, 0xcd, 0x9e, 0xe2, 0x45, 0xdb, 0x97, 0xf1, 0x14, 0xfb, 0xb2, + 0x0d, 0x59, 0x13, 0xc7, 0x44, 0xec, 0x5f, 0xb3, 0x60, 0x4c, 0x7e, 0x59, 0x9f, 0x3c, 0x27, 0xdd, + 0x5a, 0x31, 0xbf, 0x19, 0x6f, 0x2d, 0xca, 0x33, 0x32, 0x88, 0xc1, 0x2a, 0x16, 0x8f, 0xc4, 0x2a, + 0x3e, 0x07, 0xa3, 0x4e, 0xbb, 0x5d, 0x35, 0xf9, 0x4c, 0xb6, 0x94, 0x16, 0xe3, 0x62, 0xac, 0xe3, + 0xd8, 0x3f, 0x56, 0x80, 0x09, 0xf9, 0x05, 0xb5, 0xce, 0x66, 0x48, 0x22, 0xb4, 0x01, 0x25, 0x87, + 0xcf, 0x12, 0x91, 0x8b, 0xfc, 0x52, 0xb6, 0x1c, 0xc1, 0x98, 0xd2, 0xf8, 0xc2, 0x5f, 0x94, 0xb5, + 0x71, 0x4c, 0x08, 0x35, 0x61, 0xda, 0xf3, 0x23, 0x76, 0xf8, 0x2b, 0x78, 0x37, 0xd5, 0x4e, 0x92, + 0xfa, 0x59, 0x41, 0x7d, 0x7a, 0x3d, 0x49, 0x05, 0xa7, 0x09, 0xa3, 0x15, 0x29, 0x9b, 0x29, 0xe6, + 0x0b, 0x03, 0xf4, 0x89, 0xcb, 0x16, 0xcd, 0xd8, 0xbf, 0x6a, 0x41, 0x49, 0xa2, 0x9d, 0x84, 0x16, + 0x6f, 0x0d, 0x86, 0x43, 0x36, 0x09, 0x72, 0x68, 0xec, 0x6e, 0x1d, 0xe7, 0xf3, 0x15, 0xdf, 0x69, + 0xfc, 0x7f, 0x88, 0x25, 0x0d, 0x26, 0x9a, 0x57, 0xdd, 0x7f, 0x97, 0x88, 0xe6, 0x55, 0x7f, 0x72, + 0x2e, 0xa5, 0x3f, 0x66, 0x7d, 0xd6, 0x64, 0x5d, 0x94, 0xf5, 0x6a, 0x07, 0x64, 0xcb, 0xbd, 0x9f, + 0x64, 0xbd, 0xaa, 0xac, 0x14, 0x0b, 0x28, 0x7a, 0x13, 0xc6, 0xea, 0x52, 0x26, 0x1b, 0xef, 0xf0, + 0xcb, 0x5d, 0xf5, 0x03, 0x4a, 0x95, 0xc4, 0x65, 0x21, 0xcb, 0x5a, 0x7d, 0x6c, 0x50, 0x33, 0xcd, + 0x08, 0x8a, 0xbd, 0xcc, 0x08, 0x62, 0xba, 0xf9, 0x4a, 0xf5, 0x9f, 0xb0, 0x60, 0x88, 0xcb, 0xe2, + 0xfa, 0x13, 0x85, 0x6a, 0x9a, 0xb5, 0x78, 0xec, 0xee, 0xd0, 0x42, 0xa1, 0x29, 0x43, 0x6b, 0x50, + 0x62, 0x3f, 0x98, 0x2c, 0xb1, 0x98, 0x6f, 0x75, 0xcf, 0x5b, 0xd5, 0x3b, 0x78, 0x47, 0x56, 0xc3, + 0x31, 0x05, 0xfb, 0x87, 0x8b, 0xf4, 0x74, 0x8b, 0x51, 0x8d, 0x4b, 0xdf, 0x7a, 0x74, 0x97, 0x7e, + 0xe1, 0x51, 0x5d, 0xfa, 0xdb, 0x30, 0x59, 0xd7, 0xf4, 0x70, 0xf1, 0x4c, 0x5e, 0xe9, 0xba, 0x48, + 0x34, 0x95, 0x1d, 0x97, 0xb2, 0x2c, 0x9b, 0x44, 0x70, 0x92, 0x2a, 0xfa, 0x36, 0x18, 0xe3, 0xf3, + 0x2c, 0x5a, 0xe1, 0x96, 0x18, 0x1f, 0xc8, 0x5f, 0x2f, 0x7a, 0x13, 0x5c, 0x2a, 0xa7, 0x55, 0xc7, + 0x06, 0x31, 0xfb, 0xcf, 0x2c, 0x40, 0x2b, 0xed, 0x1d, 0xd2, 0x22, 0x81, 0xd3, 0x8c, 0xc5, 0xe9, + 0xdf, 0x6f, 0xc1, 0x2c, 0x49, 0x15, 0x2f, 0xfb, 0xad, 0x96, 0x78, 0xb4, 0xe4, 0xbc, 0xab, 0x57, + 0x72, 0xea, 0x28, 0xb7, 0x84, 0xd9, 0x3c, 0x0c, 0x9c, 0xdb, 0x1e, 0x5a, 0x83, 0x19, 0x7e, 0x4b, + 0x2a, 0x80, 0x66, 0x7b, 0xfd, 0xb8, 0x20, 0x3c, 0xb3, 0x91, 0x46, 0xc1, 0x59, 0xf5, 0xec, 0xef, + 0x1a, 0x83, 0xdc, 0x5e, 0xbc, 0xa7, 0x47, 0x78, 0x4f, 0x8f, 0xf0, 0x9e, 0x1e, 0xe1, 0x3d, 0x3d, + 0xc2, 0x7b, 0x7a, 0x84, 0x6f, 0x7a, 0x3d, 0xc2, 0x9f, 0x58, 0x30, 0x93, 0xbe, 0x06, 0x4e, 0x82, + 0x31, 0xef, 0xc0, 0x4c, 0xfa, 0xae, 0xeb, 0x6a, 0x67, 0x97, 0xee, 0x67, 0x7c, 0xef, 0x65, 0x7c, + 0x03, 0xce, 0xa2, 0x6f, 0xff, 0xa6, 0x05, 0xa7, 0x15, 0xb2, 0xf1, 0xd2, 0xff, 0x3c, 0xcc, 0xf0, + 0xf3, 0x65, 0xb9, 0xe9, 0xb8, 0xad, 0x0d, 0xd2, 0x6a, 0x37, 0x9d, 0x48, 0x9a, 0x19, 0x3c, 0x97, + 0xb9, 0x55, 0x13, 0x26, 0xba, 0x46, 0xc5, 0xa5, 0xc7, 0x68, 0xbf, 0x32, 0x00, 0x38, 0xab, 0x19, + 0xc3, 0x28, 0xb5, 0xd0, 0xd3, 0x4c, 0xf8, 0x97, 0x46, 0x60, 0x70, 0x65, 0x8f, 0x78, 0xd1, 0x09, + 0x4c, 0x54, 0x1d, 0x26, 0x5c, 0x6f, 0xcf, 0x6f, 0xee, 0x91, 0x06, 0x87, 0x1f, 0xe5, 0xa1, 0x7f, + 0x46, 0x90, 0x9e, 0xa8, 0x18, 0x24, 0x70, 0x82, 0xe4, 0xa3, 0x10, 0xb6, 0x5f, 0x83, 0x21, 0x7e, + 0xc7, 0x09, 0x49, 0x7b, 0xe6, 0x95, 0xc6, 0x06, 0x51, 0xdc, 0xdc, 0xb1, 0x22, 0x80, 0xdf, 0xa1, + 0xa2, 0x3a, 0xfa, 0x1c, 0x4c, 0x6c, 0xb9, 0x41, 0x18, 0x6d, 0xb8, 0x2d, 0x12, 0x46, 0x4e, 0xab, + 0xfd, 0x10, 0xc2, 0x75, 0x35, 0x0e, 0xab, 0x06, 0x25, 0x9c, 0xa0, 0x8c, 0xb6, 0x61, 0xbc, 0xe9, + 0xe8, 0x4d, 0x0d, 0x1f, 0xb9, 0x29, 0x75, 0x79, 0xde, 0xd4, 0x09, 0x61, 0x93, 0x2e, 0x3d, 0x6d, + 0xea, 0x4c, 0x3e, 0x3c, 0xc2, 0xa4, 0x26, 0xea, 0xb4, 0xe1, 0x82, 0x61, 0x0e, 0xa3, 0x7c, 0x20, + 0xb3, 0x1f, 0x2e, 0x99, 0x7c, 0xa0, 0x66, 0x25, 0xfc, 0x59, 0x28, 0x11, 0x3a, 0x84, 0x94, 0xb0, + 0xb8, 0x7f, 0xaf, 0xf6, 0xd7, 0xd7, 0x35, 0xb7, 0x1e, 0xf8, 0xa6, 0x5a, 0x63, 0x45, 0x52, 0xc2, + 0x31, 0x51, 0xb4, 0x0c, 0x43, 0x21, 0x09, 0x5c, 0x12, 0x8a, 0x9b, 0xb8, 0xcb, 0x34, 0x32, 0x34, + 0xee, 0x7a, 0xc3, 0x7f, 0x63, 0x51, 0x95, 0x2e, 0x2f, 0x87, 0x49, 0x7c, 0xd9, 0x5d, 0xa9, 0x2d, + 0xaf, 0x45, 0x56, 0x8a, 0x05, 0x14, 0xbd, 0x0e, 0xc3, 0x01, 0x69, 0x32, 0xbd, 0xd9, 0x78, 0xff, + 0x8b, 0x9c, 0xab, 0xe1, 0x78, 0x3d, 0x2c, 0x09, 0xa0, 0x1b, 0x80, 0x02, 0x42, 0xf9, 0x48, 0xd7, + 0xdb, 0x56, 0x56, 0xb5, 0xe2, 0x1e, 0x52, 0xe7, 0x16, 0x8e, 0x31, 0xa4, 0x17, 0x14, 0xce, 0xa8, + 0x86, 0xae, 0xc1, 0xb4, 0x2a, 0xad, 0x78, 0x61, 0xe4, 0xd0, 0xf3, 0x7f, 0x92, 0xd1, 0x52, 0x62, + 0x1c, 0x9c, 0x44, 0xc0, 0xe9, 0x3a, 0xf6, 0x97, 0x2d, 0xe0, 0xe3, 0x7c, 0x02, 0xc2, 0x8b, 0xd7, + 0x4c, 0xe1, 0xc5, 0xd9, 0xdc, 0x99, 0xcb, 0x11, 0x5c, 0x7c, 0xd9, 0x82, 0x51, 0x6d, 0x66, 0xe3, + 0x35, 0x6b, 0x75, 0x59, 0xb3, 0x1d, 0x98, 0xa2, 0x2b, 0xfd, 0xd6, 0x66, 0x48, 0x82, 0x3d, 0xd2, + 0x60, 0x0b, 0xb3, 0xf0, 0x70, 0x0b, 0x53, 0x59, 0xf0, 0xdd, 0x4c, 0x10, 0xc4, 0xa9, 0x26, 0xec, + 0xcf, 0xca, 0xae, 0x2a, 0x83, 0xc7, 0xba, 0x9a, 0xf3, 0x84, 0xc1, 0xa3, 0x9a, 0x55, 0x1c, 0xe3, + 0xd0, 0xad, 0xb6, 0xe3, 0x87, 0x51, 0xd2, 0xe0, 0xf1, 0xba, 0x1f, 0x46, 0x98, 0x41, 0xec, 0x17, + 0x00, 0x56, 0xee, 0x93, 0x3a, 0x5f, 0xb1, 0xfa, 0xdb, 0xca, 0xca, 0x7f, 0x5b, 0xd9, 0xbf, 0x6b, + 0xc1, 0xc4, 0xea, 0xb2, 0x71, 0xcf, 0x2d, 0x00, 0xf0, 0x07, 0xe1, 0xdd, 0xbb, 0xeb, 0xd2, 0x5a, + 0x80, 0x2b, 0x7c, 0x55, 0x29, 0xd6, 0x30, 0xd0, 0x59, 0x28, 0x36, 0x3b, 0x9e, 0x90, 0xae, 0x0e, + 0x53, 0xee, 0xe1, 0x66, 0xc7, 0xc3, 0xb4, 0x4c, 0xf3, 0xb8, 0x28, 0xf6, 0xed, 0x71, 0xd1, 0x33, + 0xf2, 0x01, 0x9a, 0x87, 0xc1, 0x7b, 0xf7, 0xdc, 0x06, 0xf7, 0x2f, 0x15, 0x96, 0x0c, 0x77, 0xef, + 0x56, 0xca, 0x21, 0xe6, 0xe5, 0xf6, 0x97, 0x8a, 0x30, 0xb7, 0xda, 0x24, 0xf7, 0xdf, 0xa1, 0x8f, + 0x6d, 0xbf, 0xfe, 0x22, 0x47, 0x93, 0x53, 0x1d, 0xd5, 0x27, 0xa8, 0xf7, 0x78, 0x6c, 0xc1, 0x30, + 0xb7, 0xf7, 0x93, 0x1e, 0xb7, 0xaf, 0x66, 0xb5, 0x9e, 0x3f, 0x20, 0x0b, 0xdc, 0x6e, 0x50, 0x38, + 0x0c, 0xaa, 0x0b, 0x53, 0x94, 0x62, 0x49, 0x7c, 0xee, 0x15, 0x18, 0xd3, 0x31, 0x8f, 0xe4, 0x9d, + 0xf7, 0xff, 0x14, 0x61, 0x8a, 0xf6, 0xe0, 0x91, 0x4e, 0xc4, 0xed, 0xf4, 0x44, 0x1c, 0xb7, 0x87, + 0x56, 0xef, 0xd9, 0x78, 0x33, 0x39, 0x1b, 0xcf, 0xe5, 0xcd, 0xc6, 0x49, 0xcf, 0xc1, 0x77, 0x5a, + 0x30, 0xb3, 0xda, 0xf4, 0xeb, 0xbb, 0x09, 0x2f, 0xaa, 0x97, 0x60, 0x94, 0x1e, 0xc7, 0xa1, 0xe1, + 0xe0, 0x6f, 0x84, 0x7c, 0x10, 0x20, 0xac, 0xe3, 0x69, 0xd5, 0x6e, 0xdf, 0xae, 0x94, 0xb3, 0x22, + 0x45, 0x08, 0x10, 0xd6, 0xf1, 0xec, 0xdf, 0xb6, 0xe0, 0xfc, 0xb5, 0xe5, 0x95, 0x78, 0x29, 0xa6, + 0x82, 0x55, 0x5c, 0x86, 0xa1, 0x76, 0x43, 0xeb, 0x4a, 0x2c, 0x7d, 0x2e, 0xb3, 0x5e, 0x08, 0xe8, + 0xbb, 0x25, 0x10, 0xcb, 0xcf, 0x58, 0x30, 0x73, 0xcd, 0x8d, 0xe8, 0xed, 0x9a, 0x0c, 0x9b, 0x40, + 0xaf, 0xd7, 0xd0, 0x8d, 0xfc, 0x60, 0x3f, 0x19, 0x36, 0x01, 0x2b, 0x08, 0xd6, 0xb0, 0x78, 0xcb, + 0x7b, 0x2e, 0xb3, 0x34, 0x2f, 0x98, 0x7a, 0x38, 0x2c, 0xca, 0xb1, 0xc2, 0xa0, 0x1f, 0xd6, 0x70, + 0x03, 0x26, 0xc2, 0xdc, 0x17, 0x27, 0xac, 0xfa, 0xb0, 0xb2, 0x04, 0xe0, 0x18, 0x87, 0xbe, 0xe6, + 0xe6, 0xaf, 0x35, 0x3b, 0x61, 0x44, 0x82, 0xad, 0x30, 0xe7, 0x74, 0x7c, 0x01, 0x4a, 0x44, 0x2a, + 0x0c, 0x44, 0xaf, 0x15, 0xc7, 0xa8, 0x34, 0x09, 0x3c, 0x7a, 0x83, 0xc2, 0xeb, 0xc3, 0x27, 0xf3, + 0x68, 0x4e, 0x75, 0xab, 0x80, 0x88, 0xde, 0x96, 0x1e, 0xce, 0x82, 0xf9, 0xc5, 0xaf, 0xa4, 0xa0, + 0x38, 0xa3, 0x86, 0xfd, 0xe3, 0x16, 0x9c, 0x56, 0x1f, 0xfc, 0xae, 0xfb, 0x4c, 0xfb, 0xe7, 0x0b, + 0x30, 0x7e, 0x7d, 0x63, 0xa3, 0x7a, 0x8d, 0x44, 0xe2, 0xda, 0xee, 0x6d, 0x06, 0x80, 0x35, 0x6d, + 0x66, 0xb7, 0xc7, 0x5c, 0x27, 0x72, 0x9b, 0x0b, 0x3c, 0x2a, 0xd2, 0x42, 0xc5, 0x8b, 0x6e, 0x05, + 0xb5, 0x28, 0x70, 0xbd, 0xed, 0x4c, 0xfd, 0xa7, 0x64, 0x2e, 0x8a, 0x79, 0xcc, 0x05, 0x7a, 0x01, + 0x86, 0x58, 0x58, 0x26, 0x39, 0x09, 0x8f, 0xab, 0xb7, 0x10, 0x2b, 0x3d, 0x3c, 0x98, 0x2f, 0xdd, + 0xc6, 0x15, 0xfe, 0x07, 0x0b, 0x54, 0x74, 0x1b, 0x46, 0x77, 0xa2, 0xa8, 0x7d, 0x9d, 0x38, 0x0d, + 0xfa, 0x74, 0xe7, 0xc7, 0xe1, 0x85, 0xac, 0xe3, 0x90, 0x0e, 0x02, 0x47, 0x8b, 0x4f, 0x90, 0xb8, + 0x2c, 0xc4, 0x3a, 0x1d, 0xbb, 0x06, 0x10, 0xc3, 0x8e, 0x49, 0x91, 0x63, 0xff, 0x91, 0x05, 0xc3, + 0x3c, 0x42, 0x46, 0x80, 0x3e, 0x0a, 0x03, 0xe4, 0x3e, 0xa9, 0x0b, 0x8e, 0x37, 0xb3, 0xc3, 0x31, + 0xa7, 0xc5, 0x05, 0xd2, 0xf4, 0x3f, 0x66, 0xb5, 0xd0, 0x75, 0x18, 0xa6, 0xbd, 0xbd, 0xa6, 0xc2, + 0x85, 0x3c, 0x91, 0xf7, 0xc5, 0x6a, 0xda, 0x39, 0x73, 0x26, 0x8a, 0xb0, 0xac, 0xce, 0xb4, 0xe7, + 0xf5, 0x76, 0x8d, 0x9e, 0xd8, 0x51, 0x37, 0xc6, 0x62, 0x63, 0xb9, 0xca, 0x91, 0x04, 0x35, 0xae, + 0x3d, 0x97, 0x85, 0x38, 0x26, 0x62, 0x6f, 0x40, 0x89, 0x4e, 0xea, 0x62, 0xd3, 0x75, 0xba, 0x1b, + 0x04, 0x3c, 0x0d, 0x25, 0xa9, 0xee, 0x0f, 0x85, 0x67, 0x3c, 0xa3, 0x2a, 0xad, 0x01, 0x42, 0x1c, + 0xc3, 0xed, 0x2d, 0x38, 0xc5, 0x8c, 0x37, 0x9d, 0x68, 0xc7, 0xd8, 0x63, 0xbd, 0x17, 0xf3, 0x33, + 0xe2, 0x01, 0xc9, 0x67, 0x66, 0x56, 0x73, 0x3e, 0x1d, 0x93, 0x14, 0xe3, 0xc7, 0xa4, 0xfd, 0xb5, + 0x01, 0x78, 0xbc, 0x52, 0xcb, 0x0f, 0x9e, 0xf2, 0x32, 0x8c, 0x71, 0xbe, 0x94, 0x2e, 0x6d, 0xa7, + 0x29, 0xda, 0x55, 0x92, 0xe8, 0x0d, 0x0d, 0x86, 0x0d, 0x4c, 0x74, 0x1e, 0x8a, 0xee, 0x5b, 0x5e, + 0xd2, 0x35, 0xab, 0xf2, 0xc6, 0x3a, 0xa6, 0xe5, 0x14, 0x4c, 0x59, 0x5c, 0x7e, 0x77, 0x28, 0xb0, + 0x62, 0x73, 0x5f, 0x83, 0x09, 0x37, 0xac, 0x87, 0x6e, 0xc5, 0xa3, 0xe7, 0x8c, 0x76, 0x52, 0x29, + 0xe1, 0x06, 0xed, 0xb4, 0x82, 0xe2, 0x04, 0xb6, 0x76, 0x91, 0x0d, 0xf6, 0xcd, 0x26, 0xf7, 0x74, + 0x15, 0xa7, 0x2f, 0x80, 0x36, 0xfb, 0xba, 0x90, 0xa9, 0x14, 0xc4, 0x0b, 0x80, 0x7f, 0x70, 0x88, + 0x25, 0x8c, 0xbe, 0x1c, 0xeb, 0x3b, 0x4e, 0x7b, 0xb1, 0x13, 0xed, 0x94, 0xdd, 0xb0, 0xee, 0xef, + 0x91, 0x60, 0x9f, 0x3d, 0xfa, 0x47, 0xe2, 0x97, 0xa3, 0x02, 0x2c, 0x5f, 0x5f, 0xac, 0x52, 0x4c, + 0x9c, 0xae, 0x83, 0x16, 0x61, 0x52, 0x16, 0xd6, 0x48, 0xc8, 0xae, 0xb0, 0x51, 0x46, 0x46, 0x39, + 0x4b, 0x89, 0x62, 0x45, 0x24, 0x89, 0x6f, 0x72, 0xd2, 0x70, 0x1c, 0x9c, 0xf4, 0x47, 0x60, 0xdc, + 0xf5, 0xdc, 0xc8, 0x75, 0x22, 0x9f, 0xeb, 0xc3, 0xf8, 0xfb, 0x9e, 0x09, 0xfa, 0x2b, 0x3a, 0x00, + 0x9b, 0x78, 0xf6, 0x7f, 0x1e, 0x80, 0x69, 0x36, 0x6d, 0xef, 0xad, 0xb0, 0x6f, 0xa6, 0x15, 0x76, + 0x3b, 0xbd, 0xc2, 0x8e, 0xe3, 0x89, 0xf0, 0xd0, 0xcb, 0xec, 0x73, 0x50, 0x52, 0xfe, 0x61, 0xd2, + 0x41, 0xd4, 0xca, 0x71, 0x10, 0xed, 0xcd, 0x7d, 0x48, 0x13, 0xbb, 0x62, 0xa6, 0x89, 0xdd, 0x8f, + 0x58, 0x10, 0x2b, 0x78, 0xd0, 0x75, 0x28, 0xb5, 0x7d, 0x66, 0x39, 0x1a, 0x48, 0x73, 0xec, 0xc7, 0x33, 0x2f, 0x2a, 0x7e, 0x29, 0xf2, 0x8f, 0xaf, 0xca, 0x1a, 0x38, 0xae, 0x8c, 0x96, 0x60, 0xb8, 0x1d, 0x90, 0x5a, 0xc4, 0x62, 0xa8, 0xf4, 0xa4, 0xc3, 0xd7, 0x08, 0xc7, 0xc7, 0xb2, 0xa2, 0xfd, - 0xf3, 0x16, 0x00, 0xb7, 0x62, 0x73, 0xbc, 0x6d, 0x72, 0x02, 0x52, 0xeb, 0x32, 0x0c, 0x84, 0x6d, + 0x0b, 0x16, 0x00, 0xb7, 0x62, 0x73, 0xbc, 0x6d, 0x72, 0x02, 0x52, 0xeb, 0x32, 0x0c, 0x84, 0x6d, 0x52, 0xef, 0x66, 0xd3, 0x1b, 0xf7, 0xa7, 0xd6, 0x26, 0xf5, 0x78, 0xc0, 0xe9, 0x3f, 0xcc, 0x6a, 0xdb, 0xdf, 0x0d, 0x30, 0x11, 0xa3, 0x55, 0x22, 0xd2, 0x42, 0xcf, 0x1a, 0x31, 0x15, 0xce, 0x26, 0x62, 0x2a, 0x94, 0x18, 0xb6, 0x26, 0x20, 0xfd, 0x1c, 0x14, 0x5b, 0xce, 0x7d, 0x21, 0x01, 0x7b, @@ -6415,550 +6415,551 @@ var fileDescriptor_83c10c24ec417dc9 = []byte{ 0xb6, 0xec, 0x68, 0x23, 0xac, 0x2d, 0xd7, 0x13, 0x06, 0x5a, 0x7d, 0xb5, 0xe5, 0x7a, 0xc9, 0xb6, 0x5c, 0xaf, 0x8f, 0xb6, 0x5c, 0x0f, 0xbd, 0x0d, 0xc3, 0xc2, 0x7e, 0x52, 0xc4, 0x30, 0xba, 0xda, 0x47, 0x7b, 0xc2, 0xfc, 0x92, 0xb7, 0x79, 0x55, 0x3e, 0x82, 0x45, 0x69, 0xcf, 0x76, 0x65, 0x83, - 0xe8, 0xaf, 0x58, 0x30, 0x21, 0x7e, 0x63, 0xf2, 0x56, 0x87, 0x84, 0x91, 0xe0, 0x3d, 0x3f, 0xdc, - 0x7f, 0x1f, 0x44, 0x45, 0xde, 0x95, 0x0f, 0xcb, 0x63, 0xd6, 0x04, 0xf6, 0xec, 0x51, 0xa2, 0x17, - 0xe8, 0xef, 0x59, 0x70, 0xaa, 0xe5, 0xdc, 0xe7, 0x2d, 0xf2, 0x32, 0xec, 0x44, 0xae, 0x2f, 0xec, - 0x10, 0x3e, 0xda, 0xdf, 0xf4, 0xa7, 0xaa, 0xf3, 0x4e, 0x4a, 0x65, 0xe9, 0xa9, 0x2c, 0x94, 0x9e, - 0x5d, 0xcd, 0xec, 0xd7, 0xdc, 0x16, 0x8c, 0xc8, 0xf5, 0x96, 0x21, 0x6a, 0x28, 0xeb, 0x8c, 0xf5, - 0x91, 0xcd, 0x57, 0xf5, 0x58, 0x05, 0xb4, 0x1d, 0xb1, 0xd6, 0x1e, 0x69, 0x3b, 0x9f, 0x83, 0x31, - 0x7d, 0x8d, 0x3d, 0xd2, 0xb6, 0xde, 0x82, 0x99, 0x8c, 0xb5, 0xf4, 0x48, 0x9b, 0xbc, 0x07, 0x67, - 0x73, 0xd7, 0xc7, 0xa3, 0x6c, 0xd8, 0xfe, 0x39, 0x4b, 0x3f, 0x07, 0x4f, 0x40, 0x75, 0xb0, 0x6c, - 0xaa, 0x0e, 0x2e, 0x74, 0xdf, 0x39, 0x39, 0xfa, 0x83, 0x37, 0xf5, 0x4e, 0xd3, 0x53, 0x1d, 0xbd, - 0x0e, 0x43, 0x4d, 0x5a, 0x22, 0xad, 0x70, 0xed, 0xde, 0x3b, 0x32, 0xe6, 0xa5, 0x58, 0x79, 0x88, - 0x05, 0x05, 0xfb, 0x97, 0x2c, 0x18, 0x38, 0x81, 0x91, 0xc0, 0xe6, 0x48, 0x3c, 0x9b, 0x4b, 0x5a, - 0x84, 0x57, 0x5e, 0xc0, 0xce, 0xbd, 0x95, 0xfb, 0x11, 0xf1, 0x42, 0xf6, 0x54, 0xcc, 0x1c, 0x98, - 0xff, 0x0b, 0x66, 0x6e, 0xfa, 0x4e, 0x63, 0xc9, 0x69, 0x3a, 0x5e, 0x9d, 0x04, 0x15, 0x6f, 0xfb, - 0x48, 0x16, 0xe4, 0x85, 0x5e, 0x16, 0xe4, 0xf6, 0x0e, 0x20, 0xbd, 0x01, 0xe1, 0x8a, 0x83, 0x61, - 0xd8, 0xe5, 0x4d, 0x89, 0xe1, 0x7f, 0x32, 0x9b, 0x35, 0x4b, 0xf5, 0x4c, 0x73, 0x32, 0xe1, 0x05, - 0x58, 0x12, 0xb2, 0x5f, 0x86, 0x4c, 0x7f, 0xfe, 0xde, 0x62, 0x03, 0xfb, 0x93, 0x30, 0xcd, 0x6a, - 0x1e, 0xf1, 0x49, 0x6b, 0x27, 0xa4, 0x92, 0x19, 0x91, 0xfe, 0xec, 0x2f, 0x5a, 0x30, 0xb9, 0x9e, - 0x08, 0x80, 0x76, 0x99, 0xe9, 0x31, 0x33, 0x84, 0xe1, 0x35, 0x56, 0x8a, 0x05, 0xf4, 0xd8, 0x65, - 0x50, 0x7f, 0x69, 0x41, 0x1c, 0x62, 0xe3, 0x04, 0x18, 0xaf, 0x65, 0x83, 0xf1, 0xca, 0x94, 0x8d, - 0xa8, 0xee, 0xe4, 0xf1, 0x5d, 0xe8, 0x86, 0x0a, 0x3e, 0xd5, 0x45, 0x2c, 0x12, 0x93, 0xe1, 0xa1, - 0x8a, 0x26, 0xcc, 0x08, 0x55, 0x32, 0x1c, 0x95, 0xfd, 0x1f, 0x0a, 0x80, 0x14, 0x6e, 0xdf, 0xc1, - 0xb1, 0xd2, 0x35, 0x8e, 0x27, 0x38, 0xd6, 0x1e, 0x20, 0xa6, 0x89, 0x0f, 0x1c, 0x2f, 0xe4, 0x64, - 0x5d, 0x21, 0x75, 0x3b, 0x9a, 0x9a, 0x7f, 0x4e, 0x34, 0x89, 0x6e, 0xa6, 0xa8, 0xe1, 0x8c, 0x16, - 0x34, 0x0b, 0x8b, 0xc1, 0x7e, 0x2d, 0x2c, 0x86, 0x7a, 0xb8, 0xdb, 0xfd, 0xac, 0x05, 0xe3, 0x6a, - 0x98, 0xde, 0x25, 0xc6, 0xf0, 0xaa, 0x3f, 0x39, 0x47, 0x5f, 0x55, 0xeb, 0x32, 0xbb, 0x12, 0xbe, - 0x95, 0xb9, 0x4d, 0x3a, 0x4d, 0xf7, 0x6d, 0xa2, 0x42, 0x13, 0xce, 0x0b, 0x37, 0x48, 0x51, 0x7a, - 0x78, 0x30, 0x3f, 0xae, 0xfe, 0xf1, 0x50, 0xc8, 0x71, 0x15, 0xfb, 0x27, 0xe9, 0x66, 0x37, 0x97, - 0x22, 0x7a, 0x09, 0x06, 0xdb, 0x3b, 0x4e, 0x48, 0x12, 0x4e, 0x43, 0x83, 0x55, 0x5a, 0x78, 0x78, - 0x30, 0x3f, 0xa1, 0x2a, 0xb0, 0x12, 0xcc, 0xb1, 0xfb, 0x0f, 0x39, 0x96, 0x5e, 0x9c, 0x3d, 0x43, - 0x8e, 0xfd, 0xa9, 0x05, 0x03, 0xeb, 0x7e, 0xe3, 0x24, 0x8e, 0x80, 0xd7, 0x8c, 0x23, 0xe0, 0x5c, - 0x5e, 0x94, 0xfa, 0xdc, 0xdd, 0xbf, 0x9a, 0xd8, 0xfd, 0x17, 0x72, 0x29, 0x74, 0xdf, 0xf8, 0x2d, - 0x18, 0x65, 0xb1, 0xef, 0x85, 0x83, 0xd4, 0x0b, 0xc6, 0x86, 0x9f, 0x4f, 0x6c, 0xf8, 0x49, 0x0d, - 0x55, 0xdb, 0xe9, 0x4f, 0xc1, 0xb0, 0xf0, 0xb8, 0x49, 0x7a, 0x9f, 0x0a, 0x5c, 0x2c, 0xe1, 0xf6, - 0x8f, 0x17, 0xc1, 0x88, 0xb5, 0x8f, 0x7e, 0xc5, 0x82, 0x85, 0x80, 0x5b, 0xe2, 0x36, 0xca, 0x9d, - 0xc0, 0xf5, 0xb6, 0x6b, 0xf5, 0x1d, 0xd2, 0xe8, 0x34, 0x5d, 0x6f, 0xbb, 0xb2, 0xed, 0xf9, 0xaa, - 0x78, 0xe5, 0x3e, 0xa9, 0x77, 0x98, 0xfa, 0xaa, 0x47, 0x60, 0x7f, 0x65, 0xd1, 0xfe, 0xfc, 0x83, - 0x83, 0xf9, 0x05, 0x7c, 0x24, 0xda, 0xf8, 0x88, 0x7d, 0x41, 0xbf, 0x65, 0xc1, 0x55, 0x1e, 0x82, - 0xbe, 0xff, 0xfe, 0x77, 0x79, 0xe7, 0x56, 0x25, 0xa9, 0x98, 0xc8, 0x06, 0x09, 0x5a, 0x4b, 0x1f, - 0x11, 0x03, 0x7a, 0xb5, 0x7a, 0xb4, 0xb6, 0xf0, 0x51, 0x3b, 0x67, 0xff, 0xd3, 0x22, 0x8c, 0x8b, - 0xd0, 0x54, 0xe2, 0x0e, 0x78, 0xc9, 0x58, 0x12, 0x4f, 0x24, 0x96, 0xc4, 0xb4, 0x81, 0x7c, 0x3c, - 0xc7, 0x7f, 0x08, 0xd3, 0xf4, 0x70, 0xbe, 0x4e, 0x9c, 0x20, 0xda, 0x24, 0x0e, 0x37, 0x9c, 0x2a, - 0x1e, 0xf9, 0xf4, 0x57, 0x82, 0xb5, 0x9b, 0x49, 0x62, 0x38, 0x4d, 0xff, 0x9b, 0xe9, 0xce, 0xf1, - 0x60, 0x2a, 0x15, 0x5d, 0xec, 0x53, 0x50, 0x52, 0xee, 0x22, 0xe2, 0xd0, 0xe9, 0x1e, 0xa4, 0x2f, - 0x49, 0x81, 0x0b, 0xbf, 0x62, 0x57, 0xa5, 0x98, 0x9c, 0xfd, 0xf7, 0x0b, 0x46, 0x83, 0x7c, 0x12, - 0xd7, 0x61, 0xc4, 0x09, 0x43, 0x77, 0xdb, 0x23, 0x0d, 0xb1, 0x63, 0xdf, 0x9f, 0xb7, 0x63, 0x8d, - 0x66, 0x98, 0xcb, 0xce, 0xa2, 0xa8, 0x89, 0x15, 0x0d, 0x74, 0x9d, 0x9b, 0xa7, 0xed, 0xc9, 0x97, - 0x5a, 0x7f, 0xd4, 0x40, 0x1a, 0xb0, 0xed, 0x11, 0x2c, 0xea, 0xa3, 0x4f, 0x73, 0xfb, 0xc1, 0x1b, - 0x9e, 0x7f, 0xcf, 0xbb, 0xe6, 0xfb, 0x32, 0xfc, 0x43, 0x7f, 0x04, 0xa7, 0xa5, 0xd5, 0xa0, 0xaa, - 0x8e, 0x4d, 0x6a, 0xfd, 0x85, 0xeb, 0xfc, 0x3c, 0xcc, 0x50, 0xd2, 0xa6, 0x77, 0x76, 0x88, 0x08, - 0x4c, 0x8a, 0xb8, 0x67, 0xb2, 0x4c, 0x8c, 0x5d, 0xe6, 0x23, 0xcc, 0xac, 0x1d, 0x4b, 0x80, 0x6f, - 0x98, 0x24, 0x70, 0x92, 0xa6, 0xfd, 0x53, 0x16, 0x30, 0x4f, 0xd5, 0x13, 0xe0, 0x47, 0x3e, 0x66, - 0xf2, 0x23, 0xb3, 0x79, 0x83, 0x9c, 0xc3, 0x8a, 0xbc, 0xc8, 0x57, 0x56, 0x35, 0xf0, 0xef, 0xef, - 0x0b, 0xa3, 0x8f, 0xde, 0xef, 0x0f, 0xfb, 0x7f, 0x59, 0xfc, 0x10, 0x53, 0xce, 0x1c, 0xe8, 0xdb, - 0x61, 0xa4, 0xee, 0xb4, 0x9d, 0x3a, 0x4f, 0x0c, 0x93, 0x2b, 0x8b, 0x33, 0x2a, 0x2d, 0x2c, 0x8b, - 0x1a, 0x5c, 0xb6, 0x24, 0xe3, 0xe7, 0x8d, 0xc8, 0xe2, 0x9e, 0xf2, 0x24, 0xd5, 0xe4, 0xdc, 0x2e, - 0x8c, 0x1b, 0xc4, 0x1e, 0xa9, 0x20, 0xe2, 0xdb, 0xf9, 0x15, 0xab, 0xe2, 0x3d, 0xb6, 0x60, 0xda, - 0xd3, 0xfe, 0xd3, 0x0b, 0x45, 0x3e, 0x2e, 0xdf, 0xdf, 0xeb, 0x12, 0x65, 0xb7, 0x8f, 0xe6, 0x04, - 0x9b, 0x20, 0x83, 0xd3, 0x94, 0xed, 0x9f, 0xb0, 0xe0, 0x31, 0x1d, 0x51, 0xf3, 0xb3, 0xe9, 0x25, - 0xdd, 0x2f, 0xc3, 0x88, 0xdf, 0x26, 0x81, 0x13, 0xf9, 0x81, 0xb8, 0x35, 0xae, 0xc8, 0x41, 0xbf, - 0x25, 0xca, 0x0f, 0x45, 0x58, 0x75, 0x49, 0x5d, 0x96, 0x63, 0x55, 0x93, 0xbe, 0x3e, 0xd9, 0x60, - 0x84, 0xc2, 0xa3, 0x8a, 0x9d, 0x01, 0x4c, 0xd1, 0x1d, 0x62, 0x01, 0xb1, 0xbf, 0x66, 0xf1, 0x85, - 0xa5, 0x77, 0x1d, 0xbd, 0x05, 0x53, 0x2d, 0x27, 0xaa, 0xef, 0xac, 0xdc, 0x6f, 0x07, 0x5c, 0x57, - 0x22, 0xc7, 0xe9, 0xe9, 0x5e, 0xe3, 0xa4, 0x7d, 0x64, 0x6c, 0x12, 0xb9, 0x96, 0x20, 0x86, 0x53, - 0xe4, 0xd1, 0x26, 0x8c, 0xb2, 0x32, 0xe6, 0x2c, 0x18, 0x76, 0x63, 0x0d, 0xf2, 0x5a, 0x53, 0xb6, - 0x02, 0x6b, 0x31, 0x1d, 0xac, 0x13, 0xb5, 0x7f, 0xa6, 0xc8, 0x77, 0x3b, 0x63, 0xe5, 0x9f, 0x82, - 0xe1, 0xb6, 0xdf, 0x58, 0xae, 0x94, 0xb1, 0x98, 0x05, 0x75, 0x8d, 0x54, 0x79, 0x31, 0x96, 0x70, - 0x74, 0x05, 0x46, 0xc4, 0x4f, 0xa9, 0xdb, 0x62, 0x67, 0xb3, 0xc0, 0x0b, 0xb1, 0x82, 0xa2, 0xe7, - 0x01, 0xda, 0x81, 0xbf, 0xe7, 0x36, 0x58, 0x10, 0x8b, 0xa2, 0x69, 0xe6, 0x53, 0x55, 0x10, 0xac, - 0x61, 0xa1, 0x57, 0x61, 0xbc, 0xe3, 0x85, 0x9c, 0x1d, 0xd1, 0x42, 0xd6, 0x2a, 0x03, 0x94, 0xdb, - 0x3a, 0x10, 0x9b, 0xb8, 0x68, 0x11, 0x86, 0x22, 0x87, 0x99, 0xad, 0x0c, 0xe6, 0x9b, 0xcd, 0x6e, - 0x50, 0x0c, 0x3d, 0x07, 0x09, 0xad, 0x80, 0x45, 0x45, 0xf4, 0x29, 0xe9, 0xb7, 0xcb, 0x0f, 0x76, - 0x61, 0xaf, 0xde, 0xdf, 0x25, 0xa0, 0x79, 0xed, 0x0a, 0x3b, 0x78, 0x83, 0x16, 0x7a, 0x05, 0x80, - 0xdc, 0x8f, 0x48, 0xe0, 0x39, 0x4d, 0x65, 0x15, 0xa6, 0xf8, 0x82, 0xb2, 0xbf, 0xee, 0x47, 0xb7, - 0x43, 0xb2, 0xa2, 0x30, 0xb0, 0x86, 0x6d, 0xff, 0x56, 0x09, 0x20, 0xe6, 0xdb, 0xd1, 0xdb, 0xa9, - 0x83, 0xeb, 0x99, 0xee, 0x9c, 0xfe, 0xf1, 0x9d, 0x5a, 0xe8, 0x7b, 0x2c, 0x18, 0x75, 0x9a, 0x4d, - 0xbf, 0xee, 0xf0, 0xa0, 0xc2, 0x85, 0xee, 0x07, 0xa7, 0x68, 0x7f, 0x31, 0xae, 0xc1, 0xbb, 0xf0, - 0x82, 0x5c, 0xa1, 0x1a, 0xa4, 0x67, 0x2f, 0xf4, 0x86, 0xd1, 0x87, 0xe4, 0x53, 0xb1, 0x68, 0x0c, - 0xa5, 0x7a, 0x2a, 0x96, 0xd8, 0x1d, 0xa1, 0xbf, 0x12, 0x6f, 0x1b, 0xaf, 0xc4, 0x81, 0x7c, 0xc7, - 0x44, 0x83, 0x7d, 0xed, 0xf5, 0x40, 0x44, 0x55, 0x3d, 0x48, 0xc1, 0x60, 0xbe, 0x17, 0xa0, 0xf6, - 0x4e, 0xea, 0x11, 0xa0, 0xe0, 0x73, 0x30, 0xd9, 0x30, 0x99, 0x00, 0xb1, 0x12, 0x9f, 0xcc, 0xa3, - 0x9b, 0xe0, 0x19, 0xe2, 0x6b, 0x3f, 0x01, 0xc0, 0x49, 0xc2, 0xa8, 0xca, 0x63, 0x56, 0x54, 0xbc, - 0x2d, 0x5f, 0xf8, 0x4c, 0xd8, 0xb9, 0x73, 0xb9, 0x1f, 0x46, 0xa4, 0x45, 0x31, 0xe3, 0xdb, 0x7d, - 0x5d, 0xd4, 0xc5, 0x8a, 0x0a, 0x7a, 0x1d, 0x86, 0x98, 0x1b, 0x58, 0x38, 0x3b, 0x92, 0x2f, 0x2b, - 0x36, 0x83, 0xb0, 0xc5, 0x1b, 0x92, 0xfd, 0x0d, 0xb1, 0xa0, 0x80, 0xae, 0x4b, 0x27, 0xcb, 0xb0, - 0xe2, 0xdd, 0x0e, 0x09, 0x73, 0xb2, 0x2c, 0x2d, 0xbd, 0x3f, 0xf6, 0x9f, 0xe4, 0xe5, 0x99, 0x99, - 0xca, 0x8c, 0x9a, 0x94, 0x8b, 0x12, 0xff, 0x65, 0x02, 0xb4, 0x59, 0xc8, 0xef, 0x9e, 0x99, 0x24, - 0x2d, 0x1e, 0xce, 0x3b, 0x26, 0x09, 0x9c, 0xa4, 0x49, 0x39, 0x52, 0xbe, 0xeb, 0x85, 0xd7, 0x45, - 0xaf, 0xb3, 0x83, 0x3f, 0xc4, 0xd9, 0x6d, 0xc4, 0x4b, 0xb0, 0xa8, 0x7f, 0xa2, 0xec, 0xc1, 0x9c, - 0x07, 0x53, 0xc9, 0x2d, 0xfa, 0x48, 0xd9, 0x91, 0x3f, 0x1c, 0x80, 0x09, 0x73, 0x49, 0xa1, 0xab, - 0x50, 0x12, 0x44, 0x54, 0xd2, 0x02, 0xb5, 0x4b, 0xd6, 0x24, 0x00, 0xc7, 0x38, 0x2c, 0x57, 0x05, - 0xab, 0xae, 0x99, 0xd9, 0xc6, 0xb9, 0x2a, 0x14, 0x04, 0x6b, 0x58, 0xf4, 0x61, 0xb5, 0xe9, 0xfb, - 0x91, 0xba, 0x90, 0xd4, 0xba, 0x5b, 0x62, 0xa5, 0x58, 0x40, 0xe9, 0x45, 0xb4, 0x4b, 0x02, 0x8f, - 0x34, 0xcd, 0xf0, 0xc6, 0xea, 0x22, 0xba, 0xa1, 0x03, 0xb1, 0x89, 0x4b, 0xaf, 0x53, 0x3f, 0x64, - 0x0b, 0x59, 0x3c, 0xdf, 0x62, 0xb3, 0xe5, 0x1a, 0xf7, 0xf3, 0x96, 0x70, 0xf4, 0x49, 0x78, 0x4c, - 0x85, 0x70, 0xc2, 0x5c, 0x0f, 0x21, 0x5b, 0x1c, 0x32, 0xa4, 0x2d, 0x8f, 0x2d, 0x67, 0xa3, 0xe1, - 0xbc, 0xfa, 0xe8, 0x35, 0x98, 0x10, 0x2c, 0xbe, 0xa4, 0x38, 0x6c, 0x9a, 0xc6, 0xdc, 0x30, 0xa0, - 0x38, 0x81, 0x2d, 0x03, 0x34, 0x33, 0x2e, 0x5b, 0x52, 0x18, 0x49, 0x07, 0x68, 0xd6, 0xe1, 0x38, - 0x55, 0x03, 0x2d, 0xc2, 0x24, 0xe7, 0xc1, 0x5c, 0x6f, 0x9b, 0xcf, 0x89, 0x70, 0x8a, 0x52, 0x5b, - 0xea, 0x96, 0x09, 0xc6, 0x49, 0x7c, 0xf4, 0x32, 0x8c, 0x39, 0x41, 0x7d, 0xc7, 0x8d, 0x48, 0x3d, - 0xea, 0x04, 0xdc, 0x5b, 0x4a, 0xb3, 0x2d, 0x5a, 0xd4, 0x60, 0xd8, 0xc0, 0xb4, 0xdf, 0x86, 0x99, - 0x8c, 0x00, 0x10, 0x74, 0xe1, 0x38, 0x6d, 0x57, 0x7e, 0x53, 0xc2, 0x00, 0x79, 0xb1, 0x5a, 0x91, - 0x5f, 0xa3, 0x61, 0xd1, 0xd5, 0xc9, 0x02, 0x45, 0x68, 0xf9, 0x0e, 0xd5, 0xea, 0x5c, 0x95, 0x00, - 0x1c, 0xe3, 0xd8, 0xff, 0xbd, 0x00, 0x93, 0x19, 0xba, 0x15, 0x96, 0x73, 0x2f, 0xf1, 0x48, 0x89, - 0x53, 0xec, 0x99, 0xf1, 0xbe, 0x0b, 0x47, 0x88, 0xf7, 0x5d, 0xec, 0x15, 0xef, 0x7b, 0xe0, 0x9d, - 0xc4, 0xfb, 0x36, 0x47, 0x6c, 0xb0, 0xaf, 0x11, 0xcb, 0x88, 0x11, 0x3e, 0x74, 0xc4, 0x18, 0xe1, - 0xc6, 0xa0, 0x0f, 0xf7, 0x31, 0xe8, 0x3f, 0x5c, 0x80, 0xa9, 0xa4, 0x0d, 0xe4, 0x09, 0xc8, 0x6d, - 0x5f, 0x37, 0xe4, 0xb6, 0x57, 0xfa, 0x71, 0x79, 0xcd, 0x95, 0xe1, 0xe2, 0x84, 0x0c, 0xf7, 0x83, - 0x7d, 0x51, 0xeb, 0x2e, 0xcf, 0xfd, 0x9b, 0x05, 0x38, 0x9d, 0xe9, 0x73, 0x7b, 0x02, 0x63, 0x73, - 0xcb, 0x18, 0x9b, 0x67, 0xfb, 0x76, 0x07, 0xce, 0x1d, 0xa0, 0xbb, 0x89, 0x01, 0xba, 0xda, 0x3f, - 0xc9, 0xee, 0xa3, 0xf4, 0xd5, 0x22, 0x5c, 0xc8, 0xac, 0x17, 0x8b, 0x3d, 0x57, 0x0d, 0xb1, 0xe7, - 0xf3, 0x09, 0xb1, 0xa7, 0xdd, 0xbd, 0xf6, 0xf1, 0xc8, 0x41, 0x85, 0xa3, 0x2b, 0x8b, 0x66, 0xf0, - 0x90, 0x32, 0x50, 0xc3, 0xd1, 0x55, 0x11, 0xc2, 0x26, 0xdd, 0x6f, 0x26, 0xd9, 0xe7, 0xbf, 0xb2, - 0xe0, 0x6c, 0xe6, 0xdc, 0x9c, 0x80, 0xac, 0x6b, 0xdd, 0x94, 0x75, 0x3d, 0xd5, 0xf7, 0x6a, 0xcd, - 0x11, 0x7e, 0xfd, 0xc6, 0x40, 0xce, 0xb7, 0xb0, 0x97, 0xfc, 0x2d, 0x18, 0x75, 0xea, 0x75, 0x12, - 0x86, 0x6b, 0x7e, 0x43, 0x85, 0x34, 0x7e, 0x96, 0xbd, 0xb3, 0xe2, 0xe2, 0xc3, 0x83, 0xf9, 0xb9, - 0x24, 0x89, 0x18, 0x8c, 0x75, 0x0a, 0xe8, 0xd3, 0x30, 0x12, 0x8a, 0x7b, 0x53, 0xcc, 0xfd, 0x0b, - 0x7d, 0x0e, 0x8e, 0xb3, 0x49, 0x9a, 0x66, 0xcc, 0x25, 0x25, 0xa9, 0x50, 0x24, 0xcd, 0xf8, 0x2c, - 0x85, 0x63, 0x8d, 0xcf, 0xf2, 0x3c, 0xc0, 0x9e, 0x7a, 0x0c, 0x24, 0xe5, 0x0f, 0xda, 0x33, 0x41, - 0xc3, 0x42, 0x1f, 0x87, 0xa9, 0x90, 0x07, 0x25, 0x5c, 0x6e, 0x3a, 0x21, 0x73, 0x73, 0x11, 0xab, - 0x90, 0xc5, 0x75, 0xaa, 0x25, 0x60, 0x38, 0x85, 0x8d, 0x56, 0x65, 0xab, 0x2c, 0x82, 0x22, 0x5f, - 0x98, 0x97, 0xe3, 0x16, 0x45, 0xc6, 0xdf, 0x53, 0xc9, 0xe1, 0x67, 0x03, 0xaf, 0xd5, 0x44, 0x9f, - 0x06, 0xa0, 0xcb, 0x47, 0xc8, 0x21, 0x86, 0xf3, 0x0f, 0x4f, 0x7a, 0xaa, 0x34, 0x32, 0xad, 0x72, - 0x99, 0x6f, 0x6a, 0x59, 0x11, 0xc1, 0x1a, 0x41, 0xfb, 0x87, 0x07, 0xe0, 0xf1, 0x2e, 0x67, 0x24, - 0x5a, 0x34, 0xf5, 0xb0, 0x4f, 0x27, 0x1f, 0xd7, 0x73, 0x99, 0x95, 0x8d, 0xd7, 0x76, 0x62, 0x29, - 0x16, 0xde, 0xf1, 0x52, 0xfc, 0x01, 0x4b, 0x13, 0x7b, 0x70, 0x5b, 0xcd, 0x8f, 0x1d, 0xf1, 0xec, - 0x3f, 0x46, 0x39, 0xc8, 0x56, 0x86, 0x30, 0xe1, 0xf9, 0xbe, 0xbb, 0xd3, 0xb7, 0x74, 0xe1, 0x64, - 0xa5, 0xc4, 0xbf, 0x63, 0xc1, 0xf9, 0xae, 0xc1, 0x39, 0xbe, 0x01, 0x19, 0x06, 0xfb, 0x0b, 0x16, - 0x3c, 0x91, 0x59, 0xc3, 0x30, 0x33, 0xba, 0x0a, 0xa5, 0x3a, 0x2d, 0xd4, 0xfc, 0x2b, 0x63, 0xc7, - 0x73, 0x09, 0xc0, 0x31, 0xce, 0x11, 0x03, 0x8f, 0xfc, 0xaa, 0x05, 0xa9, 0x4d, 0x7f, 0x02, 0xb7, - 0x4f, 0xc5, 0xbc, 0x7d, 0xde, 0xdf, 0xcf, 0x68, 0xe6, 0x5c, 0x3c, 0x7f, 0x32, 0x09, 0x67, 0x72, - 0xfc, 0x8b, 0xf6, 0x60, 0x7a, 0xbb, 0x4e, 0x4c, 0xcf, 0xd5, 0x6e, 0xf1, 0x5f, 0xba, 0xba, 0xb9, - 0xb2, 0x9c, 0xa4, 0xd3, 0x29, 0x14, 0x9c, 0x6e, 0x02, 0x7d, 0xc1, 0x82, 0x53, 0xce, 0xbd, 0x70, - 0x85, 0x72, 0x11, 0x6e, 0x7d, 0xa9, 0xe9, 0xd7, 0x77, 0xe9, 0x11, 0x2d, 0x37, 0xc2, 0x8b, 0x99, - 0x92, 0x9d, 0xbb, 0xb5, 0x14, 0xbe, 0xd1, 0x3c, 0x4b, 0xd2, 0x9a, 0x85, 0x85, 0x33, 0xdb, 0x42, - 0x58, 0x44, 0xee, 0xa7, 0x6f, 0x94, 0x2e, 0xbe, 0xd5, 0x59, 0x8e, 0x60, 0xfc, 0x5a, 0x94, 0x10, - 0xac, 0xe8, 0xa0, 0xcf, 0x42, 0x69, 0x5b, 0x7a, 0x67, 0x66, 0x5c, 0xbb, 0xf1, 0x40, 0x76, 0xf7, - 0x59, 0xe5, 0xea, 0x59, 0x85, 0x84, 0x63, 0xa2, 0xe8, 0x35, 0x28, 0x7a, 0x5b, 0x61, 0xb7, 0x3c, - 0xa7, 0x09, 0x3b, 0x3c, 0x1e, 0xc1, 0x60, 0x7d, 0xb5, 0x86, 0x69, 0x45, 0x74, 0x1d, 0x8a, 0xc1, - 0x66, 0x43, 0x88, 0x25, 0x33, 0x37, 0x29, 0x5e, 0x2a, 0xe7, 0xf4, 0x8a, 0x51, 0xc2, 0x4b, 0x65, - 0x4c, 0x49, 0xa0, 0x2a, 0x0c, 0x32, 0xa7, 0x1c, 0x71, 0xc9, 0x65, 0xb2, 0xf3, 0x5d, 0x9c, 0xdb, - 0x78, 0x98, 0x03, 0x86, 0x80, 0x39, 0x21, 0xb4, 0x01, 0x43, 0x75, 0x96, 0x13, 0x53, 0x44, 0x7c, - 0xfb, 0x50, 0xa6, 0x00, 0xb2, 0x4b, 0xb2, 0x50, 0x21, 0x8f, 0x63, 0x18, 0x58, 0xd0, 0x62, 0x54, - 0x49, 0x7b, 0x67, 0x2b, 0x14, 0x39, 0x9c, 0xb3, 0xa9, 0x76, 0xc9, 0x81, 0x2b, 0xa8, 0x32, 0x0c, - 0x2c, 0x68, 0xa1, 0x57, 0xa0, 0xb0, 0x55, 0x17, 0x0e, 0x37, 0x99, 0x92, 0x48, 0x33, 0x08, 0xc5, - 0xd2, 0xd0, 0x83, 0x83, 0xf9, 0xc2, 0xea, 0x32, 0x2e, 0x6c, 0xd5, 0xd1, 0x3a, 0x0c, 0x6f, 0x71, - 0xb7, 0x75, 0x21, 0x6c, 0x7c, 0x32, 0xdb, 0xa3, 0x3e, 0xe5, 0xd9, 0xce, 0x7d, 0x4d, 0x04, 0x00, - 0x4b, 0x22, 0x2c, 0x10, 0xbe, 0x72, 0xbf, 0x17, 0xc1, 0xd1, 0x16, 0x8e, 0x16, 0x32, 0x81, 0x33, - 0x1d, 0xb1, 0x13, 0x3f, 0xd6, 0x28, 0xd2, 0x55, 0xed, 0xc8, 0x44, 0xfa, 0x22, 0x4c, 0x4c, 0xe6, - 0xaa, 0x56, 0xd9, 0xf6, 0xbb, 0xad, 0x6a, 0x85, 0x84, 0x63, 0xa2, 0x68, 0x17, 0xc6, 0xf7, 0xc2, - 0xf6, 0x0e, 0x91, 0x5b, 0x9a, 0x45, 0x8d, 0xc9, 0xb9, 0x97, 0xef, 0x08, 0x44, 0x37, 0x88, 0x3a, - 0x4e, 0x33, 0x75, 0x0a, 0x31, 0x9d, 0xfe, 0x1d, 0x9d, 0x18, 0x36, 0x69, 0xd3, 0xe1, 0x7f, 0xab, - 0xe3, 0x6f, 0xee, 0x47, 0x44, 0xc4, 0x34, 0xcb, 0x1c, 0xfe, 0x37, 0x38, 0x4a, 0x7a, 0xf8, 0x05, - 0x00, 0x4b, 0x22, 0xe8, 0x8e, 0x18, 0x1e, 0x76, 0x7a, 0x4e, 0xe5, 0x07, 0x1e, 0x5d, 0x94, 0x48, - 0x39, 0x83, 0xc2, 0x4e, 0xcb, 0x98, 0x14, 0x3b, 0x25, 0xdb, 0x3b, 0x7e, 0xe4, 0x7b, 0x89, 0x13, - 0x7a, 0x3a, 0xff, 0x94, 0xac, 0x66, 0xe0, 0xa7, 0x4f, 0xc9, 0x2c, 0x2c, 0x9c, 0xd9, 0x16, 0x6a, - 0xc0, 0x44, 0xdb, 0x0f, 0xa2, 0x7b, 0x7e, 0x20, 0xd7, 0x17, 0xea, 0x22, 0x2c, 0x31, 0x30, 0x45, - 0x8b, 0x2c, 0x5c, 0xa0, 0x09, 0xc1, 0x09, 0x9a, 0xe8, 0x13, 0x30, 0x1c, 0xd6, 0x9d, 0x26, 0xa9, - 0xdc, 0x9a, 0x9d, 0xc9, 0xbf, 0x7e, 0x6a, 0x1c, 0x25, 0x67, 0x75, 0xf1, 0xa8, 0xf9, 0x1c, 0x05, - 0x4b, 0x72, 0x68, 0x15, 0x06, 0x59, 0xa2, 0x33, 0x16, 0x80, 0x2f, 0x27, 0x7e, 0x6a, 0xca, 0x2a, - 0x9a, 0x9f, 0x4d, 0xac, 0x18, 0xf3, 0xea, 0x74, 0x0f, 0x88, 0x37, 0x83, 0x1f, 0xce, 0x9e, 0xce, - 0xdf, 0x03, 0xe2, 0xa9, 0x71, 0xab, 0xd6, 0x6d, 0x0f, 0x28, 0x24, 0x1c, 0x13, 0xa5, 0x27, 0x33, - 0x3d, 0x4d, 0xcf, 0x74, 0x31, 0xe7, 0xc9, 0x3d, 0x4b, 0xd9, 0xc9, 0x4c, 0x4f, 0x52, 0x4a, 0xc2, - 0xfe, 0xfd, 0xe1, 0x34, 0xcf, 0xc2, 0x5e, 0x99, 0xdf, 0x65, 0xa5, 0x14, 0x90, 0x1f, 0xee, 0x57, - 0xe8, 0x75, 0x8c, 0x2c, 0xf8, 0x17, 0x2c, 0x38, 0xd3, 0xce, 0xfc, 0x10, 0xc1, 0x00, 0xf4, 0x27, - 0x3b, 0xe3, 0x9f, 0xae, 0x82, 0x35, 0x66, 0xc3, 0x71, 0x4e, 0x4b, 0xc9, 0x67, 0x4e, 0xf1, 0x1d, - 0x3f, 0x73, 0xd6, 0x60, 0x84, 0x31, 0x99, 0x3d, 0x72, 0x44, 0x27, 0x5f, 0x7b, 0x8c, 0x95, 0x58, - 0x16, 0x15, 0xb1, 0x22, 0x81, 0x7e, 0xd0, 0x82, 0xf3, 0xc9, 0xae, 0x63, 0xc2, 0xc0, 0x22, 0xc2, - 0x23, 0x7f, 0xe0, 0xae, 0x8a, 0xef, 0x4f, 0xf1, 0xff, 0x06, 0xf2, 0x61, 0x2f, 0x04, 0xdc, 0xbd, - 0x31, 0x54, 0xce, 0x78, 0x61, 0x0f, 0x99, 0x5a, 0x85, 0x3e, 0x5e, 0xd9, 0x2f, 0xc2, 0x58, 0xcb, - 0xef, 0x78, 0x91, 0xb0, 0xfe, 0x11, 0x96, 0x08, 0x4c, 0x03, 0xbf, 0xa6, 0x95, 0x63, 0x03, 0x2b, - 0xf1, 0x36, 0x1f, 0x79, 0xe8, 0xb7, 0xf9, 0x9b, 0x30, 0xe6, 0x69, 0xe6, 0xaa, 0x82, 0x1f, 0xb8, - 0x9c, 0x1f, 0x9d, 0x55, 0x37, 0x6e, 0xe5, 0xbd, 0xd4, 0x4b, 0xb0, 0x41, 0xed, 0x64, 0x1f, 0x7c, - 0x5f, 0xb6, 0x32, 0x98, 0x7a, 0x2e, 0x02, 0xf8, 0xa8, 0x29, 0x02, 0xb8, 0x9c, 0x14, 0x01, 0xa4, - 0x24, 0xca, 0xc6, 0xeb, 0xbf, 0xff, 0xe4, 0x33, 0xfd, 0x86, 0x30, 0xb4, 0x9b, 0x70, 0xb1, 0xd7, - 0xb5, 0xc4, 0xcc, 0xc0, 0x1a, 0x4a, 0x7f, 0x18, 0x9b, 0x81, 0x35, 0x2a, 0x65, 0xcc, 0x20, 0xfd, - 0x06, 0xc7, 0xb1, 0xff, 0xab, 0x05, 0xc5, 0xaa, 0xdf, 0x38, 0x81, 0x07, 0xef, 0xc7, 0x8c, 0x07, - 0xef, 0xe3, 0xd9, 0x17, 0x62, 0x23, 0x57, 0x1e, 0xbe, 0x92, 0x90, 0x87, 0x9f, 0xcf, 0x23, 0xd0, - 0x5d, 0xfa, 0xfd, 0x93, 0x45, 0x18, 0xad, 0xfa, 0x0d, 0x65, 0x83, 0xfd, 0x1b, 0x0f, 0x63, 0x83, - 0x9d, 0x9b, 0x42, 0x41, 0xa3, 0xcc, 0xac, 0xc7, 0xa4, 0xe3, 0xe8, 0x37, 0x98, 0x29, 0xf6, 0x5d, - 0xe2, 0x6e, 0xef, 0x44, 0xa4, 0x91, 0xfc, 0x9c, 0x93, 0x33, 0xc5, 0xfe, 0x2f, 0x16, 0x4c, 0x26, - 0x5a, 0x47, 0x4d, 0x18, 0x6f, 0xea, 0xd2, 0x56, 0xb1, 0x4e, 0x1f, 0x4a, 0x50, 0x2b, 0x4c, 0x59, - 0xb5, 0x22, 0x6c, 0x12, 0x47, 0x0b, 0x00, 0x4a, 0xfd, 0x28, 0xc5, 0x7a, 0x8c, 0xeb, 0x57, 0xfa, - 0xc9, 0x10, 0x6b, 0x18, 0xe8, 0x25, 0x18, 0x8d, 0xfc, 0xb6, 0xdf, 0xf4, 0xb7, 0xf7, 0x6f, 0x10, - 0x19, 0x8e, 0x49, 0x19, 0xa8, 0x6d, 0xc4, 0x20, 0xac, 0xe3, 0xd9, 0x3f, 0x5d, 0xe4, 0x1f, 0xea, - 0x45, 0xee, 0x7b, 0x6b, 0xf2, 0xdd, 0xbd, 0x26, 0xbf, 0x6a, 0xc1, 0x14, 0x6d, 0x9d, 0xd9, 0xc0, - 0xc8, 0xcb, 0x56, 0x45, 0x65, 0xb6, 0xba, 0x44, 0x65, 0xbe, 0x4c, 0xcf, 0xae, 0x86, 0xdf, 0x89, - 0x84, 0x04, 0x4d, 0x3b, 0x9c, 0x68, 0x29, 0x16, 0x50, 0x81, 0x47, 0x82, 0x40, 0xf8, 0xed, 0xe9, - 0x78, 0x24, 0x08, 0xb0, 0x80, 0xca, 0xa0, 0xcd, 0x03, 0xd9, 0x41, 0x9b, 0x79, 0x70, 0x49, 0x61, - 0x2d, 0x21, 0xd8, 0x1e, 0x2d, 0xb8, 0xa4, 0x34, 0xa3, 0x88, 0x71, 0xec, 0x9f, 0x2b, 0xc2, 0x58, - 0xd5, 0x6f, 0xc4, 0x0a, 0xc0, 0x17, 0x0d, 0x05, 0xe0, 0xc5, 0x84, 0x02, 0x70, 0x4a, 0xc7, 0x7d, - 0x4f, 0xdd, 0xf7, 0xf5, 0x52, 0xf7, 0xfd, 0x13, 0x8b, 0xcd, 0x5a, 0x79, 0xbd, 0xc6, 0x4d, 0xaa, - 0xd0, 0x73, 0x30, 0xca, 0x0e, 0x24, 0xe6, 0x28, 0x2a, 0xb5, 0x62, 0x2c, 0x19, 0xd1, 0x7a, 0x5c, - 0x8c, 0x75, 0x1c, 0x74, 0x05, 0x46, 0x42, 0xe2, 0x04, 0xf5, 0x1d, 0x75, 0xc6, 0x09, 0x15, 0x16, - 0x2f, 0xc3, 0x0a, 0x8a, 0xde, 0x88, 0xe3, 0x1a, 0x16, 0xf3, 0x1d, 0xcf, 0xf4, 0xfe, 0xf0, 0x2d, - 0x92, 0x1f, 0xcc, 0xd0, 0xbe, 0x0b, 0x28, 0x8d, 0xdf, 0x47, 0x40, 0xaf, 0x79, 0x33, 0xa0, 0x57, - 0x29, 0x15, 0xcc, 0xeb, 0x2f, 0x2c, 0x98, 0xa8, 0xfa, 0x0d, 0xba, 0x75, 0xbf, 0x99, 0xf6, 0xa9, - 0x1e, 0xd4, 0x75, 0xa8, 0x4b, 0x50, 0xd7, 0x4b, 0x30, 0x58, 0xf5, 0x1b, 0x95, 0x6a, 0x37, 0x87, - 0x6d, 0xfb, 0x6f, 0x59, 0x30, 0x5c, 0xf5, 0x1b, 0x27, 0x20, 0x9c, 0xff, 0xa8, 0x29, 0x9c, 0x7f, - 0x2c, 0x67, 0xdd, 0xe4, 0xc8, 0xe3, 0xff, 0xc6, 0x00, 0x8c, 0xd3, 0x7e, 0xfa, 0xdb, 0x72, 0x2a, - 0x8d, 0x61, 0xb3, 0xfa, 0x18, 0x36, 0xca, 0x0b, 0xfb, 0xcd, 0xa6, 0x7f, 0x2f, 0x39, 0xad, 0xab, - 0xac, 0x14, 0x0b, 0x28, 0x7a, 0x06, 0x46, 0xda, 0x01, 0xd9, 0x73, 0x7d, 0xc1, 0x64, 0x6a, 0xaa, - 0x8e, 0xaa, 0x28, 0xc7, 0x0a, 0x83, 0x3e, 0xce, 0x42, 0xd7, 0xab, 0x93, 0x1a, 0xa9, 0xfb, 0x5e, - 0x83, 0xcb, 0xaf, 0x8b, 0x22, 0x31, 0x83, 0x56, 0x8e, 0x0d, 0x2c, 0x74, 0x17, 0x4a, 0xec, 0x3f, - 0x3b, 0x76, 0x8e, 0x9e, 0xe2, 0x53, 0xa4, 0x7c, 0x13, 0x04, 0x70, 0x4c, 0x0b, 0x3d, 0x0f, 0x10, - 0xc9, 0xe8, 0xdd, 0xa1, 0x08, 0xde, 0xa4, 0x18, 0x72, 0x15, 0xd7, 0x3b, 0xc4, 0x1a, 0x16, 0x7a, - 0x1a, 0x4a, 0x91, 0xe3, 0x36, 0x6f, 0xba, 0x1e, 0x09, 0x99, 0x5c, 0xba, 0x28, 0x33, 0xaf, 0x89, - 0x42, 0x1c, 0xc3, 0x29, 0x43, 0xc4, 0x22, 0x1b, 0xf0, 0x04, 0xc1, 0x23, 0x0c, 0x9b, 0x31, 0x44, - 0x37, 0x55, 0x29, 0xd6, 0x30, 0xd0, 0x0e, 0x9c, 0x73, 0x3d, 0x96, 0xc4, 0x80, 0xd4, 0x76, 0xdd, - 0xf6, 0xc6, 0xcd, 0xda, 0x1d, 0x12, 0xb8, 0x5b, 0xfb, 0x4b, 0x4e, 0x7d, 0x97, 0x78, 0x32, 0x79, - 0xe3, 0xfb, 0x45, 0x17, 0xcf, 0x55, 0xba, 0xe0, 0xe2, 0xae, 0x94, 0xec, 0x97, 0xe1, 0x74, 0xd5, - 0x6f, 0x54, 0xfd, 0x20, 0x5a, 0xf5, 0x83, 0x7b, 0x4e, 0xd0, 0x90, 0x2b, 0x65, 0x5e, 0xe6, 0x79, - 0xa1, 0x47, 0xe1, 0x20, 0x3f, 0x28, 0x8c, 0x6c, 0x63, 0x2f, 0x30, 0xe6, 0xeb, 0x88, 0x1e, 0x36, - 0x75, 0xc6, 0x06, 0xa8, 0x8c, 0x1e, 0xd7, 0x9c, 0x88, 0xa0, 0x5b, 0x2c, 0x53, 0x71, 0x7c, 0x23, - 0x8a, 0xea, 0x4f, 0x69, 0x99, 0x8a, 0x63, 0x60, 0xe6, 0x15, 0x6a, 0xd6, 0xb7, 0xff, 0xdb, 0x20, - 0x3b, 0x1c, 0x13, 0x59, 0x21, 0xd0, 0x67, 0x60, 0x22, 0x24, 0x37, 0x5d, 0xaf, 0x73, 0x5f, 0xca, - 0x04, 0xba, 0xf8, 0x48, 0xd5, 0x56, 0x74, 0x4c, 0x2e, 0x59, 0x34, 0xcb, 0x70, 0x82, 0x1a, 0x6a, - 0xc1, 0xc4, 0x3d, 0xd7, 0x6b, 0xf8, 0xf7, 0x42, 0x49, 0x7f, 0x24, 0x5f, 0xc0, 0x78, 0x97, 0x63, - 0x26, 0xfa, 0x68, 0x34, 0x77, 0xd7, 0x20, 0x86, 0x13, 0xc4, 0xe9, 0x02, 0x0c, 0x3a, 0xde, 0x62, - 0x78, 0x3b, 0x24, 0x81, 0xc8, 0x39, 0xcd, 0x16, 0x20, 0x96, 0x85, 0x38, 0x86, 0xd3, 0x05, 0xc8, - 0xfe, 0x5c, 0x0b, 0xfc, 0x0e, 0x8f, 0xb1, 0x2f, 0x16, 0x20, 0x56, 0xa5, 0x58, 0xc3, 0xa0, 0x1b, - 0x94, 0xfd, 0x5b, 0xf7, 0x3d, 0xec, 0xfb, 0x91, 0xdc, 0xd2, 0x2c, 0xcb, 0xa9, 0x56, 0x8e, 0x0d, - 0x2c, 0xb4, 0x0a, 0x28, 0xec, 0xb4, 0xdb, 0x4d, 0x66, 0x7c, 0xe1, 0x34, 0x19, 0x29, 0xae, 0xf8, - 0x2e, 0xf2, 0xd0, 0xa3, 0xb5, 0x14, 0x14, 0x67, 0xd4, 0xa0, 0x67, 0xf5, 0x96, 0xe8, 0xea, 0x20, - 0xeb, 0x2a, 0x57, 0x46, 0xd4, 0x78, 0x3f, 0x25, 0x0c, 0xad, 0xc0, 0x70, 0xb8, 0x1f, 0xd6, 0x23, - 0x11, 0x43, 0x2d, 0x27, 0xf1, 0x4f, 0x8d, 0xa1, 0x68, 0x79, 0xe7, 0x78, 0x15, 0x2c, 0xeb, 0xa2, - 0x3a, 0xcc, 0x08, 0x8a, 0xcb, 0x3b, 0x8e, 0xa7, 0xd2, 0xa8, 0x70, 0x1b, 0xd4, 0xe7, 0x1e, 0x1c, - 0xcc, 0xcf, 0x88, 0x96, 0x75, 0xf0, 0xe1, 0xc1, 0xfc, 0x99, 0xaa, 0xdf, 0xc8, 0x80, 0xe0, 0x2c, - 0x6a, 0x7c, 0xf1, 0xd5, 0xeb, 0x7e, 0xab, 0x5d, 0x0d, 0xfc, 0x2d, 0xb7, 0x49, 0xba, 0x29, 0x74, - 0x6a, 0x06, 0xa6, 0x58, 0x7c, 0x46, 0x19, 0x4e, 0x50, 0xb3, 0xbf, 0x9d, 0xf1, 0x33, 0x2c, 0xcd, - 0x72, 0xd4, 0x09, 0x08, 0x6a, 0xc1, 0x78, 0x9b, 0x6d, 0x13, 0x11, 0xf9, 0x5e, 0xac, 0xf5, 0x17, - 0xfb, 0x14, 0x4c, 0xdc, 0xa3, 0xd7, 0x80, 0x12, 0x1c, 0xb2, 0x17, 0x5f, 0x55, 0x27, 0x87, 0x4d, - 0xea, 0xf6, 0x8f, 0x3d, 0xc6, 0x6e, 0xc4, 0x1a, 0x97, 0x36, 0x0c, 0x0b, 0x93, 0x77, 0xf1, 0xb4, - 0x9a, 0xcb, 0x17, 0x7b, 0xc5, 0xd3, 0x22, 0xcc, 0xe6, 0xb1, 0xac, 0x8b, 0x3e, 0x0d, 0x13, 0xf4, - 0xa5, 0xa2, 0xe5, 0x2f, 0x39, 0x95, 0x1f, 0x9a, 0x20, 0x4e, 0x5b, 0xa2, 0x65, 0xc5, 0xd0, 0x2b, - 0xe3, 0x04, 0x31, 0xf4, 0x06, 0x33, 0xce, 0x30, 0x53, 0xa3, 0xf4, 0x20, 0xad, 0xdb, 0x61, 0x48, - 0xb2, 0x1a, 0x91, 0xbc, 0xb4, 0x2b, 0xf6, 0xa3, 0x4d, 0xbb, 0x82, 0x6e, 0xc2, 0xb8, 0xc8, 0x35, - 0x2c, 0x56, 0x6e, 0xd1, 0x90, 0xc6, 0x8d, 0x63, 0x1d, 0x78, 0x98, 0x2c, 0xc0, 0x66, 0x65, 0xb4, - 0x0d, 0xe7, 0xb5, 0xdc, 0x3f, 0xd7, 0x02, 0x87, 0xa9, 0xd4, 0x5d, 0x76, 0x9c, 0x6a, 0x77, 0xf5, - 0x13, 0x0f, 0x0e, 0xe6, 0xcf, 0x6f, 0x74, 0x43, 0xc4, 0xdd, 0xe9, 0xa0, 0x5b, 0x70, 0x9a, 0x3b, - 0xd6, 0x96, 0x89, 0xd3, 0x68, 0xba, 0x9e, 0x62, 0x06, 0xf8, 0x96, 0x3f, 0xfb, 0xe0, 0x60, 0xfe, - 0xf4, 0x62, 0x16, 0x02, 0xce, 0xae, 0x87, 0x3e, 0x0a, 0xa5, 0x86, 0x17, 0x8a, 0x31, 0x18, 0x32, - 0xd2, 0x2b, 0x95, 0xca, 0xeb, 0x35, 0xf5, 0xfd, 0xf1, 0x1f, 0x1c, 0x57, 0x40, 0xdb, 0x5c, 0x62, - 0xab, 0x04, 0x24, 0xc3, 0xa9, 0x90, 0x40, 0x49, 0x51, 0x9b, 0xe1, 0x5a, 0xc7, 0x55, 0x15, 0xca, - 0xe2, 0xdc, 0xf0, 0xba, 0x33, 0x08, 0xa3, 0xd7, 0x01, 0xd1, 0x17, 0x84, 0x5b, 0x27, 0x8b, 0x75, - 0x96, 0x56, 0x81, 0x09, 0xb8, 0x47, 0x4c, 0x67, 0xaf, 0x5a, 0x0a, 0x03, 0x67, 0xd4, 0x42, 0xd7, - 0xe9, 0xa9, 0xa2, 0x97, 0x8a, 0x53, 0x4b, 0x25, 0xc3, 0x2b, 0x93, 0x76, 0x40, 0xea, 0x4e, 0x44, - 0x1a, 0x26, 0x45, 0x9c, 0xa8, 0x87, 0x1a, 0x70, 0xce, 0xe9, 0x44, 0x3e, 0x13, 0x86, 0x9b, 0xa8, - 0x1b, 0xfe, 0x2e, 0xf1, 0x98, 0x1e, 0x6a, 0x64, 0xe9, 0x22, 0xe5, 0x36, 0x16, 0xbb, 0xe0, 0xe1, - 0xae, 0x54, 0x28, 0x97, 0xa8, 0xb2, 0xdf, 0x82, 0x19, 0xe9, 0x28, 0x23, 0x03, 0xee, 0x4b, 0x30, - 0xba, 0xe3, 0x87, 0xd1, 0x3a, 0x89, 0xee, 0xf9, 0xc1, 0xae, 0x88, 0x57, 0x19, 0xc7, 0x38, 0x8e, - 0x41, 0x58, 0xc7, 0xa3, 0xcf, 0x40, 0x66, 0x25, 0x51, 0x29, 0x33, 0x05, 0xf5, 0x48, 0x7c, 0xc6, - 0x5c, 0xe7, 0xc5, 0x58, 0xc2, 0x25, 0x6a, 0xa5, 0xba, 0xcc, 0x94, 0xcd, 0x09, 0xd4, 0x4a, 0x75, - 0x19, 0x4b, 0x38, 0x5d, 0xae, 0xe1, 0x8e, 0x13, 0x90, 0x6a, 0xe0, 0xd7, 0x49, 0xa8, 0x45, 0xd6, - 0x7e, 0x9c, 0x47, 0xe3, 0xa4, 0xcb, 0xb5, 0x96, 0x85, 0x80, 0xb3, 0xeb, 0x21, 0x92, 0xce, 0x7b, - 0x35, 0x91, 0xaf, 0x25, 0x48, 0xf3, 0x33, 0x7d, 0xa6, 0xbe, 0xf2, 0x60, 0x4a, 0x65, 0xdc, 0xe2, - 0xf1, 0x37, 0xc3, 0xd9, 0x49, 0xb6, 0xb6, 0xfb, 0x0f, 0xde, 0xa9, 0xf4, 0x2e, 0x95, 0x04, 0x25, - 0x9c, 0xa2, 0x6d, 0x04, 0xb3, 0x9a, 0xea, 0x99, 0x0e, 0xf9, 0x2a, 0x94, 0xc2, 0xce, 0x66, 0xc3, - 0x6f, 0x39, 0xae, 0xc7, 0x94, 0xcd, 0xda, 0x7b, 0xa4, 0x26, 0x01, 0x38, 0xc6, 0x41, 0xab, 0x30, - 0xe2, 0x48, 0xa5, 0x0a, 0xca, 0x8f, 0x81, 0xa2, 0x54, 0x29, 0x3c, 0x2c, 0x80, 0x54, 0xa3, 0xa8, - 0xba, 0xe8, 0x55, 0x18, 0x17, 0x8e, 0xa1, 0x22, 0xd9, 0xe3, 0x8c, 0xe9, 0xbd, 0x53, 0xd3, 0x81, - 0xd8, 0xc4, 0x45, 0xb7, 0x61, 0x34, 0xf2, 0x9b, 0xcc, 0x05, 0x85, 0xb2, 0x79, 0x67, 0xf2, 0xe3, - 0xa8, 0x6d, 0x28, 0x34, 0x5d, 0x9e, 0xa9, 0xaa, 0x62, 0x9d, 0x0e, 0xda, 0xe0, 0xeb, 0x9d, 0x45, - 0x98, 0x26, 0xe1, 0xec, 0x63, 0xf9, 0x77, 0x92, 0x0a, 0x44, 0x6d, 0x6e, 0x07, 0x51, 0x13, 0xeb, - 0x64, 0xd0, 0x35, 0x98, 0x6e, 0x07, 0xae, 0xcf, 0xd6, 0x84, 0xd2, 0xa7, 0xcd, 0x9a, 0xe9, 0x6d, - 0xaa, 0x49, 0x04, 0x9c, 0xae, 0xc3, 0xfc, 0x7a, 0x45, 0xe1, 0xec, 0x59, 0x9e, 0x0f, 0x9a, 0x3f, - 0xef, 0x78, 0x19, 0x56, 0x50, 0xb4, 0xc6, 0x4e, 0x62, 0x2e, 0x99, 0x98, 0x9d, 0xcb, 0x0f, 0xbb, - 0xa2, 0x4b, 0x30, 0x38, 0xf3, 0xaa, 0xfe, 0xe2, 0x98, 0x02, 0x6a, 0x68, 0x89, 0x03, 0xe9, 0x8b, - 0x21, 0x9c, 0x3d, 0xd7, 0xc5, 0x54, 0x2d, 0xf1, 0xbc, 0x88, 0x19, 0x02, 0xa3, 0x38, 0xc4, 0x09, - 0x9a, 0xe8, 0xe3, 0x30, 0x25, 0xc2, 0xbc, 0xc5, 0xc3, 0x74, 0x3e, 0x36, 0xec, 0xc5, 0x09, 0x18, - 0x4e, 0x61, 0xf3, 0xc8, 0xfb, 0xce, 0x66, 0x93, 0x88, 0xa3, 0xef, 0xa6, 0xeb, 0xed, 0x86, 0xb3, - 0x17, 0xd8, 0xf9, 0x20, 0x22, 0xef, 0x27, 0xa1, 0x38, 0xa3, 0x06, 0xda, 0x80, 0xa9, 0x76, 0x40, - 0x48, 0x8b, 0x31, 0xfa, 0xe2, 0x3e, 0x9b, 0xe7, 0x6e, 0xed, 0xb4, 0x27, 0xd5, 0x04, 0xec, 0x30, - 0xa3, 0x0c, 0xa7, 0x28, 0xa0, 0x7b, 0x30, 0xe2, 0xef, 0x91, 0x60, 0x87, 0x38, 0x8d, 0xd9, 0x8b, - 0x5d, 0x0c, 0xcd, 0xc5, 0xe5, 0x76, 0x4b, 0xe0, 0x26, 0x74, 0xf0, 0xb2, 0xb8, 0xb7, 0x0e, 0x5e, - 0x36, 0x86, 0x7e, 0xc8, 0x82, 0xb3, 0x52, 0x6c, 0x5f, 0x6b, 0xd3, 0x51, 0x5f, 0xf6, 0xbd, 0x30, - 0x0a, 0xb8, 0x23, 0xf6, 0x13, 0xf9, 0xce, 0xc9, 0x1b, 0x39, 0x95, 0x94, 0x70, 0xf4, 0x6c, 0x1e, - 0x46, 0x88, 0xf3, 0x5b, 0x44, 0xcb, 0x30, 0x1d, 0x92, 0x48, 0x1e, 0x46, 0x8b, 0xe1, 0xea, 0x1b, - 0xe5, 0xf5, 0xd9, 0x4b, 0xdc, 0x8b, 0x9c, 0x6e, 0x86, 0x5a, 0x12, 0x88, 0xd3, 0xf8, 0x73, 0xdf, - 0x0a, 0xd3, 0xa9, 0xeb, 0xff, 0x28, 0x19, 0x45, 0xe6, 0x76, 0x61, 0xdc, 0x18, 0xe2, 0x47, 0xaa, - 0xc3, 0xfd, 0x17, 0xc3, 0x50, 0x52, 0xfa, 0x3d, 0x74, 0xd5, 0x54, 0xdb, 0x9e, 0x4d, 0xaa, 0x6d, - 0x47, 0xe8, 0xbb, 0x5e, 0xd7, 0xd4, 0x6e, 0x64, 0xc4, 0xce, 0xca, 0xdb, 0xd0, 0xfd, 0x3b, 0x45, - 0x6b, 0xe2, 0xda, 0x62, 0xdf, 0xfa, 0xdf, 0x81, 0xae, 0x12, 0xe0, 0x6b, 0x30, 0xed, 0xf9, 0x8c, - 0xe7, 0x24, 0x0d, 0xc9, 0x50, 0x30, 0xbe, 0xa1, 0xa4, 0x07, 0xa3, 0x48, 0x20, 0xe0, 0x74, 0x1d, - 0xda, 0x20, 0xbf, 0xf8, 0x93, 0x22, 0x67, 0xce, 0x17, 0x60, 0x01, 0x45, 0x97, 0x60, 0xb0, 0xed, - 0x37, 0x2a, 0x55, 0xc1, 0x6f, 0x6a, 0xa9, 0x6e, 0x1b, 0x95, 0x2a, 0xe6, 0x30, 0xb4, 0x08, 0x43, - 0xec, 0x47, 0x38, 0x3b, 0x96, 0x1f, 0x75, 0x80, 0xd5, 0xd0, 0xf2, 0xb5, 0xb0, 0x0a, 0x58, 0x54, - 0x64, 0xa2, 0x2f, 0xca, 0xa4, 0x33, 0xd1, 0xd7, 0xf0, 0x43, 0x8a, 0xbe, 0x24, 0x01, 0x1c, 0xd3, - 0x42, 0xf7, 0xe1, 0xb4, 0xf1, 0x30, 0xe2, 0x4b, 0x84, 0x84, 0xc2, 0xf3, 0xf9, 0x52, 0xd7, 0x17, - 0x91, 0xd0, 0x17, 0x9f, 0x17, 0x9d, 0x3e, 0x5d, 0xc9, 0xa2, 0x84, 0xb3, 0x1b, 0x40, 0x4d, 0x98, - 0xae, 0xa7, 0x5a, 0x1d, 0xe9, 0xbf, 0x55, 0x35, 0xa1, 0xe9, 0x16, 0xd3, 0x84, 0xd1, 0xab, 0x30, - 0xf2, 0x96, 0x1f, 0xb2, 0xb3, 0x5a, 0xf0, 0xc8, 0xd2, 0x6d, 0x76, 0xe4, 0x8d, 0x5b, 0x35, 0x56, - 0x7e, 0x78, 0x30, 0x3f, 0x5a, 0xf5, 0x1b, 0xf2, 0x2f, 0x56, 0x15, 0xd0, 0xf7, 0x5a, 0x30, 0x97, - 0x7e, 0x79, 0xa9, 0x4e, 0x8f, 0xf7, 0xdf, 0x69, 0x5b, 0x34, 0x3a, 0xb7, 0x92, 0x4b, 0x0e, 0x77, - 0x69, 0xca, 0xfe, 0x65, 0xae, 0xdb, 0x15, 0x1a, 0x20, 0x12, 0x76, 0x9a, 0x27, 0x91, 0xa6, 0x72, - 0xc5, 0x50, 0x4e, 0x3d, 0xb4, 0xfd, 0xc0, 0xaf, 0x5b, 0xcc, 0x7e, 0xe0, 0x04, 0x1d, 0x05, 0xde, - 0x80, 0x91, 0x48, 0x26, 0x1b, 0xed, 0x92, 0x59, 0x53, 0xeb, 0x14, 0xb3, 0xa1, 0x50, 0x1c, 0xab, - 0xca, 0x2b, 0xaa, 0xc8, 0xd8, 0xff, 0x90, 0xcf, 0x80, 0x84, 0x9c, 0x80, 0x0e, 0xa0, 0x6c, 0xea, - 0x00, 0xe6, 0x7b, 0x7c, 0x41, 0x8e, 0x2e, 0xe0, 0x1f, 0x98, 0xfd, 0x66, 0x92, 0x9a, 0x77, 0xbb, - 0xe1, 0x8a, 0xfd, 0x23, 0x16, 0x9c, 0xca, 0xb2, 0xf4, 0xa4, 0xaf, 0x0c, 0x2e, 0x27, 0x52, 0x86, - 0x3c, 0x6a, 0x04, 0xef, 0x88, 0x72, 0xac, 0x30, 0xfa, 0xce, 0x76, 0x75, 0xb4, 0xe8, 0xaf, 0xb7, - 0x60, 0xbc, 0x1a, 0x10, 0xed, 0x42, 0x7b, 0x8d, 0xbb, 0x51, 0xf3, 0xfe, 0x3c, 0x73, 0x64, 0x17, - 0x6a, 0xfb, 0x67, 0x0a, 0x70, 0x8a, 0x6b, 0xe2, 0x17, 0xf7, 0x7c, 0xb7, 0x51, 0xf5, 0x1b, 0x22, - 0x53, 0xd9, 0xa7, 0x60, 0xac, 0xad, 0x09, 0xf7, 0xba, 0x45, 0x32, 0xd4, 0x85, 0x80, 0xb1, 0x38, - 0x42, 0x2f, 0xc5, 0x06, 0x2d, 0xd4, 0x80, 0x31, 0xb2, 0xe7, 0xd6, 0x95, 0x3a, 0xb7, 0x70, 0xe4, - 0xcb, 0x45, 0xb5, 0xb2, 0xa2, 0xd1, 0xc1, 0x06, 0xd5, 0x47, 0x90, 0x83, 0xd6, 0xfe, 0x51, 0x0b, - 0x1e, 0xcb, 0x89, 0x7b, 0x48, 0x9b, 0xbb, 0xc7, 0x6c, 0x1e, 0x44, 0x3a, 0x4b, 0xd5, 0x1c, 0xb7, - 0x84, 0xc0, 0x02, 0x8a, 0x3e, 0x01, 0xc0, 0x2d, 0x19, 0xe8, 0x33, 0xb7, 0x57, 0x80, 0x38, 0x23, - 0xb6, 0x95, 0x16, 0xa6, 0x48, 0xd6, 0xc7, 0x1a, 0x2d, 0xfb, 0xa7, 0x8a, 0x30, 0xc8, 0xd3, 0x89, - 0xaf, 0xc2, 0xf0, 0x0e, 0xcf, 0xdf, 0xd0, 0x4f, 0xaa, 0x88, 0x58, 0x00, 0xc1, 0x0b, 0xb0, 0xac, - 0x8c, 0xd6, 0x60, 0x86, 0xe7, 0xbf, 0x68, 0x96, 0x49, 0xd3, 0xd9, 0x97, 0xd2, 0x32, 0x9e, 0x3b, - 0x52, 0x49, 0x0d, 0x2b, 0x69, 0x14, 0x9c, 0x55, 0x0f, 0xbd, 0x06, 0x13, 0xf4, 0xf5, 0xe2, 0x77, - 0x22, 0x49, 0x89, 0x67, 0xbe, 0x50, 0xcf, 0xa5, 0x0d, 0x03, 0x8a, 0x13, 0xd8, 0xf4, 0x01, 0xdd, - 0x4e, 0xc9, 0x05, 0x07, 0xe3, 0x07, 0xb4, 0x29, 0x0b, 0x34, 0x71, 0x99, 0x89, 0x67, 0x87, 0x19, - 0xb4, 0x6e, 0xec, 0x04, 0x24, 0xdc, 0xf1, 0x9b, 0x0d, 0xc6, 0x68, 0x0d, 0x6a, 0x26, 0x9e, 0x09, - 0x38, 0x4e, 0xd5, 0xa0, 0x54, 0xb6, 0x1c, 0xb7, 0xd9, 0x09, 0x48, 0x4c, 0x65, 0xc8, 0xa4, 0xb2, - 0x9a, 0x80, 0xe3, 0x54, 0x0d, 0xba, 0x8e, 0x4e, 0x57, 0x03, 0x9f, 0x1e, 0x5e, 0x32, 0x98, 0x8b, - 0xb2, 0xdb, 0x1d, 0x96, 0x7e, 0xa7, 0x5d, 0xc2, 0x9e, 0x09, 0xcb, 0x46, 0x4e, 0xc1, 0x50, 0xda, - 0xd7, 0x84, 0xc7, 0xa9, 0xa4, 0x82, 0x9e, 0x83, 0x51, 0x91, 0xd5, 0x80, 0x99, 0x97, 0xf2, 0xa9, - 0x63, 0x46, 0x06, 0xe5, 0xb8, 0x18, 0xeb, 0x38, 0xf6, 0xf7, 0x15, 0x60, 0x26, 0xc3, 0x3f, 0x80, - 0x1f, 0x55, 0xdb, 0x6e, 0x18, 0xa9, 0xfc, 0x78, 0xda, 0x51, 0xc5, 0xcb, 0xb1, 0xc2, 0xa0, 0xfb, - 0x81, 0x1f, 0x86, 0xc9, 0x03, 0x50, 0xd8, 0xdf, 0x0a, 0xe8, 0x11, 0x33, 0xcd, 0x5d, 0x84, 0x81, - 0x4e, 0x48, 0x64, 0xc0, 0x42, 0x75, 0x7e, 0x33, 0xdd, 0x13, 0x83, 0x50, 0xf6, 0x78, 0x5b, 0xa9, - 0x71, 0x34, 0xf6, 0x98, 0x2b, 0x72, 0x38, 0x8c, 0x76, 0x2e, 0x22, 0x9e, 0xe3, 0x45, 0x82, 0x89, - 0x8e, 0x23, 0x6f, 0xb1, 0x52, 0x2c, 0xa0, 0xf6, 0x97, 0x8a, 0x70, 0x36, 0xd7, 0x63, 0x88, 0x76, - 0xbd, 0xe5, 0x7b, 0x6e, 0xe4, 0x2b, 0xeb, 0x0d, 0x1e, 0x6d, 0x8b, 0xb4, 0x77, 0xd6, 0x44, 0x39, - 0x56, 0x18, 0xe8, 0x32, 0x0c, 0x32, 0xc9, 0x55, 0x2a, 0x53, 0xe0, 0x52, 0x99, 0x87, 0x5f, 0xe1, - 0xe0, 0xbe, 0xb3, 0xb0, 0x5e, 0x82, 0x81, 0xb6, 0xef, 0x37, 0x93, 0x87, 0x16, 0xed, 0xae, 0xef, - 0x37, 0x31, 0x03, 0xa2, 0x0f, 0x88, 0xf1, 0x4a, 0x98, 0x2b, 0x60, 0xa7, 0xe1, 0x87, 0xda, 0xa0, - 0x3d, 0x05, 0xc3, 0xbb, 0x64, 0x3f, 0x70, 0xbd, 0xed, 0xa4, 0x19, 0xcb, 0x0d, 0x5e, 0x8c, 0x25, - 0xdc, 0x4c, 0xfa, 0x34, 0x7c, 0xdc, 0xe9, 0x53, 0x47, 0x7a, 0x5e, 0x81, 0x3f, 0x50, 0x84, 0x49, - 0xbc, 0x54, 0x7e, 0x6f, 0x22, 0x6e, 0xa7, 0x27, 0xe2, 0xb8, 0xd3, 0xa7, 0xf6, 0x9e, 0x8d, 0x5f, - 0xb0, 0x60, 0x92, 0xe5, 0x56, 0x10, 0x71, 0x9a, 0x5c, 0xdf, 0x3b, 0x01, 0x16, 0xef, 0x12, 0x0c, - 0x06, 0xb4, 0xd1, 0x64, 0x8a, 0x40, 0xd6, 0x13, 0xcc, 0x61, 0xe8, 0x1c, 0x0c, 0xb0, 0x2e, 0xd0, - 0xc9, 0x1b, 0xe3, 0xd9, 0x95, 0xca, 0x4e, 0xe4, 0x60, 0x56, 0xca, 0x82, 0x8f, 0x60, 0xd2, 0x6e, - 0xba, 0xbc, 0xd3, 0xb1, 0x5e, 0xf1, 0xdd, 0xe1, 0x4b, 0x9c, 0xd9, 0xb5, 0x77, 0x16, 0x7c, 0x24, - 0x9b, 0x64, 0xf7, 0xe7, 0xd3, 0x1f, 0x17, 0xe0, 0x42, 0x66, 0xbd, 0xbe, 0x83, 0x8f, 0x74, 0xaf, - 0xfd, 0x28, 0x63, 0xf0, 0x17, 0x4f, 0xd0, 0x48, 0x70, 0xa0, 0x5f, 0x0e, 0x73, 0xb0, 0x8f, 0x98, - 0x20, 0x99, 0x43, 0xf6, 0x2e, 0x89, 0x09, 0x92, 0xd9, 0xb7, 0x9c, 0xe7, 0xdf, 0x5f, 0x16, 0x72, - 0xbe, 0x85, 0x3d, 0x04, 0xaf, 0xd0, 0x73, 0x86, 0x01, 0x43, 0xc1, 0x31, 0x8f, 0xf1, 0x33, 0x86, - 0x97, 0x61, 0x05, 0x45, 0x8b, 0x30, 0xd9, 0x72, 0x3d, 0x7a, 0xf8, 0xec, 0x9b, 0x8c, 0x9f, 0x0a, - 0xd9, 0xb4, 0x66, 0x82, 0x71, 0x12, 0x1f, 0xb9, 0x5a, 0xbc, 0x90, 0x42, 0x7e, 0xd2, 0xed, 0xdc, - 0xde, 0x2e, 0x98, 0x3a, 0x57, 0x35, 0x8a, 0x19, 0xb1, 0x43, 0xd6, 0xb4, 0xf7, 0x7f, 0xb1, 0xff, - 0xf7, 0xff, 0x58, 0xf6, 0xdb, 0x7f, 0xee, 0x55, 0x18, 0x7f, 0x68, 0x81, 0xaf, 0xfd, 0xd5, 0x22, - 0x3c, 0xde, 0x65, 0xdb, 0xf3, 0xb3, 0xde, 0x98, 0x03, 0xed, 0xac, 0x4f, 0xcd, 0x43, 0x15, 0x4e, - 0x6d, 0x75, 0x9a, 0xcd, 0x7d, 0x66, 0x87, 0x4f, 0x1a, 0x12, 0x43, 0xf0, 0x94, 0xe7, 0x64, 0x3e, - 0xab, 0xd5, 0x0c, 0x1c, 0x9c, 0x59, 0x93, 0x32, 0xf4, 0xf4, 0x26, 0xd9, 0x57, 0xa4, 0x12, 0x0c, - 0x3d, 0xd6, 0x81, 0xd8, 0xc4, 0x45, 0xd7, 0x60, 0xda, 0xd9, 0x73, 0x5c, 0x1e, 0x74, 0x55, 0x12, - 0xe0, 0x1c, 0xbd, 0x92, 0xd3, 0x2d, 0x26, 0x11, 0x70, 0xba, 0x0e, 0x7a, 0x1d, 0x90, 0x2f, 0x72, - 0xff, 0x5f, 0x23, 0x9e, 0x50, 0x8d, 0xb1, 0xb9, 0x2b, 0xc6, 0x47, 0xc2, 0xad, 0x14, 0x06, 0xce, - 0xa8, 0x95, 0x88, 0xbf, 0x31, 0x94, 0x1f, 0x7f, 0xa3, 0xfb, 0xb9, 0xd8, 0x33, 0xfd, 0xc3, 0x7f, - 0xb4, 0xe8, 0xf5, 0xc5, 0x99, 0x7c, 0x33, 0x8c, 0xdc, 0xab, 0xcc, 0xb4, 0x8d, 0xcb, 0xf0, 0xb4, - 0xa8, 0x11, 0xa7, 0x35, 0xd3, 0xb6, 0x18, 0x88, 0x4d, 0x5c, 0xbe, 0x20, 0xc2, 0xd8, 0x59, 0xd1, - 0x60, 0xf1, 0x45, 0xac, 0x1b, 0x85, 0x81, 0x3e, 0x09, 0xc3, 0x0d, 0x77, 0xcf, 0x0d, 0xfd, 0x40, - 0xac, 0xf4, 0x23, 0xaa, 0x0b, 0xe2, 0x73, 0xb0, 0xcc, 0xc9, 0x60, 0x49, 0xcf, 0xfe, 0x81, 0x02, - 0x8c, 0xcb, 0x16, 0xdf, 0xe8, 0xf8, 0x91, 0x73, 0x02, 0xd7, 0xf2, 0x35, 0xe3, 0x5a, 0xfe, 0x40, - 0xb7, 0x80, 0x3f, 0xac, 0x4b, 0xb9, 0xd7, 0xf1, 0xad, 0xc4, 0x75, 0xfc, 0x64, 0x6f, 0x52, 0xdd, - 0xaf, 0xe1, 0x7f, 0x64, 0xc1, 0xb4, 0x81, 0x7f, 0x02, 0xb7, 0xc1, 0xaa, 0x79, 0x1b, 0x3c, 0xd1, - 0xf3, 0x1b, 0x72, 0x6e, 0x81, 0xef, 0x2e, 0x26, 0xfa, 0xce, 0x4e, 0xff, 0xb7, 0x60, 0x60, 0xc7, - 0x09, 0x1a, 0xdd, 0x02, 0x9c, 0xa7, 0x2a, 0x2d, 0x5c, 0x77, 0x02, 0xa1, 0x1b, 0x7c, 0x46, 0xe5, - 0xbc, 0x76, 0x82, 0xde, 0x7a, 0x41, 0xd6, 0x14, 0x7a, 0x19, 0x86, 0xc2, 0xba, 0xdf, 0x56, 0x96, - 0xf3, 0x17, 0x79, 0x3e, 0x6c, 0x5a, 0x72, 0x78, 0x30, 0x8f, 0xcc, 0xe6, 0x68, 0x31, 0x16, 0xf8, - 0xe8, 0x53, 0x30, 0xce, 0x7e, 0x29, 0x43, 0x9d, 0x62, 0x7e, 0x32, 0xa4, 0x9a, 0x8e, 0xc8, 0xad, - 0xd8, 0x8c, 0x22, 0x6c, 0x92, 0x9a, 0xdb, 0x86, 0x92, 0xfa, 0xac, 0x47, 0xaa, 0x8f, 0xfb, 0xb7, - 0x45, 0x98, 0xc9, 0x58, 0x73, 0x28, 0x34, 0x66, 0xe2, 0xb9, 0x3e, 0x97, 0xea, 0x3b, 0x9c, 0x8b, - 0x90, 0xbd, 0x86, 0x1a, 0x62, 0x6d, 0xf5, 0xdd, 0xe8, 0xed, 0x90, 0x24, 0x1b, 0xa5, 0x45, 0xbd, - 0x1b, 0xa5, 0x8d, 0x9d, 0xd8, 0x50, 0xd3, 0x86, 0x54, 0x4f, 0x1f, 0xe9, 0x9c, 0xfe, 0x59, 0x11, - 0x4e, 0x65, 0xc5, 0x20, 0x43, 0x9f, 0x4f, 0x24, 0xc6, 0x7b, 0xb1, 0xdf, 0xe8, 0x65, 0x3c, 0x5b, - 0x1e, 0x97, 0x01, 0x2f, 0x2d, 0x98, 0xa9, 0xf2, 0x7a, 0x0e, 0xb3, 0x68, 0x93, 0x39, 0xe2, 0x07, - 0x3c, 0xa1, 0xa1, 0x3c, 0x3e, 0x3e, 0xdc, 0x77, 0x07, 0x44, 0x26, 0xc4, 0x30, 0x61, 0x04, 0x20, - 0x8b, 0x7b, 0x1b, 0x01, 0xc8, 0x96, 0xe7, 0x5c, 0x18, 0xd5, 0xbe, 0xe6, 0x91, 0xce, 0xf8, 0x2e, - 0xbd, 0xad, 0xb4, 0x7e, 0x3f, 0xd2, 0x59, 0xff, 0x51, 0x0b, 0x12, 0x76, 0xe1, 0x4a, 0x2c, 0x66, - 0xe5, 0x8a, 0xc5, 0x2e, 0xc2, 0x40, 0xe0, 0x37, 0x49, 0x32, 0x0f, 0x1d, 0xf6, 0x9b, 0x04, 0x33, - 0x08, 0xc5, 0x88, 0x62, 0x61, 0xc7, 0x98, 0xfe, 0x90, 0x13, 0x4f, 0xb4, 0x4b, 0x30, 0xd8, 0x24, - 0x7b, 0xa4, 0x99, 0x4c, 0x17, 0x72, 0x93, 0x16, 0x62, 0x0e, 0xb3, 0x7f, 0x61, 0x00, 0xce, 0x77, - 0x0d, 0x65, 0x41, 0x9f, 0x43, 0xdb, 0x4e, 0x44, 0xee, 0x39, 0xfb, 0xc9, 0xb8, 0xfe, 0xd7, 0x78, - 0x31, 0x96, 0x70, 0xe6, 0xb9, 0xc3, 0xc3, 0xf3, 0x26, 0x84, 0x88, 0x22, 0x2a, 0xaf, 0x80, 0x9a, - 0x42, 0xa9, 0xe2, 0x71, 0x08, 0xa5, 0x9e, 0x07, 0x08, 0xc3, 0x26, 0xb7, 0x9e, 0x69, 0x08, 0x97, - 0xa0, 0x38, 0x8c, 0x73, 0xed, 0xa6, 0x80, 0x60, 0x0d, 0x0b, 0x95, 0x61, 0xaa, 0x1d, 0xf8, 0x11, - 0x97, 0xc9, 0x96, 0xb9, 0x81, 0xd9, 0xa0, 0x19, 0x45, 0xa0, 0x9a, 0x80, 0xe3, 0x54, 0x0d, 0xf4, - 0x12, 0x8c, 0x8a, 0xc8, 0x02, 0x55, 0xdf, 0x6f, 0x0a, 0x31, 0x90, 0xb2, 0xb9, 0xaa, 0xc5, 0x20, - 0xac, 0xe3, 0x69, 0xd5, 0x98, 0xa0, 0x77, 0x38, 0xb3, 0x1a, 0x17, 0xf6, 0x6a, 0x78, 0x89, 0x78, - 0x84, 0x23, 0x7d, 0xc5, 0x23, 0x8c, 0x05, 0x63, 0xa5, 0xbe, 0x75, 0x5b, 0xd0, 0x53, 0x94, 0xf4, - 0xb3, 0x03, 0x30, 0x23, 0x16, 0xce, 0xa3, 0x5e, 0x2e, 0xb7, 0xd3, 0xcb, 0xe5, 0x38, 0x44, 0x67, - 0xef, 0xad, 0x99, 0x93, 0x5e, 0x33, 0x3f, 0x68, 0x81, 0xc9, 0x5e, 0xa1, 0xff, 0x3b, 0x37, 0x31, - 0xca, 0x4b, 0xb9, 0xec, 0x5a, 0x43, 0x5e, 0x20, 0xef, 0x30, 0x45, 0x8a, 0xfd, 0xef, 0x2d, 0x78, - 0xa2, 0x27, 0x45, 0xb4, 0x02, 0x25, 0xc6, 0x03, 0x6a, 0xaf, 0xb3, 0x27, 0x95, 0x01, 0xaa, 0x04, - 0xe4, 0xb0, 0xa4, 0x71, 0x4d, 0xb4, 0x92, 0xca, 0x40, 0xf3, 0x54, 0x46, 0x06, 0x9a, 0xd3, 0xc6, - 0xf0, 0x3c, 0x64, 0x0a, 0x9a, 0xef, 0xa7, 0x37, 0x8e, 0xe1, 0xfc, 0x81, 0x3e, 0x6c, 0x88, 0xfd, - 0xec, 0x84, 0xd8, 0x0f, 0x99, 0xd8, 0xda, 0x1d, 0xf2, 0x71, 0x98, 0x62, 0x21, 0x87, 0x98, 0x39, - 0xb4, 0x70, 0x4b, 0x29, 0xc4, 0x26, 0x8f, 0x37, 0x13, 0x30, 0x9c, 0xc2, 0xb6, 0xff, 0xa8, 0x08, - 0x43, 0x7c, 0xfb, 0x9d, 0xc0, 0x9b, 0xf0, 0x69, 0x28, 0xb9, 0xad, 0x56, 0x87, 0x27, 0x15, 0x19, - 0xe4, 0xbe, 0xa8, 0x74, 0x9e, 0x2a, 0xb2, 0x10, 0xc7, 0x70, 0xb4, 0x2a, 0x24, 0xce, 0x5d, 0xa2, - 0x1a, 0xf2, 0x8e, 0x2f, 0x94, 0x9d, 0xc8, 0xe1, 0x0c, 0x8e, 0xba, 0x67, 0x63, 0xd9, 0x34, 0xfa, - 0x0c, 0x40, 0x18, 0x05, 0xae, 0xb7, 0x4d, 0xcb, 0x44, 0x10, 0xcf, 0x0f, 0x76, 0xa1, 0x56, 0x53, - 0xc8, 0x9c, 0x66, 0x7c, 0xe6, 0x28, 0x00, 0xd6, 0x28, 0xa2, 0x05, 0xe3, 0xa6, 0x9f, 0x4b, 0xcc, - 0x1d, 0x70, 0xaa, 0xf1, 0x9c, 0xcd, 0x7d, 0x04, 0x4a, 0x8a, 0x78, 0x2f, 0xf9, 0xd3, 0x98, 0xce, - 0x16, 0x7d, 0x0c, 0x26, 0x13, 0x7d, 0x3b, 0x92, 0xf8, 0xea, 0x17, 0x2d, 0x98, 0xe4, 0x9d, 0x59, - 0xf1, 0xf6, 0xc4, 0x6d, 0xf0, 0x36, 0x9c, 0x6a, 0x66, 0x9c, 0xca, 0x62, 0xfa, 0xfb, 0x3f, 0xc5, - 0x95, 0xb8, 0x2a, 0x0b, 0x8a, 0x33, 0xdb, 0x40, 0x57, 0xe8, 0x8e, 0xa3, 0xa7, 0xae, 0xd3, 0x14, - 0xae, 0xa9, 0x63, 0x7c, 0xb7, 0xf1, 0x32, 0xac, 0xa0, 0xf6, 0xef, 0x5a, 0x30, 0xcd, 0x7b, 0x7e, - 0x83, 0xec, 0xab, 0xb3, 0xe9, 0xeb, 0xd9, 0x77, 0x91, 0xce, 0xaa, 0x90, 0x93, 0xce, 0x4a, 0xff, - 0xb4, 0x62, 0xd7, 0x4f, 0xfb, 0x19, 0x0b, 0xc4, 0x0a, 0x39, 0x01, 0x21, 0xc4, 0xb7, 0x9a, 0x42, - 0x88, 0xb9, 0xfc, 0x4d, 0x90, 0x23, 0x7d, 0xf8, 0x0b, 0x0b, 0xa6, 0x38, 0x42, 0xac, 0x2d, 0xff, - 0xba, 0xce, 0x43, 0x3f, 0x49, 0x6f, 0x6f, 0x90, 0xfd, 0x0d, 0xbf, 0xea, 0x44, 0x3b, 0xd9, 0x1f, - 0x65, 0x4c, 0xd6, 0x40, 0xd7, 0xc9, 0x6a, 0xc8, 0x0d, 0x74, 0x84, 0x4c, 0xda, 0x47, 0xce, 0xf6, - 0x60, 0x7f, 0xcd, 0x02, 0xc4, 0x9b, 0x31, 0x18, 0x37, 0xca, 0x0e, 0xb1, 0x52, 0xed, 0xa2, 0x8b, - 0x8f, 0x26, 0x05, 0xc1, 0x1a, 0xd6, 0xb1, 0x0c, 0x4f, 0xc2, 0xe4, 0xa1, 0xd8, 0xdb, 0xe4, 0xe1, - 0x08, 0x23, 0xfa, 0x2f, 0x87, 0x20, 0xe9, 0x00, 0x83, 0xee, 0xc0, 0x58, 0xdd, 0x69, 0x3b, 0x9b, - 0x6e, 0xd3, 0x8d, 0x5c, 0x12, 0x76, 0xb3, 0x95, 0x5a, 0xd6, 0xf0, 0x84, 0x92, 0x5a, 0x2b, 0xc1, - 0x06, 0x1d, 0xb4, 0x00, 0xd0, 0x0e, 0xdc, 0x3d, 0xb7, 0x49, 0xb6, 0x99, 0xac, 0x84, 0x39, 0xc3, - 0x73, 0x03, 0x20, 0x59, 0x8a, 0x35, 0x8c, 0x0c, 0x6f, 0xe3, 0xe2, 0x23, 0xf6, 0x36, 0x86, 0x13, - 0xf3, 0x36, 0x1e, 0x38, 0x92, 0xb7, 0xf1, 0xc8, 0x91, 0xbd, 0x8d, 0x07, 0xfb, 0xf2, 0x36, 0xc6, - 0x70, 0x46, 0xf2, 0x9e, 0xf4, 0xff, 0xaa, 0xdb, 0x24, 0xe2, 0xc1, 0xc1, 0x3d, 0xf8, 0xe7, 0x1e, - 0x1c, 0xcc, 0x9f, 0xc1, 0x99, 0x18, 0x38, 0xa7, 0x26, 0xfa, 0x04, 0xcc, 0x3a, 0xcd, 0xa6, 0x7f, - 0x4f, 0x4d, 0xea, 0x4a, 0x58, 0x77, 0x9a, 0x5c, 0x09, 0x31, 0xcc, 0xa8, 0x9e, 0x7b, 0x70, 0x30, - 0x3f, 0xbb, 0x98, 0x83, 0x83, 0x73, 0x6b, 0xa3, 0x8f, 0x42, 0xa9, 0x1d, 0xf8, 0xf5, 0x35, 0xcd, - 0x4b, 0xef, 0x02, 0x1d, 0xc0, 0xaa, 0x2c, 0x3c, 0x3c, 0x98, 0x1f, 0x57, 0x7f, 0xd8, 0x85, 0x1f, - 0x57, 0xc8, 0x70, 0x1f, 0x1e, 0x3d, 0x56, 0xf7, 0xe1, 0x5d, 0x98, 0xa9, 0x91, 0xc0, 0x65, 0x79, - 0xb7, 0x1b, 0xf1, 0xf9, 0xb4, 0x01, 0xa5, 0x20, 0x71, 0x22, 0xf7, 0x15, 0x69, 0x50, 0x0b, 0xbb, - 0x2f, 0x4f, 0xe0, 0x98, 0x90, 0xfd, 0x3f, 0x2d, 0x18, 0x16, 0x0e, 0x2f, 0x27, 0xc0, 0x35, 0x2e, - 0x1a, 0x9a, 0x84, 0xf9, 0xec, 0x01, 0x63, 0x9d, 0xc9, 0xd5, 0x21, 0x54, 0x12, 0x3a, 0x84, 0x27, - 0xba, 0x11, 0xe9, 0xae, 0x3d, 0xf8, 0x6b, 0x45, 0xca, 0xbd, 0x1b, 0xae, 0x97, 0x8f, 0x7e, 0x08, - 0xd6, 0x61, 0x38, 0x14, 0xae, 0x7f, 0x85, 0x7c, 0x5b, 0xf5, 0xe4, 0x24, 0xc6, 0x76, 0x6c, 0xc2, - 0xd9, 0x4f, 0x12, 0xc9, 0xf4, 0x29, 0x2c, 0x3e, 0x42, 0x9f, 0xc2, 0x5e, 0xce, 0xa9, 0x03, 0xc7, - 0xe1, 0x9c, 0x6a, 0x7f, 0x85, 0xdd, 0x9c, 0x7a, 0xf9, 0x09, 0x30, 0x55, 0xd7, 0xcc, 0x3b, 0xd6, - 0xee, 0xb2, 0xb2, 0x44, 0xa7, 0x72, 0x98, 0xab, 0x9f, 0xb7, 0xe0, 0x7c, 0xc6, 0x57, 0x69, 0x9c, - 0xd6, 0x33, 0x30, 0xe2, 0x74, 0x1a, 0xae, 0xda, 0xcb, 0x9a, 0x3e, 0x71, 0x51, 0x94, 0x63, 0x85, - 0x81, 0x96, 0x61, 0x9a, 0xdc, 0x6f, 0xbb, 0x5c, 0x95, 0xaa, 0x1b, 0x9b, 0x16, 0xb9, 0x97, 0xd4, - 0x4a, 0x12, 0x88, 0xd3, 0xf8, 0x2a, 0x20, 0x48, 0x31, 0x37, 0x20, 0xc8, 0xdf, 0xb5, 0x60, 0x54, - 0x39, 0xbf, 0x3d, 0xf2, 0xd1, 0xfe, 0xb8, 0x39, 0xda, 0x8f, 0x77, 0x19, 0xed, 0x9c, 0x61, 0xfe, - 0x9d, 0x82, 0xea, 0x6f, 0xd5, 0x0f, 0xa2, 0x3e, 0x38, 0xb8, 0x97, 0x61, 0xa4, 0x1d, 0xf8, 0x91, - 0x5f, 0xf7, 0x9b, 0x82, 0x81, 0x3b, 0x17, 0x47, 0xc6, 0xe1, 0xe5, 0x87, 0xda, 0x6f, 0xac, 0xb0, - 0x29, 0xef, 0xe4, 0xb4, 0xdb, 0x12, 0x20, 0x6d, 0xd0, 0x58, 0xdc, 0xd8, 0xb8, 0x18, 0xeb, 0x38, - 0x6c, 0xc0, 0xfd, 0x20, 0x12, 0x7c, 0x56, 0x3c, 0xe0, 0x7e, 0x10, 0x61, 0x06, 0x41, 0x0d, 0x80, - 0xc8, 0x09, 0xb6, 0x49, 0x44, 0xcb, 0x44, 0xf0, 0xae, 0xfc, 0xf3, 0xa6, 0x13, 0xb9, 0xcd, 0x05, - 0xd7, 0x8b, 0xc2, 0x28, 0x58, 0xa8, 0x78, 0xd1, 0xad, 0x80, 0x3f, 0x21, 0xb5, 0xe8, 0x38, 0x8a, - 0x16, 0xd6, 0xe8, 0x4a, 0x47, 0x6f, 0xd6, 0xc6, 0xa0, 0x69, 0xcc, 0xb0, 0x2e, 0xca, 0xb1, 0xc2, - 0xb0, 0x3f, 0xc2, 0x6e, 0x1f, 0x36, 0xa6, 0x47, 0x0b, 0x27, 0xf3, 0xeb, 0xa0, 0x66, 0x83, 0x69, - 0x32, 0xcb, 0x7a, 0xd0, 0x9a, 0xee, 0x87, 0x3d, 0x6d, 0x58, 0xf7, 0xd7, 0x8a, 0x23, 0xdb, 0xa0, - 0x6f, 0x4b, 0x19, 0xa8, 0x3c, 0xdb, 0xe3, 0xd6, 0x38, 0x82, 0x49, 0x0a, 0x4b, 0x22, 0xc1, 0x42, - 0xec, 0x57, 0xaa, 0x62, 0x5f, 0x68, 0x49, 0x24, 0x04, 0x00, 0xc7, 0x38, 0x94, 0x99, 0x52, 0x7f, - 0xc2, 0x59, 0x14, 0x07, 0x53, 0x54, 0xd8, 0x21, 0xd6, 0x30, 0xd0, 0x55, 0x21, 0x50, 0xe0, 0x7a, - 0x81, 0xc7, 0x13, 0x02, 0x05, 0x39, 0x5c, 0x9a, 0x14, 0xe8, 0x39, 0x18, 0x55, 0x79, 0x64, 0xab, - 0x3c, 0x3d, 0xa9, 0x58, 0x66, 0x2b, 0x71, 0x31, 0xd6, 0x71, 0xd0, 0x06, 0x4c, 0x86, 0x5c, 0xce, - 0xa6, 0x22, 0xdc, 0x72, 0x79, 0xe5, 0x07, 0xa5, 0x15, 0x50, 0xcd, 0x04, 0x1f, 0xb2, 0x22, 0x7e, - 0x3a, 0x49, 0x67, 0xec, 0x24, 0x09, 0xf4, 0x1a, 0x4c, 0x34, 0x7d, 0xa7, 0xb1, 0xe4, 0x34, 0x1d, - 0xaf, 0xce, 0xc6, 0x67, 0xc4, 0x4c, 0x47, 0x78, 0xd3, 0x80, 0xe2, 0x04, 0x36, 0x65, 0xde, 0xf4, - 0x12, 0x11, 0x95, 0xd9, 0xf1, 0xb6, 0x49, 0x28, 0xb2, 0x82, 0x32, 0xe6, 0xed, 0x66, 0x0e, 0x0e, - 0xce, 0xad, 0x8d, 0x5e, 0x86, 0x31, 0xf9, 0xf9, 0x5a, 0xec, 0x82, 0xd8, 0xf1, 0x41, 0x83, 0x61, - 0x03, 0x13, 0xdd, 0x83, 0xd3, 0xf2, 0xff, 0x46, 0xe0, 0x6c, 0x6d, 0xb9, 0x75, 0xe1, 0xd0, 0xcb, - 0xbd, 0x12, 0x17, 0xa5, 0xeb, 0xdc, 0x4a, 0x16, 0xd2, 0xe1, 0xc1, 0xfc, 0x45, 0x31, 0x6a, 0x99, - 0x70, 0x36, 0x89, 0xd9, 0xf4, 0xd1, 0x1a, 0xcc, 0xec, 0x10, 0xa7, 0x19, 0xed, 0x2c, 0xef, 0x90, - 0xfa, 0xae, 0xdc, 0x74, 0x2c, 0x22, 0x82, 0xe6, 0x2e, 0x70, 0x3d, 0x8d, 0x82, 0xb3, 0xea, 0xa1, - 0x37, 0x61, 0xb6, 0xdd, 0xd9, 0x6c, 0xba, 0xe1, 0xce, 0xba, 0x1f, 0x31, 0x53, 0x20, 0x95, 0x96, - 0x56, 0x84, 0x4e, 0x50, 0x31, 0x27, 0xaa, 0x39, 0x78, 0x38, 0x97, 0x02, 0x7a, 0x1b, 0x4e, 0x27, - 0x16, 0x83, 0x70, 0x1e, 0x9f, 0xc8, 0x8f, 0x71, 0x5f, 0xcb, 0xaa, 0x20, 0xe2, 0x30, 0x64, 0x81, - 0x70, 0x76, 0x13, 0xf4, 0xf1, 0xa1, 0x05, 0x15, 0x0d, 0x67, 0xa7, 0x62, 0x9b, 0x65, 0x2d, 0xf2, - 0x68, 0x88, 0x0d, 0x2c, 0xf4, 0x0a, 0x80, 0xdb, 0x5e, 0x75, 0x5a, 0x6e, 0x93, 0x3e, 0x32, 0x67, - 0x58, 0x1d, 0xfa, 0xe0, 0x80, 0x4a, 0x55, 0x96, 0xd2, 0x53, 0x5d, 0xfc, 0xdb, 0xc7, 0x1a, 0x36, - 0xaa, 0xc2, 0x84, 0xf8, 0xb7, 0x2f, 0x16, 0xc3, 0xb4, 0xf2, 0xee, 0x9e, 0x90, 0x35, 0xd4, 0x0a, - 0x40, 0x66, 0x09, 0x9b, 0xf3, 0x44, 0xfd, 0x77, 0x66, 0x98, 0xf6, 0x16, 0xad, 0xac, 0xf1, 0xae, - 0xe8, 0xb3, 0x30, 0xa6, 0xef, 0x04, 0x71, 0x0f, 0x5f, 0xce, 0x66, 0xed, 0xb4, 0x1d, 0xc3, 0x39, - 0x5f, 0xb5, 0x2b, 0x74, 0x18, 0x36, 0x28, 0xda, 0x04, 0xb2, 0xe7, 0x08, 0xdd, 0x84, 0x91, 0x7a, - 0xd3, 0x25, 0x5e, 0x54, 0xa9, 0x76, 0x8b, 0xce, 0xb5, 0x2c, 0x70, 0xc4, 0xa4, 0x8b, 0xc0, 0xe6, - 0xbc, 0x0c, 0x2b, 0x0a, 0xf6, 0xaf, 0x15, 0x60, 0xbe, 0x47, 0x94, 0xfc, 0x84, 0xfe, 0xc4, 0xea, - 0x4b, 0x7f, 0xb2, 0x28, 0x13, 0x05, 0xaf, 0x27, 0x44, 0x33, 0x89, 0x24, 0xc0, 0xb1, 0x80, 0x26, - 0x89, 0xdf, 0xb7, 0x3d, 0xbb, 0xae, 0x82, 0x19, 0xe8, 0xe9, 0x91, 0x61, 0xa8, 0x5e, 0x07, 0xfb, - 0x7f, 0xaf, 0xe5, 0xaa, 0xd1, 0xec, 0xaf, 0x14, 0xe0, 0xb4, 0x1a, 0xc2, 0x6f, 0xde, 0x81, 0xbb, - 0x9d, 0x1e, 0xb8, 0x63, 0x50, 0x42, 0xda, 0xb7, 0x60, 0x88, 0x87, 0x1b, 0xeb, 0x83, 0x4f, 0xbc, - 0x64, 0x46, 0xe6, 0x54, 0xac, 0x89, 0x11, 0x9d, 0xf3, 0x7b, 0x2d, 0x98, 0xdc, 0x58, 0xae, 0xd6, - 0xfc, 0xfa, 0x2e, 0x89, 0x16, 0x39, 0x5f, 0x8f, 0x05, 0xcf, 0x67, 0x3d, 0x24, 0x2f, 0x97, 0xc5, - 0x25, 0x5e, 0x84, 0x81, 0x1d, 0x3f, 0x8c, 0x92, 0x16, 0x0a, 0xd7, 0xfd, 0x30, 0xc2, 0x0c, 0x62, - 0xff, 0x9e, 0x05, 0x83, 0x2c, 0x35, 0xbe, 0x94, 0x66, 0x5b, 0x39, 0xd2, 0xec, 0x7e, 0xbe, 0x0b, - 0xbd, 0x04, 0x43, 0x64, 0x6b, 0x8b, 0xd4, 0x23, 0x31, 0xab, 0xd2, 0xa5, 0x7c, 0x68, 0x85, 0x95, - 0x52, 0xc6, 0x85, 0x35, 0xc6, 0xff, 0x62, 0x81, 0x8c, 0xee, 0x42, 0x29, 0x72, 0x5b, 0x64, 0xb1, - 0xd1, 0x10, 0x3a, 0xde, 0x87, 0x70, 0x8b, 0xdf, 0x90, 0x04, 0x70, 0x4c, 0xcb, 0xfe, 0x52, 0x01, - 0x20, 0x8e, 0xd3, 0xd2, 0xeb, 0x13, 0x97, 0x52, 0xda, 0xbf, 0xcb, 0x19, 0xda, 0x3f, 0x14, 0x13, - 0xcc, 0x50, 0xfd, 0xa9, 0x61, 0x2a, 0xf6, 0x35, 0x4c, 0x03, 0x47, 0x19, 0xa6, 0x65, 0x98, 0x8e, - 0xe3, 0xcc, 0x98, 0x61, 0xb6, 0xd8, 0x5b, 0x6e, 0x23, 0x09, 0xc4, 0x69, 0x7c, 0x9b, 0xc0, 0x45, - 0x15, 0x6e, 0x43, 0xdc, 0x35, 0xcc, 0x84, 0x58, 0xd7, 0xa6, 0xf6, 0x18, 0xa7, 0x58, 0xbd, 0x59, - 0xc8, 0x55, 0x6f, 0xfe, 0x84, 0x05, 0xa7, 0x92, 0xed, 0x30, 0x9f, 0xce, 0x2f, 0x5a, 0x70, 0x9a, - 0x29, 0x79, 0x59, 0xab, 0x69, 0x95, 0xf2, 0x8b, 0x5d, 0x43, 0x88, 0xe4, 0xf4, 0x38, 0x8e, 0x5d, - 0xb0, 0x96, 0x45, 0x1a, 0x67, 0xb7, 0x68, 0xff, 0xbb, 0x02, 0xcc, 0xe6, 0xc5, 0x1e, 0x61, 0x1e, - 0x06, 0xce, 0xfd, 0xda, 0x2e, 0xb9, 0x27, 0xec, 0xb8, 0x63, 0x0f, 0x03, 0x5e, 0x8c, 0x25, 0x3c, - 0x19, 0xf8, 0xbc, 0xd0, 0x5f, 0xe0, 0x73, 0xb4, 0x03, 0xd3, 0xf7, 0x76, 0x88, 0x77, 0xdb, 0x0b, - 0x9d, 0xc8, 0x0d, 0xb7, 0x5c, 0xa6, 0x10, 0xe5, 0xeb, 0xe6, 0x15, 0x69, 0x6d, 0x7d, 0x37, 0x89, - 0x70, 0x78, 0x30, 0x7f, 0xde, 0x28, 0x88, 0xbb, 0xcc, 0x0f, 0x12, 0x9c, 0x26, 0x9a, 0x8e, 0x1b, - 0x3f, 0xf0, 0x08, 0xe3, 0xc6, 0xdb, 0x5f, 0xb4, 0xe0, 0x6c, 0x6e, 0xb2, 0x4a, 0x74, 0x05, 0x46, - 0x9c, 0xb6, 0xcb, 0x65, 0xca, 0xe2, 0x18, 0x65, 0xb2, 0x8b, 0x6a, 0x85, 0x4b, 0x94, 0x15, 0x54, - 0x25, 0xd1, 0x2e, 0xe4, 0x26, 0xd1, 0xee, 0x99, 0x13, 0xdb, 0xfe, 0x1e, 0x0b, 0x84, 0x77, 0x64, - 0x1f, 0x67, 0xf7, 0xa7, 0x60, 0x6c, 0x2f, 0x9d, 0x5b, 0xe6, 0x62, 0xbe, 0xbb, 0xa8, 0xc8, 0x28, - 0xa3, 0x78, 0x25, 0x23, 0x8f, 0x8c, 0x41, 0xcb, 0x6e, 0x80, 0x80, 0x96, 0x09, 0x93, 0x98, 0xf6, - 0xee, 0xcd, 0xf3, 0x00, 0x0d, 0x86, 0xab, 0x65, 0x22, 0x57, 0x37, 0x73, 0x59, 0x41, 0xb0, 0x86, - 0x65, 0xff, 0xeb, 0x02, 0x8c, 0xca, 0x5c, 0x26, 0x1d, 0xaf, 0x1f, 0xb9, 0xc6, 0x91, 0x92, 0x1b, - 0xb2, 0xd4, 0xfd, 0x94, 0x70, 0x35, 0x16, 0x07, 0xc5, 0xa9, 0xfb, 0x25, 0x00, 0xc7, 0x38, 0x74, - 0x17, 0x85, 0x9d, 0x4d, 0x86, 0x9e, 0xf0, 0xe5, 0xab, 0xf1, 0x62, 0x2c, 0xe1, 0xe8, 0x13, 0x30, - 0xc5, 0xeb, 0x05, 0x7e, 0xdb, 0xd9, 0xe6, 0xc2, 0xfa, 0x41, 0xe5, 0x84, 0x3f, 0xb5, 0x96, 0x80, - 0x1d, 0x1e, 0xcc, 0x9f, 0x4a, 0x96, 0x31, 0x2d, 0x54, 0x8a, 0x0a, 0xb3, 0xc9, 0xe1, 0x8d, 0xd0, - 0xdd, 0x9f, 0x32, 0xe5, 0x89, 0x41, 0x58, 0xc7, 0xb3, 0x3f, 0x0b, 0x28, 0x9d, 0xd5, 0x05, 0xbd, - 0xce, 0x0d, 0x31, 0xdd, 0x80, 0x34, 0xba, 0x69, 0xa5, 0x74, 0x57, 0x73, 0xe9, 0x86, 0xc3, 0x6b, - 0x61, 0x55, 0xdf, 0xfe, 0xff, 0x8a, 0x30, 0x95, 0x74, 0x3c, 0x46, 0xd7, 0x61, 0x88, 0xb3, 0x1e, - 0x82, 0x7c, 0x17, 0xa3, 0x07, 0xcd, 0x5d, 0x99, 0x1d, 0xc2, 0x82, 0x7b, 0x11, 0xf5, 0xd1, 0x9b, - 0x30, 0xda, 0xf0, 0xef, 0x79, 0xf7, 0x9c, 0xa0, 0xb1, 0x58, 0xad, 0x88, 0xe5, 0x9c, 0xf9, 0x0a, - 0x2b, 0xc7, 0x68, 0xba, 0x0b, 0x34, 0x53, 0xf0, 0xc5, 0x20, 0xac, 0x93, 0x43, 0x1b, 0x2c, 0x08, - 0xf5, 0x96, 0xbb, 0xbd, 0xe6, 0xb4, 0xbb, 0x59, 0xe5, 0x2f, 0x4b, 0x24, 0x8d, 0xf2, 0xb8, 0x88, - 0x54, 0xcd, 0x01, 0x38, 0x26, 0x84, 0x3e, 0x0f, 0x33, 0x61, 0x8e, 0x6c, 0x38, 0x2f, 0xc9, 0x57, - 0x37, 0x71, 0xe9, 0xd2, 0x63, 0xf4, 0x7d, 0x9c, 0x25, 0x45, 0xce, 0x6a, 0xc6, 0xfe, 0x91, 0x53, - 0x60, 0x6c, 0x62, 0x23, 0xe7, 0xa3, 0x75, 0x4c, 0x39, 0x1f, 0x31, 0x8c, 0x90, 0x56, 0x3b, 0xda, - 0x2f, 0xbb, 0x41, 0xb7, 0x4c, 0xc8, 0x2b, 0x02, 0x27, 0x4d, 0x53, 0x42, 0xb0, 0xa2, 0x93, 0x9d, - 0x98, 0xb3, 0xf8, 0x75, 0x4c, 0xcc, 0x39, 0x70, 0x82, 0x89, 0x39, 0xd7, 0x61, 0x78, 0xdb, 0x8d, - 0x30, 0x69, 0xfb, 0x82, 0xe9, 0xcf, 0x5c, 0x87, 0xd7, 0x38, 0x4a, 0x3a, 0x05, 0x9c, 0x00, 0x60, - 0x49, 0x04, 0xbd, 0xae, 0x76, 0xe0, 0x50, 0xfe, 0x9b, 0x39, 0xad, 0x9d, 0xcf, 0xdc, 0x83, 0x22, - 0xfd, 0xe6, 0xf0, 0xc3, 0xa6, 0xdf, 0x5c, 0x95, 0x49, 0x33, 0x47, 0xf2, 0x5d, 0x68, 0x58, 0x4e, - 0xcc, 0x1e, 0xa9, 0x32, 0xef, 0xe8, 0x89, 0x46, 0x4b, 0xf9, 0x27, 0x81, 0xca, 0x21, 0xda, 0x67, - 0x7a, 0xd1, 0xef, 0xb1, 0xe0, 0x74, 0x3b, 0x2b, 0xe7, 0xae, 0x50, 0x64, 0xbf, 0xd4, 0x77, 0x5a, - 0x5f, 0xa3, 0x41, 0x26, 0x00, 0xca, 0x44, 0xc3, 0xd9, 0xcd, 0xd1, 0x81, 0x0e, 0x36, 0x1b, 0x42, - 0xa1, 0x7a, 0x29, 0x27, 0x4f, 0x69, 0x97, 0xec, 0xa4, 0x1b, 0x19, 0x39, 0x31, 0xdf, 0x9f, 0x97, - 0x13, 0xb3, 0xef, 0x4c, 0x98, 0xaf, 0xab, 0x0c, 0xa5, 0xe3, 0xf9, 0x4b, 0x89, 0xe7, 0x1f, 0xed, - 0x99, 0x97, 0xf4, 0x75, 0x95, 0x97, 0xb4, 0x4b, 0x84, 0x51, 0x9e, 0x75, 0xb4, 0x67, 0x36, 0x52, - 0x2d, 0xa3, 0xe8, 0xe4, 0xf1, 0x64, 0x14, 0x35, 0xae, 0x1a, 0x9e, 0xd4, 0xf2, 0xe9, 0x1e, 0x57, - 0x8d, 0x41, 0xb7, 0xfb, 0x65, 0xc3, 0xb3, 0xa7, 0x4e, 0x3f, 0x54, 0xf6, 0xd4, 0x3b, 0x7a, 0x36, - 0x52, 0xd4, 0x23, 0xdd, 0x26, 0x45, 0xea, 0x33, 0x07, 0xe9, 0x1d, 0xfd, 0x02, 0x9c, 0xc9, 0xa7, - 0xab, 0xee, 0xb9, 0x34, 0xdd, 0xcc, 0x2b, 0x30, 0x95, 0xdb, 0xf4, 0xd4, 0xc9, 0xe4, 0x36, 0x3d, - 0x7d, 0xec, 0xb9, 0x4d, 0xcf, 0x9c, 0x40, 0x6e, 0xd3, 0xc7, 0x4e, 0x30, 0xb7, 0xe9, 0x1d, 0x66, - 0xfd, 0xc1, 0x63, 0xcc, 0x88, 0x88, 0xa8, 0xd9, 0xd1, 0x37, 0xb3, 0x02, 0xd1, 0xf0, 0x8f, 0x53, - 0x20, 0x1c, 0x93, 0xca, 0xc8, 0x99, 0x3a, 0xfb, 0x08, 0x72, 0xa6, 0xae, 0xc7, 0x39, 0x53, 0xcf, - 0xe6, 0x4f, 0x75, 0x86, 0xbf, 0x40, 0x4e, 0xa6, 0xd4, 0x3b, 0x7a, 0x86, 0xd3, 0xc7, 0xbb, 0x88, - 0xf8, 0xb3, 0x04, 0x8f, 0x5d, 0xf2, 0x9a, 0xbe, 0xc6, 0xf3, 0x9a, 0x9e, 0xcb, 0x3f, 0xc9, 0x93, - 0xd7, 0x9d, 0x91, 0xcd, 0x94, 0xf6, 0x4b, 0xc5, 0xde, 0x63, 0xb1, 0x5f, 0x73, 0xfa, 0xa5, 0x82, - 0xf7, 0xa5, 0xfb, 0xa5, 0x40, 0x38, 0x26, 0x65, 0x7f, 0x5f, 0x01, 0x2e, 0x74, 0xdf, 0x6f, 0xb1, - 0x34, 0xb5, 0x1a, 0x6b, 0x3c, 0x13, 0xd2, 0x54, 0xfe, 0x66, 0x8b, 0xb1, 0xfa, 0x0e, 0x6b, 0x76, - 0x0d, 0xa6, 0x95, 0xa3, 0x41, 0xd3, 0xad, 0xef, 0xaf, 0xc7, 0x2f, 0x5f, 0xe5, 0x9c, 0x5d, 0x4b, - 0x22, 0xe0, 0x74, 0x1d, 0xb4, 0x08, 0x93, 0x46, 0x61, 0xa5, 0x2c, 0xde, 0x66, 0x4a, 0x7c, 0x5b, - 0x33, 0xc1, 0x38, 0x89, 0x6f, 0x7f, 0xd9, 0x82, 0xc7, 0x72, 0xd2, 0x91, 0xf5, 0x1d, 0xb5, 0x6b, - 0x0b, 0x26, 0xdb, 0x66, 0xd5, 0x1e, 0xc1, 0xfd, 0x8c, 0xa4, 0x67, 0xaa, 0xaf, 0x09, 0x00, 0x4e, - 0x12, 0xb5, 0xff, 0xdc, 0x82, 0xf3, 0x5d, 0x2d, 0xe7, 0x10, 0x86, 0x33, 0xdb, 0xad, 0xd0, 0x59, - 0x0e, 0x48, 0x83, 0x78, 0x91, 0xeb, 0x34, 0x6b, 0x6d, 0x52, 0xd7, 0xe4, 0xe1, 0xcc, 0x04, 0xed, - 0xda, 0x5a, 0x6d, 0x31, 0x8d, 0x81, 0x73, 0x6a, 0xa2, 0x55, 0x40, 0x69, 0x88, 0x98, 0x61, 0x16, - 0x45, 0x38, 0x4d, 0x0f, 0x67, 0xd4, 0x40, 0x1f, 0x81, 0x71, 0x65, 0x91, 0xa7, 0xcd, 0x38, 0x3b, - 0xd8, 0xb1, 0x0e, 0xc0, 0x26, 0xde, 0xd2, 0x95, 0xdf, 0xfc, 0x83, 0x0b, 0xef, 0xfb, 0xed, 0x3f, - 0xb8, 0xf0, 0xbe, 0xdf, 0xfd, 0x83, 0x0b, 0xef, 0xfb, 0x8e, 0x07, 0x17, 0xac, 0xdf, 0x7c, 0x70, - 0xc1, 0xfa, 0xed, 0x07, 0x17, 0xac, 0xdf, 0x7d, 0x70, 0xc1, 0xfa, 0xfd, 0x07, 0x17, 0xac, 0x2f, - 0xfd, 0xe1, 0x85, 0xf7, 0x7d, 0xaa, 0xb0, 0xf7, 0xdc, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x74, - 0x99, 0xb9, 0xe3, 0xac, 0x01, 0x01, 0x00, + 0xe8, 0xff, 0xb7, 0x60, 0x42, 0xfc, 0xc6, 0xe4, 0xad, 0x0e, 0x09, 0x23, 0xc1, 0x7b, 0x7e, 0xb8, + 0xff, 0x3e, 0x88, 0x8a, 0xbc, 0x2b, 0x1f, 0x96, 0xc7, 0xac, 0x09, 0xec, 0xd9, 0xa3, 0x44, 0x2f, + 0xd0, 0xdf, 0xb3, 0xe0, 0x54, 0xcb, 0xb9, 0xcf, 0x5b, 0xe4, 0x65, 0xd8, 0x89, 0x5c, 0x5f, 0xd8, + 0x21, 0x7c, 0xb4, 0xbf, 0xe9, 0x4f, 0x55, 0xe7, 0x9d, 0x94, 0xca, 0xd2, 0x53, 0x59, 0x28, 0x3d, + 0xbb, 0x9a, 0xd9, 0xaf, 0xb9, 0x2d, 0x18, 0x91, 0xeb, 0x2d, 0x43, 0xd4, 0x50, 0xd6, 0x19, 0xeb, + 0x23, 0x9b, 0xaf, 0xea, 0xb1, 0x0a, 0x68, 0x3b, 0x62, 0xad, 0x3d, 0xd2, 0x76, 0x3e, 0x07, 0x63, + 0xfa, 0x1a, 0x7b, 0xa4, 0x6d, 0xbd, 0x05, 0x33, 0x19, 0x6b, 0xe9, 0x91, 0x36, 0x79, 0x0f, 0xce, + 0xe6, 0xae, 0x8f, 0x47, 0xd9, 0xb0, 0xfd, 0xf3, 0x96, 0x7e, 0x0e, 0x9e, 0x80, 0xea, 0x60, 0xd9, + 0x54, 0x1d, 0x5c, 0xe8, 0xbe, 0x73, 0x72, 0xf4, 0x07, 0x6f, 0xea, 0x9d, 0xa6, 0xa7, 0x3a, 0x7a, + 0x1d, 0x86, 0x9a, 0xb4, 0x44, 0x5a, 0xe1, 0xda, 0xbd, 0x77, 0x64, 0xcc, 0x4b, 0xb1, 0xf2, 0x10, + 0x0b, 0x0a, 0xf6, 0x2f, 0x5b, 0x30, 0x70, 0x02, 0x23, 0x81, 0xcd, 0x91, 0x78, 0x36, 0x97, 0xb4, + 0x08, 0xaf, 0xbc, 0x80, 0x9d, 0x7b, 0x2b, 0xf7, 0x23, 0xe2, 0x85, 0xec, 0xa9, 0x98, 0x39, 0x30, + 0x3f, 0x62, 0xc1, 0xcc, 0x4d, 0xdf, 0x69, 0x2c, 0x39, 0x4d, 0xc7, 0xab, 0x93, 0xa0, 0xe2, 0x6d, + 0x1f, 0xc9, 0x84, 0xbc, 0xd0, 0xd3, 0x84, 0xfc, 0x65, 0x18, 0x72, 0xdb, 0x5a, 0xb8, 0xd8, 0x8b, + 0x74, 0x00, 0x2b, 0x55, 0x11, 0x29, 0x16, 0x19, 0x8d, 0xb3, 0x52, 0x2c, 0xf0, 0xed, 0x1d, 0x30, + 0xa0, 0xc2, 0x8b, 0x07, 0xc3, 0xb0, 0xcb, 0x3b, 0x29, 0x66, 0xee, 0xc9, 0x6c, 0xae, 0x2e, 0xf5, + 0x4d, 0x9a, 0x7f, 0x0a, 0x2f, 0xc0, 0x92, 0x90, 0xfd, 0x32, 0x64, 0x86, 0x02, 0xe8, 0x2d, 0x71, + 0xb0, 0x3f, 0x09, 0xd3, 0xac, 0xe6, 0x11, 0x5f, 0xc3, 0x76, 0x42, 0xa0, 0x99, 0x11, 0x24, 0xd0, + 0xfe, 0xa2, 0x05, 0x93, 0xeb, 0x89, 0xd8, 0x69, 0x97, 0x99, 0x0a, 0x34, 0x43, 0x8e, 0x5e, 0x63, + 0xa5, 0x58, 0x40, 0x8f, 0x5d, 0x7c, 0xf5, 0x57, 0x16, 0xc4, 0xd1, 0x39, 0x4e, 0x80, 0x67, 0x5b, + 0x36, 0x78, 0xb6, 0x4c, 0xb1, 0x8a, 0xea, 0x4e, 0x1e, 0xcb, 0x86, 0x6e, 0xa8, 0xb8, 0x55, 0x5d, + 0x24, 0x2a, 0x31, 0x19, 0x1e, 0xe5, 0x68, 0xc2, 0x0c, 0x6e, 0x25, 0x23, 0x59, 0xd9, 0xff, 0xa1, + 0x00, 0x48, 0xe1, 0xf6, 0x1d, 0x57, 0x2b, 0x5d, 0xe3, 0x78, 0xe2, 0x6a, 0xed, 0x01, 0x62, 0x4a, + 0xfc, 0xc0, 0xf1, 0x42, 0x4e, 0xd6, 0x15, 0x02, 0xbb, 0xa3, 0x59, 0x08, 0xcc, 0x89, 0x26, 0xd1, + 0xcd, 0x14, 0x35, 0x9c, 0xd1, 0x82, 0x66, 0x9c, 0x31, 0xd8, 0xaf, 0x71, 0xc6, 0x50, 0x0f, 0x4f, + 0xbd, 0x9f, 0xb3, 0x60, 0x5c, 0x0d, 0xd3, 0xbb, 0xc4, 0x8e, 0x5e, 0xf5, 0x27, 0xe7, 0xd4, 0xac, + 0x6a, 0x5d, 0x66, 0xb7, 0xc9, 0xb7, 0x32, 0x8f, 0x4b, 0xa7, 0xe9, 0xbe, 0x4d, 0x54, 0x54, 0xc3, + 0x79, 0xe1, 0x41, 0x29, 0x4a, 0x0f, 0x0f, 0xe6, 0xc7, 0xd5, 0x3f, 0x1e, 0x45, 0x39, 0xae, 0x62, + 0xff, 0x14, 0xdd, 0xec, 0xe6, 0x52, 0x44, 0x2f, 0xc1, 0x60, 0x7b, 0xc7, 0x09, 0x49, 0xc2, 0xdf, + 0x68, 0xb0, 0x4a, 0x0b, 0x0f, 0x0f, 0xe6, 0x27, 0x54, 0x05, 0x56, 0x82, 0x39, 0x76, 0xff, 0xd1, + 0xca, 0xd2, 0x8b, 0xb3, 0x67, 0xb4, 0xb2, 0x3f, 0xb3, 0x60, 0x60, 0xdd, 0x6f, 0x9c, 0xc4, 0x11, + 0xf0, 0x9a, 0x71, 0x04, 0x9c, 0xcb, 0x0b, 0x70, 0x9f, 0xbb, 0xfb, 0x57, 0x13, 0xbb, 0xff, 0x42, + 0x2e, 0x85, 0xee, 0x1b, 0xbf, 0x05, 0xa3, 0x2c, 0x6c, 0xbe, 0xf0, 0xad, 0x7a, 0xc1, 0xd8, 0xf0, + 0xf3, 0x89, 0x0d, 0x3f, 0xa9, 0xa1, 0x6a, 0x3b, 0xfd, 0x29, 0x18, 0x16, 0xce, 0x3a, 0x49, 0xc7, + 0x55, 0x81, 0x8b, 0x25, 0xdc, 0xfe, 0x89, 0x22, 0x18, 0x61, 0xfa, 0xd1, 0xaf, 0x5a, 0xb0, 0x10, + 0x70, 0x23, 0xde, 0x46, 0xb9, 0x13, 0xb8, 0xde, 0x76, 0xad, 0xbe, 0x43, 0x1a, 0x9d, 0xa6, 0xeb, + 0x6d, 0x57, 0xb6, 0x3d, 0x5f, 0x15, 0xaf, 0xdc, 0x27, 0xf5, 0x0e, 0xd3, 0x7c, 0xf5, 0xc8, 0x09, + 0xa0, 0x8c, 0xe1, 0x9f, 0x7f, 0x70, 0x30, 0xbf, 0x80, 0x8f, 0x44, 0x1b, 0x1f, 0xb1, 0x2f, 0xe8, + 0xb7, 0x2d, 0xb8, 0xca, 0xa3, 0xd7, 0xf7, 0xdf, 0xff, 0x2e, 0x4f, 0xe4, 0xaa, 0x24, 0x15, 0x13, + 0xd9, 0x20, 0x41, 0x6b, 0xe9, 0x23, 0x62, 0x40, 0xaf, 0x56, 0x8f, 0xd6, 0x16, 0x3e, 0x6a, 0xe7, + 0xec, 0x7f, 0x5a, 0x84, 0x71, 0x11, 0xd5, 0x4a, 0xdc, 0x01, 0x2f, 0x19, 0x4b, 0xe2, 0x89, 0xc4, + 0x92, 0x98, 0x36, 0x90, 0x8f, 0xe7, 0xf8, 0x0f, 0x61, 0x9a, 0x1e, 0xce, 0xd7, 0x89, 0x13, 0x44, + 0x9b, 0xc4, 0xe1, 0x36, 0x57, 0xc5, 0x23, 0x9f, 0xfe, 0x4a, 0x26, 0x77, 0x33, 0x49, 0x0c, 0xa7, + 0xe9, 0x7f, 0x33, 0xdd, 0x39, 0x1e, 0x4c, 0xa5, 0x02, 0x93, 0x7d, 0x0a, 0x4a, 0xca, 0xd3, 0x44, + 0x1c, 0x3a, 0xdd, 0xe3, 0xfb, 0x25, 0x29, 0x70, 0xb9, 0x59, 0xec, 0xe5, 0x14, 0x93, 0xb3, 0xff, + 0x7e, 0xc1, 0x68, 0x90, 0x4f, 0xe2, 0x3a, 0x8c, 0x38, 0x61, 0xe8, 0x6e, 0x7b, 0xa4, 0x21, 0x76, + 0xec, 0xfb, 0xf3, 0x76, 0xac, 0xd1, 0x0c, 0xf3, 0xf6, 0x59, 0x14, 0x35, 0xb1, 0xa2, 0x81, 0xae, + 0x73, 0xcb, 0xb6, 0x3d, 0xf9, 0xc8, 0xeb, 0x8f, 0x1a, 0x48, 0xdb, 0xb7, 0x3d, 0x82, 0x45, 0x7d, + 0xf4, 0x69, 0x6e, 0x7a, 0x78, 0xc3, 0xf3, 0xef, 0x79, 0xd7, 0x7c, 0x5f, 0x46, 0x8e, 0xe8, 0x8f, + 0xe0, 0xb4, 0x34, 0x38, 0x54, 0xd5, 0xb1, 0x49, 0xad, 0xbf, 0x48, 0x9f, 0x9f, 0x87, 0x19, 0x4a, + 0xda, 0x74, 0xec, 0x0e, 0x11, 0x81, 0x49, 0x11, 0x32, 0x4d, 0x96, 0x89, 0xb1, 0xcb, 0x7c, 0xbf, + 0x99, 0xb5, 0x63, 0xe1, 0xf1, 0x0d, 0x93, 0x04, 0x4e, 0xd2, 0xb4, 0x7f, 0xda, 0x02, 0xe6, 0xe4, + 0x7a, 0x02, 0xfc, 0xc8, 0xc7, 0x4c, 0x7e, 0x64, 0x36, 0x6f, 0x90, 0x73, 0x58, 0x91, 0x17, 0xf9, + 0xca, 0xaa, 0x06, 0xfe, 0xfd, 0x7d, 0x61, 0x2f, 0xd2, 0xfb, 0xfd, 0x61, 0xff, 0x2f, 0x8b, 0x1f, + 0x62, 0xca, 0x0f, 0x04, 0x7d, 0x3b, 0x8c, 0xd4, 0x9d, 0xb6, 0x53, 0xe7, 0x39, 0x65, 0x72, 0xc5, + 0x78, 0x46, 0xa5, 0x85, 0x65, 0x51, 0x83, 0x8b, 0xa5, 0x64, 0xe8, 0xbd, 0x11, 0x59, 0xdc, 0x53, + 0x14, 0xa5, 0x9a, 0x9c, 0xdb, 0x85, 0x71, 0x83, 0xd8, 0x23, 0x95, 0x61, 0x7c, 0x3b, 0xbf, 0x62, + 0x55, 0xa8, 0xc8, 0x16, 0x4c, 0x7b, 0xda, 0x7f, 0x7a, 0xa1, 0xc8, 0xc7, 0xe5, 0xfb, 0x7b, 0x5d, + 0xa2, 0xec, 0xf6, 0xd1, 0xfc, 0x67, 0x13, 0x64, 0x70, 0x9a, 0xb2, 0xfd, 0x93, 0x16, 0x3c, 0xa6, + 0x23, 0x6a, 0x2e, 0x3a, 0xbd, 0x14, 0x03, 0x65, 0x18, 0xf1, 0xdb, 0x24, 0x70, 0x22, 0x3f, 0x10, + 0xb7, 0xc6, 0x15, 0x39, 0xe8, 0xb7, 0x44, 0xf9, 0xa1, 0x88, 0xc8, 0x2e, 0xa9, 0xcb, 0x72, 0xac, + 0x6a, 0xd2, 0xd7, 0x27, 0x1b, 0x8c, 0x50, 0x38, 0x63, 0xb1, 0x33, 0x80, 0xe9, 0xc8, 0x43, 0x2c, + 0x20, 0xf6, 0xd7, 0x2c, 0xbe, 0xb0, 0xf4, 0xae, 0xa3, 0xb7, 0x60, 0xaa, 0xe5, 0x44, 0xf5, 0x9d, + 0x95, 0xfb, 0xed, 0x80, 0xab, 0x59, 0xe4, 0x38, 0x3d, 0xdd, 0x6b, 0x9c, 0xb4, 0x8f, 0x8c, 0xad, + 0x29, 0xd7, 0x12, 0xc4, 0x70, 0x8a, 0x3c, 0xda, 0x84, 0x51, 0x56, 0xc6, 0xfc, 0x0c, 0xc3, 0x6e, + 0xac, 0x41, 0x5e, 0x6b, 0xca, 0xcc, 0x60, 0x2d, 0xa6, 0x83, 0x75, 0xa2, 0xf6, 0xcf, 0x16, 0xf9, + 0x6e, 0x67, 0xac, 0xfc, 0x53, 0x30, 0xdc, 0xf6, 0x1b, 0xcb, 0x95, 0x32, 0x16, 0xb3, 0xa0, 0xae, + 0x91, 0x2a, 0x2f, 0xc6, 0x12, 0x8e, 0xae, 0xc0, 0x88, 0xf8, 0x29, 0xd5, 0x62, 0xec, 0x6c, 0x16, + 0x78, 0x21, 0x56, 0x50, 0xf4, 0x3c, 0x40, 0x3b, 0xf0, 0xf7, 0xdc, 0x06, 0x8b, 0x7f, 0x51, 0x34, + 0x2d, 0x84, 0xaa, 0x0a, 0x82, 0x35, 0x2c, 0xf4, 0x2a, 0x8c, 0x77, 0xbc, 0x90, 0xb3, 0x23, 0x5a, + 0xb4, 0x5b, 0x65, 0xbb, 0x72, 0x5b, 0x07, 0x62, 0x13, 0x17, 0x2d, 0xc2, 0x50, 0xe4, 0x30, 0x8b, + 0x97, 0xc1, 0x7c, 0x8b, 0xdb, 0x0d, 0x8a, 0xa1, 0xa7, 0x2f, 0xa1, 0x15, 0xb0, 0xa8, 0x88, 0x3e, + 0x25, 0x5d, 0x7e, 0xf9, 0xc1, 0x2e, 0x4c, 0xdd, 0xfb, 0xbb, 0x04, 0x34, 0x87, 0x5f, 0x61, 0x42, + 0x6f, 0xd0, 0x42, 0xaf, 0x00, 0x90, 0xfb, 0x11, 0x09, 0x3c, 0xa7, 0xa9, 0x0c, 0xca, 0x14, 0x5f, + 0x50, 0xf6, 0xd7, 0xfd, 0xe8, 0x76, 0x48, 0x56, 0x14, 0x06, 0xd6, 0xb0, 0xed, 0xdf, 0x2e, 0x01, + 0xc4, 0x7c, 0x3b, 0x7a, 0x3b, 0x75, 0x70, 0x3d, 0xd3, 0x9d, 0xd3, 0x3f, 0xbe, 0x53, 0x0b, 0x7d, + 0x8f, 0x05, 0xa3, 0x4e, 0xb3, 0xe9, 0xd7, 0x1d, 0x1e, 0x8f, 0xb8, 0xd0, 0xfd, 0xe0, 0x14, 0xed, + 0x2f, 0xc6, 0x35, 0x78, 0x17, 0x5e, 0x90, 0x2b, 0x54, 0x83, 0xf4, 0xec, 0x85, 0xde, 0x30, 0xfa, + 0x90, 0x7c, 0x2a, 0x16, 0x8d, 0xa1, 0x54, 0x4f, 0xc5, 0x12, 0xbb, 0x23, 0xf4, 0x57, 0xe2, 0x6d, + 0xe3, 0x95, 0x38, 0x90, 0xef, 0xd3, 0x68, 0xb0, 0xaf, 0xbd, 0x1e, 0x88, 0xa8, 0xaa, 0xc7, 0x37, + 0x18, 0xcc, 0x77, 0x20, 0xd4, 0xde, 0x49, 0x3d, 0x62, 0x1b, 0x7c, 0x0e, 0x26, 0x1b, 0x26, 0x13, + 0x20, 0x56, 0xe2, 0x93, 0x79, 0x74, 0x13, 0x3c, 0x43, 0x7c, 0xed, 0x27, 0x00, 0x38, 0x49, 0x18, + 0x55, 0x79, 0xb8, 0x8b, 0x8a, 0xb7, 0xe5, 0x0b, 0x77, 0x0b, 0x3b, 0x77, 0x2e, 0xf7, 0xc3, 0x88, + 0xb4, 0x28, 0x66, 0x7c, 0xbb, 0xaf, 0x8b, 0xba, 0x58, 0x51, 0x41, 0xaf, 0xc3, 0x10, 0xf3, 0x20, + 0x0b, 0x67, 0x47, 0xf2, 0xc5, 0xcc, 0x66, 0xfc, 0xb6, 0x78, 0x43, 0xb2, 0xbf, 0x21, 0x16, 0x14, + 0xd0, 0x75, 0xe9, 0x9f, 0x19, 0x56, 0xbc, 0xdb, 0x21, 0x61, 0xfe, 0x99, 0xa5, 0xa5, 0xf7, 0xc7, + 0xae, 0x97, 0xbc, 0x3c, 0x33, 0xc9, 0x99, 0x51, 0x93, 0x72, 0x51, 0xe2, 0xbf, 0xcc, 0x9d, 0x36, + 0x0b, 0xf9, 0xdd, 0x33, 0xf3, 0xab, 0xc5, 0xc3, 0x79, 0xc7, 0x24, 0x81, 0x93, 0x34, 0x29, 0x47, + 0xca, 0x77, 0xbd, 0x70, 0xd8, 0xe8, 0x75, 0x76, 0xf0, 0x87, 0x38, 0xbb, 0x8d, 0x78, 0x09, 0x16, + 0xf5, 0x4f, 0x94, 0x3d, 0x98, 0xf3, 0x60, 0x2a, 0xb9, 0x45, 0x1f, 0x29, 0x3b, 0xf2, 0x47, 0x03, + 0x30, 0x61, 0x2e, 0x29, 0x74, 0x15, 0x4a, 0x82, 0x88, 0xca, 0x77, 0xa0, 0x76, 0xc9, 0x9a, 0x04, + 0xe0, 0x18, 0x87, 0xa5, 0xb9, 0x60, 0xd5, 0x35, 0x0b, 0xdd, 0x38, 0xcd, 0x85, 0x82, 0x60, 0x0d, + 0x8b, 0x3e, 0xac, 0x36, 0x7d, 0x3f, 0x52, 0x17, 0x92, 0x5a, 0x77, 0x4b, 0xac, 0x14, 0x0b, 0x28, + 0xbd, 0x88, 0x76, 0x49, 0xe0, 0x91, 0xa6, 0x19, 0x19, 0x59, 0x5d, 0x44, 0x37, 0x74, 0x20, 0x36, + 0x71, 0xe9, 0x75, 0xea, 0x87, 0x6c, 0x21, 0x8b, 0xe7, 0x5b, 0x6c, 0xf1, 0x5c, 0xe3, 0x2e, 0xe2, + 0x12, 0x8e, 0x3e, 0x09, 0x8f, 0xa9, 0xe8, 0x4f, 0x98, 0xab, 0x30, 0x64, 0x8b, 0x43, 0x86, 0xb4, + 0xe5, 0xb1, 0xe5, 0x6c, 0x34, 0x9c, 0x57, 0x1f, 0xbd, 0x06, 0x13, 0x82, 0xc5, 0x97, 0x14, 0x87, + 0x4d, 0xab, 0x9a, 0x1b, 0x06, 0x14, 0x27, 0xb0, 0x65, 0x6c, 0x67, 0xc6, 0x65, 0x4b, 0x0a, 0x23, + 0xe9, 0xd8, 0xce, 0x3a, 0x1c, 0xa7, 0x6a, 0xa0, 0x45, 0x98, 0xe4, 0x3c, 0x98, 0xeb, 0x6d, 0xf3, + 0x39, 0x11, 0xfe, 0x54, 0x6a, 0x4b, 0xdd, 0x32, 0xc1, 0x38, 0x89, 0x8f, 0x5e, 0x86, 0x31, 0x27, + 0xa8, 0xef, 0xb8, 0x11, 0xa9, 0x47, 0x9d, 0x80, 0x3b, 0x5a, 0x69, 0x66, 0x49, 0x8b, 0x1a, 0x0c, + 0x1b, 0x98, 0xf6, 0xdb, 0x30, 0x93, 0x11, 0x3b, 0x82, 0x2e, 0x1c, 0xa7, 0xed, 0xca, 0x6f, 0x4a, + 0xd8, 0x2e, 0x2f, 0x56, 0x2b, 0xf2, 0x6b, 0x34, 0x2c, 0xba, 0x3a, 0x59, 0x8c, 0x09, 0x2d, 0x55, + 0xa2, 0x5a, 0x9d, 0xab, 0x12, 0x80, 0x63, 0x1c, 0xfb, 0xbf, 0x17, 0x60, 0x32, 0x43, 0xb7, 0xc2, + 0xd2, 0xf5, 0x25, 0x1e, 0x29, 0x71, 0x76, 0x3e, 0x33, 0x54, 0x78, 0xe1, 0x08, 0xa1, 0xc2, 0x8b, + 0xbd, 0x42, 0x85, 0x0f, 0xbc, 0x93, 0x50, 0xe1, 0xe6, 0x88, 0x0d, 0xf6, 0x35, 0x62, 0x19, 0xe1, + 0xc5, 0x87, 0x8e, 0x18, 0x5e, 0xdc, 0x18, 0xf4, 0xe1, 0x3e, 0x06, 0xfd, 0x87, 0x0b, 0x30, 0x95, + 0x34, 0x9f, 0x3c, 0x01, 0xb9, 0xed, 0xeb, 0x86, 0xdc, 0xf6, 0x4a, 0x3f, 0xde, 0xb2, 0xb9, 0x32, + 0x5c, 0x9c, 0x90, 0xe1, 0x7e, 0xb0, 0x2f, 0x6a, 0xdd, 0xe5, 0xb9, 0x7f, 0xb3, 0x00, 0xa7, 0x33, + 0xdd, 0x75, 0x4f, 0x60, 0x6c, 0x6e, 0x19, 0x63, 0xf3, 0x6c, 0xdf, 0x9e, 0xc4, 0xb9, 0x03, 0x74, + 0x37, 0x31, 0x40, 0x57, 0xfb, 0x27, 0xd9, 0x7d, 0x94, 0xbe, 0x5a, 0x84, 0x0b, 0x99, 0xf5, 0x62, + 0xb1, 0xe7, 0xaa, 0x21, 0xf6, 0x7c, 0x3e, 0x21, 0xf6, 0xb4, 0xbb, 0xd7, 0x3e, 0x1e, 0x39, 0xa8, + 0xf0, 0x91, 0x65, 0x81, 0x10, 0x1e, 0x52, 0x06, 0x6a, 0xf8, 0xc8, 0x2a, 0x42, 0xd8, 0xa4, 0xfb, + 0xcd, 0x24, 0xfb, 0xfc, 0x57, 0x16, 0x9c, 0xcd, 0x9c, 0x9b, 0x13, 0x90, 0x75, 0xad, 0x9b, 0xb2, + 0xae, 0xa7, 0xfa, 0x5e, 0xad, 0x39, 0xc2, 0xaf, 0xdf, 0x1c, 0xc8, 0xf9, 0x16, 0xf6, 0x92, 0xbf, + 0x05, 0xa3, 0x4e, 0xbd, 0x4e, 0xc2, 0x70, 0xcd, 0x6f, 0xa8, 0x68, 0xc8, 0xcf, 0xb2, 0x77, 0x56, + 0x5c, 0x7c, 0x78, 0x30, 0x3f, 0x97, 0x24, 0x11, 0x83, 0xb1, 0x4e, 0x01, 0x7d, 0x1a, 0x46, 0x42, + 0x71, 0x6f, 0x8a, 0xb9, 0x7f, 0xa1, 0xcf, 0xc1, 0x71, 0x36, 0x49, 0xd3, 0x0c, 0xd7, 0xa4, 0x24, + 0x15, 0x8a, 0xa4, 0x19, 0xda, 0xa5, 0x70, 0xac, 0xa1, 0x5d, 0x9e, 0x07, 0xd8, 0x53, 0x8f, 0x81, + 0xa4, 0xfc, 0x41, 0x7b, 0x26, 0x68, 0x58, 0xe8, 0xe3, 0x30, 0x15, 0xf2, 0x78, 0x86, 0xcb, 0x4d, + 0x27, 0x64, 0x1e, 0x32, 0x62, 0x15, 0xb2, 0x90, 0x50, 0xb5, 0x04, 0x0c, 0xa7, 0xb0, 0xd1, 0xaa, + 0x6c, 0x95, 0x99, 0x7f, 0xf0, 0x85, 0x79, 0x39, 0x6e, 0x51, 0x98, 0x80, 0x9c, 0x4a, 0x0e, 0x3f, + 0x1b, 0x78, 0xad, 0x26, 0xfa, 0x34, 0x00, 0x5d, 0x3e, 0x42, 0x0e, 0x31, 0x9c, 0x7f, 0x78, 0xd2, + 0x53, 0xa5, 0x91, 0x69, 0xd0, 0xcb, 0xdc, 0x5a, 0xcb, 0x8a, 0x08, 0xd6, 0x08, 0xda, 0x3f, 0x3c, + 0x00, 0x8f, 0x77, 0x39, 0x23, 0xd1, 0xa2, 0xa9, 0x87, 0x7d, 0x3a, 0xf9, 0xb8, 0x9e, 0xcb, 0xac, + 0x6c, 0xbc, 0xb6, 0x13, 0x4b, 0xb1, 0xf0, 0x8e, 0x97, 0xe2, 0x0f, 0x58, 0x9a, 0xd8, 0x83, 0x9b, + 0x79, 0x7e, 0xec, 0x88, 0x67, 0xff, 0x31, 0xca, 0x41, 0xb6, 0x32, 0x84, 0x09, 0xcf, 0xf7, 0xdd, + 0x9d, 0xbe, 0xa5, 0x0b, 0x27, 0x2b, 0x25, 0xfe, 0x5d, 0x0b, 0xce, 0x77, 0x8d, 0xeb, 0xf1, 0x0d, + 0xc8, 0x30, 0xd8, 0x5f, 0xb0, 0xe0, 0x89, 0xcc, 0x1a, 0x86, 0x99, 0xd1, 0x55, 0x28, 0xd5, 0x69, + 0xa1, 0xe6, 0x9a, 0x19, 0xfb, 0xac, 0x4b, 0x00, 0x8e, 0x71, 0x8e, 0x18, 0xb3, 0xe4, 0xd7, 0x2c, + 0x48, 0x6d, 0xfa, 0x13, 0xb8, 0x7d, 0x2a, 0xe6, 0xed, 0xf3, 0xfe, 0x7e, 0x46, 0x33, 0xe7, 0xe2, + 0xf9, 0xd3, 0x49, 0x38, 0x93, 0xe3, 0x9a, 0xb4, 0x07, 0xd3, 0xdb, 0x75, 0x62, 0x3a, 0xbd, 0x76, + 0x0b, 0x1d, 0xd3, 0xd5, 0x43, 0x96, 0xa5, 0x33, 0x9d, 0x4e, 0xa1, 0xe0, 0x74, 0x13, 0xe8, 0x0b, + 0x16, 0x9c, 0x72, 0xee, 0x85, 0x2b, 0x94, 0x8b, 0x70, 0xeb, 0x4b, 0x4d, 0xbf, 0xbe, 0x4b, 0x8f, + 0x68, 0xb9, 0x11, 0x5e, 0xcc, 0x94, 0xec, 0xdc, 0xad, 0xa5, 0xf0, 0x8d, 0xe6, 0x59, 0x7e, 0xd7, + 0x2c, 0x2c, 0x9c, 0xd9, 0x16, 0xc2, 0x22, 0xe8, 0x3f, 0x7d, 0xa3, 0x74, 0x71, 0xcb, 0xce, 0xf2, + 0x21, 0xe3, 0xd7, 0xa2, 0x84, 0x60, 0x45, 0x07, 0x7d, 0x16, 0x4a, 0xdb, 0xd2, 0xb1, 0x33, 0xe3, + 0xda, 0x8d, 0x07, 0xb2, 0xbb, 0xbb, 0x2b, 0x57, 0xcf, 0x2a, 0x24, 0x1c, 0x13, 0x45, 0xaf, 0x41, + 0xd1, 0xdb, 0x0a, 0xbb, 0xa5, 0x48, 0x4d, 0xd8, 0xe1, 0xf1, 0xe0, 0x07, 0xeb, 0xab, 0x35, 0x4c, + 0x2b, 0xa2, 0xeb, 0x50, 0x0c, 0x36, 0x1b, 0x42, 0x2c, 0x99, 0xb9, 0x49, 0xf1, 0x52, 0x39, 0xa7, + 0x57, 0x8c, 0x12, 0x5e, 0x2a, 0x63, 0x4a, 0x02, 0x55, 0x61, 0x90, 0xf9, 0xf3, 0x88, 0x4b, 0x2e, + 0x93, 0x9d, 0xef, 0xe2, 0x17, 0xc7, 0x23, 0x24, 0x30, 0x04, 0xcc, 0x09, 0xa1, 0x0d, 0x18, 0xaa, + 0xb3, 0x74, 0x9a, 0x22, 0x58, 0xdc, 0x87, 0x32, 0x05, 0x90, 0x5d, 0xf2, 0x8c, 0x0a, 0x79, 0x1c, + 0xc3, 0xc0, 0x82, 0x16, 0xa3, 0x4a, 0xda, 0x3b, 0x5b, 0xa1, 0x48, 0xff, 0x9c, 0x4d, 0xb5, 0x4b, + 0xfa, 0x5c, 0x41, 0x95, 0x61, 0x60, 0x41, 0x0b, 0xbd, 0x02, 0x85, 0xad, 0xba, 0xf0, 0xd5, 0xc9, + 0x94, 0x44, 0x9a, 0xf1, 0x2b, 0x96, 0x86, 0x1e, 0x1c, 0xcc, 0x17, 0x56, 0x97, 0x71, 0x61, 0xab, + 0x8e, 0xd6, 0x61, 0x78, 0x8b, 0x7b, 0xbc, 0x0b, 0x61, 0xe3, 0x93, 0xd9, 0xce, 0xf8, 0x29, 0xa7, + 0x78, 0xee, 0xa6, 0x22, 0x00, 0x58, 0x12, 0x61, 0x31, 0xf4, 0x95, 0xe7, 0xbe, 0x88, 0xab, 0xb6, + 0x70, 0xb4, 0x68, 0x0b, 0x9c, 0xe9, 0x88, 0xfd, 0xff, 0xb1, 0x46, 0x91, 0xae, 0x6a, 0x47, 0xe6, + 0xe0, 0x17, 0x11, 0x66, 0x32, 0x57, 0xb5, 0x4a, 0xd4, 0xdf, 0x6d, 0x55, 0x2b, 0x24, 0x1c, 0x13, + 0x45, 0xbb, 0x30, 0xbe, 0x17, 0xb6, 0x77, 0x88, 0xdc, 0xd2, 0x2c, 0xe0, 0x4c, 0xce, 0xbd, 0x7c, + 0x47, 0x20, 0xba, 0x41, 0xd4, 0x71, 0x9a, 0xa9, 0x53, 0x88, 0xe9, 0xf4, 0xef, 0xe8, 0xc4, 0xb0, + 0x49, 0x9b, 0x0e, 0xff, 0x5b, 0x1d, 0x7f, 0x73, 0x3f, 0x22, 0x22, 0x1c, 0x5a, 0xe6, 0xf0, 0xbf, + 0xc1, 0x51, 0xd2, 0xc3, 0x2f, 0x00, 0x58, 0x12, 0x41, 0x77, 0xc4, 0xf0, 0xb0, 0xd3, 0x73, 0x2a, + 0x3f, 0x66, 0xe9, 0xa2, 0x44, 0xca, 0x19, 0x14, 0x76, 0x5a, 0xc6, 0xa4, 0xd8, 0x29, 0xd9, 0xde, + 0xf1, 0x23, 0xdf, 0x4b, 0x9c, 0xd0, 0xd3, 0xf9, 0xa7, 0x64, 0x35, 0x03, 0x3f, 0x7d, 0x4a, 0x66, + 0x61, 0xe1, 0xcc, 0xb6, 0x50, 0x03, 0x26, 0xda, 0x7e, 0x10, 0xdd, 0xf3, 0x03, 0xb9, 0xbe, 0x50, + 0x17, 0x61, 0x89, 0x81, 0x29, 0x5a, 0x64, 0x91, 0x06, 0x4d, 0x08, 0x4e, 0xd0, 0x44, 0x9f, 0x80, + 0xe1, 0xb0, 0xee, 0x34, 0x49, 0xe5, 0xd6, 0xec, 0x4c, 0xfe, 0xf5, 0x53, 0xe3, 0x28, 0x39, 0xab, + 0x8b, 0x07, 0xdc, 0xe7, 0x28, 0x58, 0x92, 0x43, 0xab, 0x30, 0xc8, 0x72, 0xa4, 0xb1, 0xd8, 0x7d, + 0x39, 0xa1, 0x57, 0x53, 0x56, 0xd1, 0xfc, 0x6c, 0x62, 0xc5, 0x98, 0x57, 0xa7, 0x7b, 0x40, 0xbc, + 0x19, 0xfc, 0x70, 0xf6, 0x74, 0xfe, 0x1e, 0x10, 0x4f, 0x8d, 0x5b, 0xb5, 0x6e, 0x7b, 0x40, 0x21, + 0xe1, 0x98, 0x28, 0x3d, 0x99, 0xe9, 0x69, 0x7a, 0xa6, 0x8b, 0x39, 0x4f, 0xee, 0x59, 0xca, 0x4e, + 0x66, 0x7a, 0x92, 0x52, 0x12, 0xf6, 0x1f, 0x0c, 0xa7, 0x79, 0x16, 0xf6, 0xca, 0xfc, 0x2e, 0x2b, + 0xa5, 0x80, 0xfc, 0x70, 0xbf, 0x42, 0xaf, 0x63, 0x64, 0xc1, 0xbf, 0x60, 0xc1, 0x99, 0x76, 0xe6, + 0x87, 0x08, 0x06, 0xa0, 0x3f, 0xd9, 0x19, 0xff, 0x74, 0x15, 0xe7, 0x31, 0x1b, 0x8e, 0x73, 0x5a, + 0x4a, 0x3e, 0x73, 0x8a, 0xef, 0xf8, 0x99, 0xb3, 0x06, 0x23, 0x8c, 0xc9, 0xec, 0x91, 0x5e, 0x3a, + 0xf9, 0xda, 0x63, 0xac, 0xc4, 0xb2, 0xa8, 0x88, 0x15, 0x09, 0xf4, 0x83, 0x16, 0x9c, 0x4f, 0x76, + 0x1d, 0x13, 0x06, 0x16, 0xc1, 0x21, 0xf9, 0x03, 0x77, 0x55, 0x7c, 0x7f, 0x8a, 0xff, 0x37, 0x90, + 0x0f, 0x7b, 0x21, 0xe0, 0xee, 0x8d, 0xa1, 0x72, 0xc6, 0x0b, 0x7b, 0xc8, 0xd4, 0x2a, 0xf4, 0xf1, + 0xca, 0x7e, 0x11, 0xc6, 0x5a, 0x7e, 0xc7, 0x8b, 0x84, 0xf5, 0x8f, 0xb0, 0x44, 0x60, 0x1a, 0xf8, + 0x35, 0xad, 0x1c, 0x1b, 0x58, 0x89, 0xb7, 0xf9, 0xc8, 0x43, 0xbf, 0xcd, 0xdf, 0x84, 0x31, 0x4f, + 0x33, 0x57, 0x15, 0xfc, 0xc0, 0xe5, 0xfc, 0xc0, 0xae, 0xba, 0x71, 0x2b, 0xef, 0xa5, 0x5e, 0x82, + 0x0d, 0x6a, 0x27, 0xfb, 0xe0, 0xfb, 0xb2, 0x95, 0xc1, 0xd4, 0x73, 0x11, 0xc0, 0x47, 0x4d, 0x11, + 0xc0, 0xe5, 0xa4, 0x08, 0x20, 0x25, 0x51, 0x36, 0x5e, 0xff, 0xfd, 0xe7, 0xad, 0xe9, 0x37, 0xfa, + 0xa1, 0xdd, 0x84, 0x8b, 0xbd, 0xae, 0x25, 0x66, 0x06, 0xd6, 0x50, 0xfa, 0xc3, 0xd8, 0x0c, 0xac, + 0x51, 0x29, 0x63, 0x06, 0xe9, 0x37, 0xae, 0x8e, 0xfd, 0x5f, 0x2d, 0x28, 0x56, 0xfd, 0xc6, 0x09, + 0x3c, 0x78, 0x3f, 0x66, 0x3c, 0x78, 0x1f, 0xcf, 0xbe, 0x10, 0x1b, 0xb9, 0xf2, 0xf0, 0x95, 0x84, + 0x3c, 0xfc, 0x7c, 0x1e, 0x81, 0xee, 0xd2, 0xef, 0x9f, 0x2a, 0xc2, 0x68, 0xd5, 0x6f, 0x28, 0x1b, + 0xec, 0xdf, 0x7c, 0x18, 0x1b, 0xec, 0xdc, 0xec, 0x0b, 0x1a, 0x65, 0x66, 0x3d, 0x26, 0x7d, 0x4e, + 0xbf, 0xc1, 0x4c, 0xb1, 0xef, 0x12, 0x77, 0x7b, 0x27, 0x22, 0x8d, 0xe4, 0xe7, 0x9c, 0x9c, 0x29, + 0xf6, 0x7f, 0xb1, 0x60, 0x32, 0xd1, 0x3a, 0x6a, 0xc2, 0x78, 0x53, 0x97, 0xb6, 0x8a, 0x75, 0xfa, + 0x50, 0x82, 0x5a, 0x61, 0xca, 0xaa, 0x15, 0x61, 0x93, 0x38, 0x5a, 0x00, 0x50, 0xea, 0x47, 0x29, + 0xd6, 0x63, 0x5c, 0xbf, 0xd2, 0x4f, 0x86, 0x58, 0xc3, 0x40, 0x2f, 0xc1, 0x68, 0xe4, 0xb7, 0xfd, + 0xa6, 0xbf, 0xbd, 0x7f, 0x83, 0xc8, 0x48, 0x4e, 0xca, 0x40, 0x6d, 0x23, 0x06, 0x61, 0x1d, 0xcf, + 0xfe, 0x99, 0x22, 0xff, 0x50, 0x2f, 0x72, 0xdf, 0x5b, 0x93, 0xef, 0xee, 0x35, 0xf9, 0x55, 0x0b, + 0xa6, 0x68, 0xeb, 0xcc, 0x06, 0x46, 0x5e, 0xb6, 0x2a, 0xa0, 0xb3, 0xd5, 0x25, 0xa0, 0xf3, 0x65, + 0x7a, 0x76, 0x35, 0xfc, 0x4e, 0x24, 0x24, 0x68, 0xda, 0xe1, 0x44, 0x4b, 0xb1, 0x80, 0x0a, 0x3c, + 0x12, 0x04, 0xc2, 0x6f, 0x4f, 0xc7, 0x23, 0x41, 0x80, 0x05, 0x54, 0xc6, 0x7b, 0x1e, 0xc8, 0x8e, + 0xf7, 0xcc, 0xe3, 0x52, 0x0a, 0x6b, 0x09, 0xc1, 0xf6, 0x68, 0x71, 0x29, 0xa5, 0x19, 0x45, 0x8c, + 0x63, 0xff, 0x7c, 0x11, 0xc6, 0xaa, 0x7e, 0x23, 0x56, 0x00, 0xbe, 0x68, 0x28, 0x00, 0x2f, 0x26, + 0x14, 0x80, 0x53, 0x3a, 0xee, 0x7b, 0xea, 0xbe, 0xaf, 0x97, 0xba, 0xef, 0x9f, 0x58, 0x6c, 0xd6, + 0xca, 0xeb, 0x35, 0x6e, 0x52, 0x85, 0x9e, 0x83, 0x51, 0x76, 0x20, 0x31, 0x47, 0x51, 0xa9, 0x15, + 0x63, 0x79, 0x8c, 0xd6, 0xe3, 0x62, 0xac, 0xe3, 0xa0, 0x2b, 0x30, 0x12, 0x12, 0x27, 0xa8, 0xef, + 0xa8, 0x33, 0x4e, 0xa8, 0xb0, 0x78, 0x19, 0x56, 0x50, 0xf4, 0x46, 0x1c, 0x12, 0xb1, 0x98, 0xef, + 0x78, 0xa6, 0xf7, 0x87, 0x6f, 0x91, 0xfc, 0x38, 0x88, 0xf6, 0x5d, 0x40, 0x69, 0xfc, 0x3e, 0x62, + 0x81, 0xcd, 0x9b, 0xb1, 0xc0, 0x4a, 0xa9, 0x38, 0x60, 0x7f, 0x69, 0xc1, 0x44, 0xd5, 0x6f, 0xd0, + 0xad, 0xfb, 0xcd, 0xb4, 0x4f, 0xf5, 0x78, 0xb0, 0x43, 0x5d, 0xe2, 0xc1, 0x5e, 0x82, 0xc1, 0xaa, + 0xdf, 0xa8, 0x54, 0xbb, 0xb9, 0x7a, 0xdb, 0x7f, 0xcb, 0x82, 0xe1, 0xaa, 0xdf, 0x38, 0x01, 0xe1, + 0xfc, 0x47, 0x4d, 0xe1, 0xfc, 0x63, 0x39, 0xeb, 0x26, 0x47, 0x1e, 0xff, 0x37, 0x06, 0x60, 0x9c, + 0xf6, 0xd3, 0xdf, 0x96, 0x53, 0x69, 0x0c, 0x9b, 0xd5, 0xc7, 0xb0, 0x51, 0x5e, 0xd8, 0x6f, 0x36, + 0xfd, 0x7b, 0xc9, 0x69, 0x5d, 0x65, 0xa5, 0x58, 0x40, 0xd1, 0x33, 0x30, 0xd2, 0x0e, 0xc8, 0x9e, + 0xeb, 0x0b, 0x26, 0x53, 0x53, 0x75, 0x54, 0x45, 0x39, 0x56, 0x18, 0xf4, 0x71, 0x16, 0xba, 0x5e, + 0x9d, 0xd4, 0x48, 0xdd, 0xf7, 0x1a, 0x5c, 0x7e, 0x5d, 0x14, 0x39, 0x1d, 0xb4, 0x72, 0x6c, 0x60, + 0xa1, 0xbb, 0x50, 0x62, 0xff, 0xd9, 0xb1, 0x73, 0xf4, 0xec, 0xa0, 0x22, 0x5b, 0x9c, 0x20, 0x80, + 0x63, 0x5a, 0xe8, 0x79, 0x80, 0x48, 0x06, 0xfe, 0x0e, 0x45, 0xdc, 0x27, 0xc5, 0x90, 0xab, 0x90, + 0xe0, 0x21, 0xd6, 0xb0, 0xd0, 0xd3, 0x50, 0x8a, 0x1c, 0xb7, 0x79, 0xd3, 0xf5, 0x48, 0xc8, 0xe4, + 0xd2, 0x45, 0x99, 0xb4, 0x4d, 0x14, 0xe2, 0x18, 0x4e, 0x19, 0x22, 0x16, 0x14, 0x81, 0xe7, 0x16, + 0x1e, 0x61, 0xd8, 0x8c, 0x21, 0xba, 0xa9, 0x4a, 0xb1, 0x86, 0x81, 0x76, 0xe0, 0x9c, 0xeb, 0xb1, + 0xfc, 0x07, 0xa4, 0xb6, 0xeb, 0xb6, 0x37, 0x6e, 0xd6, 0xee, 0x90, 0xc0, 0xdd, 0xda, 0x5f, 0x72, + 0xea, 0xbb, 0xc4, 0x93, 0x79, 0x1f, 0xdf, 0x2f, 0xba, 0x78, 0xae, 0xd2, 0x05, 0x17, 0x77, 0xa5, + 0x64, 0xbf, 0x0c, 0xa7, 0xab, 0x7e, 0xa3, 0xea, 0x07, 0xd1, 0xaa, 0x1f, 0xdc, 0x73, 0x82, 0x86, + 0x5c, 0x29, 0xf3, 0x32, 0x45, 0x0c, 0x3d, 0x0a, 0x07, 0xf9, 0x41, 0x61, 0x24, 0x2a, 0x7b, 0x81, + 0x31, 0x5f, 0x47, 0xf4, 0xb0, 0xa9, 0x33, 0x36, 0x40, 0x25, 0x03, 0xb9, 0xe6, 0x44, 0x04, 0xdd, + 0x62, 0x49, 0x8e, 0xe3, 0x1b, 0x51, 0x54, 0x7f, 0x4a, 0x4b, 0x72, 0x1c, 0x03, 0x33, 0xaf, 0x50, + 0xb3, 0xbe, 0xfd, 0xdf, 0x06, 0xd9, 0xe1, 0x98, 0x48, 0x28, 0x81, 0x3e, 0x03, 0x13, 0x21, 0xb9, + 0xe9, 0x7a, 0x9d, 0xfb, 0x52, 0x26, 0xd0, 0xc5, 0x47, 0xaa, 0xb6, 0xa2, 0x63, 0x72, 0xc9, 0xa2, + 0x59, 0x86, 0x13, 0xd4, 0x50, 0x0b, 0x26, 0xee, 0xb9, 0x5e, 0xc3, 0xbf, 0x17, 0x4a, 0xfa, 0x23, + 0xf9, 0x02, 0xc6, 0xbb, 0x1c, 0x33, 0xd1, 0x47, 0xa3, 0xb9, 0xbb, 0x06, 0x31, 0x9c, 0x20, 0x4e, + 0x17, 0x60, 0xd0, 0xf1, 0x16, 0xc3, 0xdb, 0x21, 0x09, 0x44, 0xba, 0x6a, 0xb6, 0x00, 0xb1, 0x2c, + 0xc4, 0x31, 0x9c, 0x2e, 0x40, 0xf6, 0xe7, 0x5a, 0xe0, 0x77, 0x78, 0x78, 0x7e, 0xb1, 0x00, 0xb1, + 0x2a, 0xc5, 0x1a, 0x06, 0xdd, 0xa0, 0xec, 0xdf, 0xba, 0xef, 0x61, 0xdf, 0x8f, 0xe4, 0x96, 0x66, + 0x09, 0x52, 0xb5, 0x72, 0x6c, 0x60, 0xa1, 0x55, 0x40, 0x61, 0xa7, 0xdd, 0x6e, 0x32, 0xe3, 0x0b, + 0xa7, 0xc9, 0x48, 0x71, 0xc5, 0x77, 0x91, 0x47, 0x2d, 0xad, 0xa5, 0xa0, 0x38, 0xa3, 0x06, 0x3d, + 0xab, 0xb7, 0x44, 0x57, 0x07, 0x59, 0x57, 0xb9, 0x32, 0xa2, 0xc6, 0xfb, 0x29, 0x61, 0x68, 0x05, + 0x86, 0xc3, 0xfd, 0xb0, 0x1e, 0x89, 0xf0, 0x6b, 0x39, 0x39, 0x83, 0x6a, 0x0c, 0x45, 0x4b, 0x59, + 0xc7, 0xab, 0x60, 0x59, 0x17, 0xd5, 0x61, 0x46, 0x50, 0x5c, 0xde, 0x71, 0x3c, 0x95, 0x81, 0x85, + 0xdb, 0xa0, 0x3e, 0xf7, 0xe0, 0x60, 0x7e, 0x46, 0xb4, 0xac, 0x83, 0x0f, 0x0f, 0xe6, 0xcf, 0x54, + 0xfd, 0x46, 0x06, 0x04, 0x67, 0x51, 0xe3, 0x8b, 0xaf, 0x5e, 0xf7, 0x5b, 0xed, 0x6a, 0xe0, 0x6f, + 0xb9, 0x4d, 0xd2, 0x4d, 0xa1, 0x53, 0x33, 0x30, 0xc5, 0xe2, 0x33, 0xca, 0x70, 0x82, 0x9a, 0xfd, + 0xed, 0x8c, 0x9f, 0x61, 0x19, 0x9a, 0xa3, 0x4e, 0x40, 0x50, 0x0b, 0xc6, 0xdb, 0x6c, 0x9b, 0x88, + 0xa0, 0xf9, 0x62, 0xad, 0xbf, 0xd8, 0xa7, 0x60, 0xe2, 0x1e, 0xbd, 0x06, 0x94, 0xe0, 0x90, 0xbd, + 0xf8, 0xaa, 0x3a, 0x39, 0x6c, 0x52, 0xb7, 0x7f, 0xfc, 0x31, 0x76, 0x23, 0xd6, 0xb8, 0xb4, 0x61, + 0x58, 0x98, 0xbc, 0x8b, 0xa7, 0xd5, 0x5c, 0xbe, 0xd8, 0x2b, 0x9e, 0x16, 0x61, 0x36, 0x8f, 0x65, + 0x5d, 0xf4, 0x69, 0x98, 0xa0, 0x2f, 0x15, 0x2d, 0xf5, 0xc9, 0xa9, 0xfc, 0xd0, 0x04, 0x71, 0xc6, + 0x13, 0x2d, 0xa1, 0x86, 0x5e, 0x19, 0x27, 0x88, 0xa1, 0x37, 0x98, 0x71, 0x86, 0x99, 0x55, 0xa5, + 0x07, 0x69, 0xdd, 0x0e, 0x43, 0x92, 0xd5, 0x88, 0xe4, 0x65, 0x6c, 0xb1, 0x1f, 0x6d, 0xc6, 0x16, + 0x74, 0x13, 0xc6, 0x45, 0x9a, 0x62, 0xb1, 0x72, 0x8b, 0x86, 0x34, 0x6e, 0x1c, 0xeb, 0xc0, 0xc3, + 0x64, 0x01, 0x36, 0x2b, 0xa3, 0x6d, 0x38, 0xaf, 0xa5, 0x0d, 0xba, 0x16, 0x38, 0x4c, 0xa5, 0xee, + 0xb2, 0xe3, 0x54, 0xbb, 0xab, 0x9f, 0x78, 0x70, 0x30, 0x7f, 0x7e, 0xa3, 0x1b, 0x22, 0xee, 0x4e, + 0x07, 0xdd, 0x82, 0xd3, 0xdc, 0xb1, 0xb6, 0x4c, 0x9c, 0x46, 0xd3, 0xf5, 0x14, 0x33, 0xc0, 0xb7, + 0xfc, 0xd9, 0x07, 0x07, 0xf3, 0xa7, 0x17, 0xb3, 0x10, 0x70, 0x76, 0x3d, 0xf4, 0x51, 0x28, 0x35, + 0xbc, 0x50, 0x8c, 0xc1, 0x90, 0x91, 0x99, 0xa9, 0x54, 0x5e, 0xaf, 0xa9, 0xef, 0x8f, 0xff, 0xe0, + 0xb8, 0x02, 0xda, 0xe6, 0x12, 0x5b, 0x25, 0x20, 0x19, 0x4e, 0x45, 0x13, 0x4a, 0x8a, 0xda, 0x0c, + 0xd7, 0x3a, 0xae, 0xaa, 0x50, 0x16, 0xe7, 0x86, 0xd7, 0x9d, 0x41, 0x18, 0xbd, 0x0e, 0x88, 0xbe, + 0x20, 0xdc, 0x3a, 0x59, 0xac, 0xb3, 0x8c, 0x0c, 0x4c, 0xc0, 0x3d, 0x62, 0x3a, 0x7b, 0xd5, 0x52, + 0x18, 0x38, 0xa3, 0x16, 0xba, 0x4e, 0x4f, 0x15, 0xbd, 0x54, 0x9c, 0x5a, 0x2a, 0x8f, 0x5e, 0x99, + 0xb4, 0x03, 0x52, 0x77, 0x22, 0xd2, 0x30, 0x29, 0xe2, 0x44, 0x3d, 0xd4, 0x80, 0x73, 0x4e, 0x27, + 0xf2, 0x99, 0x30, 0xdc, 0x44, 0xdd, 0xf0, 0x77, 0x89, 0xc7, 0xf4, 0x50, 0x23, 0x2c, 0x4a, 0xd1, + 0xb9, 0xc5, 0x2e, 0x78, 0xb8, 0x2b, 0x15, 0xca, 0x25, 0xaa, 0xc4, 0xb9, 0x60, 0xc6, 0x48, 0xca, + 0x48, 0x9e, 0xfb, 0x12, 0x8c, 0xee, 0xf8, 0x61, 0xb4, 0x4e, 0xa2, 0x7b, 0x7e, 0xb0, 0x2b, 0x42, + 0x5d, 0xc6, 0xe1, 0x91, 0x63, 0x10, 0xd6, 0xf1, 0xe8, 0x33, 0x90, 0x59, 0x49, 0x54, 0xca, 0x4c, + 0x41, 0x3d, 0x12, 0x9f, 0x31, 0xd7, 0x79, 0x31, 0x96, 0x70, 0x89, 0x5a, 0xa9, 0x2e, 0x33, 0x65, + 0x73, 0x02, 0xb5, 0x52, 0x5d, 0xc6, 0x12, 0x4e, 0x97, 0x6b, 0xb8, 0xe3, 0x04, 0xa4, 0x1a, 0xf8, + 0x75, 0x12, 0x6a, 0x41, 0xb9, 0x1f, 0xe7, 0x81, 0x3c, 0xe9, 0x72, 0xad, 0x65, 0x21, 0xe0, 0xec, + 0x7a, 0x88, 0xa4, 0x53, 0x66, 0x4d, 0xe4, 0x6b, 0x09, 0xd2, 0xfc, 0x4c, 0x9f, 0x59, 0xb3, 0x3c, + 0x98, 0x52, 0xc9, 0xba, 0x78, 0xe8, 0xce, 0x70, 0x76, 0x92, 0xad, 0xed, 0xfe, 0xe3, 0x7e, 0x2a, + 0xbd, 0x4b, 0x25, 0x41, 0x09, 0xa7, 0x68, 0x1b, 0x61, 0xb0, 0xa6, 0x7a, 0x86, 0xc1, 0xba, 0x0a, + 0xa5, 0xb0, 0xb3, 0xd9, 0xf0, 0x5b, 0x8e, 0xeb, 0x31, 0x65, 0xb3, 0xf6, 0x1e, 0xa9, 0x49, 0x00, + 0x8e, 0x71, 0xd0, 0x2a, 0x8c, 0x38, 0x52, 0xa9, 0x82, 0xf2, 0x63, 0xa0, 0x28, 0x55, 0x0a, 0x0f, + 0x0b, 0x20, 0xd5, 0x28, 0xaa, 0x2e, 0x7a, 0x15, 0xc6, 0x85, 0x63, 0xa8, 0xc8, 0x13, 0x39, 0x63, + 0x7a, 0xef, 0xd4, 0x74, 0x20, 0x36, 0x71, 0xd1, 0x6d, 0x18, 0x8d, 0xfc, 0x26, 0x73, 0x41, 0xa1, + 0x6c, 0xde, 0x99, 0xfc, 0x10, 0x6c, 0x1b, 0x0a, 0x4d, 0x97, 0x67, 0xaa, 0xaa, 0x58, 0xa7, 0x83, + 0x36, 0xf8, 0x7a, 0x67, 0xc1, 0xa9, 0x49, 0x38, 0xfb, 0x58, 0xfe, 0x9d, 0xa4, 0x62, 0x58, 0x9b, + 0xdb, 0x41, 0xd4, 0xc4, 0x3a, 0x19, 0x74, 0x0d, 0xa6, 0xdb, 0x81, 0xeb, 0xb3, 0x35, 0xa1, 0xf4, + 0x69, 0xb3, 0x66, 0x66, 0x9c, 0x6a, 0x12, 0x01, 0xa7, 0xeb, 0x30, 0xbf, 0x5e, 0x51, 0x38, 0x7b, + 0x96, 0xa7, 0x92, 0xe6, 0xcf, 0x3b, 0x5e, 0x86, 0x15, 0x14, 0xad, 0xb1, 0x93, 0x98, 0x4b, 0x26, + 0x66, 0xe7, 0xf2, 0xc3, 0xae, 0xe8, 0x12, 0x0c, 0xce, 0xbc, 0xaa, 0xbf, 0x38, 0xa6, 0x80, 0x1a, + 0x5a, 0xce, 0x41, 0xfa, 0x62, 0x08, 0x67, 0xcf, 0x75, 0x31, 0x55, 0x4b, 0x3c, 0x2f, 0x62, 0x86, + 0xc0, 0x28, 0x0e, 0x71, 0x82, 0x26, 0xfa, 0x38, 0x4c, 0x89, 0x08, 0x71, 0xf1, 0x30, 0x9d, 0x8f, + 0x0d, 0x7b, 0x71, 0x02, 0x86, 0x53, 0xd8, 0x3c, 0x68, 0xbf, 0xb3, 0xd9, 0x24, 0xe2, 0xe8, 0xbb, + 0xe9, 0x7a, 0xbb, 0xe1, 0xec, 0x05, 0x76, 0x3e, 0x88, 0xa0, 0xfd, 0x49, 0x28, 0xce, 0xa8, 0x81, + 0x36, 0x60, 0xaa, 0x1d, 0x10, 0xd2, 0x62, 0x8c, 0xbe, 0xb8, 0xcf, 0xe6, 0xb9, 0x5b, 0x3b, 0xed, + 0x49, 0x35, 0x01, 0x3b, 0xcc, 0x28, 0xc3, 0x29, 0x0a, 0xe8, 0x1e, 0x8c, 0xf8, 0x7b, 0x24, 0xd8, + 0x21, 0x4e, 0x63, 0xf6, 0x62, 0x17, 0x43, 0x73, 0x71, 0xb9, 0xdd, 0x12, 0xb8, 0x09, 0x1d, 0xbc, + 0x2c, 0xee, 0xad, 0x83, 0x97, 0x8d, 0xa1, 0x1f, 0xb2, 0xe0, 0xac, 0x14, 0xdb, 0xd7, 0xda, 0x74, + 0xd4, 0x97, 0x7d, 0x2f, 0x8c, 0x02, 0xee, 0x88, 0xfd, 0x44, 0xbe, 0x73, 0xf2, 0x46, 0x4e, 0x25, + 0x25, 0x1c, 0x3d, 0x9b, 0x87, 0x11, 0xe2, 0xfc, 0x16, 0xd1, 0x32, 0x4c, 0x87, 0x24, 0x92, 0x87, + 0xd1, 0x62, 0xb8, 0xfa, 0x46, 0x79, 0x7d, 0xf6, 0x12, 0xf7, 0x22, 0xa7, 0x9b, 0xa1, 0x96, 0x04, + 0xe2, 0x34, 0xfe, 0xdc, 0xb7, 0xc2, 0x74, 0xea, 0xfa, 0x3f, 0x4a, 0x32, 0x92, 0xb9, 0x5d, 0x18, + 0x37, 0x86, 0xf8, 0x91, 0xea, 0x70, 0xff, 0xc5, 0x30, 0x94, 0x94, 0x7e, 0x0f, 0x5d, 0x35, 0xd5, + 0xb6, 0x67, 0x93, 0x6a, 0xdb, 0x11, 0xfa, 0xae, 0xd7, 0x35, 0xb5, 0x1b, 0x19, 0xb1, 0xb3, 0xf2, + 0x36, 0x74, 0xff, 0x4e, 0xd1, 0x9a, 0xb8, 0xb6, 0xd8, 0xb7, 0xfe, 0x77, 0xa0, 0xab, 0x04, 0xf8, + 0x1a, 0x4c, 0x7b, 0x3e, 0xe3, 0x39, 0x49, 0x43, 0x32, 0x14, 0x8c, 0x6f, 0x28, 0xe9, 0xc1, 0x28, + 0x12, 0x08, 0x38, 0x5d, 0x87, 0x36, 0xc8, 0x2f, 0xfe, 0xa4, 0xc8, 0x99, 0xf3, 0x05, 0x58, 0x40, + 0xd1, 0x25, 0x18, 0x6c, 0xfb, 0x8d, 0x4a, 0x55, 0xf0, 0x9b, 0x5a, 0x96, 0xdc, 0x46, 0xa5, 0x8a, + 0x39, 0x0c, 0x2d, 0xc2, 0x10, 0xfb, 0x11, 0xce, 0x8e, 0xe5, 0x47, 0x1d, 0x60, 0x35, 0xb4, 0x54, + 0x2f, 0xac, 0x02, 0x16, 0x15, 0x99, 0xe8, 0x8b, 0x32, 0xe9, 0x4c, 0xf4, 0x35, 0xfc, 0x90, 0xa2, + 0x2f, 0x49, 0x00, 0xc7, 0xb4, 0xd0, 0x7d, 0x38, 0x6d, 0x3c, 0x8c, 0xf8, 0x12, 0x21, 0xa1, 0xf0, + 0x7c, 0xbe, 0xd4, 0xf5, 0x45, 0x24, 0xf4, 0xc5, 0xe7, 0x45, 0xa7, 0x4f, 0x57, 0xb2, 0x28, 0xe1, + 0xec, 0x06, 0x50, 0x13, 0xa6, 0xeb, 0xa9, 0x56, 0x47, 0xfa, 0x6f, 0x55, 0x4d, 0x68, 0xba, 0xc5, + 0x34, 0x61, 0xf4, 0x2a, 0x8c, 0xbc, 0xe5, 0x87, 0xec, 0xac, 0x16, 0x3c, 0xb2, 0x74, 0x9b, 0x1d, + 0x79, 0xe3, 0x56, 0x8d, 0x95, 0x1f, 0x1e, 0xcc, 0x8f, 0x56, 0xfd, 0x86, 0xfc, 0x8b, 0x55, 0x05, + 0xf4, 0xbd, 0x16, 0xcc, 0xa5, 0x5f, 0x5e, 0xaa, 0xd3, 0xe3, 0xfd, 0x77, 0xda, 0x16, 0x8d, 0xce, + 0xad, 0xe4, 0x92, 0xc3, 0x5d, 0x9a, 0xb2, 0x7f, 0x85, 0xeb, 0x76, 0x85, 0x06, 0x88, 0x84, 0x9d, + 0xe6, 0x49, 0x64, 0xb8, 0x5c, 0x31, 0x94, 0x53, 0x0f, 0x6d, 0x3f, 0xf0, 0x1b, 0x16, 0xb3, 0x1f, + 0x38, 0x41, 0x47, 0x81, 0x37, 0x60, 0x24, 0x92, 0x79, 0x4a, 0xbb, 0x24, 0xe5, 0xd4, 0x3a, 0xc5, + 0x6c, 0x28, 0x14, 0xc7, 0xaa, 0x52, 0x92, 0x2a, 0x32, 0xf6, 0x3f, 0xe4, 0x33, 0x20, 0x21, 0x27, + 0xa0, 0x03, 0x28, 0x9b, 0x3a, 0x80, 0xf9, 0x1e, 0x5f, 0x90, 0xa3, 0x0b, 0xf8, 0x07, 0x66, 0xbf, + 0x99, 0xa4, 0xe6, 0xdd, 0x6e, 0xb8, 0x62, 0xff, 0xa8, 0x05, 0xa7, 0xb2, 0x2c, 0x3d, 0xe9, 0x2b, + 0x83, 0xcb, 0x89, 0x94, 0x21, 0x8f, 0x1a, 0xc1, 0x3b, 0xa2, 0x1c, 0x2b, 0x8c, 0xbe, 0x13, 0x65, + 0x1d, 0x2d, 0xfa, 0xeb, 0x2d, 0x18, 0xaf, 0x06, 0x44, 0xbb, 0xd0, 0x5e, 0xe3, 0x6e, 0xd4, 0xbc, + 0x3f, 0xcf, 0x1c, 0xd9, 0x85, 0xda, 0xfe, 0xd9, 0x02, 0x9c, 0xe2, 0x9a, 0xf8, 0xc5, 0x3d, 0xdf, + 0x6d, 0x54, 0xfd, 0x86, 0x48, 0x72, 0xf6, 0x29, 0x18, 0x6b, 0x6b, 0xc2, 0xbd, 0x6e, 0x91, 0x0c, + 0x75, 0x21, 0x60, 0x2c, 0x8e, 0xd0, 0x4b, 0xb1, 0x41, 0x0b, 0x35, 0x60, 0x8c, 0xec, 0xb9, 0x75, + 0xa5, 0xce, 0x2d, 0x1c, 0xf9, 0x72, 0x51, 0xad, 0xac, 0x68, 0x74, 0xb0, 0x41, 0xf5, 0x11, 0xa4, + 0xaf, 0xb5, 0x7f, 0xcc, 0x82, 0xc7, 0x72, 0xe2, 0x1e, 0xd2, 0xe6, 0xee, 0x31, 0x9b, 0x07, 0x91, + 0x09, 0x53, 0x35, 0xc7, 0x2d, 0x21, 0xb0, 0x80, 0xa2, 0x4f, 0x00, 0x70, 0x4b, 0x06, 0xfa, 0xcc, + 0xed, 0x15, 0x20, 0xce, 0x88, 0x6d, 0xa5, 0x85, 0x29, 0x92, 0xf5, 0xb1, 0x46, 0xcb, 0xfe, 0xe9, + 0x22, 0x0c, 0xf2, 0x4c, 0xe4, 0xab, 0x30, 0xbc, 0xc3, 0x53, 0x3f, 0xf4, 0x93, 0x65, 0x22, 0x16, + 0x40, 0xf0, 0x02, 0x2c, 0x2b, 0xa3, 0x35, 0x98, 0xe1, 0xa9, 0x33, 0x9a, 0x65, 0xd2, 0x74, 0xf6, + 0xa5, 0xb4, 0x8c, 0xa7, 0x9d, 0x54, 0x52, 0xc3, 0x4a, 0x1a, 0x05, 0x67, 0xd5, 0x43, 0xaf, 0xc1, + 0x04, 0x7d, 0xbd, 0xf8, 0x9d, 0x48, 0x52, 0xe2, 0x49, 0x33, 0xd4, 0x73, 0x69, 0xc3, 0x80, 0xe2, + 0x04, 0x36, 0x7d, 0x40, 0xb7, 0x53, 0x72, 0xc1, 0xc1, 0xf8, 0x01, 0x6d, 0xca, 0x02, 0x4d, 0x5c, + 0x66, 0xe2, 0xd9, 0x61, 0x06, 0xad, 0x1b, 0x3b, 0x01, 0x09, 0x77, 0xfc, 0x66, 0x83, 0x31, 0x5a, + 0x83, 0x9a, 0x89, 0x67, 0x02, 0x8e, 0x53, 0x35, 0x28, 0x95, 0x2d, 0xc7, 0x6d, 0x76, 0x02, 0x12, + 0x53, 0x19, 0x32, 0xa9, 0xac, 0x26, 0xe0, 0x38, 0x55, 0x83, 0xae, 0xa3, 0xd3, 0xd5, 0xc0, 0xa7, + 0x87, 0x97, 0x0c, 0xe6, 0xa2, 0xec, 0x76, 0x87, 0xa5, 0xdf, 0x69, 0x97, 0xb0, 0x67, 0xc2, 0xb2, + 0x91, 0x53, 0x30, 0x94, 0xf6, 0x35, 0xe1, 0x71, 0x2a, 0xa9, 0xa0, 0xe7, 0x60, 0x54, 0x24, 0x44, + 0x60, 0xe6, 0xa5, 0x7c, 0xea, 0x98, 0x91, 0x41, 0x39, 0x2e, 0xc6, 0x3a, 0x8e, 0xfd, 0x7d, 0x05, + 0x98, 0xc9, 0xf0, 0x0f, 0xe0, 0x47, 0xd5, 0xb6, 0x1b, 0x46, 0x2a, 0xb5, 0x9e, 0x76, 0x54, 0xf1, + 0x72, 0xac, 0x30, 0xe8, 0x7e, 0xe0, 0x87, 0x61, 0xf2, 0x00, 0x14, 0xf6, 0xb7, 0x02, 0x7a, 0xc4, + 0x24, 0x75, 0x17, 0x61, 0xa0, 0x13, 0x12, 0x19, 0xb0, 0x50, 0x9d, 0xdf, 0x4c, 0xf7, 0xc4, 0x20, + 0x94, 0x3d, 0xde, 0x56, 0x6a, 0x1c, 0x8d, 0x3d, 0xe6, 0x8a, 0x1c, 0x0e, 0xa3, 0x9d, 0x8b, 0x88, + 0xe7, 0x78, 0x91, 0x60, 0xa2, 0xe3, 0xc8, 0x5b, 0xac, 0x14, 0x0b, 0xa8, 0xfd, 0xa5, 0x22, 0x9c, + 0xcd, 0xf5, 0x18, 0xa2, 0x5d, 0x6f, 0xf9, 0x9e, 0x1b, 0xf9, 0xca, 0x7a, 0x83, 0x47, 0xdb, 0x22, + 0xed, 0x9d, 0x35, 0x51, 0x8e, 0x15, 0x06, 0xba, 0x0c, 0x83, 0x4c, 0x72, 0x95, 0x4a, 0x32, 0xb8, + 0x54, 0xe6, 0xe1, 0x57, 0x38, 0xb8, 0xef, 0x04, 0xae, 0x97, 0x60, 0xa0, 0xed, 0xfb, 0xcd, 0xe4, + 0xa1, 0x45, 0xbb, 0xeb, 0xfb, 0x4d, 0xcc, 0x80, 0xe8, 0x03, 0x62, 0xbc, 0x12, 0xe6, 0x0a, 0xd8, + 0x69, 0xf8, 0xa1, 0x36, 0x68, 0x4f, 0xc1, 0xf0, 0x2e, 0xd9, 0x0f, 0x5c, 0x6f, 0x3b, 0x69, 0xc6, + 0x72, 0x83, 0x17, 0x63, 0x09, 0x37, 0xf3, 0x45, 0x0d, 0x1f, 0x77, 0xe6, 0xd5, 0x91, 0x9e, 0x57, + 0xe0, 0x0f, 0x14, 0x61, 0x12, 0x2f, 0x95, 0xdf, 0x9b, 0x88, 0xdb, 0xe9, 0x89, 0x38, 0xee, 0xcc, + 0xab, 0xbd, 0x67, 0xe3, 0x17, 0x2d, 0x98, 0x64, 0x69, 0x19, 0x44, 0x9c, 0x26, 0xd7, 0xf7, 0x4e, + 0x80, 0xc5, 0xbb, 0x04, 0x83, 0x01, 0x6d, 0x34, 0x99, 0x5d, 0x90, 0xf5, 0x04, 0x73, 0x18, 0x3a, + 0x07, 0x03, 0xac, 0x0b, 0x74, 0xf2, 0xc6, 0x78, 0x62, 0xa6, 0xb2, 0x13, 0x39, 0x98, 0x95, 0xb2, + 0xe0, 0x23, 0x98, 0xb4, 0x9b, 0x2e, 0xef, 0x74, 0xac, 0x57, 0x7c, 0x77, 0xf8, 0x12, 0x67, 0x76, + 0xed, 0x9d, 0x05, 0x1f, 0xc9, 0x26, 0xd9, 0xfd, 0xf9, 0xf4, 0x27, 0x05, 0xb8, 0x90, 0x59, 0xaf, + 0xef, 0xe0, 0x23, 0xdd, 0x6b, 0x3f, 0xca, 0x18, 0xfc, 0xc5, 0x13, 0x34, 0x12, 0x1c, 0xe8, 0x97, + 0xc3, 0x1c, 0xec, 0x23, 0x26, 0x48, 0xe6, 0x90, 0xbd, 0x4b, 0x62, 0x82, 0x64, 0xf6, 0x2d, 0xe7, + 0xf9, 0xf7, 0x57, 0x85, 0x9c, 0x6f, 0x61, 0x0f, 0xc1, 0x2b, 0xf4, 0x9c, 0x61, 0xc0, 0x50, 0x70, + 0xcc, 0x63, 0xfc, 0x8c, 0xe1, 0x65, 0x58, 0x41, 0xd1, 0x22, 0x4c, 0xb6, 0x5c, 0x8f, 0x1e, 0x3e, + 0xfb, 0x26, 0xe3, 0xa7, 0x42, 0x36, 0xad, 0x99, 0x60, 0x9c, 0xc4, 0x47, 0xae, 0x16, 0x2f, 0xa4, + 0x90, 0x9f, 0xaf, 0x3b, 0xb7, 0xb7, 0x0b, 0xa6, 0xce, 0x55, 0x8d, 0x62, 0x46, 0xec, 0x90, 0x35, + 0xed, 0xfd, 0x5f, 0xec, 0xff, 0xfd, 0x3f, 0x96, 0xfd, 0xf6, 0x9f, 0x7b, 0x15, 0xc6, 0x1f, 0x5a, + 0xe0, 0x6b, 0x7f, 0xb5, 0x08, 0x8f, 0x77, 0xd9, 0xf6, 0xfc, 0xac, 0x37, 0xe6, 0x40, 0x3b, 0xeb, + 0x53, 0xf3, 0x50, 0x85, 0x53, 0x5b, 0x9d, 0x66, 0x73, 0x9f, 0xd9, 0xe1, 0x93, 0x86, 0xc4, 0x10, + 0x3c, 0xe5, 0x39, 0x99, 0x0a, 0x6b, 0x35, 0x03, 0x07, 0x67, 0xd6, 0xa4, 0x0c, 0x3d, 0xbd, 0x49, + 0xf6, 0x15, 0xa9, 0x04, 0x43, 0x8f, 0x75, 0x20, 0x36, 0x71, 0xd1, 0x35, 0x98, 0x76, 0xf6, 0x1c, + 0x97, 0x07, 0x5d, 0x95, 0x04, 0x38, 0x47, 0xaf, 0xe4, 0x74, 0x8b, 0x49, 0x04, 0x9c, 0xae, 0x83, + 0x5e, 0x07, 0xe4, 0x6f, 0x32, 0x0b, 0xdb, 0xc6, 0x35, 0xe2, 0x09, 0xd5, 0x18, 0x9b, 0xbb, 0x62, + 0x7c, 0x24, 0xdc, 0x4a, 0x61, 0xe0, 0x8c, 0x5a, 0x89, 0xf8, 0x1b, 0x43, 0xf9, 0xf1, 0x37, 0xba, + 0x9f, 0x8b, 0x3d, 0xd3, 0x3f, 0xfc, 0x47, 0x8b, 0x5e, 0x5f, 0x9c, 0xc9, 0x37, 0xc3, 0xc8, 0xbd, + 0xca, 0x4c, 0xdb, 0xb8, 0x0c, 0x4f, 0x8b, 0x1a, 0x71, 0x5a, 0x33, 0x6d, 0x8b, 0x81, 0xd8, 0xc4, + 0xe5, 0x0b, 0x22, 0x8c, 0x9d, 0x15, 0x0d, 0x16, 0x5f, 0xc4, 0xba, 0x51, 0x18, 0xe8, 0x93, 0x30, + 0xdc, 0x70, 0xf7, 0xdc, 0xd0, 0x0f, 0xc4, 0x4a, 0x3f, 0xa2, 0xba, 0x20, 0x3e, 0x07, 0xcb, 0x9c, + 0x0c, 0x96, 0xf4, 0xec, 0x1f, 0x28, 0xc0, 0xb8, 0x6c, 0xf1, 0x8d, 0x8e, 0x1f, 0x39, 0x27, 0x70, + 0x2d, 0x5f, 0x33, 0xae, 0xe5, 0x0f, 0x74, 0x0b, 0xf8, 0xc3, 0xba, 0x94, 0x7b, 0x1d, 0xdf, 0x4a, + 0x5c, 0xc7, 0x4f, 0xf6, 0x26, 0xd5, 0xfd, 0x1a, 0xfe, 0x47, 0x16, 0x4c, 0x1b, 0xf8, 0x27, 0x70, + 0x1b, 0xac, 0x9a, 0xb7, 0xc1, 0x13, 0x3d, 0xbf, 0x21, 0xe7, 0x16, 0xf8, 0xee, 0x62, 0xa2, 0xef, + 0xec, 0xf4, 0x7f, 0x0b, 0x06, 0x76, 0x9c, 0xa0, 0xd1, 0x2d, 0xc0, 0x79, 0xaa, 0xd2, 0xc2, 0x75, + 0x27, 0x10, 0xba, 0xc1, 0x67, 0x54, 0xba, 0x6c, 0x27, 0xe8, 0xad, 0x17, 0x64, 0x4d, 0xa1, 0x97, + 0x61, 0x28, 0xac, 0xfb, 0x6d, 0x65, 0x39, 0x7f, 0x91, 0xa7, 0xd2, 0xa6, 0x25, 0x87, 0x07, 0xf3, + 0xc8, 0x6c, 0x8e, 0x16, 0x63, 0x81, 0x8f, 0x3e, 0x05, 0xe3, 0xec, 0x97, 0x32, 0xd4, 0x29, 0xe6, + 0x27, 0x43, 0xaa, 0xe9, 0x88, 0xdc, 0x8a, 0xcd, 0x28, 0xc2, 0x26, 0xa9, 0xb9, 0x6d, 0x28, 0xa9, + 0xcf, 0x7a, 0xa4, 0xfa, 0xb8, 0x7f, 0x5b, 0x84, 0x99, 0x8c, 0x35, 0x87, 0x42, 0x63, 0x26, 0x9e, + 0xeb, 0x73, 0xa9, 0xbe, 0xc3, 0xb9, 0x08, 0xd9, 0x6b, 0xa8, 0x21, 0xd6, 0x56, 0xdf, 0x8d, 0xde, + 0x0e, 0x49, 0xb2, 0x51, 0x5a, 0xd4, 0xbb, 0x51, 0xda, 0xd8, 0x89, 0x0d, 0x35, 0x6d, 0x48, 0xf5, + 0xf4, 0x91, 0xce, 0xe9, 0x9f, 0x17, 0xe1, 0x54, 0x56, 0x0c, 0x32, 0xf4, 0xf9, 0x44, 0x4e, 0xbd, + 0x17, 0xfb, 0x8d, 0x5e, 0xc6, 0x13, 0xed, 0x71, 0x19, 0xf0, 0xd2, 0x82, 0x99, 0x65, 0xaf, 0xe7, + 0x30, 0x8b, 0x36, 0x99, 0x23, 0x7e, 0xc0, 0x73, 0x21, 0xca, 0xe3, 0xe3, 0xc3, 0x7d, 0x77, 0x40, + 0x24, 0x51, 0x0c, 0x13, 0x46, 0x00, 0xb2, 0xb8, 0xb7, 0x11, 0x80, 0x6c, 0x79, 0xce, 0x85, 0x51, + 0xed, 0x6b, 0x1e, 0xe9, 0x8c, 0xef, 0xd2, 0xdb, 0x4a, 0xeb, 0xf7, 0x23, 0x9d, 0xf5, 0x1f, 0xb3, + 0x20, 0x61, 0x17, 0xae, 0xc4, 0x62, 0x56, 0xae, 0x58, 0xec, 0x22, 0x0c, 0x04, 0x7e, 0x93, 0x24, + 0xf3, 0xd0, 0x61, 0xbf, 0x49, 0x30, 0x83, 0x50, 0x8c, 0x28, 0x16, 0x76, 0x8c, 0xe9, 0x0f, 0x39, + 0xf1, 0x44, 0xbb, 0x04, 0x83, 0x4d, 0xb2, 0x47, 0x9a, 0xc9, 0x74, 0x21, 0x37, 0x69, 0x21, 0xe6, + 0x30, 0xfb, 0x17, 0x07, 0xe0, 0x7c, 0xd7, 0x50, 0x16, 0xf4, 0x39, 0xb4, 0xed, 0x44, 0xe4, 0x9e, + 0xb3, 0x9f, 0x8c, 0xeb, 0x7f, 0x8d, 0x17, 0x63, 0x09, 0x67, 0x9e, 0x3b, 0x3c, 0x3c, 0x6f, 0x42, + 0x88, 0x28, 0xa2, 0xf2, 0x0a, 0xa8, 0x29, 0x94, 0x2a, 0x1e, 0x87, 0x50, 0xea, 0x79, 0x80, 0x30, + 0x6c, 0x72, 0xeb, 0x99, 0x86, 0x70, 0x09, 0x8a, 0xc3, 0x38, 0xd7, 0x6e, 0x0a, 0x08, 0xd6, 0xb0, + 0x50, 0x19, 0xa6, 0xda, 0x81, 0x1f, 0x71, 0x99, 0x6c, 0x99, 0x1b, 0x98, 0x0d, 0x9a, 0x51, 0x04, + 0xaa, 0x09, 0x38, 0x4e, 0xd5, 0x40, 0x2f, 0xc1, 0xa8, 0x88, 0x2c, 0x50, 0xf5, 0xfd, 0xa6, 0x10, + 0x03, 0x29, 0x9b, 0xab, 0x5a, 0x0c, 0xc2, 0x3a, 0x9e, 0x56, 0x8d, 0x09, 0x7a, 0x87, 0x33, 0xab, + 0x71, 0x61, 0xaf, 0x86, 0x97, 0x88, 0x47, 0x38, 0xd2, 0x57, 0x3c, 0xc2, 0x58, 0x30, 0x56, 0xea, + 0x5b, 0xb7, 0x05, 0x3d, 0x45, 0x49, 0x3f, 0x37, 0x00, 0x33, 0x62, 0xe1, 0x3c, 0xea, 0xe5, 0x72, + 0x3b, 0xbd, 0x5c, 0x8e, 0x43, 0x74, 0xf6, 0xde, 0x9a, 0x39, 0xe9, 0x35, 0xf3, 0x83, 0x16, 0x98, + 0xec, 0x15, 0xfa, 0xbf, 0x72, 0x13, 0xa3, 0xbc, 0x94, 0xcb, 0xae, 0x35, 0xe4, 0x05, 0xf2, 0x0e, + 0x53, 0xa4, 0xd8, 0xff, 0xde, 0x82, 0x27, 0x7a, 0x52, 0x44, 0x2b, 0x50, 0x62, 0x3c, 0xa0, 0xf6, + 0x3a, 0x7b, 0x52, 0x19, 0xa0, 0x4a, 0x40, 0x0e, 0x4b, 0x1a, 0xd7, 0x44, 0x2b, 0xa9, 0x0c, 0x34, + 0x4f, 0x65, 0x64, 0xa0, 0x39, 0x6d, 0x0c, 0xcf, 0x43, 0xa6, 0xa0, 0xf9, 0x7e, 0x7a, 0xe3, 0x18, + 0xce, 0x1f, 0xe8, 0xc3, 0x86, 0xd8, 0xcf, 0x4e, 0x88, 0xfd, 0x90, 0x89, 0xad, 0xdd, 0x21, 0x1f, + 0x87, 0x29, 0x16, 0x72, 0x88, 0x99, 0x43, 0x0b, 0xb7, 0x94, 0x42, 0x6c, 0xf2, 0x78, 0x33, 0x01, + 0xc3, 0x29, 0x6c, 0xfb, 0x8f, 0x8b, 0x30, 0xc4, 0xb7, 0xdf, 0x09, 0xbc, 0x09, 0x9f, 0x86, 0x92, + 0xdb, 0x6a, 0x75, 0x78, 0x52, 0x91, 0x41, 0xee, 0x8b, 0x4a, 0xe7, 0xa9, 0x22, 0x0b, 0x71, 0x0c, + 0x47, 0xab, 0x42, 0xe2, 0xdc, 0x25, 0xaa, 0x21, 0xef, 0xf8, 0x42, 0xd9, 0x89, 0x1c, 0xce, 0xe0, + 0xa8, 0x7b, 0x36, 0x96, 0x4d, 0xa3, 0xcf, 0x00, 0x84, 0x51, 0xe0, 0x7a, 0xdb, 0xb4, 0x4c, 0x04, + 0xf1, 0xfc, 0x60, 0x17, 0x6a, 0x35, 0x85, 0xcc, 0x69, 0xc6, 0x67, 0x8e, 0x02, 0x60, 0x8d, 0x22, + 0x5a, 0x30, 0x6e, 0xfa, 0xb9, 0xc4, 0xdc, 0x01, 0xa7, 0x1a, 0xcf, 0xd9, 0xdc, 0x47, 0xa0, 0xa4, + 0x88, 0xf7, 0x92, 0x3f, 0x8d, 0xe9, 0x6c, 0xd1, 0xc7, 0x60, 0x32, 0xd1, 0xb7, 0x23, 0x89, 0xaf, + 0x7e, 0xc9, 0x82, 0x49, 0xde, 0x99, 0x15, 0x6f, 0x4f, 0xdc, 0x06, 0x6f, 0xc3, 0xa9, 0x66, 0xc6, + 0xa9, 0x2c, 0xa6, 0xbf, 0xff, 0x53, 0x5c, 0x89, 0xab, 0xb2, 0xa0, 0x38, 0xb3, 0x0d, 0x74, 0x85, + 0xee, 0x38, 0x7a, 0xea, 0x3a, 0x4d, 0xe1, 0x9a, 0x3a, 0xc6, 0x77, 0x1b, 0x2f, 0xc3, 0x0a, 0x6a, + 0xff, 0x9e, 0x05, 0xd3, 0xbc, 0xe7, 0x37, 0xc8, 0xbe, 0x3a, 0x9b, 0xbe, 0x9e, 0x7d, 0x17, 0xe9, + 0xac, 0x0a, 0x39, 0xe9, 0xac, 0xf4, 0x4f, 0x2b, 0x76, 0xfd, 0xb4, 0x9f, 0xb5, 0x40, 0xac, 0x90, + 0x13, 0x10, 0x42, 0x7c, 0xab, 0x29, 0x84, 0x98, 0xcb, 0xdf, 0x04, 0x39, 0xd2, 0x87, 0xbf, 0xb4, + 0x60, 0x8a, 0x23, 0xc4, 0xda, 0xf2, 0xaf, 0xeb, 0x3c, 0xf4, 0x93, 0xf4, 0xf6, 0x06, 0xd9, 0xdf, + 0xf0, 0xab, 0x4e, 0xb4, 0x93, 0xfd, 0x51, 0xc6, 0x64, 0x0d, 0x74, 0x9d, 0xac, 0x86, 0xdc, 0x40, + 0x47, 0xc8, 0xa4, 0x7d, 0xe4, 0x6c, 0x0f, 0xf6, 0xd7, 0x2c, 0x40, 0xbc, 0x19, 0x83, 0x71, 0xa3, + 0xec, 0x10, 0x2b, 0xd5, 0x2e, 0xba, 0xf8, 0x68, 0x52, 0x10, 0xac, 0x61, 0x1d, 0xcb, 0xf0, 0x24, + 0x4c, 0x1e, 0x8a, 0xbd, 0x4d, 0x1e, 0x8e, 0x30, 0xa2, 0xff, 0x72, 0x08, 0x92, 0x0e, 0x30, 0xe8, + 0x0e, 0x8c, 0xd5, 0x9d, 0xb6, 0xb3, 0xe9, 0x36, 0xdd, 0xc8, 0x25, 0x61, 0x37, 0x5b, 0xa9, 0x65, + 0x0d, 0x4f, 0x28, 0xa9, 0xb5, 0x12, 0x6c, 0xd0, 0x41, 0x0b, 0x00, 0xed, 0xc0, 0xdd, 0x73, 0x9b, + 0x64, 0x9b, 0xc9, 0x4a, 0x98, 0x33, 0x3c, 0x37, 0x00, 0x92, 0xa5, 0x58, 0xc3, 0xc8, 0xf0, 0x36, + 0x2e, 0x3e, 0x62, 0x6f, 0x63, 0x38, 0x31, 0x6f, 0xe3, 0x81, 0x23, 0x79, 0x1b, 0x8f, 0x1c, 0xd9, + 0xdb, 0x78, 0xb0, 0x2f, 0x6f, 0x63, 0x0c, 0x67, 0x24, 0xef, 0x49, 0xff, 0xaf, 0xba, 0x4d, 0x22, + 0x1e, 0x1c, 0xdc, 0x83, 0x7f, 0xee, 0xc1, 0xc1, 0xfc, 0x19, 0x9c, 0x89, 0x81, 0x73, 0x6a, 0xa2, + 0x4f, 0xc0, 0xac, 0xd3, 0x6c, 0xfa, 0xf7, 0xd4, 0xa4, 0xae, 0x84, 0x75, 0xa7, 0xc9, 0x95, 0x10, + 0xc3, 0x8c, 0xea, 0xb9, 0x07, 0x07, 0xf3, 0xb3, 0x8b, 0x39, 0x38, 0x38, 0xb7, 0x36, 0xfa, 0x28, + 0x94, 0xda, 0x81, 0x5f, 0x5f, 0xd3, 0xbc, 0xf4, 0x2e, 0xd0, 0x01, 0xac, 0xca, 0xc2, 0xc3, 0x83, + 0xf9, 0x71, 0xf5, 0x87, 0x5d, 0xf8, 0x71, 0x85, 0x0c, 0xf7, 0xe1, 0xd1, 0x63, 0x75, 0x1f, 0xde, + 0x85, 0x99, 0x1a, 0x09, 0x5c, 0x96, 0x77, 0xbb, 0x11, 0x9f, 0x4f, 0x1b, 0x50, 0x0a, 0x12, 0x27, + 0x72, 0x5f, 0x91, 0x06, 0xb5, 0xb0, 0xfb, 0xf2, 0x04, 0x8e, 0x09, 0xd9, 0xff, 0xd3, 0x82, 0x61, + 0xe1, 0xf0, 0x72, 0x02, 0x5c, 0xe3, 0xa2, 0xa1, 0x49, 0x98, 0xcf, 0x1e, 0x30, 0xd6, 0x99, 0x5c, + 0x1d, 0x42, 0x25, 0xa1, 0x43, 0x78, 0xa2, 0x1b, 0x91, 0xee, 0xda, 0x83, 0xbf, 0x5e, 0xa4, 0xdc, + 0xbb, 0xe1, 0x7a, 0xf9, 0xe8, 0x87, 0x60, 0x1d, 0x86, 0x43, 0xe1, 0xfa, 0x57, 0xc8, 0xb7, 0x55, + 0x4f, 0x4e, 0x62, 0x6c, 0xc7, 0x26, 0x9c, 0xfd, 0x24, 0x91, 0x4c, 0x9f, 0xc2, 0xe2, 0x23, 0xf4, + 0x29, 0xec, 0xe5, 0x9c, 0x3a, 0x70, 0x1c, 0xce, 0xa9, 0xf6, 0x57, 0xd8, 0xcd, 0xa9, 0x97, 0x9f, + 0x00, 0x53, 0x75, 0xcd, 0xbc, 0x63, 0xed, 0x2e, 0x2b, 0x4b, 0x74, 0x2a, 0x87, 0xb9, 0xfa, 0x05, + 0x0b, 0xce, 0x67, 0x7c, 0x95, 0xc6, 0x69, 0x3d, 0x03, 0x23, 0x4e, 0xa7, 0xe1, 0xaa, 0xbd, 0xac, + 0xe9, 0x13, 0x17, 0x45, 0x39, 0x56, 0x18, 0x68, 0x19, 0xa6, 0xc9, 0xfd, 0xb6, 0xcb, 0x55, 0xa9, + 0xba, 0xb1, 0x69, 0x91, 0x7b, 0x49, 0xad, 0x24, 0x81, 0x38, 0x8d, 0xaf, 0x02, 0x82, 0x14, 0x73, + 0x03, 0x82, 0xfc, 0x5d, 0x0b, 0x46, 0x95, 0xf3, 0xdb, 0x23, 0x1f, 0xed, 0x8f, 0x9b, 0xa3, 0xfd, + 0x78, 0x97, 0xd1, 0xce, 0x19, 0xe6, 0xdf, 0x2d, 0xa8, 0xfe, 0x56, 0xfd, 0x20, 0xea, 0x83, 0x83, + 0x7b, 0x19, 0x46, 0xda, 0x81, 0x1f, 0xf9, 0x75, 0xbf, 0x29, 0x18, 0xb8, 0x73, 0x71, 0x64, 0x1c, + 0x5e, 0x7e, 0xa8, 0xfd, 0xc6, 0x0a, 0x9b, 0xf2, 0x4e, 0x4e, 0xbb, 0x2d, 0x01, 0xd2, 0x06, 0x8d, + 0xc5, 0x8d, 0x8d, 0x8b, 0xb1, 0x8e, 0xc3, 0x06, 0xdc, 0x0f, 0x22, 0xc1, 0x67, 0xc5, 0x03, 0xee, + 0x07, 0x11, 0x66, 0x10, 0xd4, 0x00, 0x88, 0x9c, 0x60, 0x9b, 0x44, 0xb4, 0x4c, 0x04, 0xef, 0xca, + 0x3f, 0x6f, 0x3a, 0x91, 0xdb, 0x5c, 0x70, 0xbd, 0x28, 0x8c, 0x82, 0x85, 0x8a, 0x17, 0xdd, 0x0a, + 0xf8, 0x13, 0x52, 0x8b, 0x8e, 0xa3, 0x68, 0x61, 0x8d, 0xae, 0x74, 0xf4, 0x66, 0x6d, 0x0c, 0x9a, + 0xc6, 0x0c, 0xeb, 0xa2, 0x1c, 0x2b, 0x0c, 0xfb, 0x23, 0xec, 0xf6, 0x61, 0x63, 0x7a, 0xb4, 0x70, + 0x32, 0xbf, 0x01, 0x6a, 0x36, 0x98, 0x26, 0xb3, 0xac, 0x07, 0xad, 0xe9, 0x7e, 0xd8, 0xd3, 0x86, + 0x75, 0x7f, 0xad, 0x38, 0xb2, 0x0d, 0xfa, 0xb6, 0x94, 0x81, 0xca, 0xb3, 0x3d, 0x6e, 0x8d, 0x23, + 0x98, 0xa4, 0xb0, 0x24, 0x12, 0x2c, 0xc4, 0x7e, 0xa5, 0x2a, 0xf6, 0x85, 0x96, 0x44, 0x42, 0x00, + 0x70, 0x8c, 0x43, 0x99, 0x29, 0xf5, 0x27, 0x9c, 0x45, 0x71, 0x30, 0x45, 0x85, 0x1d, 0x62, 0x0d, + 0x03, 0x5d, 0x15, 0x02, 0x05, 0xae, 0x17, 0x78, 0x3c, 0x21, 0x50, 0x90, 0xc3, 0xa5, 0x49, 0x81, + 0x9e, 0x83, 0x51, 0x95, 0x47, 0xb6, 0xca, 0xd3, 0x93, 0x8a, 0x65, 0xb6, 0x12, 0x17, 0x63, 0x1d, + 0x07, 0x6d, 0xc0, 0x64, 0xc8, 0xe5, 0x6c, 0x2a, 0xc2, 0x2d, 0x97, 0x57, 0x7e, 0x50, 0x5a, 0x01, + 0xd5, 0x4c, 0xf0, 0x21, 0x2b, 0xe2, 0xa7, 0x93, 0x74, 0xc6, 0x4e, 0x92, 0x40, 0xaf, 0xc1, 0x44, + 0xd3, 0x77, 0x1a, 0x4b, 0x4e, 0xd3, 0xf1, 0xea, 0x6c, 0x7c, 0x46, 0xcc, 0x74, 0x84, 0x37, 0x0d, + 0x28, 0x4e, 0x60, 0x53, 0xe6, 0x4d, 0x2f, 0x11, 0x51, 0x99, 0x1d, 0x6f, 0x9b, 0x84, 0x22, 0x2b, + 0x28, 0x63, 0xde, 0x6e, 0xe6, 0xe0, 0xe0, 0xdc, 0xda, 0xe8, 0x65, 0x18, 0x93, 0x9f, 0xaf, 0xc5, + 0x2e, 0x88, 0x1d, 0x1f, 0x34, 0x18, 0x36, 0x30, 0xd1, 0x3d, 0x38, 0x2d, 0xff, 0x6f, 0x04, 0xce, + 0xd6, 0x96, 0x5b, 0x17, 0x0e, 0xbd, 0xdc, 0x2b, 0x71, 0x51, 0xba, 0xce, 0xad, 0x64, 0x21, 0x1d, + 0x1e, 0xcc, 0x5f, 0x14, 0xa3, 0x96, 0x09, 0x67, 0x93, 0x98, 0x4d, 0x1f, 0xad, 0xc1, 0xcc, 0x0e, + 0x71, 0x9a, 0xd1, 0xce, 0xf2, 0x0e, 0xa9, 0xef, 0xca, 0x4d, 0xc7, 0x22, 0x22, 0x68, 0xee, 0x02, + 0xd7, 0xd3, 0x28, 0x38, 0xab, 0x1e, 0x7a, 0x13, 0x66, 0xdb, 0x9d, 0xcd, 0xa6, 0x1b, 0xee, 0xac, + 0xfb, 0x11, 0x33, 0x05, 0x52, 0x69, 0x69, 0x45, 0xe8, 0x04, 0x15, 0x73, 0xa2, 0x9a, 0x83, 0x87, + 0x73, 0x29, 0xa0, 0xb7, 0xe1, 0x74, 0x62, 0x31, 0x08, 0xe7, 0xf1, 0x89, 0xfc, 0x18, 0xf7, 0xb5, + 0xac, 0x0a, 0x22, 0x0e, 0x43, 0x16, 0x08, 0x67, 0x37, 0x41, 0x1f, 0x1f, 0x5a, 0x50, 0xd1, 0x70, + 0x76, 0x2a, 0xb6, 0x59, 0xd6, 0x22, 0x8f, 0x86, 0xd8, 0xc0, 0x42, 0xaf, 0x00, 0xb8, 0xed, 0x55, + 0xa7, 0xe5, 0x36, 0xe9, 0x23, 0x73, 0x86, 0xd5, 0xa1, 0x0f, 0x0e, 0xa8, 0x54, 0x65, 0x29, 0x3d, + 0xd5, 0xc5, 0xbf, 0x7d, 0xac, 0x61, 0xa3, 0x2a, 0x4c, 0x88, 0x7f, 0xfb, 0x62, 0x31, 0x4c, 0x2b, + 0xef, 0xee, 0x09, 0x59, 0x43, 0xad, 0x00, 0x64, 0x96, 0xb0, 0x39, 0x4f, 0xd4, 0x7f, 0x67, 0x86, + 0x69, 0x6f, 0xd1, 0xca, 0x1a, 0xef, 0x8a, 0x3e, 0x0b, 0x63, 0xfa, 0x4e, 0x10, 0xf7, 0xf0, 0xe5, + 0x6c, 0xd6, 0x4e, 0xdb, 0x31, 0x9c, 0xf3, 0x55, 0xbb, 0x42, 0x87, 0x61, 0x83, 0xa2, 0x4d, 0x20, + 0x7b, 0x8e, 0xd0, 0x4d, 0x18, 0xa9, 0x37, 0x5d, 0xe2, 0x45, 0x95, 0x6a, 0xb7, 0xe8, 0x5c, 0xcb, + 0x02, 0x47, 0x4c, 0xba, 0x08, 0x6c, 0xce, 0xcb, 0xb0, 0xa2, 0x60, 0xff, 0x7a, 0x01, 0xe6, 0x7b, + 0x44, 0xc9, 0x4f, 0xe8, 0x4f, 0xac, 0xbe, 0xf4, 0x27, 0x8b, 0x32, 0x51, 0xf0, 0x7a, 0x42, 0x34, + 0x93, 0x48, 0x02, 0x1c, 0x0b, 0x68, 0x92, 0xf8, 0x7d, 0xdb, 0xb3, 0xeb, 0x2a, 0x98, 0x81, 0x9e, + 0x1e, 0x19, 0x86, 0xea, 0x75, 0xb0, 0xff, 0xf7, 0x5a, 0xae, 0x1a, 0xcd, 0xfe, 0x4a, 0x01, 0x4e, + 0xab, 0x21, 0xfc, 0xe6, 0x1d, 0xb8, 0xdb, 0xe9, 0x81, 0x3b, 0x06, 0x25, 0xa4, 0x7d, 0x0b, 0x86, + 0x78, 0xb8, 0xb1, 0x3e, 0xf8, 0xc4, 0x4b, 0x66, 0x64, 0x4e, 0xc5, 0x9a, 0x18, 0xd1, 0x39, 0xbf, + 0xd7, 0x82, 0xc9, 0x8d, 0xe5, 0x6a, 0xcd, 0xaf, 0xef, 0x92, 0x68, 0x91, 0xf3, 0xf5, 0x58, 0xf0, + 0x7c, 0xd6, 0x43, 0xf2, 0x72, 0x59, 0x5c, 0xe2, 0x45, 0x18, 0xd8, 0xf1, 0xc3, 0x28, 0x69, 0xa1, + 0x70, 0xdd, 0x0f, 0x23, 0xcc, 0x20, 0xf6, 0xef, 0x5b, 0x30, 0xc8, 0x52, 0xe3, 0x4b, 0x69, 0xb6, + 0x95, 0x23, 0xcd, 0xee, 0xe7, 0xbb, 0xd0, 0x4b, 0x30, 0x44, 0xb6, 0xb6, 0x48, 0x3d, 0x12, 0xb3, + 0x2a, 0x5d, 0xca, 0x87, 0x56, 0x58, 0x29, 0x65, 0x5c, 0x58, 0x63, 0xfc, 0x2f, 0x16, 0xc8, 0xe8, + 0x2e, 0x94, 0x22, 0xb7, 0x45, 0x16, 0x1b, 0x0d, 0xa1, 0xe3, 0x7d, 0x08, 0xb7, 0xf8, 0x0d, 0x49, + 0x00, 0xc7, 0xb4, 0xec, 0x2f, 0x15, 0x00, 0xe2, 0x38, 0x2d, 0xbd, 0x3e, 0x71, 0x29, 0xa5, 0xfd, + 0xbb, 0x9c, 0xa1, 0xfd, 0x43, 0x31, 0xc1, 0x0c, 0xd5, 0x9f, 0x1a, 0xa6, 0x62, 0x5f, 0xc3, 0x34, + 0x70, 0x94, 0x61, 0x5a, 0x86, 0xe9, 0x38, 0xce, 0x8c, 0x19, 0x66, 0x8b, 0xbd, 0xe5, 0x36, 0x92, + 0x40, 0x9c, 0xc6, 0xb7, 0x09, 0x5c, 0x54, 0xe1, 0x36, 0xc4, 0x5d, 0xc3, 0x4c, 0x88, 0x75, 0x6d, + 0x6a, 0x8f, 0x71, 0x8a, 0xd5, 0x9b, 0x85, 0x5c, 0xf5, 0xe6, 0x4f, 0x5a, 0x70, 0x2a, 0xd9, 0x0e, + 0xf3, 0xe9, 0xfc, 0xa2, 0x05, 0xa7, 0x99, 0x92, 0x97, 0xb5, 0x9a, 0x56, 0x29, 0xbf, 0xd8, 0x35, + 0x84, 0x48, 0x4e, 0x8f, 0xe3, 0xd8, 0x05, 0x6b, 0x59, 0xa4, 0x71, 0x76, 0x8b, 0xf6, 0xbf, 0x2b, + 0xc0, 0x6c, 0x5e, 0xec, 0x11, 0xe6, 0x61, 0xe0, 0xdc, 0xaf, 0xed, 0x92, 0x7b, 0xc2, 0x8e, 0x3b, + 0xf6, 0x30, 0xe0, 0xc5, 0x58, 0xc2, 0x93, 0x81, 0xcf, 0x0b, 0xfd, 0x05, 0x3e, 0x47, 0x3b, 0x30, + 0x7d, 0x6f, 0x87, 0x78, 0xb7, 0xbd, 0xd0, 0x89, 0xdc, 0x70, 0xcb, 0x65, 0x0a, 0x51, 0xbe, 0x6e, + 0x5e, 0x91, 0xd6, 0xd6, 0x77, 0x93, 0x08, 0x87, 0x07, 0xf3, 0xe7, 0x8d, 0x82, 0xb8, 0xcb, 0xfc, + 0x20, 0xc1, 0x69, 0xa2, 0xe9, 0xb8, 0xf1, 0x03, 0x8f, 0x30, 0x6e, 0xbc, 0xfd, 0x45, 0x0b, 0xce, + 0xe6, 0x26, 0xab, 0x44, 0x57, 0x60, 0xc4, 0x69, 0xbb, 0x5c, 0xa6, 0x2c, 0x8e, 0x51, 0x26, 0xbb, + 0xa8, 0x56, 0xb8, 0x44, 0x59, 0x41, 0x55, 0x12, 0xed, 0x42, 0x6e, 0x12, 0xed, 0x9e, 0x39, 0xb1, + 0xed, 0xef, 0xb1, 0x40, 0x78, 0x47, 0xf6, 0x71, 0x76, 0x7f, 0x0a, 0xc6, 0xf6, 0xd2, 0xb9, 0x65, + 0x2e, 0xe6, 0xbb, 0x8b, 0x8a, 0x8c, 0x32, 0x8a, 0x57, 0x32, 0xf2, 0xc8, 0x18, 0xb4, 0xec, 0x06, + 0x08, 0x68, 0x99, 0x30, 0x89, 0x69, 0xef, 0xde, 0x3c, 0x0f, 0xd0, 0x60, 0xb8, 0x5a, 0x26, 0x72, + 0x75, 0x33, 0x97, 0x15, 0x04, 0x6b, 0x58, 0xf6, 0xbf, 0x2e, 0xc0, 0xa8, 0xcc, 0x65, 0xd2, 0xf1, + 0xfa, 0x91, 0x6b, 0x1c, 0x29, 0xb9, 0x21, 0x4b, 0xdd, 0x4f, 0x09, 0x57, 0x63, 0x71, 0x50, 0x9c, + 0xba, 0x5f, 0x02, 0x70, 0x8c, 0x43, 0x77, 0x51, 0xd8, 0xd9, 0x64, 0xe8, 0x09, 0x5f, 0xbe, 0x1a, + 0x2f, 0xc6, 0x12, 0x8e, 0x3e, 0x01, 0x53, 0xbc, 0x5e, 0xe0, 0xb7, 0x9d, 0x6d, 0x2e, 0xac, 0x1f, + 0x54, 0x4e, 0xf8, 0x53, 0x6b, 0x09, 0xd8, 0xe1, 0xc1, 0xfc, 0xa9, 0x64, 0x19, 0xd3, 0x42, 0xa5, + 0xa8, 0x30, 0x9b, 0x1c, 0xde, 0x08, 0xdd, 0xfd, 0x29, 0x53, 0x9e, 0x18, 0x84, 0x75, 0x3c, 0xfb, + 0xb3, 0x80, 0xd2, 0x59, 0x5d, 0xd0, 0xeb, 0xdc, 0x10, 0xd3, 0x0d, 0x48, 0xa3, 0x9b, 0x56, 0x4a, + 0x77, 0x35, 0x97, 0x6e, 0x38, 0xbc, 0x16, 0x56, 0xf5, 0xed, 0xff, 0xb7, 0x08, 0x53, 0x49, 0xc7, + 0x63, 0x74, 0x1d, 0x86, 0x38, 0xeb, 0x21, 0xc8, 0x77, 0x31, 0x7a, 0xd0, 0xdc, 0x95, 0xd9, 0x21, + 0x2c, 0xb8, 0x17, 0x51, 0x1f, 0xbd, 0x09, 0xa3, 0x0d, 0xff, 0x9e, 0x77, 0xcf, 0x09, 0x1a, 0x8b, + 0xd5, 0x8a, 0x58, 0xce, 0x99, 0xaf, 0xb0, 0x72, 0x8c, 0xa6, 0xbb, 0x40, 0x33, 0x05, 0x5f, 0x0c, + 0xc2, 0x3a, 0x39, 0xb4, 0xc1, 0x82, 0x50, 0x6f, 0xb9, 0xdb, 0x6b, 0x4e, 0xbb, 0x9b, 0x55, 0xfe, + 0xb2, 0x44, 0xd2, 0x28, 0x8f, 0x8b, 0x48, 0xd5, 0x1c, 0x80, 0x63, 0x42, 0xe8, 0xf3, 0x30, 0x13, + 0xe6, 0xc8, 0x86, 0xf3, 0x92, 0x7c, 0x75, 0x13, 0x97, 0x2e, 0x3d, 0x46, 0xdf, 0xc7, 0x59, 0x52, + 0xe4, 0xac, 0x66, 0xec, 0x1f, 0x3d, 0x05, 0xc6, 0x26, 0x36, 0x72, 0x3e, 0x5a, 0xc7, 0x94, 0xf3, + 0x11, 0xc3, 0x08, 0x69, 0xb5, 0xa3, 0xfd, 0xb2, 0x1b, 0x74, 0xcb, 0x84, 0xbc, 0x22, 0x70, 0xd2, + 0x34, 0x25, 0x04, 0x2b, 0x3a, 0xd9, 0x89, 0x39, 0x8b, 0x5f, 0xc7, 0xc4, 0x9c, 0x03, 0x27, 0x98, + 0x98, 0x73, 0x1d, 0x86, 0xb7, 0xdd, 0x08, 0x93, 0xb6, 0x2f, 0x98, 0xfe, 0xcc, 0x75, 0x78, 0x8d, + 0xa3, 0xa4, 0x53, 0xc0, 0x09, 0x00, 0x96, 0x44, 0xd0, 0xeb, 0x6a, 0x07, 0x0e, 0xe5, 0xbf, 0x99, + 0xd3, 0xda, 0xf9, 0xcc, 0x3d, 0x28, 0xd2, 0x6f, 0x0e, 0x3f, 0x6c, 0xfa, 0xcd, 0x55, 0x99, 0x34, + 0x73, 0x24, 0xdf, 0x85, 0x86, 0xe5, 0xc4, 0xec, 0x91, 0x2a, 0xf3, 0x8e, 0x9e, 0x68, 0xb4, 0x94, + 0x7f, 0x12, 0xa8, 0x1c, 0xa2, 0x7d, 0xa6, 0x17, 0xfd, 0x1e, 0x0b, 0x4e, 0xb7, 0xb3, 0x72, 0xee, + 0x0a, 0x45, 0xf6, 0x4b, 0x7d, 0xa7, 0xf5, 0x35, 0x1a, 0x64, 0x02, 0xa0, 0x4c, 0x34, 0x9c, 0xdd, + 0x1c, 0x1d, 0xe8, 0x60, 0xb3, 0x21, 0x14, 0xaa, 0x97, 0x72, 0xf2, 0x94, 0x76, 0xc9, 0x4e, 0xba, + 0x91, 0x91, 0x13, 0xf3, 0xfd, 0x79, 0x39, 0x31, 0xfb, 0xce, 0x84, 0xf9, 0xba, 0xca, 0x50, 0x3a, + 0x9e, 0xbf, 0x94, 0x78, 0xfe, 0xd1, 0x9e, 0x79, 0x49, 0x5f, 0x57, 0x79, 0x49, 0xbb, 0x44, 0x18, + 0xe5, 0x59, 0x47, 0x7b, 0x66, 0x23, 0xd5, 0x32, 0x8a, 0x4e, 0x1e, 0x4f, 0x46, 0x51, 0xe3, 0xaa, + 0xe1, 0x49, 0x2d, 0x9f, 0xee, 0x71, 0xd5, 0x18, 0x74, 0xbb, 0x5f, 0x36, 0x3c, 0x7b, 0xea, 0xf4, + 0x43, 0x65, 0x4f, 0xbd, 0xa3, 0x67, 0x23, 0x45, 0x3d, 0xd2, 0x6d, 0x52, 0xa4, 0x3e, 0x73, 0x90, + 0xde, 0xd1, 0x2f, 0xc0, 0x99, 0x7c, 0xba, 0xea, 0x9e, 0x4b, 0xd3, 0xcd, 0xbc, 0x02, 0x53, 0xb9, + 0x4d, 0x4f, 0x9d, 0x4c, 0x6e, 0xd3, 0xd3, 0xc7, 0x9e, 0xdb, 0xf4, 0xcc, 0x09, 0xe4, 0x36, 0x7d, + 0xec, 0x04, 0x73, 0x9b, 0xde, 0x61, 0xd6, 0x1f, 0x3c, 0xc6, 0x8c, 0x88, 0x88, 0x9a, 0x1d, 0x7d, + 0x33, 0x2b, 0x10, 0x0d, 0xff, 0x38, 0x05, 0xc2, 0x31, 0xa9, 0x8c, 0x9c, 0xa9, 0xb3, 0x8f, 0x20, + 0x67, 0xea, 0x7a, 0x9c, 0x33, 0xf5, 0x6c, 0xfe, 0x54, 0x67, 0xf8, 0x0b, 0xe4, 0x64, 0x4a, 0xbd, + 0xa3, 0x67, 0x38, 0x7d, 0xbc, 0x8b, 0x88, 0x3f, 0x4b, 0xf0, 0xd8, 0x25, 0xaf, 0xe9, 0x6b, 0x3c, + 0xaf, 0xe9, 0xb9, 0xfc, 0x93, 0x3c, 0x79, 0xdd, 0x19, 0xd9, 0x4c, 0x69, 0xbf, 0x54, 0xec, 0x3d, + 0x16, 0xfb, 0x35, 0xa7, 0x5f, 0x2a, 0x78, 0x5f, 0xba, 0x5f, 0x0a, 0x84, 0x63, 0x52, 0xf6, 0xf7, + 0x15, 0xe0, 0x42, 0xf7, 0xfd, 0x16, 0x4b, 0x53, 0xab, 0xb1, 0xc6, 0x33, 0x21, 0x4d, 0xe5, 0x6f, + 0xb6, 0x18, 0xab, 0xef, 0xb0, 0x66, 0xd7, 0x60, 0x5a, 0x39, 0x1a, 0x34, 0xdd, 0xfa, 0xfe, 0x7a, + 0xfc, 0xf2, 0x55, 0xce, 0xd9, 0xb5, 0x24, 0x02, 0x4e, 0xd7, 0x41, 0x8b, 0x30, 0x69, 0x14, 0x56, + 0xca, 0xe2, 0x6d, 0xa6, 0xc4, 0xb7, 0x35, 0x13, 0x8c, 0x93, 0xf8, 0xf6, 0x97, 0x2d, 0x78, 0x2c, + 0x27, 0x1d, 0x59, 0xdf, 0x51, 0xbb, 0xb6, 0x60, 0xb2, 0x6d, 0x56, 0xed, 0x11, 0xdc, 0xcf, 0x48, + 0x7a, 0xa6, 0xfa, 0x9a, 0x00, 0xe0, 0x24, 0x51, 0xfb, 0x2f, 0x2c, 0x38, 0xdf, 0xd5, 0x72, 0x0e, + 0x61, 0x38, 0xb3, 0xdd, 0x0a, 0x9d, 0xe5, 0x80, 0x34, 0x88, 0x17, 0xb9, 0x4e, 0xb3, 0xd6, 0x26, + 0x75, 0x4d, 0x1e, 0xce, 0x4c, 0xd0, 0xae, 0xad, 0xd5, 0x16, 0xd3, 0x18, 0x38, 0xa7, 0x26, 0x5a, + 0x05, 0x94, 0x86, 0x88, 0x19, 0x66, 0x51, 0x84, 0xd3, 0xf4, 0x70, 0x46, 0x0d, 0xf4, 0x11, 0x18, + 0x57, 0x16, 0x79, 0xda, 0x8c, 0xb3, 0x83, 0x1d, 0xeb, 0x00, 0x6c, 0xe2, 0x2d, 0x5d, 0xf9, 0xad, + 0x3f, 0xbc, 0xf0, 0xbe, 0xdf, 0xf9, 0xc3, 0x0b, 0xef, 0xfb, 0xbd, 0x3f, 0xbc, 0xf0, 0xbe, 0xef, + 0x78, 0x70, 0xc1, 0xfa, 0xad, 0x07, 0x17, 0xac, 0xdf, 0x79, 0x70, 0xc1, 0xfa, 0xbd, 0x07, 0x17, + 0xac, 0x3f, 0x78, 0x70, 0xc1, 0xfa, 0xd2, 0x1f, 0x5d, 0x78, 0xdf, 0xa7, 0x0a, 0x7b, 0xcf, 0xfd, + 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0c, 0x17, 0x9b, 0x7f, 0xe7, 0x01, 0x01, 0x00, } func (m *AWSElasticBlockStoreVolumeSource) Marshal() (dAtA []byte, err error) { @@ -11554,6 +11555,13 @@ func (m *LoadBalancerIngress) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.IPMode != nil { + i -= len(*m.IPMode) + copy(dAtA[i:], *m.IPMode) + i = encodeVarintGenerated(dAtA, i, uint64(len(*m.IPMode))) + i-- + dAtA[i] = 0x1a + } i -= len(m.Hostname) copy(dAtA[i:], m.Hostname) i = encodeVarintGenerated(dAtA, i, uint64(len(m.Hostname))) @@ -21069,6 +21077,10 @@ func (m *LoadBalancerIngress) Size() (n int) { n += 1 + l + sovGenerated(uint64(l)) l = len(m.Hostname) n += 1 + l + sovGenerated(uint64(l)) + if m.IPMode != nil { + l = len(*m.IPMode) + n += 1 + l + sovGenerated(uint64(l)) + } return n } @@ -25197,6 +25209,7 @@ func (this *LoadBalancerIngress) String() string { s := strings.Join([]string{`&LoadBalancerIngress{`, `IP:` + fmt.Sprintf("%v", this.IP) + `,`, `Hostname:` + fmt.Sprintf("%v", this.Hostname) + `,`, + `IPMode:` + valueToStringGenerated(this.IPMode) + `,`, `}`, }, "") return s @@ -42263,6 +42276,39 @@ func (m *LoadBalancerIngress) Unmarshal(dAtA []byte) error { } m.Hostname = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field IPMode", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenerated + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthGenerated + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthGenerated + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + s := LoadBalancerIPMode(dAtA[iNdEx:postIndex]) + m.IPMode = &s + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenerated(dAtA[iNdEx:]) diff --git a/staging/src/k8s.io/api/core/v1/generated.proto b/staging/src/k8s.io/api/core/v1/generated.proto index 0d8218ef46c..0d1feabb880 100644 --- a/staging/src/k8s.io/api/core/v1/generated.proto +++ b/staging/src/k8s.io/api/core/v1/generated.proto @@ -2036,6 +2036,11 @@ message LoadBalancerIngress { // (typically AWS load-balancers) // +optional optional string hostname = 2; + + // IPMode specifies the IP mode to use for this ingress + // Defaults to `VIP` if IP is set, null otherwise + // +optional + optional string ipMode = 3; } // LoadBalancerStatus represents the status of a load-balancer. diff --git a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go index a277e05eb70..f39646af260 100644 --- a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go +++ b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go @@ -953,6 +953,7 @@ var map_LoadBalancerIngress = map[string]string{ "": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.", "ip": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", "hostname": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)", + "ipMode": "IPMode specifies the IP mode to use for this ingress Defaults to `VIP` if IP is set, null otherwise", } func (LoadBalancerIngress) SwaggerDoc() map[string]string { diff --git a/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go b/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go index 307e30440b0..1e00ff28928 100644 --- a/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go +++ b/staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go @@ -2144,6 +2144,11 @@ func (in *List) DeepCopyObject() runtime.Object { // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. func (in *LoadBalancerIngress) DeepCopyInto(out *LoadBalancerIngress) { *out = *in + if in.IPMode != nil { + in, out := &in.IPMode, &out.IPMode + *out = new(LoadBalancerIPMode) + **out = **in + } return } @@ -2163,7 +2168,9 @@ func (in *LoadBalancerStatus) DeepCopyInto(out *LoadBalancerStatus) { if in.Ingress != nil { in, out := &in.Ingress, &out.Ingress *out = make([]LoadBalancerIngress, len(*in)) - copy(*out, *in) + for i := range *in { + (*in)[i].DeepCopyInto(&(*out)[i]) + } } return } diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.json b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.json index 360cfe645be..fee2387ce6e 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.json +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.json @@ -89,7 +89,8 @@ "ingress": [ { "ip": "31", - "hostname": "32" + "hostname": "32", + "ipMode": "ƕP喂ƈ" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.pb b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.pb index 68975591f6c92eab2288c500bbb92039c1e84e22..1a3dbe4e7900cd8d720864c07b6c31d7e87ce167 100644 GIT binary patch delta 40 wcmdnNe29612;+*4qLUb<#kfScgt(ZD4TYGDjifk^O$~TDt?5{Y6oV220NEW1&j0`b delta 30 lcmX@ayn}gy2;;nsqLUZ}dAPW^IJlUM4TYGDjieZq7yxq31%&_r diff --git a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.yaml b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.yaml index 4fdd27f37ae..28a5ff25818 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.yaml @@ -66,3 +66,4 @@ status: ingress: - hostname: "32" ip: "31" + ipMode: ƕP喂ƈ diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.json b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.json index 22ae9b7a3a1..2bf1b704bbd 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.json +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.json @@ -87,7 +87,8 @@ "ingress": [ { "ip": "33", - "hostname": "34" + "hostname": "34", + "ipMode": "ěĂ凗蓏Ŋ蛊ĉy緅縕" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.pb b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.pb index cc298eb8ccee03d81b7d879d98e8944709f35316..760e6f28afb35ca55e41cc0ce4263b689267f227 100644 GIT binary patch delta 56 zcmV-80LTB?0`mfpBmv2>B_jbVCJH19A_@XCGZF$bG#VJho5X_UhnMJ+kHw1Un~KDV OdFQu<=eU&`03rY?02X=x delta 30 lcmey&bdza<3gh~Xs>+OlJX~B{99&Gs#zIWSCQ=Ma3;=h=1)Bf> diff --git a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.yaml b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.yaml index a7935834303..584f765cede 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Ingress.yaml @@ -60,3 +60,4 @@ status: ingress: - hostname: "34" ip: "33" + ipMode: ěĂ凗蓏Ŋ蛊ĉy緅縕 diff --git a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.Ingress.json b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.Ingress.json index f76378977ca..1c5a71ff160 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.Ingress.json +++ b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.Ingress.json @@ -97,7 +97,8 @@ "ingress": [ { "ip": "34", - "hostname": "35" + "hostname": "35", + "ipMode": "ɑ" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.Ingress.pb b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.Ingress.pb index 6b0cac8486f765d67ef2c66b005469ae7a97f7e7..72d21ee15ad7d4647e3fac4a4c4f39f4df704796 100644 GIT binary patch delta 34 qcmcb^^nhuC8snCY>MD$)0$hAtJX}o1CPGZcrcz8NCrU9WF#rIS+6Nr~ delta 30 lcmaFBbcbnz8smnI>MD$aJX~B{99&GsCPGZcrcw+_3;=d@1(N^( diff --git a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.Ingress.yaml b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.Ingress.yaml index 5156161786d..e135e0b70ae 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.Ingress.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1.Ingress.yaml @@ -66,3 +66,4 @@ status: ingress: - hostname: "35" ip: "34" + ipMode: ɑ diff --git a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.json b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.json index 5fafa258026..1cc40c5ce4a 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.json +++ b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.json @@ -87,7 +87,8 @@ "ingress": [ { "ip": "33", - "hostname": "34" + "hostname": "34", + "ipMode": "ěĂ凗蓏Ŋ蛊ĉy緅縕" } ] } diff --git a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.pb b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.pb index ee71af2b4d7acfe24a9a8b36cdb2697eeee17b9e..46b52cb612552b9b0c71de2f15b75c1b4225fd88 100644 GIT binary patch delta 56 zcmV-80LTB}0{Q}wD*?%|EF%FcCJH19A_@XCGZF$bG#VJho5X_UhnMJ+kHw1Un~KDV OdFQu<=eU&`03rY{uojj8 delta 30 lcmeyx^nhuCHskt@I?9ZKJX~B{99&Gs#zIWSCQ=Ma3;=qb1-AeI diff --git a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.yaml b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.yaml index fa5da5a18b6..9cf3a505cf4 100644 --- a/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.yaml +++ b/staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.yaml @@ -60,3 +60,4 @@ status: ingress: - hostname: "34" ip: "33" + ipMode: ěĂ凗蓏Ŋ蛊ĉy緅縕 From 540901779c644886117bb83592dc7b3943629292 Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Thu, 5 Nov 2020 11:41:31 +0100 Subject: [PATCH 09/16] fix reviews Signed-off-by: Patrik Cyvoct --- pkg/apis/core/types.go | 10 +- pkg/apis/core/validation/validation.go | 22 ++- pkg/apis/core/validation/validation_test.go | 84 ++++++++++ pkg/proxy/iptables/proxier.go | 2 +- pkg/proxy/ipvs/proxier.go | 2 +- pkg/proxy/service.go | 24 +-- pkg/proxy/util/utils.go | 23 +++ pkg/proxy/util/utils_test.go | 176 ++++++++++++++++++++ staging/src/k8s.io/api/core/v1/types.go | 10 +- 9 files changed, 319 insertions(+), 34 deletions(-) diff --git a/pkg/apis/core/types.go b/pkg/apis/core/types.go index 5e605adbe08..afa9b06a7e4 100644 --- a/pkg/apis/core/types.go +++ b/pkg/apis/core/types.go @@ -3509,8 +3509,12 @@ type LoadBalancerIngress struct { // +optional Hostname string - // IPMode specifies the IP mode to use for this ingress - // Defaults to `VIP` if IP is set, null otherwise + // IPMode specifies how the load-balancer's IP behaves. + // Setting this to "VIP" indicates that the traffic passing through + // this load-balancer is delivered with the destination IP and port set to the load-balancer's IP and port. + // Setting this to "Proxy" indicates that the load-balancer acts like a proxy, + // delivering traffic with the destination IP and port set to the node's IP and nodePort or to the pod's IP and targetPort. + // This field can only be set when the ip field is also set, and defaults to "VIP" if not specified. // +optional IPMode *LoadBalancerIPMode } @@ -3528,7 +3532,7 @@ const ( // is delivered with the destination IP set to the specified LoadBalancer IP LoadBalancerIPModeVIP LoadBalancerIPMode = "VIP" // LoadBalancerIPModeProxy indicates that the specified LoadBalancer acts like a proxy, - // changing the destination IP to the node IP and the source IP to the LoadBalaner (mostly private) IP + // changing the destination IP to the node IP and the source IP to the LoadBalancer (mostly private) IP LoadBalancerIPModeProxy LoadBalancerIPMode = "Proxy" ) diff --git a/pkg/apis/core/validation/validation.go b/pkg/apis/core/validation/validation.go index 154f18609c4..1b4399c1e68 100644 --- a/pkg/apis/core/validation/validation.go +++ b/pkg/apis/core/validation/validation.go @@ -5989,18 +5989,22 @@ func ValidateLoadBalancerStatus(status *core.LoadBalancerStatus, fldPath *field. } if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) { - if len(ingress.IP) > 0 && ingress.IPMode != nil { - switch *ingress.IPMode { - case core.LoadBalancerIPModeVIP, core.LoadBalancerIPModeProxy: - break - default: - allErrs = append(allErrs, field.NotSupported(idxPath.Child("ipMode"), ingress.IPMode, supportedLoadBalancerIPMode.List())) - } - } else if len(ingress.IP) > 0 && ingress.IPMode == nil { + if len(ingress.IP) > 0 && ingress.IPMode == nil { allErrs = append(allErrs, field.Required(idxPath.Child("ipMode"), "must be specified when `ip` is set")) - } else if len(ingress.IP) == 0 && ingress.IPMode != nil { + } + } + + if ingress.IPMode != nil { + if len(ingress.IP) == 0 { allErrs = append(allErrs, field.Forbidden(idxPath.Child("ipMode"), "may not be used when `ip` is not set")) } + + switch *ingress.IPMode { + case core.LoadBalancerIPModeVIP, core.LoadBalancerIPModeProxy: + break + default: + allErrs = append(allErrs, field.NotSupported(idxPath.Child("ipMode"), ingress.IPMode, supportedLoadBalancerIPMode.List())) + } } if len(ingress.Hostname) > 0 { diff --git a/pkg/apis/core/validation/validation_test.go b/pkg/apis/core/validation/validation_test.go index 20276c41a22..7f73d3f6877 100644 --- a/pkg/apis/core/validation/validation_test.go +++ b/pkg/apis/core/validation/validation_test.go @@ -11071,6 +11071,90 @@ func TestValidateServiceCreate(t *testing.T) { } } +func TestValidateLoadBalancerStatus(t *testing.T) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, true)() + + ipModeVIP := core.LoadBalancerIPModeVIP + ipModeProxy := core.LoadBalancerIPModeProxy + ipModeDummy := core.LoadBalancerIPMode("dummy") + + testCases := []struct { + name string + tweakLBStatus func(s *core.LoadBalancerStatus) + numErrs int + }{ + /* LoadBalancerIPMode*/ + { + name: `valid vip ipMode`, + tweakLBStatus: func(s *core.LoadBalancerStatus) { + s.Ingress = []core.LoadBalancerIngress{ + { + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }, + } + }, + numErrs: 0, + }, + { + name: `valid proxy ipMode`, + tweakLBStatus: func(s *core.LoadBalancerStatus) { + s.Ingress = []core.LoadBalancerIngress{ + { + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }, + } + }, + numErrs: 0, + }, + { + name: `invalid ipMode`, + tweakLBStatus: func(s *core.LoadBalancerStatus) { + s.Ingress = []core.LoadBalancerIngress{ + { + IP: "1.2.3.4", + IPMode: &ipModeDummy, + }, + } + }, + numErrs: 1, + }, + { + name: `missing ipMode`, + tweakLBStatus: func(s *core.LoadBalancerStatus) { + s.Ingress = []core.LoadBalancerIngress{ + { + IP: "1.2.3.4", + }, + } + }, + numErrs: 1, + }, + { + name: `missing ip with ipMode present`, + tweakLBStatus: func(s *core.LoadBalancerStatus) { + s.Ingress = []core.LoadBalancerIngress{ + { + IPMode: &ipModeProxy, + }, + } + }, + numErrs: 1, + }, + } + for _, tc := range testCases { + t.Run(tc.name, func(t *testing.T) { + s := core.LoadBalancerStatus{} + tc.tweakLBStatus(&s) + errs := ValidateLoadBalancerStatus(&s, field.NewPath("status")) + if len(errs) != tc.numErrs { + t.Errorf("Unexpected error list for case %q(expected:%v got %v) - Errors:\n %v", tc.name, tc.numErrs, len(errs), errs.ToAggregate()) + } + }) + } +} + func TestValidateServiceExternalTrafficFieldsCombination(t *testing.T) { testCases := []struct { name string diff --git a/pkg/proxy/iptables/proxier.go b/pkg/proxy/iptables/proxier.go index 6b3bd48432b..e4ba681d2a9 100644 --- a/pkg/proxy/iptables/proxier.go +++ b/pkg/proxy/iptables/proxier.go @@ -1175,7 +1175,7 @@ func (proxier *Proxier) syncProxyRules() { // This currently works for loadbalancers that preserves source ips. // For loadbalancers which direct traffic to service NodePort, the firewall rules will not apply. - if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || ingress.IPMode == nil || *ingress.IPMode == v1.LoadBalancerIPModeVIP { + if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || *ingress.IPMode == v1.LoadBalancerIPModeVIP { args = append(args[:0], "-A", string(kubeServicesChain), "-m", "comment", "--comment", fmt.Sprintf(`"%s loadbalancer IP"`, svcNameString), diff --git a/pkg/proxy/ipvs/proxier.go b/pkg/proxy/ipvs/proxier.go index 4a481a5b330..513a66ead51 100644 --- a/pkg/proxy/ipvs/proxier.go +++ b/pkg/proxy/ipvs/proxier.go @@ -1333,7 +1333,7 @@ func (proxier *Proxier) syncProxyRules() { // Capture load-balancer ingress. for _, ingress := range svcInfo.LoadBalancerIngress() { - if ingress.IP != "" && (!utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || ingress.IPMode == nil || *ingress.IPMode == v1.LoadBalancerIPModeVIP) { + if ingress.IP != "" && (!utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || *ingress.IPMode == v1.LoadBalancerIPModeVIP) { // ipset call entry = &utilipset.Entry{ IP: ingress.IP, diff --git a/pkg/proxy/service.go b/pkg/proxy/service.go index 4557c283760..6cfce122911 100644 --- a/pkg/proxy/service.go +++ b/pkg/proxy/service.go @@ -163,26 +163,16 @@ func (sct *ServiceChangeTracker) newBaseServiceInfo(port *v1.ServicePort, servic klog.V(4).Infof("service change tracker(%v) ignored the following load balancer source ranges(%s) for service %v/%v as they don't match IPFamily", sct.ipFamily, strings.Join(incorrectIPs, ","), service.Namespace, service.Name) } - // Obtain Load Balancer Ingress IPs - var allIncorrectIPs []string - for _, ing := range service.Status.LoadBalancer.Ingress { - // []string{ing.IP} have a len of 1, so len(correctIPs) + len(incorrectIPs) == 1 - correctIPs, incorrectIPs := utilproxy.FilterIncorrectIPVersion([]string{ing.IP}, sct.ipFamily) + correctIngresses, incorrectIngresses := utilproxy.FilterIncorrectLoadBalancerIngress(service.Status.LoadBalancer.Ingress, sct.ipFamily) - // len is either 1 or 0 - if len(correctIPs) == 1 { - // Update the LoadBalancerStatus with the filtered IP - info.loadBalancerStatus.Ingress = append(info.loadBalancerStatus.Ingress, ing) - continue + info.loadBalancerStatus.Ingress = correctIngresses + + if len(incorrectIngresses) > 0 { + var incorrectIPs []string + for _, incorrectIng := range incorrectIngresses { + incorrectIPs = append(incorrectIPs, incorrectIng.IP) } - - // here len(incorrectIPs) == 1 since len(correctIPs) == 0 - allIncorrectIPs = append(allIncorrectIPs, incorrectIPs[0]) - } - - if len(allIncorrectIPs) > 0 { klog.V(4).Infof("service change tracker(%v) ignored the following load balancer(%s) ingress ips for service %v/%v as they don't match IPFamily", sct.ipFamily, strings.Join(incorrectIPs, ","), service.Namespace, service.Name) - } if apiservice.NeedsHealthCheck(service) { diff --git a/pkg/proxy/util/utils.go b/pkg/proxy/util/utils.go index 2031cd1a09e..4fb49a97c53 100644 --- a/pkg/proxy/util/utils.go +++ b/pkg/proxy/util/utils.go @@ -403,3 +403,26 @@ func GetClusterIPByFamily(ipFamily v1.IPFamily, service *v1.Service) string { return "" } + +// FilterIncorrectLoadBalancerIngress filters out the ingresses with an IP version different from the given one +func FilterIncorrectLoadBalancerIngress(ingresses []v1.LoadBalancerIngress, ipFamily v1.IPFamily) ([]v1.LoadBalancerIngress, []v1.LoadBalancerIngress) { + var validIngresses []v1.LoadBalancerIngress + var invalidIngresses []v1.LoadBalancerIngress + + for _, ing := range ingresses { + // []string{ing.IP} have a len of 1, so len(correctIPs) + len(incorrectIPs) == 1 + correctIPs, _ := FilterIncorrectIPVersion([]string{ing.IP}, ipFamily) + + // len is either 1 or 0 + if len(correctIPs) == 1 { + // Update the LoadBalancerStatus with the filtered IP + validIngresses = append(validIngresses, ing) + continue + } + + // here len(incorrectIPs) == 1 since len(correctIPs) == 0 + invalidIngresses = append(invalidIngresses, ing) + } + + return validIngresses, invalidIngresses +} diff --git a/pkg/proxy/util/utils_test.go b/pkg/proxy/util/utils_test.go index f10a95c88b3..787f92f49c7 100644 --- a/pkg/proxy/util/utils_test.go +++ b/pkg/proxy/util/utils_test.go @@ -822,3 +822,179 @@ func TestGetClusterIPByFamily(t *testing.T) { } } + +func TestFilterIncorrectLoadBalancerIngress(t *testing.T) { + ipModeVIP := v1.LoadBalancerIPModeVIP + testCases := []struct { + name string + ingresses []v1.LoadBalancerIngress + ipFamily v1.IPFamily + expectedCorrect []v1.LoadBalancerIngress + expectedIncorrect []v1.LoadBalancerIngress + }{ + { + name: "IPv4 only valid ingresses", + ipFamily: v1.IPv4Protocol, + ingresses: []v1.LoadBalancerIngress{ + { + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }, + { + IP: "1.2.3.5", + }, + }, + expectedCorrect: []v1.LoadBalancerIngress{ + { + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }, + { + IP: "1.2.3.5", + }, + }, + expectedIncorrect: nil, + }, + { + name: "IPv4 some invalid ingresses", + ipFamily: v1.IPv4Protocol, + ingresses: []v1.LoadBalancerIngress{ + { + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }, + { + IP: "2000::1", + }, + { + Hostname: "dummy", + }, + }, + expectedCorrect: []v1.LoadBalancerIngress{ + { + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }, + { + Hostname: "dummy", // weirdly no IP is a valid IPv4 but invalid IPv6 + }, + }, + expectedIncorrect: []v1.LoadBalancerIngress{ + { + IP: "2000::1", + }, + }, + }, + { + name: "IPv4 only invalid ingresses", + ipFamily: v1.IPv4Protocol, + ingresses: []v1.LoadBalancerIngress{ + { + IP: "2000::1", + }, + { + IP: "2000::1", + IPMode: &ipModeVIP, + }, + }, + expectedCorrect: nil, + expectedIncorrect: []v1.LoadBalancerIngress{ + { + IP: "2000::1", + }, + { + IP: "2000::1", + IPMode: &ipModeVIP, + }, + }, + }, + { + name: "IPv6 only valid ingresses", + ipFamily: v1.IPv6Protocol, + ingresses: []v1.LoadBalancerIngress{ + { + IP: "2000::1", + IPMode: &ipModeVIP, + }, + { + IP: "2000::2", + }, + }, + expectedCorrect: []v1.LoadBalancerIngress{ + { + IP: "2000::1", + IPMode: &ipModeVIP, + }, + { + IP: "2000::2", + }, + }, + expectedIncorrect: nil, + }, + { + name: "IPv6 some invalid ingresses", + ipFamily: v1.IPv6Protocol, + ingresses: []v1.LoadBalancerIngress{ + { + IP: "2000::1", + IPMode: &ipModeVIP, + }, + { + IP: "1.2.3.4", + }, + { + Hostname: "dummy", + }, + }, + expectedCorrect: []v1.LoadBalancerIngress{ + { + IP: "2000::1", + IPMode: &ipModeVIP, + }, + }, + expectedIncorrect: []v1.LoadBalancerIngress{ + { + IP: "1.2.3.4", + }, + { + Hostname: "dummy", // weirdly no IP is a valid IPv4 but invalid IPv6 + }, + }, + }, + { + name: "IPv6 only invalid ingresses", + ipFamily: v1.IPv6Protocol, + ingresses: []v1.LoadBalancerIngress{ + { + IP: "1.2.3.4", + }, + { + IP: "1.2.3.5", + IPMode: &ipModeVIP, + }, + }, + expectedCorrect: nil, + expectedIncorrect: []v1.LoadBalancerIngress{ + { + IP: "1.2.3.4", + }, + { + IP: "1.2.3.5", + IPMode: &ipModeVIP, + }, + }, + }, + } + + for _, testCase := range testCases { + t.Run(testCase.name, func(t *testing.T) { + correctIngresses, incorrectIngresses := FilterIncorrectLoadBalancerIngress(testCase.ingresses, testCase.ipFamily) + if !reflect.DeepEqual(correctIngresses, testCase.expectedCorrect) { + t.Errorf("Test %v failed: expected %v, got %v", testCase.name, testCase.expectedCorrect, correctIngresses) + } + if !reflect.DeepEqual(incorrectIngresses, testCase.expectedIncorrect) { + t.Errorf("Test %v failed: expected %v, got %v", testCase.name, testCase.expectedIncorrect, incorrectIngresses) + } + }) + } +} diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go index 301db96fc2b..4ee36bb1893 100644 --- a/staging/src/k8s.io/api/core/v1/types.go +++ b/staging/src/k8s.io/api/core/v1/types.go @@ -3972,8 +3972,12 @@ type LoadBalancerIngress struct { // +optional Hostname string `json:"hostname,omitempty" protobuf:"bytes,2,opt,name=hostname"` - // IPMode specifies the IP mode to use for this ingress - // Defaults to `VIP` if IP is set, null otherwise + // IPMode specifies how the load-balancer's IP behaves. + // Setting this to "VIP" indicates that the traffic passing through + // this load-balancer is delivered with the destination IP and port set to the load-balancer's IP and port. + // Setting this to "Proxy" indicates that the load-balancer acts like a proxy, + // delivering traffic with the destination IP and port set to the node's IP and nodePort or to the pod's IP and targetPort. + // This field can only be set when the ip field is also set, and defaults to "VIP" if not specified. // +optional IPMode *LoadBalancerIPMode `json:"ipMode,omitempty" protobuf:"bytes,3,opt,name=ipMode"` } @@ -3991,7 +3995,7 @@ const ( // is delivered with the destination IP set to the specified LoadBalancer IP LoadBalancerIPModeVIP LoadBalancerIPMode = "VIP" // LoadBalancerIPModeProxy indicates that the specified LoadBalancer acts like a proxy, - // changing the destination IP to the node IP and the source IP to the LoadBalaner (mostly private) IP + // changing the destination IP to the node IP and the source IP to the LoadBalancer (mostly private) IP LoadBalancerIPModeProxy LoadBalancerIPMode = "Proxy" ) From 1fd08bc92e81981d351229ada8f5fb072c26b6d8 Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Thu, 5 Nov 2020 11:55:22 +0100 Subject: [PATCH 10/16] Update generated Signed-off-by: Patrik Cyvoct --- api/openapi-spec/swagger.json | 2 +- staging/src/k8s.io/api/core/v1/generated.proto | 8 ++++++-- .../src/k8s.io/api/core/v1/types_swagger_doc_generated.go | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 5ae049b6a36..98873605e7f 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -7339,7 +7339,7 @@ "type": "string" }, "ipMode": { - "description": "IPMode specifies the IP mode to use for this ingress Defaults to `VIP` if IP is set, null otherwise", + "description": "IPMode specifies how the load-balancer's IP behaves. Setting this to \"VIP\" indicates that the traffic passing through this load-balancer is delivered with the destination IP and port set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that the load-balancer acts like a proxy, delivering traffic with the destination IP and port set to the node's IP and nodePort or to the pod's IP and targetPort. This field can only be set when the ip field is also set, and defaults to \"VIP\" if not specified.", "type": "string" } }, diff --git a/staging/src/k8s.io/api/core/v1/generated.proto b/staging/src/k8s.io/api/core/v1/generated.proto index 0d1feabb880..c5794cc8ef7 100644 --- a/staging/src/k8s.io/api/core/v1/generated.proto +++ b/staging/src/k8s.io/api/core/v1/generated.proto @@ -2037,8 +2037,12 @@ message LoadBalancerIngress { // +optional optional string hostname = 2; - // IPMode specifies the IP mode to use for this ingress - // Defaults to `VIP` if IP is set, null otherwise + // IPMode specifies how the load-balancer's IP behaves. + // Setting this to "VIP" indicates that the traffic passing through + // this load-balancer is delivered with the destination IP and port set to the load-balancer's IP and port. + // Setting this to "Proxy" indicates that the load-balancer acts like a proxy, + // delivering traffic with the destination IP and port set to the node's IP and nodePort or to the pod's IP and targetPort. + // This field can only be set when the ip field is also set, and defaults to "VIP" if not specified. // +optional optional string ipMode = 3; } diff --git a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go index f39646af260..de36d8f22ed 100644 --- a/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go +++ b/staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go @@ -953,7 +953,7 @@ var map_LoadBalancerIngress = map[string]string{ "": "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.", "ip": "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", "hostname": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)", - "ipMode": "IPMode specifies the IP mode to use for this ingress Defaults to `VIP` if IP is set, null otherwise", + "ipMode": "IPMode specifies how the load-balancer's IP behaves. Setting this to \"VIP\" indicates that the traffic passing through this load-balancer is delivered with the destination IP and port set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that the load-balancer acts like a proxy, delivering traffic with the destination IP and port set to the node's IP and nodePort or to the pod's IP and targetPort. This field can only be set when the ip field is also set, and defaults to \"VIP\" if not specified.", } func (LoadBalancerIngress) SwaggerDoc() map[string]string { From 11b97e9ef8dc64dd65b8c52966054c0bad69bb9c Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Thu, 5 Nov 2020 13:02:37 +0100 Subject: [PATCH 11/16] fix tests Signed-off-by: Patrik Cyvoct --- pkg/proxy/iptables/proxier_test.go | 6 ------ pkg/proxy/ipvs/proxier_test.go | 6 ------ 2 files changed, 12 deletions(-) diff --git a/pkg/proxy/iptables/proxier_test.go b/pkg/proxy/iptables/proxier_test.go index 93fde53a41e..fd206fd0033 100644 --- a/pkg/proxy/iptables/proxier_test.go +++ b/pkg/proxy/iptables/proxier_test.go @@ -2709,12 +2709,6 @@ func TestLoadBalancerIngressRouteTypeProxy(t *testing.T) { ipMode: &ipModeVIP, expectedRule: true, }, - { - svcIP: "10.20.30.43", - svcLBIP: "1.2.3.6", - ipMode: nil, - expectedRule: true, - }, } svcPort := 80 diff --git a/pkg/proxy/ipvs/proxier_test.go b/pkg/proxy/ipvs/proxier_test.go index acfce215ef5..e5438472b30 100644 --- a/pkg/proxy/ipvs/proxier_test.go +++ b/pkg/proxy/ipvs/proxier_test.go @@ -4348,12 +4348,6 @@ func TestLoadBalancerIngressRouteTypeProxy(t *testing.T) { ipMode: &ipModeVIP, expectedServices: 2, }, - { - svcIP: "10.20.30.43", - svcLBIP: "1.2.3.6", - ipMode: nil, - expectedServices: 2, - }, } svcPort := 80 From 40dcef27c402ca78482ef793f8e6f8bf46e54949 Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Fri, 6 Nov 2020 08:16:06 +0100 Subject: [PATCH 12/16] fix nit in validation Signed-off-by: Patrik Cyvoct --- pkg/apis/core/validation/validation.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkg/apis/core/validation/validation.go b/pkg/apis/core/validation/validation.go index 1b4399c1e68..979d7e191d0 100644 --- a/pkg/apis/core/validation/validation.go +++ b/pkg/apis/core/validation/validation.go @@ -5999,10 +5999,7 @@ func ValidateLoadBalancerStatus(status *core.LoadBalancerStatus, fldPath *field. allErrs = append(allErrs, field.Forbidden(idxPath.Child("ipMode"), "may not be used when `ip` is not set")) } - switch *ingress.IPMode { - case core.LoadBalancerIPModeVIP, core.LoadBalancerIPModeProxy: - break - default: + if !supportedLoadBalancerIPMode.Has(*ingress.IPMode) { allErrs = append(allErrs, field.NotSupported(idxPath.Child("ipMode"), ingress.IPMode, supportedLoadBalancerIPMode.List())) } } From fea88f44a79c9eb8ad226ebb7e7b9c85ba4e6725 Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Fri, 6 Nov 2020 08:22:38 +0100 Subject: [PATCH 13/16] fix build Signed-off-by: Patrik Cyvoct --- pkg/apis/core/validation/validation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/apis/core/validation/validation.go b/pkg/apis/core/validation/validation.go index 979d7e191d0..930185b9084 100644 --- a/pkg/apis/core/validation/validation.go +++ b/pkg/apis/core/validation/validation.go @@ -5999,7 +5999,7 @@ func ValidateLoadBalancerStatus(status *core.LoadBalancerStatus, fldPath *field. allErrs = append(allErrs, field.Forbidden(idxPath.Child("ipMode"), "may not be used when `ip` is not set")) } - if !supportedLoadBalancerIPMode.Has(*ingress.IPMode) { + if !supportedLoadBalancerIPMode.Has(string(*ingress.IPMode)) { allErrs = append(allErrs, field.NotSupported(idxPath.Child("ipMode"), ingress.IPMode, supportedLoadBalancerIPMode.List())) } } From 0768b45e7bbb47d9669f83a41485f32e2e191c1d Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Fri, 6 Nov 2020 10:25:25 +0100 Subject: [PATCH 14/16] add nil case in proxy Signed-off-by: Patrik Cyvoct --- pkg/proxy/iptables/proxier.go | 2 +- pkg/proxy/ipvs/proxier.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/proxy/iptables/proxier.go b/pkg/proxy/iptables/proxier.go index e4ba681d2a9..6b3bd48432b 100644 --- a/pkg/proxy/iptables/proxier.go +++ b/pkg/proxy/iptables/proxier.go @@ -1175,7 +1175,7 @@ func (proxier *Proxier) syncProxyRules() { // This currently works for loadbalancers that preserves source ips. // For loadbalancers which direct traffic to service NodePort, the firewall rules will not apply. - if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || *ingress.IPMode == v1.LoadBalancerIPModeVIP { + if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || ingress.IPMode == nil || *ingress.IPMode == v1.LoadBalancerIPModeVIP { args = append(args[:0], "-A", string(kubeServicesChain), "-m", "comment", "--comment", fmt.Sprintf(`"%s loadbalancer IP"`, svcNameString), diff --git a/pkg/proxy/ipvs/proxier.go b/pkg/proxy/ipvs/proxier.go index 513a66ead51..4a481a5b330 100644 --- a/pkg/proxy/ipvs/proxier.go +++ b/pkg/proxy/ipvs/proxier.go @@ -1333,7 +1333,7 @@ func (proxier *Proxier) syncProxyRules() { // Capture load-balancer ingress. for _, ingress := range svcInfo.LoadBalancerIngress() { - if ingress.IP != "" && (!utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || *ingress.IPMode == v1.LoadBalancerIPModeVIP) { + if ingress.IP != "" && (!utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || ingress.IPMode == nil || *ingress.IPMode == v1.LoadBalancerIPModeVIP) { // ipset call entry = &utilipset.Entry{ IP: ingress.IP, From 20fc86df258846721019e5a20affd4d33942acf0 Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Sat, 7 Nov 2020 09:59:43 +0100 Subject: [PATCH 15/16] fix defaulting Signed-off-by: Patrik Cyvoct --- pkg/apis/core/v1/defaults.go | 6 +++--- pkg/proxy/iptables/proxier.go | 2 +- pkg/proxy/ipvs/proxier.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkg/apis/core/v1/defaults.go b/pkg/apis/core/v1/defaults.go index 5e8ef589b28..d23e31557d2 100644 --- a/pkg/apis/core/v1/defaults.go +++ b/pkg/apis/core/v1/defaults.go @@ -171,9 +171,9 @@ func SetDefaults_Service(obj *v1.Service) { obj.Spec.Type == v1.ServiceTypeLoadBalancer { ipMode := v1.LoadBalancerIPModeVIP - for _, ing := range obj.Status.LoadBalancer.Ingress { - if ing.IPMode == nil { - ing.IPMode = &ipMode + for i, ing := range obj.Status.LoadBalancer.Ingress { + if ing.IP != "" && ing.IPMode == nil { + obj.Status.LoadBalancer.Ingress[i].IPMode = &ipMode } } } diff --git a/pkg/proxy/iptables/proxier.go b/pkg/proxy/iptables/proxier.go index 6b3bd48432b..e4ba681d2a9 100644 --- a/pkg/proxy/iptables/proxier.go +++ b/pkg/proxy/iptables/proxier.go @@ -1175,7 +1175,7 @@ func (proxier *Proxier) syncProxyRules() { // This currently works for loadbalancers that preserves source ips. // For loadbalancers which direct traffic to service NodePort, the firewall rules will not apply. - if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || ingress.IPMode == nil || *ingress.IPMode == v1.LoadBalancerIPModeVIP { + if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || *ingress.IPMode == v1.LoadBalancerIPModeVIP { args = append(args[:0], "-A", string(kubeServicesChain), "-m", "comment", "--comment", fmt.Sprintf(`"%s loadbalancer IP"`, svcNameString), diff --git a/pkg/proxy/ipvs/proxier.go b/pkg/proxy/ipvs/proxier.go index 4a481a5b330..513a66ead51 100644 --- a/pkg/proxy/ipvs/proxier.go +++ b/pkg/proxy/ipvs/proxier.go @@ -1333,7 +1333,7 @@ func (proxier *Proxier) syncProxyRules() { // Capture load-balancer ingress. for _, ingress := range svcInfo.LoadBalancerIngress() { - if ingress.IP != "" && (!utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || ingress.IPMode == nil || *ingress.IPMode == v1.LoadBalancerIPModeVIP) { + if ingress.IP != "" && (!utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) || *ingress.IPMode == v1.LoadBalancerIPModeVIP) { // ipset call entry = &utilipset.Entry{ IP: ingress.IP, From dd5646d56da62a0b930abefd86d142a2ca9404e8 Mon Sep 17 00:00:00 2001 From: Patrik Cyvoct Date: Sat, 7 Nov 2020 11:46:42 +0100 Subject: [PATCH 16/16] fix ingress comparaison Signed-off-by: Patrik Cyvoct --- staging/src/k8s.io/cloud-provider/service/helpers/helper.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/staging/src/k8s.io/cloud-provider/service/helpers/helper.go b/staging/src/k8s.io/cloud-provider/service/helpers/helper.go index 0609361762b..6a9daecf6dd 100644 --- a/staging/src/k8s.io/cloud-provider/service/helpers/helper.go +++ b/staging/src/k8s.io/cloud-provider/service/helpers/helper.go @@ -180,5 +180,8 @@ func ingressEqual(lhs, rhs *v1.LoadBalancerIngress) bool { if lhs.Hostname != rhs.Hostname { return false } + if lhs.IPMode != rhs.IPMode { + return false + } return true }