diff --git a/api/openapi-spec/swagger.json b/api/openapi-spec/swagger.json index 6c7f34825af..d4f1423ba87 100644 --- a/api/openapi-spec/swagger.json +++ b/api/openapi-spec/swagger.json @@ -7153,6 +7153,10 @@ "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 how the load-balancer IP behaves, and may only be specified when the ip field is specified. Setting this to \"VIP\" indicates that traffic is delivered to the node with the destination set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that traffic is delivered to the node or pod with the destination set to the node's IP and node port or the pod's IP and port. Service implementations may use this information to adjust traffic routing.", + "type": "string" + }, "ports": { "description": "Ports is a list of records of service ports If used, every port defined in the service should have an entry in it", "items": { diff --git a/api/openapi-spec/v3/api__v1_openapi.json b/api/openapi-spec/v3/api__v1_openapi.json index e034bf10911..d819caf725b 100644 --- a/api/openapi-spec/v3/api__v1_openapi.json +++ b/api/openapi-spec/v3/api__v1_openapi.json @@ -3102,6 +3102,10 @@ "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 how the load-balancer IP behaves, and may only be specified when the ip field is specified. Setting this to \"VIP\" indicates that traffic is delivered to the node with the destination set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that traffic is delivered to the node or pod with the destination set to the node's IP and node port or the pod's IP and port. Service implementations may use this information to adjust traffic routing.", + "type": "string" + }, "ports": { "description": "Ports is a list of records of service ports If used, every port defined in the service should have an entry in it", "items": { diff --git a/pkg/apis/core/types.go b/pkg/apis/core/types.go index 75c68af621a..60e47b1632f 100644 --- a/pkg/apis/core/types.go +++ b/pkg/apis/core/types.go @@ -4074,6 +4074,15 @@ type LoadBalancerIngress struct { // +optional Hostname string + // IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified. + // Setting this to "VIP" indicates that traffic is delivered to the node with + // the destination set to the load-balancer's IP and port. + // Setting this to "Proxy" indicates that traffic is delivered to the node or pod with + // the destination set to the node's IP and node port or the pod's IP and port. + // Service implementations may use this information to adjust traffic routing. + // +optional + IPMode *LoadBalancerIPMode + // Ports is a list of records of service ports // If used, every port defined in the service should have an entry in it // +optional @@ -6146,3 +6155,15 @@ type PortStatus struct { // +kubebuilder:validation:MaxLength=316 Error *string } + +// LoadBalancerIPMode represents the mode of the LoadBalancer ingress IP +type LoadBalancerIPMode string + +const ( + // LoadBalancerIPModeVIP indicates that traffic is delivered to the node with + // the destination set to the load-balancer's IP and port. + LoadBalancerIPModeVIP LoadBalancerIPMode = "VIP" + // LoadBalancerIPModeProxy indicates that traffic is delivered to the node or pod with + // the destination set to the node's IP and port or the pod's IP and port. + LoadBalancerIPModeProxy LoadBalancerIPMode = "Proxy" +) diff --git a/pkg/apis/core/v1/defaults.go b/pkg/apis/core/v1/defaults.go index 51337fe169c..e3a43b1fbd7 100644 --- a/pkg/apis/core/v1/defaults.go +++ b/pkg/apis/core/v1/defaults.go @@ -142,6 +142,19 @@ func SetDefaults_Service(obj *v1.Service) { obj.Spec.AllocateLoadBalancerNodePorts = pointer.Bool(true) } } + + if obj.Spec.Type == v1.ServiceTypeLoadBalancer { + if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) { + ipMode := v1.LoadBalancerIPModeVIP + + for i, ing := range obj.Status.LoadBalancer.Ingress { + if ing.IP != "" && ing.IPMode == nil { + obj.Status.LoadBalancer.Ingress[i].IPMode = &ipMode + } + } + } + } + } func SetDefaults_Pod(obj *v1.Pod) { // If limits are specified, but requests are not, default requests to limits diff --git a/pkg/apis/core/v1/defaults_test.go b/pkg/apis/core/v1/defaults_test.go index e5ff6404bc5..c6db824c620 100644 --- a/pkg/apis/core/v1/defaults_test.go +++ b/pkg/apis/core/v1/defaults_test.go @@ -1221,6 +1221,74 @@ func TestSetDefaultServiceSessionAffinityConfig(t *testing.T) { } } +func TestSetDefaultServiceLoadbalancerIPMode(t *testing.T) { + modeVIP := v1.LoadBalancerIPModeVIP + modeProxy := v1.LoadBalancerIPModeProxy + testCases := []struct { + name string + ipModeEnabled bool + svc *v1.Service + expectedIPMode []*v1.LoadBalancerIPMode + }{ + { + name: "Set IP but not set IPMode with LoadbalancerIPMode disabled", + ipModeEnabled: false, + svc: &v1.Service{ + Spec: v1.ServiceSpec{Type: v1.ServiceTypeLoadBalancer}, + Status: v1.ServiceStatus{ + LoadBalancer: v1.LoadBalancerStatus{ + Ingress: []v1.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }}, + expectedIPMode: []*v1.LoadBalancerIPMode{nil}, + }, { + name: "Set IP but bot set IPMode with LoadbalancerIPMode enabled", + ipModeEnabled: true, + svc: &v1.Service{ + Spec: v1.ServiceSpec{Type: v1.ServiceTypeLoadBalancer}, + Status: v1.ServiceStatus{ + LoadBalancer: v1.LoadBalancerStatus{ + Ingress: []v1.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }}, + expectedIPMode: []*v1.LoadBalancerIPMode{&modeVIP}, + }, { + name: "Both IP and IPMode are set with LoadbalancerIPMode enabled", + ipModeEnabled: true, + svc: &v1.Service{ + Spec: v1.ServiceSpec{Type: v1.ServiceTypeLoadBalancer}, + Status: v1.ServiceStatus{ + LoadBalancer: v1.LoadBalancerStatus{ + Ingress: []v1.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &modeProxy, + }}, + }, + }}, + expectedIPMode: []*v1.LoadBalancerIPMode{&modeProxy}, + }, + } + + for _, tc := range testCases { + t.Run(tc.name, func(t *testing.T) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, tc.ipModeEnabled)() + obj := roundTrip(t, runtime.Object(tc.svc)) + svc := obj.(*v1.Service) + for i, s := range svc.Status.LoadBalancer.Ingress { + got := s.IPMode + expected := tc.expectedIPMode[i] + if !reflect.DeepEqual(got, expected) { + t.Errorf("Expected IPMode %v, got %v", tc.expectedIPMode[i], s.IPMode) + } + } + }) + } +} + func TestSetDefaultSecretVolumeSource(t *testing.T) { s := v1.PodSpec{} s.Volumes = []v1.Volume{ diff --git a/pkg/apis/core/v1/zz_generated.conversion.go b/pkg/apis/core/v1/zz_generated.conversion.go index 8a432e8d705..7f2509b83b9 100644 --- a/pkg/apis/core/v1/zz_generated.conversion.go +++ b/pkg/apis/core/v1/zz_generated.conversion.go @@ -4478,6 +4478,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)) out.Ports = *(*[]core.PortStatus)(unsafe.Pointer(&in.Ports)) return nil } @@ -4490,6 +4491,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)) out.Ports = *(*[]v1.PortStatus)(unsafe.Pointer(&in.Ports)) return nil } diff --git a/pkg/apis/core/validation/validation.go b/pkg/apis/core/validation/validation.go index cd9cbbb8b7e..634b1b45bdb 100644 --- a/pkg/apis/core/validation/validation.go +++ b/pkg/apis/core/validation/validation.go @@ -7048,6 +7048,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{} @@ -7058,6 +7062,17 @@ 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) && ingress.IPMode == nil { + if len(ingress.IP) > 0 { + allErrs = append(allErrs, field.Required(idxPath.Child("ipMode"), "must be specified when `ip` is set")) + } + } else if ingress.IPMode != nil && len(ingress.IP) == 0 { + allErrs = append(allErrs, field.Forbidden(idxPath.Child("ipMode"), "may not be specified when `ip` is not set")) + } else if ingress.IPMode != nil && !supportedLoadBalancerIPMode.Has(string(*ingress.IPMode)) { + allErrs = append(allErrs, field.NotSupported(idxPath.Child("ipMode"), ingress.IPMode, supportedLoadBalancerIPMode.List())) + } + if len(ingress.Hostname) > 0 { for _, msg := range validation.IsDNS1123Subdomain(ingress.Hostname) { allErrs = append(allErrs, field.Invalid(idxPath.Child("hostname"), ingress.Hostname, msg)) diff --git a/pkg/apis/core/validation/validation_test.go b/pkg/apis/core/validation/validation_test.go index b40e8ad54df..55a83faa8f2 100644 --- a/pkg/apis/core/validation/validation_test.go +++ b/pkg/apis/core/validation/validation_test.go @@ -23368,3 +23368,87 @@ func TestValidateDynamicResourceAllocation(t *testing.T) { } }) } + +func TestValidateLoadBalancerStatus(t *testing.T) { + ipModeVIP := core.LoadBalancerIPModeVIP + ipModeProxy := core.LoadBalancerIPModeProxy + ipModeDummy := core.LoadBalancerIPMode("dummy") + + testCases := []struct { + name string + ipModeEnabled bool + tweakLBStatus func(s *core.LoadBalancerStatus) + numErrs int + }{ + /* LoadBalancerIPMode*/ + { + name: "valid vip ipMode", + ipModeEnabled: true, + tweakLBStatus: func(s *core.LoadBalancerStatus) { + s.Ingress = []core.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }} + }, + numErrs: 0, + }, { + name: "valid proxy ipMode", + ipModeEnabled: true, + tweakLBStatus: func(s *core.LoadBalancerStatus) { + s.Ingress = []core.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }} + }, + numErrs: 0, + }, { + name: "invalid ipMode", + ipModeEnabled: true, + tweakLBStatus: func(s *core.LoadBalancerStatus) { + s.Ingress = []core.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeDummy, + }} + }, + numErrs: 1, + }, { + name: "missing ipMode with LoadbalancerIPMode enabled", + ipModeEnabled: true, + tweakLBStatus: func(s *core.LoadBalancerStatus) { + s.Ingress = []core.LoadBalancerIngress{{ + IP: "1.2.3.4", + }} + }, + numErrs: 1, + }, { + name: "missing ipMode with LoadbalancerIPMode disabled", + ipModeEnabled: false, + tweakLBStatus: func(s *core.LoadBalancerStatus) { + s.Ingress = []core.LoadBalancerIngress{{ + IP: "1.2.3.4", + }} + }, + numErrs: 0, + }, { + name: "missing ip with ipMode present", + ipModeEnabled: true, + 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) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, tc.ipModeEnabled)() + 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()) + } + }) + } +} diff --git a/pkg/apis/core/zz_generated.deepcopy.go b/pkg/apis/core/zz_generated.deepcopy.go index 471fdbd6f39..98fa4ebc6c0 100644 --- a/pkg/apis/core/zz_generated.deepcopy.go +++ b/pkg/apis/core/zz_generated.deepcopy.go @@ -2230,6 +2230,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 + } if in.Ports != nil { in, out := &in.Ports, &out.Ports *out = make([]PortStatus, len(*in)) diff --git a/pkg/features/kube_features.go b/pkg/features/kube_features.go index 8b27be3f307..9b4d183f634 100644 --- a/pkg/features/kube_features.go +++ b/pkg/features/kube_features.go @@ -934,6 +934,12 @@ const ( // // Enables In-Place Pod Vertical Scaling InPlacePodVerticalScaling featuregate.Feature = "InPlacePodVerticalScaling" + + // owner: @Sh4d1,@RyanAoh + // kep: http://kep.k8s.io/1860 + // alpha: v1.29 + // LoadBalancerIPMode enables the IPMode field in the LoadBalancerIngress status of a Service + LoadBalancerIPMode featuregate.Feature = "LoadBalancerIPMode" ) func init() { @@ -1185,6 +1191,8 @@ var defaultKubernetesFeatureGates = map[featuregate.Feature]featuregate.FeatureS PodIndexLabel: {Default: true, PreRelease: featuregate.Beta}, + 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/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index 2f4cad560c8..27e5e3d6564 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -21756,6 +21756,13 @@ func schema_k8sio_api_core_v1_LoadBalancerIngress(ref common.ReferenceCallback) Format: "", }, }, + "ipMode": { + SchemaProps: spec.SchemaProps{ + Description: "IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified. Setting this to \"VIP\" indicates that traffic is delivered to the node with the destination set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that traffic is delivered to the node or pod with the destination set to the node's IP and node port or the pod's IP and port. Service implementations may use this information to adjust traffic routing.", + Type: []string{"string"}, + Format: "", + }, + }, "ports": { VendorExtensible: spec.VendorExtensible{ Extensions: spec.Extensions{ diff --git a/pkg/proxy/conntrack/cleanup.go b/pkg/proxy/conntrack/cleanup.go index ab5dc7df897..b3b55dab978 100644 --- a/pkg/proxy/conntrack/cleanup.go +++ b/pkg/proxy/conntrack/cleanup.go @@ -50,7 +50,7 @@ func deleteStaleServiceConntrackEntries(isIPv6 bool, exec utilexec.Interface, sv for _, extIP := range svcInfo.ExternalIPStrings() { conntrackCleanupServiceIPs.Insert(extIP) } - for _, lbIP := range svcInfo.LoadBalancerIPStrings() { + for _, lbIP := range svcInfo.LoadBalancerVIPStrings() { conntrackCleanupServiceIPs.Insert(lbIP) } nodePort := svcInfo.NodePort() @@ -100,7 +100,7 @@ func deleteStaleEndpointConntrackEntries(exec utilexec.Interface, svcPortMap pro klog.ErrorS(err, "Failed to delete endpoint connections for externalIP", "servicePortName", epSvcPair.ServicePortName, "externalIP", extIP) } } - for _, lbIP := range svcInfo.LoadBalancerIPStrings() { + for _, lbIP := range svcInfo.LoadBalancerVIPStrings() { err := ClearEntriesForNAT(exec, lbIP, endpointIP, v1.ProtocolUDP) if err != nil { klog.ErrorS(err, "Failed to delete endpoint connections for LoadBalancerIP", "servicePortName", epSvcPair.ServicePortName, "loadBalancerIP", lbIP) diff --git a/pkg/proxy/iptables/proxier.go b/pkg/proxy/iptables/proxier.go index ca781b44b5e..9a31a57f7c2 100644 --- a/pkg/proxy/iptables/proxier.go +++ b/pkg/proxy/iptables/proxier.go @@ -1024,7 +1024,7 @@ func (proxier *Proxier) syncProxyRules() { // create a firewall chain. loadBalancerTrafficChain := externalTrafficChain fwChain := svcInfo.firewallChainName - usesFWChain := hasEndpoints && len(svcInfo.LoadBalancerIPStrings()) > 0 && len(svcInfo.LoadBalancerSourceRanges()) > 0 + usesFWChain := hasEndpoints && len(svcInfo.LoadBalancerVIPStrings()) > 0 && len(svcInfo.LoadBalancerSourceRanges()) > 0 if usesFWChain { activeNATChains[fwChain] = true loadBalancerTrafficChain = fwChain @@ -1116,7 +1116,7 @@ func (proxier *Proxier) syncProxyRules() { } // Capture load-balancer ingress. - for _, lbip := range svcInfo.LoadBalancerIPStrings() { + for _, lbip := range svcInfo.LoadBalancerVIPStrings() { if hasEndpoints { natRules.Write( "-A", string(kubeServicesChain), @@ -1141,7 +1141,7 @@ func (proxier *Proxier) syncProxyRules() { // Either no endpoints at all (REJECT) or no endpoints for // external traffic (DROP anything that didn't get short-circuited // by the EXT chain.) - for _, lbip := range svcInfo.LoadBalancerIPStrings() { + for _, lbip := range svcInfo.LoadBalancerVIPStrings() { filterRules.Write( "-A", string(kubeExternalServicesChain), "-m", "comment", "--comment", externalTrafficFilterComment, @@ -1319,7 +1319,7 @@ func (proxier *Proxier) syncProxyRules() { // will loop back with the source IP set to the VIP. We // need the following rules to allow requests from this node. if allowFromNode { - for _, lbip := range svcInfo.LoadBalancerIPStrings() { + for _, lbip := range svcInfo.LoadBalancerVIPStrings() { natRules.Write( args, "-s", lbip, diff --git a/pkg/proxy/iptables/proxier_test.go b/pkg/proxy/iptables/proxier_test.go index 7da8ac5af0f..edb2bec5cf2 100644 --- a/pkg/proxy/iptables/proxier_test.go +++ b/pkg/proxy/iptables/proxier_test.go @@ -38,8 +38,11 @@ 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" + featuregatetesting "k8s.io/component-base/featuregate/testing" "k8s.io/component-base/metrics/testutil" "k8s.io/klog/v2" + "k8s.io/kubernetes/pkg/features" "k8s.io/kubernetes/pkg/proxy" "k8s.io/kubernetes/pkg/proxy/conntrack" "k8s.io/kubernetes/pkg/proxy/metrics" @@ -8276,3 +8279,128 @@ func TestNoEndpointsMetric(t *testing.T) { }) } } + +func TestLoadBalancerIngressRouteTypeProxy(t *testing.T) { + ipModeProxy := v1.LoadBalancerIPModeProxy + ipModeVIP := v1.LoadBalancerIPModeVIP + + testCases := []struct { + name string + ipModeEnabled bool + svcIP string + svcLBIP string + ipMode *v1.LoadBalancerIPMode + expectedRule bool + }{ + /* LoadBalancerIPMode disabled */ + { + name: "LoadBalancerIPMode disabled, ipMode Proxy", + ipModeEnabled: false, + svcIP: "10.20.30.41", + svcLBIP: "1.2.3.4", + ipMode: &ipModeProxy, + expectedRule: true, + }, + { + name: "LoadBalancerIPMode disabled, ipMode VIP", + ipModeEnabled: false, + svcIP: "10.20.30.42", + svcLBIP: "1.2.3.5", + ipMode: &ipModeVIP, + expectedRule: true, + }, + { + name: "LoadBalancerIPMode disabled, ipMode nil", + ipModeEnabled: false, + svcIP: "10.20.30.43", + svcLBIP: "1.2.3.6", + ipMode: nil, + expectedRule: true, + }, + /* LoadBalancerIPMode enabled */ + { + name: "LoadBalancerIPMode enabled, ipMode Proxy", + ipModeEnabled: true, + svcIP: "10.20.30.41", + svcLBIP: "1.2.3.4", + ipMode: &ipModeProxy, + expectedRule: false, + }, + { + name: "LoadBalancerIPMode enabled, ipMode VIP", + ipModeEnabled: true, + svcIP: "10.20.30.42", + svcLBIP: "1.2.3.5", + ipMode: &ipModeVIP, + expectedRule: true, + }, + { + name: "LoadBalancerIPMode enabled, ipMode nil", + ipModeEnabled: true, + svcIP: "10.20.30.43", + svcLBIP: "1.2.3.6", + ipMode: nil, + expectedRule: true, + }, + } + + svcPort := 80 + svcNodePort := 3001 + svcPortName := proxy.ServicePortName{ + NamespacedName: makeNSN("ns1", "svc1"), + Port: "p80", + Protocol: v1.ProtocolTCP, + } + + for _, testCase := range testCases { + t.Run(testCase.name, func(t *testing.T) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, testCase.ipModeEnabled)() + ipt := iptablestest.NewFake() + fp := NewFakeProxier(ipt) + 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, + }} + }), + ) + + tcpProtocol := v1.ProtocolTCP + populateEndpointSlices(fp, + makeTestEndpointSlice("ns1", "svc1", 1, func(eps *discovery.EndpointSlice) { + eps.AddressType = discovery.AddressTypeIPv4 + eps.Endpoints = []discovery.Endpoint{{ + Addresses: []string{"10.180.0.1"}, + }} + eps.Ports = []discovery.EndpointPort{{ + Name: pointer.String("p80"), + Port: pointer.Int32(80), + Protocol: &tcpProtocol, + }} + }), + ) + + fp.syncProxyRules() + + c, _ := ipt.Dump.GetChain(utiliptables.TableNAT, kubeServicesChain) + ruleExists := false + for _, r := range c.Rules { + if r.DestinationAddress != nil && r.DestinationAddress.Value == testCase.svcLBIP { + ruleExists = true + } + } + if ruleExists != testCase.expectedRule { + t.Errorf("unexpected rule for %s", testCase.svcLBIP) + } + }) + } +} diff --git a/pkg/proxy/ipvs/proxier.go b/pkg/proxy/ipvs/proxier.go index 0a7e37810e5..19c354e9ac1 100644 --- a/pkg/proxy/ipvs/proxier.go +++ b/pkg/proxy/ipvs/proxier.go @@ -1172,7 +1172,7 @@ func (proxier *Proxier) syncProxyRules() { } // Capture load-balancer ingress. - for _, ingress := range svcInfo.LoadBalancerIPStrings() { + for _, ingress := range svcInfo.LoadBalancerVIPStrings() { // ipset call entry = &utilipset.Entry{ IP: ingress, diff --git a/pkg/proxy/ipvs/proxier_test.go b/pkg/proxy/ipvs/proxier_test.go index 5fa41441885..569d0179ec0 100644 --- a/pkg/proxy/ipvs/proxier_test.go +++ b/pkg/proxy/ipvs/proxier_test.go @@ -36,7 +36,10 @@ 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" + featuregatetesting "k8s.io/component-base/featuregate/testing" "k8s.io/component-base/metrics/testutil" + "k8s.io/kubernetes/pkg/features" "k8s.io/kubernetes/pkg/proxy" "k8s.io/kubernetes/pkg/proxy/healthcheck" utilipset "k8s.io/kubernetes/pkg/proxy/ipvs/ipset" @@ -5836,3 +5839,123 @@ func TestDismissLocalhostRuleExist(t *testing.T) { }) } } + +func TestLoadBalancerIngressRouteTypeProxy(t *testing.T) { + ipModeProxy := v1.LoadBalancerIPModeProxy + ipModeVIP := v1.LoadBalancerIPModeVIP + + testCases := []struct { + name string + ipModeEnabled bool + svcIP string + svcLBIP string + ipMode *v1.LoadBalancerIPMode + expectedServices int + }{ + /* LoadBalancerIPMode disabled */ + { + name: "LoadBalancerIPMode disabled, ipMode Proxy", + ipModeEnabled: false, + svcIP: "10.20.30.41", + svcLBIP: "1.2.3.4", + ipMode: &ipModeProxy, + expectedServices: 2, + }, + { + name: "LoadBalancerIPMode disabled, ipMode VIP", + ipModeEnabled: false, + svcIP: "10.20.30.42", + svcLBIP: "1.2.3.5", + ipMode: &ipModeVIP, + expectedServices: 2, + }, + { + name: "LoadBalancerIPMode disabled, ipMode nil", + ipModeEnabled: false, + svcIP: "10.20.30.43", + svcLBIP: "1.2.3.6", + ipMode: nil, + expectedServices: 2, + }, + /* LoadBalancerIPMode enabled */ + { + name: "LoadBalancerIPMode enabled, ipMode Proxy", + ipModeEnabled: true, + svcIP: "10.20.30.41", + svcLBIP: "1.2.3.4", + ipMode: &ipModeProxy, + expectedServices: 1, + }, + { + name: "LoadBalancerIPMode enabled, ipMode VIP", + ipModeEnabled: true, + svcIP: "10.20.30.42", + svcLBIP: "1.2.3.5", + ipMode: &ipModeVIP, + expectedServices: 2, + }, + { + name: "LoadBalancerIPMode enabled, ipMode nil", + ipModeEnabled: true, + svcIP: "10.20.30.43", + svcLBIP: "1.2.3.6", + ipMode: nil, + expectedServices: 2, + }, + } + + svcPort := 80 + svcNodePort := 3001 + svcPortName := proxy.ServicePortName{ + NamespacedName: makeNSN("ns1", "svc1"), + Port: "p80", + } + + for _, testCase := range testCases { + t.Run(testCase.name, func(t *testing.T) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, testCase.ipModeEnabled)() + _, 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, + }} + }), + ) + + tcpProtocol := v1.ProtocolTCP + makeEndpointSliceMap(fp, + makeTestEndpointSlice("ns1", "svc1", 1, func(eps *discovery.EndpointSlice) { + eps.AddressType = discovery.AddressTypeIPv4 + eps.Endpoints = []discovery.Endpoint{{ + Addresses: []string{"10.180.0.1"}, + }} + eps.Ports = []discovery.EndpointPort{{ + Name: pointer.String("p80"), + Port: pointer.Int32(80), + Protocol: &tcpProtocol, + }} + }), + ) + + fp.syncProxyRules() + + 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("Expected %d ipvs services, got %d", testCase.expectedServices, len(services)) + } + }) + } +} diff --git a/pkg/proxy/service.go b/pkg/proxy/service.go index 279191f57b2..1f84f0bcd1d 100644 --- a/pkg/proxy/service.go +++ b/pkg/proxy/service.go @@ -44,7 +44,7 @@ type BaseServicePortInfo struct { port int protocol v1.Protocol nodePort int - loadBalancerStatus v1.LoadBalancerStatus + loadBalancerVIPs []string sessionAffinityType v1.ServiceAffinity stickyMaxAgeSeconds int externalIPs []string @@ -108,13 +108,9 @@ func (bsvcPortInfo *BaseServicePortInfo) ExternalIPStrings() []string { return bsvcPortInfo.externalIPs } -// LoadBalancerIPStrings is part of ServicePort interface. -func (bsvcPortInfo *BaseServicePortInfo) LoadBalancerIPStrings() []string { - var ips []string - for _, ing := range bsvcPortInfo.loadBalancerStatus.Ingress { - ips = append(ips, ing.IP) - } - return ips +// LoadBalancerVIPStrings is part of ServicePort interface. +func (bsvcPortInfo *BaseServicePortInfo) LoadBalancerVIPStrings() []string { + return bsvcPortInfo.loadBalancerVIPs } // ExternalPolicyLocal is part of ServicePort interface. @@ -139,7 +135,7 @@ func (bsvcPortInfo *BaseServicePortInfo) HintsAnnotation() string { // ExternallyAccessible is part of ServicePort interface. func (bsvcPortInfo *BaseServicePortInfo) ExternallyAccessible() bool { - return bsvcPortInfo.nodePort != 0 || len(bsvcPortInfo.loadBalancerStatus.Ingress) != 0 || len(bsvcPortInfo.externalIPs) != 0 + return bsvcPortInfo.nodePort != 0 || len(bsvcPortInfo.loadBalancerVIPs) != 0 || len(bsvcPortInfo.externalIPs) != 0 } // UsesClusterEndpoints is part of ServicePort interface. @@ -211,25 +207,21 @@ func (sct *ServiceChangeTracker) newBaseServiceInfo(port *v1.ServicePort, servic "ipFamily", sct.ipFamily, "loadBalancerSourceRanges", strings.Join(cidrs, ", "), "service", klog.KObj(service)) } - // Obtain Load Balancer Ingress IPs - var ips []string + // Obtain Load Balancer Ingress + var invalidIPs []string for _, ing := range service.Status.LoadBalancer.Ingress { - if ing.IP != "" { - ips = append(ips, ing.IP) + if ing.IP == "" { + continue + } + if ipFamily := proxyutil.GetIPFamilyFromIP(ing.IP); ipFamily == sct.ipFamily && proxyutil.IsVIPMode(ing) { + info.loadBalancerVIPs = append(info.loadBalancerVIPs, ing.IP) + } else { + invalidIPs = append(invalidIPs, ing.IP) } } - - if len(ips) > 0 { - ipFamilyMap = proxyutil.MapIPsByIPFamily(ips) - - if ipList, ok := ipFamilyMap[proxyutil.OtherIPFamily(sct.ipFamily)]; ok && len(ipList) > 0 { - klog.V(4).InfoS("Service change tracker ignored the following load balancer ingress IPs for given Service as they don't match the IP Family", - "ipFamily", sct.ipFamily, "loadBalancerIngressIps", strings.Join(ipList, ", "), "service", klog.KObj(service)) - } - // Create the LoadBalancerStatus with the filtered IPs - for _, ip := range ipFamilyMap[sct.ipFamily] { - info.loadBalancerStatus.Ingress = append(info.loadBalancerStatus.Ingress, v1.LoadBalancerIngress{IP: ip}) - } + if len(invalidIPs) > 0 { + klog.V(4).InfoS("Service change tracker ignored the following load balancer ingress IPs for given Service as they don't match the IP Family", + "ipFamily", sct.ipFamily, "loadBalancerIngressIPs", strings.Join(invalidIPs, ", "), "service", klog.KObj(service)) } if apiservice.NeedsHealthCheck(service) { diff --git a/pkg/proxy/service_test.go b/pkg/proxy/service_test.go index 32c5541d501..f8bd9110f8b 100644 --- a/pkg/proxy/service_test.go +++ b/pkg/proxy/service_test.go @@ -181,10 +181,10 @@ func TestServiceToServiceMap(t *testing.T) { }), expected: map[ServicePortName]*BaseServicePortInfo{ makeServicePortName("ns1", "load-balancer", "port3", v1.ProtocolUDP): makeTestServiceInfo("172.16.55.11", 8675, "UDP", 0, func(bsvcPortInfo *BaseServicePortInfo) { - bsvcPortInfo.loadBalancerStatus.Ingress = []v1.LoadBalancerIngress{{IP: "10.1.2.4"}} + bsvcPortInfo.loadBalancerVIPs = []string{"10.1.2.4"} }), makeServicePortName("ns1", "load-balancer", "port4", v1.ProtocolUDP): makeTestServiceInfo("172.16.55.11", 8676, "UDP", 0, func(bsvcPortInfo *BaseServicePortInfo) { - bsvcPortInfo.loadBalancerStatus.Ingress = []v1.LoadBalancerIngress{{IP: "10.1.2.4"}} + bsvcPortInfo.loadBalancerVIPs = []string{"10.1.2.4"} }), }, }, @@ -204,10 +204,10 @@ func TestServiceToServiceMap(t *testing.T) { }), expected: map[ServicePortName]*BaseServicePortInfo{ makeServicePortName("ns1", "only-local-load-balancer", "portx", v1.ProtocolUDP): makeTestServiceInfo("172.16.55.12", 8677, "UDP", 345, func(bsvcPortInfo *BaseServicePortInfo) { - bsvcPortInfo.loadBalancerStatus.Ingress = []v1.LoadBalancerIngress{{IP: "10.1.2.3"}} + bsvcPortInfo.loadBalancerVIPs = []string{"10.1.2.3"} }), makeServicePortName("ns1", "only-local-load-balancer", "porty", v1.ProtocolUDP): makeTestServiceInfo("172.16.55.12", 8678, "UDP", 345, func(bsvcPortInfo *BaseServicePortInfo) { - bsvcPortInfo.loadBalancerStatus.Ingress = []v1.LoadBalancerIngress{{IP: "10.1.2.3"}} + bsvcPortInfo.loadBalancerVIPs = []string{"10.1.2.3"} }), }, }, @@ -315,7 +315,7 @@ func TestServiceToServiceMap(t *testing.T) { makeServicePortName("test", "validIPv4", "testPort", v1.ProtocolTCP): makeTestServiceInfo(testClusterIPv4, 12345, "TCP", 0, func(bsvcPortInfo *BaseServicePortInfo) { bsvcPortInfo.externalIPs = []string{testExternalIPv4} bsvcPortInfo.loadBalancerSourceRanges = []string{testSourceRangeIPv4} - bsvcPortInfo.loadBalancerStatus.Ingress = []v1.LoadBalancerIngress{{IP: testExternalIPv4}} + bsvcPortInfo.loadBalancerVIPs = []string{testExternalIPv4} }), }, }, @@ -353,7 +353,7 @@ func TestServiceToServiceMap(t *testing.T) { makeServicePortName("test", "validIPv6", "testPort", v1.ProtocolTCP): makeTestServiceInfo(testClusterIPv6, 12345, "TCP", 0, func(bsvcPortInfo *BaseServicePortInfo) { bsvcPortInfo.externalIPs = []string{testExternalIPv6} bsvcPortInfo.loadBalancerSourceRanges = []string{testSourceRangeIPv6} - bsvcPortInfo.loadBalancerStatus.Ingress = []v1.LoadBalancerIngress{{IP: testExternalIPv6}} + bsvcPortInfo.loadBalancerVIPs = []string{testExternalIPv6} }), }, }, @@ -391,7 +391,7 @@ func TestServiceToServiceMap(t *testing.T) { makeServicePortName("test", "filterIPv6InIPV4Mode", "testPort", v1.ProtocolTCP): makeTestServiceInfo(testClusterIPv4, 12345, "TCP", 0, func(bsvcPortInfo *BaseServicePortInfo) { bsvcPortInfo.externalIPs = []string{testExternalIPv4} bsvcPortInfo.loadBalancerSourceRanges = []string{testSourceRangeIPv4} - bsvcPortInfo.loadBalancerStatus.Ingress = []v1.LoadBalancerIngress{{IP: testExternalIPv4}} + bsvcPortInfo.loadBalancerVIPs = []string{testExternalIPv4} }), }, }, @@ -429,7 +429,7 @@ func TestServiceToServiceMap(t *testing.T) { makeServicePortName("test", "filterIPv4InIPV6Mode", "testPort", v1.ProtocolTCP): makeTestServiceInfo(testClusterIPv6, 12345, "TCP", 0, func(bsvcPortInfo *BaseServicePortInfo) { bsvcPortInfo.externalIPs = []string{testExternalIPv6} bsvcPortInfo.loadBalancerSourceRanges = []string{testSourceRangeIPv6} - bsvcPortInfo.loadBalancerStatus.Ingress = []v1.LoadBalancerIngress{{IP: testExternalIPv6}} + bsvcPortInfo.loadBalancerVIPs = []string{testExternalIPv6} }), }, }, @@ -483,7 +483,7 @@ func TestServiceToServiceMap(t *testing.T) { svcInfo.healthCheckNodePort != expectedInfo.healthCheckNodePort || !sets.New[string](svcInfo.externalIPs...).Equal(sets.New[string](expectedInfo.externalIPs...)) || !sets.New[string](svcInfo.loadBalancerSourceRanges...).Equal(sets.New[string](expectedInfo.loadBalancerSourceRanges...)) || - !reflect.DeepEqual(svcInfo.loadBalancerStatus, expectedInfo.loadBalancerStatus) { + !reflect.DeepEqual(svcInfo.loadBalancerVIPs, expectedInfo.loadBalancerVIPs) { t.Errorf("[%s] expected new[%v]to be %v, got %v", tc.desc, svcKey, expectedInfo, *svcInfo) } for svcKey, expectedInfo := range tc.expected { @@ -494,7 +494,7 @@ func TestServiceToServiceMap(t *testing.T) { svcInfo.healthCheckNodePort != expectedInfo.healthCheckNodePort || !sets.New[string](svcInfo.externalIPs...).Equal(sets.New[string](expectedInfo.externalIPs...)) || !sets.New[string](svcInfo.loadBalancerSourceRanges...).Equal(sets.New[string](expectedInfo.loadBalancerSourceRanges...)) || - !reflect.DeepEqual(svcInfo.loadBalancerStatus, expectedInfo.loadBalancerStatus) { + !reflect.DeepEqual(svcInfo.loadBalancerVIPs, expectedInfo.loadBalancerVIPs) { t.Errorf("expected new[%v]to be %v, got %v", svcKey, expectedInfo, *svcInfo) } } diff --git a/pkg/proxy/types.go b/pkg/proxy/types.go index 7c9d19ab818..e136608c2bb 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 + // LoadBalancerVIPStrings returns service LoadBalancerIPs which are VIP mode as a string array. + LoadBalancerVIPStrings() []string // Protocol returns service protocol. Protocol() v1.Protocol // LoadBalancerSourceRanges returns service LoadBalancerSourceRanges if present empty array if not diff --git a/pkg/proxy/util/utils.go b/pkg/proxy/util/utils.go index 3f56bb6dbf5..807bced0b56 100644 --- a/pkg/proxy/util/utils.go +++ b/pkg/proxy/util/utils.go @@ -27,9 +27,11 @@ import ( "k8s.io/apimachinery/pkg/types" utilrand "k8s.io/apimachinery/pkg/util/rand" "k8s.io/apimachinery/pkg/util/sets" + utilfeature "k8s.io/apiserver/pkg/util/feature" "k8s.io/client-go/tools/events" utilsysctl "k8s.io/component-helpers/node/util/sysctl" helper "k8s.io/kubernetes/pkg/apis/core/v1/helper" + "k8s.io/kubernetes/pkg/features" netutils "k8s.io/utils/net" "k8s.io/klog/v2" @@ -182,7 +184,7 @@ func MapIPsByIPFamily(ipStrings []string) map[v1.IPFamily][]string { ipFamilyMap := map[v1.IPFamily][]string{} for _, ip := range ipStrings { // Handle only the valid IPs - if ipFamily := getIPFamilyFromIP(ip); ipFamily != "" { + if ipFamily := GetIPFamilyFromIP(ip); ipFamily != v1.IPFamilyUnknown { ipFamilyMap[ipFamily] = append(ipFamilyMap[ipFamily], ip) } else { // this function is called in multiple places. All of which @@ -204,7 +206,7 @@ func MapCIDRsByIPFamily(cidrStrings []string) map[v1.IPFamily][]string { ipFamilyMap := map[v1.IPFamily][]string{} for _, cidr := range cidrStrings { // Handle only the valid CIDRs - if ipFamily := getIPFamilyFromCIDR(cidr); ipFamily != "" { + if ipFamily := getIPFamilyFromCIDR(cidr); ipFamily != v1.IPFamilyUnknown { ipFamilyMap[ipFamily] = append(ipFamilyMap[ipFamily], cidr) } else { klog.ErrorS(nil, "Skipping invalid CIDR", "cidr", cidr) @@ -213,29 +215,26 @@ func MapCIDRsByIPFamily(cidrStrings []string) map[v1.IPFamily][]string { return ipFamilyMap } -// Returns the IP family of ipStr, or "" if ipStr can't be parsed as an IP -func getIPFamilyFromIP(ipStr string) v1.IPFamily { - netIP := netutils.ParseIPSloppy(ipStr) - if netIP == nil { - return "" - } - - if netutils.IsIPv6(netIP) { - return v1.IPv6Protocol - } - return v1.IPv4Protocol +// GetIPFamilyFromIP Returns the IP family of ipStr, or IPFamilyUnknown if ipStr can't be parsed as an IP +func GetIPFamilyFromIP(ipStr string) v1.IPFamily { + return convertToV1IPFamily(netutils.IPFamilyOfString(ipStr)) } -// Returns the IP family of cidrStr, or "" if cidrStr can't be parsed as a CIDR +// Returns the IP family of cidrStr, or IPFamilyUnknown if cidrStr can't be parsed as a CIDR func getIPFamilyFromCIDR(cidrStr string) v1.IPFamily { - _, netCIDR, err := netutils.ParseCIDRSloppy(cidrStr) - if err != nil { - return "" - } - if netutils.IsIPv6CIDR(netCIDR) { + return convertToV1IPFamily(netutils.IPFamilyOfCIDRString(cidrStr)) +} + +// Convert netutils.IPFamily to v1.IPFamily +func convertToV1IPFamily(ipFamily netutils.IPFamily) v1.IPFamily { + switch ipFamily { + case netutils.IPv4: + return v1.IPv4Protocol + case netutils.IPv6: return v1.IPv6Protocol } - return v1.IPv4Protocol + + return v1.IPFamilyUnknown } // OtherIPFamily returns the other ip family @@ -331,3 +330,13 @@ func RevertPorts(replacementPortsMap, originalPortsMap map[netutils.LocalPort]ne } } } + +func IsVIPMode(ing v1.LoadBalancerIngress) bool { + if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) { + return true // backwards compat + } + if ing.IPMode == nil { + return true + } + return *ing.IPMode == v1.LoadBalancerIPModeVIP +} diff --git a/pkg/registry/core/service/storage/storage_test.go b/pkg/registry/core/service/storage/storage_test.go index 60fd585cab0..73292a30ba5 100644 --- a/pkg/registry/core/service/storage/storage_test.go +++ b/pkg/registry/core/service/storage/storage_test.go @@ -27,6 +27,7 @@ import ( "github.com/google/go-cmp/cmp" "github.com/google/go-cmp/cmp/cmpopts" + "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/fields" "k8s.io/apimachinery/pkg/labels" @@ -39,9 +40,12 @@ import ( genericregistrytest "k8s.io/apiserver/pkg/registry/generic/testing" "k8s.io/apiserver/pkg/registry/rest" etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing" + utilfeature "k8s.io/apiserver/pkg/util/feature" + featuregatetesting "k8s.io/component-base/featuregate/testing" epstest "k8s.io/kubernetes/pkg/api/endpoints/testing" svctest "k8s.io/kubernetes/pkg/api/service/testing" api "k8s.io/kubernetes/pkg/apis/core" + "k8s.io/kubernetes/pkg/features" endpointstore "k8s.io/kubernetes/pkg/registry/core/endpoint/storage" podstore "k8s.io/kubernetes/pkg/registry/core/pod/storage" "k8s.io/kubernetes/pkg/registry/core/service/ipallocator" @@ -11681,3 +11685,288 @@ func TestServiceRegistryResourceLocation(t *testing.T) { }) } } + +func TestUpdateServiceLoadBalancerStatus(t *testing.T) { + storage, statusStorage, server := newStorage(t, []api.IPFamily{api.IPv4Protocol}) + defer server.Terminate(t) + defer storage.Store.DestroyFunc() + defer statusStorage.store.DestroyFunc() + + ipModeVIP := api.LoadBalancerIPModeVIP + ipModeProxy := api.LoadBalancerIPModeProxy + ipModeDummy := api.LoadBalancerIPMode("dummy") + + testCases := []struct { + name string + ipModeEnabled bool + statusBeforeUpdate api.ServiceStatus + newStatus api.ServiceStatus + expectedStatus api.ServiceStatus + expectErr bool + expectedReasonForError metav1.StatusReason + }{ + /*LoadBalancerIPMode disabled*/ + { + name: "LoadBalancerIPMode disabled, ipMode not used in old, not used in new", + ipModeEnabled: false, + statusBeforeUpdate: api.ServiceStatus{}, + newStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }, + expectedStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }, + expectErr: false, + }, { + name: "LoadBalancerIPMode disabled, ipMode used in old and in new", + ipModeEnabled: false, + statusBeforeUpdate: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }}, + }, + }, + newStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + }, + }, + expectedStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + }, + }, + expectErr: false, + }, { + name: "LoadBalancerIPMode disabled, ipMode not used in old, used in new", + ipModeEnabled: false, + statusBeforeUpdate: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }, + newStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + }, + }, + expectedStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }, + expectErr: false, + }, { + name: "LoadBalancerIPMode disabled, ipMode used in old, not used in new", + ipModeEnabled: false, + statusBeforeUpdate: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }}, + }, + }, + newStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }, + expectedStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }, + expectErr: false, + }, + /*LoadBalancerIPMode enabled*/ + { + name: "LoadBalancerIPMode enabled, ipMode not used in old, not used in new", + ipModeEnabled: true, + statusBeforeUpdate: api.ServiceStatus{}, + newStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }, + expectedStatus: api.ServiceStatus{}, + expectErr: true, + expectedReasonForError: metav1.StatusReasonInvalid, + }, { + name: "LoadBalancerIPMode enabled, ipMode used in old and in new", + ipModeEnabled: true, + statusBeforeUpdate: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + }, + }, + newStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }}, + }, + }, + expectedStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }}, + }, + }, + expectErr: false, + }, { + name: "LoadBalancerIPMode enabled, ipMode not used in old, used in new", + ipModeEnabled: true, + statusBeforeUpdate: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }, + newStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + }, + }, + expectedStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + }, + }, + expectErr: false, + }, { + name: "LoadBalancerIPMode enabled, ipMode used in old, not used in new", + ipModeEnabled: true, + statusBeforeUpdate: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }}, + }, + }, + newStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }, + expectedStatus: api.ServiceStatus{}, + expectErr: true, + expectedReasonForError: metav1.StatusReasonInvalid, + }, { + name: "LoadBalancerIPMode enabled, ipMode not used in old, invalid value used in new", + ipModeEnabled: true, + statusBeforeUpdate: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + }, + }, + newStatus: api.ServiceStatus{ + LoadBalancer: api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeDummy, + }}, + }, + }, + expectedStatus: api.ServiceStatus{}, + expectErr: true, + expectedReasonForError: metav1.StatusReasonInvalid, + }, + } + + for _, tc := range testCases { + t.Run(tc.name, func(t *testing.T) { + + svc := svctest.MakeService("foo", svctest.SetTypeLoadBalancer) + ctx := genericapirequest.NewDefaultContext() + obj, err := storage.Create(ctx, svc, rest.ValidateAllObjectFunc, &metav1.CreateOptions{}) + if err != nil { + t.Errorf("created svc: %s", err) + } + defer storage.Delete(ctx, svc.Name, rest.ValidateAllObjectFunc, &metav1.DeleteOptions{}) + + // prepare status + if loadbalancerIPModeInUse(tc.statusBeforeUpdate) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, true)() + } + oldSvc := obj.(*api.Service).DeepCopy() + oldSvc.Status = tc.statusBeforeUpdate + obj, _, err = statusStorage.Update(ctx, oldSvc.Name, rest.DefaultUpdatedObjectInfo(oldSvc), rest.ValidateAllObjectFunc, rest.ValidateAllObjectUpdateFunc, false, &metav1.UpdateOptions{}) + if err != nil { + t.Errorf("updated status: %s", err) + } + + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, tc.ipModeEnabled)() + newSvc := obj.(*api.Service).DeepCopy() + newSvc.Status = tc.newStatus + obj, _, err = statusStorage.Update(ctx, newSvc.Name, rest.DefaultUpdatedObjectInfo(newSvc), rest.ValidateAllObjectFunc, rest.ValidateAllObjectUpdateFunc, false, &metav1.UpdateOptions{}) + if err != nil { + if tc.expectErr && tc.expectedReasonForError == errors.ReasonForError(err) { + return + } + t.Errorf("updated status: %s", err) + } + + updated := obj.(*api.Service) + if !reflect.DeepEqual(tc.expectedStatus, updated.Status) { + t.Errorf("%v: unexpected svc status: %v", tc.name, cmp.Diff(tc.expectedStatus, updated.Status)) + } + }) + } +} + +func loadbalancerIPModeInUse(status api.ServiceStatus) bool { + for _, ing := range status.LoadBalancer.Ingress { + if ing.IPMode != nil { + return true + } + } + return false +} diff --git a/pkg/registry/core/service/strategy.go b/pkg/registry/core/service/strategy.go index acb3f3d66a2..b11a6329834 100644 --- a/pkg/registry/core/service/strategy.go +++ b/pkg/registry/core/service/strategy.go @@ -24,10 +24,12 @@ import ( "k8s.io/apimachinery/pkg/util/sets" "k8s.io/apimachinery/pkg/util/validation/field" "k8s.io/apiserver/pkg/storage/names" + utilfeature "k8s.io/apiserver/pkg/util/feature" "k8s.io/kubernetes/pkg/api/legacyscheme" serviceapi "k8s.io/kubernetes/pkg/api/service" api "k8s.io/kubernetes/pkg/apis/core" "k8s.io/kubernetes/pkg/apis/core/validation" + "k8s.io/kubernetes/pkg/features" "sigs.k8s.io/structured-merge-diff/v4/fieldpath" ) @@ -144,6 +146,8 @@ func (serviceStatusStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpat func (serviceStatusStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) { newService := obj.(*api.Service) oldService := old.(*api.Service) + + dropServiceStatusDisabledFields(newService, oldService) // status changes are not allowed to update spec newService.Spec = oldService.Spec } @@ -158,6 +162,33 @@ func (serviceStatusStrategy) WarningsOnUpdate(ctx context.Context, obj, old runt return nil } +// dropServiceStatusDisabledFields drops fields that are not used if their associated feature gates +// are not enabled. The typical pattern is: +// +// if !utilfeature.DefaultFeatureGate.Enabled(features.MyFeature) && !myFeatureInUse(oldSvc) { +// newSvc.Status.MyFeature = nil +// } +func dropServiceStatusDisabledFields(newSvc *api.Service, oldSvc *api.Service) { + if !utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) && !loadbalancerIPModeInUse(oldSvc) { + for i := range newSvc.Status.LoadBalancer.Ingress { + newSvc.Status.LoadBalancer.Ingress[i].IPMode = nil + } + } +} + +// returns true when the 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 +} + func sameStringSlice(a []string, b []string) bool { if len(a) != len(b) { return false diff --git a/pkg/registry/core/service/strategy_test.go b/pkg/registry/core/service/strategy_test.go index 8908615c344..3a35b5860ba 100644 --- a/pkg/registry/core/service/strategy_test.go +++ b/pkg/registry/core/service/strategy_test.go @@ -26,8 +26,11 @@ import ( "k8s.io/apimachinery/pkg/util/intstr" genericapirequest "k8s.io/apiserver/pkg/endpoints/request" "k8s.io/apiserver/pkg/registry/rest" + utilfeature "k8s.io/apiserver/pkg/util/feature" + featuregatetesting "k8s.io/component-base/featuregate/testing" api "k8s.io/kubernetes/pkg/apis/core" _ "k8s.io/kubernetes/pkg/apis/core/install" + "k8s.io/kubernetes/pkg/features" utilpointer "k8s.io/utils/pointer" ) @@ -229,6 +232,251 @@ func TestDropDisabledField(t *testing.T) { } +func TestDropServiceStatusDisabledFields(t *testing.T) { + ipModeVIP := api.LoadBalancerIPModeVIP + ipModeProxy := api.LoadBalancerIPModeProxy + + testCases := []struct { + name string + ipModeEnabled bool + svc *api.Service + oldSvc *api.Service + compareSvc *api.Service + }{ + /*LoadBalancerIPMode disabled*/ + { + name: "LoadBalancerIPMode disabled, ipMode not used in old, not used in new", + ipModeEnabled: false, + svc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + } + }), + oldSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{} + }), + compareSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + } + }), + }, { + name: "LoadBalancerIPMode disabled, ipMode used in old and in new", + ipModeEnabled: false, + svc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + } + }), + oldSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }}, + } + }), + compareSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + } + }), + }, { + name: "LoadBalancerIPMode disabled, ipMode not used in old, used in new", + ipModeEnabled: false, + svc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }}, + } + }), + oldSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + } + }), + compareSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + } + }), + }, { + name: "LoadBalancerIPMode disabled, ipMode used in old, not used in new", + ipModeEnabled: false, + svc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + } + }), + oldSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + } + }), + compareSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + } + }), + }, + /*LoadBalancerIPMode enabled*/ + { + name: "LoadBalancerIPMode enabled, ipMode not used in old, not used in new", + ipModeEnabled: true, + svc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + } + }), + oldSvc: nil, + compareSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + } + }), + }, { + name: "LoadBalancerIPMode enabled, ipMode used in old and in new", + ipModeEnabled: true, + svc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + } + }), + oldSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }}, + } + }), + compareSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + } + }), + }, { + name: "LoadBalancerIPMode enabled, ipMode not used in old, used in new", + ipModeEnabled: true, + svc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }}, + } + }), + oldSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + } + }), + compareSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeVIP, + }}, + } + }), + }, { + name: "LoadBalancerIPMode enabled, ipMode used in old, not used in new", + ipModeEnabled: true, + svc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + } + }), + oldSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + IPMode: &ipModeProxy, + }}, + } + }), + compareSvc: makeValidServiceCustom(func(svc *api.Service) { + svc.Spec.Type = api.ServiceTypeLoadBalancer + svc.Status.LoadBalancer = api.LoadBalancerStatus{ + Ingress: []api.LoadBalancerIngress{{ + IP: "1.2.3.4", + }}, + } + }), + }, + } + + for _, tc := range testCases { + t.Run(tc.name, func(t *testing.T) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, tc.ipModeEnabled)() + dropServiceStatusDisabledFields(tc.svc, tc.oldSvc) + + if !reflect.DeepEqual(tc.svc, tc.compareSvc) { + t.Errorf("%v: unexpected svc spec: %v", tc.name, cmp.Diff(tc.svc, tc.compareSvc)) + } + }) + } +} + func TestDropTypeDependentFields(t *testing.T) { // Tweaks used below. setTypeExternalName := func(svc *api.Service) { 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 c267a5febde..99702779c3c 100644 --- a/staging/src/k8s.io/api/core/v1/generated.pb.go +++ b/staging/src/k8s.io/api/core/v1/generated.pb.go @@ -6409,7 +6409,7 @@ func init() { } var fileDescriptor_83c10c24ec417dc9 = []byte{ - // 14822 bytes of a gzipped FileDescriptorProto + // 14848 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0xbd, 0x69, 0x70, 0x24, 0xc9, 0x75, 0x18, 0xcc, 0xea, 0xc6, 0xd5, 0x0f, 0x77, 0x62, 0x0e, 0x0c, 0x76, 0x66, 0x7a, 0xb6, 0x76, 0x77, 0x76, 0xf6, 0xc2, 0x70, 0xf6, 0x20, 0x97, 0xbb, 0xe4, 0x8a, 0x38, 0x67, 0xb0, 0x03, 0x60, @@ -6762,581 +6762,582 @@ var fileDescriptor_83c10c24ec417dc9 = []byte{ 0x37, 0x9a, 0xee, 0xea, 0xe8, 0x75, 0xe8, 0x6b, 0x50, 0x88, 0x74, 0xdb, 0xb5, 0x3b, 0xaf, 0xc8, 0x58, 0x98, 0x64, 0xf0, 0x10, 0x0b, 0x0e, 0xf6, 0x2f, 0x5b, 0xd0, 0x73, 0x0c, 0x3d, 0x81, 0xcd, 0x9e, 0x78, 0x2e, 0x97, 0xb5, 0x88, 0xd0, 0x3e, 0x8d, 0x9d, 0x3b, 0x0b, 0x77, 0x23, 0xe2, 0x85, - 0xec, 0x44, 0xce, 0xec, 0x98, 0x9f, 0xb2, 0x60, 0x62, 0xd9, 0x77, 0xea, 0xb3, 0x4e, 0xc3, 0xf1, - 0x6a, 0x24, 0x58, 0xf2, 0x36, 0x0f, 0xe5, 0x73, 0x5e, 0xe8, 0xe8, 0x73, 0x3e, 0x27, 0x5d, 0xb6, - 0x7a, 0xf2, 0xc7, 0x8f, 0x4a, 0xd2, 0xc9, 0x30, 0x4c, 0x86, 0x73, 0xf1, 0x16, 0x20, 0xbd, 0x95, - 0xe2, 0xe5, 0x15, 0x86, 0x7e, 0x97, 0xb7, 0x57, 0x0c, 0xe2, 0x93, 0xd9, 0x12, 0x6e, 0xea, 0xf3, - 0xb4, 0x37, 0x45, 0x1c, 0x80, 0x25, 0x23, 0xfb, 0x65, 0xc8, 0x0c, 0x9b, 0xd1, 0x59, 0x7b, 0x61, - 0x7f, 0x1c, 0xc6, 0x59, 0xc9, 0x43, 0x6a, 0x06, 0xec, 0x84, 0xce, 0x35, 0x23, 0x04, 0xa8, 0xfd, - 0x05, 0x0b, 0x46, 0x57, 0x13, 0x91, 0x11, 0x2f, 0x32, 0x2b, 0x6d, 0x86, 0xaa, 0xbf, 0xca, 0xa0, - 0x58, 0x60, 0x8f, 0x5c, 0x15, 0xf6, 0xd7, 0x16, 0xc4, 0x91, 0x6c, 0x8e, 0x41, 0x7c, 0x9b, 0x33, - 0xc4, 0xb7, 0x4c, 0x41, 0x56, 0x35, 0x27, 0x4f, 0x7a, 0x43, 0xd7, 0x55, 0x8c, 0xb7, 0x36, 0x32, - 0x6c, 0xcc, 0x86, 0x4f, 0xc5, 0x11, 0x33, 0x10, 0x9c, 0x8c, 0xfa, 0x66, 0xff, 0x7e, 0x01, 0x90, - 0xa2, 0xed, 0x3a, 0x06, 0x5d, 0xba, 0xc4, 0xd1, 0xc4, 0xa0, 0xdb, 0x05, 0xc4, 0xfc, 0x0c, 0x02, - 0xc7, 0x0b, 0x39, 0x5b, 0x57, 0x28, 0xff, 0x0e, 0xe7, 0xc4, 0x30, 0x25, 0x1f, 0xa5, 0x2d, 0xa7, - 0xb8, 0xe1, 0x8c, 0x1a, 0x34, 0xff, 0x91, 0xde, 0x6e, 0xfd, 0x47, 0xfa, 0x3a, 0xbc, 0xae, 0xfc, - 0x8a, 0x05, 0xc3, 0xaa, 0x9b, 0xde, 0x25, 0x3e, 0xf8, 0xaa, 0x3d, 0x39, 0x1b, 0x68, 0x45, 0x6b, - 0x32, 0x3b, 0x58, 0xbe, 0x83, 0xbd, 0x92, 0x75, 0x1a, 0xee, 0x3d, 0xa2, 0x62, 0x96, 0x96, 0xc5, - 0xab, 0x57, 0x01, 0x3d, 0xd8, 0x2f, 0x0f, 0xab, 0x7f, 0x3c, 0x26, 0x7b, 0x5c, 0x84, 0x6e, 0xc9, - 0xa3, 0x89, 0xa9, 0x88, 0x5e, 0x82, 0xde, 0xe6, 0x96, 0x13, 0x92, 0xc4, 0x5b, 0xa5, 0xde, 0x0a, - 0x05, 0x1e, 0xec, 0x97, 0x47, 0x54, 0x01, 0x06, 0xc1, 0x9c, 0xba, 0xfb, 0xc8, 0x7e, 0xe9, 0xc9, - 0xd9, 0x31, 0xb2, 0xdf, 0x5f, 0x5a, 0xd0, 0xb3, 0xea, 0xd7, 0x8f, 0x63, 0x0b, 0x78, 0xcd, 0xd8, - 0x02, 0xce, 0xe6, 0xa5, 0xcb, 0xc8, 0x5d, 0xfd, 0x8b, 0x89, 0xd5, 0x7f, 0x3e, 0x97, 0x43, 0xfb, - 0x85, 0xbf, 0x03, 0x83, 0x2c, 0x09, 0x87, 0x78, 0x97, 0xf5, 0x82, 0xb1, 0xe0, 0xcb, 0x89, 0x05, - 0x3f, 0xaa, 0x91, 0x6a, 0x2b, 0xfd, 0x29, 0xe8, 0x17, 0x0f, 0x7d, 0x92, 0x8f, 0x8d, 0x05, 0x2d, - 0x96, 0x78, 0xfb, 0xc7, 0x8b, 0x60, 0x24, 0xfd, 0x40, 0xbf, 0x6a, 0xc1, 0x74, 0xc0, 0x1d, 0x80, - 0xeb, 0xf3, 0xad, 0xc0, 0xf5, 0x36, 0xab, 0xb5, 0x2d, 0x52, 0x6f, 0x35, 0x5c, 0x6f, 0x73, 0x69, - 0xd3, 0xf3, 0x15, 0x78, 0xe1, 0x2e, 0xa9, 0xb5, 0x98, 0x71, 0xae, 0x43, 0x86, 0x11, 0xe5, 0x48, - 0xff, 0xfc, 0xfd, 0xfd, 0xf2, 0x34, 0x3e, 0x14, 0x6f, 0x7c, 0xc8, 0xb6, 0xa0, 0xdf, 0xb1, 0xe0, - 0x32, 0xcf, 0x85, 0xd1, 0x7d, 0xfb, 0xdb, 0xdc, 0x96, 0x2b, 0x92, 0x55, 0xcc, 0x64, 0x8d, 0x04, - 0x3b, 0xb3, 0x1f, 0x14, 0x1d, 0x7a, 0xb9, 0x72, 0xb8, 0xba, 0xf0, 0x61, 0x1b, 0x67, 0xff, 0xc3, - 0x22, 0x0c, 0x8b, 0x08, 0x70, 0xe2, 0x0c, 0x78, 0xc9, 0x98, 0x12, 0x8f, 0x26, 0xa6, 0xc4, 0xb8, - 0x41, 0x7c, 0x34, 0xdb, 0x7f, 0x08, 0xe3, 0x74, 0x73, 0xbe, 0x46, 0x9c, 0x20, 0x5a, 0x27, 0x0e, - 0x77, 0x0b, 0x2b, 0x1e, 0x7a, 0xf7, 0x57, 0xfa, 0xc9, 0xe5, 0x24, 0x33, 0x9c, 0xe6, 0xff, 0xed, - 0x74, 0xe6, 0x78, 0x30, 0x96, 0x0a, 0xe2, 0xf7, 0x26, 0x94, 0xd4, 0x2b, 0x15, 0xb1, 0xe9, 0xb4, - 0x8f, 0x85, 0x99, 0xe4, 0xc0, 0xd5, 0x5f, 0xf1, 0x0b, 0xa9, 0x98, 0x9d, 0xfd, 0x77, 0x0b, 0x46, - 0x85, 0x7c, 0x10, 0x57, 0x61, 0xc0, 0x09, 0x43, 0x77, 0xd3, 0x23, 0xf5, 0x76, 0x1a, 0xca, 0x54, - 0x35, 0xec, 0xa5, 0xd0, 0x8c, 0x28, 0x89, 0x15, 0x0f, 0x74, 0x8d, 0x3b, 0xdf, 0xed, 0x92, 0x76, - 0xea, 0xc9, 0x14, 0x37, 0x90, 0xee, 0x79, 0xbb, 0x04, 0x8b, 0xf2, 0xe8, 0x93, 0xdc, 0x3b, 0xf2, - 0xba, 0xe7, 0xdf, 0xf1, 0xae, 0xfa, 0xbe, 0x8c, 0xf6, 0xd1, 0x1d, 0xc3, 0x71, 0xe9, 0x13, 0xa9, - 0x8a, 0x63, 0x93, 0x5b, 0x77, 0x51, 0x71, 0x3f, 0x0b, 0x2c, 0xf6, 0xbf, 0xf9, 0x28, 0x3c, 0x44, - 0x04, 0x46, 0x45, 0x78, 0x41, 0x09, 0x13, 0x7d, 0x97, 0x79, 0x95, 0x33, 0x4b, 0xc7, 0x8a, 0xf4, - 0xeb, 0x26, 0x0b, 0x9c, 0xe4, 0x69, 0xff, 0x8c, 0x05, 0xec, 0x81, 0xec, 0x31, 0xc8, 0x23, 0x1f, - 0x31, 0xe5, 0x91, 0xc9, 0xbc, 0x4e, 0xce, 0x11, 0x45, 0x5e, 0xe4, 0x33, 0xab, 0x12, 0xf8, 0x77, - 0xf7, 0x84, 0x4b, 0x4b, 0xe7, 0xfb, 0x87, 0xfd, 0xdf, 0x2d, 0xbe, 0x89, 0xc5, 0xe1, 0x04, 0x3e, - 0x07, 0x03, 0x35, 0xa7, 0xe9, 0xd4, 0x78, 0x86, 0xaa, 0x5c, 0x8d, 0x9e, 0x51, 0x68, 0x7a, 0x4e, - 0x94, 0xe0, 0x1a, 0x2a, 0x19, 0xa6, 0x72, 0x40, 0x82, 0x3b, 0x6a, 0xa5, 0x54, 0x95, 0x53, 0xdb, - 0x30, 0x6c, 0x30, 0x7b, 0xa8, 0xea, 0x8c, 0xcf, 0xf1, 0x23, 0x56, 0x85, 0x55, 0xdd, 0x81, 0x71, - 0x4f, 0xfb, 0x4f, 0x0f, 0x14, 0x79, 0xb9, 0x7c, 0xbc, 0xd3, 0x21, 0xca, 0x4e, 0x1f, 0xed, 0xed, - 0x6d, 0x82, 0x0d, 0x4e, 0x73, 0xb6, 0x7f, 0xc2, 0x82, 0xd3, 0x3a, 0xa1, 0xf6, 0xbc, 0xa7, 0x93, - 0x91, 0x64, 0x1e, 0x06, 0xfc, 0x26, 0x09, 0x9c, 0xc8, 0x0f, 0xc4, 0xa9, 0x71, 0x49, 0x76, 0xfa, - 0x0d, 0x01, 0x3f, 0x10, 0xf9, 0x16, 0x24, 0x77, 0x09, 0xc7, 0xaa, 0x24, 0xbd, 0x7d, 0xb2, 0xce, - 0x08, 0xc5, 0x43, 0x2e, 0xb6, 0x07, 0x30, 0x7b, 0x7b, 0x88, 0x05, 0xc6, 0xfe, 0x33, 0x8b, 0x4f, - 0x2c, 0xbd, 0xe9, 0xe8, 0x6d, 0x18, 0xdb, 0x71, 0xa2, 0xda, 0xd6, 0xc2, 0xdd, 0x66, 0xc0, 0x4d, - 0x4e, 0xb2, 0x9f, 0x9e, 0xe9, 0xd4, 0x4f, 0xda, 0x47, 0xc6, 0x0e, 0x9f, 0x2b, 0x09, 0x66, 0x38, - 0xc5, 0x1e, 0xad, 0xc3, 0x20, 0x83, 0xb1, 0x37, 0x8a, 0x61, 0x3b, 0xd1, 0x20, 0xaf, 0x36, 0xe5, - 0xb2, 0xb0, 0x12, 0xf3, 0xc1, 0x3a, 0x53, 0xfb, 0xcb, 0x45, 0xbe, 0xda, 0x99, 0x28, 0xff, 0x14, - 0xf4, 0x37, 0xfd, 0xfa, 0xdc, 0xd2, 0x3c, 0x16, 0xa3, 0xa0, 0x8e, 0x91, 0x0a, 0x07, 0x63, 0x89, - 0x47, 0x97, 0x60, 0x40, 0xfc, 0x94, 0x26, 0x42, 0xb6, 0x37, 0x0b, 0xba, 0x10, 0x2b, 0x2c, 0x7a, - 0x1e, 0xa0, 0x19, 0xf8, 0xbb, 0x6e, 0x9d, 0xc5, 0x2c, 0x29, 0x9a, 0xde, 0x46, 0x15, 0x85, 0xc1, - 0x1a, 0x15, 0x7a, 0x15, 0x86, 0x5b, 0x5e, 0xc8, 0xc5, 0x11, 0x2d, 0x32, 0xb4, 0xf2, 0x83, 0xb9, - 0xa9, 0x23, 0xb1, 0x49, 0x8b, 0x66, 0xa0, 0x2f, 0x72, 0x98, 0xf7, 0x4c, 0x6f, 0xbe, 0x53, 0xf0, - 0x1a, 0xa5, 0xd0, 0x93, 0x21, 0xd1, 0x02, 0x58, 0x14, 0x44, 0x6f, 0xca, 0xe7, 0xc2, 0x7c, 0x63, - 0x17, 0xde, 0xf8, 0xdd, 0x1d, 0x02, 0xda, 0x63, 0x61, 0xe1, 0xe5, 0x6f, 0xf0, 0x42, 0xaf, 0x00, - 0x90, 0xbb, 0x11, 0x09, 0x3c, 0xa7, 0xa1, 0x7c, 0xde, 0x94, 0x5c, 0x30, 0xef, 0xaf, 0xfa, 0xd1, - 0xcd, 0x90, 0x2c, 0x28, 0x0a, 0xac, 0x51, 0xdb, 0xbf, 0x53, 0x02, 0x88, 0xe5, 0x76, 0x74, 0x2f, - 0xb5, 0x71, 0x3d, 0xdb, 0x5e, 0xd2, 0x3f, 0xba, 0x5d, 0x0b, 0x7d, 0x9f, 0x05, 0x83, 0x22, 0x34, - 0x0b, 0x1b, 0xa1, 0x42, 0xfb, 0x8d, 0xd3, 0x8c, 0x10, 0x43, 0x4b, 0xf0, 0x26, 0xbc, 0x20, 0x67, - 0xa8, 0x86, 0xe9, 0xd8, 0x0a, 0xbd, 0x62, 0xf4, 0x7e, 0x79, 0x55, 0x2c, 0x1a, 0x5d, 0xa9, 0xae, - 0x8a, 0x25, 0x76, 0x46, 0xe8, 0xb7, 0xc4, 0x9b, 0xc6, 0x2d, 0xb1, 0x27, 0xff, 0x3d, 0xa4, 0x21, - 0xbe, 0x76, 0xba, 0x20, 0xa2, 0x8a, 0x1e, 0x1b, 0xa1, 0x37, 0xff, 0x11, 0x9f, 0x76, 0x4f, 0xea, - 0x10, 0x17, 0xe1, 0x33, 0x30, 0x5a, 0x37, 0x85, 0x00, 0x31, 0x13, 0x9f, 0xcc, 0xe3, 0x9b, 0x90, - 0x19, 0xe2, 0x63, 0x3f, 0x81, 0xc0, 0x49, 0xc6, 0xa8, 0xc2, 0x43, 0x65, 0x2c, 0x79, 0x1b, 0xbe, - 0x78, 0x11, 0x62, 0xe7, 0x8e, 0xe5, 0x5e, 0x18, 0x91, 0x1d, 0x4a, 0x19, 0x9f, 0xee, 0xab, 0xa2, - 0x2c, 0x56, 0x5c, 0xd0, 0xeb, 0xd0, 0xc7, 0x5e, 0x71, 0x85, 0x93, 0x03, 0xf9, 0x1a, 0x67, 0x33, - 0x66, 0x60, 0xbc, 0x20, 0xd9, 0xdf, 0x10, 0x0b, 0x0e, 0xe8, 0x9a, 0x7c, 0x23, 0x19, 0x2e, 0x79, - 0x37, 0x43, 0xc2, 0xde, 0x48, 0x96, 0x66, 0x1f, 0x8f, 0x9f, 0x3f, 0x72, 0x78, 0x66, 0xca, 0x44, - 0xa3, 0x24, 0x95, 0xa2, 0xc4, 0x7f, 0x99, 0x89, 0x51, 0x44, 0x38, 0xca, 0x6c, 0x9e, 0x99, 0xad, - 0x31, 0xee, 0xce, 0x5b, 0x26, 0x0b, 0x9c, 0xe4, 0x49, 0x25, 0x52, 0xbe, 0xea, 0xc5, 0x9b, 0x92, - 0x4e, 0x7b, 0x07, 0xbf, 0x88, 0xb3, 0xd3, 0x88, 0x43, 0xb0, 0x28, 0x7f, 0xac, 0xe2, 0xc1, 0x94, - 0x07, 0x63, 0xc9, 0x25, 0xfa, 0x50, 0xc5, 0x91, 0x3f, 0xe9, 0x81, 0x11, 0x73, 0x4a, 0xa1, 0xcb, - 0x50, 0x12, 0x4c, 0x54, 0x36, 0x13, 0xb5, 0x4a, 0x56, 0x24, 0x02, 0xc7, 0x34, 0x2c, 0x89, 0x0d, - 0x2b, 0xae, 0x39, 0x11, 0xc7, 0x49, 0x6c, 0x14, 0x06, 0x6b, 0x54, 0xf4, 0x62, 0xb5, 0xee, 0xfb, - 0x91, 0x3a, 0x90, 0xd4, 0xbc, 0x9b, 0x65, 0x50, 0x2c, 0xb0, 0xf4, 0x20, 0xda, 0x26, 0x81, 0x47, - 0x1a, 0x66, 0x14, 0x71, 0x75, 0x10, 0x5d, 0xd7, 0x91, 0xd8, 0xa4, 0xa5, 0xc7, 0xa9, 0x1f, 0xb2, - 0x89, 0x2c, 0xae, 0x6f, 0xb1, 0x53, 0x76, 0x95, 0x3f, 0x2f, 0x97, 0x78, 0xf4, 0x71, 0x38, 0xad, - 0x22, 0x76, 0x61, 0x6e, 0xcd, 0x90, 0x35, 0xf6, 0x19, 0xda, 0x96, 0xd3, 0x73, 0xd9, 0x64, 0x38, - 0xaf, 0x3c, 0x7a, 0x0d, 0x46, 0x84, 0x88, 0x2f, 0x39, 0xf6, 0x9b, 0x1e, 0x46, 0xd7, 0x0d, 0x2c, - 0x4e, 0x50, 0xcb, 0x38, 0xe8, 0x4c, 0xca, 0x96, 0x1c, 0x06, 0xd2, 0x71, 0xd0, 0x75, 0x3c, 0x4e, - 0x95, 0x40, 0x33, 0x30, 0xca, 0x65, 0x30, 0xd7, 0xdb, 0xe4, 0x63, 0x22, 0x9e, 0x7c, 0xa9, 0x25, - 0x75, 0xc3, 0x44, 0xe3, 0x24, 0x3d, 0x7a, 0x19, 0x86, 0x9c, 0xa0, 0xb6, 0xe5, 0x46, 0xa4, 0x16, - 0xb5, 0x02, 0xfe, 0x16, 0x4c, 0x73, 0xd1, 0x9a, 0xd1, 0x70, 0xd8, 0xa0, 0xb4, 0xef, 0xc1, 0x44, - 0x46, 0xdc, 0x09, 0x3a, 0x71, 0x9c, 0xa6, 0x2b, 0xbf, 0x29, 0xe1, 0x07, 0x3d, 0x53, 0x59, 0x92, - 0x5f, 0xa3, 0x51, 0xd1, 0xd9, 0xc9, 0xe2, 0x53, 0x68, 0x89, 0x57, 0xd5, 0xec, 0x5c, 0x94, 0x08, - 0x1c, 0xd3, 0xd8, 0xff, 0xa9, 0x00, 0xa3, 0x19, 0xb6, 0x15, 0x96, 0xfc, 0x33, 0x71, 0x49, 0x89, - 0x73, 0x7d, 0x9a, 0x61, 0xf5, 0x0b, 0x87, 0x08, 0xab, 0x5f, 0xec, 0x14, 0x56, 0xbf, 0xe7, 0x9d, - 0x84, 0xd5, 0x37, 0x7b, 0xac, 0xb7, 0xab, 0x1e, 0xcb, 0x08, 0xc5, 0xdf, 0x77, 0xc8, 0x50, 0xfc, - 0x46, 0xa7, 0xf7, 0x77, 0xd1, 0xe9, 0x3f, 0x52, 0x80, 0xb1, 0xa4, 0x2b, 0xe9, 0x31, 0xe8, 0x6d, - 0x5f, 0x37, 0xf4, 0xb6, 0x97, 0xba, 0x79, 0xa2, 0x9b, 0xab, 0xc3, 0xc5, 0x09, 0x1d, 0xee, 0xd3, - 0x5d, 0x71, 0x6b, 0xaf, 0xcf, 0xfd, 0xc9, 0x02, 0x9c, 0xcc, 0x7c, 0x23, 0x7c, 0x0c, 0x7d, 0x73, - 0xc3, 0xe8, 0x9b, 0xe7, 0xba, 0x7e, 0xbe, 0x9c, 0xdb, 0x41, 0xb7, 0x13, 0x1d, 0x74, 0xb9, 0x7b, - 0x96, 0xed, 0x7b, 0xe9, 0xeb, 0x45, 0x38, 0x9f, 0x59, 0x2e, 0x56, 0x7b, 0x2e, 0x1a, 0x6a, 0xcf, - 0xe7, 0x13, 0x6a, 0x4f, 0xbb, 0x7d, 0xe9, 0xa3, 0xd1, 0x83, 0x8a, 0x67, 0xbc, 0x2c, 0x18, 0xc1, - 0x03, 0xea, 0x40, 0x8d, 0x67, 0xbc, 0x8a, 0x11, 0x36, 0xf9, 0x7e, 0x3b, 0xe9, 0x3e, 0x7f, 0xdb, - 0x82, 0x33, 0x99, 0x63, 0x73, 0x0c, 0xba, 0xae, 0x55, 0x53, 0xd7, 0xf5, 0x54, 0xd7, 0xb3, 0x35, - 0x47, 0xf9, 0xf5, 0xd3, 0xbd, 0x39, 0xdf, 0xc2, 0x6e, 0xf2, 0x37, 0x60, 0xd0, 0xa9, 0xd5, 0x48, - 0x18, 0xae, 0xf8, 0x75, 0x15, 0x81, 0xfb, 0x39, 0x76, 0xcf, 0x8a, 0xc1, 0x07, 0xfb, 0xe5, 0xa9, - 0x24, 0x8b, 0x18, 0x8d, 0x75, 0x0e, 0xe8, 0x93, 0x30, 0x10, 0x8a, 0x73, 0x53, 0x8c, 0xfd, 0x0b, - 0x5d, 0x76, 0x8e, 0xb3, 0x4e, 0x1a, 0x66, 0xa8, 0x27, 0xa5, 0xa9, 0x50, 0x2c, 0xcd, 0xb0, 0x30, - 0x85, 0x23, 0x0d, 0x0b, 0xf3, 0x3c, 0xc0, 0xae, 0xba, 0x0c, 0x24, 0xf5, 0x0f, 0xda, 0x35, 0x41, - 0xa3, 0x42, 0x1f, 0x85, 0xb1, 0x90, 0xc7, 0x42, 0x9c, 0x6b, 0x38, 0x21, 0x7b, 0x6d, 0x23, 0x66, - 0x21, 0x0b, 0x27, 0x55, 0x4d, 0xe0, 0x70, 0x8a, 0x1a, 0x2d, 0xca, 0x5a, 0x59, 0xe0, 0x46, 0x3e, - 0x31, 0x2f, 0xc6, 0x35, 0x8a, 0xd4, 0xe3, 0x27, 0x92, 0xdd, 0xcf, 0x3a, 0x5e, 0x2b, 0x89, 0x3e, - 0x09, 0x40, 0xa7, 0x8f, 0xd0, 0x43, 0xf4, 0xe7, 0x6f, 0x9e, 0x74, 0x57, 0xa9, 0x67, 0x3a, 0x37, - 0xb3, 0x97, 0xb7, 0xf3, 0x8a, 0x09, 0xd6, 0x18, 0x22, 0x07, 0x86, 0xe3, 0x7f, 0x71, 0x66, 0xde, - 0x4b, 0xb9, 0x35, 0x24, 0x99, 0x33, 0x95, 0xf7, 0xbc, 0xce, 0x02, 0x9b, 0x1c, 0xed, 0x7f, 0x37, - 0x00, 0x8f, 0xb4, 0xd9, 0x86, 0xd1, 0x8c, 0x69, 0xea, 0x7d, 0x26, 0x79, 0x7f, 0x9f, 0xca, 0x2c, - 0x6c, 0x5c, 0xe8, 0x13, 0xb3, 0xbd, 0xf0, 0x8e, 0x67, 0xfb, 0x0f, 0x59, 0x9a, 0x66, 0x85, 0x3b, - 0x95, 0x7e, 0xe4, 0x90, 0xc7, 0xcb, 0x11, 0xaa, 0x5a, 0x36, 0x32, 0xf4, 0x15, 0xcf, 0x77, 0xdd, - 0x9c, 0xee, 0x15, 0x18, 0x5f, 0xcd, 0x0e, 0x00, 0xcc, 0x55, 0x19, 0x57, 0x0f, 0xfb, 0xfd, 0xc7, - 0x15, 0x0c, 0xf8, 0xf7, 0x2d, 0x38, 0x93, 0x02, 0xf3, 0x36, 0x90, 0x50, 0xc4, 0xa8, 0x5a, 0x7d, - 0xc7, 0x8d, 0x97, 0x0c, 0xf9, 0x37, 0x5c, 0x13, 0xdf, 0x70, 0x26, 0x97, 0x2e, 0xd9, 0xf4, 0x1f, - 0xfc, 0xa3, 0xf2, 0x04, 0xab, 0xc0, 0x24, 0xc4, 0xf9, 0x4d, 0x3f, 0xde, 0x8b, 0xff, 0x37, 0x27, - 0xf6, 0xf1, 0xd4, 0x32, 0x9c, 0x6f, 0xdf, 0xd5, 0x87, 0x7a, 0x9e, 0xfc, 0x7b, 0x16, 0x9c, 0x6b, - 0x1b, 0x03, 0xe7, 0x5b, 0x50, 0xce, 0xb5, 0x3f, 0x6f, 0xc1, 0xa3, 0x99, 0x25, 0x0c, 0xef, 0xb8, - 0xcb, 0x50, 0xaa, 0x25, 0xf2, 0xa1, 0xc6, 0xd1, 0x20, 0x54, 0x2e, 0xd4, 0x98, 0xc6, 0x70, 0x82, - 0x2b, 0x74, 0x74, 0x82, 0xfb, 0x0d, 0x0b, 0x52, 0x67, 0xd5, 0x31, 0x08, 0x4d, 0x4b, 0xa6, 0xd0, - 0xf4, 0x78, 0x37, 0xbd, 0x99, 0x23, 0x2f, 0xfd, 0xc5, 0x28, 0x9c, 0xca, 0x79, 0x5d, 0xb8, 0x0b, - 0xe3, 0x9b, 0x35, 0x62, 0x3e, 0x27, 0x6f, 0x17, 0x66, 0xa9, 0xed, 0xdb, 0x73, 0x9e, 0x86, 0x36, - 0x45, 0x82, 0xd3, 0x55, 0xa0, 0xcf, 0x5b, 0x70, 0xc2, 0xb9, 0x13, 0x2e, 0x50, 0xe1, 0xd7, 0xad, - 0xcd, 0x36, 0xfc, 0xda, 0x36, 0x95, 0x2c, 0xe4, 0xb2, 0x7a, 0x31, 0x53, 0x21, 0x79, 0xbb, 0x9a, - 0xa2, 0x37, 0xaa, 0x67, 0x49, 0xc7, 0xb3, 0xa8, 0x70, 0x66, 0x5d, 0x08, 0x8b, 0xfc, 0x28, 0xf4, - 0x6a, 0xdd, 0x26, 0xe0, 0x41, 0xd6, 0x33, 0x50, 0x2e, 0xcd, 0x49, 0x0c, 0x56, 0x7c, 0xd0, 0xa7, - 0xa1, 0xb4, 0x29, 0xdf, 0x36, 0x67, 0x48, 0x8b, 0x71, 0x47, 0xb6, 0x7f, 0xf1, 0xcd, 0xbd, 0x0a, - 0x14, 0x11, 0x8e, 0x99, 0xa2, 0xd7, 0xa0, 0xe8, 0x6d, 0x84, 0xed, 0xf2, 0x76, 0x27, 0xdc, 0x47, - 0x79, 0x58, 0x91, 0xd5, 0xc5, 0x2a, 0xa6, 0x05, 0xd1, 0x35, 0x28, 0x06, 0xeb, 0x75, 0xa1, 0x4d, - 0xcf, 0x5c, 0xa4, 0x78, 0x76, 0x3e, 0xa7, 0x55, 0x8c, 0x13, 0x9e, 0x9d, 0xc7, 0x94, 0x05, 0xaa, - 0x40, 0x2f, 0x7b, 0x92, 0x27, 0x64, 0xb3, 0xcc, 0x5b, 0x68, 0x9b, 0xa7, 0xad, 0x3c, 0xf6, 0x08, - 0x23, 0xc0, 0x9c, 0x11, 0x5a, 0x83, 0xbe, 0x1a, 0xcb, 0xf1, 0x2c, 0x84, 0xb1, 0xf7, 0x67, 0xea, - 0xcd, 0xdb, 0x24, 0xbf, 0x16, 0x6a, 0x64, 0x46, 0x81, 0x05, 0x2f, 0xc6, 0x95, 0x34, 0xb7, 0x36, - 0x42, 0xa6, 0x77, 0xcb, 0xe3, 0xda, 0x26, 0xa7, 0xbb, 0xe0, 0xca, 0x28, 0xb0, 0xe0, 0x85, 0x5e, - 0x81, 0xc2, 0x46, 0x4d, 0x3c, 0xb7, 0xcb, 0x54, 0xa0, 0x9b, 0x91, 0x61, 0x66, 0xfb, 0xee, 0xef, - 0x97, 0x0b, 0x8b, 0x73, 0xb8, 0xb0, 0x51, 0x43, 0xab, 0xd0, 0xbf, 0xc1, 0x63, 0x49, 0x08, 0x1d, - 0xf9, 0x93, 0xd9, 0x61, 0x2e, 0x52, 0xe1, 0x26, 0xf8, 0xd3, 0x2d, 0x81, 0xc0, 0x92, 0x09, 0x4b, - 0xd7, 0xa1, 0x62, 0x62, 0x88, 0x90, 0x7c, 0xd3, 0x87, 0x8b, 0x63, 0xc2, 0x65, 0xe5, 0x38, 0xb2, - 0x06, 0xd6, 0x38, 0xd2, 0x59, 0xed, 0xdc, 0x6b, 0x05, 0x2c, 0x5e, 0xbb, 0x88, 0xdd, 0x94, 0x39, - 0xab, 0x67, 0x24, 0x51, 0xbb, 0x59, 0xad, 0x88, 0x70, 0xcc, 0x14, 0x6d, 0xc3, 0xf0, 0x6e, 0xd8, - 0xdc, 0x22, 0x72, 0x49, 0xb3, 0x50, 0x4e, 0x39, 0xb2, 0xde, 0x2d, 0x41, 0xe8, 0x06, 0x51, 0xcb, - 0x69, 0xa4, 0x76, 0x21, 0x26, 0x97, 0xdf, 0xd2, 0x99, 0x61, 0x93, 0x37, 0xed, 0xfe, 0xb7, 0x5b, - 0xfe, 0xfa, 0x5e, 0x44, 0x44, 0x24, 0xbd, 0xcc, 0xee, 0x7f, 0x83, 0x93, 0xa4, 0xbb, 0x5f, 0x20, - 0xb0, 0x64, 0x82, 0x6e, 0x89, 0xee, 0x61, 0xbb, 0xe7, 0x58, 0x7e, 0x98, 0xde, 0x19, 0x49, 0x94, - 0xd3, 0x29, 0x6c, 0xb7, 0x8c, 0x59, 0xb1, 0x5d, 0xb2, 0xb9, 0xe5, 0x47, 0xbe, 0x97, 0xd8, 0xa1, - 0xc7, 0xf3, 0x77, 0xc9, 0x4a, 0x06, 0x7d, 0x7a, 0x97, 0xcc, 0xa2, 0xc2, 0x99, 0x75, 0xa1, 0x3a, - 0x8c, 0x34, 0xfd, 0x20, 0xba, 0xe3, 0x07, 0x72, 0x7e, 0xa1, 0x36, 0x3a, 0x3e, 0x83, 0x52, 0xd4, - 0xc8, 0x82, 0x54, 0x9a, 0x18, 0x9c, 0xe0, 0x89, 0x3e, 0x06, 0xfd, 0x61, 0xcd, 0x69, 0x90, 0xa5, - 0x1b, 0x93, 0x13, 0xf9, 0xc7, 0x4f, 0x95, 0x93, 0xe4, 0xcc, 0x2e, 0x1e, 0x0a, 0x84, 0x93, 0x60, - 0xc9, 0x0e, 0x2d, 0x42, 0x2f, 0x4b, 0x83, 0xc9, 0xc2, 0x3e, 0xe6, 0x44, 0x1b, 0x4e, 0x39, 0xf3, - 0xf3, 0xbd, 0x89, 0x81, 0x31, 0x2f, 0x4e, 0xd7, 0x80, 0xb8, 0xea, 0xfa, 0xe1, 0xe4, 0xc9, 0xfc, - 0x35, 0x20, 0x6e, 0xc8, 0x37, 0xaa, 0xed, 0xd6, 0x80, 0x22, 0xc2, 0x31, 0x53, 0xba, 0x33, 0xd3, - 0xdd, 0xf4, 0x54, 0x1b, 0x2f, 0xb4, 0xdc, 0xbd, 0x94, 0xed, 0xcc, 0x74, 0x27, 0xa5, 0x2c, 0xec, - 0x3f, 0xee, 0x4f, 0xcb, 0x2c, 0x4c, 0x39, 0xf2, 0xbf, 0x5b, 0x29, 0xbb, 0xf9, 0x07, 0xba, 0xd5, - 0xd5, 0x1e, 0xe1, 0xb5, 0xee, 0xf3, 0x16, 0x9c, 0x6a, 0x66, 0x7e, 0x88, 0x10, 0x00, 0xba, 0x53, - 0xf9, 0xf2, 0x4f, 0x57, 0x21, 0x42, 0xb3, 0xf1, 0x38, 0xa7, 0xa6, 0xe4, 0xd5, 0xb9, 0xf8, 0x8e, - 0xaf, 0xce, 0x2b, 0x30, 0x50, 0xe3, 0xf7, 0x1c, 0x19, 0xda, 0xba, 0xab, 0x00, 0x77, 0x4c, 0x94, - 0x10, 0x17, 0xa4, 0x0d, 0xac, 0x58, 0xa0, 0x1f, 0xb6, 0xe0, 0x5c, 0xb2, 0xe9, 0x98, 0x30, 0xb4, - 0x88, 0x2b, 0xca, 0xf5, 0x32, 0x8b, 0xe2, 0xfb, 0x53, 0xf2, 0xbf, 0x41, 0x7c, 0xd0, 0x89, 0x00, - 0xb7, 0xaf, 0x0c, 0xcd, 0x67, 0x28, 0x86, 0xfa, 0x4c, 0x63, 0x58, 0x17, 0xca, 0xa1, 0x17, 0x61, - 0x68, 0xc7, 0x6f, 0x79, 0x91, 0x70, 0x5a, 0x13, 0x0e, 0x34, 0xcc, 0x71, 0x64, 0x45, 0x83, 0x63, - 0x83, 0x2a, 0xa1, 0x52, 0x1a, 0x78, 0x60, 0x95, 0xd2, 0x5b, 0x30, 0xe4, 0x69, 0x5e, 0xd6, 0x42, - 0x1e, 0xb8, 0x98, 0x1f, 0x13, 0x58, 0xf7, 0xc9, 0xe6, 0xad, 0xd4, 0x21, 0xd8, 0xe0, 0x76, 0xbc, - 0xde, 0x6c, 0x3f, 0x5f, 0xc8, 0x10, 0xea, 0xb9, 0x5a, 0xe9, 0xc3, 0xa6, 0x5a, 0xe9, 0x62, 0x52, - 0xad, 0x94, 0x32, 0x84, 0x18, 0x1a, 0xa5, 0xee, 0x53, 0x64, 0x75, 0x1d, 0x57, 0xf4, 0xbb, 0x2d, - 0x38, 0xcd, 0x34, 0xeb, 0xb4, 0x82, 0x77, 0xac, 0x4d, 0x7f, 0xe4, 0xfe, 0x7e, 0xf9, 0xf4, 0x72, - 0x36, 0x3b, 0x9c, 0x57, 0x8f, 0xdd, 0x80, 0x0b, 0x9d, 0x8e, 0x46, 0xe6, 0x41, 0x59, 0x57, 0xa6, - 0xf7, 0xd8, 0x83, 0xb2, 0xbe, 0x34, 0x8f, 0x19, 0xa6, 0xdb, 0xa8, 0x59, 0xf6, 0x7f, 0xb0, 0xa0, - 0x58, 0xf1, 0xeb, 0xc7, 0x70, 0xe9, 0xfe, 0x88, 0x71, 0xe9, 0x7e, 0x24, 0xfb, 0x50, 0xae, 0xe7, - 0x9a, 0x92, 0x16, 0x12, 0xa6, 0xa4, 0x73, 0x79, 0x0c, 0xda, 0x1b, 0x8e, 0x7e, 0xaa, 0x08, 0x83, - 0x15, 0xbf, 0xae, 0x9e, 0x2f, 0xfc, 0xe3, 0x07, 0x79, 0xbe, 0x90, 0x9b, 0xf4, 0x44, 0xe3, 0xcc, - 0x1c, 0x2f, 0xe5, 0xcb, 0xed, 0x6f, 0xb1, 0x57, 0x0c, 0xb7, 0x89, 0xbb, 0xb9, 0x15, 0x91, 0x7a, - 0xf2, 0x73, 0x8e, 0xef, 0x15, 0xc3, 0x1f, 0x17, 0x60, 0x34, 0x51, 0x3b, 0x6a, 0xc0, 0x70, 0x43, - 0x37, 0x54, 0x88, 0x79, 0xfa, 0x40, 0x36, 0x0e, 0xe1, 0x05, 0xae, 0x81, 0xb0, 0xc9, 0x1c, 0x4d, - 0x03, 0x28, 0xcb, 0xbd, 0x54, 0x57, 0xb3, 0x9b, 0x87, 0x32, 0xed, 0x87, 0x58, 0xa3, 0x40, 0x2f, - 0xc1, 0x60, 0xe4, 0x37, 0xfd, 0x86, 0xbf, 0xb9, 0x77, 0x9d, 0xc8, 0x80, 0x6a, 0xca, 0xb7, 0x73, - 0x2d, 0x46, 0x61, 0x9d, 0x0e, 0xdd, 0x85, 0x71, 0xc5, 0xa4, 0x7a, 0x04, 0xc6, 0x1b, 0xa6, 0xd9, - 0x58, 0x4d, 0x72, 0xc4, 0xe9, 0x4a, 0xec, 0x9f, 0x2d, 0xf2, 0x2e, 0xf6, 0x22, 0xf7, 0xbd, 0xd5, - 0xf0, 0xee, 0x5e, 0x0d, 0x5f, 0xb7, 0x60, 0x8c, 0xd6, 0xce, 0x1c, 0xd7, 0xa4, 0xa8, 0xa1, 0x22, - 0xa1, 0x5b, 0x6d, 0x22, 0xa1, 0x5f, 0xa4, 0xbb, 0x66, 0xdd, 0x6f, 0x45, 0x42, 0x7f, 0xa8, 0x6d, - 0x8b, 0x14, 0x8a, 0x05, 0x56, 0xd0, 0x91, 0x20, 0x10, 0x8f, 0x6d, 0x75, 0x3a, 0x12, 0x04, 0x58, - 0x60, 0x65, 0xa0, 0xf4, 0x9e, 0xec, 0x40, 0xe9, 0x3c, 0xde, 0xad, 0x70, 0x71, 0x12, 0x42, 0x9f, - 0x16, 0xef, 0x56, 0xfa, 0x3e, 0xc5, 0x34, 0xf6, 0x57, 0x8b, 0x30, 0x54, 0xf1, 0xeb, 0xb1, 0xd5, - 0xfe, 0x45, 0xc3, 0x6a, 0x7f, 0x21, 0x61, 0xb5, 0x1f, 0xd3, 0x69, 0xdf, 0xb3, 0xd1, 0x7f, 0xb3, - 0x6c, 0xf4, 0xbf, 0x6e, 0xb1, 0x51, 0x9b, 0x5f, 0xad, 0x72, 0x3f, 0x48, 0x74, 0x05, 0x06, 0xd9, - 0x06, 0xc3, 0x5e, 0x77, 0x4b, 0x53, 0x36, 0x4b, 0x5c, 0xb6, 0x1a, 0x83, 0xb1, 0x4e, 0x83, 0x2e, - 0xc1, 0x40, 0x48, 0x9c, 0xa0, 0xb6, 0xa5, 0x76, 0x57, 0x61, 0x77, 0xe6, 0x30, 0xac, 0xb0, 0xe8, - 0x8d, 0x38, 0xd4, 0x6a, 0x31, 0xff, 0xb5, 0xa8, 0xde, 0x1e, 0xbe, 0x44, 0xf2, 0xe3, 0xab, 0xda, - 0xb7, 0x01, 0xa5, 0xe9, 0xbb, 0x08, 0x06, 0x58, 0x36, 0x83, 0x01, 0x96, 0x52, 0x81, 0x00, 0xff, - 0xca, 0x82, 0x91, 0x8a, 0x5f, 0xa7, 0x4b, 0xf7, 0xdb, 0x69, 0x9d, 0xea, 0x71, 0xa6, 0xfb, 0xda, - 0xc4, 0x99, 0x7e, 0x0c, 0x7a, 0x2b, 0x7e, 0xbd, 0x43, 0xc0, 0xc2, 0xbf, 0x61, 0x41, 0x7f, 0xc5, - 0xaf, 0x1f, 0x83, 0x69, 0xe2, 0xc3, 0xa6, 0x69, 0xe2, 0x74, 0xce, 0xbc, 0xc9, 0xb1, 0x46, 0xfc, - 0xff, 0x3d, 0x30, 0x4c, 0xdb, 0xe9, 0x6f, 0xca, 0xa1, 0x34, 0xba, 0xcd, 0xea, 0xa2, 0xdb, 0xa8, - 0x14, 0xee, 0x37, 0x1a, 0xfe, 0x9d, 0xe4, 0xb0, 0x2e, 0x32, 0x28, 0x16, 0x58, 0xf4, 0x2c, 0x0c, - 0x34, 0x03, 0xb2, 0xeb, 0xfa, 0x42, 0xbc, 0xd5, 0x0c, 0x3d, 0x15, 0x01, 0xc7, 0x8a, 0x82, 0x5e, - 0x4d, 0x43, 0xd7, 0xa3, 0x47, 0x79, 0xcd, 0xf7, 0xea, 0x5c, 0x7b, 0x5f, 0x14, 0xc9, 0x50, 0x34, - 0x38, 0x36, 0xa8, 0xd0, 0x6d, 0x28, 0xb1, 0xff, 0x6c, 0xdb, 0x39, 0x7c, 0x1a, 0x66, 0x91, 0x1e, - 0x52, 0x30, 0xc0, 0x31, 0x2f, 0xf4, 0x3c, 0x40, 0x24, 0x13, 0x0a, 0x84, 0x22, 0x70, 0x9d, 0xba, - 0x0a, 0xa8, 0x54, 0x03, 0x21, 0xd6, 0xa8, 0xd0, 0x33, 0x50, 0x8a, 0x1c, 0xb7, 0xb1, 0xec, 0x7a, - 0xcc, 0xfe, 0x4b, 0xdb, 0x2f, 0xb2, 0x34, 0x0a, 0x20, 0x8e, 0xf1, 0x54, 0x14, 0x63, 0x41, 0x4d, - 0x78, 0x12, 0xfa, 0x01, 0x46, 0xcd, 0x44, 0xb1, 0x65, 0x05, 0xc5, 0x1a, 0x05, 0xda, 0x82, 0xb3, - 0xae, 0xc7, 0x12, 0x87, 0x90, 0xea, 0xb6, 0xdb, 0x5c, 0x5b, 0xae, 0xde, 0x22, 0x81, 0xbb, 0xb1, - 0x37, 0xeb, 0xd4, 0xb6, 0x89, 0x27, 0x13, 0xec, 0xca, 0xbc, 0xeb, 0x67, 0x97, 0xda, 0xd0, 0xe2, - 0xb6, 0x9c, 0xec, 0x17, 0xd8, 0x7c, 0xbf, 0x51, 0x45, 0x4f, 0x1b, 0x5b, 0xc7, 0x29, 0x7d, 0xeb, - 0x38, 0xd8, 0x2f, 0xf7, 0xdd, 0xa8, 0x6a, 0x31, 0x39, 0x5e, 0x86, 0x93, 0x15, 0xbf, 0x5e, 0xf1, - 0x83, 0x68, 0xd1, 0x0f, 0xee, 0x38, 0x41, 0x5d, 0x4e, 0xaf, 0xb2, 0x8c, 0x4a, 0x42, 0xf7, 0xcf, - 0x5e, 0xbe, 0xbb, 0x18, 0x11, 0x47, 0x5e, 0x60, 0x12, 0xdb, 0x21, 0xdf, 0xd2, 0xd5, 0x98, 0xec, - 0xa0, 0x52, 0xef, 0x5c, 0x75, 0x22, 0x82, 0x6e, 0xb0, 0x14, 0xfa, 0xf1, 0x31, 0x2a, 0x8a, 0x3f, - 0xa5, 0xa5, 0xd0, 0x8f, 0x91, 0x99, 0xe7, 0xae, 0x59, 0xde, 0xfe, 0x9c, 0xa8, 0x84, 0xeb, 0x01, - 0xb8, 0xbf, 0x62, 0x37, 0x39, 0xa8, 0x65, 0x6e, 0x8e, 0x42, 0x7e, 0x52, 0x07, 0x6e, 0x79, 0x6d, - 0x9b, 0x9b, 0xc3, 0xfe, 0x4e, 0x38, 0x95, 0xac, 0xbe, 0xeb, 0x44, 0xd8, 0x73, 0x30, 0x1e, 0xe8, - 0x05, 0xb5, 0x44, 0x67, 0x27, 0x79, 0x3e, 0x85, 0x04, 0x12, 0xa7, 0xe9, 0xed, 0x97, 0x60, 0x9c, - 0xde, 0x3d, 0x95, 0x20, 0xc7, 0x7a, 0xb9, 0x73, 0x78, 0x96, 0xff, 0xd8, 0xcb, 0x0e, 0xa2, 0x44, - 0xd6, 0x1b, 0xf4, 0x29, 0x18, 0x09, 0xc9, 0xb2, 0xeb, 0xb5, 0xee, 0x4a, 0xed, 0x53, 0x9b, 0x47, - 0xa4, 0xd5, 0x05, 0x9d, 0x92, 0xeb, 0xb0, 0x4d, 0x18, 0x4e, 0x70, 0x43, 0x3b, 0x30, 0x72, 0xc7, - 0xf5, 0xea, 0xfe, 0x9d, 0x50, 0xf2, 0x1f, 0xc8, 0x57, 0x65, 0xdf, 0xe6, 0x94, 0x89, 0x36, 0x1a, - 0xd5, 0xdd, 0x36, 0x98, 0xe1, 0x04, 0x73, 0xba, 0xd8, 0x83, 0x96, 0x37, 0x13, 0xde, 0x0c, 0x09, - 0x7f, 0x16, 0x28, 0x16, 0x3b, 0x96, 0x40, 0x1c, 0xe3, 0xe9, 0x62, 0x67, 0x7f, 0xae, 0x06, 0x7e, - 0x8b, 0xa7, 0x58, 0x11, 0x8b, 0x1d, 0x2b, 0x28, 0xd6, 0x28, 0xe8, 0x66, 0xc8, 0xfe, 0xad, 0xfa, - 0x1e, 0xf6, 0xfd, 0x48, 0x6e, 0x9f, 0x2c, 0x45, 0x98, 0x06, 0xc7, 0x06, 0x15, 0x5a, 0x04, 0x14, - 0xb6, 0x9a, 0xcd, 0x06, 0xf3, 0x4e, 0x73, 0x1a, 0x8c, 0x15, 0x77, 0xdb, 0x29, 0xf2, 0x10, 0xd1, - 0xd5, 0x14, 0x16, 0x67, 0x94, 0xa0, 0xe7, 0xe2, 0x86, 0x68, 0x6a, 0x2f, 0x6b, 0x2a, 0x37, 0x7b, - 0x55, 0x79, 0x3b, 0x25, 0x0e, 0x2d, 0x40, 0x7f, 0xb8, 0x17, 0xd6, 0xa2, 0x46, 0xd8, 0x2e, 0x21, - 0x5b, 0x95, 0x91, 0x68, 0xf9, 0x40, 0x79, 0x11, 0x2c, 0xcb, 0xa2, 0x1a, 0x4c, 0x08, 0x8e, 0x73, - 0x5b, 0x8e, 0xa7, 0xd2, 0x44, 0x71, 0x27, 0xfd, 0x2b, 0xf7, 0xf7, 0xcb, 0x13, 0xa2, 0x66, 0x1d, - 0x7d, 0xb0, 0x5f, 0xa6, 0x8b, 0x23, 0x03, 0x83, 0xb3, 0xb8, 0xf1, 0xc9, 0x57, 0xab, 0xf9, 0x3b, - 0xcd, 0x4a, 0xe0, 0x6f, 0xb8, 0x0d, 0xd2, 0xce, 0x74, 0x58, 0x35, 0x28, 0xc5, 0xe4, 0x33, 0x60, - 0x38, 0xc1, 0xcd, 0xfe, 0x1c, 0x93, 0x1d, 0xab, 0xee, 0xa6, 0xe7, 0x44, 0xad, 0x80, 0xa0, 0x1d, - 0x18, 0x6e, 0xb2, 0xdd, 0x45, 0x24, 0x3e, 0x11, 0x73, 0xfd, 0xc5, 0x2e, 0xd5, 0x4f, 0x77, 0x58, - 0xea, 0x36, 0xc3, 0xd5, 0xad, 0xa2, 0xb3, 0xc3, 0x26, 0x77, 0xfb, 0x5f, 0x9c, 0x61, 0xd2, 0x47, - 0x95, 0xeb, 0x94, 0xfa, 0xc5, 0x9b, 0x20, 0x71, 0x8d, 0x9d, 0xca, 0x57, 0xb0, 0xc6, 0xc3, 0x22, - 0xde, 0x15, 0x61, 0x59, 0x16, 0x7d, 0x12, 0x46, 0xe8, 0xad, 0x50, 0x49, 0x00, 0xe1, 0xe4, 0x89, - 0xfc, 0xd8, 0x2d, 0x8a, 0x4a, 0x4f, 0x8a, 0xa4, 0x17, 0xc6, 0x09, 0x66, 0xe8, 0x0d, 0xe6, 0x5a, - 0x26, 0x59, 0x17, 0xba, 0x61, 0xad, 0x7b, 0x91, 0x49, 0xb6, 0x1a, 0x13, 0xd4, 0x82, 0x89, 0x74, - 0xea, 0xc7, 0x70, 0xd2, 0xce, 0x17, 0xaf, 0xd3, 0xd9, 0x1b, 0xe3, 0xec, 0x35, 0x69, 0x5c, 0x88, - 0xb3, 0xf8, 0xa3, 0xe5, 0x64, 0x62, 0xbe, 0xa2, 0xa1, 0xf7, 0x4d, 0x25, 0xe7, 0x1b, 0x6e, 0x9b, - 0x93, 0x6f, 0x13, 0xce, 0x69, 0xb9, 0xcd, 0xae, 0x06, 0x0e, 0x73, 0xde, 0x70, 0xd9, 0x76, 0xaa, - 0xc9, 0x45, 0x8f, 0xde, 0xdf, 0x2f, 0x9f, 0x5b, 0x6b, 0x47, 0x88, 0xdb, 0xf3, 0x41, 0x37, 0xe0, - 0x24, 0x8f, 0x3c, 0x30, 0x4f, 0x9c, 0x7a, 0xc3, 0xf5, 0x94, 0xe0, 0xc5, 0x97, 0xfc, 0x99, 0xfb, - 0xfb, 0xe5, 0x93, 0x33, 0x59, 0x04, 0x38, 0xbb, 0x1c, 0xfa, 0x30, 0x94, 0xea, 0x5e, 0x28, 0xfa, - 0xa0, 0xcf, 0x48, 0x1f, 0x57, 0x9a, 0x5f, 0xad, 0xaa, 0xef, 0x8f, 0xff, 0xe0, 0xb8, 0x00, 0xda, - 0xe4, 0xb6, 0x01, 0xa5, 0x2d, 0xea, 0x4f, 0x45, 0x5e, 0x4b, 0x2a, 0x54, 0x8d, 0xb7, 0xc7, 0xdc, - 0x28, 0xa6, 0x9e, 0xe4, 0x18, 0xcf, 0x92, 0x0d, 0xc6, 0xe8, 0x75, 0x40, 0x22, 0x4d, 0xc1, 0x4c, - 0x8d, 0x65, 0xd5, 0x61, 0x47, 0xe3, 0x80, 0xf9, 0x1a, 0xb6, 0x9a, 0xa2, 0xc0, 0x19, 0xa5, 0xd0, - 0x35, 0xba, 0xab, 0xe8, 0x50, 0xb1, 0x6b, 0xa9, 0x24, 0xa5, 0xf3, 0xa4, 0x19, 0x10, 0xe6, 0x63, - 0x66, 0x72, 0xc4, 0x89, 0x72, 0xa8, 0x0e, 0x67, 0x9d, 0x56, 0xe4, 0x33, 0xb3, 0x8b, 0x49, 0xba, - 0xe6, 0x6f, 0x13, 0x8f, 0x59, 0x3c, 0x07, 0x66, 0x2f, 0x50, 0xc9, 0x6e, 0xa6, 0x0d, 0x1d, 0x6e, - 0xcb, 0x85, 0x4a, 0xe4, 0x2a, 0x2b, 0x39, 0x98, 0xf1, 0xe4, 0x32, 0x32, 0x93, 0xbf, 0x04, 0x83, - 0x5b, 0x7e, 0x18, 0xad, 0x92, 0xe8, 0x8e, 0x1f, 0x6c, 0x8b, 0xb8, 0xc8, 0x71, 0x2c, 0xfa, 0x18, - 0x85, 0x75, 0x3a, 0x7a, 0xe5, 0x66, 0xfe, 0x38, 0x4b, 0xf3, 0xcc, 0x15, 0x62, 0x20, 0xde, 0x63, - 0xae, 0x71, 0x30, 0x96, 0x78, 0x49, 0xba, 0x54, 0x99, 0x63, 0x6e, 0x0d, 0x09, 0xd2, 0xa5, 0xca, - 0x1c, 0x96, 0x78, 0x3a, 0x5d, 0xc3, 0x2d, 0x27, 0x20, 0x95, 0xc0, 0xaf, 0x91, 0x50, 0xcb, 0x80, - 0xf0, 0x08, 0x8f, 0xfa, 0x4c, 0xa7, 0x6b, 0x35, 0x8b, 0x00, 0x67, 0x97, 0x43, 0x24, 0x9d, 0xd7, - 0x6f, 0x24, 0xdf, 0x1e, 0x95, 0x96, 0x67, 0xba, 0x4c, 0xed, 0xe7, 0xc1, 0x98, 0xca, 0x28, 0xc8, - 0xe3, 0x3c, 0x87, 0x93, 0xa3, 0x6c, 0x6e, 0x77, 0x1f, 0x24, 0x5a, 0x59, 0xf8, 0x96, 0x12, 0x9c, - 0x70, 0x8a, 0xb7, 0x11, 0x32, 0x70, 0xac, 0x63, 0xc8, 0xc0, 0xcb, 0x50, 0x0a, 0x5b, 0xeb, 0x75, - 0x7f, 0xc7, 0x71, 0x3d, 0xe6, 0xd6, 0xa0, 0xdd, 0xfd, 0xaa, 0x12, 0x81, 0x63, 0x1a, 0xb4, 0x08, - 0x03, 0x8e, 0x34, 0xdf, 0xa1, 0xfc, 0x20, 0x51, 0xca, 0x68, 0xc7, 0xe3, 0xa6, 0x48, 0x83, 0x9d, - 0x2a, 0x8b, 0x5e, 0x85, 0x61, 0xf1, 0x72, 0x5e, 0x24, 0xe1, 0x9d, 0x30, 0x9f, 0x37, 0x56, 0x75, - 0x24, 0x36, 0x69, 0xd1, 0x4d, 0x18, 0x8c, 0xfc, 0x06, 0x7b, 0xa3, 0x47, 0xc5, 0xbc, 0x53, 0xf9, - 0xe1, 0x0e, 0xd7, 0x14, 0x99, 0xae, 0xb5, 0x56, 0x45, 0xb1, 0xce, 0x07, 0xad, 0xf1, 0xf9, 0xce, - 0xf2, 0x1d, 0x90, 0x50, 0x64, 0x71, 0x3d, 0x97, 0xe7, 0x93, 0xc6, 0xc8, 0xcc, 0xe5, 0x20, 0x4a, - 0x62, 0x9d, 0x0d, 0xba, 0x0a, 0xe3, 0xcd, 0xc0, 0xf5, 0xd9, 0x9c, 0x50, 0x96, 0xdb, 0x49, 0x33, - 0xbb, 0x59, 0x25, 0x49, 0x80, 0xd3, 0x65, 0x58, 0xe0, 0x03, 0x01, 0x9c, 0x3c, 0xc3, 0x33, 0xb4, - 0xf0, 0xab, 0x34, 0x87, 0x61, 0x85, 0x45, 0x2b, 0x6c, 0x27, 0xe6, 0x5a, 0xa0, 0xc9, 0xa9, 0xfc, - 0xb8, 0x54, 0xba, 0xb6, 0x88, 0x0b, 0xaf, 0xea, 0x2f, 0x8e, 0x39, 0xa0, 0xba, 0x96, 0x18, 0x95, - 0x5e, 0x01, 0xc2, 0xc9, 0xb3, 0x6d, 0x9c, 0x22, 0x13, 0xb7, 0xb2, 0x58, 0x20, 0x30, 0xc0, 0x21, - 0x4e, 0xf0, 0x44, 0x1f, 0x85, 0x31, 0x11, 0x4d, 0x33, 0xee, 0xa6, 0x73, 0xf1, 0xcb, 0x07, 0x9c, - 0xc0, 0xe1, 0x14, 0x35, 0xcf, 0x90, 0xe2, 0xac, 0x37, 0x88, 0xd8, 0xfa, 0x96, 0x5d, 0x6f, 0x3b, - 0x9c, 0x3c, 0xcf, 0xf6, 0x07, 0x91, 0x21, 0x25, 0x89, 0xc5, 0x19, 0x25, 0xd0, 0x1a, 0x8c, 0x35, - 0x03, 0x42, 0x76, 0x98, 0xa0, 0x2f, 0xce, 0xb3, 0x32, 0x8f, 0xfb, 0x41, 0x5b, 0x52, 0x49, 0xe0, - 0x0e, 0x32, 0x60, 0x38, 0xc5, 0x01, 0xdd, 0x81, 0x01, 0x7f, 0x97, 0x04, 0x5b, 0xc4, 0xa9, 0x4f, - 0x5e, 0x68, 0xf3, 0x12, 0x47, 0x1c, 0x6e, 0x37, 0x04, 0x6d, 0xc2, 0xdb, 0x43, 0x82, 0x3b, 0x7b, - 0x7b, 0xc8, 0xca, 0xd0, 0xff, 0x61, 0xc1, 0x19, 0x69, 0x9c, 0xa9, 0x36, 0x69, 0xaf, 0xcf, 0xf9, - 0x5e, 0x18, 0x05, 0x3c, 0x52, 0xc5, 0xa3, 0xf9, 0xd1, 0x1b, 0xd6, 0x72, 0x0a, 0x29, 0x45, 0xf4, - 0x99, 0x3c, 0x8a, 0x10, 0xe7, 0xd7, 0x48, 0xaf, 0xa6, 0x21, 0x89, 0xe4, 0x66, 0x34, 0x13, 0x2e, - 0xbe, 0x31, 0xbf, 0x3a, 0xf9, 0x18, 0x0f, 0xb3, 0x41, 0x17, 0x43, 0x35, 0x89, 0xc4, 0x69, 0x7a, - 0x74, 0x05, 0x0a, 0x7e, 0x38, 0xf9, 0x78, 0x9b, 0x5c, 0xba, 0x7e, 0xfd, 0x46, 0x95, 0x7b, 0xfd, - 0xdd, 0xa8, 0xe2, 0x82, 0x1f, 0xca, 0x2c, 0x25, 0xf4, 0x3e, 0x16, 0x4e, 0x3e, 0xc1, 0xd5, 0x96, - 0x32, 0x4b, 0x09, 0x03, 0xe2, 0x18, 0x8f, 0xb6, 0x60, 0x34, 0x34, 0xee, 0xbd, 0xe1, 0xe4, 0x45, - 0xd6, 0x53, 0x4f, 0xe4, 0x0d, 0x9a, 0x41, 0xad, 0xa5, 0x0f, 0x30, 0xb9, 0xe0, 0x24, 0x5b, 0xbe, - 0xba, 0xb4, 0x9b, 0x77, 0x38, 0xf9, 0x64, 0x87, 0xd5, 0xa5, 0x11, 0xeb, 0xab, 0x4b, 0xe7, 0x81, - 0x13, 0x3c, 0xa7, 0xbe, 0x03, 0xc6, 0x53, 0xe2, 0xd2, 0x61, 0x3c, 0xdc, 0xa7, 0xb6, 0x61, 0xd8, - 0x98, 0x92, 0x0f, 0xd5, 0xbb, 0xe2, 0xb7, 0x4b, 0x50, 0x52, 0x56, 0x6f, 0x74, 0xd9, 0x74, 0xa8, - 0x38, 0x93, 0x74, 0xa8, 0x18, 0xa8, 0xf8, 0x75, 0xc3, 0x87, 0x62, 0x2d, 0x23, 0x18, 0x63, 0xde, - 0x06, 0xd8, 0xfd, 0x23, 0x15, 0xcd, 0x94, 0x50, 0xec, 0xda, 0x33, 0xa3, 0xa7, 0xad, 0x75, 0xe2, - 0x2a, 0x8c, 0x7b, 0x3e, 0x93, 0xd1, 0x49, 0x5d, 0x0a, 0x60, 0x4c, 0xce, 0x2a, 0xe9, 0xd1, 0x8d, - 0x12, 0x04, 0x38, 0x5d, 0x86, 0x56, 0xc8, 0x05, 0xa5, 0xa4, 0x39, 0x84, 0xcb, 0x51, 0x58, 0x60, - 0xe9, 0xdd, 0x90, 0xff, 0x0a, 0x27, 0xc7, 0xf2, 0xef, 0x86, 0xbc, 0x50, 0x52, 0x18, 0x0b, 0xa5, - 0x30, 0xc6, 0xb4, 0xff, 0x4d, 0xbf, 0xbe, 0x54, 0x11, 0x62, 0xbe, 0x16, 0x49, 0xb8, 0xbe, 0x54, - 0xc1, 0x1c, 0x87, 0x66, 0xa0, 0x8f, 0xfd, 0x08, 0x27, 0x87, 0xf2, 0xa3, 0xe1, 0xb0, 0x12, 0x5a, - 0x96, 0x34, 0x56, 0x00, 0x8b, 0x82, 0x4c, 0xbb, 0x4b, 0xef, 0x46, 0x4c, 0xbb, 0xdb, 0xff, 0x80, - 0xda, 0x5d, 0xc9, 0x00, 0xc7, 0xbc, 0xd0, 0x5d, 0x38, 0x69, 0xdc, 0x47, 0xd5, 0xab, 0x1d, 0xc8, - 0x37, 0xfc, 0x26, 0x88, 0x67, 0xcf, 0x89, 0x46, 0x9f, 0x5c, 0xca, 0xe2, 0x84, 0xb3, 0x2b, 0x40, - 0x0d, 0x18, 0xaf, 0xa5, 0x6a, 0x1d, 0xe8, 0xbe, 0x56, 0x35, 0x2f, 0xd2, 0x35, 0xa6, 0x19, 0xa3, - 0x57, 0x61, 0xe0, 0x6d, 0x3f, 0x64, 0x47, 0xa4, 0xb8, 0x9a, 0xc8, 0x70, 0x0e, 0x03, 0x6f, 0xdc, - 0xa8, 0x32, 0xf8, 0xc1, 0x7e, 0x79, 0xb0, 0xe2, 0xd7, 0xe5, 0x5f, 0xac, 0x0a, 0xa0, 0xef, 0xb7, - 0x60, 0x2a, 0x7d, 0xe1, 0x55, 0x8d, 0x1e, 0xee, 0xbe, 0xd1, 0xb6, 0xa8, 0x74, 0x6a, 0x21, 0x97, - 0x1d, 0x6e, 0x53, 0x15, 0xfa, 0x10, 0x5d, 0x4f, 0xa1, 0x7b, 0x8f, 0x88, 0x14, 0xb3, 0x8f, 0xc6, - 0xeb, 0x89, 0x42, 0x0f, 0xf6, 0xcb, 0xa3, 0x7c, 0x67, 0x74, 0xef, 0xc9, 0xe7, 0x4d, 0xa2, 0x00, - 0xfa, 0x4e, 0x38, 0x19, 0xa4, 0x35, 0xa8, 0x44, 0x0a, 0xe1, 0x4f, 0x77, 0xb3, 0xcb, 0x26, 0x07, - 0x1c, 0x67, 0x31, 0xc4, 0xd9, 0xf5, 0xd8, 0xbf, 0x62, 0x31, 0xfd, 0xb6, 0x68, 0x16, 0x09, 0x5b, - 0x8d, 0xe3, 0x48, 0x6c, 0xbd, 0x60, 0xd8, 0x8e, 0x1f, 0xd8, 0xb1, 0xe8, 0x1f, 0x59, 0xcc, 0xb1, - 0xe8, 0x18, 0x5f, 0x31, 0xbd, 0x01, 0x03, 0x91, 0x4c, 0x38, 0xde, 0x26, 0x17, 0xb7, 0xd6, 0x28, - 0xe6, 0x5c, 0xa5, 0x2e, 0x39, 0x2a, 0xb7, 0xb8, 0x62, 0x63, 0xff, 0x7d, 0x3e, 0x02, 0x12, 0x73, - 0x0c, 0x26, 0xba, 0x79, 0xd3, 0x44, 0x57, 0xee, 0xf0, 0x05, 0x39, 0xa6, 0xba, 0xbf, 0x67, 0xb6, - 0x9b, 0x29, 0xf7, 0xde, 0xed, 0x1e, 0x6d, 0xf6, 0x17, 0x2c, 0x80, 0x38, 0xc8, 0x7c, 0x17, 0x29, - 0x25, 0x5f, 0xa6, 0xd7, 0x1a, 0x3f, 0xf2, 0x6b, 0x7e, 0x43, 0x18, 0x28, 0xce, 0xc6, 0x56, 0x42, - 0x0e, 0x3f, 0xd0, 0x7e, 0x63, 0x45, 0x8d, 0xca, 0x32, 0xa4, 0x65, 0x31, 0xb6, 0x5b, 0x1b, 0xe1, - 0x2c, 0xbf, 0x64, 0xc1, 0x89, 0x2c, 0x97, 0x78, 0x7a, 0x49, 0xe6, 0x6a, 0x4e, 0xe5, 0x6d, 0xa8, - 0x46, 0xf3, 0x96, 0x80, 0x63, 0x45, 0xd1, 0x75, 0xae, 0xce, 0xc3, 0x45, 0x77, 0xbf, 0x01, 0xc3, - 0x95, 0x80, 0x68, 0xf2, 0xc5, 0x6b, 0x3c, 0x4c, 0x0a, 0x6f, 0xcf, 0xb3, 0x87, 0x0e, 0x91, 0x62, - 0x7f, 0xb9, 0x00, 0x27, 0xb8, 0xd3, 0xce, 0xcc, 0xae, 0xef, 0xd6, 0x2b, 0x7e, 0x5d, 0x3c, 0x64, - 0x7c, 0x13, 0x86, 0x9a, 0x9a, 0x6e, 0xba, 0x5d, 0xa4, 0x62, 0x5d, 0x87, 0x1d, 0x6b, 0xd3, 0x74, - 0x28, 0x36, 0x78, 0xa1, 0x3a, 0x0c, 0x91, 0x5d, 0xb7, 0xa6, 0x3c, 0x3f, 0x0a, 0x87, 0x3e, 0xa4, - 0x55, 0x2d, 0x0b, 0x1a, 0x1f, 0x6c, 0x70, 0x7d, 0x08, 0x19, 0xf4, 0xed, 0x1f, 0xb5, 0xe0, 0x74, - 0x4e, 0x5c, 0x63, 0x5a, 0xdd, 0x1d, 0xe6, 0x1e, 0x25, 0xa6, 0xad, 0xaa, 0x8e, 0x3b, 0x4d, 0x61, - 0x81, 0x45, 0x1f, 0x03, 0xe0, 0x4e, 0x4f, 0xc4, 0xab, 0x75, 0x0c, 0x00, 0x6b, 0xc4, 0xae, 0xd4, - 0xc2, 0x10, 0xca, 0xf2, 0x58, 0xe3, 0x65, 0x7f, 0xa9, 0x07, 0x7a, 0x99, 0x93, 0x0d, 0xaa, 0x40, - 0xff, 0x16, 0xcf, 0x54, 0xd5, 0x76, 0xdc, 0x28, 0xad, 0x4c, 0x7e, 0x15, 0x8f, 0x9b, 0x06, 0xc5, - 0x92, 0x0d, 0x5a, 0x81, 0x09, 0x9e, 0x30, 0xac, 0x31, 0x4f, 0x1a, 0xce, 0x9e, 0x54, 0xfb, 0xf2, - 0x1c, 0xd8, 0x4a, 0xfd, 0xbd, 0x94, 0x26, 0xc1, 0x59, 0xe5, 0xd0, 0x6b, 0x30, 0x42, 0xaf, 0xe1, - 0x7e, 0x2b, 0x92, 0x9c, 0x78, 0xaa, 0x30, 0x75, 0x33, 0x59, 0x33, 0xb0, 0x38, 0x41, 0x8d, 0x5e, - 0x85, 0xe1, 0x66, 0x4a, 0xc1, 0xdd, 0x1b, 0x6b, 0x82, 0x4c, 0xa5, 0xb6, 0x49, 0xcb, 0xbc, 0xe2, - 0x5b, 0xec, 0x0d, 0xc0, 0xda, 0x56, 0x40, 0xc2, 0x2d, 0xbf, 0x51, 0x67, 0x12, 0x70, 0xaf, 0xe6, - 0x15, 0x9f, 0xc0, 0xe3, 0x54, 0x09, 0xca, 0x65, 0xc3, 0x71, 0x1b, 0xad, 0x80, 0xc4, 0x5c, 0xfa, - 0x4c, 0x2e, 0x8b, 0x09, 0x3c, 0x4e, 0x95, 0xe8, 0xac, 0xb9, 0xef, 0x3f, 0x1a, 0xcd, 0xbd, 0xfd, - 0xd3, 0x05, 0x30, 0x86, 0xf6, 0xdb, 0x37, 0x85, 0x19, 0xfd, 0xb2, 0xcd, 0xa0, 0x59, 0x13, 0x0e, - 0x65, 0x99, 0x5f, 0x16, 0xe7, 0x2f, 0xe6, 0x5f, 0x46, 0xff, 0x63, 0x56, 0x8a, 0xae, 0xf1, 0x93, - 0x95, 0xc0, 0xa7, 0x87, 0x9c, 0x0c, 0xa4, 0xa7, 0x1e, 0x9f, 0xf4, 0xcb, 0x20, 0x03, 0x6d, 0x42, - 0xce, 0x0a, 0xf7, 0x7c, 0xce, 0xc1, 0xf0, 0xbd, 0xaa, 0x8a, 0x68, 0x1f, 0x92, 0x0b, 0xba, 0x02, - 0x83, 0x22, 0x2f, 0x15, 0x7b, 0x23, 0xc1, 0x17, 0x13, 0xf3, 0x15, 0x9b, 0x8f, 0xc1, 0x58, 0xa7, - 0xb1, 0x7f, 0xa0, 0x00, 0x13, 0x19, 0x8f, 0xdc, 0xf8, 0x31, 0xb2, 0xe9, 0x86, 0x91, 0x4a, 0x91, - 0xac, 0x1d, 0x23, 0x1c, 0x8e, 0x15, 0x05, 0xdd, 0xab, 0xf8, 0x41, 0x95, 0x3c, 0x9c, 0xc4, 0x23, - 0x12, 0x81, 0x3d, 0x64, 0xb2, 0xe1, 0x0b, 0xd0, 0xd3, 0x0a, 0x89, 0x0c, 0x16, 0xad, 0x8e, 0x6d, - 0x66, 0xd6, 0x66, 0x18, 0x7a, 0x05, 0xdc, 0x54, 0x16, 0x62, 0xed, 0x0a, 0xc8, 0x6d, 0xc4, 0x1c, - 0x47, 0x1b, 0x17, 0x11, 0xcf, 0xf1, 0x22, 0x71, 0x51, 0x8c, 0xa3, 0x9e, 0x32, 0x28, 0x16, 0x58, - 0xfb, 0x8b, 0x45, 0x38, 0x93, 0xfb, 0xec, 0x95, 0x36, 0x7d, 0xc7, 0xf7, 0xdc, 0xc8, 0x57, 0x4e, - 0x78, 0x3c, 0xd2, 0x29, 0x69, 0x6e, 0xad, 0x08, 0x38, 0x56, 0x14, 0xe8, 0x22, 0xf4, 0x32, 0xa5, - 0x78, 0x2a, 0x59, 0xf4, 0xec, 0x3c, 0x0f, 0x7d, 0xc7, 0xd1, 0x5d, 0xe7, 0xf7, 0x7f, 0x8c, 0x4a, - 0x30, 0x7e, 0x23, 0x79, 0xa0, 0xd0, 0xe6, 0xfa, 0x7e, 0x03, 0x33, 0x24, 0x7a, 0x42, 0xf4, 0x57, - 0xc2, 0xeb, 0x0c, 0x3b, 0x75, 0x3f, 0xd4, 0x3a, 0xed, 0x29, 0xe8, 0xdf, 0x26, 0x7b, 0x81, 0xeb, - 0x6d, 0x26, 0xbd, 0x11, 0xaf, 0x73, 0x30, 0x96, 0x78, 0x33, 0x6f, 0x69, 0xff, 0x51, 0x27, 0xe6, - 0x1f, 0xe8, 0x28, 0x9e, 0xfc, 0x50, 0x11, 0x46, 0xf1, 0xec, 0xfc, 0x7b, 0x03, 0x71, 0x33, 0x3d, - 0x10, 0x47, 0x9d, 0x98, 0xbf, 0xf3, 0x68, 0xfc, 0xa2, 0x05, 0xa3, 0x2c, 0x3b, 0x96, 0x88, 0x59, - 0xe1, 0xfa, 0xde, 0x31, 0x5c, 0x05, 0x1e, 0x83, 0xde, 0x80, 0x56, 0x9a, 0xcc, 0x12, 0xcd, 0x5a, - 0x82, 0x39, 0x0e, 0x9d, 0x85, 0x1e, 0xd6, 0x04, 0x3a, 0x78, 0x43, 0x7c, 0x0b, 0x9e, 0x77, 0x22, - 0x07, 0x33, 0x28, 0x0b, 0xfc, 0x86, 0x49, 0xb3, 0xe1, 0xf2, 0x46, 0xc7, 0x2e, 0x0b, 0xef, 0x8e, - 0x80, 0x18, 0x99, 0x4d, 0x7b, 0x67, 0x81, 0xdf, 0xb2, 0x59, 0xb6, 0xbf, 0x66, 0xff, 0x79, 0x01, - 0xce, 0x67, 0x96, 0xeb, 0x3a, 0xf0, 0x5b, 0xfb, 0xd2, 0x0f, 0x33, 0xff, 0x51, 0xf1, 0x18, 0x7d, - 0xbd, 0x7b, 0xba, 0x95, 0xfe, 0x7b, 0xbb, 0x88, 0xc7, 0x96, 0xd9, 0x65, 0xef, 0x92, 0x78, 0x6c, - 0x99, 0x6d, 0xcb, 0x51, 0x13, 0xfc, 0x75, 0x21, 0xe7, 0x5b, 0x98, 0xc2, 0xe0, 0x12, 0xdd, 0x67, - 0x18, 0x32, 0x94, 0x97, 0x70, 0xbe, 0xc7, 0x70, 0x18, 0x56, 0x58, 0x34, 0x03, 0xa3, 0x3b, 0xae, - 0x47, 0x37, 0x9f, 0x3d, 0x53, 0x14, 0x57, 0xb6, 0x8c, 0x15, 0x13, 0x8d, 0x93, 0xf4, 0xc8, 0xd5, - 0x62, 0xb5, 0xf1, 0xaf, 0x7b, 0xf5, 0x50, 0xab, 0x6e, 0xda, 0x74, 0xe7, 0x50, 0xbd, 0x98, 0x11, - 0xb7, 0x6d, 0x45, 0xd3, 0x13, 0x15, 0xbb, 0xd7, 0x13, 0x0d, 0x65, 0xeb, 0x88, 0xa6, 0x5e, 0x85, - 0xe1, 0x07, 0xb6, 0x8d, 0xd8, 0x5f, 0x2f, 0xc2, 0x23, 0x6d, 0x96, 0x3d, 0xdf, 0xeb, 0x8d, 0x31, - 0xd0, 0xf6, 0xfa, 0xd4, 0x38, 0x54, 0xe0, 0xc4, 0x46, 0xab, 0xd1, 0xd8, 0x63, 0x4f, 0xa0, 0x48, - 0x5d, 0x52, 0x08, 0x99, 0x52, 0x2a, 0x47, 0x4e, 0x2c, 0x66, 0xd0, 0xe0, 0xcc, 0x92, 0xf4, 0x8a, - 0x45, 0x4f, 0x92, 0x3d, 0xc5, 0x2a, 0x71, 0xc5, 0xc2, 0x3a, 0x12, 0x9b, 0xb4, 0xe8, 0x2a, 0x8c, - 0x3b, 0xbb, 0x8e, 0xcb, 0x03, 0xde, 0x4b, 0x06, 0xfc, 0x8e, 0xa5, 0x74, 0xd1, 0x33, 0x49, 0x02, - 0x9c, 0x2e, 0x83, 0x5e, 0x07, 0xe4, 0xaf, 0xb3, 0x87, 0x12, 0xf5, 0xab, 0xc4, 0x13, 0x56, 0x77, - 0x36, 0x76, 0xc5, 0x78, 0x4b, 0xb8, 0x91, 0xa2, 0xc0, 0x19, 0xa5, 0x12, 0x81, 0xc9, 0xfa, 0xf2, - 0x03, 0x93, 0xb5, 0xdf, 0x17, 0x3b, 0xa6, 0xde, 0xba, 0x02, 0xc3, 0x87, 0x74, 0xff, 0xb5, 0xff, - 0x8d, 0x05, 0x4a, 0x41, 0x6c, 0x46, 0xfd, 0x7d, 0x95, 0xf9, 0x27, 0x73, 0xd5, 0xb6, 0x16, 0x2d, - 0xe9, 0xa4, 0xe6, 0x9f, 0x1c, 0x23, 0xb1, 0x49, 0xcb, 0xe7, 0x90, 0xe6, 0x57, 0x6c, 0xdc, 0x0a, - 0x44, 0x68, 0x42, 0x45, 0x81, 0x3e, 0x0e, 0xfd, 0x75, 0x77, 0xd7, 0x0d, 0x85, 0x72, 0xec, 0xd0, - 0xc6, 0xb8, 0x78, 0xeb, 0x9c, 0xe7, 0x6c, 0xb0, 0xe4, 0x67, 0xff, 0x50, 0x21, 0xee, 0x93, 0x37, - 0x5a, 0x7e, 0xe4, 0x1c, 0xc3, 0x49, 0x7e, 0xd5, 0x38, 0xc9, 0x9f, 0x68, 0x17, 0x9f, 0x91, 0x35, - 0x29, 0xf7, 0x04, 0xbf, 0x91, 0x38, 0xc1, 0x9f, 0xec, 0xcc, 0xaa, 0xfd, 0xc9, 0xfd, 0x0f, 0x2c, - 0x18, 0x37, 0xe8, 0x8f, 0xe1, 0x00, 0x59, 0x34, 0x0f, 0x90, 0x47, 0x3b, 0x7e, 0x43, 0xce, 0xc1, - 0xf1, 0xbd, 0xc5, 0x44, 0xdb, 0xd9, 0x81, 0xf1, 0x36, 0xf4, 0x6c, 0x39, 0x41, 0xbd, 0x5d, 0x3e, - 0x9a, 0x54, 0xa1, 0xe9, 0x6b, 0x4e, 0x20, 0x3c, 0x15, 0x9e, 0x95, 0xbd, 0x4e, 0x41, 0x1d, 0xbd, - 0x14, 0x58, 0x55, 0xe8, 0x65, 0xe8, 0x0b, 0x6b, 0x7e, 0x53, 0xbd, 0x99, 0xba, 0xc0, 0x3a, 0x9a, - 0x41, 0x0e, 0xf6, 0xcb, 0xc8, 0xac, 0x8e, 0x82, 0xb1, 0xa0, 0x47, 0x6f, 0xc2, 0x30, 0xfb, 0xa5, - 0xdc, 0x06, 0x8b, 0xf9, 0x1a, 0x8c, 0xaa, 0x4e, 0xc8, 0x7d, 0x6a, 0x0d, 0x10, 0x36, 0x59, 0x4d, - 0x6d, 0x42, 0x49, 0x7d, 0xd6, 0x43, 0xb5, 0x76, 0xff, 0xab, 0x22, 0x4c, 0x64, 0xcc, 0x39, 0x14, - 0x1a, 0x23, 0x71, 0xa5, 0xcb, 0xa9, 0xfa, 0x0e, 0xc7, 0x22, 0x64, 0x17, 0xa8, 0xba, 0x98, 0x5b, - 0x5d, 0x57, 0x7a, 0x33, 0x24, 0xc9, 0x4a, 0x29, 0xa8, 0x73, 0xa5, 0xb4, 0xb2, 0x63, 0xeb, 0x6a, - 0x5a, 0x91, 0x6a, 0xe9, 0x43, 0x1d, 0xd3, 0x5f, 0xef, 0x81, 0x13, 0x59, 0x21, 0x63, 0xd1, 0x67, - 0x13, 0xd9, 0x90, 0x5f, 0xec, 0x36, 0xd8, 0x2c, 0x4f, 0x91, 0x2c, 0xc2, 0x40, 0x4e, 0x9b, 0xf9, - 0x91, 0x3b, 0x76, 0xb3, 0xa8, 0x93, 0x05, 0xa0, 0x09, 0x78, 0x16, 0x6b, 0xb9, 0x7d, 0x7c, 0xa0, - 0xeb, 0x06, 0x88, 0xf4, 0xd7, 0x61, 0xc2, 0x25, 0x49, 0x82, 0x3b, 0xbb, 0x24, 0xc9, 0x9a, 0xd1, - 0x12, 0xf4, 0xd5, 0xb8, 0xaf, 0x4b, 0xb1, 0xf3, 0x16, 0xc6, 0x1d, 0x5d, 0xd4, 0x06, 0x2c, 0x1c, - 0x5c, 0x04, 0x83, 0x29, 0x17, 0x06, 0xb5, 0x8e, 0x79, 0xa8, 0x93, 0x67, 0x9b, 0x1e, 0x7c, 0x5a, - 0x17, 0x3c, 0xd4, 0x09, 0xf4, 0xa3, 0x16, 0x24, 0x1e, 0xbc, 0x28, 0xa5, 0x9c, 0x95, 0xab, 0x94, - 0xbb, 0x00, 0x3d, 0x81, 0xdf, 0x20, 0xc9, 0x0c, 0xc4, 0xd8, 0x6f, 0x10, 0xcc, 0x30, 0x94, 0x22, - 0x8a, 0x55, 0x2d, 0x43, 0xfa, 0x35, 0x52, 0x5c, 0x10, 0x1f, 0x83, 0xde, 0x06, 0xd9, 0x25, 0x8d, - 0x64, 0xa2, 0xb8, 0x65, 0x0a, 0xc4, 0x1c, 0x67, 0xff, 0x62, 0x0f, 0x9c, 0x6b, 0x1b, 0x0d, 0x8a, - 0x5e, 0xc6, 0x36, 0x9d, 0x88, 0xdc, 0x71, 0xf6, 0x92, 0x19, 0x9d, 0xae, 0x72, 0x30, 0x96, 0x78, - 0xf6, 0xfc, 0x93, 0x27, 0x66, 0x48, 0xa8, 0x30, 0x45, 0x3e, 0x06, 0x81, 0x35, 0x55, 0x62, 0xc5, - 0xa3, 0x50, 0x89, 0x3d, 0x0f, 0x10, 0x86, 0x0d, 0xee, 0x16, 0x58, 0x17, 0xef, 0x4a, 0xe3, 0x04, - 0x1e, 0xd5, 0x65, 0x81, 0xc1, 0x1a, 0x15, 0x9a, 0x87, 0xb1, 0x66, 0xe0, 0x47, 0x5c, 0x23, 0x3c, - 0xcf, 0x3d, 0x67, 0x7b, 0xcd, 0x40, 0x3c, 0x95, 0x04, 0x1e, 0xa7, 0x4a, 0xa0, 0x97, 0x60, 0x50, - 0x04, 0xe7, 0xa9, 0xf8, 0x7e, 0x43, 0x28, 0xa1, 0x94, 0x33, 0x69, 0x35, 0x46, 0x61, 0x9d, 0x4e, - 0x2b, 0xc6, 0xd4, 0xcc, 0xfd, 0x99, 0xc5, 0xb8, 0xaa, 0x59, 0xa3, 0x4b, 0x44, 0xa2, 0x1e, 0xe8, - 0x2a, 0x12, 0x75, 0xac, 0x96, 0x2b, 0x75, 0x6d, 0xf5, 0x84, 0x8e, 0x8a, 0xac, 0xaf, 0xf4, 0xc0, - 0x84, 0x98, 0x38, 0x0f, 0x7b, 0xba, 0xdc, 0x4c, 0x4f, 0x97, 0xa3, 0x50, 0xdc, 0xbd, 0x37, 0x67, - 0x8e, 0x7b, 0xce, 0xfc, 0xb0, 0x05, 0xa6, 0xa4, 0x86, 0xfe, 0xb7, 0xdc, 0x94, 0x78, 0x2f, 0xe5, - 0x4a, 0x7e, 0x71, 0x94, 0xdf, 0x77, 0x96, 0x1c, 0xcf, 0xfe, 0xd7, 0x16, 0x3c, 0xda, 0x91, 0x23, - 0x5a, 0x80, 0x12, 0x13, 0x27, 0xb5, 0x8b, 0xde, 0x93, 0xca, 0xb3, 0x5e, 0x22, 0x72, 0xa4, 0xdb, - 0xb8, 0x24, 0x5a, 0x48, 0xe5, 0x1e, 0x7c, 0x2a, 0x23, 0xf7, 0xe0, 0x49, 0xa3, 0x7b, 0x1e, 0x30, - 0xf9, 0xe0, 0x0f, 0xd2, 0x13, 0xc7, 0x78, 0xd5, 0x86, 0x3e, 0x60, 0x28, 0x1d, 0xed, 0x84, 0xd2, - 0x11, 0x99, 0xd4, 0xda, 0x19, 0xf2, 0x51, 0x18, 0x63, 0x51, 0xfb, 0xd8, 0x3b, 0x0f, 0xf1, 0xde, - 0xae, 0x10, 0xfb, 0x72, 0x2f, 0x27, 0x70, 0x38, 0x45, 0x6d, 0xff, 0x69, 0x11, 0xfa, 0xf8, 0xf2, - 0x3b, 0x86, 0xeb, 0xe5, 0x33, 0x50, 0x72, 0x77, 0x76, 0x5a, 0x3c, 0x9d, 0x5c, 0x6f, 0xec, 0x19, - 0xbc, 0x24, 0x81, 0x38, 0xc6, 0xa3, 0x45, 0xa1, 0xef, 0x6e, 0x13, 0x18, 0x98, 0x37, 0x7c, 0x7a, - 0xde, 0x89, 0x1c, 0x2e, 0x2b, 0xa9, 0x73, 0x36, 0xd6, 0x8c, 0xa3, 0x4f, 0x01, 0x84, 0x51, 0xe0, - 0x7a, 0x9b, 0x14, 0x26, 0x62, 0xab, 0x3f, 0xdd, 0x86, 0x5b, 0x55, 0x11, 0x73, 0x9e, 0xf1, 0x9e, - 0xa3, 0x10, 0x58, 0xe3, 0x88, 0xa6, 0x8d, 0x93, 0x7e, 0x2a, 0x31, 0x76, 0xc0, 0xb9, 0xc6, 0x63, - 0x36, 0xf5, 0x41, 0x28, 0x29, 0xe6, 0x9d, 0xb4, 0x5f, 0x43, 0xba, 0x58, 0xf4, 0x11, 0x18, 0x4d, - 0xb4, 0xed, 0x50, 0xca, 0xb3, 0x5f, 0xb2, 0x60, 0x94, 0x37, 0x66, 0xc1, 0xdb, 0x15, 0xa7, 0xc1, - 0x3d, 0x38, 0xd1, 0xc8, 0xd8, 0x95, 0xc5, 0xf0, 0x77, 0xbf, 0x8b, 0x2b, 0x65, 0x59, 0x16, 0x16, - 0x67, 0xd6, 0x81, 0x2e, 0xd1, 0x15, 0x47, 0x77, 0x5d, 0xa7, 0x21, 0xe2, 0x1b, 0x0c, 0xf1, 0xd5, - 0xc6, 0x61, 0x58, 0x61, 0xed, 0x3f, 0xb0, 0x60, 0x9c, 0xb7, 0xfc, 0x3a, 0xd9, 0x53, 0x7b, 0xd3, - 0x37, 0xb3, 0xed, 0x22, 0x91, 0x69, 0x21, 0x27, 0x91, 0xa9, 0xfe, 0x69, 0xc5, 0xb6, 0x9f, 0xf6, - 0x65, 0x0b, 0xc4, 0x0c, 0x39, 0x06, 0x7d, 0xc6, 0x77, 0x98, 0xfa, 0x8c, 0xa9, 0xfc, 0x45, 0x90, - 0xa3, 0xc8, 0xf8, 0x2b, 0x0b, 0xc6, 0x38, 0x41, 0x6c, 0xab, 0xff, 0xa6, 0x8e, 0xc3, 0xac, 0xf9, - 0x45, 0x99, 0xce, 0x97, 0xd7, 0xc9, 0xde, 0x9a, 0x5f, 0x71, 0xa2, 0xad, 0xec, 0x8f, 0x32, 0x06, - 0xab, 0xa7, 0xed, 0x60, 0xd5, 0xe5, 0x02, 0x32, 0xf2, 0x7c, 0x75, 0x08, 0x10, 0x70, 0xd8, 0x3c, - 0x5f, 0xf6, 0x9f, 0x59, 0x80, 0x78, 0x35, 0x86, 0xe0, 0x46, 0xc5, 0x21, 0x06, 0xd5, 0x0e, 0xba, - 0x78, 0x6b, 0x52, 0x18, 0xac, 0x51, 0x1d, 0x49, 0xf7, 0x24, 0x1c, 0x2e, 0x8a, 0x9d, 0x1d, 0x2e, - 0x0e, 0xd1, 0xa3, 0xff, 0xac, 0x0f, 0x92, 0x2f, 0xfb, 0xd0, 0x2d, 0x18, 0xaa, 0x39, 0x4d, 0x67, - 0xdd, 0x6d, 0xb8, 0x91, 0x4b, 0xc2, 0x76, 0xde, 0x58, 0x73, 0x1a, 0x9d, 0x30, 0x91, 0x6b, 0x10, - 0x6c, 0xf0, 0x41, 0xd3, 0x00, 0xcd, 0xc0, 0xdd, 0x75, 0x1b, 0x64, 0x93, 0xa9, 0x5d, 0x58, 0x44, - 0x15, 0xee, 0x1a, 0x26, 0xa1, 0x58, 0xa3, 0xc8, 0x08, 0xa3, 0x50, 0x7c, 0xc8, 0x61, 0x14, 0xe0, - 0xd8, 0xc2, 0x28, 0xf4, 0x1c, 0x2a, 0x8c, 0xc2, 0xc0, 0xa1, 0xc3, 0x28, 0xf4, 0x76, 0x15, 0x46, - 0x01, 0xc3, 0x29, 0x29, 0x7b, 0xd2, 0xff, 0x8b, 0x6e, 0x83, 0x88, 0x0b, 0x07, 0x0f, 0x03, 0x33, - 0x75, 0x7f, 0xbf, 0x7c, 0x0a, 0x67, 0x52, 0xe0, 0x9c, 0x92, 0xe8, 0x63, 0x30, 0xe9, 0x34, 0x1a, - 0xfe, 0x1d, 0x35, 0xa8, 0x0b, 0x61, 0xcd, 0x69, 0x70, 0x13, 0x48, 0x3f, 0xe3, 0x7a, 0xf6, 0xfe, - 0x7e, 0x79, 0x72, 0x26, 0x87, 0x06, 0xe7, 0x96, 0x46, 0x1f, 0x86, 0x52, 0x33, 0xf0, 0x6b, 0x2b, - 0xda, 0xf3, 0xe3, 0xf3, 0xb4, 0x03, 0x2b, 0x12, 0x78, 0xb0, 0x5f, 0x1e, 0x56, 0x7f, 0xd8, 0x81, - 0x1f, 0x17, 0xc8, 0x88, 0x8b, 0x30, 0x78, 0xa4, 0x71, 0x11, 0xb6, 0x61, 0xa2, 0x4a, 0x02, 0xd7, - 0x69, 0xb8, 0xf7, 0xa8, 0xbc, 0x2c, 0xf7, 0xa7, 0x35, 0x28, 0x05, 0x89, 0x1d, 0xb9, 0xab, 0x60, - 0xbd, 0x5a, 0xc2, 0x25, 0xb9, 0x03, 0xc7, 0x8c, 0xec, 0xff, 0x66, 0x41, 0xbf, 0x78, 0xc9, 0x77, - 0x0c, 0x52, 0xe3, 0x8c, 0x61, 0x94, 0x28, 0x67, 0x77, 0x18, 0x6b, 0x4c, 0xae, 0x39, 0x62, 0x29, - 0x61, 0x8e, 0x78, 0xb4, 0x1d, 0x93, 0xf6, 0x86, 0x88, 0xff, 0xaf, 0x48, 0xa5, 0x77, 0xe3, 0x4d, - 0xf9, 0xc3, 0xef, 0x82, 0x55, 0xe8, 0x0f, 0xc5, 0x9b, 0xe6, 0x42, 0xfe, 0x6b, 0x90, 0xe4, 0x20, - 0xc6, 0x5e, 0x74, 0xe2, 0x15, 0xb3, 0x64, 0x92, 0xf9, 0x58, 0xba, 0xf8, 0x10, 0x1f, 0x4b, 0x77, - 0x7a, 0x75, 0xdf, 0x73, 0x14, 0xaf, 0xee, 0xed, 0xaf, 0xb1, 0x93, 0x53, 0x87, 0x1f, 0x83, 0x50, - 0x75, 0xd5, 0x3c, 0x63, 0xed, 0x36, 0x33, 0x4b, 0x34, 0x2a, 0x47, 0xb8, 0xfa, 0x05, 0x0b, 0xce, - 0x65, 0x7c, 0x95, 0x26, 0x69, 0x3d, 0x0b, 0x03, 0x4e, 0xab, 0xee, 0xaa, 0xb5, 0xac, 0x99, 0x26, - 0x67, 0x04, 0x1c, 0x2b, 0x0a, 0x34, 0x07, 0xe3, 0xe4, 0x6e, 0xd3, 0xe5, 0x86, 0x5c, 0xdd, 0xf9, - 0xb8, 0xc8, 0x9f, 0x7f, 0x2e, 0x24, 0x91, 0x38, 0x4d, 0xaf, 0x02, 0x44, 0x15, 0x73, 0x03, 0x44, - 0xfd, 0xbc, 0x05, 0x83, 0xea, 0x55, 0xef, 0x43, 0xef, 0xed, 0x8f, 0x9a, 0xbd, 0xfd, 0x48, 0x9b, - 0xde, 0xce, 0xe9, 0xe6, 0xdf, 0x2b, 0xa8, 0xf6, 0x56, 0xfc, 0x20, 0xea, 0x42, 0x82, 0x7b, 0xf0, - 0x87, 0x13, 0x57, 0x60, 0xd0, 0x69, 0x36, 0x25, 0x42, 0x7a, 0xc0, 0xb1, 0xd0, 0xeb, 0x31, 0x18, - 0xeb, 0x34, 0xea, 0x1d, 0x47, 0x31, 0xf7, 0x1d, 0x47, 0x1d, 0x20, 0x72, 0x82, 0x4d, 0x12, 0x51, - 0x98, 0x70, 0xd8, 0xcd, 0xdf, 0x6f, 0x5a, 0x91, 0xdb, 0x98, 0x76, 0xbd, 0x28, 0x8c, 0x82, 0xe9, - 0x25, 0x2f, 0xba, 0x11, 0xf0, 0x2b, 0xa4, 0x16, 0x62, 0x4d, 0xf1, 0xc2, 0x1a, 0x5f, 0x19, 0xc1, - 0x82, 0xd5, 0xd1, 0x6b, 0xba, 0x52, 0xac, 0x0a, 0x38, 0x56, 0x14, 0xf6, 0x07, 0xd9, 0xe9, 0xc3, - 0xfa, 0xf4, 0x70, 0xe1, 0xc5, 0x7e, 0x72, 0x48, 0x8d, 0x06, 0x33, 0x8a, 0xce, 0xeb, 0x41, 0xcc, - 0xda, 0x6f, 0xf6, 0xb4, 0x62, 0xfd, 0x45, 0x64, 0x1c, 0xe9, 0x0c, 0x7d, 0x22, 0xe5, 0x1e, 0xf3, - 0x5c, 0x87, 0x53, 0xe3, 0x10, 0x0e, 0x31, 0x2c, 0x0f, 0x13, 0xcb, 0x52, 0xb3, 0x54, 0x11, 0xeb, - 0x42, 0xcb, 0xc3, 0x24, 0x10, 0x38, 0xa6, 0xa1, 0xc2, 0x94, 0xfa, 0x13, 0x4e, 0xa2, 0x38, 0x16, - 0xb0, 0xa2, 0x0e, 0xb1, 0x46, 0x81, 0x2e, 0x0b, 0x85, 0x02, 0xb7, 0x0b, 0x3c, 0x92, 0x50, 0x28, - 0xc8, 0xee, 0xd2, 0xb4, 0x40, 0x57, 0x60, 0x90, 0xdc, 0x8d, 0x48, 0xe0, 0x39, 0x0d, 0x5a, 0x43, - 0x6f, 0x1c, 0x3f, 0x73, 0x21, 0x06, 0x63, 0x9d, 0x06, 0xad, 0xc1, 0x68, 0xc8, 0xf5, 0x6c, 0x2a, - 0x48, 0x3c, 0xd7, 0x57, 0x3e, 0xad, 0xde, 0x53, 0x9b, 0xe8, 0x03, 0x06, 0xe2, 0xbb, 0x93, 0x8c, - 0x32, 0x91, 0x64, 0x81, 0x5e, 0x83, 0x91, 0x86, 0xef, 0xd4, 0x67, 0x9d, 0x86, 0xe3, 0xd5, 0x58, - 0xff, 0x0c, 0x98, 0x89, 0xa8, 0x97, 0x0d, 0x2c, 0x4e, 0x50, 0x53, 0xe1, 0x4d, 0x87, 0x88, 0x30, - 0x6d, 0x8e, 0xb7, 0x49, 0x42, 0x91, 0x0f, 0x9e, 0x09, 0x6f, 0xcb, 0x39, 0x34, 0x38, 0xb7, 0x34, - 0x7a, 0x19, 0x86, 0xe4, 0xe7, 0x6b, 0x41, 0x59, 0xe2, 0x27, 0x31, 0x1a, 0x0e, 0x1b, 0x94, 0x28, - 0x84, 0x93, 0xf2, 0xff, 0x5a, 0xe0, 0x6c, 0x6c, 0xb8, 0x35, 0x11, 0xa9, 0x80, 0x3f, 0x1f, 0xfe, - 0x88, 0x7c, 0xab, 0xb8, 0x90, 0x45, 0x74, 0xb0, 0x5f, 0x3e, 0x2b, 0x7a, 0x2d, 0x13, 0x8f, 0xb3, - 0x79, 0xa3, 0x15, 0x98, 0xd8, 0x22, 0x4e, 0x23, 0xda, 0x9a, 0xdb, 0x22, 0xb5, 0x6d, 0xb9, 0xe0, - 0x58, 0x98, 0x17, 0xed, 0xe9, 0xc8, 0xb5, 0x34, 0x09, 0xce, 0x2a, 0x87, 0xde, 0x82, 0xc9, 0x66, - 0x6b, 0xbd, 0xe1, 0x86, 0x5b, 0xab, 0x7e, 0xc4, 0x9c, 0x90, 0x66, 0xea, 0xf5, 0x80, 0x84, 0xfc, - 0x75, 0x29, 0x3b, 0x7a, 0x65, 0x20, 0x9d, 0x4a, 0x0e, 0x1d, 0xce, 0xe5, 0x80, 0xee, 0xc1, 0xc9, - 0xc4, 0x44, 0x10, 0x11, 0x31, 0x46, 0xf2, 0x53, 0xc4, 0x54, 0xb3, 0x0a, 0x88, 0xe0, 0x32, 0x59, - 0x28, 0x9c, 0x5d, 0x05, 0x7a, 0x05, 0xc0, 0x6d, 0x2e, 0x3a, 0x3b, 0x6e, 0x83, 0x5e, 0x15, 0x27, - 0xd8, 0x1c, 0xa1, 0xd7, 0x06, 0x58, 0xaa, 0x48, 0x28, 0xdd, 0x9b, 0xc5, 0xbf, 0x3d, 0xac, 0x51, - 0xa3, 0x65, 0x18, 0x11, 0xff, 0xf6, 0xc4, 0x90, 0xf2, 0xc0, 0x2c, 0x8f, 0xb3, 0xa8, 0x5a, 0x15, - 0x1d, 0x73, 0x90, 0x82, 0xe0, 0x44, 0x59, 0xb4, 0x09, 0xe7, 0x64, 0xa2, 0x3f, 0x7d, 0x7e, 0xca, - 0x31, 0x08, 0x59, 0x5e, 0x96, 0x01, 0xfe, 0x2a, 0x65, 0xa6, 0x1d, 0x21, 0x6e, 0xcf, 0x87, 0x9e, - 0xeb, 0xfa, 0x34, 0xe7, 0x6f, 0x8e, 0x4f, 0xc6, 0x11, 0x07, 0x97, 0x93, 0x48, 0x9c, 0xa6, 0x47, - 0x3e, 0x9c, 0x74, 0xbd, 0xac, 0x59, 0x7d, 0x8a, 0x31, 0xfa, 0x10, 0x7f, 0x6e, 0xdd, 0x7e, 0x46, - 0x67, 0xe2, 0x71, 0x36, 0xdf, 0x77, 0xe6, 0xf7, 0xf7, 0xfb, 0x16, 0x2d, 0xad, 0x49, 0xe7, 0xe8, - 0xd3, 0x30, 0xa4, 0x7f, 0x94, 0x90, 0x34, 0x2e, 0x66, 0x0b, 0xaf, 0xda, 0x9e, 0xc0, 0x65, 0x7b, - 0xb5, 0xee, 0x75, 0x1c, 0x36, 0x38, 0xa2, 0x5a, 0x46, 0x6c, 0x83, 0xcb, 0xdd, 0x49, 0x32, 0xdd, - 0xbb, 0xbd, 0x11, 0xc8, 0x9e, 0xee, 0x68, 0x19, 0x06, 0x6a, 0x0d, 0x97, 0x78, 0xd1, 0x52, 0xa5, - 0x5d, 0xf4, 0xc6, 0x39, 0x41, 0x23, 0xd6, 0x8f, 0x48, 0xb1, 0xc2, 0x61, 0x58, 0x71, 0xb0, 0x7f, - 0xb3, 0x00, 0xe5, 0x0e, 0xf9, 0x7a, 0x12, 0x66, 0x28, 0xab, 0x2b, 0x33, 0xd4, 0x0c, 0x8c, 0xc6, - 0xff, 0x74, 0x0d, 0x97, 0xf2, 0x64, 0xbd, 0x65, 0xa2, 0x71, 0x92, 0xbe, 0xeb, 0x47, 0x09, 0xba, - 0x25, 0xab, 0xa7, 0xe3, 0xb3, 0x1a, 0xc3, 0x82, 0xdd, 0xdb, 0xfd, 0xb5, 0x37, 0xd7, 0x1a, 0x69, - 0x7f, 0xad, 0x00, 0x27, 0x55, 0x17, 0x7e, 0xfb, 0x76, 0xdc, 0xcd, 0x74, 0xc7, 0x1d, 0x81, 0x2d, - 0xd7, 0xbe, 0x01, 0x7d, 0x3c, 0x1c, 0x65, 0x17, 0xe2, 0xf6, 0x63, 0x66, 0x94, 0x6c, 0x25, 0xe1, - 0x19, 0x91, 0xb2, 0xbf, 0xdf, 0x82, 0xd1, 0xc4, 0xeb, 0x36, 0x84, 0xb5, 0x27, 0xd0, 0x0f, 0x22, - 0x12, 0x67, 0x09, 0xdb, 0x17, 0xa0, 0x67, 0xcb, 0x0f, 0xa3, 0xa4, 0xa3, 0xc7, 0x35, 0x3f, 0x8c, - 0x30, 0xc3, 0xd8, 0x7f, 0x68, 0x41, 0xef, 0x9a, 0xe3, 0x7a, 0x91, 0x34, 0x0a, 0x58, 0x39, 0x46, - 0x81, 0x6e, 0xbe, 0x0b, 0xbd, 0x04, 0x7d, 0x64, 0x63, 0x83, 0xd4, 0x22, 0x31, 0xaa, 0x32, 0x14, - 0x42, 0xdf, 0x02, 0x83, 0x52, 0xf9, 0x8f, 0x55, 0xc6, 0xff, 0x62, 0x41, 0x8c, 0x6e, 0x43, 0x29, - 0x72, 0x77, 0xc8, 0x4c, 0xbd, 0x2e, 0x4c, 0xe5, 0x0f, 0x10, 0xbf, 0x63, 0x4d, 0x32, 0xc0, 0x31, - 0x2f, 0xfb, 0x8b, 0x05, 0x80, 0x38, 0x8e, 0x57, 0xa7, 0x4f, 0x9c, 0x4d, 0x19, 0x51, 0x2f, 0x66, - 0x18, 0x51, 0x51, 0xcc, 0x30, 0xc3, 0x82, 0xaa, 0xba, 0xa9, 0xd8, 0x55, 0x37, 0xf5, 0x1c, 0xa6, - 0x9b, 0xe6, 0x60, 0x3c, 0x8e, 0x43, 0x66, 0x86, 0x61, 0x64, 0x47, 0xe7, 0x5a, 0x12, 0x89, 0xd3, - 0xf4, 0x36, 0x81, 0x0b, 0x2a, 0x1c, 0x93, 0x38, 0xd1, 0x98, 0x1f, 0xb8, 0x6e, 0x94, 0xee, 0xd0, - 0x4f, 0xb1, 0x95, 0xb8, 0x90, 0x6b, 0x25, 0xfe, 0x09, 0x0b, 0x4e, 0x24, 0xeb, 0x61, 0x8f, 0xa6, - 0xbf, 0x60, 0xc1, 0x49, 0x66, 0x2b, 0x67, 0xb5, 0xa6, 0x2d, 0xf3, 0x2f, 0xb6, 0x0d, 0x31, 0x95, - 0xd3, 0xe2, 0x38, 0xe6, 0xc6, 0x4a, 0x16, 0x6b, 0x9c, 0x5d, 0xa3, 0xfd, 0x5f, 0x7b, 0x60, 0x32, - 0x2f, 0x36, 0x15, 0x7b, 0x26, 0xe2, 0xdc, 0xad, 0x6e, 0x93, 0x3b, 0xc2, 0x19, 0x3f, 0x7e, 0x26, - 0xc2, 0xc1, 0x58, 0xe2, 0x93, 0xe9, 0x4f, 0x0a, 0x5d, 0xa6, 0x3f, 0xd9, 0x82, 0xf1, 0x3b, 0x5b, - 0xc4, 0xbb, 0xe9, 0x85, 0x4e, 0xe4, 0x86, 0x1b, 0x2e, 0xb3, 0x2b, 0xf3, 0x79, 0x23, 0x73, 0x50, - 0x8f, 0xdf, 0x4e, 0x12, 0x1c, 0xec, 0x97, 0xcf, 0x19, 0x80, 0xb8, 0xc9, 0x7c, 0x23, 0xc1, 0x69, - 0xa6, 0xe9, 0xec, 0x31, 0x3d, 0x0f, 0x39, 0x7b, 0xcc, 0x8e, 0x2b, 0xbc, 0x51, 0xe4, 0x1b, 0x00, - 0x76, 0x63, 0x5c, 0x51, 0x50, 0xac, 0x51, 0xa0, 0x4f, 0x02, 0xd2, 0x33, 0x74, 0x19, 0xa1, 0x41, - 0x9f, 0xbb, 0xbf, 0x5f, 0x46, 0xab, 0x29, 0xec, 0xc1, 0x7e, 0x79, 0x82, 0x42, 0x97, 0x3c, 0x7a, - 0xf3, 0x8c, 0xe3, 0xa9, 0x65, 0x30, 0x42, 0xb7, 0x61, 0x8c, 0x42, 0xd9, 0x8a, 0x92, 0x71, 0x47, - 0xf9, 0x6d, 0xf1, 0x99, 0xfb, 0xfb, 0xe5, 0xb1, 0xd5, 0x04, 0x2e, 0x8f, 0x75, 0x8a, 0x09, 0x7a, - 0x05, 0x46, 0xe2, 0x79, 0x75, 0x9d, 0xec, 0xf1, 0x00, 0x3d, 0x25, 0xae, 0xf0, 0x5e, 0x31, 0x30, - 0x38, 0x41, 0x69, 0x7f, 0xc1, 0x82, 0x33, 0xb9, 0x19, 0xf1, 0xd1, 0x25, 0x18, 0x70, 0x9a, 0x2e, - 0x37, 0x5f, 0x88, 0xa3, 0x86, 0xa9, 0xc9, 0x2a, 0x4b, 0xdc, 0x78, 0xa1, 0xb0, 0x74, 0x87, 0xdf, - 0x76, 0xbd, 0x7a, 0x72, 0x87, 0xbf, 0xee, 0x7a, 0x75, 0xcc, 0x30, 0xea, 0xc8, 0x2a, 0xe6, 0x3e, - 0x45, 0xf8, 0x0a, 0x5d, 0xab, 0x19, 0xb9, 0xf3, 0x8f, 0xb7, 0x19, 0xe8, 0x19, 0xdd, 0xd4, 0x28, - 0xbc, 0x0a, 0x73, 0xcd, 0x8c, 0xdf, 0x67, 0x81, 0x78, 0xba, 0xdc, 0xc5, 0x99, 0xfc, 0x26, 0x0c, - 0xed, 0xa6, 0xb3, 0x17, 0x5e, 0xc8, 0x7f, 0xcb, 0x2d, 0x22, 0xae, 0x2b, 0x41, 0xdb, 0xc8, 0x54, - 0x68, 0xf0, 0xb2, 0xeb, 0x20, 0xb0, 0xf3, 0x84, 0x19, 0x14, 0x3a, 0xb7, 0xe6, 0x79, 0x80, 0x3a, - 0xa3, 0x65, 0x29, 0x8d, 0x0b, 0xa6, 0xc4, 0x35, 0xaf, 0x30, 0x58, 0xa3, 0xb2, 0xff, 0x79, 0x01, - 0x06, 0x65, 0xb6, 0xbc, 0x96, 0xd7, 0x8d, 0xda, 0xef, 0x50, 0xe9, 0xb3, 0xd1, 0x65, 0x28, 0x31, - 0xbd, 0x74, 0x25, 0xd6, 0x96, 0x2a, 0xad, 0xd0, 0x8a, 0x44, 0xe0, 0x98, 0x86, 0xee, 0x8e, 0x61, - 0x6b, 0x9d, 0x91, 0x27, 0x1e, 0xda, 0x56, 0x39, 0x18, 0x4b, 0x3c, 0xfa, 0x18, 0x8c, 0xf1, 0x72, - 0x81, 0xdf, 0x74, 0x36, 0xb9, 0x2d, 0xab, 0x57, 0x45, 0x2f, 0x19, 0x5b, 0x49, 0xe0, 0x0e, 0xf6, - 0xcb, 0x27, 0x92, 0x30, 0x66, 0xa4, 0x4d, 0x71, 0x61, 0x2e, 0x6b, 0xbc, 0x12, 0xba, 0xab, 0xa7, - 0x3c, 0xdd, 0x62, 0x14, 0xd6, 0xe9, 0xec, 0x4f, 0x03, 0x4a, 0xe7, 0x0d, 0x44, 0xaf, 0x73, 0x97, - 0x67, 0x37, 0x20, 0xf5, 0x76, 0x46, 0x5b, 0x3d, 0x46, 0x87, 0x7c, 0x23, 0xc7, 0x4b, 0x61, 0x55, - 0xde, 0xfe, 0x3f, 0x8b, 0x30, 0x96, 0x8c, 0x0a, 0x80, 0xae, 0x41, 0x1f, 0x17, 0x29, 0x05, 0xfb, - 0x36, 0x3e, 0x41, 0x5a, 0x2c, 0x01, 0x76, 0xb8, 0x0a, 0xa9, 0x54, 0x94, 0x47, 0x6f, 0xc1, 0x60, - 0xdd, 0xbf, 0xe3, 0xdd, 0x71, 0x82, 0xfa, 0x4c, 0x65, 0x49, 0x4c, 0xe7, 0x4c, 0x45, 0xc5, 0x7c, - 0x4c, 0xa6, 0xc7, 0x27, 0x60, 0xf6, 0xef, 0x18, 0x85, 0x75, 0x76, 0x68, 0x8d, 0x25, 0xfa, 0xd8, - 0x70, 0x37, 0x57, 0x9c, 0x66, 0xbb, 0xf7, 0x2f, 0x73, 0x92, 0x48, 0xe3, 0x3c, 0x2c, 0xb2, 0x81, - 0x70, 0x04, 0x8e, 0x19, 0xa1, 0xcf, 0xc2, 0x44, 0x98, 0x63, 0x3a, 0xc9, 0x4b, 0x23, 0xdb, 0xce, - 0x9a, 0x30, 0x7b, 0xfa, 0xfe, 0x7e, 0x79, 0x22, 0xcb, 0xc8, 0x92, 0x55, 0x8d, 0xfd, 0xa5, 0x13, - 0x60, 0x2c, 0x62, 0x23, 0xab, 0xb8, 0x75, 0x44, 0x59, 0xc5, 0x31, 0x0c, 0x90, 0x9d, 0x66, 0xb4, - 0x37, 0xef, 0x06, 0x62, 0x4c, 0x32, 0x79, 0x2e, 0x08, 0x9a, 0x34, 0x4f, 0x89, 0xc1, 0x8a, 0x4f, - 0x76, 0xea, 0xf7, 0xe2, 0x37, 0x31, 0xf5, 0x7b, 0xcf, 0x31, 0xa6, 0x7e, 0x5f, 0x85, 0xfe, 0x4d, - 0x37, 0xc2, 0xa4, 0xe9, 0x8b, 0xcb, 0x5c, 0xe6, 0x3c, 0xbc, 0xca, 0x49, 0xd2, 0x49, 0x86, 0x05, - 0x02, 0x4b, 0x26, 0xe8, 0x75, 0xb5, 0x02, 0xfb, 0xf2, 0x15, 0x2e, 0x69, 0xe7, 0x95, 0xcc, 0x35, - 0x28, 0x12, 0xbc, 0xf7, 0x3f, 0x68, 0x82, 0xf7, 0x45, 0x99, 0x96, 0x7d, 0x20, 0xff, 0xb1, 0x1a, - 0xcb, 0xba, 0xde, 0x21, 0x19, 0xfb, 0x2d, 0x3d, 0x95, 0x7d, 0x29, 0x7f, 0x27, 0x50, 0x59, 0xea, - 0xbb, 0x4c, 0x60, 0xff, 0x7d, 0x16, 0x9c, 0x4c, 0xa6, 0x9a, 0x65, 0x6f, 0x2a, 0x84, 0x9f, 0xc7, - 0x4b, 0xdd, 0xe4, 0xfe, 0x65, 0x05, 0x8c, 0x0a, 0x99, 0x8e, 0x34, 0x93, 0x0c, 0x67, 0x57, 0x47, - 0x3b, 0x3a, 0x58, 0xaf, 0x0b, 0x7f, 0x83, 0xc7, 0x72, 0x32, 0xe1, 0xb7, 0xc9, 0x7f, 0xbf, 0x96, - 0x91, 0x75, 0xfd, 0xf1, 0xbc, 0xac, 0xeb, 0x5d, 0xe7, 0x5a, 0x7f, 0x5d, 0xe5, 0xc0, 0x1f, 0xce, - 0x9f, 0x4a, 0x3c, 0xc3, 0x7d, 0xc7, 0xcc, 0xf7, 0xaf, 0xab, 0xcc, 0xf7, 0x6d, 0x22, 0x8b, 0xf3, - 0xbc, 0xf6, 0x1d, 0xf3, 0xdd, 0x6b, 0x39, 0xeb, 0x47, 0x8f, 0x26, 0x67, 0xbd, 0x71, 0xd4, 0xf0, - 0xb4, 0xe9, 0xcf, 0x74, 0x38, 0x6a, 0x0c, 0xbe, 0xed, 0x0f, 0x1b, 0x9e, 0x9f, 0x7f, 0xfc, 0x81, - 0xf2, 0xf3, 0xdf, 0xd2, 0xf3, 0xdd, 0xa3, 0x0e, 0x09, 0xdd, 0x29, 0x51, 0x97, 0x59, 0xee, 0x6f, - 0xe9, 0x07, 0xe0, 0x44, 0x3e, 0x5f, 0x75, 0xce, 0xa5, 0xf9, 0x66, 0x1e, 0x81, 0xa9, 0xec, 0xf9, - 0x27, 0x8e, 0x27, 0x7b, 0xfe, 0xc9, 0x23, 0xcf, 0x9e, 0x7f, 0xea, 0x18, 0xb2, 0xe7, 0x9f, 0x3e, - 0xc6, 0xec, 0xf9, 0xb7, 0x98, 0x73, 0x14, 0x0f, 0x00, 0x25, 0x22, 0xa1, 0x3f, 0x95, 0x13, 0x3f, - 0x2d, 0x1d, 0x25, 0x8a, 0x7f, 0x9c, 0x42, 0xe1, 0x98, 0x55, 0x46, 0x56, 0xfe, 0xc9, 0x87, 0x90, - 0x95, 0x7f, 0x35, 0xce, 0xca, 0x7f, 0x26, 0x7f, 0xa8, 0x33, 0x9e, 0xd3, 0xe4, 0xe4, 0xe2, 0xbf, - 0xa5, 0xe7, 0xd0, 0x7f, 0xa4, 0x8d, 0x15, 0x2c, 0x4b, 0xa1, 0xdc, 0x26, 0x73, 0xfe, 0x6b, 0x3c, - 0x73, 0xfe, 0xd9, 0xfc, 0x9d, 0x3c, 0x79, 0xdc, 0x19, 0xf9, 0xf2, 0x69, 0xbb, 0x54, 0xf0, 0x57, - 0x16, 0xf3, 0x3d, 0xa7, 0x5d, 0x2a, 0x7a, 0x6c, 0xba, 0x5d, 0x0a, 0x85, 0x63, 0x56, 0xf6, 0x0f, - 0x14, 0xe0, 0x7c, 0xfb, 0xf5, 0x16, 0x6b, 0xc9, 0x2b, 0xb1, 0x43, 0x40, 0x42, 0x4b, 0xce, 0xef, - 0x6c, 0x31, 0x55, 0xd7, 0xf1, 0x20, 0xaf, 0xc2, 0xb8, 0x7a, 0x87, 0xd3, 0x70, 0x6b, 0x7b, 0xab, - 0xf1, 0x35, 0x59, 0x45, 0x4e, 0xa8, 0x26, 0x09, 0x70, 0xba, 0x0c, 0x9a, 0x81, 0x51, 0x03, 0xb8, - 0x34, 0x2f, 0xee, 0x66, 0x71, 0x94, 0x71, 0x13, 0x8d, 0x93, 0xf4, 0xf6, 0xcf, 0x59, 0x70, 0x3a, - 0x27, 0xe5, 0x6b, 0xd7, 0xe1, 0x0e, 0x37, 0x60, 0xb4, 0x69, 0x16, 0xed, 0x10, 0xa1, 0xd5, 0x48, - 0x2c, 0xab, 0xda, 0x9a, 0x40, 0xe0, 0x24, 0x53, 0xfb, 0x67, 0x0a, 0x70, 0xae, 0xad, 0x63, 0x29, - 0xc2, 0x70, 0x6a, 0x73, 0x27, 0x74, 0xe6, 0x02, 0x52, 0x27, 0x5e, 0xe4, 0x3a, 0x8d, 0x6a, 0x93, - 0xd4, 0x34, 0x3b, 0x07, 0xf3, 0xd0, 0xbc, 0xba, 0x52, 0x9d, 0x49, 0x53, 0xe0, 0x9c, 0x92, 0x68, - 0x11, 0x50, 0x1a, 0x23, 0x46, 0x98, 0x65, 0x0f, 0x48, 0xf3, 0xc3, 0x19, 0x25, 0xd0, 0x07, 0x61, - 0x58, 0x39, 0xac, 0x6a, 0x23, 0xce, 0x36, 0x76, 0xac, 0x23, 0xb0, 0x49, 0x87, 0xae, 0xf0, 0xf4, - 0x13, 0x22, 0x51, 0x89, 0x30, 0x8a, 0x8c, 0xca, 0xdc, 0x12, 0x02, 0x8c, 0x75, 0x9a, 0xd9, 0x97, - 0x7f, 0xeb, 0x1b, 0xe7, 0xdf, 0xf7, 0xbb, 0xdf, 0x38, 0xff, 0xbe, 0x3f, 0xf8, 0xc6, 0xf9, 0xf7, - 0x7d, 0xd7, 0xfd, 0xf3, 0xd6, 0x6f, 0xdd, 0x3f, 0x6f, 0xfd, 0xee, 0xfd, 0xf3, 0xd6, 0x1f, 0xdc, - 0x3f, 0x6f, 0xfd, 0xf1, 0xfd, 0xf3, 0xd6, 0x17, 0xff, 0xe4, 0xfc, 0xfb, 0xde, 0x44, 0x71, 0x00, - 0xd1, 0xcb, 0x74, 0x74, 0x2e, 0xef, 0x5e, 0xf9, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xbd, 0x0b, - 0x0a, 0x3d, 0x91, 0x13, 0x01, 0x00, + 0xec, 0x44, 0xce, 0xec, 0x98, 0x7d, 0x0b, 0x26, 0x96, 0x7d, 0xa7, 0x3e, 0xeb, 0x34, 0x1c, 0xaf, + 0x46, 0x82, 0x25, 0x6f, 0xf3, 0x50, 0x3e, 0xe7, 0x85, 0x8e, 0x3e, 0xe7, 0x2f, 0x43, 0x9f, 0xdb, + 0xd4, 0x22, 0x4e, 0x5f, 0xa0, 0x1d, 0xb8, 0x54, 0x11, 0xc1, 0xa6, 0x91, 0x51, 0x39, 0x83, 0x62, + 0x41, 0x4f, 0x47, 0x9e, 0x3b, 0x7b, 0xf5, 0xe4, 0x8f, 0x3c, 0x95, 0xc1, 0x93, 0x01, 0x9c, 0x0c, + 0xb7, 0xe4, 0x2d, 0x30, 0xaa, 0x10, 0x6f, 0xb6, 0x30, 0xf4, 0xbb, 0xfc, 0x4b, 0xc5, 0xf0, 0x3f, + 0x99, 0x2d, 0x1b, 0xa7, 0x3a, 0x46, 0x7b, 0x8d, 0xc4, 0x01, 0x58, 0x32, 0xb2, 0x5f, 0x86, 0xcc, + 0x80, 0x1b, 0x9d, 0xf5, 0x1e, 0xf6, 0xc7, 0x61, 0x9c, 0x95, 0x3c, 0xa4, 0x4e, 0xc1, 0x4e, 0x68, + 0x6b, 0x33, 0x82, 0x87, 0xda, 0x5f, 0xb0, 0x60, 0x74, 0x35, 0x11, 0x53, 0xf1, 0x22, 0xb3, 0xef, + 0x66, 0x18, 0x09, 0xaa, 0x0c, 0x8a, 0x05, 0xf6, 0xc8, 0x95, 0x68, 0x7f, 0x6d, 0x41, 0x1c, 0x03, + 0xe7, 0x18, 0x04, 0xbf, 0x39, 0x43, 0xf0, 0xcb, 0x14, 0x81, 0x55, 0x73, 0xf2, 0xe4, 0x3e, 0x74, + 0x5d, 0x45, 0x87, 0x6b, 0x23, 0xfd, 0xc6, 0x6c, 0xf8, 0x54, 0x1c, 0x31, 0x43, 0xc8, 0xc9, 0x78, + 0x71, 0xf6, 0xef, 0x17, 0x00, 0x29, 0xda, 0xae, 0xa3, 0xd7, 0xa5, 0x4b, 0x1c, 0x4d, 0xf4, 0xba, + 0x5d, 0x40, 0xcc, 0x43, 0x21, 0x70, 0xbc, 0x90, 0xb3, 0x75, 0x85, 0xda, 0xf0, 0x70, 0xee, 0x0f, + 0x53, 0xf2, 0x39, 0xdb, 0x72, 0x8a, 0x1b, 0xce, 0xa8, 0x41, 0xf3, 0x3c, 0xe9, 0xed, 0xd6, 0xf3, + 0xa4, 0xaf, 0xc3, 0xbb, 0xcc, 0xaf, 0x58, 0x30, 0xac, 0xba, 0xe9, 0x5d, 0xe2, 0xbd, 0xaf, 0xda, + 0x93, 0xb3, 0xf5, 0x56, 0xb4, 0x26, 0xb3, 0x23, 0xe9, 0x3b, 0xd8, 0xfb, 0x5a, 0xa7, 0xe1, 0xde, + 0x23, 0x2a, 0xda, 0x69, 0x59, 0xbc, 0x97, 0x15, 0xd0, 0x83, 0xfd, 0xf2, 0xb0, 0xfa, 0xc7, 0xa3, + 0xb9, 0xc7, 0x45, 0xec, 0x9f, 0xa2, 0x8b, 0xdd, 0x9c, 0x8a, 0xe8, 0x25, 0xe8, 0x6d, 0x6e, 0x39, + 0x21, 0x49, 0xbc, 0x72, 0xea, 0xad, 0x50, 0xe0, 0xc1, 0x7e, 0x79, 0x44, 0x15, 0x60, 0x10, 0xcc, + 0xa9, 0xbb, 0x8f, 0x09, 0x98, 0x9e, 0x9c, 0x1d, 0x63, 0x02, 0xfe, 0xa5, 0x05, 0x3d, 0xab, 0x74, + 0x83, 0x7f, 0xf8, 0x5b, 0xc0, 0x6b, 0xc6, 0x16, 0x70, 0x36, 0x2f, 0xd1, 0x46, 0xee, 0xea, 0x5f, + 0x4c, 0xac, 0xfe, 0xf3, 0xb9, 0x1c, 0xda, 0x2f, 0xfc, 0x1d, 0x18, 0x64, 0xe9, 0x3b, 0xc4, 0x8b, + 0xae, 0x17, 0x8c, 0x05, 0x5f, 0x4e, 0x2c, 0xf8, 0x51, 0x8d, 0x54, 0x5b, 0xe9, 0x4f, 0x41, 0xbf, + 0x78, 0x22, 0x94, 0x7c, 0xa6, 0x2c, 0x68, 0xb1, 0xc4, 0xdb, 0x3f, 0x5e, 0x04, 0x23, 0x5d, 0x08, + 0xfa, 0x55, 0x0b, 0xa6, 0x03, 0xee, 0x3a, 0x5c, 0x9f, 0x6f, 0x05, 0xae, 0xb7, 0x59, 0xad, 0x6d, + 0x91, 0x7a, 0xab, 0xe1, 0x7a, 0x9b, 0x4b, 0x9b, 0x9e, 0xaf, 0xc0, 0x0b, 0x77, 0x49, 0xad, 0xc5, + 0xcc, 0x7a, 0x1d, 0x72, 0x93, 0x28, 0x17, 0xfc, 0xe7, 0xef, 0xef, 0x97, 0xa7, 0xf1, 0xa1, 0x78, + 0xe3, 0x43, 0xb6, 0x05, 0xfd, 0x8e, 0x05, 0x97, 0x79, 0x16, 0x8d, 0xee, 0xdb, 0xdf, 0xe6, 0x9e, + 0x5d, 0x91, 0xac, 0x62, 0x26, 0x6b, 0x24, 0xd8, 0x99, 0xfd, 0xa0, 0xe8, 0xd0, 0xcb, 0x95, 0xc3, + 0xd5, 0x85, 0x0f, 0xdb, 0x38, 0xfb, 0x1f, 0x16, 0x61, 0x58, 0xc4, 0x8e, 0x13, 0x67, 0xc0, 0x4b, + 0xc6, 0x94, 0x78, 0x34, 0x31, 0x25, 0xc6, 0x0d, 0xe2, 0xa3, 0xd9, 0xfe, 0x43, 0x18, 0xa7, 0x9b, + 0xf3, 0x35, 0xe2, 0x04, 0xd1, 0x3a, 0x71, 0xb8, 0x43, 0x59, 0xf1, 0xd0, 0xbb, 0xbf, 0xd2, 0x6c, + 0x2e, 0x27, 0x99, 0xe1, 0x34, 0xff, 0x6f, 0xa7, 0x33, 0xc7, 0x83, 0xb1, 0x54, 0xf8, 0xbf, 0x37, + 0xa1, 0xa4, 0xde, 0xb7, 0x88, 0x4d, 0xa7, 0x7d, 0x14, 0xcd, 0x24, 0x07, 0xae, 0x38, 0x8b, 0xdf, + 0x56, 0xc5, 0xec, 0xec, 0xbf, 0x5b, 0x30, 0x2a, 0xe4, 0x83, 0xb8, 0x0a, 0x03, 0x4e, 0x18, 0xba, + 0x9b, 0x1e, 0xa9, 0xb7, 0xd3, 0x6d, 0xa6, 0xaa, 0x61, 0x6f, 0x8c, 0x66, 0x44, 0x49, 0xac, 0x78, + 0xa0, 0x6b, 0xdc, 0x6d, 0x6f, 0x97, 0xb4, 0x53, 0x6c, 0xa6, 0xb8, 0x81, 0x74, 0xec, 0xdb, 0x25, + 0x58, 0x94, 0x47, 0x9f, 0xe4, 0x7e, 0x95, 0xd7, 0x3d, 0xff, 0x8e, 0x77, 0xd5, 0xf7, 0x65, 0x9c, + 0x90, 0xee, 0x18, 0x8e, 0x4b, 0x6f, 0x4a, 0x55, 0x1c, 0x9b, 0xdc, 0xba, 0x8b, 0xa7, 0xfb, 0x59, + 0x60, 0x59, 0x03, 0xcc, 0xe7, 0xe4, 0x21, 0x22, 0x30, 0x2a, 0x02, 0x13, 0x4a, 0x98, 0xe8, 0xbb, + 0xcc, 0x4b, 0xa0, 0x59, 0x3a, 0x56, 0xc1, 0x5f, 0x37, 0x59, 0xe0, 0x24, 0x4f, 0xfb, 0x67, 0x2c, + 0x60, 0x4f, 0x6b, 0x8f, 0x41, 0x1e, 0xf9, 0x88, 0x29, 0x8f, 0x4c, 0xe6, 0x75, 0x72, 0x8e, 0x28, + 0xf2, 0x22, 0x9f, 0x59, 0x95, 0xc0, 0xbf, 0xbb, 0x27, 0x9c, 0x61, 0x3a, 0xdf, 0x3f, 0xec, 0xff, + 0x6e, 0xf1, 0x4d, 0x2c, 0x0e, 0x44, 0xf0, 0x39, 0x18, 0xa8, 0x39, 0x4d, 0xa7, 0xc6, 0x73, 0x5b, + 0xe5, 0xea, 0x02, 0x8d, 0x42, 0xd3, 0x73, 0xa2, 0x04, 0xd7, 0x6d, 0xc9, 0x00, 0x97, 0x03, 0x12, + 0xdc, 0x51, 0x9f, 0xa5, 0xaa, 0x9c, 0xda, 0x86, 0x61, 0x83, 0xd9, 0x43, 0x55, 0x84, 0x7c, 0x8e, + 0x1f, 0xb1, 0x2a, 0x20, 0xeb, 0x0e, 0x8c, 0x7b, 0xda, 0x7f, 0x7a, 0xa0, 0xc8, 0xcb, 0xe5, 0xe3, + 0x9d, 0x0e, 0x51, 0x76, 0xfa, 0x68, 0xaf, 0x76, 0x13, 0x6c, 0x70, 0x9a, 0xb3, 0xfd, 0x13, 0x16, + 0x9c, 0xd6, 0x09, 0xb5, 0x87, 0x41, 0x9d, 0xcc, 0x2b, 0xf3, 0x30, 0xe0, 0x37, 0x49, 0xe0, 0x44, + 0x7e, 0x20, 0x4e, 0x8d, 0x4b, 0xb2, 0xd3, 0x6f, 0x08, 0xf8, 0x81, 0xc8, 0xd4, 0x20, 0xb9, 0x4b, + 0x38, 0x56, 0x25, 0xe9, 0xed, 0x93, 0x75, 0x46, 0x28, 0x9e, 0x80, 0xb1, 0x3d, 0x80, 0x59, 0xea, + 0x43, 0x2c, 0x30, 0xf6, 0x9f, 0x59, 0x7c, 0x62, 0xe9, 0x4d, 0x47, 0x6f, 0xc3, 0xd8, 0x8e, 0x13, + 0xd5, 0xb6, 0x16, 0xee, 0x36, 0x03, 0x6e, 0xac, 0x92, 0xfd, 0xf4, 0x4c, 0xa7, 0x7e, 0xd2, 0x3e, + 0x32, 0x76, 0x15, 0x5d, 0x49, 0x30, 0xc3, 0x29, 0xf6, 0x68, 0x1d, 0x06, 0x19, 0x8c, 0xbd, 0x6e, + 0x0c, 0xdb, 0x89, 0x06, 0x79, 0xb5, 0x29, 0x67, 0x87, 0x95, 0x98, 0x0f, 0xd6, 0x99, 0xda, 0x5f, + 0x2e, 0xf2, 0xd5, 0xce, 0x44, 0xf9, 0xa7, 0xa0, 0xbf, 0xe9, 0xd7, 0xe7, 0x96, 0xe6, 0xb1, 0x18, + 0x05, 0x75, 0x8c, 0x54, 0x38, 0x18, 0x4b, 0x3c, 0xba, 0x04, 0x03, 0xe2, 0xa7, 0x34, 0x2e, 0xb2, + 0xbd, 0x59, 0xd0, 0x85, 0x58, 0x61, 0xd1, 0xf3, 0x00, 0xcd, 0xc0, 0xdf, 0x75, 0xeb, 0x2c, 0xda, + 0x49, 0xd1, 0xf4, 0x53, 0xaa, 0x28, 0x0c, 0xd6, 0xa8, 0xd0, 0xab, 0x30, 0xdc, 0xf2, 0x42, 0x2e, + 0x8e, 0x68, 0x31, 0xa5, 0x95, 0x07, 0xcd, 0x4d, 0x1d, 0x89, 0x4d, 0x5a, 0x34, 0x03, 0x7d, 0x91, + 0xc3, 0xfc, 0x6e, 0x7a, 0xf3, 0xdd, 0x89, 0xd7, 0x28, 0x85, 0x9e, 0x46, 0x89, 0x16, 0xc0, 0xa2, + 0x20, 0x7a, 0x53, 0x3e, 0x34, 0xe6, 0x1b, 0xbb, 0xf0, 0xe3, 0xef, 0xee, 0x10, 0xd0, 0x9e, 0x19, + 0x8b, 0xf7, 0x01, 0x06, 0x2f, 0xf4, 0x0a, 0x00, 0xb9, 0x1b, 0x91, 0xc0, 0x73, 0x1a, 0xca, 0x5b, + 0x4e, 0xc9, 0x05, 0xf3, 0xfe, 0xaa, 0x1f, 0xdd, 0x0c, 0xc9, 0x82, 0xa2, 0xc0, 0x1a, 0xb5, 0xfd, + 0x3b, 0x25, 0x80, 0x58, 0x6e, 0x47, 0xf7, 0x52, 0x1b, 0xd7, 0xb3, 0xed, 0x25, 0xfd, 0xa3, 0xdb, + 0xb5, 0xd0, 0xf7, 0x59, 0x30, 0x28, 0x82, 0xba, 0xb0, 0x11, 0x2a, 0xb4, 0xdf, 0x38, 0xcd, 0xd8, + 0x32, 0xb4, 0x04, 0x6f, 0xc2, 0x0b, 0x72, 0x86, 0x6a, 0x98, 0x8e, 0xad, 0xd0, 0x2b, 0x46, 0xef, + 0x97, 0x57, 0xc5, 0xa2, 0xd1, 0x95, 0xea, 0xaa, 0x58, 0x62, 0x67, 0x84, 0x7e, 0x4b, 0xbc, 0x69, + 0xdc, 0x12, 0x7b, 0xf2, 0x5f, 0x52, 0x1a, 0xe2, 0x6b, 0xa7, 0x0b, 0x22, 0xaa, 0xe8, 0x51, 0x15, + 0x7a, 0xf3, 0x9f, 0xff, 0x69, 0xf7, 0xa4, 0x0e, 0x11, 0x15, 0x3e, 0x03, 0xa3, 0x75, 0x53, 0x08, + 0x10, 0x33, 0xf1, 0xc9, 0x3c, 0xbe, 0x09, 0x99, 0x21, 0x3e, 0xf6, 0x13, 0x08, 0x9c, 0x64, 0x8c, + 0x2a, 0x3c, 0xc8, 0xc6, 0x92, 0xb7, 0xe1, 0x8b, 0xb7, 0x24, 0x76, 0xee, 0x58, 0xee, 0x85, 0x11, + 0xd9, 0xa1, 0x94, 0xf1, 0xe9, 0xbe, 0x2a, 0xca, 0x62, 0xc5, 0x05, 0xbd, 0x0e, 0x7d, 0xec, 0xfd, + 0x57, 0x38, 0x39, 0x90, 0xaf, 0xab, 0x36, 0xa3, 0x0d, 0xc6, 0x0b, 0x92, 0xfd, 0x0d, 0xb1, 0xe0, + 0x80, 0xae, 0xc9, 0xd7, 0x95, 0xe1, 0x92, 0x77, 0x33, 0x24, 0xec, 0x75, 0x65, 0x69, 0xf6, 0xf1, + 0xf8, 0xe1, 0x24, 0x87, 0x67, 0x26, 0x5b, 0x34, 0x4a, 0x52, 0x29, 0x4a, 0xfc, 0x97, 0x39, 0x1c, + 0x45, 0x6c, 0xa4, 0xcc, 0xe6, 0x99, 0x79, 0x1e, 0xe3, 0xee, 0xbc, 0x65, 0xb2, 0xc0, 0x49, 0x9e, + 0x54, 0x22, 0xe5, 0xab, 0x5e, 0xbc, 0x46, 0xe9, 0xb4, 0x77, 0xf0, 0x8b, 0x38, 0x3b, 0x8d, 0x38, + 0x04, 0x8b, 0xf2, 0xc7, 0x2a, 0x1e, 0x4c, 0x79, 0x30, 0x96, 0x5c, 0xa2, 0x0f, 0x55, 0x1c, 0xf9, + 0x93, 0x1e, 0x18, 0x31, 0xa7, 0x14, 0xba, 0x0c, 0x25, 0xc1, 0x44, 0xe5, 0x41, 0x51, 0xab, 0x64, + 0x45, 0x22, 0x70, 0x4c, 0xc3, 0xd2, 0xdf, 0xb0, 0xe2, 0x9a, 0xfb, 0x71, 0x9c, 0xfe, 0x46, 0x61, + 0xb0, 0x46, 0x45, 0x2f, 0x56, 0xeb, 0xbe, 0x1f, 0xa9, 0x03, 0x49, 0xcd, 0xbb, 0x59, 0x06, 0xc5, + 0x02, 0x4b, 0x0f, 0xa2, 0x6d, 0x12, 0x78, 0xa4, 0x61, 0xc6, 0x1f, 0x57, 0x07, 0xd1, 0x75, 0x1d, + 0x89, 0x4d, 0x5a, 0x7a, 0x9c, 0xfa, 0x21, 0x9b, 0xc8, 0xe2, 0xfa, 0x16, 0xbb, 0x73, 0x57, 0xf9, + 0xc3, 0x74, 0x89, 0x47, 0x1f, 0x87, 0xd3, 0x2a, 0xd6, 0x17, 0xe6, 0x76, 0x10, 0x59, 0x63, 0x9f, + 0xa1, 0x6d, 0x39, 0x3d, 0x97, 0x4d, 0x86, 0xf3, 0xca, 0xa3, 0xd7, 0x60, 0x44, 0x88, 0xf8, 0x92, + 0x63, 0xbf, 0xe9, 0x9b, 0x74, 0xdd, 0xc0, 0xe2, 0x04, 0xb5, 0x8c, 0xa0, 0xce, 0xa4, 0x6c, 0xc9, + 0x61, 0x20, 0x1d, 0x41, 0x5d, 0xc7, 0xe3, 0x54, 0x09, 0x34, 0x03, 0xa3, 0x5c, 0x06, 0x73, 0xbd, + 0x4d, 0x3e, 0x26, 0xe2, 0xb1, 0x98, 0x5a, 0x52, 0x37, 0x4c, 0x34, 0x4e, 0xd2, 0xa3, 0x97, 0x61, + 0xc8, 0x09, 0x6a, 0x5b, 0x6e, 0x44, 0x6a, 0x51, 0x2b, 0xe0, 0xaf, 0xc8, 0x34, 0xe7, 0xae, 0x19, + 0x0d, 0x87, 0x0d, 0x4a, 0xfb, 0x1e, 0x4c, 0x64, 0x44, 0xac, 0xa0, 0x13, 0xc7, 0x69, 0xba, 0xf2, + 0x9b, 0x12, 0x1e, 0xd4, 0x33, 0x95, 0x25, 0xf9, 0x35, 0x1a, 0x15, 0x9d, 0x9d, 0x2c, 0xb2, 0x85, + 0x96, 0xb2, 0x55, 0xcd, 0xce, 0x45, 0x89, 0xc0, 0x31, 0x8d, 0xfd, 0x9f, 0x0a, 0x30, 0x9a, 0x61, + 0x5b, 0x61, 0x69, 0x43, 0x13, 0x97, 0x94, 0x38, 0x4b, 0xa8, 0x19, 0x90, 0xbf, 0x70, 0x88, 0x80, + 0xfc, 0xc5, 0x4e, 0x01, 0xf9, 0x7b, 0xde, 0x49, 0x40, 0x7e, 0xb3, 0xc7, 0x7a, 0xbb, 0xea, 0xb1, + 0x8c, 0x20, 0xfe, 0x7d, 0x87, 0x0c, 0xe2, 0x6f, 0x74, 0x7a, 0x7f, 0x17, 0x9d, 0xfe, 0x23, 0x05, + 0x18, 0x4b, 0x3a, 0xa1, 0x1e, 0x83, 0xde, 0xf6, 0x75, 0x43, 0x6f, 0x7b, 0xa9, 0x9b, 0xc7, 0xbd, + 0xb9, 0x3a, 0x5c, 0x9c, 0xd0, 0xe1, 0x3e, 0xdd, 0x15, 0xb7, 0xf6, 0xfa, 0xdc, 0x9f, 0x2c, 0xc0, + 0xc9, 0xcc, 0xd7, 0xc5, 0xc7, 0xd0, 0x37, 0x37, 0x8c, 0xbe, 0x79, 0xae, 0xeb, 0x87, 0xcf, 0xb9, + 0x1d, 0x74, 0x3b, 0xd1, 0x41, 0x97, 0xbb, 0x67, 0xd9, 0xbe, 0x97, 0xbe, 0x5e, 0x84, 0xf3, 0x99, + 0xe5, 0x62, 0xb5, 0xe7, 0xa2, 0xa1, 0xf6, 0x7c, 0x3e, 0xa1, 0xf6, 0xb4, 0xdb, 0x97, 0x3e, 0x1a, + 0x3d, 0xa8, 0x78, 0x00, 0xcc, 0xc2, 0x18, 0x3c, 0xa0, 0x0e, 0xd4, 0x78, 0x00, 0xac, 0x18, 0x61, + 0x93, 0xef, 0xb7, 0x93, 0xee, 0xf3, 0xb7, 0x2d, 0x38, 0x93, 0x39, 0x36, 0xc7, 0xa0, 0xeb, 0x5a, + 0x35, 0x75, 0x5d, 0x4f, 0x75, 0x3d, 0x5b, 0x73, 0x94, 0x5f, 0x3f, 0xdd, 0x9b, 0xf3, 0x2d, 0xec, + 0x26, 0x7f, 0x03, 0x06, 0x9d, 0x5a, 0x8d, 0x84, 0xe1, 0x8a, 0x5f, 0x57, 0xb1, 0xbb, 0x9f, 0x63, + 0xf7, 0xac, 0x18, 0x7c, 0xb0, 0x5f, 0x9e, 0x4a, 0xb2, 0x88, 0xd1, 0x58, 0xe7, 0x80, 0x3e, 0x09, + 0x03, 0xa1, 0x38, 0x37, 0xc5, 0xd8, 0xbf, 0xd0, 0x65, 0xe7, 0x38, 0xeb, 0xa4, 0x61, 0x06, 0x89, + 0x52, 0x9a, 0x0a, 0xc5, 0xd2, 0x0c, 0x28, 0x53, 0x38, 0xd2, 0x80, 0x32, 0xcf, 0x03, 0xec, 0xaa, + 0xcb, 0x40, 0x52, 0xff, 0xa0, 0x5d, 0x13, 0x34, 0x2a, 0xf4, 0x51, 0x18, 0x0b, 0x79, 0x14, 0xc5, + 0xb9, 0x86, 0x13, 0xb2, 0x77, 0x3a, 0x62, 0x16, 0xb2, 0x40, 0x54, 0xd5, 0x04, 0x0e, 0xa7, 0xa8, + 0xd1, 0xa2, 0xac, 0x95, 0xf9, 0x90, 0xf0, 0x89, 0x79, 0x31, 0xae, 0x51, 0xf8, 0x91, 0x9c, 0x48, + 0x76, 0x3f, 0xeb, 0x78, 0xad, 0x24, 0xfa, 0x24, 0x00, 0x9d, 0x3e, 0x42, 0x0f, 0xd1, 0x9f, 0xbf, + 0x79, 0xd2, 0x5d, 0xa5, 0x9e, 0xe9, 0x16, 0xcd, 0xde, 0xec, 0xce, 0x2b, 0x26, 0x58, 0x63, 0x88, + 0x1c, 0x18, 0x8e, 0xff, 0xc5, 0x39, 0x7d, 0x2f, 0xe5, 0xd6, 0x90, 0x64, 0xce, 0x54, 0xde, 0xf3, + 0x3a, 0x0b, 0x6c, 0x72, 0xb4, 0xff, 0xdd, 0x00, 0x3c, 0xd2, 0x66, 0x1b, 0x46, 0x33, 0xa6, 0xa9, + 0xf7, 0x99, 0xe4, 0xfd, 0x7d, 0x2a, 0xb3, 0xb0, 0x71, 0xa1, 0x4f, 0xcc, 0xf6, 0xc2, 0x3b, 0x9e, + 0xed, 0x3f, 0x64, 0x69, 0x9a, 0x15, 0xee, 0x8e, 0xfa, 0x91, 0x43, 0x1e, 0x2f, 0x47, 0xa8, 0x6a, + 0xd9, 0xc8, 0xd0, 0x57, 0x3c, 0xdf, 0x75, 0x73, 0xba, 0x57, 0x60, 0x7c, 0x35, 0x3b, 0x74, 0x30, + 0x57, 0x65, 0x5c, 0x3d, 0xec, 0xf7, 0x1f, 0x57, 0x18, 0xe1, 0xdf, 0xb7, 0xe0, 0x4c, 0x0a, 0xcc, + 0xdb, 0x40, 0x42, 0x11, 0xdd, 0x6a, 0xf5, 0x1d, 0x37, 0x5e, 0x32, 0xe4, 0xdf, 0x70, 0x4d, 0x7c, + 0xc3, 0x99, 0x5c, 0xba, 0x64, 0xd3, 0x7f, 0xf0, 0x8f, 0xca, 0x13, 0xac, 0x02, 0x93, 0x10, 0xe7, + 0x37, 0xfd, 0x78, 0x2f, 0xfe, 0xdf, 0x9c, 0xa8, 0xc9, 0x53, 0xcb, 0x70, 0xbe, 0x7d, 0x57, 0x1f, + 0xea, 0x61, 0xf3, 0xef, 0x59, 0x70, 0xae, 0x6d, 0xf4, 0x9c, 0x6f, 0x41, 0x39, 0xd7, 0xfe, 0xbc, + 0x05, 0x8f, 0x66, 0x96, 0x30, 0xbc, 0xe3, 0x2e, 0x43, 0xa9, 0x96, 0xc8, 0xa4, 0x1a, 0xc7, 0x91, + 0x50, 0x59, 0x54, 0x63, 0x1a, 0xc3, 0x09, 0xae, 0xd0, 0xd1, 0x09, 0xee, 0x37, 0x2c, 0x48, 0x9d, + 0x55, 0xc7, 0x20, 0x34, 0x2d, 0x99, 0x42, 0xd3, 0xe3, 0xdd, 0xf4, 0x66, 0x8e, 0xbc, 0xf4, 0x17, + 0xa3, 0x70, 0x2a, 0xe7, 0x5d, 0xe2, 0x2e, 0x8c, 0x6f, 0xd6, 0x88, 0xf9, 0x10, 0xbd, 0x5d, 0x80, + 0xa6, 0xb6, 0xaf, 0xd6, 0x79, 0x02, 0xdb, 0x14, 0x09, 0x4e, 0x57, 0x81, 0x3e, 0x6f, 0xc1, 0x09, + 0xe7, 0x4e, 0xb8, 0x40, 0x85, 0x5f, 0xb7, 0x36, 0xdb, 0xf0, 0x6b, 0xdb, 0x54, 0xb2, 0x90, 0xcb, + 0xea, 0xc5, 0x4c, 0x85, 0xe4, 0xed, 0x6a, 0x8a, 0xde, 0xa8, 0x9e, 0xa5, 0x2b, 0xcf, 0xa2, 0xc2, + 0x99, 0x75, 0x21, 0x2c, 0x32, 0xab, 0xd0, 0xab, 0x75, 0x9b, 0x50, 0x09, 0x59, 0x0f, 0x48, 0xb9, + 0x34, 0x27, 0x31, 0x58, 0xf1, 0x41, 0x9f, 0x86, 0xd2, 0xa6, 0x7c, 0x15, 0x9d, 0x21, 0x2d, 0xc6, + 0x1d, 0xd9, 0xfe, 0xad, 0x38, 0xf7, 0x2a, 0x50, 0x44, 0x38, 0x66, 0x8a, 0x5e, 0x83, 0xa2, 0xb7, + 0x11, 0xb6, 0xcb, 0xf8, 0x9d, 0x70, 0x1f, 0xe5, 0x01, 0x49, 0x56, 0x17, 0xab, 0x98, 0x16, 0x44, + 0xd7, 0xa0, 0x18, 0xac, 0xd7, 0x85, 0x36, 0x3d, 0x73, 0x91, 0xe2, 0xd9, 0xf9, 0x9c, 0x56, 0x31, + 0x4e, 0x78, 0x76, 0x1e, 0x53, 0x16, 0xa8, 0x02, 0xbd, 0xec, 0x31, 0x9f, 0x90, 0xcd, 0x32, 0x6f, + 0xa1, 0x6d, 0x1e, 0xc5, 0xf2, 0xa8, 0x25, 0x8c, 0x00, 0x73, 0x46, 0x68, 0x0d, 0xfa, 0x6a, 0x2c, + 0x3b, 0xb4, 0x10, 0xc6, 0xde, 0x9f, 0xa9, 0x37, 0x6f, 0x93, 0x36, 0x5b, 0xa8, 0x91, 0x19, 0x05, + 0x16, 0xbc, 0x18, 0x57, 0xd2, 0xdc, 0xda, 0x08, 0x99, 0xde, 0x2d, 0x8f, 0x6b, 0x9b, 0x6c, 0xf0, + 0x82, 0x2b, 0xa3, 0xc0, 0x82, 0x17, 0x7a, 0x05, 0x0a, 0x1b, 0x35, 0xf1, 0x50, 0x2f, 0x53, 0x81, + 0x6e, 0xc6, 0x94, 0x99, 0xed, 0xbb, 0xbf, 0x5f, 0x2e, 0x2c, 0xce, 0xe1, 0xc2, 0x46, 0x0d, 0xad, + 0x42, 0xff, 0x06, 0x8f, 0x42, 0x21, 0x74, 0xe4, 0x4f, 0x66, 0x07, 0xc8, 0x48, 0x05, 0xaa, 0xe0, + 0x8f, 0xbe, 0x04, 0x02, 0x4b, 0x26, 0x2c, 0xd1, 0x87, 0x8a, 0xa6, 0x21, 0x82, 0xf9, 0x4d, 0x1f, + 0x2e, 0x02, 0x0a, 0x97, 0x95, 0xe3, 0x98, 0x1c, 0x58, 0xe3, 0x48, 0x67, 0xb5, 0x73, 0xaf, 0x15, + 0xb0, 0x48, 0xef, 0x22, 0xea, 0x53, 0xe6, 0xac, 0x9e, 0x91, 0x44, 0xed, 0x66, 0xb5, 0x22, 0xc2, + 0x31, 0x53, 0xb4, 0x0d, 0xc3, 0xbb, 0x61, 0x73, 0x8b, 0xc8, 0x25, 0xcd, 0x82, 0x40, 0xe5, 0xc8, + 0x7a, 0xb7, 0x04, 0xa1, 0x1b, 0x44, 0x2d, 0xa7, 0x91, 0xda, 0x85, 0x98, 0x5c, 0x7e, 0x4b, 0x67, + 0x86, 0x4d, 0xde, 0xb4, 0xfb, 0xdf, 0x6e, 0xf9, 0xeb, 0x7b, 0x11, 0x11, 0x31, 0xf8, 0x32, 0xbb, + 0xff, 0x0d, 0x4e, 0x92, 0xee, 0x7e, 0x81, 0xc0, 0x92, 0x09, 0xba, 0x25, 0xba, 0x87, 0xed, 0x9e, + 0x63, 0xf9, 0x01, 0x7e, 0x67, 0x24, 0x51, 0x4e, 0xa7, 0xb0, 0xdd, 0x32, 0x66, 0xc5, 0x76, 0xc9, + 0xe6, 0x96, 0x1f, 0xf9, 0x5e, 0x62, 0x87, 0x1e, 0xcf, 0xdf, 0x25, 0x2b, 0x19, 0xf4, 0xe9, 0x5d, + 0x32, 0x8b, 0x0a, 0x67, 0xd6, 0x85, 0xea, 0x30, 0xd2, 0xf4, 0x83, 0xe8, 0x8e, 0x1f, 0xc8, 0xf9, + 0x85, 0xda, 0xe8, 0xf8, 0x0c, 0x4a, 0x51, 0x23, 0x0b, 0x6f, 0x69, 0x62, 0x70, 0x82, 0x27, 0xfa, + 0x18, 0xf4, 0x87, 0x35, 0xa7, 0x41, 0x96, 0x6e, 0x4c, 0x4e, 0xe4, 0x1f, 0x3f, 0x55, 0x4e, 0x92, + 0x33, 0xbb, 0x78, 0x10, 0x11, 0x4e, 0x82, 0x25, 0x3b, 0xb4, 0x08, 0xbd, 0x2c, 0x81, 0x26, 0x0b, + 0x18, 0x99, 0x13, 0xa7, 0x38, 0xe5, 0xcc, 0xcf, 0xf7, 0x26, 0x06, 0xc6, 0xbc, 0x38, 0x5d, 0x03, + 0xe2, 0xaa, 0xeb, 0x87, 0x93, 0x27, 0xf3, 0xd7, 0x80, 0xb8, 0x21, 0xdf, 0xa8, 0xb6, 0x5b, 0x03, + 0x8a, 0x08, 0xc7, 0x4c, 0xe9, 0xce, 0x4c, 0x77, 0xd3, 0x53, 0x6d, 0xbc, 0xd0, 0x72, 0xf7, 0x52, + 0xb6, 0x33, 0xd3, 0x9d, 0x94, 0xb2, 0xb0, 0xff, 0xb8, 0x3f, 0x2d, 0xb3, 0x30, 0xe5, 0xc8, 0xff, + 0x6e, 0xa5, 0xec, 0xe6, 0x1f, 0xe8, 0x56, 0x57, 0x7b, 0x84, 0xd7, 0xba, 0xcf, 0x5b, 0x70, 0xaa, + 0x99, 0xf9, 0x21, 0x42, 0x00, 0xe8, 0x4e, 0xe5, 0xcb, 0x3f, 0x5d, 0x05, 0x17, 0xcd, 0xc6, 0xe3, + 0x9c, 0x9a, 0x92, 0x57, 0xe7, 0xe2, 0x3b, 0xbe, 0x3a, 0xaf, 0xc0, 0x40, 0x8d, 0xdf, 0x73, 0x64, + 0x50, 0xec, 0xae, 0x42, 0xe3, 0x31, 0x51, 0x42, 0x5c, 0x90, 0x36, 0xb0, 0x62, 0x81, 0x7e, 0xd8, + 0x82, 0x73, 0xc9, 0xa6, 0x63, 0xc2, 0xd0, 0x22, 0x22, 0x29, 0xd7, 0xcb, 0x2c, 0x8a, 0xef, 0x4f, + 0xc9, 0xff, 0x06, 0xf1, 0x41, 0x27, 0x02, 0xdc, 0xbe, 0x32, 0x34, 0x9f, 0xa1, 0x18, 0xea, 0x33, + 0x8d, 0x61, 0x5d, 0x28, 0x87, 0x5e, 0x84, 0xa1, 0x1d, 0xbf, 0xe5, 0x45, 0xc2, 0x69, 0x4d, 0x38, + 0xd0, 0x30, 0xc7, 0x91, 0x15, 0x0d, 0x8e, 0x0d, 0xaa, 0x84, 0x4a, 0x69, 0xe0, 0x81, 0x55, 0x4a, + 0x6f, 0xc1, 0x90, 0xa7, 0x79, 0x59, 0x0b, 0x79, 0xe0, 0x62, 0x7e, 0x34, 0x61, 0xdd, 0x27, 0x9b, + 0xb7, 0x52, 0x87, 0x60, 0x83, 0xdb, 0xf1, 0x7a, 0xb3, 0xfd, 0x7c, 0x21, 0x43, 0xa8, 0xe7, 0x6a, + 0xa5, 0x0f, 0x9b, 0x6a, 0xa5, 0x8b, 0x49, 0xb5, 0x52, 0xca, 0x10, 0x62, 0x68, 0x94, 0xba, 0x4f, + 0xae, 0xd5, 0x75, 0x44, 0xd2, 0xef, 0xb6, 0xe0, 0x34, 0xd3, 0xac, 0xd3, 0x0a, 0xde, 0xb1, 0x36, + 0xfd, 0x91, 0xfb, 0xfb, 0xe5, 0xd3, 0xcb, 0xd9, 0xec, 0x70, 0x5e, 0x3d, 0x76, 0x03, 0x2e, 0x74, + 0x3a, 0x1a, 0x99, 0x07, 0x65, 0x5d, 0x99, 0xde, 0x63, 0x0f, 0xca, 0xfa, 0xd2, 0x3c, 0x66, 0x98, + 0x6e, 0xe3, 0x6d, 0xd9, 0xff, 0xc1, 0x82, 0x62, 0xc5, 0xaf, 0x1f, 0xc3, 0xa5, 0xfb, 0x23, 0xc6, + 0xa5, 0xfb, 0x91, 0xec, 0x43, 0xb9, 0x9e, 0x6b, 0x4a, 0x5a, 0x48, 0x98, 0x92, 0xce, 0xe5, 0x31, + 0x68, 0x6f, 0x38, 0xfa, 0xa9, 0x22, 0x0c, 0x56, 0xfc, 0xba, 0x7a, 0xbe, 0xf0, 0x8f, 0x1f, 0xe4, + 0xf9, 0x42, 0x6e, 0xba, 0x14, 0x8d, 0x33, 0x73, 0xbc, 0x94, 0x6f, 0xbe, 0xbf, 0xc5, 0x5e, 0x31, + 0xdc, 0x26, 0xee, 0xe6, 0x56, 0x44, 0xea, 0xc9, 0xcf, 0x39, 0xbe, 0x57, 0x0c, 0x7f, 0x5c, 0x80, + 0xd1, 0x44, 0xed, 0xa8, 0x01, 0xc3, 0x0d, 0xdd, 0x50, 0x21, 0xe6, 0xe9, 0x03, 0xd9, 0x38, 0x84, + 0x17, 0xb8, 0x06, 0xc2, 0x26, 0x73, 0x34, 0x0d, 0xa0, 0x2c, 0xf7, 0x52, 0x5d, 0xcd, 0x6e, 0x1e, + 0xca, 0xb4, 0x1f, 0x62, 0x8d, 0x02, 0xbd, 0x04, 0x83, 0x91, 0xdf, 0xf4, 0x1b, 0xfe, 0xe6, 0xde, + 0x75, 0x22, 0x43, 0xb1, 0x29, 0xdf, 0xce, 0xb5, 0x18, 0x85, 0x75, 0x3a, 0x74, 0x17, 0xc6, 0x15, + 0x93, 0xea, 0x11, 0x18, 0x6f, 0x98, 0x66, 0x63, 0x35, 0xc9, 0x11, 0xa7, 0x2b, 0xb1, 0x7f, 0xb6, + 0xc8, 0xbb, 0xd8, 0x8b, 0xdc, 0xf7, 0x56, 0xc3, 0xbb, 0x7b, 0x35, 0x7c, 0xdd, 0x82, 0x31, 0x5a, + 0x3b, 0x73, 0x5c, 0x93, 0xa2, 0x86, 0x8a, 0xa1, 0x6e, 0xb5, 0x89, 0xa1, 0x7e, 0x91, 0xee, 0x9a, + 0x75, 0xbf, 0x15, 0x09, 0xfd, 0xa1, 0xb6, 0x2d, 0x52, 0x28, 0x16, 0x58, 0x41, 0x47, 0x82, 0x40, + 0x3c, 0xb6, 0xd5, 0xe9, 0x48, 0x10, 0x60, 0x81, 0x95, 0x21, 0xd6, 0x7b, 0xb2, 0x43, 0xac, 0xf3, + 0x48, 0xb9, 0xc2, 0xc5, 0x49, 0x08, 0x7d, 0x5a, 0xa4, 0x5c, 0xe9, 0xfb, 0x14, 0xd3, 0xd8, 0x5f, + 0x2d, 0xc2, 0x50, 0xc5, 0xaf, 0xc7, 0x56, 0xfb, 0x17, 0x0d, 0xab, 0xfd, 0x85, 0x84, 0xd5, 0x7e, + 0x4c, 0xa7, 0x7d, 0xcf, 0x46, 0xff, 0xcd, 0xb2, 0xd1, 0xff, 0xba, 0xc5, 0x46, 0x6d, 0x7e, 0xb5, + 0xca, 0xfd, 0x20, 0xd1, 0x15, 0x18, 0x64, 0x1b, 0x0c, 0x7b, 0xdd, 0x2d, 0x4d, 0xd9, 0x2c, 0xe5, + 0xd9, 0x6a, 0x0c, 0xc6, 0x3a, 0x0d, 0xba, 0x04, 0x03, 0x21, 0x71, 0x82, 0xda, 0x96, 0xda, 0x5d, + 0x85, 0xdd, 0x99, 0xc3, 0xb0, 0xc2, 0xa2, 0x37, 0xe2, 0x20, 0xad, 0xc5, 0xfc, 0xd7, 0xa2, 0x7a, + 0x7b, 0xf8, 0x12, 0xc9, 0x8f, 0xcc, 0x6a, 0xdf, 0x06, 0x94, 0xa6, 0xef, 0x22, 0x8c, 0x60, 0xd9, + 0x0c, 0x23, 0x58, 0x4a, 0x85, 0x10, 0xfc, 0x2b, 0x0b, 0x46, 0x2a, 0x7e, 0x9d, 0x2e, 0xdd, 0x6f, + 0xa7, 0x75, 0xaa, 0x47, 0xa8, 0xee, 0x6b, 0x13, 0xa1, 0xfa, 0x31, 0xe8, 0xad, 0xf8, 0xf5, 0x0e, + 0xa1, 0x0e, 0xff, 0x86, 0x05, 0xfd, 0x15, 0xbf, 0x7e, 0x0c, 0xa6, 0x89, 0x0f, 0x9b, 0xa6, 0x89, + 0xd3, 0x39, 0xf3, 0x26, 0xc7, 0x1a, 0xf1, 0xff, 0xf7, 0xc0, 0x30, 0x6d, 0xa7, 0xbf, 0x29, 0x87, + 0xd2, 0xe8, 0x36, 0xab, 0x8b, 0x6e, 0xa3, 0x52, 0xb8, 0xdf, 0x68, 0xf8, 0x77, 0x92, 0xc3, 0xba, + 0xc8, 0xa0, 0x58, 0x60, 0xd1, 0xb3, 0x30, 0xd0, 0x0c, 0xc8, 0xae, 0xeb, 0x0b, 0xf1, 0x56, 0x33, + 0xf4, 0x54, 0x04, 0x1c, 0x2b, 0x0a, 0x7a, 0x35, 0x0d, 0x5d, 0x8f, 0x1e, 0xe5, 0x35, 0xdf, 0xab, + 0x73, 0xed, 0x7d, 0x51, 0xa4, 0x51, 0xd1, 0xe0, 0xd8, 0xa0, 0x42, 0xb7, 0xa1, 0xc4, 0xfe, 0xb3, + 0x6d, 0xe7, 0xf0, 0x09, 0x9c, 0x45, 0x62, 0x49, 0xc1, 0x00, 0xc7, 0xbc, 0xd0, 0xf3, 0x00, 0x91, + 0x4c, 0x45, 0x10, 0x8a, 0x90, 0x77, 0xea, 0x2a, 0xa0, 0x92, 0x14, 0x84, 0x58, 0xa3, 0x42, 0xcf, + 0x40, 0x29, 0x72, 0xdc, 0xc6, 0xb2, 0xeb, 0x31, 0xfb, 0x2f, 0x6d, 0xbf, 0xc8, 0xef, 0x28, 0x80, + 0x38, 0xc6, 0x53, 0x51, 0x8c, 0x85, 0x43, 0xe1, 0xe9, 0xeb, 0x07, 0x18, 0x35, 0x13, 0xc5, 0x96, + 0x15, 0x14, 0x6b, 0x14, 0x68, 0x0b, 0xce, 0xba, 0x1e, 0x4b, 0x39, 0x42, 0xaa, 0xdb, 0x6e, 0x73, + 0x6d, 0xb9, 0x7a, 0x8b, 0x04, 0xee, 0xc6, 0xde, 0xac, 0x53, 0xdb, 0x26, 0x9e, 0x4c, 0xcd, 0x2b, + 0x33, 0xb6, 0x9f, 0x5d, 0x6a, 0x43, 0x8b, 0xdb, 0x72, 0xb2, 0x5f, 0x60, 0xf3, 0xfd, 0x46, 0x15, + 0x3d, 0x6d, 0x6c, 0x1d, 0xa7, 0xf4, 0xad, 0xe3, 0x60, 0xbf, 0xdc, 0x77, 0xa3, 0xaa, 0xc5, 0xe4, + 0x78, 0x19, 0x4e, 0x56, 0xfc, 0x7a, 0xc5, 0x0f, 0xa2, 0x45, 0x3f, 0xb8, 0xe3, 0x04, 0x75, 0x39, + 0xbd, 0xca, 0x32, 0x2a, 0x09, 0xdd, 0x3f, 0x7b, 0xf9, 0xee, 0x62, 0x44, 0x1c, 0x79, 0x81, 0x49, + 0x6c, 0x87, 0x7c, 0x4b, 0x57, 0x63, 0xb2, 0x83, 0x4a, 0xda, 0x73, 0xd5, 0x89, 0x08, 0xba, 0xc1, + 0x92, 0xef, 0xc7, 0xc7, 0xa8, 0x28, 0xfe, 0x94, 0x96, 0x7c, 0x3f, 0x46, 0x66, 0x9e, 0xbb, 0x66, + 0x79, 0xfb, 0x73, 0xa2, 0x12, 0xae, 0x07, 0xe0, 0xfe, 0x8a, 0xdd, 0x64, 0xaf, 0x96, 0x59, 0x3d, + 0x0a, 0xf9, 0xe9, 0x20, 0xb8, 0xe5, 0xb5, 0x6d, 0x56, 0x0f, 0xfb, 0x3b, 0xe1, 0x54, 0xb2, 0xfa, + 0xae, 0x53, 0x68, 0xcf, 0xc1, 0x78, 0xa0, 0x17, 0xd4, 0x52, 0xa4, 0x9d, 0xe4, 0x99, 0x18, 0x12, + 0x48, 0x9c, 0xa6, 0xb7, 0x5f, 0x82, 0x71, 0x7a, 0xf7, 0x54, 0x82, 0x1c, 0xeb, 0xe5, 0xce, 0xe1, + 0x59, 0xfe, 0x63, 0x2f, 0x3b, 0x88, 0x12, 0xf9, 0x72, 0xd0, 0xa7, 0x60, 0x24, 0x24, 0xcb, 0xae, + 0xd7, 0xba, 0x2b, 0xb5, 0x4f, 0x6d, 0x1e, 0x91, 0x56, 0x17, 0x74, 0x4a, 0xae, 0xc3, 0x36, 0x61, + 0x38, 0xc1, 0x0d, 0xed, 0xc0, 0xc8, 0x1d, 0xd7, 0xab, 0xfb, 0x77, 0x42, 0xc9, 0x7f, 0x20, 0x5f, + 0x95, 0x7d, 0x9b, 0x53, 0x26, 0xda, 0x68, 0x54, 0x77, 0xdb, 0x60, 0x86, 0x13, 0xcc, 0xe9, 0x62, + 0x0f, 0x5a, 0xde, 0x4c, 0x78, 0x33, 0x24, 0xfc, 0x59, 0xa0, 0x58, 0xec, 0x58, 0x02, 0x71, 0x8c, + 0xa7, 0x8b, 0x9d, 0xfd, 0xb9, 0x1a, 0xf8, 0x2d, 0x9e, 0x9c, 0x45, 0x2c, 0x76, 0xac, 0xa0, 0x58, + 0xa3, 0xa0, 0x9b, 0x21, 0xfb, 0xb7, 0xea, 0x7b, 0xd8, 0xf7, 0x23, 0xb9, 0x7d, 0xb2, 0xe4, 0x62, + 0x1a, 0x1c, 0x1b, 0x54, 0x68, 0x11, 0x50, 0xd8, 0x6a, 0x36, 0x1b, 0xcc, 0x3b, 0xcd, 0x69, 0x30, + 0x56, 0xdc, 0x6d, 0xa7, 0xc8, 0x83, 0x4b, 0x57, 0x53, 0x58, 0x9c, 0x51, 0x82, 0x9e, 0x8b, 0x1b, + 0xa2, 0xa9, 0xbd, 0xac, 0xa9, 0xdc, 0xec, 0x55, 0xe5, 0xed, 0x94, 0x38, 0xb4, 0x00, 0xfd, 0xe1, + 0x5e, 0x58, 0x8b, 0x1a, 0x61, 0xbb, 0x54, 0x6e, 0x55, 0x46, 0xa2, 0x65, 0x12, 0xe5, 0x45, 0xb0, + 0x2c, 0x8b, 0x6a, 0x30, 0x21, 0x38, 0xce, 0x6d, 0x39, 0x9e, 0x4a, 0x30, 0xc5, 0x9d, 0xf4, 0xaf, + 0xdc, 0xdf, 0x2f, 0x4f, 0x88, 0x9a, 0x75, 0xf4, 0xc1, 0x7e, 0x99, 0x2e, 0x8e, 0x0c, 0x0c, 0xce, + 0xe2, 0xc6, 0x27, 0x5f, 0xad, 0xe6, 0xef, 0x34, 0x2b, 0x81, 0xbf, 0xe1, 0x36, 0x48, 0x3b, 0xd3, + 0x61, 0xd5, 0xa0, 0x14, 0x93, 0xcf, 0x80, 0xe1, 0x04, 0x37, 0xfb, 0x73, 0x4c, 0x76, 0xac, 0xba, + 0x9b, 0x9e, 0x13, 0xb5, 0x02, 0x82, 0x76, 0x60, 0xb8, 0xc9, 0x76, 0x17, 0x91, 0x32, 0x45, 0xcc, + 0xf5, 0x17, 0xbb, 0x54, 0x3f, 0xdd, 0x61, 0x49, 0xdf, 0x0c, 0x57, 0xb7, 0x8a, 0xce, 0x0e, 0x9b, + 0xdc, 0xed, 0x7f, 0x71, 0x86, 0x49, 0x1f, 0x55, 0xae, 0x53, 0xea, 0x17, 0x6f, 0x82, 0xc4, 0x35, + 0x76, 0x2a, 0x5f, 0xc1, 0x1a, 0x0f, 0x8b, 0x78, 0x57, 0x84, 0x65, 0x59, 0xf4, 0x49, 0x18, 0xa1, + 0xb7, 0x42, 0x25, 0x01, 0x84, 0x93, 0x27, 0xf2, 0x63, 0xb7, 0x28, 0x2a, 0x3d, 0x9d, 0x92, 0x5e, + 0x18, 0x27, 0x98, 0xa1, 0x37, 0x98, 0x6b, 0x99, 0x64, 0x5d, 0xe8, 0x86, 0xb5, 0xee, 0x45, 0x26, + 0xd9, 0x6a, 0x4c, 0x50, 0x0b, 0x26, 0xd2, 0x49, 0x23, 0xc3, 0x49, 0x3b, 0x5f, 0xbc, 0x4e, 0xe7, + 0x7d, 0x8c, 0xf3, 0xde, 0xa4, 0x71, 0x21, 0xce, 0xe2, 0x8f, 0x96, 0x93, 0x29, 0xfd, 0x8a, 0x86, + 0xde, 0x37, 0x95, 0xd6, 0x6f, 0xb8, 0x6d, 0x36, 0xbf, 0x4d, 0x38, 0xa7, 0x65, 0x45, 0xbb, 0x1a, + 0x38, 0xcc, 0x79, 0xc3, 0x65, 0xdb, 0xa9, 0x26, 0x17, 0x3d, 0x7a, 0x7f, 0xbf, 0x7c, 0x6e, 0xad, + 0x1d, 0x21, 0x6e, 0xcf, 0x07, 0xdd, 0x80, 0x93, 0x3c, 0xf2, 0xc0, 0x3c, 0x71, 0xea, 0x0d, 0xd7, + 0x53, 0x82, 0x17, 0x5f, 0xf2, 0x67, 0xee, 0xef, 0x97, 0x4f, 0xce, 0x64, 0x11, 0xe0, 0xec, 0x72, + 0xe8, 0xc3, 0x50, 0xaa, 0x7b, 0xa1, 0xe8, 0x83, 0x3e, 0x23, 0xf1, 0x5c, 0x69, 0x7e, 0xb5, 0xaa, + 0xbe, 0x3f, 0xfe, 0x83, 0xe3, 0x02, 0x68, 0x93, 0xdb, 0x06, 0x94, 0xb6, 0xa8, 0x3f, 0x15, 0xb3, + 0x2d, 0xa9, 0x50, 0x35, 0xde, 0x1e, 0x73, 0xa3, 0x98, 0x7a, 0x92, 0x63, 0x3c, 0x4b, 0x36, 0x18, + 0xa3, 0xd7, 0x01, 0x89, 0x04, 0x07, 0x33, 0x35, 0x96, 0x8f, 0x87, 0x1d, 0x8d, 0x03, 0xe6, 0x6b, + 0xd8, 0x6a, 0x8a, 0x02, 0x67, 0x94, 0x42, 0xd7, 0xe8, 0xae, 0xa2, 0x43, 0xc5, 0xae, 0xa5, 0xd2, + 0x9b, 0xce, 0x93, 0x66, 0x40, 0x98, 0x8f, 0x99, 0xc9, 0x11, 0x27, 0xca, 0xa1, 0x3a, 0x9c, 0x75, + 0x5a, 0x91, 0xcf, 0xcc, 0x2e, 0x26, 0xe9, 0x9a, 0xbf, 0x4d, 0x3c, 0x66, 0xf1, 0x1c, 0x60, 0xb1, + 0xe0, 0xce, 0xce, 0xb4, 0xa1, 0xc3, 0x6d, 0xb9, 0x50, 0x89, 0x5c, 0xe5, 0x33, 0x07, 0x33, 0x12, + 0x5d, 0x46, 0x4e, 0xf3, 0x97, 0x60, 0x70, 0xcb, 0x0f, 0xa3, 0x55, 0x12, 0xdd, 0xf1, 0x83, 0x6d, + 0x11, 0x51, 0x39, 0x8e, 0x62, 0x1f, 0xa3, 0xb0, 0x4e, 0x47, 0xaf, 0xdc, 0xcc, 0x1f, 0x67, 0x69, + 0x9e, 0xb9, 0x42, 0x0c, 0xc4, 0x7b, 0xcc, 0x35, 0x0e, 0xc6, 0x12, 0x2f, 0x49, 0x97, 0x2a, 0x73, + 0xcc, 0xad, 0x21, 0x41, 0xba, 0x54, 0x99, 0xc3, 0x12, 0x4f, 0xa7, 0x6b, 0xb8, 0xe5, 0x04, 0xa4, + 0x12, 0xf8, 0x35, 0x12, 0x6a, 0xb9, 0x13, 0x1e, 0xe1, 0xf1, 0xa2, 0xe9, 0x74, 0xad, 0x66, 0x11, + 0xe0, 0xec, 0x72, 0x88, 0xa4, 0x33, 0x02, 0x8e, 0xe4, 0xdb, 0xa3, 0xd2, 0xf2, 0x4c, 0x97, 0x49, + 0x01, 0x3d, 0x18, 0x53, 0xb9, 0x08, 0x79, 0x84, 0xe8, 0x70, 0x72, 0x94, 0xcd, 0xed, 0xee, 0xc3, + 0x4b, 0x2b, 0x0b, 0xdf, 0x52, 0x82, 0x13, 0x4e, 0xf1, 0x36, 0x82, 0x0d, 0x8e, 0x75, 0x0c, 0x36, + 0x78, 0x19, 0x4a, 0x61, 0x6b, 0xbd, 0xee, 0xef, 0x38, 0xae, 0xc7, 0xdc, 0x1a, 0xb4, 0xbb, 0x5f, + 0x55, 0x22, 0x70, 0x4c, 0x83, 0x16, 0x61, 0xc0, 0x91, 0xe6, 0x3b, 0x94, 0x1f, 0x24, 0x4a, 0x19, + 0xed, 0x78, 0xdc, 0x14, 0x69, 0xb0, 0x53, 0x65, 0xd1, 0xab, 0x30, 0x2c, 0x5e, 0xce, 0x8b, 0xf4, + 0xbd, 0x13, 0xe6, 0xf3, 0xc6, 0xaa, 0x8e, 0xc4, 0x26, 0x2d, 0xba, 0x09, 0x83, 0x91, 0xdf, 0x60, + 0x6f, 0xf4, 0xa8, 0x98, 0x77, 0x2a, 0x3f, 0xdc, 0xe1, 0x9a, 0x22, 0xd3, 0xb5, 0xd6, 0xaa, 0x28, + 0xd6, 0xf9, 0xa0, 0x35, 0x3e, 0xdf, 0x59, 0xa6, 0x04, 0x12, 0x8a, 0xfc, 0xaf, 0xe7, 0xf2, 0x7c, + 0xd2, 0x18, 0x99, 0xb9, 0x1c, 0x44, 0x49, 0xac, 0xb3, 0x41, 0x57, 0x61, 0xbc, 0x19, 0xb8, 0x3e, + 0x9b, 0x13, 0xca, 0x72, 0x3b, 0x69, 0xe6, 0x45, 0xab, 0x24, 0x09, 0x70, 0xba, 0x0c, 0x0b, 0x7c, + 0x20, 0x80, 0x93, 0x67, 0x78, 0x6e, 0x17, 0x7e, 0x95, 0xe6, 0x30, 0xac, 0xb0, 0x68, 0x85, 0xed, + 0xc4, 0x5c, 0x0b, 0x34, 0x39, 0x95, 0x1f, 0x97, 0x4a, 0xd7, 0x16, 0x71, 0xe1, 0x55, 0xfd, 0xc5, + 0x31, 0x07, 0x54, 0xd7, 0x52, 0xaa, 0xd2, 0x2b, 0x40, 0x38, 0x79, 0xb6, 0x8d, 0x53, 0x64, 0xe2, + 0x56, 0x16, 0x0b, 0x04, 0x06, 0x38, 0xc4, 0x09, 0x9e, 0xe8, 0xa3, 0x30, 0x26, 0xe2, 0x70, 0xc6, + 0xdd, 0x74, 0x2e, 0x7e, 0xf9, 0x80, 0x13, 0x38, 0x9c, 0xa2, 0xe6, 0xb9, 0x55, 0x9c, 0xf5, 0x06, + 0x11, 0x5b, 0xdf, 0xb2, 0xeb, 0x6d, 0x87, 0x93, 0xe7, 0xd9, 0xfe, 0x20, 0x72, 0xab, 0x24, 0xb1, + 0x38, 0xa3, 0x04, 0x5a, 0x83, 0xb1, 0x66, 0x40, 0xc8, 0x0e, 0x13, 0xf4, 0xc5, 0x79, 0x56, 0xe6, + 0x71, 0x3f, 0x68, 0x4b, 0x2a, 0x09, 0xdc, 0x41, 0x06, 0x0c, 0xa7, 0x38, 0xa0, 0x3b, 0x30, 0xe0, + 0xef, 0x92, 0x60, 0x8b, 0x38, 0xf5, 0xc9, 0x0b, 0x6d, 0x5e, 0xe2, 0x88, 0xc3, 0xed, 0x86, 0xa0, + 0x4d, 0x78, 0x7b, 0x48, 0x70, 0x67, 0x6f, 0x0f, 0x59, 0x19, 0xfa, 0x3f, 0x2c, 0x38, 0x23, 0x8d, + 0x33, 0xd5, 0x26, 0xed, 0xf5, 0x39, 0xdf, 0x0b, 0xa3, 0x80, 0x47, 0xaa, 0x78, 0x34, 0x3f, 0x7a, + 0xc3, 0x5a, 0x4e, 0x21, 0xa5, 0x88, 0x3e, 0x93, 0x47, 0x11, 0xe2, 0xfc, 0x1a, 0xe9, 0xd5, 0x34, + 0x24, 0x91, 0xdc, 0x8c, 0x66, 0xc2, 0xc5, 0x37, 0xe6, 0x57, 0x27, 0x1f, 0xe3, 0x61, 0x36, 0xe8, + 0x62, 0xa8, 0x26, 0x91, 0x38, 0x4d, 0x8f, 0xae, 0x40, 0xc1, 0x0f, 0x27, 0x1f, 0x6f, 0x93, 0x85, + 0xd7, 0xaf, 0xdf, 0xa8, 0x72, 0xaf, 0xbf, 0x1b, 0x55, 0x5c, 0xf0, 0x43, 0x99, 0xdf, 0x84, 0xde, + 0xc7, 0xc2, 0xc9, 0x27, 0xb8, 0xda, 0x52, 0xe6, 0x37, 0x61, 0x40, 0x1c, 0xe3, 0xd1, 0x16, 0x8c, + 0x86, 0xc6, 0xbd, 0x37, 0x9c, 0xbc, 0xc8, 0x7a, 0xea, 0x89, 0xbc, 0x41, 0x33, 0xa8, 0xb5, 0xc4, + 0x03, 0x26, 0x17, 0x9c, 0x64, 0xcb, 0x57, 0x97, 0x76, 0xf3, 0x0e, 0x27, 0x9f, 0xec, 0xb0, 0xba, + 0x34, 0x62, 0x7d, 0x75, 0xe9, 0x3c, 0x70, 0x82, 0xe7, 0xd4, 0x77, 0xc0, 0x78, 0x4a, 0x5c, 0x3a, + 0x8c, 0x87, 0xfb, 0xd4, 0x36, 0x0c, 0x1b, 0x53, 0xf2, 0xa1, 0x7a, 0x57, 0xfc, 0x76, 0x09, 0x4a, + 0xca, 0xea, 0x8d, 0x2e, 0x9b, 0x0e, 0x15, 0x67, 0x92, 0x0e, 0x15, 0x03, 0x15, 0xbf, 0x6e, 0xf8, + 0x50, 0xac, 0x65, 0x04, 0x63, 0xcc, 0xdb, 0x00, 0xbb, 0x7f, 0xa4, 0xa2, 0x99, 0x12, 0x8a, 0x5d, + 0x7b, 0x66, 0xf4, 0xb4, 0xb5, 0x4e, 0x5c, 0x85, 0x71, 0xcf, 0x67, 0x32, 0x3a, 0xa9, 0x4b, 0x01, + 0x8c, 0xc9, 0x59, 0x25, 0x3d, 0xba, 0x51, 0x82, 0x00, 0xa7, 0xcb, 0xd0, 0x0a, 0xb9, 0xa0, 0x94, + 0x34, 0x87, 0x70, 0x39, 0x0a, 0x0b, 0x2c, 0xbd, 0x1b, 0xf2, 0x5f, 0xe1, 0xe4, 0x58, 0xfe, 0xdd, + 0x90, 0x17, 0x4a, 0x0a, 0x63, 0xa1, 0x14, 0xc6, 0x98, 0xf6, 0xbf, 0xe9, 0xd7, 0x97, 0x2a, 0x42, + 0xcc, 0xd7, 0x22, 0x09, 0xd7, 0x97, 0x2a, 0x98, 0xe3, 0xd0, 0x0c, 0xf4, 0xb1, 0x1f, 0xe1, 0xe4, + 0x50, 0x7e, 0x34, 0x1c, 0x56, 0x42, 0xcb, 0xaf, 0xc6, 0x0a, 0x60, 0x51, 0x90, 0x69, 0x77, 0xe9, + 0xdd, 0x88, 0x69, 0x77, 0xfb, 0x1f, 0x50, 0xbb, 0x2b, 0x19, 0xe0, 0x98, 0x17, 0xba, 0x0b, 0x27, + 0x8d, 0xfb, 0xa8, 0x7a, 0xb5, 0x03, 0xf9, 0x86, 0xdf, 0x04, 0xf1, 0xec, 0x39, 0xd1, 0xe8, 0x93, + 0x4b, 0x59, 0x9c, 0x70, 0x76, 0x05, 0xa8, 0x01, 0xe3, 0xb5, 0x54, 0xad, 0x03, 0xdd, 0xd7, 0xaa, + 0xe6, 0x45, 0xba, 0xc6, 0x34, 0x63, 0xf4, 0x2a, 0x0c, 0xbc, 0xed, 0x87, 0xec, 0x88, 0x14, 0x57, + 0x13, 0x19, 0xce, 0x61, 0xe0, 0x8d, 0x1b, 0x55, 0x06, 0x3f, 0xd8, 0x2f, 0x0f, 0x56, 0xfc, 0xba, + 0xfc, 0x8b, 0x55, 0x01, 0xf4, 0xfd, 0x16, 0x4c, 0xa5, 0x2f, 0xbc, 0xaa, 0xd1, 0xc3, 0xdd, 0x37, + 0xda, 0x16, 0x95, 0x4e, 0x2d, 0xe4, 0xb2, 0xc3, 0x6d, 0xaa, 0x42, 0x1f, 0xa2, 0xeb, 0x29, 0x74, + 0xef, 0x11, 0x91, 0x9c, 0xf6, 0xd1, 0x78, 0x3d, 0x51, 0xe8, 0xc1, 0x7e, 0x79, 0x94, 0xef, 0x8c, + 0xee, 0x3d, 0xf9, 0xbc, 0x49, 0x14, 0x40, 0xdf, 0x09, 0x27, 0x83, 0xb4, 0x06, 0x95, 0x48, 0x21, + 0xfc, 0xe9, 0x6e, 0x76, 0xd9, 0xe4, 0x80, 0xe3, 0x2c, 0x86, 0x38, 0xbb, 0x1e, 0xfb, 0x57, 0x2c, + 0xa6, 0xdf, 0x16, 0xcd, 0x22, 0x61, 0xab, 0x71, 0x1c, 0x29, 0xb1, 0x17, 0x0c, 0xdb, 0xf1, 0x03, + 0x3b, 0x16, 0xfd, 0x23, 0x8b, 0x39, 0x16, 0x1d, 0xe3, 0x2b, 0xa6, 0x37, 0x60, 0x20, 0x92, 0xa9, + 0xca, 0xdb, 0x64, 0xf1, 0xd6, 0x1a, 0xc5, 0x9c, 0xab, 0xd4, 0x25, 0x47, 0x65, 0x25, 0x57, 0x6c, + 0xec, 0xbf, 0xcf, 0x47, 0x40, 0x62, 0x8e, 0xc1, 0x44, 0x37, 0x6f, 0x9a, 0xe8, 0xca, 0x1d, 0xbe, + 0x20, 0xc7, 0x54, 0xf7, 0xf7, 0xcc, 0x76, 0x33, 0xe5, 0xde, 0xbb, 0xdd, 0xa3, 0xcd, 0xfe, 0x82, + 0x05, 0x10, 0x07, 0x99, 0xef, 0x22, 0x19, 0xe5, 0xcb, 0xf4, 0x5a, 0xe3, 0x47, 0x7e, 0xcd, 0x6f, + 0x08, 0x03, 0xc5, 0xd9, 0xd8, 0x4a, 0xc8, 0xe1, 0x07, 0xda, 0x6f, 0xac, 0xa8, 0x51, 0x59, 0x86, + 0xb4, 0x2c, 0xc6, 0x76, 0x6b, 0x23, 0x9c, 0xe5, 0x97, 0x2c, 0x38, 0x91, 0xe5, 0x12, 0x4f, 0x2f, + 0xc9, 0x5c, 0xcd, 0xa9, 0xbc, 0x0d, 0xd5, 0x68, 0xde, 0x12, 0x70, 0xac, 0x28, 0xba, 0xce, 0xf2, + 0x79, 0xb8, 0xe8, 0xee, 0x37, 0x60, 0xb8, 0x12, 0x10, 0x4d, 0xbe, 0x78, 0x8d, 0x87, 0x49, 0xe1, + 0xed, 0x79, 0xf6, 0xd0, 0x21, 0x52, 0xec, 0x2f, 0x17, 0xe0, 0x04, 0x77, 0xda, 0x99, 0xd9, 0xf5, + 0xdd, 0x7a, 0xc5, 0xaf, 0x8b, 0x87, 0x8c, 0x6f, 0xc2, 0x50, 0x53, 0xd3, 0x4d, 0xb7, 0x8b, 0x54, + 0xac, 0xeb, 0xb0, 0x63, 0x6d, 0x9a, 0x0e, 0xc5, 0x06, 0x2f, 0x54, 0x87, 0x21, 0xb2, 0xeb, 0xd6, + 0x94, 0xe7, 0x47, 0xe1, 0xd0, 0x87, 0xb4, 0xaa, 0x65, 0x41, 0xe3, 0x83, 0x0d, 0xae, 0x0f, 0x21, + 0xf7, 0xbe, 0xfd, 0xa3, 0x16, 0x9c, 0xce, 0x89, 0x6b, 0x4c, 0xab, 0xbb, 0xc3, 0xdc, 0xa3, 0xc4, + 0xb4, 0x55, 0xd5, 0x71, 0xa7, 0x29, 0x2c, 0xb0, 0xe8, 0x63, 0x00, 0xdc, 0xe9, 0x89, 0x78, 0xb5, + 0x8e, 0x01, 0x60, 0x8d, 0xd8, 0x95, 0x5a, 0x18, 0x42, 0x59, 0x1e, 0x6b, 0xbc, 0xec, 0x2f, 0xf5, + 0x40, 0x2f, 0x73, 0xb2, 0x41, 0x15, 0xe8, 0xdf, 0xe2, 0x39, 0xae, 0xda, 0x8e, 0x1b, 0xa5, 0x95, + 0x69, 0xb3, 0xe2, 0x71, 0xd3, 0xa0, 0x58, 0xb2, 0x41, 0x2b, 0x30, 0xc1, 0x53, 0x8d, 0x35, 0xe6, + 0x49, 0xc3, 0xd9, 0x93, 0x6a, 0x5f, 0x9e, 0x3d, 0x5b, 0xa9, 0xbf, 0x97, 0xd2, 0x24, 0x38, 0xab, + 0x1c, 0x7a, 0x0d, 0x46, 0xe8, 0x35, 0xdc, 0x6f, 0x45, 0x92, 0x13, 0x4f, 0x32, 0xa6, 0x6e, 0x26, + 0x6b, 0x06, 0x16, 0x27, 0xa8, 0xd1, 0xab, 0x30, 0xdc, 0x4c, 0x29, 0xb8, 0x7b, 0x63, 0x4d, 0x90, + 0xa9, 0xd4, 0x36, 0x69, 0x99, 0x57, 0x7c, 0x8b, 0xbd, 0x01, 0x58, 0xdb, 0x0a, 0x48, 0xb8, 0xe5, + 0x37, 0xea, 0x4c, 0x02, 0xee, 0xd5, 0xbc, 0xe2, 0x13, 0x78, 0x9c, 0x2a, 0x41, 0xb9, 0x6c, 0x38, + 0x6e, 0xa3, 0x15, 0x90, 0x98, 0x4b, 0x9f, 0xc9, 0x65, 0x31, 0x81, 0xc7, 0xa9, 0x12, 0x9d, 0x35, + 0xf7, 0xfd, 0x47, 0xa3, 0xb9, 0xb7, 0x7f, 0xba, 0x00, 0xc6, 0xd0, 0x7e, 0xfb, 0x26, 0x3f, 0xa3, + 0x5f, 0xb6, 0x19, 0x34, 0x6b, 0xc2, 0xa1, 0x2c, 0xf3, 0xcb, 0xe2, 0xcc, 0xc7, 0xfc, 0xcb, 0xe8, + 0x7f, 0xcc, 0x4a, 0xd1, 0x35, 0x7e, 0xb2, 0x12, 0xf8, 0xf4, 0x90, 0x93, 0x81, 0xf4, 0xd4, 0xe3, + 0x93, 0x7e, 0x19, 0x64, 0xa0, 0x4d, 0xc8, 0x59, 0xe1, 0x9e, 0xcf, 0x39, 0x18, 0xbe, 0x57, 0x55, + 0x11, 0xed, 0x43, 0x72, 0x41, 0x57, 0x60, 0x50, 0x64, 0xb4, 0x62, 0x6f, 0x24, 0xf8, 0x62, 0x62, + 0xbe, 0x62, 0xf3, 0x31, 0x18, 0xeb, 0x34, 0xf6, 0x0f, 0x14, 0x60, 0x22, 0xe3, 0x91, 0x1b, 0x3f, + 0x46, 0x36, 0xdd, 0x30, 0x52, 0xc9, 0x95, 0xb5, 0x63, 0x84, 0xc3, 0xb1, 0xa2, 0xa0, 0x7b, 0x15, + 0x3f, 0xa8, 0x92, 0x87, 0x93, 0x78, 0x44, 0x22, 0xb0, 0x87, 0x4c, 0x53, 0x7c, 0x01, 0x7a, 0x5a, + 0x21, 0x91, 0xc1, 0xa2, 0xd5, 0xb1, 0xcd, 0xcc, 0xda, 0x0c, 0x43, 0xaf, 0x80, 0x9b, 0xca, 0x42, + 0xac, 0x5d, 0x01, 0xb9, 0x8d, 0x98, 0xe3, 0x68, 0xe3, 0x22, 0xe2, 0x39, 0x5e, 0x24, 0x2e, 0x8a, + 0x71, 0xd4, 0x53, 0x06, 0xc5, 0x02, 0x6b, 0x7f, 0xb1, 0x08, 0x67, 0x72, 0x9f, 0xbd, 0xd2, 0xa6, + 0xef, 0xf8, 0x9e, 0x1b, 0xf9, 0xca, 0x09, 0x8f, 0x47, 0x3a, 0x25, 0xcd, 0xad, 0x15, 0x01, 0xc7, + 0x8a, 0x02, 0x5d, 0x84, 0x5e, 0xa6, 0x14, 0x4f, 0xa5, 0x99, 0x9e, 0x9d, 0xe7, 0xa1, 0xef, 0x38, + 0x5a, 0x3b, 0xd5, 0x8b, 0x6d, 0x4f, 0xf5, 0xc7, 0xa8, 0x04, 0xe3, 0x37, 0x92, 0x07, 0x0a, 0x6d, + 0xae, 0xef, 0x37, 0x30, 0x43, 0xa2, 0x27, 0x44, 0x7f, 0x25, 0xbc, 0xce, 0xb0, 0x53, 0xf7, 0x43, + 0xad, 0xd3, 0x9e, 0x82, 0xfe, 0x6d, 0xb2, 0x17, 0xb8, 0xde, 0x66, 0xd2, 0x1b, 0xf1, 0x3a, 0x07, + 0x63, 0x89, 0x37, 0x33, 0x9e, 0xf6, 0x1f, 0x75, 0x4a, 0xff, 0x81, 0x8e, 0xe2, 0xc9, 0x0f, 0x15, + 0x61, 0x14, 0xcf, 0xce, 0xbf, 0x37, 0x10, 0x37, 0xd3, 0x03, 0x71, 0xd4, 0x29, 0xfd, 0x3b, 0x8f, + 0xc6, 0x2f, 0x5a, 0x30, 0xca, 0xf2, 0x6a, 0x89, 0x98, 0x15, 0xae, 0xef, 0x1d, 0xc3, 0x55, 0xe0, + 0x31, 0xe8, 0x0d, 0x68, 0xa5, 0xc9, 0xfc, 0xd2, 0xac, 0x25, 0x98, 0xe3, 0xd0, 0x59, 0xe8, 0x61, + 0x4d, 0xa0, 0x83, 0x37, 0xc4, 0xb7, 0xe0, 0x79, 0x27, 0x72, 0x30, 0x83, 0xb2, 0xc0, 0x6f, 0x98, + 0x34, 0x1b, 0x2e, 0x6f, 0x74, 0xec, 0xb2, 0xf0, 0xee, 0x08, 0x88, 0x91, 0xd9, 0xb4, 0x77, 0x16, + 0xf8, 0x2d, 0x9b, 0x65, 0xfb, 0x6b, 0xf6, 0x9f, 0x17, 0xe0, 0x7c, 0x66, 0xb9, 0xae, 0x03, 0xbf, + 0xb5, 0x2f, 0xfd, 0x30, 0xf3, 0x1f, 0x15, 0x8f, 0xd1, 0xd7, 0xbb, 0xa7, 0x5b, 0xe9, 0xbf, 0xb7, + 0x8b, 0x78, 0x6c, 0x99, 0x5d, 0xf6, 0x2e, 0x89, 0xc7, 0x96, 0xd9, 0xb6, 0x1c, 0x35, 0xc1, 0x5f, + 0x17, 0x72, 0xbe, 0x85, 0x29, 0x0c, 0x2e, 0xd1, 0x7d, 0x86, 0x21, 0x43, 0x79, 0x09, 0xe7, 0x7b, + 0x0c, 0x87, 0x61, 0x85, 0x45, 0x33, 0x30, 0xba, 0xe3, 0x7a, 0x74, 0xf3, 0xd9, 0x33, 0x45, 0x71, + 0x65, 0xcb, 0x58, 0x31, 0xd1, 0x38, 0x49, 0x8f, 0x5c, 0x2d, 0x56, 0x1b, 0xff, 0xba, 0x57, 0x0f, + 0xb5, 0xea, 0xa6, 0x4d, 0x77, 0x0e, 0xd5, 0x8b, 0x19, 0x71, 0xdb, 0x56, 0x34, 0x3d, 0x51, 0xb1, + 0x7b, 0x3d, 0xd1, 0x50, 0xb6, 0x8e, 0x68, 0xea, 0x55, 0x18, 0x7e, 0x60, 0xdb, 0x88, 0xfd, 0xf5, + 0x22, 0x3c, 0xd2, 0x66, 0xd9, 0xf3, 0xbd, 0xde, 0x18, 0x03, 0x6d, 0xaf, 0x4f, 0x8d, 0x43, 0x05, + 0x4e, 0x6c, 0xb4, 0x1a, 0x8d, 0x3d, 0xf6, 0x04, 0x8a, 0xd4, 0x25, 0x85, 0x90, 0x29, 0xa5, 0x72, + 0xe4, 0xc4, 0x62, 0x06, 0x0d, 0xce, 0x2c, 0x49, 0xaf, 0x58, 0xf4, 0x24, 0xd9, 0x53, 0xac, 0x12, + 0x57, 0x2c, 0xac, 0x23, 0xb1, 0x49, 0x8b, 0xae, 0xc2, 0xb8, 0xb3, 0xeb, 0xb8, 0x3c, 0xe0, 0xbd, + 0x64, 0xc0, 0xef, 0x58, 0x4a, 0x17, 0x3d, 0x93, 0x24, 0xc0, 0xe9, 0x32, 0xe8, 0x75, 0x40, 0xfe, + 0x3a, 0x7b, 0x28, 0x51, 0xbf, 0x4a, 0x3c, 0x61, 0x75, 0x67, 0x63, 0x57, 0x8c, 0xb7, 0x84, 0x1b, + 0x29, 0x0a, 0x9c, 0x51, 0x2a, 0x11, 0x98, 0xac, 0x2f, 0x3f, 0x30, 0x59, 0xfb, 0x7d, 0xb1, 0x63, + 0xea, 0xad, 0x2b, 0x30, 0x7c, 0x48, 0xf7, 0x5f, 0xfb, 0xdf, 0x58, 0xa0, 0x14, 0xc4, 0x66, 0xd4, + 0xdf, 0x57, 0x99, 0x7f, 0x32, 0x57, 0x6d, 0x6b, 0xd1, 0x92, 0x4e, 0x6a, 0xfe, 0xc9, 0x31, 0x12, + 0x9b, 0xb4, 0x7c, 0x0e, 0x69, 0x7e, 0xc5, 0xc6, 0xad, 0x40, 0x84, 0x26, 0x54, 0x14, 0xe8, 0xe3, + 0xd0, 0x5f, 0x77, 0x77, 0xdd, 0x50, 0x28, 0xc7, 0x0e, 0x6d, 0x8c, 0x8b, 0xb7, 0xce, 0x79, 0xce, + 0x06, 0x4b, 0x7e, 0xf6, 0x0f, 0x15, 0xe2, 0x3e, 0x79, 0xa3, 0xe5, 0x47, 0xce, 0x31, 0x9c, 0xe4, + 0x57, 0x8d, 0x93, 0xfc, 0x89, 0x76, 0xf1, 0x19, 0x59, 0x93, 0x72, 0x4f, 0xf0, 0x1b, 0x89, 0x13, + 0xfc, 0xc9, 0xce, 0xac, 0xda, 0x9f, 0xdc, 0xff, 0xc0, 0x82, 0x71, 0x83, 0xfe, 0x18, 0x0e, 0x90, + 0x45, 0xf3, 0x00, 0x79, 0xb4, 0xe3, 0x37, 0xe4, 0x1c, 0x1c, 0xdf, 0x5b, 0x4c, 0xb4, 0x9d, 0x1d, + 0x18, 0x6f, 0x43, 0xcf, 0x96, 0x13, 0xd4, 0xdb, 0xe5, 0xa3, 0x49, 0x15, 0x9a, 0xbe, 0xe6, 0x04, + 0xc2, 0x53, 0xe1, 0x59, 0xd9, 0xeb, 0x14, 0xd4, 0xd1, 0x4b, 0x81, 0x55, 0x85, 0x5e, 0x86, 0xbe, + 0xb0, 0xe6, 0x37, 0xd5, 0x9b, 0x29, 0x96, 0xf2, 0xb4, 0xca, 0x20, 0x07, 0xfb, 0x65, 0x64, 0x56, + 0x47, 0xc1, 0x58, 0xd0, 0xa3, 0x37, 0x61, 0x98, 0xfd, 0x52, 0x6e, 0x83, 0xc5, 0x7c, 0x0d, 0x46, + 0x55, 0x27, 0xe4, 0x3e, 0xb5, 0x06, 0x08, 0x9b, 0xac, 0xa6, 0x36, 0xa1, 0xa4, 0x3e, 0xeb, 0xa1, + 0x5a, 0xbb, 0xff, 0x55, 0x11, 0x26, 0x32, 0xe6, 0x1c, 0x0a, 0x8d, 0x91, 0xb8, 0xd2, 0xe5, 0x54, + 0x7d, 0x87, 0x63, 0x11, 0xb2, 0x0b, 0x54, 0x5d, 0xcc, 0xad, 0xae, 0x2b, 0xbd, 0x19, 0x92, 0x64, + 0xa5, 0x14, 0xd4, 0xb9, 0x52, 0x5a, 0xd9, 0xb1, 0x75, 0x35, 0xad, 0x48, 0xb5, 0xf4, 0xa1, 0x8e, + 0xe9, 0xaf, 0xf7, 0xc0, 0x89, 0xac, 0x90, 0xb1, 0xe8, 0xb3, 0x89, 0x3c, 0xca, 0x2f, 0x76, 0x1b, + 0x6c, 0x96, 0x27, 0x57, 0x16, 0x61, 0x20, 0xa7, 0xcd, 0xcc, 0xca, 0x1d, 0xbb, 0x59, 0xd4, 0xc9, + 0x02, 0xd0, 0x04, 0x3c, 0xff, 0xb5, 0xdc, 0x3e, 0x3e, 0xd0, 0x75, 0x03, 0x44, 0xe2, 0xec, 0x30, + 0xe1, 0x92, 0x24, 0xc1, 0x9d, 0x5d, 0x92, 0x64, 0xcd, 0x68, 0x09, 0xfa, 0x6a, 0xdc, 0xd7, 0xa5, + 0xd8, 0x79, 0x0b, 0xe3, 0x8e, 0x2e, 0x6a, 0x03, 0x16, 0x0e, 0x2e, 0x82, 0xc1, 0x94, 0x0b, 0x83, + 0x5a, 0xc7, 0x3c, 0xd4, 0xc9, 0xb3, 0x4d, 0x0f, 0x3e, 0xad, 0x0b, 0x1e, 0xea, 0x04, 0xfa, 0x51, + 0x0b, 0x12, 0x0f, 0x5e, 0x94, 0x52, 0xce, 0xca, 0x55, 0xca, 0x5d, 0x80, 0x9e, 0xc0, 0x6f, 0x90, + 0x64, 0x06, 0x62, 0xec, 0x37, 0x08, 0x66, 0x18, 0x4a, 0x11, 0xc5, 0xaa, 0x96, 0x21, 0xfd, 0x1a, + 0x29, 0x2e, 0x88, 0x8f, 0x41, 0x6f, 0x83, 0xec, 0x92, 0x46, 0x32, 0x51, 0xdc, 0x32, 0x05, 0x62, + 0x8e, 0xb3, 0x7f, 0xb1, 0x07, 0xce, 0xb5, 0x8d, 0x06, 0x45, 0x2f, 0x63, 0x9b, 0x4e, 0x44, 0xee, + 0x38, 0x7b, 0xc9, 0x8c, 0x4e, 0x57, 0x39, 0x18, 0x4b, 0x3c, 0x7b, 0xfe, 0xc9, 0x13, 0x33, 0x24, + 0x54, 0x98, 0x22, 0x1f, 0x83, 0xc0, 0x9a, 0x2a, 0xb1, 0xe2, 0x51, 0xa8, 0xc4, 0x9e, 0x07, 0x08, + 0xc3, 0x06, 0x77, 0x0b, 0xac, 0x8b, 0x77, 0xa5, 0x71, 0x02, 0x8f, 0xea, 0xb2, 0xc0, 0x60, 0x8d, + 0x0a, 0xcd, 0xc3, 0x58, 0x33, 0xf0, 0x23, 0xae, 0x11, 0x9e, 0xe7, 0x9e, 0xb3, 0xbd, 0x66, 0x20, + 0x9e, 0x4a, 0x02, 0x8f, 0x53, 0x25, 0xd0, 0x4b, 0x30, 0x28, 0x82, 0xf3, 0x54, 0x7c, 0xbf, 0x21, + 0x94, 0x50, 0xca, 0x99, 0xb4, 0x1a, 0xa3, 0xb0, 0x4e, 0xa7, 0x15, 0x63, 0x6a, 0xe6, 0xfe, 0xcc, + 0x62, 0x5c, 0xd5, 0xac, 0xd1, 0x25, 0x22, 0x51, 0x0f, 0x74, 0x15, 0x89, 0x3a, 0x56, 0xcb, 0x95, + 0xba, 0xb6, 0x7a, 0x42, 0x47, 0x45, 0xd6, 0x57, 0x7a, 0x60, 0x42, 0x4c, 0x9c, 0x87, 0x3d, 0x5d, + 0x6e, 0xa6, 0xa7, 0xcb, 0x51, 0x28, 0xee, 0xde, 0x9b, 0x33, 0xc7, 0x3d, 0x67, 0x7e, 0xd8, 0x02, + 0x53, 0x52, 0x43, 0xff, 0x5b, 0x6e, 0x4a, 0xbc, 0x97, 0x72, 0x25, 0xbf, 0x38, 0xca, 0xef, 0x3b, + 0x4b, 0x8e, 0x67, 0xff, 0x6b, 0x0b, 0x1e, 0xed, 0xc8, 0x11, 0x2d, 0x40, 0x89, 0x89, 0x93, 0xda, + 0x45, 0xef, 0x49, 0xe5, 0x59, 0x2f, 0x11, 0x39, 0xd2, 0x6d, 0x5c, 0x12, 0x2d, 0xa4, 0x72, 0x0f, + 0x3e, 0x95, 0x91, 0x7b, 0xf0, 0xa4, 0xd1, 0x3d, 0x0f, 0x98, 0x7c, 0xf0, 0x07, 0xe9, 0x89, 0x63, + 0xbc, 0x6a, 0x43, 0x1f, 0x30, 0x94, 0x8e, 0x76, 0x42, 0xe9, 0x88, 0x4c, 0x6a, 0xed, 0x0c, 0xf9, + 0x28, 0x8c, 0xb1, 0xa8, 0x7d, 0xec, 0x9d, 0x87, 0x78, 0x6f, 0x57, 0x88, 0x7d, 0xb9, 0x97, 0x13, + 0x38, 0x9c, 0xa2, 0xb6, 0xff, 0xb4, 0x08, 0x7d, 0x7c, 0xf9, 0x1d, 0xc3, 0xf5, 0xf2, 0x19, 0x28, + 0xb9, 0x3b, 0x3b, 0x2d, 0x9e, 0x4e, 0xae, 0x37, 0xf6, 0x0c, 0x5e, 0x92, 0x40, 0x1c, 0xe3, 0xd1, + 0xa2, 0xd0, 0x77, 0xb7, 0x09, 0x0c, 0xcc, 0x1b, 0x3e, 0x3d, 0xef, 0x44, 0x0e, 0x97, 0x95, 0xd4, + 0x39, 0x1b, 0x6b, 0xc6, 0xd1, 0xa7, 0x00, 0xc2, 0x28, 0x70, 0xbd, 0x4d, 0x0a, 0x13, 0xb1, 0xd5, + 0x9f, 0x6e, 0xc3, 0xad, 0xaa, 0x88, 0x39, 0xcf, 0x78, 0xcf, 0x51, 0x08, 0xac, 0x71, 0x44, 0xd3, + 0xc6, 0x49, 0x3f, 0x95, 0x18, 0x3b, 0xe0, 0x5c, 0xe3, 0x31, 0x9b, 0xfa, 0x20, 0x94, 0x14, 0xf3, + 0x4e, 0xda, 0xaf, 0x21, 0x5d, 0x2c, 0xfa, 0x08, 0x8c, 0x26, 0xda, 0x76, 0x28, 0xe5, 0xd9, 0x2f, + 0x59, 0x30, 0xca, 0x1b, 0xb3, 0xe0, 0xed, 0x8a, 0xd3, 0xe0, 0x1e, 0x9c, 0x68, 0x64, 0xec, 0xca, + 0x62, 0xf8, 0xbb, 0xdf, 0xc5, 0x95, 0xb2, 0x2c, 0x0b, 0x8b, 0x33, 0xeb, 0x40, 0x97, 0xe8, 0x8a, + 0xa3, 0xbb, 0xae, 0xd3, 0x10, 0xf1, 0x0d, 0x86, 0xf8, 0x6a, 0xe3, 0x30, 0xac, 0xb0, 0xf6, 0x1f, + 0x58, 0x30, 0xce, 0x5b, 0x7e, 0x9d, 0xec, 0xa9, 0xbd, 0xe9, 0x9b, 0xd9, 0x76, 0x91, 0xc8, 0xb4, + 0x90, 0x93, 0xc8, 0x54, 0xff, 0xb4, 0x62, 0xdb, 0x4f, 0xfb, 0xb2, 0x05, 0x62, 0x86, 0x1c, 0x83, + 0x3e, 0xe3, 0x3b, 0x4c, 0x7d, 0xc6, 0x54, 0xfe, 0x22, 0xc8, 0x51, 0x64, 0xfc, 0x95, 0x05, 0x63, + 0x9c, 0x20, 0xb6, 0xd5, 0x7f, 0x53, 0xc7, 0x61, 0xd6, 0xfc, 0xa2, 0x4c, 0xe7, 0xcb, 0xeb, 0x64, + 0x6f, 0xcd, 0xaf, 0x38, 0xd1, 0x56, 0xf6, 0x47, 0x19, 0x83, 0xd5, 0xd3, 0x76, 0xb0, 0xea, 0x72, + 0x01, 0x19, 0x79, 0xbe, 0x3a, 0x04, 0x08, 0x38, 0x6c, 0x9e, 0x2f, 0xfb, 0xcf, 0x2c, 0x40, 0xbc, + 0x1a, 0x43, 0x70, 0xa3, 0xe2, 0x10, 0x83, 0x6a, 0x07, 0x5d, 0xbc, 0x35, 0x29, 0x0c, 0xd6, 0xa8, + 0x8e, 0xa4, 0x7b, 0x12, 0x0e, 0x17, 0xc5, 0xce, 0x0e, 0x17, 0x87, 0xe8, 0xd1, 0x7f, 0xd6, 0x07, + 0xc9, 0x97, 0x7d, 0xe8, 0x16, 0x0c, 0xd5, 0x9c, 0xa6, 0xb3, 0xee, 0x36, 0xdc, 0xc8, 0x25, 0x61, + 0x3b, 0x6f, 0xac, 0x39, 0x8d, 0x4e, 0x98, 0xc8, 0x35, 0x08, 0x36, 0xf8, 0xa0, 0x69, 0x80, 0x66, + 0xe0, 0xee, 0xba, 0x0d, 0xb2, 0xc9, 0xd4, 0x2e, 0x2c, 0xa2, 0x0a, 0x77, 0x0d, 0x93, 0x50, 0xac, + 0x51, 0x64, 0x84, 0x51, 0x28, 0x3e, 0xe4, 0x30, 0x0a, 0x70, 0x6c, 0x61, 0x14, 0x7a, 0x0e, 0x15, + 0x46, 0x61, 0xe0, 0xd0, 0x61, 0x14, 0x7a, 0xbb, 0x0a, 0xa3, 0x80, 0xe1, 0x94, 0x94, 0x3d, 0xe9, + 0xff, 0x45, 0xb7, 0x41, 0xc4, 0x85, 0x83, 0x87, 0x81, 0x99, 0xba, 0xbf, 0x5f, 0x3e, 0x85, 0x33, + 0x29, 0x70, 0x4e, 0x49, 0xf4, 0x31, 0x98, 0x74, 0x1a, 0x0d, 0xff, 0x8e, 0x1a, 0xd4, 0x85, 0xb0, + 0xe6, 0x34, 0xb8, 0x09, 0xa4, 0x9f, 0x71, 0x3d, 0x7b, 0x7f, 0xbf, 0x3c, 0x39, 0x93, 0x43, 0x83, + 0x73, 0x4b, 0xa3, 0x0f, 0x43, 0xa9, 0x19, 0xf8, 0xb5, 0x15, 0xed, 0xf9, 0xf1, 0x79, 0xda, 0x81, + 0x15, 0x09, 0x3c, 0xd8, 0x2f, 0x0f, 0xab, 0x3f, 0xec, 0xc0, 0x8f, 0x0b, 0x64, 0xc4, 0x45, 0x18, + 0x3c, 0xd2, 0xb8, 0x08, 0xdb, 0x30, 0x51, 0x25, 0x81, 0xeb, 0x34, 0xdc, 0x7b, 0x54, 0x5e, 0x96, + 0xfb, 0xd3, 0x1a, 0x94, 0x82, 0xc4, 0x8e, 0xdc, 0x55, 0xb0, 0x5e, 0x2d, 0xe1, 0x92, 0xdc, 0x81, + 0x63, 0x46, 0xf6, 0x7f, 0xb3, 0xa0, 0x5f, 0xbc, 0xe4, 0x3b, 0x06, 0xa9, 0x71, 0xc6, 0x30, 0x4a, + 0x94, 0xb3, 0x3b, 0x8c, 0x35, 0x26, 0xd7, 0x1c, 0xb1, 0x94, 0x30, 0x47, 0x3c, 0xda, 0x8e, 0x49, + 0x7b, 0x43, 0xc4, 0xff, 0x57, 0xa4, 0xd2, 0xbb, 0xf1, 0xa6, 0xfc, 0xe1, 0x77, 0xc1, 0x2a, 0xf4, + 0x87, 0xe2, 0x4d, 0x73, 0x21, 0xff, 0x35, 0x48, 0x72, 0x10, 0x63, 0x2f, 0x3a, 0xf1, 0x8a, 0x59, + 0x32, 0xc9, 0x7c, 0x2c, 0x5d, 0x7c, 0x88, 0x8f, 0xa5, 0x3b, 0xbd, 0xba, 0xef, 0x39, 0x8a, 0x57, + 0xf7, 0xf6, 0xd7, 0xd8, 0xc9, 0xa9, 0xc3, 0x8f, 0x41, 0xa8, 0xba, 0x6a, 0x9e, 0xb1, 0x76, 0x9b, + 0x99, 0x25, 0x1a, 0x95, 0x23, 0x5c, 0xfd, 0x82, 0x05, 0xe7, 0x32, 0xbe, 0x4a, 0x93, 0xb4, 0x9e, + 0x85, 0x01, 0xa7, 0x55, 0x77, 0xd5, 0x5a, 0xd6, 0x4c, 0x93, 0x33, 0x02, 0x8e, 0x15, 0x05, 0x9a, + 0x83, 0x71, 0x72, 0xb7, 0xe9, 0x72, 0x43, 0xae, 0xee, 0x7c, 0x5c, 0xe4, 0xcf, 0x3f, 0x17, 0x92, + 0x48, 0x9c, 0xa6, 0x57, 0x01, 0xa2, 0x8a, 0xb9, 0x01, 0xa2, 0x7e, 0xde, 0x82, 0x41, 0xf5, 0xaa, + 0xf7, 0xa1, 0xf7, 0xf6, 0x47, 0xcd, 0xde, 0x7e, 0xa4, 0x4d, 0x6f, 0xe7, 0x74, 0xf3, 0xef, 0x15, + 0x54, 0x7b, 0x2b, 0x7e, 0x10, 0x75, 0x21, 0xc1, 0x3d, 0xf8, 0xc3, 0x89, 0x2b, 0x30, 0xe8, 0x34, + 0x9b, 0x12, 0x21, 0x3d, 0xe0, 0x58, 0xe8, 0xf5, 0x18, 0x8c, 0x75, 0x1a, 0xf5, 0x8e, 0xa3, 0x98, + 0xfb, 0x8e, 0xa3, 0x0e, 0x10, 0x39, 0xc1, 0x26, 0x89, 0x28, 0x4c, 0x38, 0xec, 0xe6, 0xef, 0x37, + 0xad, 0xc8, 0x6d, 0x4c, 0xbb, 0x5e, 0x14, 0x46, 0xc1, 0xf4, 0x92, 0x17, 0xdd, 0x08, 0xf8, 0x15, + 0x52, 0x0b, 0xb1, 0xa6, 0x78, 0x61, 0x8d, 0xaf, 0x8c, 0x60, 0xc1, 0xea, 0xe8, 0x35, 0x5d, 0x29, + 0x56, 0x05, 0x1c, 0x2b, 0x0a, 0xfb, 0x83, 0xec, 0xf4, 0x61, 0x7d, 0x7a, 0xb8, 0xf0, 0x62, 0x3f, + 0x39, 0xa4, 0x46, 0x83, 0x19, 0x45, 0xe7, 0xf5, 0x20, 0x66, 0xed, 0x37, 0x7b, 0x5a, 0xb1, 0xfe, + 0x22, 0x32, 0x8e, 0x74, 0x86, 0x3e, 0x91, 0x72, 0x8f, 0x79, 0xae, 0xc3, 0xa9, 0x71, 0x08, 0x87, + 0x18, 0x96, 0x87, 0x89, 0x65, 0xa9, 0x59, 0xaa, 0x88, 0x75, 0xa1, 0xe5, 0x61, 0x12, 0x08, 0x1c, + 0xd3, 0x50, 0x61, 0x4a, 0xfd, 0x09, 0x27, 0x51, 0x1c, 0x0b, 0x58, 0x51, 0x87, 0x58, 0xa3, 0x40, + 0x97, 0x85, 0x42, 0x81, 0xdb, 0x05, 0x1e, 0x49, 0x28, 0x14, 0x64, 0x77, 0x69, 0x5a, 0xa0, 0x2b, + 0x30, 0x48, 0xee, 0x46, 0x24, 0xf0, 0x9c, 0x06, 0xad, 0xa1, 0x37, 0x8e, 0x9f, 0xb9, 0x10, 0x83, + 0xb1, 0x4e, 0x83, 0xd6, 0x60, 0x34, 0xe4, 0x7a, 0x36, 0x15, 0x24, 0x9e, 0xeb, 0x2b, 0x9f, 0x56, + 0xef, 0xa9, 0x4d, 0xf4, 0x01, 0x03, 0xf1, 0xdd, 0x49, 0x46, 0x99, 0x48, 0xb2, 0x40, 0xaf, 0xc1, + 0x48, 0xc3, 0x77, 0xea, 0xb3, 0x4e, 0xc3, 0xf1, 0x6a, 0xac, 0x7f, 0x06, 0xcc, 0x44, 0xd4, 0xcb, + 0x06, 0x16, 0x27, 0xa8, 0xa9, 0xf0, 0xa6, 0x43, 0x44, 0x98, 0x36, 0xc7, 0xdb, 0x24, 0xa1, 0xc8, + 0x07, 0xcf, 0x84, 0xb7, 0xe5, 0x1c, 0x1a, 0x9c, 0x5b, 0x1a, 0xbd, 0x0c, 0x43, 0xf2, 0xf3, 0xb5, + 0xa0, 0x2c, 0xf1, 0x93, 0x18, 0x0d, 0x87, 0x0d, 0x4a, 0x14, 0xc2, 0x49, 0xf9, 0x7f, 0x2d, 0x70, + 0x36, 0x36, 0xdc, 0x9a, 0x88, 0x54, 0xc0, 0x9f, 0x0f, 0x7f, 0x44, 0xbe, 0x55, 0x5c, 0xc8, 0x22, + 0x3a, 0xd8, 0x2f, 0x9f, 0x15, 0xbd, 0x96, 0x89, 0xc7, 0xd9, 0xbc, 0xd1, 0x0a, 0x4c, 0x6c, 0x11, + 0xa7, 0x11, 0x6d, 0xcd, 0x6d, 0x91, 0xda, 0xb6, 0x5c, 0x70, 0x2c, 0xcc, 0x8b, 0xf6, 0x74, 0xe4, + 0x5a, 0x9a, 0x04, 0x67, 0x95, 0x43, 0x6f, 0xc1, 0x64, 0xb3, 0xb5, 0xde, 0x70, 0xc3, 0xad, 0x55, + 0x3f, 0x62, 0x4e, 0x48, 0x33, 0xf5, 0x7a, 0x40, 0x42, 0xfe, 0xba, 0x94, 0x1d, 0xbd, 0x32, 0x90, + 0x4e, 0x25, 0x87, 0x0e, 0xe7, 0x72, 0x40, 0xf7, 0xe0, 0x64, 0x62, 0x22, 0x88, 0x88, 0x18, 0x23, + 0xf9, 0x29, 0x62, 0xaa, 0x59, 0x05, 0x44, 0x70, 0x99, 0x2c, 0x14, 0xce, 0xae, 0x02, 0xbd, 0x02, + 0xe0, 0x36, 0x17, 0x9d, 0x1d, 0xb7, 0x41, 0xaf, 0x8a, 0x13, 0x6c, 0x8e, 0xd0, 0x6b, 0x03, 0x2c, + 0x55, 0x24, 0x94, 0xee, 0xcd, 0xe2, 0xdf, 0x1e, 0xd6, 0xa8, 0xd1, 0x32, 0x8c, 0x88, 0x7f, 0x7b, + 0x62, 0x48, 0x79, 0x60, 0x96, 0xc7, 0x59, 0x54, 0xad, 0x8a, 0x8e, 0x39, 0x48, 0x41, 0x70, 0xa2, + 0x2c, 0xda, 0x84, 0x73, 0x32, 0xd1, 0x9f, 0x3e, 0x3f, 0xe5, 0x18, 0x84, 0x2c, 0x2f, 0xcb, 0x00, + 0x7f, 0x95, 0x32, 0xd3, 0x8e, 0x10, 0xb7, 0xe7, 0x43, 0xcf, 0x75, 0x7d, 0x9a, 0xf3, 0x37, 0xc7, + 0x27, 0xe3, 0x88, 0x83, 0xcb, 0x49, 0x24, 0x4e, 0xd3, 0x23, 0x1f, 0x4e, 0xba, 0x5e, 0xd6, 0xac, + 0x3e, 0xc5, 0x18, 0x7d, 0x88, 0x3f, 0xb7, 0x6e, 0x3f, 0xa3, 0x33, 0xf1, 0x38, 0x9b, 0xef, 0x3b, + 0xf3, 0xfb, 0xfb, 0x7d, 0x8b, 0x96, 0xd6, 0xa4, 0x73, 0xf4, 0x69, 0x18, 0xd2, 0x3f, 0x4a, 0x48, + 0x1a, 0x17, 0xb3, 0x85, 0x57, 0x6d, 0x4f, 0xe0, 0xb2, 0xbd, 0x5a, 0xf7, 0x3a, 0x0e, 0x1b, 0x1c, + 0x51, 0x2d, 0x23, 0xb6, 0xc1, 0xe5, 0xee, 0x24, 0x99, 0xee, 0xdd, 0xde, 0x08, 0x64, 0x4f, 0x77, + 0xb4, 0x0c, 0x03, 0xb5, 0x86, 0x4b, 0xbc, 0x68, 0xa9, 0xd2, 0x2e, 0x7a, 0xe3, 0x9c, 0xa0, 0x11, + 0xeb, 0x47, 0xa4, 0x58, 0xe1, 0x30, 0xac, 0x38, 0xd8, 0xbf, 0x59, 0x80, 0x72, 0x87, 0x7c, 0x3d, + 0x09, 0x33, 0x94, 0xd5, 0x95, 0x19, 0x6a, 0x06, 0x46, 0xe3, 0x7f, 0xba, 0x86, 0x4b, 0x79, 0xb2, + 0xde, 0x32, 0xd1, 0x38, 0x49, 0xdf, 0xf5, 0xa3, 0x04, 0xdd, 0x92, 0xd5, 0xd3, 0xf1, 0x59, 0x8d, + 0x61, 0xc1, 0xee, 0xed, 0xfe, 0xda, 0x9b, 0x6b, 0x8d, 0xb4, 0xbf, 0x56, 0x80, 0x93, 0xaa, 0x0b, + 0xbf, 0x7d, 0x3b, 0xee, 0x66, 0xba, 0xe3, 0x8e, 0xc0, 0x96, 0x6b, 0xdf, 0x80, 0x3e, 0x1e, 0x8e, + 0xb2, 0x0b, 0x71, 0xfb, 0x31, 0x33, 0x4a, 0xb6, 0x92, 0xf0, 0x8c, 0x48, 0xd9, 0xdf, 0x6f, 0xc1, + 0x68, 0xe2, 0x75, 0x1b, 0xc2, 0xda, 0x13, 0xe8, 0x07, 0x11, 0x89, 0xb3, 0x84, 0xed, 0x0b, 0xd0, + 0xb3, 0xe5, 0x87, 0x51, 0xd2, 0xd1, 0xe3, 0x9a, 0x1f, 0x46, 0x98, 0x61, 0xec, 0x3f, 0xb4, 0xa0, + 0x77, 0xcd, 0x71, 0xbd, 0x48, 0x1a, 0x05, 0xac, 0x1c, 0xa3, 0x40, 0x37, 0xdf, 0x85, 0x5e, 0x82, + 0x3e, 0xb2, 0xb1, 0x41, 0x6a, 0x91, 0x18, 0x55, 0x19, 0x0a, 0xa1, 0x6f, 0x81, 0x41, 0xa9, 0xfc, + 0xc7, 0x2a, 0xe3, 0x7f, 0xb1, 0x20, 0x46, 0xb7, 0xa1, 0x14, 0xb9, 0x3b, 0x64, 0xa6, 0x5e, 0x17, + 0xa6, 0xf2, 0x07, 0x88, 0xdf, 0xb1, 0x26, 0x19, 0xe0, 0x98, 0x97, 0xfd, 0xc5, 0x02, 0x40, 0x1c, + 0xc7, 0xab, 0xd3, 0x27, 0xce, 0xa6, 0x8c, 0xa8, 0x17, 0x33, 0x8c, 0xa8, 0x28, 0x66, 0x98, 0x61, + 0x41, 0x55, 0xdd, 0x54, 0xec, 0xaa, 0x9b, 0x7a, 0x0e, 0xd3, 0x4d, 0x73, 0x30, 0x1e, 0xc7, 0x21, + 0x33, 0xc3, 0x30, 0xb2, 0xa3, 0x73, 0x2d, 0x89, 0xc4, 0x69, 0x7a, 0x9b, 0xc0, 0x05, 0x15, 0x8e, + 0x49, 0x9c, 0x68, 0xcc, 0x0f, 0x5c, 0x37, 0x4a, 0x77, 0xe8, 0xa7, 0xd8, 0x4a, 0x5c, 0xc8, 0xb5, + 0x12, 0xff, 0x84, 0x05, 0x27, 0x92, 0xf5, 0xb0, 0x47, 0xd3, 0x5f, 0xb0, 0xe0, 0x24, 0xb3, 0x95, + 0xb3, 0x5a, 0xd3, 0x96, 0xf9, 0x17, 0xdb, 0x86, 0x98, 0xca, 0x69, 0x71, 0x1c, 0x73, 0x63, 0x25, + 0x8b, 0x35, 0xce, 0xae, 0xd1, 0xfe, 0xaf, 0x3d, 0x30, 0x99, 0x17, 0x9b, 0x8a, 0x3d, 0x13, 0x71, + 0xee, 0x56, 0xb7, 0xc9, 0x1d, 0xe1, 0x8c, 0x1f, 0x3f, 0x13, 0xe1, 0x60, 0x2c, 0xf1, 0xc9, 0xf4, + 0x27, 0x85, 0x2e, 0xd3, 0x9f, 0x6c, 0xc1, 0xf8, 0x9d, 0x2d, 0xe2, 0xdd, 0xf4, 0x42, 0x27, 0x72, + 0xc3, 0x0d, 0x97, 0xd9, 0x95, 0xf9, 0xbc, 0x91, 0x39, 0xa8, 0xc7, 0x6f, 0x27, 0x09, 0x0e, 0xf6, + 0xcb, 0xe7, 0x0c, 0x40, 0xdc, 0x64, 0xbe, 0x91, 0xe0, 0x34, 0xd3, 0x74, 0xf6, 0x98, 0x9e, 0x87, + 0x9c, 0x3d, 0x66, 0xc7, 0x15, 0xde, 0x28, 0xf2, 0x0d, 0x00, 0xbb, 0x31, 0xae, 0x28, 0x28, 0xd6, + 0x28, 0xd0, 0x27, 0x01, 0xe9, 0x19, 0xba, 0x8c, 0xd0, 0xa0, 0xcf, 0xdd, 0xdf, 0x2f, 0xa3, 0xd5, + 0x14, 0xf6, 0x60, 0xbf, 0x3c, 0x41, 0xa1, 0x4b, 0x1e, 0xbd, 0x79, 0xc6, 0xf1, 0xd4, 0x32, 0x18, + 0xa1, 0xdb, 0x30, 0x46, 0xa1, 0x6c, 0x45, 0xc9, 0xb8, 0xa3, 0xfc, 0xb6, 0xf8, 0xcc, 0xfd, 0xfd, + 0xf2, 0xd8, 0x6a, 0x02, 0x97, 0xc7, 0x3a, 0xc5, 0x04, 0xbd, 0x02, 0x23, 0xf1, 0xbc, 0xba, 0x4e, + 0xf6, 0x78, 0x80, 0x9e, 0x12, 0x57, 0x78, 0xaf, 0x18, 0x18, 0x9c, 0xa0, 0xb4, 0xbf, 0x60, 0xc1, + 0x99, 0xdc, 0x8c, 0xf8, 0xe8, 0x12, 0x0c, 0x38, 0x4d, 0x97, 0x9b, 0x2f, 0xc4, 0x51, 0xc3, 0xd4, + 0x64, 0x95, 0x25, 0x6e, 0xbc, 0x50, 0x58, 0xba, 0xc3, 0x6f, 0xbb, 0x5e, 0x3d, 0xb9, 0xc3, 0x5f, + 0x77, 0xbd, 0x3a, 0x66, 0x18, 0x75, 0x64, 0x15, 0x73, 0x9f, 0x22, 0x7c, 0x85, 0xae, 0xd5, 0x8c, + 0xdc, 0xf9, 0xc7, 0xdb, 0x0c, 0xf4, 0x8c, 0x6e, 0x6a, 0x14, 0x5e, 0x85, 0xb9, 0x66, 0xc6, 0xef, + 0xb3, 0x40, 0x3c, 0x5d, 0xee, 0xe2, 0x4c, 0x7e, 0x13, 0x86, 0x76, 0xd3, 0xd9, 0x0b, 0x2f, 0xe4, + 0xbf, 0xe5, 0x16, 0x11, 0xd7, 0x95, 0xa0, 0x6d, 0x64, 0x2a, 0x34, 0x78, 0xd9, 0x75, 0x10, 0xd8, + 0x79, 0xc2, 0x0c, 0x0a, 0x9d, 0x5b, 0xf3, 0x3c, 0x40, 0x9d, 0xd1, 0xb2, 0x94, 0xc6, 0x05, 0x53, + 0xe2, 0x9a, 0x57, 0x18, 0xac, 0x51, 0xd9, 0xff, 0xbc, 0x00, 0x83, 0x32, 0x5b, 0x5e, 0xcb, 0xeb, + 0x46, 0xed, 0x77, 0xa8, 0xf4, 0xd9, 0xe8, 0x32, 0x94, 0x98, 0x5e, 0xba, 0x12, 0x6b, 0x4b, 0x95, + 0x56, 0x68, 0x45, 0x22, 0x70, 0x4c, 0x43, 0x77, 0xc7, 0xb0, 0xb5, 0xce, 0xc8, 0x13, 0x0f, 0x6d, + 0xab, 0x1c, 0x8c, 0x25, 0x1e, 0x7d, 0x0c, 0xc6, 0x78, 0xb9, 0xc0, 0x6f, 0x3a, 0x9b, 0xdc, 0x96, + 0xd5, 0xab, 0xa2, 0x97, 0x8c, 0xad, 0x24, 0x70, 0x07, 0xfb, 0xe5, 0x13, 0x49, 0x18, 0x33, 0xd2, + 0xa6, 0xb8, 0x30, 0x97, 0x35, 0x5e, 0x09, 0xdd, 0xd5, 0x53, 0x9e, 0x6e, 0x31, 0x0a, 0xeb, 0x74, + 0xf6, 0xa7, 0x01, 0xa5, 0xf3, 0x06, 0xa2, 0xd7, 0xb9, 0xcb, 0xb3, 0x1b, 0x90, 0x7a, 0x3b, 0xa3, + 0xad, 0x1e, 0xa3, 0x43, 0xbe, 0x91, 0xe3, 0xa5, 0xb0, 0x2a, 0x6f, 0xff, 0x9f, 0x45, 0x18, 0x4b, + 0x46, 0x05, 0x40, 0xd7, 0xa0, 0x8f, 0x8b, 0x94, 0x82, 0x7d, 0x1b, 0x9f, 0x20, 0x2d, 0x96, 0x00, + 0x3b, 0x5c, 0x85, 0x54, 0x2a, 0xca, 0xa3, 0xb7, 0x60, 0xb0, 0xee, 0xdf, 0xf1, 0xee, 0x38, 0x41, + 0x7d, 0xa6, 0xb2, 0x24, 0xa6, 0x73, 0xa6, 0xa2, 0x62, 0x3e, 0x26, 0xd3, 0xe3, 0x13, 0x30, 0xfb, + 0x77, 0x8c, 0xc2, 0x3a, 0x3b, 0xb4, 0xc6, 0x12, 0x7d, 0x6c, 0xb8, 0x9b, 0x2b, 0x4e, 0xb3, 0xdd, + 0xfb, 0x97, 0x39, 0x49, 0xa4, 0x71, 0x1e, 0x16, 0xd9, 0x40, 0x38, 0x02, 0xc7, 0x8c, 0xd0, 0x67, + 0x61, 0x22, 0xcc, 0x31, 0x9d, 0xe4, 0xa5, 0x91, 0x6d, 0x67, 0x4d, 0x98, 0x3d, 0x7d, 0x7f, 0xbf, + 0x3c, 0x91, 0x65, 0x64, 0xc9, 0xaa, 0xc6, 0xfe, 0xd2, 0x09, 0x30, 0x16, 0xb1, 0x91, 0x55, 0xdc, + 0x3a, 0xa2, 0xac, 0xe2, 0x18, 0x06, 0xc8, 0x4e, 0x33, 0xda, 0x9b, 0x77, 0x03, 0x31, 0x26, 0x99, + 0x3c, 0x17, 0x04, 0x4d, 0x9a, 0xa7, 0xc4, 0x60, 0xc5, 0x27, 0x3b, 0xf5, 0x7b, 0xf1, 0x9b, 0x98, + 0xfa, 0xbd, 0xe7, 0x18, 0x53, 0xbf, 0xaf, 0x42, 0xff, 0xa6, 0x1b, 0x61, 0xd2, 0xf4, 0xc5, 0x65, + 0x2e, 0x73, 0x1e, 0x5e, 0xe5, 0x24, 0xe9, 0x24, 0xc3, 0x02, 0x81, 0x25, 0x13, 0xf4, 0xba, 0x5a, + 0x81, 0x7d, 0xf9, 0x0a, 0x97, 0xb4, 0xf3, 0x4a, 0xe6, 0x1a, 0x14, 0x09, 0xde, 0xfb, 0x1f, 0x34, + 0xc1, 0xfb, 0xa2, 0x4c, 0xcb, 0x3e, 0x90, 0xff, 0x58, 0x8d, 0x65, 0x5d, 0xef, 0x90, 0x8c, 0xfd, + 0x96, 0x9e, 0xca, 0xbe, 0x94, 0xbf, 0x13, 0xa8, 0x2c, 0xf5, 0x5d, 0x26, 0xb0, 0xff, 0x3e, 0x0b, + 0x4e, 0x26, 0x53, 0xcd, 0xb2, 0x37, 0x15, 0xc2, 0xcf, 0xe3, 0xa5, 0x6e, 0x72, 0xff, 0xb2, 0x02, + 0x46, 0x85, 0x4c, 0x47, 0x9a, 0x49, 0x86, 0xb3, 0xab, 0xa3, 0x1d, 0x1d, 0xac, 0xd7, 0x85, 0xbf, + 0xc1, 0x63, 0x39, 0x99, 0xf0, 0xdb, 0xe4, 0xbf, 0x5f, 0xcb, 0xc8, 0xba, 0xfe, 0x78, 0x5e, 0xd6, + 0xf5, 0xae, 0x73, 0xad, 0xbf, 0xae, 0x72, 0xe0, 0x0f, 0xe7, 0x4f, 0x25, 0x9e, 0xe1, 0xbe, 0x63, + 0xe6, 0xfb, 0xd7, 0x55, 0xe6, 0xfb, 0x36, 0x91, 0xc5, 0x79, 0x5e, 0xfb, 0x8e, 0xf9, 0xee, 0xb5, + 0x9c, 0xf5, 0xa3, 0x47, 0x93, 0xb3, 0xde, 0x38, 0x6a, 0x78, 0xda, 0xf4, 0x67, 0x3a, 0x1c, 0x35, + 0x06, 0xdf, 0xf6, 0x87, 0x0d, 0xcf, 0xcf, 0x3f, 0xfe, 0x40, 0xf9, 0xf9, 0x6f, 0xe9, 0xf9, 0xee, + 0x51, 0x87, 0x84, 0xee, 0x94, 0xa8, 0xcb, 0x2c, 0xf7, 0xb7, 0xf4, 0x03, 0x70, 0x22, 0x9f, 0xaf, + 0x3a, 0xe7, 0xd2, 0x7c, 0x33, 0x8f, 0xc0, 0x54, 0xf6, 0xfc, 0x13, 0xc7, 0x93, 0x3d, 0xff, 0xe4, + 0x91, 0x67, 0xcf, 0x3f, 0x75, 0x0c, 0xd9, 0xf3, 0x4f, 0x1f, 0x63, 0xf6, 0xfc, 0x5b, 0xcc, 0x39, + 0x8a, 0x07, 0x80, 0x12, 0x91, 0xd0, 0x9f, 0xca, 0x89, 0x9f, 0x96, 0x8e, 0x12, 0xc5, 0x3f, 0x4e, + 0xa1, 0x70, 0xcc, 0x2a, 0x23, 0x2b, 0xff, 0xe4, 0x43, 0xc8, 0xca, 0xbf, 0x1a, 0x67, 0xe5, 0x3f, + 0x93, 0x3f, 0xd4, 0x19, 0xcf, 0x69, 0x72, 0x72, 0xf1, 0xdf, 0xd2, 0x73, 0xe8, 0x3f, 0xd2, 0xc6, + 0x0a, 0x96, 0xa5, 0x50, 0x6e, 0x93, 0x39, 0xff, 0x35, 0x9e, 0x39, 0xff, 0x6c, 0xfe, 0x4e, 0x9e, + 0x3c, 0xee, 0x8c, 0x7c, 0xf9, 0xb4, 0x5d, 0x2a, 0xf8, 0x2b, 0x8b, 0xf9, 0x9e, 0xd3, 0x2e, 0x15, + 0x3d, 0x36, 0xdd, 0x2e, 0x85, 0xc2, 0x31, 0x2b, 0xfb, 0x07, 0x0a, 0x70, 0xbe, 0xfd, 0x7a, 0x8b, + 0xb5, 0xe4, 0x95, 0xd8, 0x21, 0x20, 0xa1, 0x25, 0xe7, 0x77, 0xb6, 0x98, 0xaa, 0xeb, 0x78, 0x90, + 0x57, 0x61, 0x5c, 0xbd, 0xc3, 0x69, 0xb8, 0xb5, 0xbd, 0xd5, 0xf8, 0x9a, 0xac, 0x22, 0x27, 0x54, + 0x93, 0x04, 0x38, 0x5d, 0x06, 0xcd, 0xc0, 0xa8, 0x01, 0x5c, 0x9a, 0x17, 0x77, 0xb3, 0x38, 0xca, + 0xb8, 0x89, 0xc6, 0x49, 0x7a, 0xfb, 0xe7, 0x2c, 0x38, 0x9d, 0x93, 0xf2, 0xb5, 0xeb, 0x70, 0x87, + 0x1b, 0x30, 0xda, 0x34, 0x8b, 0x76, 0x88, 0xd0, 0x6a, 0x24, 0x96, 0x55, 0x6d, 0x4d, 0x20, 0x70, + 0x92, 0xa9, 0xfd, 0x33, 0x05, 0x38, 0xd7, 0xd6, 0xb1, 0x14, 0x61, 0x38, 0xb5, 0xb9, 0x13, 0x3a, + 0x73, 0x01, 0xa9, 0x13, 0x2f, 0x72, 0x9d, 0x46, 0xb5, 0x49, 0x6a, 0x9a, 0x9d, 0x83, 0x79, 0x68, + 0x5e, 0x5d, 0xa9, 0xce, 0xa4, 0x29, 0x70, 0x4e, 0x49, 0xb4, 0x08, 0x28, 0x8d, 0x11, 0x23, 0xcc, + 0xb2, 0x07, 0xa4, 0xf9, 0xe1, 0x8c, 0x12, 0xe8, 0x83, 0x30, 0xac, 0x1c, 0x56, 0xb5, 0x11, 0x67, + 0x1b, 0x3b, 0xd6, 0x11, 0xd8, 0xa4, 0x43, 0x57, 0x78, 0xfa, 0x09, 0x91, 0xa8, 0x44, 0x18, 0x45, + 0x46, 0x65, 0x6e, 0x09, 0x01, 0xc6, 0x3a, 0xcd, 0xec, 0xcb, 0xbf, 0xf5, 0x8d, 0xf3, 0xef, 0xfb, + 0xdd, 0x6f, 0x9c, 0x7f, 0xdf, 0x1f, 0x7c, 0xe3, 0xfc, 0xfb, 0xbe, 0xeb, 0xfe, 0x79, 0xeb, 0xb7, + 0xee, 0x9f, 0xb7, 0x7e, 0xf7, 0xfe, 0x79, 0xeb, 0x0f, 0xee, 0x9f, 0xb7, 0xfe, 0xf8, 0xfe, 0x79, + 0xeb, 0x8b, 0x7f, 0x72, 0xfe, 0x7d, 0x6f, 0xa2, 0x38, 0x80, 0xe8, 0x65, 0x3a, 0x3a, 0x97, 0x77, + 0xaf, 0xfc, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x50, 0xd0, 0xf5, 0xcb, 0x13, 0x01, 0x00, } func (m *AWSElasticBlockStoreVolumeSource) Marshal() (dAtA []byte, err error) { @@ -12125,6 +12126,13 @@ func (m *LoadBalancerIngress) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x22 } } + 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))) @@ -22299,6 +22307,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)) + } if len(m.Ports) > 0 { for _, e := range m.Ports { l = e.Size() @@ -26716,6 +26728,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) + `,`, `Ports:` + repeatedStringForPorts + `,`, `}`, }, "") @@ -44323,6 +44336,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 case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field Ports", wireType) diff --git a/staging/src/k8s.io/api/core/v1/generated.proto b/staging/src/k8s.io/api/core/v1/generated.proto index 901e837313f..231490f7724 100644 --- a/staging/src/k8s.io/api/core/v1/generated.proto +++ b/staging/src/k8s.io/api/core/v1/generated.proto @@ -2171,6 +2171,15 @@ message LoadBalancerIngress { // +optional optional string hostname = 2; + // IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified. + // Setting this to "VIP" indicates that traffic is delivered to the node with + // the destination set to the load-balancer's IP and port. + // Setting this to "Proxy" indicates that traffic is delivered to the node or pod with + // the destination set to the node's IP and node port or the pod's IP and port. + // Service implementations may use this information to adjust traffic routing. + // +optional + optional string ipMode = 3; + // Ports is a list of records of service ports // If used, every port defined in the service should have an entry in it // +listType=atomic diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go index 9e05c223565..8c55d07c1b4 100644 --- a/staging/src/k8s.io/api/core/v1/types.go +++ b/staging/src/k8s.io/api/core/v1/types.go @@ -4692,6 +4692,15 @@ type LoadBalancerIngress struct { // +optional Hostname string `json:"hostname,omitempty" protobuf:"bytes,2,opt,name=hostname"` + // IPMode specifies how the load-balancer IP behaves, and may only be specified when the ip field is specified. + // Setting this to "VIP" indicates that traffic is delivered to the node with + // the destination set to the load-balancer's IP and port. + // Setting this to "Proxy" indicates that traffic is delivered to the node or pod with + // the destination set to the node's IP and node port or the pod's IP and port. + // Service implementations may use this information to adjust traffic routing. + // +optional + IPMode *LoadBalancerIPMode `json:"ipMode,omitempty" protobuf:"bytes,3,opt,name=ipMode"` + // Ports is a list of records of service ports // If used, every port defined in the service should have an entry in it // +listType=atomic @@ -4709,6 +4718,8 @@ const ( IPv4Protocol IPFamily = "IPv4" // IPv6Protocol indicates that this IP is IPv6 protocol IPv6Protocol IPFamily = "IPv6" + // IPFamilyUnknown indicates that this IP is unknown protocol + IPFamilyUnknown IPFamily = "" ) // IPFamilyPolicy represents the dual-stack-ness requested or required by a Service @@ -7054,3 +7065,15 @@ type PortStatus struct { // +kubebuilder:validation:MaxLength=316 Error *string `json:"error,omitempty" protobuf:"bytes,3,opt,name=error"` } + +// LoadBalancerIPMode represents the mode of the LoadBalancer ingress IP +type LoadBalancerIPMode string + +const ( + // LoadBalancerIPModeVIP indicates that traffic is delivered to the node with + // the destination set to the load-balancer's IP and port. + LoadBalancerIPModeVIP LoadBalancerIPMode = "VIP" + // LoadBalancerIPModeProxy indicates that traffic is delivered to the node or pod with + // the destination set to the node's IP and port or the pod's IP and port. + LoadBalancerIPModeProxy LoadBalancerIPMode = "Proxy" +) 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 9734d8b41eb..2f1e4cf21db 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 @@ -988,6 +988,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 how the load-balancer IP behaves, and may only be specified when the ip field is specified. Setting this to \"VIP\" indicates that traffic is delivered to the node with the destination set to the load-balancer's IP and port. Setting this to \"Proxy\" indicates that traffic is delivered to the node or pod with the destination set to the node's IP and node port or the pod's IP and port. Service implementations may use this information to adjust traffic routing.", "ports": "Ports is a list of records of service ports If used, every port defined in the service should have an entry in it", } 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 d76f0bbbcf7..7f5d9d219ec 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 @@ -2228,6 +2228,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 + } if in.Ports != nil { in, out := &in.Ports, &out.Ports *out = make([]PortStatus, len(*in)) 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 3f652246db1..7e0d97007a6 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 @@ -93,6 +93,7 @@ { "ip": "ipValue", "hostname": "hostnameValue", + "ipMode": "ipModeValue", "ports": [ { "port": 1, 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 0e3faf5b72a..8748481391e 100644 Binary files a/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.pb and b/staging/src/k8s.io/api/testdata/HEAD/core.v1.Service.pb differ 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 7d56a170cd0..e1c91238c5c 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 @@ -77,6 +77,7 @@ status: ingress: - hostname: hostnameValue ip: ipValue + ipMode: ipModeValue ports: - error: errorValue port: 1 diff --git a/staging/src/k8s.io/client-go/applyconfigurations/core/v1/loadbalanceringress.go b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/loadbalanceringress.go index 64d27bdad50..a48dac68107 100644 --- a/staging/src/k8s.io/client-go/applyconfigurations/core/v1/loadbalanceringress.go +++ b/staging/src/k8s.io/client-go/applyconfigurations/core/v1/loadbalanceringress.go @@ -18,11 +18,16 @@ limitations under the License. package v1 +import ( + v1 "k8s.io/api/core/v1" +) + // LoadBalancerIngressApplyConfiguration represents an declarative configuration of the LoadBalancerIngress type for use // with apply. type LoadBalancerIngressApplyConfiguration struct { IP *string `json:"ip,omitempty"` Hostname *string `json:"hostname,omitempty"` + IPMode *v1.LoadBalancerIPMode `json:"ipMode,omitempty"` Ports []PortStatusApplyConfiguration `json:"ports,omitempty"` } @@ -48,6 +53,14 @@ func (b *LoadBalancerIngressApplyConfiguration) WithHostname(value string) *Load return b } +// WithIPMode sets the IPMode field in the declarative configuration to the given value +// and returns the receiver, so that objects can be built by chaining "With" function invocations. +// If called multiple times, the IPMode field is set to the value of the last call. +func (b *LoadBalancerIngressApplyConfiguration) WithIPMode(value v1.LoadBalancerIPMode) *LoadBalancerIngressApplyConfiguration { + b.IPMode = &value + return b +} + // WithPorts adds the given value to the Ports field in the declarative configuration // and returns the receiver, so that objects can be build by chaining "With" function invocations. // If called multiple times, values provided by each call will be appended to the Ports field. diff --git a/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go b/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go index 9c54c8f1f6d..2dde8c45be6 100644 --- a/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go +++ b/staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go @@ -5567,6 +5567,9 @@ var schemaYAML = typed.YAMLObject(`types: - name: ip type: scalar: string + - name: ipMode + type: + scalar: string - name: ports type: list: 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 e363c7db2c5..fd436c3d37d 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 } diff --git a/test/integration/service/loadbalancer_test.go b/test/integration/service/loadbalancer_test.go index 9770e0f18ad..41475eea2c9 100644 --- a/test/integration/service/loadbalancer_test.go +++ b/test/integration/service/loadbalancer_test.go @@ -18,6 +18,7 @@ package service import ( "context" + "reflect" "testing" "time" @@ -28,9 +29,12 @@ import ( clientset "k8s.io/client-go/kubernetes" servicecontroller "k8s.io/cloud-provider/controllers/service" fakecloud "k8s.io/cloud-provider/fake" + featuregatetesting "k8s.io/component-base/featuregate/testing" controllersmetrics "k8s.io/component-base/metrics/prometheus/controllers" kubeapiservertesting "k8s.io/kubernetes/cmd/kube-apiserver/app/testing" + "k8s.io/kubernetes/pkg/features" "k8s.io/kubernetes/test/integration/framework" + "k8s.io/utils/net" utilpointer "k8s.io/utils/pointer" ) @@ -452,3 +456,81 @@ func newServiceController(t *testing.T, client *clientset.Clientset) (*serviceco cloud.ClearCalls() // ignore any cloud calls made in init() return controller, cloud, informerFactory } + +// Test_ServiceLoadBalancerIPMode tests whether the cloud provider has correctly updated the ipMode field. +func Test_ServiceLoadBalancerIPMode(t *testing.T) { + ipModeVIP := corev1.LoadBalancerIPModeVIP + testCases := []struct { + ipModeEnabled bool + externalIP string + expectedIPMode *corev1.LoadBalancerIPMode + }{ + { + ipModeEnabled: false, + externalIP: "1.2.3.4", + expectedIPMode: nil, + }, + { + ipModeEnabled: true, + externalIP: "1.2.3.5", + expectedIPMode: &ipModeVIP, + }, + } + + for _, tc := range testCases { + t.Run("", func(t *testing.T) { + defer featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.LoadBalancerIPMode, tc.ipModeEnabled)() + server := kubeapiservertesting.StartTestServerOrDie(t, nil, nil, framework.SharedEtcd()) + defer server.TearDownFn() + + client, err := clientset.NewForConfig(server.ClientConfig) + if err != nil { + t.Fatalf("Error creating clientset: %v", err) + } + + ns := framework.CreateNamespaceOrDie(client, "test-service-update-load-balancer-ip-mode", t) + defer framework.DeleteNamespaceOrDie(client, ns, t) + + controller, cloud, informer := newServiceController(t, client) + cloud.ExternalIP = net.ParseIPSloppy(tc.externalIP) + + ctx, cancel := context.WithCancel(context.Background()) + defer cancel() + informer.Start(ctx.Done()) + go controller.Run(ctx, 1, controllersmetrics.NewControllerManagerMetrics("loadbalancer-test")) + + service := &corev1.Service{ + ObjectMeta: metav1.ObjectMeta{ + Name: "test-update-load-balancer-ip-mode", + }, + Spec: corev1.ServiceSpec{ + Type: corev1.ServiceTypeLoadBalancer, + Ports: []corev1.ServicePort{{ + Port: int32(80), + }}, + }, + } + + service, err = client.CoreV1().Services(ns.Name).Create(ctx, service, metav1.CreateOptions{}) + if err != nil { + t.Fatalf("Error creating test service: %v", err) + } + + time.Sleep(5 * time.Second) // sleep 5 second to wait for the service controller reconcile + service, err = client.CoreV1().Services(ns.Name).Get(ctx, service.Name, metav1.GetOptions{}) + if err != nil { + t.Fatalf("Error getting test service: %v", err) + } + + if len(service.Status.LoadBalancer.Ingress) == 0 { + t.Fatalf("unexpected load balancer status") + } + + gotIngress := service.Status.LoadBalancer.Ingress[0] + if gotIngress.IP != tc.externalIP || !reflect.DeepEqual(gotIngress.IPMode, tc.expectedIPMode) { + t.Errorf("unexpected load balancer ingress, got ingress %v, expected IP %v, expected ipMode %v", + gotIngress, tc.externalIP, tc.expectedIPMode) + } + }) + } +}