Signed-off-by: Pradip Dhara <pradipd@microsoft.com>
| ... | ... |
@@ -28,7 +28,7 @@ github.com/imdario/mergo 0.2.1 |
| 28 | 28 |
golang.org/x/sync de49d9dcd27d4f764488181bea099dfe6179bcf0 |
| 29 | 29 |
|
| 30 | 30 |
#get libnetwork packages |
| 31 |
-github.com/docker/libnetwork d5c822319097cc01cc9bd5ffedd74c7ce7c894f2 |
|
| 31 |
+github.com/docker/libnetwork 60e002dd61885e1cd909582f00f7eb4da634518a |
|
| 32 | 32 |
github.com/docker/go-events 9461782956ad83b30282bf90e31fa6a70c255ba9 |
| 33 | 33 |
github.com/armon/go-radix e39d623f12e8e41c7b5529e9a9dd67a1e2261f80 |
| 34 | 34 |
github.com/armon/go-metrics eb0af217e5e9747e41dd5303755356b62d28e3ec |
| ... | ... |
@@ -108,7 +108,7 @@ github.com/stevvooe/continuity cd7a8e21e2b6f84799f5dd4b65faf49c8d3ee02d |
| 108 | 108 |
github.com/tonistiigi/fsutil 0ac4c11b053b9c5c7c47558f81f96c7100ce50fb |
| 109 | 109 |
|
| 110 | 110 |
# cluster |
| 111 |
-github.com/docker/swarmkit ddb4539f883b18ea40af44ee6de63ac2adc8dc1e |
|
| 111 |
+github.com/docker/swarmkit bd7bafb8a61de1f5f23c8215ce7b9ecbcb30ff21 |
|
| 112 | 112 |
github.com/gogo/protobuf v0.4 |
| 113 | 113 |
github.com/cloudflare/cfssl 7fb22c8cba7ecaf98e4082d22d65800cf45e042a |
| 114 | 114 |
github.com/google/certificate-transparency d90e65c3a07988180c5b1ece71791c0b6506826e |
| ... | ... |
@@ -15,6 +15,11 @@ import ( |
| 15 | 15 |
"github.com/sirupsen/logrus" |
| 16 | 16 |
) |
| 17 | 17 |
|
| 18 |
+const ( |
|
| 19 |
+ warningThNetworkControlPlaneMTU = 1500 |
|
| 20 |
+ minimumNetworkControlPlaneMTU = 500 |
|
| 21 |
+) |
|
| 22 |
+ |
|
| 18 | 23 |
// Config encapsulates configurations of various Libnetwork components |
| 19 | 24 |
type Config struct {
|
| 20 | 25 |
Daemon DaemonCfg |
| ... | ... |
@@ -226,9 +231,12 @@ func OptionExperimental(exp bool) Option {
|
| 226 | 226 |
func OptionNetworkControlPlaneMTU(exp int) Option {
|
| 227 | 227 |
return func(c *Config) {
|
| 228 | 228 |
logrus.Debugf("Network Control Plane MTU: %d", exp)
|
| 229 |
- if exp < 1500 {
|
|
| 230 |
- // if exp == 0 the value won't be used |
|
| 231 |
- logrus.Warnf("Received a MTU of %d, this value is very low, the network control plane can misbehave", exp)
|
|
| 229 |
+ if exp < warningThNetworkControlPlaneMTU {
|
|
| 230 |
+ logrus.Warnf("Received a MTU of %d, this value is very low, the network control plane can misbehave,"+
|
|
| 231 |
+ " defaulting to minimum value (%d)", exp, minimumNetworkControlPlaneMTU) |
|
| 232 |
+ if exp < minimumNetworkControlPlaneMTU {
|
|
| 233 |
+ exp = minimumNetworkControlPlaneMTU |
|
| 234 |
+ } |
|
| 232 | 235 |
} |
| 233 | 236 |
c.Daemon.NetworkControlPlaneMTU = exp |
| 234 | 237 |
} |
| ... | ... |
@@ -75,6 +75,7 @@ type endpoint struct {
|
| 75 | 75 |
dbIndex uint64 |
| 76 | 76 |
dbExists bool |
| 77 | 77 |
serviceEnabled bool |
| 78 |
+ loadBalancer bool |
|
| 78 | 79 |
sync.Mutex |
| 79 | 80 |
} |
| 80 | 81 |
|
| ... | ... |
@@ -101,6 +102,7 @@ func (ep *endpoint) MarshalJSON() ([]byte, error) {
|
| 101 | 101 |
epMap["virtualIP"] = ep.virtualIP.String() |
| 102 | 102 |
epMap["ingressPorts"] = ep.ingressPorts |
| 103 | 103 |
epMap["svcAliases"] = ep.svcAliases |
| 104 |
+ epMap["loadBalancer"] = ep.loadBalancer |
|
| 104 | 105 |
|
| 105 | 106 |
return json.Marshal(epMap) |
| 106 | 107 |
} |
| ... | ... |
@@ -201,6 +203,10 @@ func (ep *endpoint) UnmarshalJSON(b []byte) (err error) {
|
| 201 | 201 |
ep.virtualIP = net.ParseIP(vip.(string)) |
| 202 | 202 |
} |
| 203 | 203 |
|
| 204 |
+ if v, ok := epMap["loadBalancer"]; ok {
|
|
| 205 |
+ ep.loadBalancer = v.(bool) |
|
| 206 |
+ } |
|
| 207 |
+ |
|
| 204 | 208 |
sal, _ := json.Marshal(epMap["svcAliases"]) |
| 205 | 209 |
var svcAliases []string |
| 206 | 210 |
json.Unmarshal(sal, &svcAliases) |
| ... | ... |
@@ -238,6 +244,7 @@ func (ep *endpoint) CopyTo(o datastore.KVObject) error {
|
| 238 | 238 |
dstEp.svcName = ep.svcName |
| 239 | 239 |
dstEp.svcID = ep.svcID |
| 240 | 240 |
dstEp.virtualIP = ep.virtualIP |
| 241 |
+ dstEp.loadBalancer = ep.loadBalancer |
|
| 241 | 242 |
|
| 242 | 243 |
dstEp.svcAliases = make([]string, len(ep.svcAliases)) |
| 243 | 244 |
copy(dstEp.svcAliases, ep.svcAliases) |
| ... | ... |
@@ -985,7 +992,7 @@ func CreateOptionDisableResolution() EndpointOption {
|
| 985 | 985 |
} |
| 986 | 986 |
} |
| 987 | 987 |
|
| 988 |
-//CreateOptionAlias function returns an option setter for setting endpoint alias |
|
| 988 |
+// CreateOptionAlias function returns an option setter for setting endpoint alias |
|
| 989 | 989 |
func CreateOptionAlias(name string, alias string) EndpointOption {
|
| 990 | 990 |
return func(ep *endpoint) {
|
| 991 | 991 |
if ep.aliases == nil {
|
| ... | ... |
@@ -1006,13 +1013,20 @@ func CreateOptionService(name, id string, vip net.IP, ingressPorts []*PortConfig |
| 1006 | 1006 |
} |
| 1007 | 1007 |
} |
| 1008 | 1008 |
|
| 1009 |
-//CreateOptionMyAlias function returns an option setter for setting endpoint's self alias |
|
| 1009 |
+// CreateOptionMyAlias function returns an option setter for setting endpoint's self alias |
|
| 1010 | 1010 |
func CreateOptionMyAlias(alias string) EndpointOption {
|
| 1011 | 1011 |
return func(ep *endpoint) {
|
| 1012 | 1012 |
ep.myAliases = append(ep.myAliases, alias) |
| 1013 | 1013 |
} |
| 1014 | 1014 |
} |
| 1015 | 1015 |
|
| 1016 |
+// CreateOptionLoadBalancer function returns an option setter for denoting the endpoint is a load balancer for a network |
|
| 1017 |
+func CreateOptionLoadBalancer() EndpointOption {
|
|
| 1018 |
+ return func(ep *endpoint) {
|
|
| 1019 |
+ ep.loadBalancer = true |
|
| 1020 |
+ } |
|
| 1021 |
+} |
|
| 1022 |
+ |
|
| 1016 | 1023 |
// JoinOptionPriority function returns an option setter for priority option to |
| 1017 | 1024 |
// be passed to the endpoint.Join() method. |
| 1018 | 1025 |
func JoinOptionPriority(ep Endpoint, prio int) EndpointOption {
|
| ... | ... |
@@ -31,6 +31,9 @@ type EndpointInfo interface {
|
| 31 | 31 |
|
| 32 | 32 |
// Sandbox returns the attached sandbox if there, nil otherwise. |
| 33 | 33 |
Sandbox() Sandbox |
| 34 |
+ |
|
| 35 |
+ // LoadBalancer returns whether the endpoint is the load balancer endpoint for the network. |
|
| 36 |
+ LoadBalancer() bool |
|
| 34 | 37 |
} |
| 35 | 38 |
|
| 36 | 39 |
// InterfaceInfo provides an interface to retrieve interface addresses bound to the endpoint. |
| ... | ... |
@@ -327,6 +330,12 @@ func (ep *endpoint) Sandbox() Sandbox {
|
| 327 | 327 |
return cnt |
| 328 | 328 |
} |
| 329 | 329 |
|
| 330 |
+func (ep *endpoint) LoadBalancer() bool {
|
|
| 331 |
+ ep.Lock() |
|
| 332 |
+ defer ep.Unlock() |
|
| 333 |
+ return ep.loadBalancer |
|
| 334 |
+} |
|
| 335 |
+ |
|
| 330 | 336 |
func (ep *endpoint) StaticRoutes() []*types.StaticRoute {
|
| 331 | 337 |
ep.Lock() |
| 332 | 338 |
defer ep.Unlock() |
| ... | ... |
@@ -116,6 +116,13 @@ func (i *Handle) DelService(s *Service) error {
|
| 116 | 116 |
return i.doCmd(s, nil, ipvsCmdDelService) |
| 117 | 117 |
} |
| 118 | 118 |
|
| 119 |
+// Flush deletes all existing services in the passed |
|
| 120 |
+// handle. |
|
| 121 |
+func (i *Handle) Flush() error {
|
|
| 122 |
+ _, err := i.doCmdWithoutAttr(ipvsCmdFlush) |
|
| 123 |
+ return err |
|
| 124 |
+} |
|
| 125 |
+ |
|
| 119 | 126 |
// NewDestination creates a new real server in the passed ipvs |
| 120 | 127 |
// service which should already be existing in the passed handle. |
| 121 | 128 |
func (i *Handle) NewDestination(s *Service, d *Destination) error {
|
| ... | ... |
@@ -402,6 +402,13 @@ func (i *Handle) doGetServicesCmd(svc *Service) ([]*Service, error) {
|
| 402 | 402 |
return res, nil |
| 403 | 403 |
} |
| 404 | 404 |
|
| 405 |
+// doCmdWithoutAttr a simple wrapper of netlink socket execute command |
|
| 406 |
+func (i *Handle) doCmdWithoutAttr(cmd uint8) ([][]byte, error) {
|
|
| 407 |
+ req := newIPVSRequest(cmd) |
|
| 408 |
+ req.Seq = atomic.AddUint32(&i.seq, 1) |
|
| 409 |
+ return execute(i.sock, req, 0) |
|
| 410 |
+} |
|
| 411 |
+ |
|
| 405 | 412 |
func assembleDestination(attrs []syscall.NetlinkRouteAttr) (*Destination, error) {
|
| 406 | 413 |
|
| 407 | 414 |
var d Destination |
| ... | ... |
@@ -916,6 +916,13 @@ func (sb *sandbox) clearNetworkResources(origEp *endpoint) error {
|
| 916 | 916 |
break |
| 917 | 917 |
} |
| 918 | 918 |
} |
| 919 |
+ |
|
| 920 |
+ if index == -1 {
|
|
| 921 |
+ logrus.Warnf("Endpoint %s has already been deleted", ep.Name())
|
|
| 922 |
+ sb.Unlock() |
|
| 923 |
+ return nil |
|
| 924 |
+ } |
|
| 925 |
+ |
|
| 919 | 926 |
heap.Remove(&sb.endpoints, index) |
| 920 | 927 |
for _, e := range sb.endpoints {
|
| 921 | 928 |
if len(e.Gateway()) > 0 {
|
| ... | ... |
@@ -287,7 +287,7 @@ func (c *controller) addServiceBinding(svcName, svcID, nID, eID, containerName s |
| 287 | 287 |
// Add loadbalancer service and backend in all sandboxes in |
| 288 | 288 |
// the network only if vip is valid. |
| 289 | 289 |
if len(vip) != 0 {
|
| 290 |
- n.(*network).addLBBackend(ip, vip, lb.fwMark, ingressPorts) |
|
| 290 |
+ n.(*network).addLBBackend(ip, vip, lb, ingressPorts) |
|
| 291 | 291 |
} |
| 292 | 292 |
|
| 293 | 293 |
// Add the appropriate name resolutions |
| ... | ... |
@@ -355,7 +355,7 @@ func (c *controller) rmServiceBinding(svcName, svcID, nID, eID, containerName st |
| 355 | 355 |
// Remove loadbalancer service(if needed) and backend in all |
| 356 | 356 |
// sandboxes in the network only if the vip is valid. |
| 357 | 357 |
if len(vip) != 0 && entries == 0 {
|
| 358 |
- n.(*network).rmLBBackend(ip, vip, lb.fwMark, ingressPorts, rmService) |
|
| 358 |
+ n.(*network).rmLBBackend(ip, vip, lb, ingressPorts, rmService) |
|
| 359 | 359 |
} |
| 360 | 360 |
|
| 361 | 361 |
// Delete the name resolutions |
| ... | ... |
@@ -111,7 +111,7 @@ func (sb *sandbox) populateLoadbalancers(ep *endpoint) {
|
| 111 | 111 |
|
| 112 | 112 |
// Add loadbalancer backend to all sandboxes which has a connection to |
| 113 | 113 |
// this network. If needed add the service as well. |
| 114 |
-func (n *network) addLBBackend(ip, vip net.IP, fwMark uint32, ingressPorts []*PortConfig) {
|
|
| 114 |
+func (n *network) addLBBackend(ip, vip net.IP, lb *loadBalancer, ingressPorts []*PortConfig) {
|
|
| 115 | 115 |
n.WalkEndpoints(func(e Endpoint) bool {
|
| 116 | 116 |
ep := e.(*endpoint) |
| 117 | 117 |
if sb, ok := ep.getSandbox(); ok {
|
| ... | ... |
@@ -124,7 +124,7 @@ func (n *network) addLBBackend(ip, vip net.IP, fwMark uint32, ingressPorts []*Po |
| 124 | 124 |
gwIP = ep.Iface().Address().IP |
| 125 | 125 |
} |
| 126 | 126 |
|
| 127 |
- sb.addLBBackend(ip, vip, fwMark, ingressPorts, ep.Iface().Address(), gwIP, n.ingress) |
|
| 127 |
+ sb.addLBBackend(ip, vip, lb.fwMark, ingressPorts, ep.Iface().Address(), gwIP, n.ingress) |
|
| 128 | 128 |
} |
| 129 | 129 |
|
| 130 | 130 |
return false |
| ... | ... |
@@ -134,7 +134,7 @@ func (n *network) addLBBackend(ip, vip net.IP, fwMark uint32, ingressPorts []*Po |
| 134 | 134 |
// Remove loadbalancer backend from all sandboxes which has a |
| 135 | 135 |
// connection to this network. If needed remove the service entry as |
| 136 | 136 |
// well, as specified by the rmService bool. |
| 137 |
-func (n *network) rmLBBackend(ip, vip net.IP, fwMark uint32, ingressPorts []*PortConfig, rmService bool) {
|
|
| 137 |
+func (n *network) rmLBBackend(ip, vip net.IP, lb *loadBalancer, ingressPorts []*PortConfig, rmService bool) {
|
|
| 138 | 138 |
n.WalkEndpoints(func(e Endpoint) bool {
|
| 139 | 139 |
ep := e.(*endpoint) |
| 140 | 140 |
if sb, ok := ep.getSandbox(); ok {
|
| ... | ... |
@@ -147,7 +147,7 @@ func (n *network) rmLBBackend(ip, vip net.IP, fwMark uint32, ingressPorts []*Por |
| 147 | 147 |
gwIP = ep.Iface().Address().IP |
| 148 | 148 |
} |
| 149 | 149 |
|
| 150 |
- sb.rmLBBackend(ip, vip, fwMark, ingressPorts, ep.Iface().Address(), gwIP, rmService, n.ingress) |
|
| 150 |
+ sb.rmLBBackend(ip, vip, lb.fwMark, ingressPorts, ep.Iface().Address(), gwIP, rmService, n.ingress) |
|
| 151 | 151 |
} |
| 152 | 152 |
|
| 153 | 153 |
return false |
| ... | ... |
@@ -1,11 +1,146 @@ |
| 1 | 1 |
package libnetwork |
| 2 | 2 |
|
| 3 |
-import "net" |
|
| 3 |
+import ( |
|
| 4 |
+ "net" |
|
| 4 | 5 |
|
| 5 |
-func (n *network) addLBBackend(ip, vip net.IP, fwMark uint32, ingressPorts []*PortConfig) {
|
|
| 6 |
+ "github.com/Microsoft/hcsshim" |
|
| 7 |
+ "github.com/docker/docker/pkg/system" |
|
| 8 |
+ "github.com/sirupsen/logrus" |
|
| 9 |
+) |
|
| 10 |
+ |
|
| 11 |
+type policyLists struct {
|
|
| 12 |
+ ilb *hcsshim.PolicyList |
|
| 13 |
+ elb *hcsshim.PolicyList |
|
| 14 |
+} |
|
| 15 |
+ |
|
| 16 |
+var lbPolicylistMap map[*loadBalancer]*policyLists |
|
| 17 |
+ |
|
| 18 |
+func init() {
|
|
| 19 |
+ lbPolicylistMap = make(map[*loadBalancer]*policyLists) |
|
| 20 |
+} |
|
| 21 |
+ |
|
| 22 |
+func (n *network) addLBBackend(ip, vip net.IP, lb *loadBalancer, ingressPorts []*PortConfig) {
|
|
| 23 |
+ |
|
| 24 |
+ if system.GetOSVersion().Build > 16236 {
|
|
| 25 |
+ lb.Lock() |
|
| 26 |
+ defer lb.Unlock() |
|
| 27 |
+ //find the load balancer IP for the network. |
|
| 28 |
+ var sourceVIP string |
|
| 29 |
+ for _, e := range n.Endpoints() {
|
|
| 30 |
+ epInfo := e.Info() |
|
| 31 |
+ if epInfo == nil {
|
|
| 32 |
+ continue |
|
| 33 |
+ } |
|
| 34 |
+ if epInfo.LoadBalancer() {
|
|
| 35 |
+ sourceVIP = epInfo.Iface().Address().IP.String() |
|
| 36 |
+ break |
|
| 37 |
+ } |
|
| 38 |
+ } |
|
| 39 |
+ |
|
| 40 |
+ if sourceVIP == "" {
|
|
| 41 |
+ logrus.Errorf("Failed to find load balancer IP for network %s", n.Name())
|
|
| 42 |
+ return |
|
| 43 |
+ } |
|
| 44 |
+ |
|
| 45 |
+ var endpoints []hcsshim.HNSEndpoint |
|
| 46 |
+ |
|
| 47 |
+ for eid := range lb.backEnds {
|
|
| 48 |
+ //Call HNS to get back ID (GUID) corresponding to the endpoint. |
|
| 49 |
+ hnsEndpoint, err := hcsshim.GetHNSEndpointByName(eid) |
|
| 50 |
+ if err != nil {
|
|
| 51 |
+ logrus.Errorf("Failed to find HNS ID for endpoint %v: %v", eid, err)
|
|
| 52 |
+ return |
|
| 53 |
+ } |
|
| 54 |
+ |
|
| 55 |
+ endpoints = append(endpoints, *hnsEndpoint) |
|
| 56 |
+ } |
|
| 57 |
+ |
|
| 58 |
+ if policies, ok := lbPolicylistMap[lb]; ok {
|
|
| 59 |
+ |
|
| 60 |
+ if policies.ilb != nil {
|
|
| 61 |
+ policies.ilb.Delete() |
|
| 62 |
+ policies.ilb = nil |
|
| 63 |
+ } |
|
| 64 |
+ |
|
| 65 |
+ if policies.elb != nil {
|
|
| 66 |
+ policies.elb.Delete() |
|
| 67 |
+ policies.elb = nil |
|
| 68 |
+ } |
|
| 69 |
+ delete(lbPolicylistMap, lb) |
|
| 70 |
+ } |
|
| 71 |
+ |
|
| 72 |
+ ilbPolicy, err := hcsshim.AddLoadBalancer(endpoints, true, sourceVIP, vip.String(), 0, 0, 0) |
|
| 73 |
+ if err != nil {
|
|
| 74 |
+ logrus.Errorf("Failed to add ILB policy for service %s (%s) with endpoints %v using load balancer IP %s on network %s: %v",
|
|
| 75 |
+ lb.service.name, vip.String(), endpoints, sourceVIP, n.Name(), err) |
|
| 76 |
+ return |
|
| 77 |
+ } |
|
| 78 |
+ |
|
| 79 |
+ lbPolicylistMap[lb] = &policyLists{
|
|
| 80 |
+ ilb: ilbPolicy, |
|
| 81 |
+ } |
|
| 82 |
+ |
|
| 83 |
+ publishedPorts := make(map[uint32]uint32) |
|
| 84 |
+ |
|
| 85 |
+ for i, port := range ingressPorts {
|
|
| 86 |
+ protocol := uint16(6) |
|
| 87 |
+ |
|
| 88 |
+ // Skip already published port |
|
| 89 |
+ if publishedPorts[port.PublishedPort] == port.TargetPort {
|
|
| 90 |
+ continue |
|
| 91 |
+ } |
|
| 92 |
+ |
|
| 93 |
+ if port.Protocol == ProtocolUDP {
|
|
| 94 |
+ protocol = 17 |
|
| 95 |
+ } |
|
| 96 |
+ |
|
| 97 |
+ // check if already has udp matching to add wild card publishing |
|
| 98 |
+ for j := i + 1; j < len(ingressPorts); j++ {
|
|
| 99 |
+ if ingressPorts[j].TargetPort == port.TargetPort && |
|
| 100 |
+ ingressPorts[j].PublishedPort == port.PublishedPort {
|
|
| 101 |
+ protocol = 0 |
|
| 102 |
+ } |
|
| 103 |
+ } |
|
| 104 |
+ |
|
| 105 |
+ publishedPorts[port.PublishedPort] = port.TargetPort |
|
| 106 |
+ |
|
| 107 |
+ lbPolicylistMap[lb].elb, err = hcsshim.AddLoadBalancer(endpoints, false, sourceVIP, "", protocol, uint16(port.TargetPort), uint16(port.PublishedPort)) |
|
| 108 |
+ if err != nil {
|
|
| 109 |
+ logrus.Errorf("Failed to add ELB policy for service %s (ip:%s target port:%v published port:%v) with endpoints %v using load balancer IP %s on network %s: %v",
|
|
| 110 |
+ lb.service.name, vip.String(), uint16(port.TargetPort), uint16(port.PublishedPort), endpoints, sourceVIP, n.Name(), err) |
|
| 111 |
+ return |
|
| 112 |
+ } |
|
| 113 |
+ } |
|
| 114 |
+ } |
|
| 6 | 115 |
} |
| 7 | 116 |
|
| 8 |
-func (n *network) rmLBBackend(ip, vip net.IP, fwMark uint32, ingressPorts []*PortConfig, rmService bool) {
|
|
| 117 |
+func (n *network) rmLBBackend(ip, vip net.IP, lb *loadBalancer, ingressPorts []*PortConfig, rmService bool) {
|
|
| 118 |
+ if system.GetOSVersion().Build > 16236 {
|
|
| 119 |
+ if len(lb.backEnds) > 0 {
|
|
| 120 |
+ //Reprogram HNS (actually VFP) with the existing backends. |
|
| 121 |
+ n.addLBBackend(ip, vip, lb, ingressPorts) |
|
| 122 |
+ } else {
|
|
| 123 |
+ lb.Lock() |
|
| 124 |
+ defer lb.Unlock() |
|
| 125 |
+ logrus.Debugf("No more backends for service %s (ip:%s). Removing all policies", lb.service.name, lb.vip.String())
|
|
| 126 |
+ |
|
| 127 |
+ if policyLists, ok := lbPolicylistMap[lb]; ok {
|
|
| 128 |
+ if policyLists.ilb != nil {
|
|
| 129 |
+ policyLists.ilb.Delete() |
|
| 130 |
+ policyLists.ilb = nil |
|
| 131 |
+ } |
|
| 132 |
+ |
|
| 133 |
+ if policyLists.elb != nil {
|
|
| 134 |
+ policyLists.elb.Delete() |
|
| 135 |
+ policyLists.elb = nil |
|
| 136 |
+ } |
|
| 137 |
+ delete(lbPolicylistMap, lb) |
|
| 138 |
+ |
|
| 139 |
+ } else {
|
|
| 140 |
+ logrus.Errorf("Failed to find policies for service %s (%s)", lb.service.name, lb.vip.String())
|
|
| 141 |
+ } |
|
| 142 |
+ } |
|
| 143 |
+ } |
|
| 9 | 144 |
} |
| 10 | 145 |
|
| 11 | 146 |
func (sb *sandbox) populateLoadbalancers(ep *endpoint) {
|
| ... | ... |
@@ -1,7 +1,7 @@ |
| 1 | 1 |
github.com/Azure/go-ansiterm 19f72df4d05d31cbe1c56bfc8045c96babff6c7e |
| 2 | 2 |
github.com/BurntSushi/toml f706d00e3de6abe700c994cdd545a1a4915af060 |
| 3 | 3 |
github.com/Microsoft/go-winio ce2922f643c8fd76b46cadc7f404a06282678b34 |
| 4 |
-github.com/Microsoft/hcsshim v0.6.1 |
|
| 4 |
+github.com/Microsoft/hcsshim v0.6.3 |
|
| 5 | 5 |
github.com/armon/go-metrics eb0af217e5e9747e41dd5303755356b62d28e3ec |
| 6 | 6 |
github.com/armon/go-radix e39d623f12e8e41c7b5529e9a9dd67a1e2261f80 |
| 7 | 7 |
github.com/boltdb/bolt c6ba97b89e0454fec9aa92e1d33a4e2c5fc1f631 |
| ... | ... |
@@ -57,6 +57,7 @@ type Node struct {
|
| 57 | 57 |
// ManagerStatus provides the current status of the node's manager |
| 58 | 58 |
// component, if the node is a manager. |
| 59 | 59 |
ManagerStatus *ManagerStatus `protobuf:"bytes,6,opt,name=manager_status,json=managerStatus" json:"manager_status,omitempty"` |
| 60 |
+ // DEPRECATED: Use lb_attachments to find the ingress network |
|
| 60 | 61 |
// The node attachment to the ingress network. |
| 61 | 62 |
Attachment *NetworkAttachment `protobuf:"bytes,7,opt,name=attachment" json:"attachment,omitempty"` |
| 62 | 63 |
// Certificate is the TLS certificate issued for the node, if any. |
| ... | ... |
@@ -71,6 +72,10 @@ type Node struct {
|
| 71 | 71 |
// shows the privilege level that the CA would currently grant when |
| 72 | 72 |
// issuing or renewing the node's certificate. |
| 73 | 73 |
Role NodeRole `protobuf:"varint,9,opt,name=role,proto3,enum=docker.swarmkit.v1.NodeRole" json:"role,omitempty"` |
| 74 |
+ // Each node uses the network attachment to set up an endpoint on the |
|
| 75 |
+ // node to be used for load balancing. Each overlay network, including |
|
| 76 |
+ // ingress network, will have an NetworkAttachment. |
|
| 77 |
+ LbAttachments []*NetworkAttachment `protobuf:"bytes,10,rep,name=lb_attachments,json=lbAttachments" json:"lb_attachments,omitempty"` |
|
| 74 | 78 |
} |
| 75 | 79 |
|
| 76 | 80 |
func (m *Node) Reset() { *m = Node{} }
|
| ... | ... |
@@ -403,6 +408,14 @@ func (m *Node) CopyFrom(src interface{}) {
|
| 403 | 403 |
github_com_docker_swarmkit_api_deepcopy.Copy(m.Attachment, o.Attachment) |
| 404 | 404 |
} |
| 405 | 405 |
github_com_docker_swarmkit_api_deepcopy.Copy(&m.Certificate, &o.Certificate) |
| 406 |
+ if o.LbAttachments != nil {
|
|
| 407 |
+ m.LbAttachments = make([]*NetworkAttachment, len(o.LbAttachments)) |
|
| 408 |
+ for i := range m.LbAttachments {
|
|
| 409 |
+ m.LbAttachments[i] = &NetworkAttachment{}
|
|
| 410 |
+ github_com_docker_swarmkit_api_deepcopy.Copy(m.LbAttachments[i], o.LbAttachments[i]) |
|
| 411 |
+ } |
|
| 412 |
+ } |
|
| 413 |
+ |
|
| 406 | 414 |
} |
| 407 | 415 |
|
| 408 | 416 |
func (m *Service) Copy() *Service {
|
| ... | ... |
@@ -849,6 +862,18 @@ func (m *Node) MarshalTo(dAtA []byte) (int, error) {
|
| 849 | 849 |
i++ |
| 850 | 850 |
i = encodeVarintObjects(dAtA, i, uint64(m.Role)) |
| 851 | 851 |
} |
| 852 |
+ if len(m.LbAttachments) > 0 {
|
|
| 853 |
+ for _, msg := range m.LbAttachments {
|
|
| 854 |
+ dAtA[i] = 0x52 |
|
| 855 |
+ i++ |
|
| 856 |
+ i = encodeVarintObjects(dAtA, i, uint64(msg.Size())) |
|
| 857 |
+ n, err := msg.MarshalTo(dAtA[i:]) |
|
| 858 |
+ if err != nil {
|
|
| 859 |
+ return 0, err |
|
| 860 |
+ } |
|
| 861 |
+ i += n |
|
| 862 |
+ } |
|
| 863 |
+ } |
|
| 852 | 864 |
return i, nil |
| 853 | 865 |
} |
| 854 | 866 |
|
| ... | ... |
@@ -1670,6 +1695,12 @@ func (m *Node) Size() (n int) {
|
| 1670 | 1670 |
if m.Role != 0 {
|
| 1671 | 1671 |
n += 1 + sovObjects(uint64(m.Role)) |
| 1672 | 1672 |
} |
| 1673 |
+ if len(m.LbAttachments) > 0 {
|
|
| 1674 |
+ for _, e := range m.LbAttachments {
|
|
| 1675 |
+ l = e.Size() |
|
| 1676 |
+ n += 1 + l + sovObjects(uint64(l)) |
|
| 1677 |
+ } |
|
| 1678 |
+ } |
|
| 1673 | 1679 |
return n |
| 1674 | 1680 |
} |
| 1675 | 1681 |
|
| ... | ... |
@@ -4383,6 +4414,7 @@ func (this *Node) String() string {
|
| 4383 | 4383 |
`Attachment:` + strings.Replace(fmt.Sprintf("%v", this.Attachment), "NetworkAttachment", "NetworkAttachment", 1) + `,`,
|
| 4384 | 4384 |
`Certificate:` + strings.Replace(strings.Replace(this.Certificate.String(), "Certificate", "Certificate", 1), `&`, ``, 1) + `,`, |
| 4385 | 4385 |
`Role:` + fmt.Sprintf("%v", this.Role) + `,`,
|
| 4386 |
+ `LbAttachments:` + strings.Replace(fmt.Sprintf("%v", this.LbAttachments), "NetworkAttachment", "NetworkAttachment", 1) + `,`,
|
|
| 4386 | 4387 |
`}`, |
| 4387 | 4388 |
}, "") |
| 4388 | 4389 |
return s |
| ... | ... |
@@ -5017,6 +5049,37 @@ func (m *Node) Unmarshal(dAtA []byte) error {
|
| 5017 | 5017 |
break |
| 5018 | 5018 |
} |
| 5019 | 5019 |
} |
| 5020 |
+ case 10: |
|
| 5021 |
+ if wireType != 2 {
|
|
| 5022 |
+ return fmt.Errorf("proto: wrong wireType = %d for field LbAttachments", wireType)
|
|
| 5023 |
+ } |
|
| 5024 |
+ var msglen int |
|
| 5025 |
+ for shift := uint(0); ; shift += 7 {
|
|
| 5026 |
+ if shift >= 64 {
|
|
| 5027 |
+ return ErrIntOverflowObjects |
|
| 5028 |
+ } |
|
| 5029 |
+ if iNdEx >= l {
|
|
| 5030 |
+ return io.ErrUnexpectedEOF |
|
| 5031 |
+ } |
|
| 5032 |
+ b := dAtA[iNdEx] |
|
| 5033 |
+ iNdEx++ |
|
| 5034 |
+ msglen |= (int(b) & 0x7F) << shift |
|
| 5035 |
+ if b < 0x80 {
|
|
| 5036 |
+ break |
|
| 5037 |
+ } |
|
| 5038 |
+ } |
|
| 5039 |
+ if msglen < 0 {
|
|
| 5040 |
+ return ErrInvalidLengthObjects |
|
| 5041 |
+ } |
|
| 5042 |
+ postIndex := iNdEx + msglen |
|
| 5043 |
+ if postIndex > l {
|
|
| 5044 |
+ return io.ErrUnexpectedEOF |
|
| 5045 |
+ } |
|
| 5046 |
+ m.LbAttachments = append(m.LbAttachments, &NetworkAttachment{})
|
|
| 5047 |
+ if err := m.LbAttachments[len(m.LbAttachments)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
|
|
| 5048 |
+ return err |
|
| 5049 |
+ } |
|
| 5050 |
+ iNdEx = postIndex |
|
| 5020 | 5051 |
default: |
| 5021 | 5052 |
iNdEx = preIndex |
| 5022 | 5053 |
skippy, err := skipObjects(dAtA[iNdEx:]) |
| ... | ... |
@@ -7689,100 +7752,101 @@ var ( |
| 7689 | 7689 |
func init() { proto.RegisterFile("github.com/docker/swarmkit/api/objects.proto", fileDescriptorObjects) }
|
| 7690 | 7690 |
|
| 7691 | 7691 |
var fileDescriptorObjects = []byte{
|
| 7692 |
- // 1513 bytes of a gzipped FileDescriptorProto |
|
| 7693 |
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4d, 0x6f, 0x1b, 0x4f, |
|
| 7694 |
- 0x19, 0xef, 0xda, 0x1b, 0xbf, 0x3c, 0x4e, 0x4c, 0x98, 0x7f, 0x08, 0x5b, 0x13, 0xec, 0xe0, 0x0a, |
|
| 7695 |
- 0x54, 0x55, 0x95, 0x53, 0x42, 0x81, 0x34, 0x50, 0x5a, 0x3b, 0x89, 0x5a, 0xab, 0x94, 0x46, 0xd3, |
|
| 7696 |
- 0xd2, 0x72, 0x5b, 0x26, 0xbb, 0x53, 0x77, 0xf1, 0x7a, 0x67, 0xb5, 0x33, 0x76, 0xf1, 0x8d, 0x73, |
|
| 7697 |
- 0xf8, 0x00, 0xb9, 0x71, 0xe8, 0x57, 0x80, 0x0b, 0x17, 0x0e, 0x9c, 0x7a, 0xe4, 0x84, 0x38, 0x45, |
|
| 7698 |
- 0xd4, 0xdf, 0x02, 0x89, 0x03, 0x9a, 0xd9, 0x59, 0x7b, 0x13, 0xaf, 0x93, 0x14, 0x55, 0xd1, 0xff, |
|
| 7699 |
- 0x94, 0x99, 0x9d, 0xdf, 0xef, 0x79, 0x9b, 0xe7, 0x65, 0x62, 0xb8, 0xdb, 0xf3, 0xc4, 0xbb, 0xe1, |
|
| 7700 |
- 0x51, 0xcb, 0x61, 0x83, 0x2d, 0x97, 0x39, 0x7d, 0x1a, 0x6d, 0xf1, 0xf7, 0x24, 0x1a, 0xf4, 0x3d, |
|
| 7701 |
- 0xb1, 0x45, 0x42, 0x6f, 0x8b, 0x1d, 0xfd, 0x8e, 0x3a, 0x82, 0xb7, 0xc2, 0x88, 0x09, 0x86, 0x50, |
|
| 7702 |
- 0x0c, 0x69, 0x25, 0x90, 0xd6, 0xe8, 0x87, 0xb5, 0x3b, 0x97, 0x48, 0x10, 0xe3, 0x90, 0x6a, 0xfe, |
|
| 7703 |
- 0xa5, 0x58, 0x1e, 0x52, 0x27, 0xc1, 0x36, 0x7a, 0x8c, 0xf5, 0x7c, 0xba, 0xa5, 0x76, 0x47, 0xc3, |
|
| 7704 |
- 0xb7, 0x5b, 0xc2, 0x1b, 0x50, 0x2e, 0xc8, 0x20, 0xd4, 0x80, 0xb5, 0x1e, 0xeb, 0x31, 0xb5, 0xdc, |
|
| 7705 |
- 0x92, 0x2b, 0xfd, 0xf5, 0xe6, 0x79, 0x1a, 0x09, 0xc6, 0xfa, 0xe8, 0xa7, 0x17, 0x68, 0x9f, 0xc2, |
|
| 7706 |
- 0x43, 0x7f, 0xd8, 0xf3, 0x02, 0xfd, 0x27, 0x26, 0x36, 0xff, 0x6a, 0x80, 0xf9, 0x9c, 0x0a, 0x82, |
|
| 7707 |
- 0x7e, 0x06, 0xc5, 0x11, 0x8d, 0xb8, 0xc7, 0x02, 0xcb, 0xd8, 0x34, 0x6e, 0x57, 0xb6, 0xbf, 0xd3, |
|
| 7708 |
- 0x9a, 0x8f, 0x48, 0xeb, 0x75, 0x0c, 0xe9, 0x98, 0x1f, 0x4f, 0x1b, 0x37, 0x70, 0xc2, 0x40, 0x0f, |
|
| 7709 |
- 0x00, 0x9c, 0x88, 0x12, 0x41, 0x5d, 0x9b, 0x08, 0x2b, 0xa7, 0xf8, 0xb5, 0x56, 0x6c, 0x6e, 0x2b, |
|
| 7710 |
- 0xd1, 0xdf, 0x7a, 0x95, 0x78, 0x89, 0xcb, 0x1a, 0xdd, 0x16, 0x92, 0x3a, 0x0c, 0xdd, 0x84, 0x9a, |
|
| 7711 |
- 0xbf, 0x9c, 0xaa, 0xd1, 0x6d, 0xd1, 0xfc, 0xb3, 0x09, 0xe6, 0xaf, 0x98, 0x4b, 0xd1, 0x3a, 0xe4, |
|
| 7712 |
- 0x3c, 0x57, 0x99, 0x5d, 0xee, 0x14, 0x26, 0xa7, 0x8d, 0x5c, 0x77, 0x1f, 0xe7, 0x3c, 0x17, 0x6d, |
|
| 7713 |
- 0x83, 0x39, 0xa0, 0x82, 0x68, 0x83, 0xac, 0x2c, 0x87, 0xa4, 0xef, 0xda, 0x1b, 0x85, 0x45, 0x3f, |
|
| 7714 |
- 0x01, 0x53, 0x5e, 0x95, 0xb6, 0x64, 0x23, 0x8b, 0x23, 0x75, 0xbe, 0x0c, 0xa9, 0x93, 0xf0, 0x24, |
|
| 7715 |
- 0x1e, 0x1d, 0x40, 0xc5, 0xa5, 0xdc, 0x89, 0xbc, 0x50, 0xc8, 0x18, 0x9a, 0x8a, 0x7e, 0x6b, 0x11, |
|
| 7716 |
- 0x7d, 0x7f, 0x06, 0xc5, 0x69, 0x1e, 0xfa, 0x39, 0x14, 0xb8, 0x20, 0x62, 0xc8, 0xad, 0x25, 0x25, |
|
| 7717 |
- 0xa1, 0xbe, 0xd0, 0x00, 0x85, 0xd2, 0x26, 0x68, 0x0e, 0x7a, 0x0a, 0xd5, 0x01, 0x09, 0x48, 0x8f, |
|
| 7718 |
- 0x46, 0xb6, 0x96, 0x52, 0x50, 0x52, 0xbe, 0x97, 0xe9, 0x7a, 0x8c, 0x8c, 0x05, 0xe1, 0x95, 0x41, |
|
| 7719 |
- 0x7a, 0x8b, 0x0e, 0x00, 0x88, 0x10, 0xc4, 0x79, 0x37, 0xa0, 0x81, 0xb0, 0x8a, 0x4a, 0xca, 0xf7, |
|
| 7720 |
- 0x33, 0x6d, 0xa1, 0xe2, 0x3d, 0x8b, 0xfa, 0xed, 0x29, 0x18, 0xa7, 0x88, 0xe8, 0x09, 0x54, 0x1c, |
|
| 7721 |
- 0x1a, 0x09, 0xef, 0xad, 0xe7, 0x10, 0x41, 0xad, 0x92, 0x92, 0xd3, 0xc8, 0x92, 0xb3, 0x37, 0x83, |
|
| 7722 |
- 0x69, 0xa7, 0xd2, 0x4c, 0x74, 0x0f, 0xcc, 0x88, 0xf9, 0xd4, 0x2a, 0x6f, 0x1a, 0xb7, 0xab, 0x8b, |
|
| 7723 |
- 0xaf, 0x05, 0x33, 0x9f, 0x62, 0x85, 0xdc, 0x5d, 0x3f, 0x3e, 0x69, 0x22, 0x58, 0x2d, 0x19, 0xab, |
|
| 7724 |
- 0x86, 0x4a, 0x0d, 0xe3, 0x9e, 0xf1, 0x1b, 0xe3, 0xb7, 0x46, 0xf3, 0xbf, 0x79, 0x28, 0xbe, 0xa4, |
|
| 7725 |
- 0xd1, 0xc8, 0x73, 0xbe, 0x6c, 0xe2, 0x3c, 0x38, 0x93, 0x38, 0x99, 0x3e, 0x6a, 0xb5, 0x73, 0xb9, |
|
| 7726 |
- 0xb3, 0x03, 0x25, 0x1a, 0xb8, 0x21, 0xf3, 0x02, 0xa1, 0x13, 0x27, 0xd3, 0xc1, 0x03, 0x8d, 0xc1, |
|
| 7727 |
- 0x53, 0x34, 0x3a, 0x80, 0x95, 0xb8, 0x1e, 0xec, 0x33, 0x59, 0xb3, 0x99, 0x45, 0xff, 0xb5, 0x02, |
|
| 7728 |
- 0xea, 0xeb, 0x5e, 0x1e, 0xa6, 0x76, 0x68, 0x1f, 0x56, 0xc2, 0x88, 0x8e, 0x3c, 0x36, 0xe4, 0xb6, |
|
| 7729 |
- 0x72, 0xa2, 0x70, 0x25, 0x27, 0xf0, 0x72, 0xc2, 0x92, 0x3b, 0xf4, 0x0b, 0x58, 0x96, 0x64, 0x3b, |
|
| 7730 |
- 0xe9, 0x23, 0x70, 0x69, 0x1f, 0xc1, 0x15, 0x49, 0xd0, 0x1b, 0xf4, 0x02, 0xbe, 0x75, 0xc6, 0x8a, |
|
| 7731 |
- 0xa9, 0xa0, 0xca, 0xe5, 0x82, 0xbe, 0x4a, 0x5b, 0xa2, 0x3f, 0xee, 0xa2, 0xe3, 0x93, 0x66, 0x15, |
|
| 7732 |
- 0x96, 0xd3, 0x29, 0xd0, 0xfc, 0x53, 0x0e, 0x4a, 0x49, 0x20, 0xd1, 0x7d, 0x7d, 0x67, 0xc6, 0xe2, |
|
| 7733 |
- 0xa8, 0x25, 0x58, 0xe5, 0x6f, 0x7c, 0x5d, 0xf7, 0x61, 0x29, 0x64, 0x91, 0xe0, 0x56, 0x6e, 0x33, |
|
| 7734 |
- 0xbf, 0xa8, 0x44, 0x0f, 0x59, 0x24, 0xf6, 0x58, 0xf0, 0xd6, 0xeb, 0xe1, 0x18, 0x8c, 0xde, 0x40, |
|
| 7735 |
- 0x65, 0xe4, 0x45, 0x62, 0x48, 0x7c, 0xdb, 0x0b, 0xb9, 0x95, 0x57, 0xdc, 0x1f, 0x5c, 0xa4, 0xb2, |
|
| 7736 |
- 0xf5, 0x3a, 0xc6, 0x77, 0x0f, 0x3b, 0xd5, 0xc9, 0x69, 0x03, 0xa6, 0x5b, 0x8e, 0x41, 0x8b, 0xea, |
|
| 7737 |
- 0x86, 0xbc, 0xf6, 0x1c, 0xca, 0xd3, 0x13, 0x74, 0x17, 0x20, 0x88, 0x2b, 0xd2, 0x9e, 0x66, 0xf6, |
|
| 7738 |
- 0xca, 0xe4, 0xb4, 0x51, 0xd6, 0x75, 0xda, 0xdd, 0xc7, 0x65, 0x0d, 0xe8, 0xba, 0x08, 0x81, 0x49, |
|
| 7739 |
- 0x5c, 0x37, 0x52, 0x79, 0x5e, 0xc6, 0x6a, 0xdd, 0xfc, 0x63, 0x11, 0xcc, 0x57, 0x84, 0xf7, 0xaf, |
|
| 7740 |
- 0xbb, 0xab, 0x4a, 0x9d, 0x73, 0x95, 0x71, 0x17, 0x80, 0xc7, 0xf9, 0x26, 0xdd, 0x31, 0x67, 0xee, |
|
| 7741 |
- 0xe8, 0x2c, 0x94, 0xee, 0x68, 0x40, 0xec, 0x0e, 0xf7, 0x99, 0x50, 0x45, 0x60, 0x62, 0xb5, 0x46, |
|
| 7742 |
- 0xb7, 0xa0, 0x18, 0x30, 0x57, 0xd1, 0x0b, 0x8a, 0x0e, 0x93, 0xd3, 0x46, 0x41, 0xf6, 0x8a, 0xee, |
|
| 7743 |
- 0x3e, 0x2e, 0xc8, 0xa3, 0xae, 0x2b, 0xdb, 0x14, 0x09, 0x02, 0x26, 0x88, 0xec, 0xc1, 0x5c, 0xb7, |
|
| 7744 |
- 0xbb, 0xcc, 0xec, 0x6f, 0xcf, 0x60, 0x49, 0x9b, 0x4a, 0x31, 0xd1, 0x6b, 0xf8, 0x2a, 0xb1, 0x37, |
|
| 7745 |
- 0x2d, 0xb0, 0xf4, 0x39, 0x02, 0x91, 0x96, 0x90, 0x3a, 0x49, 0x8d, 0x85, 0xf2, 0xe2, 0xb1, 0xa0, |
|
| 7746 |
- 0x22, 0x98, 0x35, 0x16, 0x3a, 0xb0, 0xe2, 0x52, 0xee, 0x45, 0xd4, 0x55, 0x6d, 0x82, 0xaa, 0xca, |
|
| 7747 |
- 0xac, 0x6e, 0x7f, 0xf7, 0x22, 0x21, 0x14, 0x2f, 0x6b, 0x8e, 0xda, 0xa1, 0x36, 0x94, 0x74, 0xde, |
|
| 7748 |
- 0x70, 0xab, 0xa2, 0x72, 0xf7, 0x8a, 0xe3, 0x60, 0x4a, 0x3b, 0xd3, 0xe6, 0x96, 0x3f, 0xab, 0xcd, |
|
| 7749 |
- 0x3d, 0x00, 0xf0, 0x59, 0xcf, 0x76, 0x23, 0x6f, 0x44, 0x23, 0x6b, 0x45, 0x3f, 0x12, 0x32, 0xb8, |
|
| 7750 |
- 0xfb, 0x0a, 0x81, 0xcb, 0x3e, 0xeb, 0xc5, 0xcb, 0xb9, 0xa6, 0x54, 0xfd, 0xcc, 0xa6, 0x44, 0xa0, |
|
| 7751 |
- 0x46, 0x38, 0xf7, 0x7a, 0x01, 0x75, 0xed, 0x1e, 0x0d, 0x68, 0xe4, 0x39, 0x76, 0x44, 0x39, 0x1b, |
|
| 7752 |
- 0x46, 0x0e, 0xe5, 0xd6, 0x37, 0x54, 0x24, 0x32, 0xc7, 0xfc, 0x93, 0x18, 0x8c, 0x35, 0x16, 0x5b, |
|
| 7753 |
- 0x89, 0x98, 0x73, 0x07, 0x7c, 0xb7, 0x76, 0x7c, 0xd2, 0x5c, 0x87, 0xb5, 0x74, 0x9b, 0xda, 0x31, |
|
| 7754 |
- 0x1e, 0x1b, 0x4f, 0x8d, 0x43, 0xa3, 0xf9, 0xf7, 0x1c, 0x7c, 0x73, 0x2e, 0xa6, 0xe8, 0xc7, 0x50, |
|
| 7755 |
- 0xd4, 0x51, 0xbd, 0xe8, 0xb1, 0xa6, 0x79, 0x38, 0xc1, 0xa2, 0x0d, 0x28, 0xcb, 0x12, 0xa7, 0x9c, |
|
| 7756 |
- 0xd3, 0xb8, 0x79, 0x95, 0xf1, 0xec, 0x03, 0xb2, 0xa0, 0x48, 0x7c, 0x8f, 0xc8, 0xb3, 0xbc, 0x3a, |
|
| 7757 |
- 0x4b, 0xb6, 0x68, 0x08, 0xeb, 0x71, 0xe8, 0xed, 0xd9, 0x68, 0xb7, 0x59, 0x28, 0xb8, 0x65, 0x2a, |
|
| 7758 |
- 0xff, 0x1f, 0x5d, 0x29, 0x13, 0xf4, 0xe5, 0xcc, 0x3e, 0xbc, 0x08, 0x05, 0x3f, 0x08, 0x44, 0x34, |
|
| 7759 |
- 0xc6, 0x6b, 0x6e, 0xc6, 0x51, 0xed, 0x09, 0xdc, 0x5c, 0x48, 0x41, 0xab, 0x90, 0xef, 0xd3, 0x71, |
|
| 7760 |
- 0xdc, 0x9e, 0xb0, 0x5c, 0xa2, 0x35, 0x58, 0x1a, 0x11, 0x7f, 0x48, 0x75, 0x37, 0x8b, 0x37, 0xbb, |
|
| 7761 |
- 0xb9, 0x1d, 0xa3, 0xf9, 0x21, 0x07, 0x45, 0x6d, 0xce, 0x75, 0x8f, 0x7c, 0xad, 0x76, 0xae, 0xb1, |
|
| 7762 |
- 0x3d, 0x84, 0x65, 0x1d, 0xd2, 0xb8, 0x22, 0xcd, 0x4b, 0x73, 0xba, 0x12, 0xe3, 0xe3, 0x6a, 0x7c, |
|
| 7763 |
- 0x08, 0xa6, 0x17, 0x92, 0x81, 0x1e, 0xf7, 0x99, 0x9a, 0xbb, 0x87, 0xed, 0xe7, 0x2f, 0xc2, 0xb8, |
|
| 7764 |
- 0xb1, 0x94, 0x26, 0xa7, 0x0d, 0x53, 0x7e, 0xc0, 0x8a, 0x96, 0x39, 0x18, 0xff, 0xb2, 0x04, 0xc5, |
|
| 7765 |
- 0x3d, 0x7f, 0xc8, 0x05, 0x8d, 0xae, 0x3b, 0x48, 0x5a, 0xed, 0x5c, 0x90, 0xf6, 0xa0, 0x18, 0x31, |
|
| 7766 |
- 0x26, 0x6c, 0x87, 0x5c, 0x14, 0x1f, 0xcc, 0x98, 0xd8, 0x6b, 0x77, 0xaa, 0x92, 0x28, 0x7b, 0x7b, |
|
| 7767 |
- 0xbc, 0xc7, 0x05, 0x49, 0xdd, 0x23, 0xe8, 0x0d, 0xac, 0x27, 0x13, 0xf1, 0x88, 0x31, 0xc1, 0x45, |
|
| 7768 |
- 0x44, 0x42, 0xbb, 0x4f, 0xc7, 0xf2, 0xad, 0x94, 0x5f, 0xf4, 0x36, 0x3e, 0x08, 0x9c, 0x68, 0xac, |
|
| 7769 |
- 0x82, 0xf7, 0x8c, 0x8e, 0xf1, 0x9a, 0x16, 0xd0, 0x49, 0xf8, 0xcf, 0xe8, 0x98, 0xa3, 0x47, 0xb0, |
|
| 7770 |
- 0x41, 0xa7, 0x30, 0x29, 0xd1, 0xf6, 0xc9, 0x40, 0xce, 0x7a, 0xdb, 0xf1, 0x99, 0xd3, 0x57, 0xe3, |
|
| 7771 |
- 0xc6, 0xc4, 0x37, 0x69, 0x5a, 0xd4, 0x2f, 0x63, 0xc4, 0x9e, 0x04, 0x20, 0x0e, 0xd6, 0x91, 0x4f, |
|
| 7772 |
- 0x9c, 0xbe, 0xef, 0x71, 0xf9, 0xef, 0x4f, 0xea, 0xb9, 0x2b, 0x27, 0x86, 0xb4, 0x6d, 0xe7, 0x82, |
|
| 7773 |
- 0x68, 0xb5, 0x3a, 0x33, 0x6e, 0xea, 0xf1, 0xac, 0x2b, 0xea, 0xdb, 0x47, 0xd9, 0xa7, 0xa8, 0x03, |
|
| 7774 |
- 0x95, 0x61, 0x20, 0xd5, 0xc7, 0x31, 0x28, 0x5f, 0x35, 0x06, 0x10, 0xb3, 0xa4, 0xe7, 0xb5, 0x11, |
|
| 7775 |
- 0x6c, 0x5c, 0xa4, 0x3c, 0xa3, 0x36, 0x1f, 0xa7, 0x6b, 0xb3, 0xb2, 0x7d, 0x27, 0x4b, 0x5f, 0xb6, |
|
| 7776 |
- 0xc8, 0x54, 0x1d, 0x67, 0xa6, 0xed, 0xdf, 0x0c, 0x28, 0xbc, 0xa4, 0x4e, 0x44, 0xc5, 0x17, 0xcd, |
|
| 7777 |
- 0xda, 0x9d, 0x33, 0x59, 0x5b, 0xcf, 0x7e, 0x08, 0x4b, 0xad, 0x73, 0x49, 0x5b, 0x83, 0x92, 0x17, |
|
| 7778 |
- 0x08, 0x1a, 0x05, 0xc4, 0x57, 0x59, 0x5b, 0xc2, 0xd3, 0x7d, 0xa6, 0x03, 0x1f, 0x0c, 0x28, 0xc4, |
|
| 7779 |
- 0x2f, 0xc5, 0xeb, 0x76, 0x20, 0xd6, 0x7a, 0xde, 0x81, 0x4c, 0x23, 0xff, 0x63, 0x40, 0x29, 0x19, |
|
| 7780 |
- 0x58, 0x5f, 0xd4, 0xcc, 0x73, 0x2f, 0xaf, 0xfc, 0xff, 0xfd, 0xf2, 0x42, 0x60, 0xf6, 0xbd, 0x40, |
|
| 7781 |
- 0xbf, 0x11, 0xb1, 0x5a, 0xa3, 0x16, 0x14, 0x43, 0x32, 0xf6, 0x19, 0x71, 0x75, 0xa3, 0x5c, 0x9b, |
|
| 7782 |
- 0xfb, 0x61, 0xa1, 0x1d, 0x8c, 0x71, 0x02, 0xda, 0x5d, 0x3b, 0x3e, 0x69, 0xae, 0x42, 0x35, 0xed, |
|
| 7783 |
- 0xf9, 0x3b, 0xa3, 0xf9, 0x4f, 0x03, 0xca, 0x07, 0xbf, 0x17, 0x34, 0x50, 0xef, 0x81, 0xaf, 0xa5, |
|
| 7784 |
- 0xf3, 0x9b, 0xf3, 0x3f, 0x3e, 0x94, 0xcf, 0xfc, 0xae, 0x90, 0x75, 0xa9, 0x1d, 0xeb, 0xe3, 0xa7, |
|
| 7785 |
- 0xfa, 0x8d, 0x7f, 0x7d, 0xaa, 0xdf, 0xf8, 0xc3, 0xa4, 0x6e, 0x7c, 0x9c, 0xd4, 0x8d, 0x7f, 0x4c, |
|
| 7786 |
- 0xea, 0xc6, 0xbf, 0x27, 0x75, 0xe3, 0xa8, 0xa0, 0xe2, 0xf3, 0xa3, 0xff, 0x05, 0x00, 0x00, 0xff, |
|
| 7787 |
- 0xff, 0x34, 0x0b, 0x7d, 0x79, 0x43, 0x13, 0x00, 0x00, |
|
| 7692 |
+ // 1536 bytes of a gzipped FileDescriptorProto |
|
| 7693 |
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcd, 0x72, 0x1b, 0x4b, |
|
| 7694 |
+ 0x15, 0xce, 0x48, 0x63, 0xfd, 0x1c, 0xd9, 0xc2, 0xf4, 0x35, 0x66, 0x22, 0x8c, 0x64, 0x74, 0x0b, |
|
| 7695 |
+ 0xea, 0xd6, 0xad, 0x94, 0x1c, 0x4c, 0x00, 0xc7, 0x10, 0x12, 0xc9, 0x76, 0x25, 0xaa, 0x24, 0xc4, |
|
| 7696 |
+ 0xd5, 0x09, 0x09, 0xbb, 0xa1, 0x35, 0xd3, 0x51, 0x06, 0x8d, 0xa6, 0xa7, 0xa6, 0x5b, 0x0a, 0xda, |
|
| 7697 |
+ 0xb1, 0x61, 0x63, 0x1e, 0xc0, 0x3b, 0x16, 0x79, 0x06, 0x36, 0x6c, 0x58, 0xb0, 0xca, 0x92, 0x15, |
|
| 7698 |
+ 0xc5, 0xca, 0x45, 0xf4, 0x16, 0x54, 0xb1, 0xa0, 0xba, 0xa7, 0x47, 0x1a, 0x5b, 0xe3, 0x3f, 0x2a, |
|
| 7699 |
+ 0xe5, 0x62, 0xe5, 0xee, 0xe9, 0xef, 0x3b, 0x7f, 0x7d, 0xce, 0xe9, 0x63, 0xc1, 0x9d, 0xbe, 0x27, |
|
| 7700 |
+ 0xde, 0x8d, 0x7a, 0x2d, 0x87, 0x0d, 0xb7, 0x5c, 0xe6, 0x0c, 0x68, 0xb4, 0xc5, 0xdf, 0x93, 0x68, |
|
| 7701 |
+ 0x38, 0xf0, 0xc4, 0x16, 0x09, 0xbd, 0x2d, 0xd6, 0xfb, 0x2d, 0x75, 0x04, 0x6f, 0x85, 0x11, 0x13, |
|
| 7702 |
+ 0x0c, 0xa1, 0x18, 0xd2, 0x4a, 0x20, 0xad, 0xf1, 0x0f, 0x6b, 0x5f, 0x5f, 0x22, 0x41, 0x4c, 0x42, |
|
| 7703 |
+ 0xaa, 0xf9, 0x97, 0x62, 0x79, 0x48, 0x9d, 0x04, 0xdb, 0xe8, 0x33, 0xd6, 0xf7, 0xe9, 0x96, 0xda, |
|
| 7704 |
+ 0xf5, 0x46, 0x6f, 0xb7, 0x84, 0x37, 0xa4, 0x5c, 0x90, 0x61, 0xa8, 0x01, 0x6b, 0x7d, 0xd6, 0x67, |
|
| 7705 |
+ 0x6a, 0xb9, 0x25, 0x57, 0xfa, 0xeb, 0xed, 0xb3, 0x34, 0x12, 0x4c, 0xf4, 0xd1, 0x4f, 0x2f, 0xd0, |
|
| 7706 |
+ 0x3e, 0x83, 0x87, 0xfe, 0xa8, 0xef, 0x05, 0xfa, 0x4f, 0x4c, 0x6c, 0xfe, 0xc5, 0x00, 0xf3, 0x39, |
|
| 7707 |
+ 0x15, 0x04, 0xfd, 0x0c, 0x8a, 0x63, 0x1a, 0x71, 0x8f, 0x05, 0x96, 0xb1, 0x69, 0x7c, 0x55, 0xd9, |
|
| 7708 |
+ 0xfe, 0x4e, 0x6b, 0x31, 0x22, 0xad, 0xd7, 0x31, 0xa4, 0x63, 0x7e, 0x3c, 0x69, 0xdc, 0xc2, 0x09, |
|
| 7709 |
+ 0x03, 0xdd, 0x07, 0x70, 0x22, 0x4a, 0x04, 0x75, 0x6d, 0x22, 0xac, 0x9c, 0xe2, 0xd7, 0x5a, 0xb1, |
|
| 7710 |
+ 0xb9, 0xad, 0x44, 0x7f, 0xeb, 0x55, 0xe2, 0x25, 0x2e, 0x6b, 0x74, 0x5b, 0x48, 0xea, 0x28, 0x74, |
|
| 7711 |
+ 0x13, 0x6a, 0xfe, 0x72, 0xaa, 0x46, 0xb7, 0x45, 0xf3, 0x0f, 0x4b, 0x60, 0xfe, 0x92, 0xb9, 0x14, |
|
| 7712 |
+ 0xad, 0x43, 0xce, 0x73, 0x95, 0xd9, 0xe5, 0x4e, 0x61, 0x7a, 0xd2, 0xc8, 0x75, 0xf7, 0x71, 0xce, |
|
| 7713 |
+ 0x73, 0xd1, 0x36, 0x98, 0x43, 0x2a, 0x88, 0x36, 0xc8, 0xca, 0x72, 0x48, 0xfa, 0xae, 0xbd, 0x51, |
|
| 7714 |
+ 0x58, 0xf4, 0x13, 0x30, 0xe5, 0x55, 0x69, 0x4b, 0x36, 0xb2, 0x38, 0x52, 0xe7, 0xcb, 0x90, 0x3a, |
|
| 7715 |
+ 0x09, 0x4f, 0xe2, 0xd1, 0x01, 0x54, 0x5c, 0xca, 0x9d, 0xc8, 0x0b, 0x85, 0x8c, 0xa1, 0xa9, 0xe8, |
|
| 7716 |
+ 0x5f, 0x9e, 0x47, 0xdf, 0x9f, 0x43, 0x71, 0x9a, 0x87, 0x7e, 0x0e, 0x05, 0x2e, 0x88, 0x18, 0x71, |
|
| 7717 |
+ 0x6b, 0x49, 0x49, 0xa8, 0x9f, 0x6b, 0x80, 0x42, 0x69, 0x13, 0x34, 0x07, 0x3d, 0x81, 0xea, 0x90, |
|
| 7718 |
+ 0x04, 0xa4, 0x4f, 0x23, 0x5b, 0x4b, 0x29, 0x28, 0x29, 0xdf, 0xcb, 0x74, 0x3d, 0x46, 0xc6, 0x82, |
|
| 7719 |
+ 0xf0, 0xca, 0x30, 0xbd, 0x45, 0x5d, 0x00, 0x22, 0x04, 0x71, 0xde, 0x0d, 0x69, 0x20, 0xac, 0xa2, |
|
| 7720 |
+ 0x92, 0xf2, 0xfd, 0x4c, 0x5b, 0xa8, 0x78, 0xcf, 0xa2, 0x41, 0x7b, 0x06, 0xee, 0xe4, 0x2c, 0x03, |
|
| 7721 |
+ 0xa7, 0xc8, 0xe8, 0x31, 0x54, 0x1c, 0x1a, 0x09, 0xef, 0xad, 0xe7, 0x10, 0x41, 0xad, 0x92, 0x92, |
|
| 7722 |
+ 0xd5, 0xc8, 0x92, 0xb5, 0x37, 0x87, 0x69, 0xc7, 0xd2, 0x4c, 0x74, 0x17, 0xcc, 0x88, 0xf9, 0xd4, |
|
| 7723 |
+ 0x2a, 0x6f, 0x1a, 0x5f, 0x55, 0xcf, 0xbf, 0x1a, 0xcc, 0x7c, 0x8a, 0x15, 0x12, 0x3d, 0x83, 0xaa, |
|
| 7724 |
+ 0xdf, 0xb3, 0xe7, 0xb6, 0x70, 0x0b, 0x36, 0xf3, 0x57, 0xf6, 0x04, 0xaf, 0xf8, 0xbd, 0xf9, 0x8e, |
|
| 7725 |
+ 0xef, 0xae, 0x1f, 0x1d, 0x37, 0x11, 0xac, 0x96, 0x8c, 0x55, 0x43, 0x25, 0x9b, 0x71, 0xd7, 0xf8, |
|
| 7726 |
+ 0xb5, 0xf1, 0x1b, 0xa3, 0xf9, 0x9f, 0x3c, 0x14, 0x5f, 0xd2, 0x68, 0xec, 0x39, 0x9f, 0x37, 0x15, |
|
| 7727 |
+ 0xef, 0x9f, 0x4a, 0xc5, 0xcc, 0x88, 0x69, 0xb5, 0x0b, 0xd9, 0xb8, 0x03, 0x25, 0x1a, 0xb8, 0x21, |
|
| 7728 |
+ 0xf3, 0x02, 0xa1, 0x53, 0x31, 0x33, 0x5c, 0x07, 0x1a, 0x83, 0x67, 0x68, 0x74, 0x00, 0x2b, 0x71, |
|
| 7729 |
+ 0x85, 0xd9, 0xa7, 0xf2, 0x70, 0x33, 0x8b, 0xfe, 0x2b, 0x05, 0xd4, 0x09, 0xb4, 0x3c, 0x4a, 0xed, |
|
| 7730 |
+ 0xd0, 0x3e, 0xac, 0x84, 0x11, 0x1d, 0x7b, 0x6c, 0xc4, 0x6d, 0xe5, 0x44, 0xe1, 0x4a, 0x4e, 0xe0, |
|
| 7731 |
+ 0xe5, 0x84, 0x25, 0x77, 0xe8, 0x17, 0xb0, 0x2c, 0xc9, 0x76, 0xd2, 0x99, 0xe0, 0xd2, 0xce, 0x84, |
|
| 7732 |
+ 0x2b, 0x92, 0xa0, 0x37, 0xe8, 0x05, 0x7c, 0xeb, 0x94, 0x15, 0x33, 0x41, 0x95, 0xcb, 0x05, 0x7d, |
|
| 7733 |
+ 0x91, 0xb6, 0x44, 0x7f, 0xdc, 0x45, 0x47, 0xc7, 0xcd, 0x2a, 0x2c, 0xa7, 0x53, 0xa0, 0xf9, 0xa7, |
|
| 7734 |
+ 0x1c, 0x94, 0x92, 0x40, 0xa2, 0x7b, 0xfa, 0xce, 0x8c, 0xf3, 0xa3, 0x96, 0x60, 0x95, 0xbf, 0xf1, |
|
| 7735 |
+ 0x75, 0xdd, 0x83, 0xa5, 0x90, 0x45, 0x82, 0x5b, 0x39, 0x95, 0x9e, 0x99, 0x45, 0x7f, 0xc8, 0x22, |
|
| 7736 |
+ 0xb1, 0xc7, 0x82, 0xb7, 0x5e, 0x1f, 0xc7, 0x60, 0xf4, 0x06, 0x2a, 0x63, 0x2f, 0x12, 0x23, 0xe2, |
|
| 7737 |
+ 0xdb, 0x5e, 0xc8, 0xad, 0xbc, 0xe2, 0xfe, 0xe0, 0x22, 0x95, 0xad, 0xd7, 0x31, 0xbe, 0x7b, 0xd8, |
|
| 7738 |
+ 0xa9, 0x4e, 0x4f, 0x1a, 0x30, 0xdb, 0x72, 0x0c, 0x5a, 0x54, 0x37, 0xe4, 0xb5, 0xe7, 0x50, 0x9e, |
|
| 7739 |
+ 0x9d, 0xa0, 0x3b, 0x00, 0x41, 0x5c, 0x19, 0xf6, 0x2c, 0xb3, 0x57, 0xa6, 0x27, 0x8d, 0xb2, 0xae, |
|
| 7740 |
+ 0x97, 0xee, 0x3e, 0x2e, 0x6b, 0x40, 0xd7, 0x45, 0x08, 0x4c, 0xe2, 0xba, 0x91, 0xca, 0xf3, 0x32, |
|
| 7741 |
+ 0x56, 0xeb, 0xe6, 0x1f, 0x8b, 0x60, 0xbe, 0x22, 0x7c, 0x70, 0xd3, 0x7d, 0x5a, 0xea, 0x5c, 0xa8, |
|
| 7742 |
+ 0x8c, 0x3b, 0x00, 0x3c, 0xce, 0x37, 0xe9, 0x8e, 0x39, 0x77, 0x47, 0x67, 0xa1, 0x74, 0x47, 0x03, |
|
| 7743 |
+ 0x62, 0x77, 0xb8, 0xcf, 0x84, 0x2a, 0x02, 0x13, 0xab, 0x35, 0xfa, 0x12, 0x8a, 0x01, 0x73, 0x15, |
|
| 7744 |
+ 0xbd, 0xa0, 0xe8, 0x30, 0x3d, 0x69, 0x14, 0x64, 0xe7, 0xe9, 0xee, 0xe3, 0x82, 0x3c, 0xea, 0xba, |
|
| 7745 |
+ 0xb2, 0xe9, 0x91, 0x20, 0x60, 0x82, 0xc8, 0xae, 0xce, 0x75, 0x03, 0xcd, 0xcc, 0xfe, 0xf6, 0x1c, |
|
| 7746 |
+ 0x96, 0x34, 0xbd, 0x14, 0x13, 0xbd, 0x86, 0x2f, 0x12, 0x7b, 0xd3, 0x02, 0x4b, 0xd7, 0x11, 0x88, |
|
| 7747 |
+ 0xb4, 0x84, 0xd4, 0x49, 0xea, 0xa1, 0x29, 0x9f, 0xff, 0xd0, 0xa8, 0x08, 0x66, 0x3d, 0x34, 0x1d, |
|
| 7748 |
+ 0x58, 0x71, 0x29, 0xf7, 0x22, 0xea, 0xaa, 0x36, 0x41, 0x55, 0x65, 0x56, 0xb7, 0xbf, 0x7b, 0x91, |
|
| 7749 |
+ 0x10, 0x8a, 0x97, 0x35, 0x47, 0xed, 0x50, 0x1b, 0x4a, 0x3a, 0x6f, 0xb8, 0x55, 0xb9, 0x4e, 0x5b, |
|
| 7750 |
+ 0x9e, 0xd1, 0x4e, 0xb5, 0xb9, 0xe5, 0x6b, 0xb5, 0xb9, 0xfb, 0x00, 0x3e, 0xeb, 0xdb, 0x6e, 0xe4, |
|
| 7751 |
+ 0x8d, 0x69, 0x64, 0xad, 0xe8, 0xb1, 0x23, 0x83, 0xbb, 0xaf, 0x10, 0xb8, 0xec, 0xb3, 0x7e, 0xbc, |
|
| 7752 |
+ 0x5c, 0x68, 0x4a, 0xd5, 0x6b, 0x36, 0x25, 0x02, 0x35, 0xc2, 0xb9, 0xd7, 0x0f, 0xa8, 0x6b, 0xf7, |
|
| 7753 |
+ 0x69, 0x40, 0x23, 0xcf, 0xb1, 0x23, 0xca, 0xd9, 0x28, 0x72, 0x28, 0xb7, 0xbe, 0xa1, 0x22, 0x91, |
|
| 7754 |
+ 0x39, 0x38, 0x3c, 0x8e, 0xc1, 0x58, 0x63, 0xb1, 0x95, 0x88, 0x39, 0x73, 0xc0, 0x77, 0x6b, 0x47, |
|
| 7755 |
+ 0xc7, 0xcd, 0x75, 0x58, 0x4b, 0xb7, 0xa9, 0x1d, 0xe3, 0x91, 0xf1, 0xc4, 0x38, 0x34, 0x9a, 0x7f, |
|
| 7756 |
+ 0xcb, 0xc1, 0x37, 0x17, 0x62, 0x8a, 0x7e, 0x0c, 0x45, 0x1d, 0xd5, 0x8b, 0xc6, 0x3f, 0xcd, 0xc3, |
|
| 7757 |
+ 0x09, 0x16, 0x6d, 0x40, 0x59, 0x96, 0x38, 0xe5, 0x9c, 0xc6, 0xcd, 0xab, 0x8c, 0xe7, 0x1f, 0x90, |
|
| 7758 |
+ 0x05, 0x45, 0xe2, 0x7b, 0x44, 0x9e, 0xe5, 0xd5, 0x59, 0xb2, 0x45, 0x23, 0x58, 0x8f, 0x43, 0x9f, |
|
| 7759 |
+ 0x7a, 0x9c, 0x6d, 0x16, 0x0a, 0x6e, 0x99, 0xca, 0xff, 0x87, 0x57, 0xca, 0x04, 0x7d, 0x39, 0xf3, |
|
| 7760 |
+ 0x0f, 0x2f, 0x42, 0xc1, 0x0f, 0x02, 0x11, 0x4d, 0xf0, 0x9a, 0x9b, 0x71, 0x54, 0x7b, 0x0c, 0xb7, |
|
| 7761 |
+ 0xcf, 0xa5, 0xa0, 0x55, 0xc8, 0x0f, 0xe8, 0x24, 0x6e, 0x4f, 0x58, 0x2e, 0xd1, 0x1a, 0x2c, 0x8d, |
|
| 7762 |
+ 0x89, 0x3f, 0xa2, 0xba, 0x9b, 0xc5, 0x9b, 0xdd, 0xdc, 0x8e, 0xd1, 0xfc, 0x90, 0x83, 0xa2, 0x36, |
|
| 7763 |
+ 0xe7, 0xa6, 0x9f, 0x7c, 0xad, 0x76, 0xa1, 0xb1, 0x3d, 0x80, 0x65, 0x1d, 0xd2, 0xb8, 0x22, 0xcd, |
|
| 7764 |
+ 0x4b, 0x73, 0xba, 0x12, 0xe3, 0xe3, 0x6a, 0x7c, 0x00, 0xa6, 0x17, 0x92, 0xa1, 0x7e, 0xee, 0x33, |
|
| 7765 |
+ 0x35, 0x77, 0x0f, 0xdb, 0xcf, 0x5f, 0x84, 0x71, 0x63, 0x29, 0x4d, 0x4f, 0x1a, 0xa6, 0xfc, 0x80, |
|
| 7766 |
+ 0x15, 0x2d, 0xf3, 0x61, 0xfc, 0xf3, 0x12, 0x14, 0xf7, 0xfc, 0x11, 0x17, 0x34, 0xba, 0xe9, 0x20, |
|
| 7767 |
+ 0x69, 0xb5, 0x0b, 0x41, 0xda, 0x83, 0x62, 0xc4, 0x98, 0xb0, 0x1d, 0x72, 0x51, 0x7c, 0x30, 0x63, |
|
| 7768 |
+ 0x62, 0xaf, 0xdd, 0xa9, 0x4a, 0xa2, 0xec, 0xed, 0xf1, 0x1e, 0x17, 0x24, 0x75, 0x8f, 0xa0, 0x37, |
|
| 7769 |
+ 0xb0, 0x9e, 0xbc, 0x88, 0x3d, 0xc6, 0x04, 0x17, 0x11, 0x09, 0xed, 0x01, 0x9d, 0xc8, 0x59, 0x29, |
|
| 7770 |
+ 0x7f, 0xde, 0xb4, 0x7d, 0x10, 0x38, 0xd1, 0x44, 0x05, 0xef, 0x29, 0x9d, 0xe0, 0x35, 0x2d, 0xa0, |
|
| 7771 |
+ 0x93, 0xf0, 0x9f, 0xd2, 0x09, 0x47, 0x0f, 0x61, 0x83, 0xce, 0x60, 0x52, 0xa2, 0xed, 0x93, 0xa1, |
|
| 7772 |
+ 0x7c, 0xeb, 0x6d, 0xc7, 0x67, 0xce, 0x40, 0x3d, 0x37, 0x26, 0xbe, 0x4d, 0xd3, 0xa2, 0x9e, 0xc5, |
|
| 7773 |
+ 0x88, 0x3d, 0x09, 0x40, 0x1c, 0xac, 0x9e, 0x4f, 0x9c, 0x81, 0xef, 0x71, 0xf9, 0x0f, 0x55, 0x6a, |
|
| 7774 |
+ 0x78, 0x96, 0x2f, 0x86, 0xb4, 0x6d, 0xe7, 0x82, 0x68, 0xb5, 0x3a, 0x73, 0x6e, 0x6a, 0x14, 0xd7, |
|
| 7775 |
+ 0x15, 0xf5, 0xed, 0x5e, 0xf6, 0x29, 0xea, 0x40, 0x65, 0x14, 0x48, 0xf5, 0x71, 0x0c, 0xca, 0x57, |
|
| 7776 |
+ 0x8d, 0x01, 0xc4, 0x2c, 0xe9, 0x79, 0x6d, 0x0c, 0x1b, 0x17, 0x29, 0xcf, 0xa8, 0xcd, 0x47, 0xe9, |
|
| 7777 |
+ 0xda, 0xac, 0x6c, 0x7f, 0x9d, 0xa5, 0x2f, 0x5b, 0x64, 0xaa, 0x8e, 0x33, 0xd3, 0xf6, 0xaf, 0x06, |
|
| 7778 |
+ 0x14, 0x5e, 0x52, 0x27, 0xa2, 0xe2, 0xb3, 0x66, 0xed, 0xce, 0xa9, 0xac, 0xad, 0x67, 0x0f, 0xc2, |
|
| 7779 |
+ 0x52, 0xeb, 0x42, 0xd2, 0xd6, 0xa0, 0xe4, 0x05, 0x82, 0x46, 0x01, 0xf1, 0x55, 0xd6, 0x96, 0xf0, |
|
| 7780 |
+ 0x6c, 0x9f, 0xe9, 0xc0, 0x07, 0x03, 0x0a, 0xf1, 0xa4, 0x78, 0xd3, 0x0e, 0xc4, 0x5a, 0xcf, 0x3a, |
|
| 7781 |
+ 0x90, 0x69, 0xe4, 0xbf, 0x0d, 0x28, 0x25, 0x0f, 0xd6, 0x67, 0x35, 0xf3, 0xcc, 0xe4, 0x95, 0xff, |
|
| 7782 |
+ 0x9f, 0x27, 0x2f, 0x04, 0xe6, 0xc0, 0x0b, 0xf4, 0x8c, 0x88, 0xd5, 0x1a, 0xb5, 0xa0, 0x18, 0x92, |
|
| 7783 |
+ 0x89, 0xcf, 0x88, 0xab, 0x1b, 0xe5, 0xda, 0xc2, 0x4f, 0x15, 0xed, 0x60, 0x82, 0x13, 0xd0, 0xee, |
|
| 7784 |
+ 0xda, 0xd1, 0x71, 0x73, 0x15, 0xaa, 0x69, 0xcf, 0xdf, 0x19, 0xcd, 0x7f, 0x18, 0x50, 0x3e, 0xf8, |
|
| 7785 |
+ 0x9d, 0xa0, 0x81, 0x9a, 0x07, 0xfe, 0x2f, 0x9d, 0xdf, 0x5c, 0xfc, 0x39, 0xa3, 0x7c, 0xea, 0x97, |
|
| 7786 |
+ 0x8a, 0xac, 0x4b, 0xed, 0x58, 0x1f, 0x3f, 0xd5, 0x6f, 0xfd, 0xf3, 0x53, 0xfd, 0xd6, 0xef, 0xa7, |
|
| 7787 |
+ 0x75, 0xe3, 0xe3, 0xb4, 0x6e, 0xfc, 0x7d, 0x5a, 0x37, 0xfe, 0x35, 0xad, 0x1b, 0xbd, 0x82, 0x8a, |
|
| 7788 |
+ 0xcf, 0x8f, 0xfe, 0x1b, 0x00, 0x00, 0xff, 0xff, 0xbd, 0x5c, 0xf5, 0x06, 0x95, 0x13, 0x00, 0x00, |
|
| 7788 | 7789 |
} |
| ... | ... |
@@ -59,8 +59,9 @@ message Node {
|
| 59 | 59 |
// component, if the node is a manager. |
| 60 | 60 |
ManagerStatus manager_status = 6; |
| 61 | 61 |
|
| 62 |
+ // DEPRECATED: Use lb_attachments to find the ingress network |
|
| 62 | 63 |
// The node attachment to the ingress network. |
| 63 |
- NetworkAttachment attachment = 7; |
|
| 64 |
+ NetworkAttachment attachment = 7 [deprecated=true]; |
|
| 64 | 65 |
|
| 65 | 66 |
// Certificate is the TLS certificate issued for the node, if any. |
| 66 | 67 |
Certificate certificate = 8 [(gogoproto.nullable) = false]; |
| ... | ... |
@@ -75,6 +76,11 @@ message Node {
|
| 75 | 75 |
// shows the privilege level that the CA would currently grant when |
| 76 | 76 |
// issuing or renewing the node's certificate. |
| 77 | 77 |
NodeRole role = 9; |
| 78 |
+ |
|
| 79 |
+ // Each node uses the network attachment to set up an endpoint on the |
|
| 80 |
+ // node to be used for load balancing. Each overlay network, including |
|
| 81 |
+ // ingress network, will have an NetworkAttachment. |
|
| 82 |
+ repeated NetworkAttachment lb_attachments = 10; |
|
| 78 | 83 |
} |
| 79 | 84 |
|
| 80 | 85 |
message Service {
|
| ... | ... |
@@ -257,7 +263,7 @@ message NetworkAttachment {
|
| 257 | 257 |
|
| 258 | 258 |
// List of aliases by which a task is resolved in a network |
| 259 | 259 |
repeated string aliases = 3; |
| 260 |
- |
|
| 260 |
+ |
|
| 261 | 261 |
// Map of all the driver attachment options for this network |
| 262 | 262 |
map<string,string> driver_attachment_opts = 4; |
| 263 | 263 |
} |
| ... | ... |
@@ -219,6 +219,36 @@ func (x Mount_MountType) String() string {
|
| 219 | 219 |
} |
| 220 | 220 |
func (Mount_MountType) EnumDescriptor() ([]byte, []int) { return fileDescriptorTypes, []int{16, 0} }
|
| 221 | 221 |
|
| 222 |
+// Consistency indicates the tolerable level of file system consistency |
|
| 223 |
+type Mount_MountConsistency int32 |
|
| 224 |
+ |
|
| 225 |
+const ( |
|
| 226 |
+ MountConsistencyDefault Mount_MountConsistency = 0 |
|
| 227 |
+ MountConsistencyFull Mount_MountConsistency = 1 |
|
| 228 |
+ MountConsistencyCached Mount_MountConsistency = 2 |
|
| 229 |
+ MountConsistencyDelegated Mount_MountConsistency = 3 |
|
| 230 |
+) |
|
| 231 |
+ |
|
| 232 |
+var Mount_MountConsistency_name = map[int32]string{
|
|
| 233 |
+ 0: "DEFAULT", |
|
| 234 |
+ 1: "CONSISTENT", |
|
| 235 |
+ 2: "CACHED", |
|
| 236 |
+ 3: "DELEGATED", |
|
| 237 |
+} |
|
| 238 |
+var Mount_MountConsistency_value = map[string]int32{
|
|
| 239 |
+ "DEFAULT": 0, |
|
| 240 |
+ "CONSISTENT": 1, |
|
| 241 |
+ "CACHED": 2, |
|
| 242 |
+ "DELEGATED": 3, |
|
| 243 |
+} |
|
| 244 |
+ |
|
| 245 |
+func (x Mount_MountConsistency) String() string {
|
|
| 246 |
+ return proto.EnumName(Mount_MountConsistency_name, int32(x)) |
|
| 247 |
+} |
|
| 248 |
+func (Mount_MountConsistency) EnumDescriptor() ([]byte, []int) {
|
|
| 249 |
+ return fileDescriptorTypes, []int{16, 1}
|
|
| 250 |
+} |
|
| 251 |
+ |
|
| 222 | 252 |
type Mount_BindOptions_MountPropagation int32 |
| 223 | 253 |
|
| 224 | 254 |
const ( |
| ... | ... |
@@ -871,7 +901,8 @@ type Mount struct {
|
| 871 | 871 |
// Target path in container |
| 872 | 872 |
Target string `protobuf:"bytes,3,opt,name=target,proto3" json:"target,omitempty"` |
| 873 | 873 |
// ReadOnly should be set to true if the mount should not be writable. |
| 874 |
- ReadOnly bool `protobuf:"varint,4,opt,name=readonly,proto3" json:"readonly,omitempty"` |
|
| 874 |
+ ReadOnly bool `protobuf:"varint,4,opt,name=readonly,proto3" json:"readonly,omitempty"` |
|
| 875 |
+ Consistency Mount_MountConsistency `protobuf:"varint,8,opt,name=consistency,proto3,enum=docker.swarmkit.v1.Mount_MountConsistency" json:"consistency,omitempty"` |
|
| 875 | 876 |
// BindOptions configures properties of a bind mount type. |
| 876 | 877 |
// |
| 877 | 878 |
// For mounts of type bind, the source must be an absolute host path. |
| ... | ... |
@@ -2127,6 +2158,7 @@ func init() {
|
| 2127 | 2127 |
proto.RegisterEnum("docker.swarmkit.v1.RaftMemberStatus_Reachability", RaftMemberStatus_Reachability_name, RaftMemberStatus_Reachability_value)
|
| 2128 | 2128 |
proto.RegisterEnum("docker.swarmkit.v1.NodeStatus_State", NodeStatus_State_name, NodeStatus_State_value)
|
| 2129 | 2129 |
proto.RegisterEnum("docker.swarmkit.v1.Mount_MountType", Mount_MountType_name, Mount_MountType_value)
|
| 2130 |
+ proto.RegisterEnum("docker.swarmkit.v1.Mount_MountConsistency", Mount_MountConsistency_name, Mount_MountConsistency_value)
|
|
| 2130 | 2131 |
proto.RegisterEnum("docker.swarmkit.v1.Mount_BindOptions_MountPropagation", Mount_BindOptions_MountPropagation_name, Mount_BindOptions_MountPropagation_value)
|
| 2131 | 2132 |
proto.RegisterEnum("docker.swarmkit.v1.RestartPolicy_RestartCondition", RestartPolicy_RestartCondition_name, RestartPolicy_RestartCondition_value)
|
| 2132 | 2133 |
proto.RegisterEnum("docker.swarmkit.v1.UpdateConfig_FailureAction", UpdateConfig_FailureAction_name, UpdateConfig_FailureAction_value)
|
| ... | ... |
@@ -4160,6 +4192,11 @@ func (m *Mount) MarshalTo(dAtA []byte) (int, error) {
|
| 4160 | 4160 |
} |
| 4161 | 4161 |
i += n12 |
| 4162 | 4162 |
} |
| 4163 |
+ if m.Consistency != 0 {
|
|
| 4164 |
+ dAtA[i] = 0x40 |
|
| 4165 |
+ i++ |
|
| 4166 |
+ i = encodeVarintTypes(dAtA, i, uint64(m.Consistency)) |
|
| 4167 |
+ } |
|
| 4163 | 4168 |
return i, nil |
| 4164 | 4169 |
} |
| 4165 | 4170 |
|
| ... | ... |
@@ -6398,6 +6435,9 @@ func (m *Mount) Size() (n int) {
|
| 6398 | 6398 |
l = m.TmpfsOptions.Size() |
| 6399 | 6399 |
n += 1 + l + sovTypes(uint64(l)) |
| 6400 | 6400 |
} |
| 6401 |
+ if m.Consistency != 0 {
|
|
| 6402 |
+ n += 1 + sovTypes(uint64(m.Consistency)) |
|
| 6403 |
+ } |
|
| 6401 | 6404 |
return n |
| 6402 | 6405 |
} |
| 6403 | 6406 |
|
| ... | ... |
@@ -7498,6 +7538,7 @@ func (this *Mount) String() string {
|
| 7498 | 7498 |
`BindOptions:` + strings.Replace(fmt.Sprintf("%v", this.BindOptions), "Mount_BindOptions", "Mount_BindOptions", 1) + `,`,
|
| 7499 | 7499 |
`VolumeOptions:` + strings.Replace(fmt.Sprintf("%v", this.VolumeOptions), "Mount_VolumeOptions", "Mount_VolumeOptions", 1) + `,`,
|
| 7500 | 7500 |
`TmpfsOptions:` + strings.Replace(fmt.Sprintf("%v", this.TmpfsOptions), "Mount_TmpfsOptions", "Mount_TmpfsOptions", 1) + `,`,
|
| 7501 |
+ `Consistency:` + fmt.Sprintf("%v", this.Consistency) + `,`,
|
|
| 7501 | 7502 |
`}`, |
| 7502 | 7503 |
}, "") |
| 7503 | 7504 |
return s |
| ... | ... |
@@ -10464,6 +10505,25 @@ func (m *Mount) Unmarshal(dAtA []byte) error {
|
| 10464 | 10464 |
return err |
| 10465 | 10465 |
} |
| 10466 | 10466 |
iNdEx = postIndex |
| 10467 |
+ case 8: |
|
| 10468 |
+ if wireType != 0 {
|
|
| 10469 |
+ return fmt.Errorf("proto: wrong wireType = %d for field Consistency", wireType)
|
|
| 10470 |
+ } |
|
| 10471 |
+ m.Consistency = 0 |
|
| 10472 |
+ for shift := uint(0); ; shift += 7 {
|
|
| 10473 |
+ if shift >= 64 {
|
|
| 10474 |
+ return ErrIntOverflowTypes |
|
| 10475 |
+ } |
|
| 10476 |
+ if iNdEx >= l {
|
|
| 10477 |
+ return io.ErrUnexpectedEOF |
|
| 10478 |
+ } |
|
| 10479 |
+ b := dAtA[iNdEx] |
|
| 10480 |
+ iNdEx++ |
|
| 10481 |
+ m.Consistency |= (Mount_MountConsistency(b) & 0x7F) << shift |
|
| 10482 |
+ if b < 0x80 {
|
|
| 10483 |
+ break |
|
| 10484 |
+ } |
|
| 10485 |
+ } |
|
| 10467 | 10486 |
default: |
| 10468 | 10487 |
iNdEx = preIndex |
| 10469 | 10488 |
skippy, err := skipTypes(dAtA[iNdEx:]) |
| ... | ... |
@@ -16964,312 +17024,319 @@ var ( |
| 16964 | 16964 |
func init() { proto.RegisterFile("github.com/docker/swarmkit/api/types.proto", fileDescriptorTypes) }
|
| 16965 | 16965 |
|
| 16966 | 16966 |
var fileDescriptorTypes = []byte{
|
| 16967 |
- // 4905 bytes of a gzipped FileDescriptorProto |
|
| 16968 |
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x7a, 0x4d, 0x6c, 0x24, 0x49, |
|
| 16969 |
- 0x56, 0xbf, 0xeb, 0xd3, 0x55, 0xaf, 0xca, 0x76, 0x3a, 0xda, 0xdb, 0xe3, 0xae, 0xed, 0xb1, 0x3d, |
|
| 16970 |
- 0x39, 0xd3, 0x3b, 0x33, 0xbd, 0xf3, 0xaf, 0xfe, 0x9a, 0x19, 0xf5, 0xcc, 0xfc, 0xe7, 0xa3, 0xbe, |
|
| 16971 |
- 0xdc, 0xae, 0x6d, 0xbb, 0xaa, 0x14, 0x55, 0xee, 0xde, 0x41, 0x82, 0x54, 0x3a, 0x33, 0x5c, 0xce, |
|
| 16972 |
- 0x71, 0x56, 0x46, 0x91, 0x99, 0x65, 0x77, 0xb1, 0x20, 0x5a, 0x1c, 0x00, 0xf9, 0x04, 0xb7, 0x45, |
|
| 16973 |
- 0xc8, 0x5c, 0xe0, 0x84, 0x90, 0x38, 0x80, 0x84, 0xe0, 0x34, 0x48, 0x1c, 0xe6, 0xc6, 0x02, 0x12, |
|
| 16974 |
- 0x5a, 0x81, 0x64, 0x18, 0x1f, 0xb8, 0x21, 0xb8, 0xac, 0xb8, 0x80, 0x84, 0xe2, 0x23, 0xb3, 0xb2, |
|
| 16975 |
- 0xaa, 0xd3, 0x76, 0x0f, 0xb3, 0x17, 0x3b, 0xe3, 0xbd, 0xdf, 0x7b, 0xf1, 0xe2, 0x45, 0xc4, 0x8b, |
|
| 16976 |
- 0xf7, 0x22, 0x0a, 0x6e, 0xf7, 0x2d, 0xff, 0x60, 0xb4, 0x57, 0x36, 0xe8, 0xe0, 0x8e, 0x49, 0x8d, |
|
| 16977 |
- 0x43, 0xe2, 0xde, 0xf1, 0x8e, 0x75, 0x77, 0x70, 0x68, 0xf9, 0x77, 0xf4, 0xa1, 0x75, 0xc7, 0x1f, |
|
| 16978 |
- 0x0f, 0x89, 0x57, 0x1e, 0xba, 0xd4, 0xa7, 0x08, 0x09, 0x40, 0x39, 0x00, 0x94, 0x8f, 0xee, 0x95, |
|
| 16979 |
- 0xd6, 0xfb, 0x94, 0xf6, 0x6d, 0x72, 0x87, 0x23, 0xf6, 0x46, 0xfb, 0x77, 0x7c, 0x6b, 0x40, 0x3c, |
|
| 16980 |
- 0x5f, 0x1f, 0x0c, 0x85, 0x50, 0x69, 0x6d, 0x16, 0x60, 0x8e, 0x5c, 0xdd, 0xb7, 0xa8, 0x23, 0xf9, |
|
| 16981 |
- 0x2b, 0x7d, 0xda, 0xa7, 0xfc, 0xf3, 0x0e, 0xfb, 0x12, 0x54, 0x75, 0x1d, 0xe6, 0x9f, 0x10, 0xd7, |
|
| 16982 |
- 0xb3, 0xa8, 0x83, 0x56, 0x20, 0x63, 0x39, 0x26, 0x79, 0xb6, 0x9a, 0xd8, 0x48, 0xbc, 0x95, 0xc6, |
|
| 16983 |
- 0xa2, 0xa1, 0xde, 0x05, 0x68, 0xb2, 0x8f, 0x86, 0xe3, 0xbb, 0x63, 0xa4, 0x40, 0xea, 0x90, 0x8c, |
|
| 16984 |
- 0x39, 0x22, 0x8f, 0xd9, 0x27, 0xa3, 0x1c, 0xe9, 0xf6, 0x6a, 0x52, 0x50, 0x8e, 0x74, 0x5b, 0xfd, |
|
| 16985 |
- 0x3a, 0x01, 0x85, 0x8a, 0xe3, 0x50, 0x9f, 0xf7, 0xee, 0x21, 0x04, 0x69, 0x47, 0x1f, 0x10, 0x29, |
|
| 16986 |
- 0xc4, 0xbf, 0x51, 0x0d, 0xb2, 0xb6, 0xbe, 0x47, 0x6c, 0x6f, 0x35, 0xb9, 0x91, 0x7a, 0xab, 0x70, |
|
| 16987 |
- 0xff, 0xfb, 0xe5, 0x17, 0x87, 0x5c, 0x8e, 0x28, 0x29, 0x6f, 0x73, 0x34, 0x37, 0x02, 0x4b, 0x51, |
|
| 16988 |
- 0xf4, 0x09, 0xcc, 0x5b, 0x8e, 0x69, 0x19, 0xc4, 0x5b, 0x4d, 0x73, 0x2d, 0x6b, 0x71, 0x5a, 0x26, |
|
| 16989 |
- 0xd6, 0x57, 0xd3, 0x5f, 0x9d, 0xad, 0xcf, 0xe1, 0x40, 0xa8, 0xf4, 0x01, 0x14, 0x22, 0x6a, 0x63, |
|
| 16990 |
- 0xc6, 0xb6, 0x02, 0x99, 0x23, 0xdd, 0x1e, 0x11, 0x39, 0x3a, 0xd1, 0xf8, 0x30, 0xf9, 0x30, 0xa1, |
|
| 16991 |
- 0x7e, 0x06, 0x2b, 0x2d, 0x7d, 0x40, 0xcc, 0x47, 0xc4, 0x21, 0xae, 0x65, 0x60, 0xe2, 0xd1, 0x91, |
|
| 16992 |
- 0x6b, 0x10, 0x36, 0xd6, 0x43, 0xcb, 0x31, 0x83, 0xb1, 0xb2, 0xef, 0x78, 0x2d, 0x6a, 0x0d, 0x5e, |
|
| 16993 |
- 0xa9, 0x5b, 0x9e, 0xe1, 0x12, 0x9f, 0x7c, 0x63, 0x25, 0xa9, 0x40, 0xc9, 0x59, 0x02, 0x96, 0x66, |
|
| 16994 |
- 0xa5, 0x7f, 0x01, 0xae, 0x31, 0x17, 0x9b, 0x9a, 0x2b, 0x29, 0x9a, 0x37, 0x24, 0x06, 0x57, 0x56, |
|
| 16995 |
- 0xb8, 0xff, 0x56, 0x9c, 0x87, 0xe2, 0x46, 0xb2, 0x35, 0x87, 0x97, 0xb9, 0x9a, 0x80, 0xd0, 0x1d, |
|
| 16996 |
- 0x12, 0x03, 0x19, 0x70, 0xdd, 0x94, 0x46, 0xcf, 0xa8, 0x4f, 0x72, 0xf5, 0xb1, 0xd3, 0x78, 0xc1, |
|
| 16997 |
- 0x30, 0xb7, 0xe6, 0xf0, 0x4a, 0xa0, 0x2c, 0xda, 0x49, 0x15, 0x20, 0x17, 0xe8, 0x56, 0x7f, 0x9c, |
|
| 16998 |
- 0x80, 0x7c, 0xc0, 0xf4, 0xd0, 0xdb, 0x90, 0x77, 0x74, 0x87, 0x6a, 0xc6, 0x70, 0xe4, 0xf1, 0x01, |
|
| 16999 |
- 0xa5, 0xaa, 0xc5, 0xf3, 0xb3, 0xf5, 0x5c, 0x4b, 0x77, 0x68, 0xad, 0xb3, 0xeb, 0xe1, 0x1c, 0x63, |
|
| 17000 |
- 0xd7, 0x86, 0x23, 0x0f, 0xbd, 0x06, 0xc5, 0x01, 0x19, 0x50, 0x77, 0xac, 0xed, 0x8d, 0x7d, 0xe2, |
|
| 17001 |
- 0x49, 0xb7, 0x15, 0x04, 0xad, 0xca, 0x48, 0xe8, 0x63, 0x98, 0xef, 0x0b, 0x93, 0x56, 0x53, 0x7c, |
|
| 17002 |
- 0xf9, 0xbc, 0x1e, 0x67, 0xfd, 0x8c, 0xd5, 0x38, 0x90, 0x51, 0x7f, 0x27, 0x01, 0x2b, 0x21, 0x95, |
|
| 17003 |
- 0xfc, 0xf2, 0xc8, 0x72, 0xc9, 0x80, 0x38, 0xbe, 0x87, 0xde, 0x83, 0xac, 0x6d, 0x0d, 0x2c, 0xdf, |
|
| 17004 |
- 0x93, 0x3e, 0x7f, 0x35, 0x4e, 0x6d, 0x38, 0x28, 0x2c, 0xc1, 0xa8, 0x02, 0x45, 0x97, 0x78, 0xc4, |
|
| 17005 |
- 0x3d, 0x12, 0x2b, 0x5e, 0x7a, 0xf4, 0x0a, 0xe1, 0x29, 0x11, 0x75, 0x13, 0x72, 0x1d, 0x5b, 0xf7, |
|
| 17006 |
- 0xf7, 0xa9, 0x3b, 0x40, 0x2a, 0x14, 0x75, 0xd7, 0x38, 0xb0, 0x7c, 0x62, 0xf8, 0x23, 0x37, 0xd8, |
|
| 17007 |
- 0x7d, 0x53, 0x34, 0x74, 0x1d, 0x92, 0x54, 0x74, 0x94, 0xaf, 0x66, 0xcf, 0xcf, 0xd6, 0x93, 0xed, |
|
| 17008 |
- 0x2e, 0x4e, 0x52, 0x4f, 0xfd, 0x08, 0x96, 0x3b, 0xf6, 0xa8, 0x6f, 0x39, 0x75, 0xe2, 0x19, 0xae, |
|
| 17009 |
- 0x35, 0x64, 0xda, 0xd9, 0xaa, 0x64, 0x31, 0x2a, 0x58, 0x95, 0xec, 0x3b, 0xdc, 0xda, 0xc9, 0xc9, |
|
| 17010 |
- 0xd6, 0x56, 0x7f, 0x2b, 0x09, 0xcb, 0x0d, 0xa7, 0x6f, 0x39, 0x24, 0x2a, 0x7d, 0x0b, 0x16, 0x09, |
|
| 17011 |
- 0x27, 0x6a, 0x47, 0x22, 0xdc, 0x48, 0x3d, 0x0b, 0x82, 0x1a, 0xc4, 0xa0, 0xe6, 0x4c, 0x5c, 0xb8, |
|
| 17012 |
- 0x17, 0x37, 0xfc, 0x17, 0xb4, 0xc7, 0x46, 0x87, 0x06, 0xcc, 0x0f, 0xf9, 0x20, 0x3c, 0x39, 0xbd, |
|
| 17013 |
- 0xb7, 0xe2, 0x74, 0xbd, 0x30, 0xce, 0x20, 0x48, 0x48, 0xd9, 0x6f, 0x13, 0x24, 0xfe, 0x24, 0x09, |
|
| 17014 |
- 0x4b, 0x2d, 0x6a, 0x4e, 0xf9, 0xa1, 0x04, 0xb9, 0x03, 0xea, 0xf9, 0x91, 0x80, 0x18, 0xb6, 0xd1, |
|
| 17015 |
- 0x43, 0xc8, 0x0d, 0xe5, 0xf4, 0xc9, 0xd9, 0xbf, 0x19, 0x6f, 0xb2, 0xc0, 0xe0, 0x10, 0x8d, 0x3e, |
|
| 17016 |
- 0x82, 0x7c, 0xb0, 0x65, 0xd8, 0x68, 0x5f, 0x62, 0xe1, 0x4c, 0xf0, 0xe8, 0x63, 0xc8, 0x8a, 0x49, |
|
| 17017 |
- 0x58, 0x4d, 0x73, 0xc9, 0x5b, 0x2f, 0xe5, 0x73, 0x2c, 0x85, 0xd0, 0x23, 0xc8, 0xf9, 0xb6, 0xa7, |
|
| 17018 |
- 0x59, 0xce, 0x3e, 0x5d, 0xcd, 0x70, 0x05, 0xeb, 0xb1, 0x41, 0x86, 0x9a, 0xa4, 0xb7, 0xdd, 0x6d, |
|
| 17019 |
- 0x3a, 0xfb, 0xb4, 0x5a, 0x38, 0x3f, 0x5b, 0x9f, 0x97, 0x0d, 0x3c, 0xef, 0xdb, 0x1e, 0xfb, 0x50, |
|
| 17020 |
- 0x7f, 0x37, 0x01, 0x85, 0x08, 0x0a, 0xbd, 0x0a, 0xe0, 0xbb, 0x23, 0xcf, 0xd7, 0x5c, 0x4a, 0x7d, |
|
| 17021 |
- 0xee, 0xac, 0x22, 0xce, 0x73, 0x0a, 0xa6, 0xd4, 0x47, 0x65, 0xb8, 0x66, 0x10, 0xd7, 0xd7, 0x2c, |
|
| 17022 |
- 0xcf, 0x1b, 0x11, 0x57, 0xf3, 0x46, 0x7b, 0x5f, 0x10, 0xc3, 0xe7, 0x8e, 0x2b, 0xe2, 0x65, 0xc6, |
|
| 17023 |
- 0x6a, 0x72, 0x4e, 0x57, 0x30, 0xd0, 0x03, 0xb8, 0x1e, 0xc5, 0x0f, 0x47, 0x7b, 0xb6, 0x65, 0x68, |
|
| 17024 |
- 0x6c, 0x32, 0x53, 0x5c, 0xe4, 0xda, 0x44, 0xa4, 0xc3, 0x79, 0x8f, 0xc9, 0x58, 0xfd, 0x69, 0x02, |
|
| 17025 |
- 0x14, 0xac, 0xef, 0xfb, 0x3b, 0x64, 0xb0, 0x47, 0xdc, 0xae, 0xaf, 0xfb, 0x23, 0x0f, 0x5d, 0x87, |
|
| 17026 |
- 0xac, 0x4d, 0x74, 0x93, 0xb8, 0xdc, 0xa8, 0x1c, 0x96, 0x2d, 0xb4, 0xcb, 0x76, 0xb0, 0x6e, 0x1c, |
|
| 17027 |
- 0xe8, 0x7b, 0x96, 0x6d, 0xf9, 0x63, 0x6e, 0xca, 0x62, 0xfc, 0x12, 0x9e, 0xd5, 0x59, 0xc6, 0x11, |
|
| 17028 |
- 0x41, 0x3c, 0xa5, 0x06, 0xad, 0xc2, 0xfc, 0x80, 0x78, 0x9e, 0xde, 0x27, 0xdc, 0xd2, 0x3c, 0x0e, |
|
| 17029 |
- 0x9a, 0xea, 0x47, 0x50, 0x8c, 0xca, 0xa1, 0x02, 0xcc, 0xef, 0xb6, 0x1e, 0xb7, 0xda, 0x4f, 0x5b, |
|
| 17030 |
- 0xca, 0x1c, 0x5a, 0x82, 0xc2, 0x6e, 0x0b, 0x37, 0x2a, 0xb5, 0xad, 0x4a, 0x75, 0xbb, 0xa1, 0x24, |
|
| 17031 |
- 0xd0, 0x02, 0xe4, 0x27, 0xcd, 0xa4, 0xfa, 0x67, 0x09, 0x00, 0xe6, 0x6e, 0x39, 0xa8, 0x0f, 0x21, |
|
| 17032 |
- 0xe3, 0xf9, 0xba, 0x2f, 0x56, 0xe5, 0xe2, 0xfd, 0x37, 0x2e, 0x9a, 0x43, 0x69, 0x2f, 0xfb, 0x47, |
|
| 17033 |
- 0xb0, 0x10, 0x89, 0x5a, 0x98, 0x9c, 0xb2, 0x90, 0x05, 0x08, 0xdd, 0x34, 0x5d, 0x69, 0x38, 0xff, |
|
| 17034 |
- 0x56, 0x3f, 0x82, 0x0c, 0x97, 0x9e, 0x36, 0x37, 0x07, 0xe9, 0x3a, 0xfb, 0x4a, 0xa0, 0x3c, 0x64, |
|
| 17035 |
- 0x70, 0xa3, 0x52, 0xff, 0x5c, 0x49, 0x22, 0x05, 0x8a, 0xf5, 0x66, 0xb7, 0xd6, 0x6e, 0xb5, 0x1a, |
|
| 17036 |
- 0xb5, 0x5e, 0xa3, 0xae, 0xa4, 0xd4, 0x5b, 0x90, 0x69, 0x0e, 0x98, 0xe6, 0x9b, 0x6c, 0xc9, 0xef, |
|
| 17037 |
- 0x13, 0x97, 0x38, 0x46, 0xb0, 0x93, 0x26, 0x04, 0xf5, 0x27, 0x79, 0xc8, 0xec, 0xd0, 0x91, 0xe3, |
|
| 17038 |
- 0xa3, 0xfb, 0x91, 0xb0, 0xb5, 0x18, 0x9f, 0x21, 0x70, 0x60, 0xb9, 0x37, 0x1e, 0x12, 0x19, 0xd6, |
|
| 17039 |
- 0xae, 0x43, 0x56, 0x6c, 0x0e, 0x39, 0x1c, 0xd9, 0x62, 0x74, 0x5f, 0x77, 0xfb, 0xc4, 0x97, 0xe3, |
|
| 17040 |
- 0x91, 0x2d, 0xf4, 0x16, 0x3b, 0xb1, 0x74, 0x93, 0x3a, 0xf6, 0x98, 0xef, 0xa1, 0x9c, 0x38, 0x96, |
|
| 17041 |
- 0x30, 0xd1, 0xcd, 0xb6, 0x63, 0x8f, 0x71, 0xc8, 0x45, 0x5b, 0x50, 0xdc, 0xb3, 0x1c, 0x53, 0xa3, |
|
| 17042 |
- 0x43, 0x11, 0xe4, 0x33, 0x17, 0xef, 0x38, 0x61, 0x55, 0xd5, 0x72, 0xcc, 0xb6, 0x00, 0xe3, 0xc2, |
|
| 17043 |
- 0xde, 0xa4, 0x81, 0x5a, 0xb0, 0x78, 0x44, 0xed, 0xd1, 0x80, 0x84, 0xba, 0xb2, 0x5c, 0xd7, 0x9b, |
|
| 17044 |
- 0x17, 0xeb, 0x7a, 0xc2, 0xf1, 0x81, 0xb6, 0x85, 0xa3, 0x68, 0x13, 0x3d, 0x86, 0x05, 0x7f, 0x30, |
|
| 17045 |
- 0xdc, 0xf7, 0x42, 0x75, 0xf3, 0x5c, 0xdd, 0xf7, 0x2e, 0x71, 0x18, 0x83, 0x07, 0xda, 0x8a, 0x7e, |
|
| 17046 |
- 0xa4, 0x55, 0xfa, 0x8d, 0x14, 0x14, 0x22, 0x96, 0xa3, 0x2e, 0x14, 0x86, 0x2e, 0x1d, 0xea, 0x7d, |
|
| 17047 |
- 0x7e, 0x50, 0xc9, 0xb9, 0xb8, 0xf7, 0x52, 0xa3, 0x2e, 0x77, 0x26, 0x82, 0x38, 0xaa, 0x45, 0x3d, |
|
| 17048 |
- 0x4d, 0x42, 0x21, 0xc2, 0x44, 0xb7, 0x21, 0x87, 0x3b, 0xb8, 0xf9, 0xa4, 0xd2, 0x6b, 0x28, 0x73, |
|
| 17049 |
- 0xa5, 0x9b, 0x27, 0xa7, 0x1b, 0xab, 0x5c, 0x5b, 0x54, 0x41, 0xc7, 0xb5, 0x8e, 0xd8, 0xd2, 0x7b, |
|
| 17050 |
- 0x0b, 0xe6, 0x03, 0x68, 0xa2, 0xf4, 0xdd, 0x93, 0xd3, 0x8d, 0x57, 0x66, 0xa1, 0x11, 0x24, 0xee, |
|
| 17051 |
- 0x6e, 0x55, 0x70, 0xa3, 0xae, 0x24, 0xe3, 0x91, 0xb8, 0x7b, 0xa0, 0xbb, 0xc4, 0x44, 0xdf, 0x83, |
|
| 17052 |
- 0xac, 0x04, 0xa6, 0x4a, 0xa5, 0x93, 0xd3, 0x8d, 0xeb, 0xb3, 0xc0, 0x09, 0x0e, 0x77, 0xb7, 0x2b, |
|
| 17053 |
- 0x4f, 0x1a, 0x4a, 0x3a, 0x1e, 0x87, 0xbb, 0xb6, 0x7e, 0x44, 0xd0, 0x1b, 0x90, 0x11, 0xb0, 0x4c, |
|
| 17054 |
- 0xe9, 0xc6, 0xc9, 0xe9, 0xc6, 0x77, 0x5e, 0x50, 0xc7, 0x50, 0xa5, 0xd5, 0xdf, 0xfe, 0xc3, 0xb5, |
|
| 17055 |
- 0xb9, 0xbf, 0xfa, 0xa3, 0x35, 0x65, 0x96, 0x5d, 0xfa, 0xef, 0x04, 0x2c, 0x4c, 0x4d, 0x39, 0x52, |
|
| 17056 |
- 0x21, 0xeb, 0x50, 0x83, 0x0e, 0xc5, 0xf9, 0x95, 0xab, 0xc2, 0xf9, 0xd9, 0x7a, 0xb6, 0x45, 0x6b, |
|
| 17057 |
- 0x74, 0x38, 0xc6, 0x92, 0x83, 0x1e, 0xcf, 0x9c, 0xc0, 0x0f, 0x5e, 0x72, 0x3d, 0xc5, 0x9e, 0xc1, |
|
| 17058 |
- 0x9f, 0xc2, 0x82, 0xe9, 0x5a, 0x47, 0xc4, 0xd5, 0x0c, 0xea, 0xec, 0x5b, 0x7d, 0x79, 0x36, 0x95, |
|
| 17059 |
- 0x62, 0xd3, 0x44, 0x0e, 0xc4, 0x45, 0x21, 0x50, 0xe3, 0xf8, 0x6f, 0x71, 0xfa, 0x96, 0x9e, 0x40, |
|
| 17060 |
- 0x31, 0xba, 0x42, 0xd9, 0x71, 0xe2, 0x59, 0xbf, 0x42, 0x64, 0x3e, 0xc8, 0xb3, 0x47, 0x9c, 0x67, |
|
| 17061 |
- 0x14, 0x91, 0x0d, 0xbe, 0x09, 0xe9, 0x01, 0x35, 0x85, 0x9e, 0x85, 0xea, 0x35, 0x96, 0x04, 0xfc, |
|
| 17062 |
- 0xd3, 0xd9, 0x7a, 0x81, 0x7a, 0xe5, 0x4d, 0xcb, 0x26, 0x3b, 0xd4, 0x24, 0x98, 0x03, 0xd4, 0x23, |
|
| 17063 |
- 0x48, 0xb3, 0x50, 0x81, 0xbe, 0x0b, 0xe9, 0x6a, 0xb3, 0x55, 0x57, 0xe6, 0x4a, 0xcb, 0x27, 0xa7, |
|
| 17064 |
- 0x1b, 0x0b, 0xdc, 0x25, 0x8c, 0xc1, 0xd6, 0x2e, 0x5a, 0x87, 0xec, 0x93, 0xf6, 0xf6, 0xee, 0x0e, |
|
| 17065 |
- 0x5b, 0x5e, 0xd7, 0x4e, 0x4e, 0x37, 0x96, 0x42, 0xb6, 0x70, 0x1a, 0x7a, 0x15, 0x32, 0xbd, 0x9d, |
|
| 17066 |
- 0xce, 0x66, 0x57, 0x49, 0x96, 0xd0, 0xc9, 0xe9, 0xc6, 0x62, 0xc8, 0xe7, 0x36, 0x97, 0x96, 0xe5, |
|
| 17067 |
- 0xac, 0xe6, 0x43, 0xba, 0xfa, 0xb3, 0x24, 0x2c, 0x60, 0x56, 0xf1, 0xb9, 0x7e, 0x87, 0xda, 0x96, |
|
| 17068 |
- 0x31, 0x46, 0x1d, 0xc8, 0x1b, 0xd4, 0x31, 0xad, 0xc8, 0x9e, 0xba, 0x7f, 0xc1, 0xa9, 0x3f, 0x91, |
|
| 17069 |
- 0x0a, 0x5a, 0xb5, 0x40, 0x12, 0x4f, 0x94, 0xa0, 0x3b, 0x90, 0x31, 0x89, 0xad, 0x8f, 0x65, 0xfa, |
|
| 17070 |
- 0x71, 0xa3, 0x2c, 0x6a, 0xca, 0x72, 0x50, 0x53, 0x96, 0xeb, 0xb2, 0xa6, 0xc4, 0x02, 0xc7, 0xd3, |
|
| 17071 |
- 0x6c, 0xfd, 0x99, 0xa6, 0xfb, 0x3e, 0x19, 0x0c, 0x7d, 0x91, 0x7b, 0xa4, 0x71, 0x61, 0xa0, 0x3f, |
|
| 17072 |
- 0xab, 0x48, 0x12, 0xba, 0x07, 0xd9, 0x63, 0xcb, 0x31, 0xe9, 0xb1, 0x4c, 0x2f, 0x2e, 0x51, 0x2a, |
|
| 17073 |
- 0x81, 0xea, 0x09, 0x3b, 0x75, 0x67, 0xcc, 0x64, 0xfe, 0x6e, 0xb5, 0x5b, 0x8d, 0xc0, 0xdf, 0x92, |
|
| 17074 |
- 0xdf, 0x76, 0x5a, 0xd4, 0x61, 0x7b, 0x05, 0xda, 0x2d, 0x6d, 0xb3, 0xd2, 0xdc, 0xde, 0xc5, 0xcc, |
|
| 17075 |
- 0xe7, 0x2b, 0x27, 0xa7, 0x1b, 0x4a, 0x08, 0xd9, 0xd4, 0x2d, 0x9b, 0xe5, 0xbb, 0x37, 0x20, 0x55, |
|
| 17076 |
- 0x69, 0x7d, 0xae, 0x24, 0x4b, 0xca, 0xc9, 0xe9, 0x46, 0x31, 0x64, 0x57, 0x9c, 0xf1, 0x64, 0x1b, |
|
| 17077 |
- 0xcd, 0xf6, 0xab, 0xfe, 0x6d, 0x0a, 0x8a, 0xbb, 0x43, 0x53, 0xf7, 0x89, 0x58, 0x93, 0x68, 0x03, |
|
| 17078 |
- 0x0a, 0x43, 0xdd, 0xd5, 0x6d, 0x9b, 0xd8, 0x96, 0x37, 0x90, 0xd5, 0x72, 0x94, 0x84, 0x3e, 0x78, |
|
| 17079 |
- 0x59, 0x37, 0x56, 0x73, 0x6c, 0x9d, 0xfd, 0xf8, 0x5f, 0xd6, 0x13, 0x81, 0x43, 0x77, 0x61, 0x71, |
|
| 17080 |
- 0x5f, 0x58, 0xab, 0xe9, 0x06, 0x9f, 0xd8, 0x14, 0x9f, 0xd8, 0x72, 0xdc, 0xc4, 0x46, 0xcd, 0x2a, |
|
| 17081 |
- 0xcb, 0x41, 0x56, 0xb8, 0x14, 0x5e, 0xd8, 0x8f, 0x36, 0xd1, 0x03, 0x98, 0x1f, 0x50, 0xc7, 0xf2, |
|
| 17082 |
- 0xa9, 0x7b, 0xf5, 0x2c, 0x04, 0x48, 0x74, 0x1b, 0x96, 0xd9, 0xe4, 0x06, 0xf6, 0x70, 0x36, 0x3f, |
|
| 17083 |
- 0xb1, 0x92, 0x78, 0x69, 0xa0, 0x3f, 0x93, 0x1d, 0x62, 0x46, 0x46, 0x55, 0xc8, 0x50, 0x97, 0xa5, |
|
| 17084 |
- 0x44, 0x59, 0x6e, 0xee, 0x3b, 0x57, 0x9a, 0x2b, 0x1a, 0x6d, 0x26, 0x83, 0x85, 0xa8, 0xfa, 0x3e, |
|
| 17085 |
- 0x2c, 0x4c, 0x0d, 0x82, 0x65, 0x02, 0x9d, 0xca, 0x6e, 0xb7, 0xa1, 0xcc, 0xa1, 0x22, 0xe4, 0x6a, |
|
| 17086 |
- 0xed, 0x56, 0xaf, 0xd9, 0xda, 0x65, 0xa9, 0x4c, 0x11, 0x72, 0xb8, 0xbd, 0xbd, 0x5d, 0xad, 0xd4, |
|
| 17087 |
- 0x1e, 0x2b, 0x49, 0xb5, 0x0c, 0x85, 0x88, 0x36, 0xb4, 0x08, 0xd0, 0xed, 0xb5, 0x3b, 0xda, 0x66, |
|
| 17088 |
- 0x13, 0x77, 0x7b, 0x22, 0x11, 0xea, 0xf6, 0x2a, 0xb8, 0x27, 0x09, 0x09, 0xf5, 0x3f, 0x92, 0xc1, |
|
| 17089 |
- 0x8c, 0xca, 0xdc, 0xa7, 0x3a, 0x9d, 0xfb, 0x5c, 0x62, 0xbc, 0xcc, 0x7e, 0x26, 0x8d, 0x30, 0x07, |
|
| 17090 |
- 0xfa, 0x00, 0x80, 0x2f, 0x1c, 0x62, 0x6a, 0xba, 0x2f, 0x27, 0xbe, 0xf4, 0x82, 0x93, 0x7b, 0xc1, |
|
| 17091 |
- 0xa5, 0x0d, 0xce, 0x4b, 0x74, 0xc5, 0x47, 0x1f, 0x43, 0xd1, 0xa0, 0x83, 0xa1, 0x4d, 0xa4, 0x70, |
|
| 17092 |
- 0xea, 0x4a, 0xe1, 0x42, 0x88, 0xaf, 0xf8, 0xd1, 0xec, 0x2b, 0x3d, 0x9d, 0x1f, 0xfe, 0x66, 0x22, |
|
| 17093 |
- 0xf0, 0x4c, 0x4c, 0xc2, 0x55, 0x84, 0xdc, 0x6e, 0xa7, 0x5e, 0xe9, 0x35, 0x5b, 0x8f, 0x94, 0x04, |
|
| 17094 |
- 0x02, 0xc8, 0x72, 0x57, 0xd7, 0x95, 0x24, 0x4b, 0x14, 0x6b, 0xed, 0x9d, 0xce, 0x76, 0x83, 0xa7, |
|
| 17095 |
- 0x5c, 0x68, 0x05, 0x94, 0xc0, 0xd9, 0x1a, 0x77, 0x64, 0xa3, 0xae, 0xa4, 0xd1, 0x35, 0x58, 0x0a, |
|
| 17096 |
- 0xa9, 0x52, 0x32, 0x83, 0xae, 0x03, 0x0a, 0x89, 0x13, 0x15, 0x59, 0xf5, 0xd7, 0x60, 0xa9, 0x46, |
|
| 17097 |
- 0x1d, 0x5f, 0xb7, 0x9c, 0x30, 0x89, 0xbe, 0xcf, 0x06, 0x2d, 0x49, 0x9a, 0x25, 0x2f, 0x3b, 0xaa, |
|
| 17098 |
- 0x4b, 0xe7, 0x67, 0xeb, 0x85, 0x10, 0xda, 0xac, 0xb3, 0x91, 0x06, 0x0d, 0x93, 0xed, 0xdf, 0xa1, |
|
| 17099 |
- 0x65, 0x72, 0xe7, 0x66, 0xaa, 0xf3, 0xe7, 0x67, 0xeb, 0xa9, 0x4e, 0xb3, 0x8e, 0x19, 0x0d, 0x7d, |
|
| 17100 |
- 0x17, 0xf2, 0xe4, 0x99, 0xe5, 0x6b, 0x06, 0x8b, 0xe1, 0xcc, 0x81, 0x19, 0x9c, 0x63, 0x84, 0x1a, |
|
| 17101 |
- 0x0b, 0xd9, 0x55, 0x80, 0x0e, 0x75, 0x7d, 0xd9, 0xf3, 0xbb, 0x90, 0x19, 0x52, 0x97, 0x97, 0xe7, |
|
| 17102 |
- 0x17, 0x5e, 0x1a, 0x31, 0xb8, 0x58, 0xa8, 0x58, 0x80, 0xd5, 0xdf, 0x4b, 0x01, 0xf4, 0x74, 0xef, |
|
| 17103 |
- 0x50, 0x2a, 0x79, 0x08, 0xf9, 0xf0, 0x02, 0x4e, 0xd6, 0xf9, 0x97, 0xce, 0x76, 0x08, 0x46, 0x0f, |
|
| 17104 |
- 0x82, 0xc5, 0x26, 0xca, 0x83, 0xd8, 0x3a, 0x2d, 0xe8, 0x28, 0x2e, 0xc3, 0x9e, 0xae, 0x01, 0xd8, |
|
| 17105 |
- 0x91, 0x48, 0x5c, 0x57, 0xce, 0x3c, 0xfb, 0x44, 0x35, 0x7e, 0x2c, 0x08, 0xa7, 0xc9, 0x04, 0x33, |
|
| 17106 |
- 0xf6, 0x66, 0x63, 0x66, 0x46, 0xb6, 0xe6, 0xf0, 0x44, 0x0e, 0x7d, 0x0a, 0x05, 0x36, 0x6e, 0xcd, |
|
| 17107 |
- 0xe3, 0x3c, 0x99, 0x5b, 0x5e, 0xe8, 0x2a, 0xa1, 0x01, 0xc3, 0x70, 0xe2, 0xe5, 0x57, 0x01, 0xf4, |
|
| 17108 |
- 0xe1, 0xd0, 0xb6, 0x88, 0xa9, 0xed, 0x8d, 0x79, 0x32, 0x99, 0xc7, 0x79, 0x49, 0xa9, 0x8e, 0xd9, |
|
| 17109 |
- 0x76, 0x09, 0xd8, 0xba, 0xbf, 0x9a, 0xbb, 0xda, 0x81, 0x12, 0x5d, 0xf1, 0xab, 0x0a, 0x2c, 0xba, |
|
| 17110 |
- 0x23, 0x87, 0x39, 0x54, 0x5a, 0xa7, 0xfe, 0x69, 0x12, 0x5e, 0x69, 0x11, 0xff, 0x98, 0xba, 0x87, |
|
| 17111 |
- 0x15, 0xdf, 0xd7, 0x8d, 0x83, 0x01, 0x71, 0xe4, 0xf4, 0x45, 0x72, 0xf6, 0xc4, 0x54, 0xce, 0xbe, |
|
| 17112 |
- 0x0a, 0xf3, 0xba, 0x6d, 0xe9, 0x1e, 0x11, 0x89, 0x4e, 0x1e, 0x07, 0x4d, 0x56, 0x59, 0xb0, 0x3a, |
|
| 17113 |
- 0x85, 0x78, 0x1e, 0x11, 0x57, 0x07, 0xcc, 0xf0, 0x80, 0x80, 0x7e, 0x04, 0xd7, 0x65, 0x4a, 0xa3, |
|
| 17114 |
- 0x87, 0x5d, 0xb1, 0x9c, 0x39, 0xb8, 0x83, 0x6c, 0xc4, 0x16, 0x4e, 0xf1, 0xc6, 0xc9, 0x9c, 0x67, |
|
| 17115 |
- 0x42, 0x6e, 0x0f, 0x7d, 0x99, 0x41, 0xad, 0x98, 0x31, 0xac, 0xd2, 0x23, 0xb8, 0x71, 0xa1, 0xc8, |
|
| 17116 |
- 0x37, 0xba, 0x9a, 0xf8, 0x87, 0x24, 0x40, 0xb3, 0x53, 0xd9, 0x91, 0x4e, 0xaa, 0x43, 0x76, 0x5f, |
|
| 17117 |
- 0x1f, 0x58, 0xf6, 0xf8, 0xb2, 0x08, 0x38, 0xc1, 0x97, 0x2b, 0xc2, 0x1d, 0x9b, 0x5c, 0x06, 0x4b, |
|
| 17118 |
- 0x59, 0x5e, 0x36, 0x8d, 0xf6, 0x1c, 0xe2, 0x87, 0x65, 0x13, 0x6f, 0x31, 0x33, 0x5c, 0xdd, 0x09, |
|
| 17119 |
- 0x97, 0xae, 0x68, 0xb0, 0x09, 0xe8, 0xeb, 0x3e, 0x39, 0xd6, 0xc7, 0x41, 0xd8, 0x92, 0x4d, 0xb4, |
|
| 17120 |
- 0xc5, 0x2f, 0x00, 0x89, 0x7b, 0x44, 0xcc, 0xd5, 0x0c, 0x77, 0xea, 0x55, 0xf6, 0x60, 0x09, 0x17, |
|
| 17121 |
- 0xbe, 0x0b, 0xa5, 0x4b, 0x1f, 0xf1, 0x94, 0x69, 0xc2, 0xfa, 0x46, 0x3e, 0xba, 0x0b, 0x0b, 0x53, |
|
| 17122 |
- 0xe3, 0x7c, 0xa1, 0x5e, 0x6d, 0x76, 0x9e, 0xbc, 0xab, 0xa4, 0xe5, 0xd7, 0xfb, 0x4a, 0x56, 0xfd, |
|
| 17123 |
- 0xe3, 0x94, 0x08, 0x34, 0xd2, 0xab, 0xf1, 0x17, 0xdf, 0x39, 0xbe, 0xba, 0x0d, 0x6a, 0xcb, 0x00, |
|
| 17124 |
- 0xf0, 0xe6, 0xe5, 0xf1, 0x87, 0xd5, 0x3f, 0x1c, 0x8e, 0x43, 0x41, 0xb4, 0x0e, 0x05, 0xb1, 0x8a, |
|
| 17125 |
- 0x35, 0xb6, 0xe1, 0xb8, 0x5b, 0x17, 0x30, 0x08, 0x12, 0x93, 0x44, 0xb7, 0x60, 0x91, 0xdf, 0x6f, |
|
| 17126 |
- 0x78, 0x07, 0xc4, 0x14, 0x98, 0x34, 0xc7, 0x2c, 0x84, 0x54, 0x0e, 0xdb, 0x81, 0xa2, 0x24, 0x68, |
|
| 17127 |
- 0x3c, 0xf7, 0xcd, 0x70, 0x83, 0x6e, 0x5f, 0x65, 0x90, 0x10, 0xe1, 0x29, 0x71, 0x61, 0x38, 0x69, |
|
| 17128 |
- 0xa8, 0x75, 0xc8, 0x05, 0xc6, 0xa2, 0x55, 0x48, 0xf5, 0x6a, 0x1d, 0x65, 0xae, 0xb4, 0x74, 0x72, |
|
| 17129 |
- 0xba, 0x51, 0x08, 0xc8, 0xbd, 0x5a, 0x87, 0x71, 0x76, 0xeb, 0x1d, 0x25, 0x31, 0xcd, 0xd9, 0xad, |
|
| 17130 |
- 0x77, 0x4a, 0x69, 0x96, 0x83, 0xa9, 0xfb, 0x50, 0x88, 0xf4, 0x80, 0x5e, 0x87, 0xf9, 0x66, 0xeb, |
|
| 17131 |
- 0x11, 0x6e, 0x74, 0xbb, 0xca, 0x5c, 0xe9, 0xfa, 0xc9, 0xe9, 0x06, 0x8a, 0x70, 0x9b, 0x4e, 0x9f, |
|
| 17132 |
- 0xcd, 0x0f, 0x7a, 0x15, 0xd2, 0x5b, 0x6d, 0x76, 0xb6, 0x8b, 0x64, 0x3b, 0x82, 0xd8, 0xa2, 0x9e, |
|
| 17133 |
- 0x5f, 0xba, 0x26, 0x93, 0xbb, 0xa8, 0x62, 0xf5, 0xf7, 0x13, 0x90, 0x15, 0x9b, 0x29, 0x76, 0xa2, |
|
| 17134 |
- 0x2a, 0x30, 0x1f, 0x54, 0xc2, 0xa2, 0x10, 0x7a, 0xf3, 0xe2, 0xa2, 0xa5, 0x2c, 0x6b, 0x0c, 0xb1, |
|
| 17135 |
- 0xfc, 0x02, 0xb9, 0xd2, 0x87, 0x50, 0x8c, 0x32, 0xbe, 0xd1, 0xe2, 0xfb, 0x11, 0x14, 0xd8, 0xfa, |
|
| 17136 |
- 0x0e, 0x8a, 0x97, 0xfb, 0x90, 0x15, 0x01, 0x21, 0x3c, 0x6b, 0x2e, 0xae, 0xa0, 0x24, 0x12, 0x3d, |
|
| 17137 |
- 0x84, 0x79, 0x51, 0x75, 0x05, 0x17, 0xa0, 0x6b, 0x97, 0xef, 0x22, 0x1c, 0xc0, 0xd5, 0x4f, 0x21, |
|
| 17138 |
- 0xdd, 0x21, 0xc4, 0x65, 0xbe, 0x77, 0xa8, 0x49, 0x26, 0xc7, 0xb3, 0x2c, 0x18, 0x4d, 0xd2, 0xac, |
|
| 17139 |
- 0xb3, 0x82, 0xd1, 0x24, 0x4d, 0x33, 0xbc, 0xe2, 0x49, 0x46, 0xae, 0x78, 0x7a, 0x50, 0x7c, 0x4a, |
|
| 17140 |
- 0xac, 0xfe, 0x81, 0x4f, 0x4c, 0xae, 0xe8, 0x1d, 0x48, 0x0f, 0x49, 0x68, 0xfc, 0x6a, 0xec, 0x02, |
|
| 17141 |
- 0x23, 0xc4, 0xc5, 0x1c, 0xc5, 0xe2, 0xc8, 0x31, 0x97, 0x96, 0xb7, 0xf6, 0xb2, 0xa5, 0xfe, 0x7d, |
|
| 17142 |
- 0x12, 0x16, 0x9b, 0x9e, 0x37, 0xd2, 0x1d, 0x23, 0xc8, 0xdc, 0x3e, 0x99, 0xce, 0xdc, 0x62, 0x9f, |
|
| 17143 |
- 0x37, 0xa6, 0x45, 0xa6, 0x6f, 0xae, 0xe4, 0xe9, 0x99, 0x0c, 0x4f, 0x4f, 0xf5, 0xdf, 0x13, 0xc1, |
|
| 17144 |
- 0xf5, 0xd4, 0xad, 0xc8, 0x76, 0x2f, 0xad, 0x9e, 0x9c, 0x6e, 0xac, 0x44, 0x35, 0x91, 0x5d, 0xe7, |
|
| 17145 |
- 0xd0, 0xa1, 0xc7, 0x0e, 0x7a, 0x0d, 0x32, 0xb8, 0xd1, 0x6a, 0x3c, 0x55, 0x12, 0x62, 0x79, 0x4e, |
|
| 17146 |
- 0x81, 0x30, 0x71, 0xc8, 0x31, 0xd3, 0xd4, 0x69, 0xb4, 0xea, 0x2c, 0xd3, 0x4a, 0xc6, 0x68, 0xea, |
|
| 17147 |
- 0x10, 0xc7, 0xb4, 0x9c, 0x3e, 0x7a, 0x1d, 0xb2, 0xcd, 0x6e, 0x77, 0x97, 0x5f, 0x20, 0xbc, 0x72, |
|
| 17148 |
- 0x72, 0xba, 0x71, 0x6d, 0x0a, 0xc5, 0xaf, 0x26, 0x4d, 0x06, 0x62, 0x65, 0x0e, 0xcb, 0xc1, 0x62, |
|
| 17149 |
- 0x40, 0x2c, 0x7f, 0x16, 0x20, 0xdc, 0xee, 0x55, 0x7a, 0x0d, 0x25, 0x13, 0x03, 0xc2, 0x94, 0xfd, |
|
| 17150 |
- 0x95, 0xdb, 0xed, 0x9f, 0x93, 0xa0, 0x54, 0x0c, 0x83, 0x0c, 0x7d, 0xc6, 0x97, 0x95, 0x65, 0x0f, |
|
| 17151 |
- 0x72, 0x43, 0xf6, 0x65, 0x91, 0x20, 0x4b, 0x7a, 0x18, 0xfb, 0x40, 0x37, 0x23, 0x57, 0xc6, 0xd4, |
|
| 17152 |
- 0x26, 0x15, 0x73, 0x60, 0x79, 0x9e, 0x45, 0x1d, 0x41, 0xc3, 0xa1, 0xa6, 0xd2, 0x7f, 0x26, 0xe0, |
|
| 17153 |
- 0x5a, 0x0c, 0x02, 0xdd, 0x85, 0xb4, 0x4b, 0xed, 0x60, 0x0e, 0x6f, 0x5e, 0x74, 0xf3, 0xc8, 0x44, |
|
| 17154 |
- 0x31, 0x47, 0xa2, 0x35, 0x00, 0x7d, 0xe4, 0x53, 0x9d, 0xf7, 0xcf, 0x67, 0x2f, 0x87, 0x23, 0x14, |
|
| 17155 |
- 0xf4, 0x14, 0xb2, 0x1e, 0x31, 0x5c, 0x12, 0xe4, 0xd2, 0x9f, 0xfe, 0x5f, 0xad, 0x2f, 0x77, 0xb9, |
|
| 17156 |
- 0x1a, 0x2c, 0xd5, 0x95, 0xca, 0x90, 0x15, 0x14, 0xb6, 0xec, 0x4d, 0xdd, 0xd7, 0xe5, 0xbd, 0x34, |
|
| 17157 |
- 0xff, 0x66, 0xab, 0x49, 0xb7, 0xfb, 0xc1, 0x6a, 0xd2, 0xed, 0xbe, 0xfa, 0x37, 0x49, 0x80, 0xc6, |
|
| 17158 |
- 0x33, 0x9f, 0xb8, 0x8e, 0x6e, 0xd7, 0x2a, 0xa8, 0x11, 0x89, 0xfe, 0x62, 0xb4, 0x6f, 0xc7, 0x5e, |
|
| 17159 |
- 0xb6, 0x87, 0x12, 0xe5, 0x5a, 0x25, 0x26, 0xfe, 0xdf, 0x80, 0xd4, 0xc8, 0x95, 0x6f, 0xae, 0x22, |
|
| 17160 |
- 0x0f, 0xde, 0xc5, 0xdb, 0x98, 0xd1, 0x50, 0x63, 0x12, 0xb6, 0x52, 0x17, 0xbf, 0xac, 0x46, 0x3a, |
|
| 17161 |
- 0x88, 0x0d, 0x5d, 0x6c, 0xe7, 0x1b, 0xba, 0x66, 0x10, 0x79, 0x72, 0x14, 0xc5, 0xce, 0xaf, 0x55, |
|
| 17162 |
- 0x6a, 0xc4, 0xf5, 0x71, 0xd6, 0xd0, 0xd9, 0xff, 0x6f, 0x15, 0xdf, 0xde, 0x01, 0x98, 0x0c, 0x0d, |
|
| 17163 |
- 0xad, 0x41, 0xa6, 0xb6, 0xd9, 0xed, 0x6e, 0x2b, 0x73, 0x22, 0x80, 0x4f, 0x58, 0x9c, 0xac, 0xfe, |
|
| 17164 |
- 0x65, 0x12, 0x72, 0xb5, 0x8a, 0x3c, 0x56, 0x6b, 0xa0, 0xf0, 0xa8, 0xc4, 0x6f, 0xf3, 0xc9, 0xb3, |
|
| 17165 |
- 0xa1, 0xe5, 0x8e, 0x65, 0x60, 0xb9, 0xa4, 0xa8, 0x5d, 0x64, 0x22, 0xcc, 0xea, 0x06, 0x17, 0x40, |
|
| 17166 |
- 0x18, 0x8a, 0x44, 0x3a, 0x41, 0x33, 0xf4, 0x20, 0xc6, 0xaf, 0x5d, 0xee, 0x2c, 0x51, 0x9e, 0x4c, |
|
| 17167 |
- 0xda, 0x1e, 0x2e, 0x04, 0x4a, 0x6a, 0xba, 0x87, 0x3e, 0x80, 0x25, 0xcf, 0xea, 0x3b, 0x96, 0xd3, |
|
| 17168 |
- 0xd7, 0x02, 0xe7, 0xf1, 0xa7, 0x85, 0xea, 0xf2, 0xf9, 0xd9, 0xfa, 0x42, 0x57, 0xb0, 0xa4, 0x0f, |
|
| 17169 |
- 0x17, 0x24, 0xb2, 0xc6, 0x5d, 0x89, 0xde, 0x87, 0xc5, 0x88, 0x28, 0xf3, 0xa2, 0x70, 0xbb, 0x72, |
|
| 17170 |
- 0x7e, 0xb6, 0x5e, 0x0c, 0x25, 0x1f, 0x93, 0x31, 0x2e, 0x86, 0x82, 0x8f, 0x09, 0xbf, 0x7f, 0xd9, |
|
| 17171 |
- 0xa7, 0xae, 0x41, 0x34, 0x97, 0xef, 0x69, 0x7e, 0x82, 0xa7, 0x71, 0x81, 0xd3, 0xc4, 0x36, 0x57, |
|
| 17172 |
- 0x9f, 0xc0, 0xb5, 0xb6, 0x6b, 0x1c, 0x10, 0xcf, 0x17, 0xae, 0x90, 0x5e, 0xfc, 0x14, 0x6e, 0xfa, |
|
| 17173 |
- 0xba, 0x77, 0xa8, 0x1d, 0x58, 0x9e, 0x4f, 0xdd, 0xb1, 0xe6, 0x12, 0x9f, 0x38, 0x8c, 0xaf, 0xf1, |
|
| 17174 |
- 0xf7, 0x48, 0x79, 0x41, 0x76, 0x83, 0x61, 0xb6, 0x04, 0x04, 0x07, 0x88, 0x6d, 0x06, 0x50, 0x9b, |
|
| 17175 |
- 0x50, 0x64, 0x65, 0x4a, 0x9d, 0xec, 0xeb, 0x23, 0xdb, 0x67, 0xa3, 0x07, 0x9b, 0xf6, 0xb5, 0x97, |
|
| 17176 |
- 0x3e, 0xa6, 0xf2, 0x36, 0xed, 0x8b, 0x4f, 0xf5, 0x87, 0xa0, 0xd4, 0x2d, 0x6f, 0xa8, 0xfb, 0xc6, |
|
| 17177 |
- 0x41, 0x70, 0xf3, 0x87, 0xea, 0xa0, 0x1c, 0x10, 0xdd, 0xf5, 0xf7, 0x88, 0xee, 0x6b, 0x43, 0xe2, |
|
| 17178 |
- 0x5a, 0xd4, 0xbc, 0x7a, 0x96, 0x97, 0x42, 0x91, 0x0e, 0x97, 0x50, 0xff, 0x2b, 0x01, 0x80, 0xf5, |
|
| 17179 |
- 0xfd, 0x20, 0x23, 0xfb, 0x3e, 0x2c, 0x7b, 0x8e, 0x3e, 0xf4, 0x0e, 0xa8, 0xaf, 0x59, 0x8e, 0x4f, |
|
| 17180 |
- 0xdc, 0x23, 0xdd, 0x96, 0x17, 0x38, 0x4a, 0xc0, 0x68, 0x4a, 0x3a, 0x7a, 0x07, 0xd0, 0x21, 0x21, |
|
| 17181 |
- 0x43, 0x8d, 0xda, 0xa6, 0x16, 0x30, 0xc5, 0x6b, 0x69, 0x1a, 0x2b, 0x8c, 0xd3, 0xb6, 0xcd, 0x6e, |
|
| 17182 |
- 0x40, 0x47, 0x55, 0x58, 0x63, 0xc3, 0x27, 0x8e, 0xef, 0x5a, 0xc4, 0xd3, 0xf6, 0xa9, 0xab, 0x79, |
|
| 17183 |
- 0x36, 0x3d, 0xd6, 0xf6, 0xa9, 0x6d, 0xd3, 0x63, 0xe2, 0x06, 0x77, 0x63, 0x25, 0x9b, 0xf6, 0x1b, |
|
| 17184 |
- 0x02, 0xb4, 0x49, 0xdd, 0xae, 0x4d, 0x8f, 0x37, 0x03, 0x04, 0x4b, 0xdb, 0x26, 0x63, 0xf6, 0x2d, |
|
| 17185 |
- 0xe3, 0x30, 0x48, 0xdb, 0x42, 0x6a, 0xcf, 0x32, 0x0e, 0xd1, 0xeb, 0xb0, 0x40, 0x6c, 0xc2, 0xaf, |
|
| 17186 |
- 0x48, 0x04, 0x2a, 0xc3, 0x51, 0xc5, 0x80, 0xc8, 0x40, 0xea, 0x67, 0xa0, 0x34, 0x1c, 0xc3, 0x1d, |
|
| 17187 |
- 0x0f, 0x23, 0x73, 0xfe, 0x0e, 0x20, 0x16, 0x24, 0x35, 0x9b, 0x1a, 0x87, 0xda, 0x40, 0x77, 0xf4, |
|
| 17188 |
- 0x3e, 0xb3, 0x4b, 0x3c, 0x62, 0x29, 0x8c, 0xb3, 0x4d, 0x8d, 0xc3, 0x1d, 0x49, 0x57, 0x3f, 0x00, |
|
| 17189 |
- 0xe8, 0x0e, 0x5d, 0xa2, 0x9b, 0x6d, 0x96, 0x4d, 0x30, 0xd7, 0xf1, 0x96, 0x66, 0xca, 0x47, 0x40, |
|
| 17190 |
- 0xea, 0xca, 0xad, 0xae, 0x08, 0x46, 0x3d, 0xa4, 0xab, 0xbf, 0x08, 0xd7, 0x3a, 0xb6, 0x6e, 0xf0, |
|
| 17191 |
- 0x07, 0xf1, 0x4e, 0xf8, 0x2a, 0x83, 0x1e, 0x42, 0x56, 0x40, 0xe5, 0x4c, 0xc6, 0x6e, 0xb7, 0x49, |
|
| 17192 |
- 0x9f, 0x5b, 0x73, 0x58, 0xe2, 0xab, 0x45, 0x80, 0x89, 0x1e, 0xf5, 0xcf, 0x13, 0x90, 0x0f, 0xf5, |
|
| 17193 |
- 0xa3, 0x0d, 0x28, 0x18, 0xd4, 0x61, 0xcb, 0xdb, 0x72, 0x64, 0x55, 0x9f, 0xc7, 0x51, 0x12, 0x6a, |
|
| 17194 |
- 0x42, 0x61, 0x18, 0x4a, 0x5f, 0x9a, 0xcf, 0xc5, 0x58, 0x8d, 0xa3, 0xb2, 0xe8, 0x43, 0xc8, 0x07, |
|
| 17195 |
- 0xaf, 0xae, 0x41, 0x84, 0xbd, 0xfc, 0x91, 0x76, 0x02, 0x57, 0x3f, 0x01, 0xf8, 0x01, 0xb5, 0x9c, |
|
| 17196 |
- 0x1e, 0x3d, 0x24, 0x0e, 0x7f, 0x45, 0x64, 0x35, 0x21, 0x09, 0xbc, 0x28, 0x5b, 0xbc, 0xd4, 0x17, |
|
| 17197 |
- 0x53, 0x10, 0x3e, 0xa6, 0x89, 0xa6, 0xfa, 0xd7, 0x49, 0xc8, 0x62, 0x4a, 0xfd, 0x5a, 0x05, 0x6d, |
|
| 17198 |
- 0x40, 0x56, 0xc6, 0x09, 0x7e, 0xfe, 0x54, 0xf3, 0xe7, 0x67, 0xeb, 0x19, 0x11, 0x20, 0x32, 0x06, |
|
| 17199 |
- 0x8f, 0x0c, 0x91, 0x08, 0x9e, 0xbc, 0x28, 0x82, 0xa3, 0xbb, 0x50, 0x94, 0x20, 0xed, 0x40, 0xf7, |
|
| 17200 |
- 0x0e, 0x44, 0x81, 0x56, 0x5d, 0x3c, 0x3f, 0x5b, 0x07, 0x81, 0xdc, 0xd2, 0xbd, 0x03, 0x0c, 0x02, |
|
| 17201 |
- 0xcd, 0xbe, 0x51, 0x03, 0x0a, 0x5f, 0x50, 0xcb, 0xd1, 0x7c, 0x3e, 0x08, 0x79, 0x99, 0x18, 0x3b, |
|
| 17202 |
- 0x8f, 0x93, 0xa1, 0xca, 0x27, 0x75, 0xf8, 0x62, 0x32, 0xf8, 0x06, 0x2c, 0xb8, 0x94, 0xfa, 0x22, |
|
| 17203 |
- 0x6c, 0x59, 0xd4, 0x91, 0xf7, 0x14, 0x1b, 0xb1, 0xd7, 0xd7, 0x94, 0xfa, 0x58, 0xe2, 0x70, 0xd1, |
|
| 17204 |
- 0x8d, 0xb4, 0xd0, 0x5d, 0x58, 0xb1, 0x75, 0xcf, 0xd7, 0x78, 0xbc, 0x33, 0x27, 0xda, 0xb2, 0x7c, |
|
| 17205 |
- 0xab, 0x21, 0xc6, 0xdb, 0xe4, 0xac, 0x40, 0x42, 0xfd, 0xc7, 0x04, 0x14, 0xd8, 0x60, 0xac, 0x7d, |
|
| 17206 |
- 0xcb, 0x60, 0x49, 0xde, 0x37, 0xcf, 0x3d, 0x6e, 0x40, 0xca, 0xf0, 0x5c, 0xe9, 0x54, 0x7e, 0xf8, |
|
| 17207 |
- 0xd6, 0xba, 0x18, 0x33, 0x1a, 0xfa, 0x0c, 0xb2, 0xf2, 0xbe, 0x44, 0xa4, 0x1d, 0xea, 0xd5, 0xe9, |
|
| 17208 |
- 0xa8, 0xf4, 0x8d, 0x94, 0xe3, 0x6b, 0x79, 0x62, 0x9d, 0x38, 0x04, 0x70, 0x94, 0x84, 0xae, 0x43, |
|
| 17209 |
- 0xd2, 0x10, 0xee, 0x92, 0xbf, 0xd9, 0xa8, 0xb5, 0x70, 0xd2, 0x70, 0xd4, 0xbf, 0x4b, 0xc0, 0xc2, |
|
| 17210 |
- 0x64, 0xc3, 0xb3, 0x15, 0x70, 0x13, 0xf2, 0xde, 0x68, 0xcf, 0x1b, 0x7b, 0x3e, 0x19, 0x04, 0x2f, |
|
| 17211 |
- 0xa4, 0x21, 0x01, 0x35, 0x21, 0xaf, 0xdb, 0x7d, 0xea, 0x5a, 0xfe, 0xc1, 0x40, 0x56, 0xa2, 0xf1, |
|
| 17212 |
- 0xa9, 0x42, 0x54, 0x67, 0xb9, 0x12, 0x88, 0xe0, 0x89, 0x74, 0x70, 0xee, 0x8b, 0x67, 0x74, 0x7e, |
|
| 17213 |
- 0xee, 0xbf, 0x06, 0x45, 0x5b, 0x1f, 0xf0, 0x0b, 0x24, 0xdf, 0x1a, 0x88, 0x71, 0xa4, 0x71, 0x41, |
|
| 17214 |
- 0xd2, 0x7a, 0xd6, 0x80, 0xa8, 0x2a, 0xe4, 0x43, 0x65, 0x68, 0x09, 0x0a, 0x95, 0x46, 0x57, 0xbb, |
|
| 17215 |
- 0x77, 0xff, 0xa1, 0xf6, 0xa8, 0xb6, 0xa3, 0xcc, 0xc9, 0xdc, 0xf4, 0x2f, 0x12, 0xb0, 0x20, 0xc3, |
|
| 17216 |
- 0x91, 0xcc, 0xf7, 0x5f, 0x87, 0x79, 0x57, 0xdf, 0xf7, 0x83, 0x8a, 0x24, 0x2d, 0x56, 0x35, 0x8b, |
|
| 17217 |
- 0xf0, 0xac, 0x22, 0x61, 0xac, 0xf8, 0x8a, 0x24, 0xf2, 0x66, 0x9f, 0xba, 0xf4, 0xcd, 0x3e, 0xfd, |
|
| 17218 |
- 0x73, 0x79, 0xb3, 0x57, 0x7f, 0x1d, 0x60, 0xd3, 0xb2, 0x49, 0x4f, 0xdc, 0x35, 0xc5, 0xd5, 0x97, |
|
| 17219 |
- 0x2c, 0x87, 0x93, 0x77, 0x99, 0x41, 0x0e, 0xd7, 0xac, 0x63, 0x46, 0x63, 0xac, 0xbe, 0x65, 0xca, |
|
| 17220 |
- 0xcd, 0xc8, 0x59, 0x8f, 0x18, 0xab, 0x6f, 0x99, 0xe1, 0x2b, 0x55, 0xfa, 0xaa, 0x57, 0xaa, 0xd3, |
|
| 17221 |
- 0x04, 0x2c, 0xc9, 0xdc, 0x35, 0x0c, 0xbf, 0x6f, 0x43, 0x5e, 0xa4, 0xb1, 0x93, 0x82, 0x8e, 0xbf, |
|
| 17222 |
- 0x53, 0x0b, 0x5c, 0xb3, 0x8e, 0x73, 0x82, 0xdd, 0x34, 0xd1, 0x3a, 0x14, 0x24, 0x34, 0xf2, 0xfb, |
|
| 17223 |
- 0x1e, 0x10, 0xa4, 0x16, 0x33, 0xff, 0x5d, 0x48, 0xef, 0x5b, 0x36, 0x91, 0x0b, 0x3d, 0x36, 0x00, |
|
| 17224 |
- 0x4c, 0x1c, 0xb0, 0x35, 0x87, 0x39, 0xba, 0x9a, 0x0b, 0x2e, 0xe3, 0xb8, 0x7d, 0xb2, 0xec, 0x8c, |
|
| 17225 |
- 0xda, 0x27, 0x2a, 0xd0, 0x19, 0xfb, 0x04, 0x8e, 0xd9, 0x27, 0xd8, 0xc2, 0x3e, 0x09, 0x8d, 0xda, |
|
| 17226 |
- 0x27, 0x48, 0x3f, 0x17, 0xfb, 0xb6, 0xe1, 0x7a, 0xd5, 0xd6, 0x8d, 0x43, 0xdb, 0xf2, 0x7c, 0x62, |
|
| 17227 |
- 0x46, 0x23, 0xc6, 0x7d, 0xc8, 0x4e, 0x25, 0x9d, 0x97, 0xdd, 0x5a, 0x4a, 0xa4, 0xfa, 0x6f, 0x09, |
|
| 17228 |
- 0x28, 0x6e, 0x11, 0xdd, 0xf6, 0x0f, 0x26, 0x57, 0x43, 0x3e, 0xf1, 0x7c, 0x79, 0x58, 0xf1, 0x6f, |
|
| 17229 |
- 0xf4, 0x1e, 0xe4, 0xc2, 0x9c, 0xe4, 0xca, 0xf7, 0xb7, 0x10, 0x8a, 0x1e, 0xc0, 0x3c, 0xdb, 0x63, |
|
| 17230 |
- 0x74, 0x14, 0x14, 0x3b, 0x97, 0x3d, 0xed, 0x48, 0x24, 0x3b, 0x64, 0x5c, 0xc2, 0x93, 0x10, 0xbe, |
|
| 17231 |
- 0x94, 0x32, 0x38, 0x68, 0xa2, 0xff, 0x0f, 0x45, 0xfe, 0x32, 0x11, 0xe4, 0x5c, 0x99, 0xab, 0x74, |
|
| 17232 |
- 0x16, 0xc4, 0xe3, 0xa2, 0xc8, 0xb7, 0xfe, 0x27, 0x01, 0x2b, 0x3b, 0xfa, 0x78, 0x8f, 0xc8, 0xb0, |
|
| 17233 |
- 0x41, 0x4c, 0x4c, 0x0c, 0xea, 0x9a, 0xa8, 0x13, 0x0d, 0x37, 0x97, 0xbc, 0x55, 0xc6, 0x09, 0xc7, |
|
| 17234 |
- 0x47, 0x9d, 0xa0, 0x00, 0x4b, 0x46, 0x0a, 0xb0, 0x15, 0xc8, 0x38, 0xd4, 0x31, 0x88, 0x8c, 0x45, |
|
| 17235 |
- 0xa2, 0xa1, 0x5a, 0xd1, 0x50, 0x53, 0x0a, 0x9f, 0x11, 0xf9, 0x23, 0x60, 0x8b, 0xfa, 0x61, 0x6f, |
|
| 17236 |
- 0xe8, 0x33, 0x28, 0x75, 0x1b, 0x35, 0xdc, 0xe8, 0x55, 0xdb, 0x3f, 0xd4, 0xba, 0x95, 0xed, 0x6e, |
|
| 17237 |
- 0xe5, 0xfe, 0x5d, 0xad, 0xd3, 0xde, 0xfe, 0xfc, 0xde, 0x83, 0xbb, 0xef, 0x29, 0x89, 0xd2, 0xc6, |
|
| 17238 |
- 0xc9, 0xe9, 0xc6, 0xcd, 0x56, 0xa5, 0xb6, 0x2d, 0x76, 0xcc, 0x1e, 0x7d, 0xd6, 0xd5, 0x6d, 0x4f, |
|
| 17239 |
- 0xbf, 0x7f, 0xb7, 0x43, 0xed, 0x31, 0xc3, 0xb0, 0x65, 0x5d, 0x8c, 0x9e, 0x57, 0xd1, 0x63, 0x38, |
|
| 17240 |
- 0x71, 0xe1, 0x31, 0x3c, 0x39, 0xcd, 0x93, 0x17, 0x9c, 0xe6, 0x9b, 0xb0, 0x62, 0xb8, 0xd4, 0xf3, |
|
| 17241 |
- 0x34, 0x96, 0xfd, 0x13, 0x73, 0xa6, 0xbe, 0xf8, 0xce, 0xf9, 0xd9, 0xfa, 0x72, 0x8d, 0xf1, 0xbb, |
|
| 17242 |
- 0x9c, 0x2d, 0xd5, 0x2f, 0x1b, 0x11, 0x12, 0xef, 0x49, 0xfd, 0x83, 0x14, 0x4b, 0xa4, 0xac, 0x23, |
|
| 17243 |
- 0xcb, 0x26, 0x7d, 0xe2, 0xa1, 0x27, 0xb0, 0x64, 0xb8, 0xc4, 0x64, 0x69, 0xbd, 0x6e, 0x47, 0x7f, |
|
| 17244 |
- 0x27, 0xfa, 0xff, 0x62, 0x73, 0x9a, 0x50, 0xb0, 0x5c, 0x0b, 0xa5, 0xba, 0x43, 0x62, 0xe0, 0x45, |
|
| 17245 |
- 0x63, 0xaa, 0x8d, 0xbe, 0x80, 0x25, 0x8f, 0xd8, 0x96, 0x33, 0x7a, 0xa6, 0x19, 0xd4, 0xf1, 0xc9, |
|
| 17246 |
- 0xb3, 0xe0, 0x45, 0xec, 0x2a, 0xbd, 0xdd, 0xc6, 0x36, 0x93, 0xaa, 0x09, 0xa1, 0x2a, 0x3a, 0x3f, |
|
| 17247 |
- 0x5b, 0x5f, 0x9c, 0xa6, 0xe1, 0x45, 0xa9, 0x59, 0xb6, 0x4b, 0x2d, 0x58, 0x9c, 0xb6, 0x06, 0xad, |
|
| 17248 |
- 0xc8, 0xbd, 0xcf, 0x43, 0x48, 0xb0, 0xb7, 0xd1, 0x4d, 0xc8, 0xb9, 0xa4, 0x6f, 0x79, 0xbe, 0x2b, |
|
| 17249 |
- 0xdc, 0xcc, 0x38, 0x21, 0x85, 0xed, 0x7c, 0xf1, 0x23, 0x9f, 0xd2, 0xaf, 0xc2, 0x4c, 0x8f, 0x6c, |
|
| 17250 |
- 0xb3, 0x98, 0x96, 0xa7, 0xef, 0x49, 0x95, 0x39, 0x1c, 0x34, 0xd9, 0x1a, 0x1c, 0x79, 0x61, 0xa2, |
|
| 17251 |
- 0xc6, 0xbf, 0x19, 0x8d, 0x67, 0x14, 0xf2, 0x27, 0x4f, 0x3c, 0x67, 0x08, 0x7e, 0x3b, 0x99, 0x8e, |
|
| 17252 |
- 0xfc, 0x76, 0x72, 0x05, 0x32, 0x36, 0x39, 0x22, 0xb6, 0x38, 0xcb, 0xb1, 0x68, 0xdc, 0xbe, 0x0b, |
|
| 17253 |
- 0xc5, 0xe0, 0x47, 0x7a, 0xfc, 0x57, 0x06, 0x39, 0x48, 0xf7, 0x2a, 0xdd, 0xc7, 0xca, 0x1c, 0x02, |
|
| 17254 |
- 0xc8, 0x8a, 0xc5, 0x29, 0x5e, 0xeb, 0x6a, 0xed, 0xd6, 0x66, 0xf3, 0x91, 0x92, 0xbc, 0xfd, 0xb3, |
|
| 17255 |
- 0x14, 0xe4, 0xc3, 0xf7, 0x22, 0x76, 0x76, 0xb4, 0x1a, 0x4f, 0x83, 0xd5, 0x1d, 0xd2, 0x5b, 0xe4, |
|
| 17256 |
- 0x18, 0xbd, 0x36, 0xb9, 0x85, 0xfa, 0x4c, 0x3c, 0x90, 0x87, 0xec, 0xe0, 0x06, 0xea, 0x0d, 0xc8, |
|
| 17257 |
- 0x55, 0xba, 0xdd, 0xe6, 0xa3, 0x56, 0xa3, 0xae, 0x7c, 0x99, 0x28, 0x7d, 0xe7, 0xe4, 0x74, 0x63, |
|
| 17258 |
- 0x39, 0x04, 0x55, 0x3c, 0xb1, 0xf8, 0x38, 0xaa, 0x56, 0x6b, 0x74, 0x7a, 0x8d, 0xba, 0xf2, 0x3c, |
|
| 17259 |
- 0x39, 0x8b, 0xe2, 0xb7, 0x2a, 0xfc, 0x67, 0x2e, 0xf9, 0x0e, 0x6e, 0x74, 0x2a, 0x98, 0x75, 0xf8, |
|
| 17260 |
- 0x65, 0x52, 0x5c, 0x8e, 0x4d, 0x7a, 0x74, 0xc9, 0x50, 0x77, 0x59, 0x9f, 0x6b, 0xc1, 0xcf, 0xbd, |
|
| 17261 |
- 0x9e, 0xa7, 0xc4, 0x4f, 0x21, 0x26, 0x8f, 0x5f, 0x44, 0x37, 0xc7, 0xac, 0x37, 0xfe, 0xea, 0xc8, |
|
| 17262 |
- 0xd5, 0xa4, 0x66, 0x7a, 0xeb, 0xb2, 0xd8, 0xc3, 0xb4, 0xa8, 0x30, 0x8f, 0x77, 0x5b, 0x2d, 0x06, |
|
| 17263 |
- 0x7a, 0x9e, 0x9e, 0x19, 0x1d, 0x1e, 0x39, 0xac, 0x62, 0x46, 0xb7, 0x20, 0x17, 0x3c, 0x4a, 0x2a, |
|
| 17264 |
- 0x5f, 0xa6, 0x67, 0x0c, 0xaa, 0x05, 0x2f, 0xaa, 0xbc, 0xc3, 0xad, 0xdd, 0x1e, 0xff, 0x35, 0xda, |
|
| 17265 |
- 0xf3, 0xcc, 0x6c, 0x87, 0x07, 0x23, 0xdf, 0xa4, 0xc7, 0x0e, 0xdb, 0xb3, 0xf2, 0x1e, 0xee, 0xcb, |
|
| 17266 |
- 0x8c, 0xb8, 0xb4, 0x08, 0x31, 0xf2, 0x12, 0xee, 0x0d, 0xc8, 0xe1, 0xc6, 0x0f, 0xc4, 0x0f, 0xd7, |
|
| 17267 |
- 0x9e, 0x67, 0x67, 0xf4, 0x60, 0xf2, 0x05, 0x31, 0x64, 0x6f, 0x6d, 0xdc, 0xd9, 0xaa, 0x70, 0x97, |
|
| 17268 |
- 0xcf, 0xa2, 0xda, 0xee, 0xf0, 0x40, 0x77, 0x88, 0x39, 0xf9, 0x3d, 0x48, 0xc8, 0xba, 0xfd, 0x4b, |
|
| 17269 |
- 0x90, 0x0b, 0x32, 0x53, 0xb4, 0x06, 0xd9, 0xa7, 0x6d, 0xfc, 0xb8, 0x81, 0x95, 0x39, 0xe1, 0xc3, |
|
| 17270 |
- 0x80, 0xf3, 0x54, 0xd4, 0x14, 0x1b, 0x30, 0xbf, 0x53, 0x69, 0x55, 0x1e, 0x35, 0x70, 0x70, 0x45, |
|
| 17271 |
- 0x1e, 0x00, 0x64, 0x7a, 0x55, 0x52, 0x64, 0x07, 0xa1, 0xce, 0xea, 0xea, 0x57, 0x5f, 0xaf, 0xcd, |
|
| 17272 |
- 0xfd, 0xf4, 0xeb, 0xb5, 0xb9, 0xe7, 0xe7, 0x6b, 0x89, 0xaf, 0xce, 0xd7, 0x12, 0x3f, 0x39, 0x5f, |
|
| 17273 |
- 0x4b, 0xfc, 0xeb, 0xf9, 0x5a, 0x62, 0x2f, 0xcb, 0x0f, 0x81, 0x07, 0xff, 0x1b, 0x00, 0x00, 0xff, |
|
| 17274 |
- 0xff, 0x3b, 0x34, 0xbd, 0xc6, 0xd3, 0x30, 0x00, 0x00, |
|
| 16967 |
+ // 5020 bytes of a gzipped FileDescriptorProto |
|
| 16968 |
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0x4d, 0x6c, 0x24, 0x49, |
|
| 16969 |
+ 0x56, 0x76, 0xfd, 0xba, 0xea, 0x55, 0xd9, 0x4e, 0x47, 0x7b, 0x7b, 0xdc, 0xb5, 0xdd, 0x76, 0x4d, |
|
| 16970 |
+ 0xce, 0xf4, 0xce, 0x6c, 0x6f, 0x53, 0xfd, 0xb7, 0xbb, 0xea, 0x99, 0x61, 0x77, 0xa6, 0xfe, 0x6c, |
|
| 16971 |
+ 0xd7, 0xb6, 0x5d, 0x55, 0x8a, 0x2a, 0x77, 0xef, 0x22, 0x41, 0x2a, 0x9d, 0x19, 0x2e, 0xe7, 0x38, |
|
| 16972 |
+ 0x2b, 0xa3, 0xc8, 0xcc, 0xb2, 0xbb, 0x58, 0x10, 0x2d, 0x0e, 0x80, 0x7c, 0x82, 0xdb, 0x22, 0x64, |
|
| 16973 |
+ 0x2e, 0x70, 0x42, 0x48, 0x1c, 0x40, 0x42, 0x70, 0x1a, 0x24, 0x0e, 0x7b, 0x83, 0x05, 0x09, 0xad, |
|
| 16974 |
+ 0x40, 0x32, 0xac, 0x0f, 0xdc, 0x56, 0x70, 0x59, 0x71, 0x01, 0x09, 0xc5, 0x4f, 0x66, 0xa5, 0xab, |
|
| 16975 |
+ 0xd3, 0x76, 0x0f, 0xb3, 0x17, 0xbb, 0xe2, 0xbd, 0xef, 0xbd, 0x78, 0xf1, 0x22, 0xe2, 0xc5, 0x7b, |
|
| 16976 |
+ 0x11, 0x09, 0xf7, 0x06, 0x96, 0x7f, 0x30, 0xde, 0xab, 0x18, 0x74, 0xf8, 0xc0, 0xa4, 0xc6, 0x21, |
|
| 16977 |
+ 0x71, 0x1f, 0x78, 0xc7, 0xba, 0x3b, 0x3c, 0xb4, 0xfc, 0x07, 0xfa, 0xc8, 0x7a, 0xe0, 0x4f, 0x46, |
|
| 16978 |
+ 0xc4, 0xab, 0x8c, 0x5c, 0xea, 0x53, 0x84, 0x04, 0xa0, 0x12, 0x00, 0x2a, 0x47, 0x8f, 0x4a, 0xeb, |
|
| 16979 |
+ 0x03, 0x4a, 0x07, 0x36, 0x79, 0xc0, 0x11, 0x7b, 0xe3, 0xfd, 0x07, 0xbe, 0x35, 0x24, 0x9e, 0xaf, |
|
| 16980 |
+ 0x0f, 0x47, 0x42, 0xa8, 0xb4, 0x36, 0x0b, 0x30, 0xc7, 0xae, 0xee, 0x5b, 0xd4, 0x91, 0xfc, 0x95, |
|
| 16981 |
+ 0x01, 0x1d, 0x50, 0xfe, 0xf3, 0x01, 0xfb, 0x25, 0xa8, 0xea, 0x3a, 0xcc, 0x3f, 0x27, 0xae, 0x67, |
|
| 16982 |
+ 0x51, 0x07, 0xad, 0x40, 0xc6, 0x72, 0x4c, 0xf2, 0x72, 0x35, 0x51, 0x4e, 0xbc, 0x9f, 0xc6, 0xa2, |
|
| 16983 |
+ 0xa1, 0x3e, 0x04, 0x68, 0xb1, 0x1f, 0x4d, 0xc7, 0x77, 0x27, 0x48, 0x81, 0xd4, 0x21, 0x99, 0x70, |
|
| 16984 |
+ 0x44, 0x1e, 0xb3, 0x9f, 0x8c, 0x72, 0xa4, 0xdb, 0xab, 0x49, 0x41, 0x39, 0xd2, 0x6d, 0xf5, 0x27, |
|
| 16985 |
+ 0x09, 0x28, 0x54, 0x1d, 0x87, 0xfa, 0xbc, 0x77, 0x0f, 0x21, 0x48, 0x3b, 0xfa, 0x90, 0x48, 0x21, |
|
| 16986 |
+ 0xfe, 0x1b, 0xd5, 0x21, 0x6b, 0xeb, 0x7b, 0xc4, 0xf6, 0x56, 0x93, 0xe5, 0xd4, 0xfb, 0x85, 0xc7, |
|
| 16987 |
+ 0x5f, 0xab, 0xbc, 0x3e, 0xe4, 0x4a, 0x44, 0x49, 0x65, 0x9b, 0xa3, 0xb9, 0x11, 0x58, 0x8a, 0xa2, |
|
| 16988 |
+ 0x6f, 0xc3, 0xbc, 0xe5, 0x98, 0x96, 0x41, 0xbc, 0xd5, 0x34, 0xd7, 0xb2, 0x16, 0xa7, 0x65, 0x6a, |
|
| 16989 |
+ 0x7d, 0x2d, 0xfd, 0xc3, 0xb3, 0xf5, 0x39, 0x1c, 0x08, 0x95, 0x3e, 0x80, 0x42, 0x44, 0x6d, 0xcc, |
|
| 16990 |
+ 0xd8, 0x56, 0x20, 0x73, 0xa4, 0xdb, 0x63, 0x22, 0x47, 0x27, 0x1a, 0x1f, 0x26, 0x9f, 0x26, 0xd4, |
|
| 16991 |
+ 0x4f, 0x60, 0xa5, 0xad, 0x0f, 0x89, 0xb9, 0x49, 0x1c, 0xe2, 0x5a, 0x06, 0x26, 0x1e, 0x1d, 0xbb, |
|
| 16992 |
+ 0x06, 0x61, 0x63, 0x3d, 0xb4, 0x1c, 0x33, 0x18, 0x2b, 0xfb, 0x1d, 0xaf, 0x45, 0xad, 0xc3, 0x5b, |
|
| 16993 |
+ 0x0d, 0xcb, 0x33, 0x5c, 0xe2, 0x93, 0xcf, 0xad, 0x24, 0x15, 0x28, 0x39, 0x4b, 0xc0, 0xd2, 0xac, |
|
| 16994 |
+ 0xf4, 0x2f, 0xc1, 0x0d, 0xe6, 0x62, 0x53, 0x73, 0x25, 0x45, 0xf3, 0x46, 0xc4, 0xe0, 0xca, 0x0a, |
|
| 16995 |
+ 0x8f, 0xdf, 0x8f, 0xf3, 0x50, 0xdc, 0x48, 0xb6, 0xe6, 0xf0, 0x32, 0x57, 0x13, 0x10, 0x7a, 0x23, |
|
| 16996 |
+ 0x62, 0x20, 0x03, 0x6e, 0x9a, 0xd2, 0xe8, 0x19, 0xf5, 0x49, 0xae, 0x3e, 0x76, 0x1a, 0x2f, 0x19, |
|
| 16997 |
+ 0xe6, 0xd6, 0x1c, 0x5e, 0x09, 0x94, 0x45, 0x3b, 0xa9, 0x01, 0xe4, 0x02, 0xdd, 0xea, 0x0f, 0x12, |
|
| 16998 |
+ 0x90, 0x0f, 0x98, 0x1e, 0xfa, 0x2a, 0xe4, 0x1d, 0xdd, 0xa1, 0x9a, 0x31, 0x1a, 0x7b, 0x7c, 0x40, |
|
| 16999 |
+ 0xa9, 0x5a, 0xf1, 0xfc, 0x6c, 0x3d, 0xd7, 0xd6, 0x1d, 0x5a, 0xef, 0xee, 0x7a, 0x38, 0xc7, 0xd8, |
|
| 17000 |
+ 0xf5, 0xd1, 0xd8, 0x43, 0x6f, 0x43, 0x71, 0x48, 0x86, 0xd4, 0x9d, 0x68, 0x7b, 0x13, 0x9f, 0x78, |
|
| 17001 |
+ 0xd2, 0x6d, 0x05, 0x41, 0xab, 0x31, 0x12, 0xfa, 0x16, 0xcc, 0x0f, 0x84, 0x49, 0xab, 0x29, 0xbe, |
|
| 17002 |
+ 0x7c, 0xde, 0x89, 0xb3, 0x7e, 0xc6, 0x6a, 0x1c, 0xc8, 0xa8, 0xbf, 0x97, 0x80, 0x95, 0x90, 0x4a, |
|
| 17003 |
+ 0x7e, 0x75, 0x6c, 0xb9, 0x64, 0x48, 0x1c, 0xdf, 0x43, 0xdf, 0x80, 0xac, 0x6d, 0x0d, 0x2d, 0xdf, |
|
| 17004 |
+ 0x93, 0x3e, 0xbf, 0x13, 0xa7, 0x36, 0x1c, 0x14, 0x96, 0x60, 0x54, 0x85, 0xa2, 0x4b, 0x3c, 0xe2, |
|
| 17005 |
+ 0x1e, 0x89, 0x15, 0x2f, 0x3d, 0x7a, 0x8d, 0xf0, 0x05, 0x11, 0x75, 0x03, 0x72, 0x5d, 0x5b, 0xf7, |
|
| 17006 |
+ 0xf7, 0xa9, 0x3b, 0x44, 0x2a, 0x14, 0x75, 0xd7, 0x38, 0xb0, 0x7c, 0x62, 0xf8, 0x63, 0x37, 0xd8, |
|
| 17007 |
+ 0x7d, 0x17, 0x68, 0xe8, 0x26, 0x24, 0xa9, 0xe8, 0x28, 0x5f, 0xcb, 0x9e, 0x9f, 0xad, 0x27, 0x3b, |
|
| 17008 |
+ 0x3d, 0x9c, 0xa4, 0x9e, 0xfa, 0x11, 0x2c, 0x77, 0xed, 0xf1, 0xc0, 0x72, 0x1a, 0xc4, 0x33, 0x5c, |
|
| 17009 |
+ 0x6b, 0xc4, 0xb4, 0xb3, 0x55, 0xc9, 0x62, 0x54, 0xb0, 0x2a, 0xd9, 0xef, 0x70, 0x6b, 0x27, 0xa7, |
|
| 17010 |
+ 0x5b, 0x5b, 0xfd, 0x9d, 0x24, 0x2c, 0x37, 0x9d, 0x81, 0xe5, 0x90, 0xa8, 0xf4, 0x5d, 0x58, 0x24, |
|
| 17011 |
+ 0x9c, 0xa8, 0x1d, 0x89, 0x70, 0x23, 0xf5, 0x2c, 0x08, 0x6a, 0x10, 0x83, 0x5a, 0x33, 0x71, 0xe1, |
|
| 17012 |
+ 0x51, 0xdc, 0xf0, 0x5f, 0xd3, 0x1e, 0x1b, 0x1d, 0x9a, 0x30, 0x3f, 0xe2, 0x83, 0xf0, 0xe4, 0xf4, |
|
| 17013 |
+ 0xde, 0x8d, 0xd3, 0xf5, 0xda, 0x38, 0x83, 0x20, 0x21, 0x65, 0xbf, 0x48, 0x90, 0xf8, 0xb3, 0x24, |
|
| 17014 |
+ 0x2c, 0xb5, 0xa9, 0x79, 0xc1, 0x0f, 0x25, 0xc8, 0x1d, 0x50, 0xcf, 0x8f, 0x04, 0xc4, 0xb0, 0x8d, |
|
| 17015 |
+ 0x9e, 0x42, 0x6e, 0x24, 0xa7, 0x4f, 0xce, 0xfe, 0xed, 0x78, 0x93, 0x05, 0x06, 0x87, 0x68, 0xf4, |
|
| 17016 |
+ 0x11, 0xe4, 0x83, 0x2d, 0xc3, 0x46, 0xfb, 0x06, 0x0b, 0x67, 0x8a, 0x47, 0xdf, 0x82, 0xac, 0x98, |
|
| 17017 |
+ 0x84, 0xd5, 0x34, 0x97, 0xbc, 0xfb, 0x46, 0x3e, 0xc7, 0x52, 0x08, 0x6d, 0x42, 0xce, 0xb7, 0x3d, |
|
| 17018 |
+ 0xcd, 0x72, 0xf6, 0xe9, 0x6a, 0x86, 0x2b, 0x58, 0x8f, 0x0d, 0x32, 0xd4, 0x24, 0xfd, 0xed, 0x5e, |
|
| 17019 |
+ 0xcb, 0xd9, 0xa7, 0xb5, 0xc2, 0xf9, 0xd9, 0xfa, 0xbc, 0x6c, 0xe0, 0x79, 0xdf, 0xf6, 0xd8, 0x0f, |
|
| 17020 |
+ 0xf5, 0xf7, 0x13, 0x50, 0x88, 0xa0, 0xd0, 0x1d, 0x00, 0xdf, 0x1d, 0x7b, 0xbe, 0xe6, 0x52, 0xea, |
|
| 17021 |
+ 0x73, 0x67, 0x15, 0x71, 0x9e, 0x53, 0x30, 0xa5, 0x3e, 0xaa, 0xc0, 0x0d, 0x83, 0xb8, 0xbe, 0x66, |
|
| 17022 |
+ 0x79, 0xde, 0x98, 0xb8, 0x9a, 0x37, 0xde, 0xfb, 0x94, 0x18, 0x3e, 0x77, 0x5c, 0x11, 0x2f, 0x33, |
|
| 17023 |
+ 0x56, 0x8b, 0x73, 0x7a, 0x82, 0x81, 0x9e, 0xc0, 0xcd, 0x28, 0x7e, 0x34, 0xde, 0xb3, 0x2d, 0x43, |
|
| 17024 |
+ 0x63, 0x93, 0x99, 0xe2, 0x22, 0x37, 0xa6, 0x22, 0x5d, 0xce, 0x7b, 0x46, 0x26, 0xea, 0x8f, 0x13, |
|
| 17025 |
+ 0xa0, 0x60, 0x7d, 0xdf, 0xdf, 0x21, 0xc3, 0x3d, 0xe2, 0xf6, 0x7c, 0xdd, 0x1f, 0x7b, 0xe8, 0x26, |
|
| 17026 |
+ 0x64, 0x6d, 0xa2, 0x9b, 0xc4, 0xe5, 0x46, 0xe5, 0xb0, 0x6c, 0xa1, 0x5d, 0xb6, 0x83, 0x75, 0xe3, |
|
| 17027 |
+ 0x40, 0xdf, 0xb3, 0x6c, 0xcb, 0x9f, 0x70, 0x53, 0x16, 0xe3, 0x97, 0xf0, 0xac, 0xce, 0x0a, 0x8e, |
|
| 17028 |
+ 0x08, 0xe2, 0x0b, 0x6a, 0xd0, 0x2a, 0xcc, 0x0f, 0x89, 0xe7, 0xe9, 0x03, 0xc2, 0x2d, 0xcd, 0xe3, |
|
| 17029 |
+ 0xa0, 0xa9, 0x7e, 0x04, 0xc5, 0xa8, 0x1c, 0x2a, 0xc0, 0xfc, 0x6e, 0xfb, 0x59, 0xbb, 0xf3, 0xa2, |
|
| 17030 |
+ 0xad, 0xcc, 0xa1, 0x25, 0x28, 0xec, 0xb6, 0x71, 0xb3, 0x5a, 0xdf, 0xaa, 0xd6, 0xb6, 0x9b, 0x4a, |
|
| 17031 |
+ 0x02, 0x2d, 0x40, 0x7e, 0xda, 0x4c, 0xaa, 0x7f, 0x91, 0x00, 0x60, 0xee, 0x96, 0x83, 0xfa, 0x10, |
|
| 17032 |
+ 0x32, 0x9e, 0xaf, 0xfb, 0x62, 0x55, 0x2e, 0x3e, 0x7e, 0xf7, 0xb2, 0x39, 0x94, 0xf6, 0xb2, 0x7f, |
|
| 17033 |
+ 0x04, 0x0b, 0x91, 0xa8, 0x85, 0xc9, 0x0b, 0x16, 0xb2, 0x00, 0xa1, 0x9b, 0xa6, 0x2b, 0x0d, 0xe7, |
|
| 17034 |
+ 0xbf, 0xd5, 0x8f, 0x20, 0xc3, 0xa5, 0x2f, 0x9a, 0x9b, 0x83, 0x74, 0x83, 0xfd, 0x4a, 0xa0, 0x3c, |
|
| 17035 |
+ 0x64, 0x70, 0xb3, 0xda, 0xf8, 0x9e, 0x92, 0x44, 0x0a, 0x14, 0x1b, 0xad, 0x5e, 0xbd, 0xd3, 0x6e, |
|
| 17036 |
+ 0x37, 0xeb, 0xfd, 0x66, 0x43, 0x49, 0xa9, 0x77, 0x21, 0xd3, 0x1a, 0x32, 0xcd, 0xb7, 0xd9, 0x92, |
|
| 17037 |
+ 0xdf, 0x27, 0x2e, 0x71, 0x8c, 0x60, 0x27, 0x4d, 0x09, 0xea, 0x4f, 0x0b, 0x90, 0xd9, 0xa1, 0x63, |
|
| 17038 |
+ 0xc7, 0x47, 0x8f, 0x23, 0x61, 0x6b, 0x31, 0x3e, 0x43, 0xe0, 0xc0, 0x4a, 0x7f, 0x32, 0x22, 0x32, |
|
| 17039 |
+ 0xac, 0xdd, 0x84, 0xac, 0xd8, 0x1c, 0x72, 0x38, 0xb2, 0xc5, 0xe8, 0xbe, 0xee, 0x0e, 0x88, 0x2f, |
|
| 17040 |
+ 0xc7, 0x23, 0x5b, 0xe8, 0x7d, 0x76, 0x62, 0xe9, 0x26, 0x75, 0xec, 0x09, 0xdf, 0x43, 0x39, 0x71, |
|
| 17041 |
+ 0x2c, 0x61, 0xa2, 0x9b, 0x1d, 0xc7, 0x9e, 0xe0, 0x90, 0x8b, 0xb6, 0xa0, 0xb8, 0x67, 0x39, 0xa6, |
|
| 17042 |
+ 0x46, 0x47, 0x22, 0xc8, 0x67, 0x2e, 0xdf, 0x71, 0xc2, 0xaa, 0x9a, 0xe5, 0x98, 0x1d, 0x01, 0xc6, |
|
| 17043 |
+ 0x85, 0xbd, 0x69, 0x03, 0xb5, 0x61, 0xf1, 0x88, 0xda, 0xe3, 0x21, 0x09, 0x75, 0x65, 0xb9, 0xae, |
|
| 17044 |
+ 0xf7, 0x2e, 0xd7, 0xf5, 0x9c, 0xe3, 0x03, 0x6d, 0x0b, 0x47, 0xd1, 0x26, 0x7a, 0x06, 0x0b, 0xfe, |
|
| 17045 |
+ 0x70, 0xb4, 0xef, 0x85, 0xea, 0xe6, 0xb9, 0xba, 0xaf, 0x5c, 0xe1, 0x30, 0x06, 0x0f, 0xb4, 0x15, |
|
| 17046 |
+ 0xfd, 0x48, 0x0b, 0x6d, 0x42, 0xc1, 0xa0, 0x8e, 0x67, 0x79, 0x3e, 0x71, 0x8c, 0xc9, 0x6a, 0x8e, |
|
| 17047 |
+ 0xfb, 0xfe, 0x8a, 0x51, 0xd6, 0xa7, 0x60, 0x1c, 0x95, 0x2c, 0xfd, 0x56, 0x0a, 0x0a, 0x11, 0x17, |
|
| 17048 |
+ 0xa0, 0x1e, 0x14, 0x46, 0x2e, 0x1d, 0xe9, 0x03, 0x7e, 0xe2, 0xc9, 0x49, 0x7d, 0xf4, 0x46, 0xee, |
|
| 17049 |
+ 0xab, 0x74, 0xa7, 0x82, 0x38, 0xaa, 0x45, 0x3d, 0x4d, 0x42, 0x21, 0xc2, 0x44, 0xf7, 0x20, 0x87, |
|
| 17050 |
+ 0xbb, 0xb8, 0xf5, 0xbc, 0xda, 0x6f, 0x2a, 0x73, 0xa5, 0xdb, 0x27, 0xa7, 0xe5, 0x55, 0xae, 0x2d, |
|
| 17051 |
+ 0xaa, 0xa0, 0xeb, 0x5a, 0x47, 0x6c, 0x0d, 0xbf, 0x0f, 0xf3, 0x01, 0x34, 0x51, 0xfa, 0xf2, 0xc9, |
|
| 17052 |
+ 0x69, 0xf9, 0xad, 0x59, 0x68, 0x04, 0x89, 0x7b, 0x5b, 0x55, 0xdc, 0x6c, 0x28, 0xc9, 0x78, 0x24, |
|
| 17053 |
+ 0xee, 0x1d, 0xe8, 0x2e, 0x31, 0xd1, 0x57, 0x20, 0x2b, 0x81, 0xa9, 0x52, 0xe9, 0xe4, 0xb4, 0x7c, |
|
| 17054 |
+ 0x73, 0x16, 0x38, 0xc5, 0xe1, 0xde, 0x76, 0xf5, 0x79, 0x53, 0x49, 0xc7, 0xe3, 0x70, 0xcf, 0xd6, |
|
| 17055 |
+ 0x8f, 0x08, 0x7a, 0x17, 0x32, 0x02, 0x96, 0x29, 0xdd, 0x3a, 0x39, 0x2d, 0x7f, 0xe9, 0x35, 0x75, |
|
| 17056 |
+ 0x0c, 0x55, 0x5a, 0xfd, 0xdd, 0x3f, 0x5e, 0x9b, 0xfb, 0x9b, 0x3f, 0x59, 0x53, 0x66, 0xd9, 0xa5, |
|
| 17057 |
+ 0xff, 0x49, 0xc0, 0xc2, 0x85, 0xb5, 0x83, 0x54, 0xc8, 0x3a, 0xd4, 0xa0, 0x23, 0x71, 0x10, 0xe6, |
|
| 17058 |
+ 0x6a, 0x70, 0x7e, 0xb6, 0x9e, 0x6d, 0xd3, 0x3a, 0x1d, 0x4d, 0xb0, 0xe4, 0xa0, 0x67, 0x33, 0x47, |
|
| 17059 |
+ 0xf9, 0x93, 0x37, 0x5c, 0x98, 0xb1, 0x87, 0xf9, 0xc7, 0xb0, 0x60, 0xba, 0xd6, 0x11, 0x71, 0x35, |
|
| 17060 |
+ 0x83, 0x3a, 0xfb, 0xd6, 0x40, 0x1e, 0x72, 0xa5, 0xd8, 0x7c, 0x93, 0x03, 0x71, 0x51, 0x08, 0xd4, |
|
| 17061 |
+ 0x39, 0xfe, 0x0b, 0x1c, 0xe3, 0xa5, 0xe7, 0x50, 0x8c, 0x2e, 0x75, 0x76, 0x2e, 0x79, 0xd6, 0xaf, |
|
| 17062 |
+ 0x11, 0x99, 0x58, 0xf2, 0x34, 0x14, 0xe7, 0x19, 0x45, 0xa4, 0x95, 0xef, 0x41, 0x7a, 0x48, 0x4d, |
|
| 17063 |
+ 0xa1, 0x67, 0xa1, 0x76, 0x83, 0x65, 0x13, 0xff, 0x72, 0xb6, 0x5e, 0xa0, 0x5e, 0x65, 0xc3, 0xb2, |
|
| 17064 |
+ 0xc9, 0x0e, 0x35, 0x09, 0xe6, 0x00, 0xf5, 0x08, 0xd2, 0x2c, 0xe6, 0xa0, 0x2f, 0x43, 0xba, 0xd6, |
|
| 17065 |
+ 0x6a, 0x37, 0x94, 0xb9, 0xd2, 0xf2, 0xc9, 0x69, 0x79, 0x81, 0xbb, 0x84, 0x31, 0xd8, 0xda, 0x45, |
|
| 17066 |
+ 0xeb, 0x90, 0x7d, 0xde, 0xd9, 0xde, 0xdd, 0x61, 0xcb, 0xeb, 0xc6, 0xc9, 0x69, 0x79, 0x29, 0x64, |
|
| 17067 |
+ 0x0b, 0xa7, 0xa1, 0x3b, 0x90, 0xe9, 0xef, 0x74, 0x37, 0x7a, 0x4a, 0xb2, 0x84, 0x4e, 0x4e, 0xcb, |
|
| 17068 |
+ 0x8b, 0x21, 0x9f, 0xdb, 0x5c, 0x5a, 0x96, 0xb3, 0x9a, 0x0f, 0xe9, 0xea, 0x8f, 0x12, 0x50, 0x88, |
|
| 17069 |
+ 0x6c, 0x38, 0xb6, 0x30, 0x1b, 0xcd, 0x8d, 0xea, 0xee, 0x76, 0x5f, 0x99, 0x8b, 0x2c, 0xcc, 0x08, |
|
| 17070 |
+ 0xa4, 0x41, 0xf6, 0xf5, 0xb1, 0xcd, 0xe2, 0x1c, 0xd4, 0x3b, 0xed, 0x5e, 0xab, 0xd7, 0x6f, 0xb6, |
|
| 17071 |
+ 0xfb, 0x4a, 0xa2, 0xb4, 0x7a, 0x72, 0x5a, 0x5e, 0x99, 0x05, 0x6f, 0x8c, 0x6d, 0x9b, 0x2d, 0xcd, |
|
| 17072 |
+ 0x7a, 0xb5, 0xbe, 0xc5, 0xd7, 0xfa, 0x74, 0x69, 0x46, 0x50, 0x75, 0xdd, 0x38, 0x20, 0x26, 0xba, |
|
| 17073 |
+ 0x0f, 0xf9, 0x46, 0x73, 0xbb, 0xb9, 0x59, 0xe5, 0xd1, 0xbd, 0x74, 0xe7, 0xe4, 0xb4, 0x7c, 0xeb, |
|
| 17074 |
+ 0xf5, 0xde, 0x6d, 0x32, 0xd0, 0x7d, 0x62, 0xce, 0x2c, 0xd1, 0x08, 0x44, 0xfd, 0x59, 0x12, 0x16, |
|
| 17075 |
+ 0x30, 0x2b, 0x87, 0x5d, 0xbf, 0x4b, 0x6d, 0xcb, 0x98, 0xa0, 0x2e, 0xe4, 0x0d, 0xea, 0x98, 0x56, |
|
| 17076 |
+ 0x24, 0x4e, 0x3c, 0xbe, 0x24, 0x25, 0x9a, 0x4a, 0x05, 0xad, 0x7a, 0x20, 0x89, 0xa7, 0x4a, 0xd0, |
|
| 17077 |
+ 0x03, 0xc8, 0x98, 0xc4, 0xd6, 0x27, 0x32, 0x37, 0xbb, 0x55, 0x11, 0x05, 0x77, 0x25, 0x28, 0xb8, |
|
| 17078 |
+ 0x2b, 0x0d, 0x59, 0x70, 0x63, 0x81, 0xe3, 0x35, 0x88, 0xfe, 0x52, 0xd3, 0x7d, 0x9f, 0x0c, 0x47, |
|
| 17079 |
+ 0xbe, 0x48, 0xcc, 0xd2, 0xb8, 0x30, 0xd4, 0x5f, 0x56, 0x25, 0x09, 0x3d, 0x82, 0xec, 0xb1, 0xe5, |
|
| 17080 |
+ 0x98, 0xf4, 0x58, 0xe6, 0x5e, 0x57, 0x28, 0x95, 0x40, 0xf5, 0x84, 0xa5, 0x24, 0x33, 0x66, 0xb2, |
|
| 17081 |
+ 0x35, 0xd4, 0xee, 0xb4, 0x9b, 0xc1, 0x1a, 0x92, 0xfc, 0x8e, 0xd3, 0xa6, 0x0e, 0xdb, 0xff, 0xd0, |
|
| 17082 |
+ 0x69, 0x6b, 0x1b, 0xd5, 0xd6, 0xf6, 0x2e, 0x66, 0xeb, 0x68, 0xe5, 0xe4, 0xb4, 0xac, 0x84, 0x90, |
|
| 17083 |
+ 0x0d, 0xdd, 0xb2, 0x59, 0x31, 0x70, 0x0b, 0x52, 0xd5, 0xf6, 0xf7, 0x94, 0x64, 0x49, 0x39, 0x39, |
|
| 17084 |
+ 0x2d, 0x17, 0x43, 0x76, 0xd5, 0x99, 0x4c, 0xfd, 0x3e, 0xdb, 0xaf, 0xfa, 0xf7, 0x29, 0x28, 0xee, |
|
| 17085 |
+ 0x8e, 0x4c, 0xdd, 0x27, 0x62, 0x9f, 0xa1, 0x32, 0x14, 0x46, 0xba, 0xab, 0xdb, 0x36, 0xb1, 0x2d, |
|
| 17086 |
+ 0x6f, 0x28, 0xaf, 0x12, 0xa2, 0x24, 0xf4, 0xc1, 0x9b, 0xba, 0xb1, 0x96, 0x63, 0x7b, 0xe7, 0x07, |
|
| 17087 |
+ 0xff, 0xb6, 0x9e, 0x08, 0x1c, 0xba, 0x0b, 0x8b, 0xfb, 0xc2, 0x5a, 0x4d, 0x37, 0xf8, 0xc4, 0xa6, |
|
| 17088 |
+ 0xf8, 0xc4, 0x56, 0xe2, 0x26, 0x36, 0x6a, 0x56, 0x45, 0x0e, 0xb2, 0xca, 0xa5, 0xf0, 0xc2, 0x7e, |
|
| 17089 |
+ 0xb4, 0x89, 0x9e, 0xc0, 0xfc, 0x90, 0x3a, 0x96, 0x4f, 0xdd, 0xeb, 0x67, 0x21, 0x40, 0xa2, 0x7b, |
|
| 17090 |
+ 0xb0, 0xcc, 0x26, 0x37, 0xb0, 0x87, 0xb3, 0xf9, 0x71, 0x9e, 0xc4, 0x4b, 0x43, 0xfd, 0xa5, 0xec, |
|
| 17091 |
+ 0x10, 0x33, 0x32, 0xaa, 0x41, 0x86, 0xba, 0x2c, 0x5f, 0xcc, 0x72, 0x73, 0xef, 0x5f, 0x6b, 0xae, |
|
| 17092 |
+ 0x68, 0x74, 0x98, 0x0c, 0x16, 0xa2, 0xea, 0x37, 0x61, 0xe1, 0xc2, 0x20, 0x58, 0x9a, 0xd4, 0xad, |
|
| 17093 |
+ 0xee, 0xf6, 0x9a, 0xca, 0x1c, 0x2a, 0x42, 0xae, 0xde, 0x69, 0xf7, 0x5b, 0xed, 0x5d, 0x96, 0xe7, |
|
| 17094 |
+ 0x15, 0x21, 0x87, 0x3b, 0xdb, 0xdb, 0xb5, 0x6a, 0xfd, 0x99, 0x92, 0x54, 0x2b, 0x50, 0x88, 0x68, |
|
| 17095 |
+ 0x43, 0x8b, 0x00, 0xbd, 0x7e, 0xa7, 0xab, 0x6d, 0xb4, 0x70, 0xaf, 0x2f, 0xb2, 0xc4, 0x5e, 0xbf, |
|
| 17096 |
+ 0x8a, 0xfb, 0x92, 0x90, 0x50, 0xff, 0x33, 0x19, 0xcc, 0xa8, 0x4c, 0x0c, 0x6b, 0x17, 0x13, 0xc3, |
|
| 17097 |
+ 0x2b, 0x8c, 0x97, 0xa9, 0xe1, 0xb4, 0x11, 0x26, 0x88, 0x1f, 0x00, 0xf0, 0x85, 0x43, 0x4c, 0x4d, |
|
| 17098 |
+ 0xf7, 0xe5, 0xc4, 0x97, 0x5e, 0x73, 0x72, 0x3f, 0xb8, 0xd1, 0xc2, 0x79, 0x89, 0xae, 0xfa, 0xe8, |
|
| 17099 |
+ 0x5b, 0x50, 0x34, 0xe8, 0x70, 0x64, 0x13, 0x29, 0x9c, 0xba, 0x56, 0xb8, 0x10, 0xe2, 0xab, 0x7e, |
|
| 17100 |
+ 0x34, 0x35, 0x4d, 0x5f, 0x4c, 0x9e, 0x7f, 0x3b, 0x11, 0x78, 0x26, 0x26, 0x1b, 0x2d, 0x42, 0x6e, |
|
| 17101 |
+ 0xb7, 0xdb, 0xa8, 0xf6, 0x5b, 0xed, 0x4d, 0x25, 0x81, 0x00, 0xb2, 0xdc, 0xd5, 0x0d, 0x25, 0xc9, |
|
| 17102 |
+ 0xb2, 0xe8, 0x7a, 0x67, 0xa7, 0xbb, 0xdd, 0xe4, 0x11, 0x0b, 0xad, 0x80, 0x12, 0x38, 0x5b, 0xe3, |
|
| 17103 |
+ 0x8e, 0x6c, 0x36, 0x94, 0x34, 0xba, 0x01, 0x4b, 0x21, 0x55, 0x4a, 0x66, 0xd0, 0x4d, 0x40, 0x21, |
|
| 17104 |
+ 0x71, 0xaa, 0x22, 0xab, 0xfe, 0x06, 0x2c, 0xd5, 0xa9, 0xe3, 0xeb, 0x96, 0x13, 0x56, 0x18, 0x8f, |
|
| 17105 |
+ 0xd9, 0xa0, 0x25, 0x49, 0xb3, 0xe4, 0x4d, 0x50, 0x6d, 0xe9, 0xfc, 0x6c, 0xbd, 0x10, 0x42, 0x5b, |
|
| 17106 |
+ 0x0d, 0x9e, 0x2a, 0xc9, 0x86, 0xc9, 0xf6, 0xef, 0xc8, 0x32, 0xb9, 0x73, 0x33, 0xb5, 0xf9, 0xf3, |
|
| 17107 |
+ 0xb3, 0xf5, 0x54, 0xb7, 0xd5, 0xc0, 0x8c, 0x86, 0xbe, 0x0c, 0x79, 0xf2, 0xd2, 0xf2, 0x35, 0x83, |
|
| 17108 |
+ 0x9d, 0x4b, 0xcc, 0x81, 0x19, 0x9c, 0x63, 0x84, 0x3a, 0x3b, 0x86, 0x6a, 0x00, 0x5d, 0xea, 0xfa, |
|
| 17109 |
+ 0xb2, 0xe7, 0xaf, 0x43, 0x66, 0x44, 0x5d, 0x7e, 0x77, 0x71, 0xe9, 0x8d, 0x1a, 0x83, 0x8b, 0x85, |
|
| 17110 |
+ 0x8a, 0x05, 0x58, 0xfd, 0x83, 0x14, 0x40, 0x5f, 0xf7, 0x0e, 0xa5, 0x92, 0xa7, 0x90, 0x0f, 0x6f, |
|
| 17111 |
+ 0x27, 0xe5, 0x25, 0xc8, 0x95, 0xb3, 0x1d, 0x82, 0xd1, 0x93, 0x60, 0xb1, 0x89, 0xda, 0x29, 0xb6, |
|
| 17112 |
+ 0x88, 0x0d, 0x3a, 0x8a, 0x2b, 0x3f, 0x2e, 0x16, 0x48, 0xec, 0x98, 0x27, 0xae, 0x2b, 0x67, 0x9e, |
|
| 17113 |
+ 0xfd, 0x44, 0x75, 0x7e, 0x2c, 0x08, 0xa7, 0xc9, 0xec, 0x3b, 0xf6, 0xda, 0x67, 0x66, 0x46, 0xb6, |
|
| 17114 |
+ 0xe6, 0xf0, 0x54, 0x0e, 0x7d, 0x0c, 0x05, 0x36, 0x6e, 0xcd, 0xe3, 0x3c, 0x99, 0x78, 0x5f, 0xea, |
|
| 17115 |
+ 0x2a, 0xa1, 0x01, 0xc3, 0x68, 0xea, 0xe5, 0x3b, 0x00, 0xfa, 0x68, 0x64, 0x5b, 0xc4, 0xd4, 0xf6, |
|
| 17116 |
+ 0x26, 0x3c, 0xd3, 0xce, 0xe3, 0xbc, 0xa4, 0xd4, 0x26, 0x6c, 0xbb, 0x04, 0x6c, 0xdd, 0xe7, 0xd9, |
|
| 17117 |
+ 0xf3, 0x35, 0x0e, 0x94, 0xe8, 0xaa, 0x5f, 0x53, 0x60, 0xd1, 0x1d, 0x3b, 0xcc, 0xa1, 0xd2, 0x3a, |
|
| 17118 |
+ 0xf5, 0xcf, 0x93, 0xf0, 0x56, 0x9b, 0xf8, 0xc7, 0xd4, 0x3d, 0xac, 0xfa, 0xbe, 0x6e, 0x1c, 0x0c, |
|
| 17119 |
+ 0x89, 0x23, 0xa7, 0x2f, 0x52, 0xd0, 0x24, 0x2e, 0x14, 0x34, 0xab, 0x30, 0xaf, 0xdb, 0x96, 0xee, |
|
| 17120 |
+ 0x11, 0x91, 0xbc, 0xe5, 0x71, 0xd0, 0x64, 0x65, 0x17, 0x2b, 0xe2, 0x88, 0xe7, 0x11, 0x71, 0xaf, |
|
| 17121 |
+ 0xc2, 0x0c, 0x0f, 0x08, 0xe8, 0xfb, 0x70, 0x53, 0xa6, 0x69, 0x7a, 0xd8, 0x15, 0x2b, 0x28, 0x82, |
|
| 17122 |
+ 0x0b, 0xda, 0x66, 0x6c, 0x55, 0x19, 0x6f, 0x9c, 0xcc, 0xe3, 0xa6, 0xe4, 0xce, 0xc8, 0x97, 0x59, |
|
| 17123 |
+ 0xe1, 0x8a, 0x19, 0xc3, 0x2a, 0x6d, 0xc2, 0xad, 0x4b, 0x45, 0x3e, 0xd7, 0xbd, 0xcd, 0x3f, 0x25, |
|
| 17124 |
+ 0x01, 0x5a, 0xdd, 0xea, 0x8e, 0x74, 0x52, 0x03, 0xb2, 0xfb, 0xfa, 0xd0, 0xb2, 0x27, 0x57, 0x45, |
|
| 17125 |
+ 0xc0, 0x29, 0xbe, 0x52, 0x15, 0xee, 0xd8, 0xe0, 0x32, 0x58, 0xca, 0xf2, 0x9a, 0x72, 0xbc, 0xe7, |
|
| 17126 |
+ 0x10, 0x3f, 0xac, 0x29, 0x79, 0x8b, 0x99, 0xe1, 0xea, 0x4e, 0xb8, 0x74, 0x45, 0x83, 0x4d, 0x00, |
|
| 17127 |
+ 0x4b, 0x79, 0x8e, 0xf5, 0x49, 0x10, 0xb6, 0x64, 0x13, 0x6d, 0xf1, 0xdb, 0x51, 0xe2, 0x1e, 0x11, |
|
| 17128 |
+ 0x73, 0x35, 0xc3, 0x9d, 0x7a, 0x9d, 0x3d, 0x58, 0xc2, 0x85, 0xef, 0x42, 0xe9, 0xd2, 0x47, 0x3c, |
|
| 17129 |
+ 0x65, 0x9a, 0xb2, 0x3e, 0x97, 0x8f, 0x1e, 0xc2, 0xc2, 0x85, 0x71, 0xbe, 0x56, 0xcc, 0xb7, 0xba, |
|
| 17130 |
+ 0xcf, 0xbf, 0xae, 0xa4, 0xe5, 0xaf, 0x6f, 0x2a, 0x59, 0xf5, 0x4f, 0x53, 0x22, 0xd0, 0x48, 0xaf, |
|
| 17131 |
+ 0xc6, 0xbf, 0x0a, 0xe4, 0xf8, 0xea, 0x36, 0xa8, 0x2d, 0x03, 0xc0, 0x7b, 0x57, 0xc7, 0x1f, 0x56, |
|
| 17132 |
+ 0xd3, 0x71, 0x38, 0x0e, 0x05, 0xd1, 0x3a, 0x14, 0xc4, 0x2a, 0xd6, 0xd8, 0x86, 0xe3, 0x6e, 0x5d, |
|
| 17133 |
+ 0xc0, 0x20, 0x48, 0x4c, 0x12, 0xdd, 0x85, 0x45, 0x7e, 0xf9, 0xe3, 0x1d, 0x10, 0x53, 0x60, 0xd2, |
|
| 17134 |
+ 0x1c, 0xb3, 0x10, 0x52, 0x39, 0x6c, 0x07, 0x8a, 0x92, 0xa0, 0xf1, 0x7c, 0x3e, 0xc3, 0x0d, 0xba, |
|
| 17135 |
+ 0x77, 0x9d, 0x41, 0x42, 0x84, 0xa7, 0xf9, 0x85, 0xd1, 0xb4, 0xa1, 0x36, 0x20, 0x17, 0x18, 0x8b, |
|
| 17136 |
+ 0x56, 0x21, 0xd5, 0xaf, 0x77, 0x95, 0xb9, 0xd2, 0xd2, 0xc9, 0x69, 0xb9, 0x10, 0x90, 0xfb, 0xf5, |
|
| 17137 |
+ 0x2e, 0xe3, 0xec, 0x36, 0xba, 0x4a, 0xe2, 0x22, 0x67, 0xb7, 0xd1, 0x2d, 0xa5, 0x59, 0x0e, 0xa6, |
|
| 17138 |
+ 0xee, 0x43, 0x21, 0xd2, 0x03, 0x7a, 0x07, 0xe6, 0x5b, 0xed, 0x4d, 0xdc, 0xec, 0xf5, 0x94, 0xb9, |
|
| 17139 |
+ 0xd2, 0xcd, 0x93, 0xd3, 0x32, 0x8a, 0x70, 0x5b, 0xce, 0x80, 0xcd, 0x0f, 0xba, 0x03, 0xe9, 0xad, |
|
| 17140 |
+ 0x0e, 0x3b, 0xdb, 0x45, 0x01, 0x11, 0x41, 0x6c, 0x51, 0xcf, 0x2f, 0xdd, 0x90, 0xc9, 0x5d, 0x54, |
|
| 17141 |
+ 0xb1, 0xfa, 0x87, 0x09, 0xc8, 0x8a, 0xcd, 0x14, 0x3b, 0x51, 0x55, 0x98, 0x0f, 0xae, 0x09, 0x44, |
|
| 17142 |
+ 0x71, 0xf7, 0xde, 0xe5, 0x85, 0x58, 0x45, 0xd6, 0x4d, 0x62, 0xf9, 0x05, 0x72, 0xa5, 0x0f, 0xa1, |
|
| 17143 |
+ 0x18, 0x65, 0x7c, 0xae, 0xc5, 0xf7, 0x7d, 0x28, 0xb0, 0xf5, 0x1d, 0x14, 0x64, 0x8f, 0x21, 0x2b, |
|
| 17144 |
+ 0x02, 0x42, 0x78, 0xd6, 0x5c, 0x5e, 0x15, 0x4a, 0x24, 0x7a, 0x0a, 0xf3, 0xa2, 0x92, 0x0c, 0x6e, |
|
| 17145 |
+ 0x87, 0xd7, 0xae, 0xde, 0x45, 0x38, 0x80, 0xab, 0x1f, 0x43, 0xba, 0x4b, 0x88, 0xcb, 0x7c, 0xef, |
|
| 17146 |
+ 0x50, 0x93, 0x4c, 0x8f, 0x67, 0x59, 0x04, 0x9b, 0xa4, 0xd5, 0x60, 0x45, 0xb0, 0x49, 0x5a, 0x66, |
|
| 17147 |
+ 0x78, 0xff, 0x95, 0x8c, 0xdc, 0x7f, 0xf5, 0xa1, 0xf8, 0x82, 0x58, 0x83, 0x03, 0x9f, 0x98, 0x5c, |
|
| 17148 |
+ 0xd1, 0x7d, 0x48, 0x8f, 0x48, 0x68, 0xfc, 0x6a, 0xec, 0x02, 0x23, 0xc4, 0xc5, 0x1c, 0xc5, 0xe2, |
|
| 17149 |
+ 0xc8, 0x31, 0x97, 0x96, 0x4f, 0x1a, 0xb2, 0xa5, 0xfe, 0x63, 0x12, 0x16, 0x5b, 0x9e, 0x37, 0xd6, |
|
| 17150 |
+ 0x1d, 0x23, 0xc8, 0xdc, 0xbe, 0x7d, 0x31, 0x73, 0x8b, 0x7d, 0xfb, 0xb9, 0x28, 0x72, 0xf1, 0x5a, |
|
| 17151 |
+ 0x4f, 0x9e, 0x9e, 0xc9, 0xf0, 0xf4, 0x54, 0x7f, 0x9a, 0x08, 0xee, 0xee, 0xee, 0x46, 0xb6, 0xbb, |
|
| 17152 |
+ 0xa8, 0x03, 0xa3, 0x9a, 0xc8, 0xae, 0x73, 0xe8, 0xd0, 0x63, 0x07, 0xbd, 0x0d, 0x19, 0xdc, 0x6c, |
|
| 17153 |
+ 0x37, 0x5f, 0x28, 0x09, 0xb1, 0x3c, 0x2f, 0x80, 0x30, 0x71, 0xc8, 0x31, 0xd3, 0xd4, 0x6d, 0xb6, |
|
| 17154 |
+ 0x1b, 0x2c, 0xd3, 0x4a, 0xc6, 0x68, 0xea, 0x12, 0xc7, 0xb4, 0x9c, 0x01, 0x7a, 0x07, 0xb2, 0xad, |
|
| 17155 |
+ 0x5e, 0x6f, 0x97, 0x97, 0x89, 0x6f, 0x9d, 0x9c, 0x96, 0x6f, 0x5c, 0x40, 0xf1, 0x7b, 0x5b, 0x93, |
|
| 17156 |
+ 0x81, 0x58, 0x99, 0xc3, 0x72, 0xb0, 0x18, 0x10, 0xcb, 0x9f, 0x05, 0x08, 0x77, 0xfa, 0xd5, 0x7e, |
|
| 17157 |
+ 0x53, 0xc9, 0xc4, 0x80, 0x30, 0x65, 0x7f, 0xe5, 0x76, 0xfb, 0xd7, 0x24, 0x28, 0x55, 0xc3, 0x20, |
|
| 17158 |
+ 0x23, 0x9f, 0xf1, 0x65, 0x65, 0xd9, 0x87, 0xdc, 0x88, 0xfd, 0xb2, 0x48, 0x90, 0x25, 0x3d, 0x8d, |
|
| 17159 |
+ 0x7d, 0xbd, 0x9c, 0x91, 0xab, 0x60, 0x6a, 0x93, 0xaa, 0x39, 0xb4, 0x3c, 0xcf, 0xa2, 0x8e, 0xa0, |
|
| 17160 |
+ 0xe1, 0x50, 0x53, 0xe9, 0xbf, 0x12, 0x70, 0x23, 0x06, 0x81, 0x1e, 0x42, 0xda, 0xa5, 0x76, 0x30, |
|
| 17161 |
+ 0x87, 0xb7, 0x2f, 0xbb, 0x96, 0x65, 0xa2, 0x98, 0x23, 0xd1, 0x1a, 0x80, 0x3e, 0xf6, 0xa9, 0xce, |
|
| 17162 |
+ 0xfb, 0xe7, 0xb3, 0x97, 0xc3, 0x11, 0x0a, 0x7a, 0x01, 0x59, 0x8f, 0x18, 0x2e, 0x09, 0x72, 0xe9, |
|
| 17163 |
+ 0x8f, 0xff, 0xbf, 0xd6, 0x57, 0x7a, 0x5c, 0x0d, 0x96, 0xea, 0x4a, 0x15, 0xc8, 0x0a, 0x0a, 0x5b, |
|
| 17164 |
+ 0xf6, 0xa6, 0xee, 0xeb, 0xf2, 0xd2, 0x9e, 0xff, 0x66, 0xab, 0x49, 0xb7, 0x07, 0xc1, 0x6a, 0xd2, |
|
| 17165 |
+ 0xed, 0x81, 0xfa, 0x77, 0x49, 0x80, 0xe6, 0x4b, 0x9f, 0xb8, 0x8e, 0x6e, 0xd7, 0xab, 0xa8, 0x19, |
|
| 17166 |
+ 0x89, 0xfe, 0x62, 0xb4, 0x5f, 0x8d, 0x7d, 0x89, 0x08, 0x25, 0x2a, 0xf5, 0x6a, 0x4c, 0xfc, 0xbf, |
|
| 17167 |
+ 0x05, 0xa9, 0xb1, 0x2b, 0x1f, 0xa4, 0x45, 0x1e, 0xbc, 0x8b, 0xb7, 0x31, 0xa3, 0xa1, 0xe6, 0x34, |
|
| 17168 |
+ 0x6c, 0xa5, 0x2e, 0x7f, 0x76, 0x8e, 0x74, 0x10, 0x1b, 0xba, 0xd8, 0xce, 0x37, 0x74, 0xcd, 0x20, |
|
| 17169 |
+ 0xf2, 0xe4, 0x28, 0x8a, 0x9d, 0x5f, 0xaf, 0xd6, 0x89, 0xeb, 0xe3, 0xac, 0xa1, 0xb3, 0xff, 0x5f, |
|
| 17170 |
+ 0x28, 0xbe, 0xdd, 0x07, 0x98, 0x0e, 0x0d, 0xad, 0x41, 0xa6, 0xbe, 0xd1, 0xeb, 0x6d, 0x2b, 0x73, |
|
| 17171 |
+ 0x22, 0x80, 0x4f, 0x59, 0x9c, 0xac, 0xfe, 0x75, 0x12, 0x72, 0xf5, 0xaa, 0x3c, 0x56, 0xeb, 0xa0, |
|
| 17172 |
+ 0xf0, 0xa8, 0xc4, 0x9f, 0x3a, 0xc8, 0xcb, 0x91, 0xe5, 0x4e, 0x64, 0x60, 0xb9, 0xa2, 0xa8, 0x5d, |
|
| 17173 |
+ 0x64, 0x22, 0xcc, 0xea, 0x26, 0x17, 0x40, 0x18, 0x8a, 0x44, 0x3a, 0x41, 0x33, 0xf4, 0x20, 0xc6, |
|
| 17174 |
+ 0xaf, 0x5d, 0xed, 0x2c, 0x51, 0x9e, 0x4c, 0xdb, 0x1e, 0x2e, 0x04, 0x4a, 0xea, 0xba, 0x87, 0x3e, |
|
| 17175 |
+ 0x80, 0x25, 0xcf, 0x1a, 0x38, 0x96, 0x33, 0xd0, 0x02, 0xe7, 0xf1, 0x77, 0x97, 0xda, 0xf2, 0xf9, |
|
| 17176 |
+ 0xd9, 0xfa, 0x42, 0x4f, 0xb0, 0xa4, 0x0f, 0x17, 0x24, 0xb2, 0xce, 0x5d, 0x89, 0xbe, 0x09, 0x8b, |
|
| 17177 |
+ 0x11, 0x51, 0xe6, 0x45, 0xe1, 0x76, 0xe5, 0xfc, 0x6c, 0xbd, 0x18, 0x4a, 0x3e, 0x23, 0x13, 0x5c, |
|
| 17178 |
+ 0x0c, 0x05, 0x9f, 0x11, 0x7e, 0xff, 0xb2, 0x4f, 0x5d, 0x83, 0x68, 0x2e, 0xdf, 0xd3, 0xfc, 0x04, |
|
| 17179 |
+ 0x4f, 0xe3, 0x02, 0xa7, 0x89, 0x6d, 0xae, 0x3e, 0x87, 0x1b, 0x1d, 0xd7, 0x38, 0x20, 0x9e, 0x2f, |
|
| 17180 |
+ 0x5c, 0x21, 0xbd, 0xf8, 0x31, 0xdc, 0xf6, 0x75, 0xef, 0x50, 0x3b, 0xb0, 0x3c, 0x9f, 0xba, 0x13, |
|
| 17181 |
+ 0xcd, 0x25, 0x3e, 0x71, 0x18, 0x5f, 0xe3, 0x8f, 0xb5, 0xf2, 0xd2, 0xef, 0x16, 0xc3, 0x6c, 0x09, |
|
| 17182 |
+ 0x08, 0x0e, 0x10, 0xdb, 0x0c, 0xa0, 0xb6, 0xa0, 0xc8, 0xca, 0x14, 0x79, 0x71, 0xc6, 0x46, 0x0f, |
|
| 17183 |
+ 0x36, 0x1d, 0x68, 0x6f, 0x7c, 0x4c, 0xe5, 0x6d, 0x3a, 0x10, 0x3f, 0xd5, 0xef, 0x82, 0xd2, 0xb0, |
|
| 17184 |
+ 0xbc, 0x91, 0xee, 0x1b, 0x07, 0xc1, 0x6d, 0x26, 0x6a, 0x80, 0x72, 0x40, 0x74, 0xd7, 0xdf, 0x23, |
|
| 17185 |
+ 0xba, 0xaf, 0x8d, 0x88, 0x6b, 0x51, 0xf3, 0xfa, 0x59, 0x5e, 0x0a, 0x45, 0xba, 0x5c, 0x42, 0xfd, |
|
| 17186 |
+ 0xef, 0x04, 0x00, 0xd6, 0xf7, 0x83, 0x8c, 0xec, 0x6b, 0xb0, 0xec, 0x39, 0xfa, 0xc8, 0x3b, 0xa0, |
|
| 17187 |
+ 0xbe, 0x66, 0x39, 0x3e, 0x71, 0x8f, 0x74, 0x5b, 0x5e, 0xe0, 0x28, 0x01, 0xa3, 0x25, 0xe9, 0xe8, |
|
| 17188 |
+ 0x3e, 0xa0, 0x43, 0x42, 0x46, 0x1a, 0xb5, 0x4d, 0x2d, 0x60, 0x8a, 0xa7, 0xe4, 0x34, 0x56, 0x18, |
|
| 17189 |
+ 0xa7, 0x63, 0x9b, 0xbd, 0x80, 0x8e, 0x6a, 0xb0, 0xc6, 0x86, 0x4f, 0x1c, 0xdf, 0xb5, 0x88, 0xa7, |
|
| 17190 |
+ 0xed, 0x53, 0x57, 0xf3, 0x6c, 0x7a, 0xac, 0xed, 0x53, 0xdb, 0xa6, 0xc7, 0xc4, 0x0d, 0xee, 0xc6, |
|
| 17191 |
+ 0x4a, 0x36, 0x1d, 0x34, 0x05, 0x68, 0x83, 0xba, 0x3d, 0x9b, 0x1e, 0x6f, 0x04, 0x08, 0x96, 0xb6, |
|
| 17192 |
+ 0x4d, 0xc7, 0xec, 0x5b, 0xc6, 0x61, 0x90, 0xb6, 0x85, 0xd4, 0xbe, 0x65, 0x1c, 0xa2, 0x77, 0x60, |
|
| 17193 |
+ 0x81, 0xd8, 0x84, 0x5f, 0x91, 0x08, 0x54, 0x86, 0xa3, 0x8a, 0x01, 0x91, 0x81, 0xd4, 0x4f, 0x40, |
|
| 17194 |
+ 0x69, 0x3a, 0x86, 0x3b, 0x19, 0x45, 0xe6, 0xfc, 0x3e, 0x20, 0x16, 0x24, 0x35, 0x9b, 0x1a, 0x87, |
|
| 17195 |
+ 0xda, 0x50, 0x77, 0xf4, 0x01, 0xb3, 0x4b, 0xbc, 0xf0, 0x29, 0x8c, 0xb3, 0x4d, 0x8d, 0xc3, 0x1d, |
|
| 17196 |
+ 0x49, 0x57, 0x3f, 0x00, 0xe8, 0x8d, 0x5c, 0xa2, 0x9b, 0x1d, 0x96, 0x4d, 0x30, 0xd7, 0xf1, 0x96, |
|
| 17197 |
+ 0x66, 0xca, 0x17, 0x52, 0xea, 0xca, 0xad, 0xae, 0x08, 0x46, 0x23, 0xa4, 0xab, 0xbf, 0x0c, 0x37, |
|
| 17198 |
+ 0xba, 0xb6, 0x6e, 0xf0, 0xaf, 0x05, 0xba, 0xe1, 0x93, 0x15, 0x7a, 0x0a, 0x59, 0x01, 0x95, 0x33, |
|
| 17199 |
+ 0x19, 0xbb, 0xdd, 0xa6, 0x7d, 0x6e, 0xcd, 0x61, 0x89, 0xaf, 0x15, 0x01, 0xa6, 0x7a, 0xd4, 0xbf, |
|
| 17200 |
+ 0x4c, 0x40, 0x3e, 0xd4, 0x8f, 0xca, 0xe2, 0x25, 0xc6, 0x77, 0x75, 0xcb, 0x91, 0x55, 0x7d, 0x1e, |
|
| 17201 |
+ 0x47, 0x49, 0xa8, 0x05, 0x85, 0x51, 0x28, 0x7d, 0x65, 0x3e, 0x17, 0x63, 0x35, 0x8e, 0xca, 0xa2, |
|
| 17202 |
+ 0x0f, 0x21, 0x1f, 0x3c, 0x49, 0x07, 0x11, 0xf6, 0xea, 0x17, 0xec, 0x29, 0x5c, 0xfd, 0x36, 0xc0, |
|
| 17203 |
+ 0x77, 0xa8, 0xe5, 0xf4, 0xe9, 0x21, 0x71, 0xf8, 0x13, 0x2b, 0xab, 0x09, 0x49, 0xe0, 0x45, 0xd9, |
|
| 17204 |
+ 0xe2, 0xa5, 0xbe, 0x98, 0x82, 0xf0, 0xa5, 0x51, 0x34, 0xd5, 0xbf, 0x4d, 0x42, 0x16, 0x53, 0xea, |
|
| 17205 |
+ 0xd7, 0xab, 0xa8, 0x0c, 0x59, 0x19, 0x27, 0xf8, 0xf9, 0x53, 0xcb, 0x9f, 0x9f, 0xad, 0x67, 0x44, |
|
| 17206 |
+ 0x80, 0xc8, 0x18, 0x3c, 0x32, 0x44, 0x22, 0x78, 0xf2, 0xb2, 0x08, 0x8e, 0x1e, 0x42, 0x51, 0x82, |
|
| 17207 |
+ 0xb4, 0x03, 0xdd, 0x3b, 0x10, 0x05, 0x5a, 0x6d, 0xf1, 0xfc, 0x6c, 0x1d, 0x04, 0x72, 0x4b, 0xf7, |
|
| 17208 |
+ 0x0e, 0x30, 0x08, 0x34, 0xfb, 0x8d, 0x9a, 0x50, 0xf8, 0x94, 0x5a, 0x8e, 0xe6, 0xf3, 0x41, 0xc8, |
|
| 17209 |
+ 0xcb, 0xc4, 0xd8, 0x79, 0x9c, 0x0e, 0x55, 0x7e, 0x6f, 0x00, 0x9f, 0x4e, 0x07, 0xdf, 0x84, 0x05, |
|
| 17210 |
+ 0x97, 0x52, 0x5f, 0x84, 0x2d, 0x8b, 0x3a, 0xf2, 0x9e, 0xa2, 0x1c, 0x7b, 0x7d, 0x4d, 0xa9, 0x8f, |
|
| 17211 |
+ 0x25, 0x0e, 0x17, 0xdd, 0x48, 0x0b, 0x3d, 0x84, 0x15, 0x5b, 0xf7, 0x7c, 0x8d, 0xc7, 0x3b, 0x73, |
|
| 17212 |
+ 0xaa, 0x2d, 0xcb, 0xb7, 0x1a, 0x62, 0xbc, 0x0d, 0xce, 0x0a, 0x24, 0xd4, 0x7f, 0x4e, 0x40, 0x81, |
|
| 17213 |
+ 0x0d, 0xc6, 0xda, 0xb7, 0x0c, 0x96, 0xe4, 0x7d, 0xfe, 0xdc, 0xe3, 0x16, 0xa4, 0x0c, 0xcf, 0x95, |
|
| 17214 |
+ 0x4e, 0xe5, 0x87, 0x6f, 0xbd, 0x87, 0x31, 0xa3, 0xa1, 0x4f, 0x20, 0x2b, 0xef, 0x4b, 0x44, 0xda, |
|
| 17215 |
+ 0xa1, 0x5e, 0x9f, 0x8e, 0x4a, 0xdf, 0x48, 0x39, 0xbe, 0x96, 0xa7, 0xd6, 0x89, 0x43, 0x00, 0x47, |
|
| 17216 |
+ 0x49, 0xe8, 0x26, 0x24, 0x0d, 0xe1, 0x2e, 0xf9, 0x41, 0x4b, 0xbd, 0x8d, 0x93, 0x86, 0xa3, 0xfe, |
|
| 17217 |
+ 0x28, 0x01, 0x0b, 0xd3, 0x0d, 0xcf, 0x56, 0xc0, 0x6d, 0xc8, 0x7b, 0xe3, 0x3d, 0x6f, 0xe2, 0xf9, |
|
| 17218 |
+ 0x64, 0x18, 0x3c, 0x1f, 0x87, 0x04, 0xd4, 0x82, 0xbc, 0x6e, 0x0f, 0xa8, 0x6b, 0xf9, 0x07, 0x43, |
|
| 17219 |
+ 0x59, 0x89, 0xc6, 0xa7, 0x0a, 0x51, 0x9d, 0x95, 0x6a, 0x20, 0x82, 0xa7, 0xd2, 0xc1, 0xb9, 0x2f, |
|
| 17220 |
+ 0xbe, 0x31, 0xe0, 0xe7, 0xfe, 0xdb, 0x50, 0xb4, 0xf5, 0x21, 0xbf, 0x40, 0xf2, 0xad, 0xa1, 0x18, |
|
| 17221 |
+ 0x47, 0x1a, 0x17, 0x24, 0xad, 0x6f, 0x0d, 0x89, 0xaa, 0x42, 0x3e, 0x54, 0x86, 0x96, 0xa0, 0x50, |
|
| 17222 |
+ 0x6d, 0xf6, 0xb4, 0x47, 0x8f, 0x9f, 0x6a, 0x9b, 0xf5, 0x1d, 0x65, 0x4e, 0xe6, 0xa6, 0x7f, 0x95, |
|
| 17223 |
+ 0x80, 0x05, 0x19, 0x8e, 0x64, 0xbe, 0xff, 0x0e, 0xcc, 0xbb, 0xfa, 0xbe, 0x1f, 0x54, 0x24, 0x69, |
|
| 17224 |
+ 0xb1, 0xaa, 0x59, 0x84, 0x67, 0x15, 0x09, 0x63, 0xc5, 0x57, 0x24, 0x91, 0x0f, 0x1a, 0x52, 0x57, |
|
| 17225 |
+ 0x7e, 0xd0, 0x90, 0xfe, 0xb9, 0x7c, 0xd0, 0xa0, 0xfe, 0x26, 0xc0, 0x86, 0x65, 0x93, 0xbe, 0xb8, |
|
| 17226 |
+ 0x6b, 0x8a, 0xab, 0x2f, 0x59, 0x0e, 0x27, 0xef, 0x32, 0x83, 0x1c, 0xae, 0xd5, 0xc0, 0x8c, 0xc6, |
|
| 17227 |
+ 0x58, 0x03, 0xcb, 0x94, 0x9b, 0x91, 0xb3, 0x36, 0x19, 0x6b, 0x60, 0x99, 0xe1, 0xcb, 0x5b, 0xfa, |
|
| 17228 |
+ 0xba, 0x97, 0xb7, 0xd3, 0x04, 0x2c, 0xc9, 0xdc, 0x35, 0x0c, 0xbf, 0x5f, 0x85, 0xbc, 0x48, 0x63, |
|
| 17229 |
+ 0xa7, 0x05, 0x1d, 0x7f, 0xc4, 0x17, 0xb8, 0x56, 0x03, 0xe7, 0x04, 0xbb, 0x65, 0xa2, 0x75, 0x28, |
|
| 17230 |
+ 0x48, 0x68, 0xe4, 0xe3, 0x27, 0x10, 0xa4, 0x36, 0x33, 0xff, 0xeb, 0x90, 0xde, 0xb7, 0x6c, 0x22, |
|
| 17231 |
+ 0x17, 0x7a, 0x6c, 0x00, 0x98, 0x3a, 0x60, 0x6b, 0x0e, 0x73, 0x74, 0x2d, 0x17, 0x5c, 0xc6, 0x71, |
|
| 17232 |
+ 0xfb, 0x64, 0xd9, 0x19, 0xb5, 0x4f, 0x54, 0xa0, 0x33, 0xf6, 0x09, 0x1c, 0xb3, 0x4f, 0xb0, 0x85, |
|
| 17233 |
+ 0x7d, 0x12, 0x1a, 0xb5, 0x4f, 0x90, 0x7e, 0x2e, 0xf6, 0x6d, 0xc3, 0xcd, 0x9a, 0xad, 0x1b, 0x87, |
|
| 17234 |
+ 0xb6, 0xe5, 0xf9, 0xc4, 0x8c, 0x46, 0x8c, 0xc7, 0x90, 0xbd, 0x90, 0x74, 0x5e, 0x75, 0x6b, 0x29, |
|
| 17235 |
+ 0x91, 0xea, 0x7f, 0x24, 0xa0, 0xb8, 0x45, 0x74, 0xdb, 0x3f, 0x98, 0x5e, 0x0d, 0xf9, 0xc4, 0xf3, |
|
| 17236 |
+ 0xe5, 0x61, 0xc5, 0x7f, 0xa3, 0x6f, 0x40, 0x2e, 0xcc, 0x49, 0xae, 0x7d, 0x7f, 0x0b, 0xa1, 0xe8, |
|
| 17237 |
+ 0x09, 0xcc, 0xb3, 0x3d, 0x46, 0xc7, 0x41, 0xb1, 0x73, 0xd5, 0xd3, 0x8e, 0x44, 0xb2, 0x43, 0xc6, |
|
| 17238 |
+ 0x25, 0x3c, 0x09, 0xe1, 0x4b, 0x29, 0x83, 0x83, 0x26, 0xfa, 0x45, 0x28, 0xf2, 0x97, 0x89, 0x20, |
|
| 17239 |
+ 0xe7, 0xca, 0x5c, 0xa7, 0xb3, 0x20, 0x1e, 0x17, 0x45, 0xbe, 0xf5, 0xbf, 0x09, 0x58, 0xd9, 0xd1, |
|
| 17240 |
+ 0x27, 0x7b, 0x44, 0x86, 0x0d, 0x62, 0x62, 0x62, 0x50, 0xd7, 0x44, 0xdd, 0x68, 0xb8, 0xb9, 0xe2, |
|
| 17241 |
+ 0xad, 0x32, 0x4e, 0x38, 0x3e, 0xea, 0x04, 0x05, 0x58, 0x32, 0x52, 0x80, 0xad, 0x40, 0xc6, 0xa1, |
|
| 17242 |
+ 0x8e, 0x41, 0x64, 0x2c, 0x12, 0x0d, 0xd5, 0x8a, 0x86, 0x9a, 0x52, 0xf8, 0x8c, 0xc8, 0x1f, 0x01, |
|
| 17243 |
+ 0xdb, 0xd4, 0x0f, 0x7b, 0x43, 0x9f, 0x40, 0xa9, 0xd7, 0xac, 0xe3, 0x66, 0xbf, 0xd6, 0xf9, 0xae, |
|
| 17244 |
+ 0xd6, 0xab, 0x6e, 0xf7, 0xaa, 0x8f, 0x1f, 0x6a, 0xdd, 0xce, 0xf6, 0xf7, 0x1e, 0x3d, 0x79, 0xf8, |
|
| 17245 |
+ 0x0d, 0x25, 0x51, 0x2a, 0x9f, 0x9c, 0x96, 0x6f, 0xb7, 0xab, 0xf5, 0x6d, 0xb1, 0x63, 0xf6, 0xe8, |
|
| 17246 |
+ 0xcb, 0x9e, 0x6e, 0x7b, 0xfa, 0xe3, 0x87, 0x5d, 0x6a, 0x4f, 0x18, 0x86, 0x2d, 0xeb, 0x62, 0xf4, |
|
| 17247 |
+ 0xbc, 0x8a, 0x1e, 0xc3, 0x89, 0x4b, 0x8f, 0xe1, 0xe9, 0x69, 0x9e, 0xbc, 0xe4, 0x34, 0xdf, 0x80, |
|
| 17248 |
+ 0x15, 0xc3, 0xa5, 0x9e, 0xa7, 0xb1, 0xec, 0x9f, 0x98, 0x33, 0xf5, 0xc5, 0x97, 0xce, 0xcf, 0xd6, |
|
| 17249 |
+ 0x97, 0xeb, 0x8c, 0xdf, 0xe3, 0x6c, 0xa9, 0x7e, 0xd9, 0x88, 0x90, 0x78, 0x4f, 0xea, 0x1f, 0xa5, |
|
| 17250 |
+ 0x58, 0x22, 0x65, 0x1d, 0x59, 0x36, 0x19, 0x10, 0x0f, 0x3d, 0x87, 0x25, 0xc3, 0x25, 0x26, 0x4b, |
|
| 17251 |
+ 0xeb, 0x75, 0x3b, 0xfa, 0x11, 0xed, 0x2f, 0xc4, 0xe6, 0x34, 0xa1, 0x60, 0xa5, 0x1e, 0x4a, 0xf5, |
|
| 17252 |
+ 0x46, 0xc4, 0xc0, 0x8b, 0xc6, 0x85, 0x36, 0xfa, 0x14, 0x96, 0x3c, 0x62, 0x5b, 0xce, 0xf8, 0xa5, |
|
| 17253 |
+ 0x66, 0x50, 0xc7, 0x27, 0x2f, 0x83, 0x17, 0xb1, 0xeb, 0xf4, 0xf6, 0x9a, 0xdb, 0x4c, 0xaa, 0x2e, |
|
| 17254 |
+ 0x84, 0x6a, 0xe8, 0xfc, 0x6c, 0x7d, 0xf1, 0x22, 0x0d, 0x2f, 0x4a, 0xcd, 0xb2, 0x5d, 0x6a, 0xc3, |
|
| 17255 |
+ 0xe2, 0x45, 0x6b, 0xd0, 0x8a, 0xdc, 0xfb, 0x3c, 0x84, 0x04, 0x7b, 0x1b, 0xdd, 0x86, 0x9c, 0x4b, |
|
| 17256 |
+ 0x06, 0x96, 0xe7, 0xbb, 0xc2, 0xcd, 0x8c, 0x13, 0x52, 0xd8, 0xce, 0x17, 0x5f, 0x40, 0x95, 0x7e, |
|
| 17257 |
+ 0x1d, 0x66, 0x7a, 0x64, 0x9b, 0xc5, 0xb4, 0x3c, 0x7d, 0x4f, 0xaa, 0xcc, 0xe1, 0xa0, 0xc9, 0xd6, |
|
| 17258 |
+ 0xe0, 0xd8, 0x0b, 0x13, 0x35, 0xfe, 0x9b, 0xd1, 0x78, 0x46, 0x21, 0xbf, 0x07, 0xe3, 0x39, 0x43, |
|
| 17259 |
+ 0xf0, 0x61, 0x69, 0x3a, 0xf2, 0x61, 0xe9, 0x0a, 0x64, 0x6c, 0x72, 0x44, 0x6c, 0x71, 0x96, 0x63, |
|
| 17260 |
+ 0xd1, 0xb8, 0xf7, 0x10, 0x8a, 0xc1, 0x17, 0x8c, 0xfc, 0xcb, 0x89, 0x1c, 0xa4, 0xfb, 0xd5, 0xde, |
|
| 17261 |
+ 0x33, 0x65, 0x0e, 0x01, 0x64, 0xc5, 0xe2, 0x14, 0xaf, 0x75, 0xf5, 0x4e, 0x7b, 0xa3, 0xb5, 0xa9, |
|
| 17262 |
+ 0x24, 0xef, 0xfd, 0x2c, 0x05, 0xf9, 0xf0, 0xbd, 0x88, 0x9d, 0x1d, 0xed, 0xe6, 0x8b, 0x60, 0x75, |
|
| 17263 |
+ 0x87, 0xf4, 0x36, 0x39, 0x46, 0x6f, 0x4f, 0x6f, 0xa1, 0x3e, 0x11, 0x0f, 0xe4, 0x21, 0x3b, 0xb8, |
|
| 17264 |
+ 0x81, 0x7a, 0x17, 0x72, 0xd5, 0x5e, 0xaf, 0xb5, 0xd9, 0x6e, 0x36, 0x94, 0xcf, 0x12, 0xa5, 0x2f, |
|
| 17265 |
+ 0x9d, 0x9c, 0x96, 0x97, 0x43, 0x50, 0xd5, 0x13, 0x8b, 0x8f, 0xa3, 0xea, 0xf5, 0x66, 0xb7, 0xdf, |
|
| 17266 |
+ 0x6c, 0x28, 0xaf, 0x92, 0xb3, 0x28, 0x7e, 0xab, 0xc2, 0x3f, 0xdd, 0xc9, 0x77, 0x71, 0xb3, 0x5b, |
|
| 17267 |
+ 0xc5, 0xac, 0xc3, 0xcf, 0x92, 0xe2, 0x72, 0x6c, 0xda, 0xa3, 0x4b, 0x46, 0xba, 0xcb, 0xfa, 0x5c, |
|
| 17268 |
+ 0x0b, 0xbe, 0x85, 0x7b, 0x95, 0x12, 0x9f, 0x77, 0x4c, 0x1f, 0xbf, 0x88, 0x6e, 0x4e, 0x58, 0x6f, |
|
| 17269 |
+ 0xfc, 0xd5, 0x91, 0xab, 0x49, 0xcd, 0xf4, 0xd6, 0x63, 0xb1, 0x87, 0x69, 0x51, 0x61, 0x1e, 0xef, |
|
| 17270 |
+ 0xb6, 0xdb, 0x0c, 0xf4, 0x2a, 0x3d, 0x33, 0x3a, 0x3c, 0x76, 0x58, 0xc5, 0x8c, 0xee, 0x42, 0x2e, |
|
| 17271 |
+ 0x78, 0x94, 0x54, 0x3e, 0x4b, 0xcf, 0x18, 0x54, 0x0f, 0x5e, 0x54, 0x79, 0x87, 0x5b, 0xbb, 0x7d, |
|
| 17272 |
+ 0xfe, 0xa9, 0xde, 0xab, 0xcc, 0x6c, 0x87, 0x07, 0x63, 0xdf, 0xa4, 0xc7, 0x0e, 0xdb, 0xb3, 0xf2, |
|
| 17273 |
+ 0x1e, 0xee, 0xb3, 0x8c, 0xb8, 0xb4, 0x08, 0x31, 0xf2, 0x12, 0xee, 0x5d, 0xc8, 0xe1, 0xe6, 0x77, |
|
| 17274 |
+ 0xc4, 0x57, 0x7d, 0xaf, 0xb2, 0x33, 0x7a, 0x30, 0xf9, 0x94, 0x18, 0xb2, 0xb7, 0x0e, 0xee, 0x6e, |
|
| 17275 |
+ 0x55, 0xb9, 0xcb, 0x67, 0x51, 0x1d, 0x77, 0x74, 0xa0, 0x3b, 0xc4, 0x9c, 0x7e, 0xe3, 0x12, 0xb2, |
|
| 17276 |
+ 0xee, 0xfd, 0x0a, 0xe4, 0x82, 0xcc, 0x14, 0xad, 0x41, 0xf6, 0x45, 0x07, 0x3f, 0x6b, 0x62, 0x65, |
|
| 17277 |
+ 0x4e, 0xf8, 0x30, 0xe0, 0xbc, 0x10, 0x35, 0x45, 0x19, 0xe6, 0x77, 0xaa, 0xed, 0xea, 0x66, 0x13, |
|
| 17278 |
+ 0x07, 0x57, 0xe4, 0x01, 0x40, 0xa6, 0x57, 0x25, 0x45, 0x76, 0x10, 0xea, 0xac, 0xad, 0xfe, 0xf0, |
|
| 17279 |
+ 0x27, 0x6b, 0x73, 0x3f, 0xfe, 0xc9, 0xda, 0xdc, 0xab, 0xf3, 0xb5, 0xc4, 0x0f, 0xcf, 0xd7, 0x12, |
|
| 17280 |
+ 0xff, 0x70, 0xbe, 0x96, 0xf8, 0xf7, 0xf3, 0xb5, 0xc4, 0x5e, 0x96, 0x1f, 0x02, 0x4f, 0xfe, 0x2f, |
|
| 17281 |
+ 0x00, 0x00, 0xff, 0xff, 0x4b, 0xdb, 0xdc, 0xec, 0xf0, 0x31, 0x00, 0x00, |
|
| 17275 | 17282 |
} |
| ... | ... |
@@ -214,6 +214,18 @@ message Mount {
|
| 214 | 214 |
// ReadOnly should be set to true if the mount should not be writable. |
| 215 | 215 |
bool readonly = 4 [(gogoproto.customname) = "ReadOnly"]; |
| 216 | 216 |
|
| 217 |
+ // Consistency indicates the tolerable level of file system consistency |
|
| 218 |
+ enum Consistency {
|
|
| 219 |
+ option (gogoproto.goproto_enum_prefix) = false; |
|
| 220 |
+ option (gogoproto.enum_customname) = "MountConsistency"; |
|
| 221 |
+ |
|
| 222 |
+ DEFAULT = 0 [(gogoproto.enumvalue_customname) = "MountConsistencyDefault"]; |
|
| 223 |
+ CONSISTENT = 1 [(gogoproto.enumvalue_customname) = "MountConsistencyFull"]; |
|
| 224 |
+ CACHED = 2 [(gogoproto.enumvalue_customname) = "MountConsistencyCached"]; |
|
| 225 |
+ DELEGATED = 3 [(gogoproto.enumvalue_customname) = "MountConsistencyDelegated"]; |
|
| 226 |
+ } |
|
| 227 |
+ Consistency consistency = 8; |
|
| 228 |
+ |
|
| 217 | 229 |
// BindOptions specifies options that are specific to a bind mount. |
| 218 | 230 |
message BindOptions {
|
| 219 | 231 |
enum Propagation {
|
| ... | ... |
@@ -48,8 +48,10 @@ type cnmNetworkAllocator struct {
|
| 48 | 48 |
tasks map[string]struct{}
|
| 49 | 49 |
|
| 50 | 50 |
// Allocator state to indicate if allocation has been |
| 51 |
- // successfully completed for this node. |
|
| 52 |
- nodes map[string]struct{}
|
|
| 51 |
+ // successfully completed for this node on this network. |
|
| 52 |
+ // outer map key: node id |
|
| 53 |
+ // inner map key: network id |
|
| 54 |
+ nodes map[string]map[string]struct{}
|
|
| 53 | 55 |
} |
| 54 | 56 |
|
| 55 | 57 |
// Local in-memory state related to network that need to be tracked by cnmNetworkAllocator |
| ... | ... |
@@ -89,7 +91,7 @@ func New(pg plugingetter.PluginGetter) (networkallocator.NetworkAllocator, error |
| 89 | 89 |
networks: make(map[string]*network), |
| 90 | 90 |
services: make(map[string]struct{}),
|
| 91 | 91 |
tasks: make(map[string]struct{}),
|
| 92 |
- nodes: make(map[string]struct{}),
|
|
| 92 |
+ nodes: make(map[string]map[string]struct{}),
|
|
| 93 | 93 |
} |
| 94 | 94 |
|
| 95 | 95 |
// There are no driver configurations and notification |
| ... | ... |
@@ -430,81 +432,100 @@ func (na *cnmNetworkAllocator) IsServiceAllocated(s *api.Service, flags ...func( |
| 430 | 430 |
return true |
| 431 | 431 |
} |
| 432 | 432 |
|
| 433 |
-// IsNodeAllocated returns if the passed node has its network resources allocated or not. |
|
| 434 |
-func (na *cnmNetworkAllocator) IsNodeAllocated(node *api.Node) bool {
|
|
| 433 |
+// AllocateTask allocates all the endpoint resources for all the |
|
| 434 |
+// networks that a task is attached to. |
|
| 435 |
+func (na *cnmNetworkAllocator) AllocateTask(t *api.Task) error {
|
|
| 436 |
+ for i, nAttach := range t.Networks {
|
|
| 437 |
+ if localNet := na.getNetwork(nAttach.Network.ID); localNet != nil && localNet.isNodeLocal {
|
|
| 438 |
+ continue |
|
| 439 |
+ } |
|
| 440 |
+ if err := na.allocateNetworkIPs(nAttach); err != nil {
|
|
| 441 |
+ if err := na.releaseEndpoints(t.Networks[:i]); err != nil {
|
|
| 442 |
+ log.G(context.TODO()).WithError(err).Errorf("failed to release IP addresses while rolling back allocation for task %s network %s", t.ID, nAttach.Network.ID)
|
|
| 443 |
+ } |
|
| 444 |
+ return errors.Wrapf(err, "failed to allocate network IP for task %s network %s", t.ID, nAttach.Network.ID) |
|
| 445 |
+ } |
|
| 446 |
+ } |
|
| 447 |
+ |
|
| 448 |
+ na.tasks[t.ID] = struct{}{}
|
|
| 449 |
+ |
|
| 450 |
+ return nil |
|
| 451 |
+} |
|
| 452 |
+ |
|
| 453 |
+// DeallocateTask releases all the endpoint resources for all the |
|
| 454 |
+// networks that a task is attached to. |
|
| 455 |
+func (na *cnmNetworkAllocator) DeallocateTask(t *api.Task) error {
|
|
| 456 |
+ delete(na.tasks, t.ID) |
|
| 457 |
+ return na.releaseEndpoints(t.Networks) |
|
| 458 |
+} |
|
| 459 |
+ |
|
| 460 |
+// IsLBAttachmentAllocated returns if the passed node and network has resources allocated or not. |
|
| 461 |
+func (na *cnmNetworkAllocator) IsLBAttachmentAllocated(node *api.Node, networkAttachment *api.NetworkAttachment) bool {
|
|
| 462 |
+ if node == nil {
|
|
| 463 |
+ return false |
|
| 464 |
+ } |
|
| 465 |
+ |
|
| 466 |
+ if networkAttachment == nil {
|
|
| 467 |
+ return false |
|
| 468 |
+ } |
|
| 469 |
+ |
|
| 435 | 470 |
// If the node is not found in the allocated set, then it is |
| 436 | 471 |
// not allocated. |
| 437 | 472 |
if _, ok := na.nodes[node.ID]; !ok {
|
| 438 | 473 |
return false |
| 439 | 474 |
} |
| 440 | 475 |
|
| 441 |
- // If no attachment, not allocated. |
|
| 442 |
- if node.Attachment == nil {
|
|
| 476 |
+ // If the nework is not found in the allocated set, then it is |
|
| 477 |
+ // not allocated. |
|
| 478 |
+ if _, ok := na.nodes[node.ID][networkAttachment.Network.ID]; !ok {
|
|
| 443 | 479 |
return false |
| 444 | 480 |
} |
| 445 | 481 |
|
| 446 | 482 |
// If the network is not allocated, the node cannot be allocated. |
| 447 |
- localNet, ok := na.networks[node.Attachment.Network.ID] |
|
| 483 |
+ localNet, ok := na.networks[networkAttachment.Network.ID] |
|
| 448 | 484 |
if !ok {
|
| 449 | 485 |
return false |
| 450 | 486 |
} |
| 451 | 487 |
|
| 452 | 488 |
// Addresses empty, not allocated. |
| 453 |
- if len(node.Attachment.Addresses) == 0 {
|
|
| 489 |
+ if len(networkAttachment.Addresses) == 0 {
|
|
| 454 | 490 |
return false |
| 455 | 491 |
} |
| 456 | 492 |
|
| 457 | 493 |
// The allocated IP address not found in local endpoint state. Not allocated. |
| 458 |
- if _, ok := localNet.endpoints[node.Attachment.Addresses[0]]; !ok {
|
|
| 494 |
+ if _, ok := localNet.endpoints[networkAttachment.Addresses[0]]; !ok {
|
|
| 459 | 495 |
return false |
| 460 | 496 |
} |
| 461 | 497 |
|
| 462 | 498 |
return true |
| 463 | 499 |
} |
| 464 | 500 |
|
| 465 |
-// AllocateNode allocates the IP addresses for the network to which |
|
| 466 |
-// the node is attached. |
|
| 467 |
-func (na *cnmNetworkAllocator) AllocateNode(node *api.Node) error {
|
|
| 468 |
- if err := na.allocateNetworkIPs(node.Attachment); err != nil {
|
|
| 501 |
+// AllocateLBAttachment allocates the IP addresses for a LB in a network |
|
| 502 |
+// on a given node |
|
| 503 |
+func (na *cnmNetworkAllocator) AllocateLBAttachment(node *api.Node, networkAttachment *api.NetworkAttachment) error {
|
|
| 504 |
+ |
|
| 505 |
+ if err := na.allocateNetworkIPs(networkAttachment); err != nil {
|
|
| 469 | 506 |
return err |
| 470 | 507 |
} |
| 471 | 508 |
|
| 472 |
- na.nodes[node.ID] = struct{}{}
|
|
| 509 |
+ if na.nodes[node.ID] == nil {
|
|
| 510 |
+ na.nodes[node.ID] = make(map[string]struct{})
|
|
| 511 |
+ } |
|
| 512 |
+ na.nodes[node.ID][networkAttachment.Network.ID] = struct{}{}
|
|
| 513 |
+ |
|
| 473 | 514 |
return nil |
| 474 | 515 |
} |
| 475 | 516 |
|
| 476 |
-// DeallocateNode deallocates the IP addresses for the network to |
|
| 517 |
+// DeallocateLBAttachment deallocates the IP addresses for a LB in a network to |
|
| 477 | 518 |
// which the node is attached. |
| 478 |
-func (na *cnmNetworkAllocator) DeallocateNode(node *api.Node) error {
|
|
| 479 |
- delete(na.nodes, node.ID) |
|
| 480 |
- return na.releaseEndpoints([]*api.NetworkAttachment{node.Attachment})
|
|
| 481 |
-} |
|
| 519 |
+func (na *cnmNetworkAllocator) DeallocateLBAttachment(node *api.Node, networkAttachment *api.NetworkAttachment) error {
|
|
| 482 | 520 |
|
| 483 |
-// AllocateTask allocates all the endpoint resources for all the |
|
| 484 |
-// networks that a task is attached to. |
|
| 485 |
-func (na *cnmNetworkAllocator) AllocateTask(t *api.Task) error {
|
|
| 486 |
- for i, nAttach := range t.Networks {
|
|
| 487 |
- if localNet := na.getNetwork(nAttach.Network.ID); localNet != nil && localNet.isNodeLocal {
|
|
| 488 |
- continue |
|
| 489 |
- } |
|
| 490 |
- if err := na.allocateNetworkIPs(nAttach); err != nil {
|
|
| 491 |
- if err := na.releaseEndpoints(t.Networks[:i]); err != nil {
|
|
| 492 |
- log.G(context.TODO()).WithError(err).Errorf("Failed to release IP addresses while rolling back allocation for task %s network %s", t.ID, nAttach.Network.ID)
|
|
| 493 |
- } |
|
| 494 |
- return errors.Wrapf(err, "failed to allocate network IP for task %s network %s", t.ID, nAttach.Network.ID) |
|
| 495 |
- } |
|
| 521 |
+ delete(na.nodes[node.ID], networkAttachment.Network.ID) |
|
| 522 |
+ if len(na.nodes[node.ID]) == 0 {
|
|
| 523 |
+ delete(na.nodes, node.ID) |
|
| 496 | 524 |
} |
| 497 | 525 |
|
| 498 |
- na.tasks[t.ID] = struct{}{}
|
|
| 499 |
- |
|
| 500 |
- return nil |
|
| 501 |
-} |
|
| 502 |
- |
|
| 503 |
-// DeallocateTask releases all the endpoint resources for all the |
|
| 504 |
-// networks that a task is attached to. |
|
| 505 |
-func (na *cnmNetworkAllocator) DeallocateTask(t *api.Task) error {
|
|
| 506 |
- delete(na.tasks, t.ID) |
|
| 507 |
- return na.releaseEndpoints(t.Networks) |
|
| 526 |
+ return na.releaseEndpoints([]*api.NetworkAttachment{networkAttachment})
|
|
| 508 | 527 |
} |
| 509 | 528 |
|
| 510 | 529 |
func (na *cnmNetworkAllocator) releaseEndpoints(networks []*api.NetworkAttachment) error {
|
| ... | ... |
@@ -154,11 +154,10 @@ func (a *Allocator) doNetworkInit(ctx context.Context) (err error) {
|
| 154 | 154 |
|
| 155 | 155 |
// First, allocate objects that already have addresses associated with |
| 156 | 156 |
// them, to reserve these IP addresses in internal state. |
| 157 |
- if nc.ingressNetwork != nil {
|
|
| 158 |
- if err := a.allocateNodes(ctx, true); err != nil {
|
|
| 159 |
- return err |
|
| 160 |
- } |
|
| 157 |
+ if err := a.allocateNodes(ctx, true); err != nil {
|
|
| 158 |
+ return err |
|
| 161 | 159 |
} |
| 160 |
+ |
|
| 162 | 161 |
if err := a.allocateServices(ctx, true); err != nil {
|
| 163 | 162 |
return err |
| 164 | 163 |
} |
| ... | ... |
@@ -166,12 +165,10 @@ func (a *Allocator) doNetworkInit(ctx context.Context) (err error) {
|
| 166 | 166 |
return err |
| 167 | 167 |
} |
| 168 | 168 |
|
| 169 |
- // Now allocate objects that don't have addresses yet. |
|
| 170 |
- if nc.ingressNetwork != nil {
|
|
| 171 |
- if err := a.allocateNodes(ctx, false); err != nil {
|
|
| 172 |
- return err |
|
| 173 |
- } |
|
| 169 |
+ if err := a.allocateNodes(ctx, false); err != nil {
|
|
| 170 |
+ return err |
|
| 174 | 171 |
} |
| 172 |
+ |
|
| 175 | 173 |
if err := a.allocateServices(ctx, false); err != nil {
|
| 176 | 174 |
return err |
| 177 | 175 |
} |
| ... | ... |
@@ -208,22 +205,22 @@ func (a *Allocator) doNetworkAlloc(ctx context.Context, ev events.Event) {
|
| 208 | 208 |
}); err != nil {
|
| 209 | 209 |
log.G(ctx).WithError(err).Errorf("Failed to commit allocation for network %s", n.ID)
|
| 210 | 210 |
} |
| 211 |
- |
|
| 212 | 211 |
if IsIngressNetwork(n) {
|
| 213 | 212 |
nc.ingressNetwork = n |
| 214 |
- err := a.allocateNodes(ctx, false) |
|
| 215 |
- if err != nil {
|
|
| 216 |
- log.G(ctx).WithError(err).Error(err) |
|
| 217 |
- } |
|
| 213 |
+ } |
|
| 214 |
+ err := a.allocateNodes(ctx, false) |
|
| 215 |
+ if err != nil {
|
|
| 216 |
+ log.G(ctx).WithError(err).Error(err) |
|
| 218 | 217 |
} |
| 219 | 218 |
case api.EventDeleteNetwork: |
| 220 | 219 |
n := v.Network.Copy() |
| 221 | 220 |
|
| 222 | 221 |
if IsIngressNetwork(n) && nc.ingressNetwork != nil && nc.ingressNetwork.ID == n.ID {
|
| 223 | 222 |
nc.ingressNetwork = nil |
| 224 |
- if err := a.deallocateNodes(ctx); err != nil {
|
|
| 225 |
- log.G(ctx).WithError(err).Error(err) |
|
| 226 |
- } |
|
| 223 |
+ } |
|
| 224 |
+ |
|
| 225 |
+ if err := a.deallocateNodeAttachments(ctx, n.ID); err != nil {
|
|
| 226 |
+ log.G(ctx).WithError(err).Error(err) |
|
| 227 | 227 |
} |
| 228 | 228 |
|
| 229 | 229 |
// The assumption here is that all dependent objects |
| ... | ... |
@@ -361,33 +358,67 @@ func (a *Allocator) doNodeAlloc(ctx context.Context, ev events.Event) {
|
| 361 | 361 |
nc := a.netCtx |
| 362 | 362 |
|
| 363 | 363 |
if isDelete {
|
| 364 |
- if nc.nwkAllocator.IsNodeAllocated(node) {
|
|
| 365 |
- if err := nc.nwkAllocator.DeallocateNode(node); err != nil {
|
|
| 366 |
- log.G(ctx).WithError(err).Errorf("Failed freeing network resources for node %s", node.ID)
|
|
| 367 |
- } else {
|
|
| 368 |
- nc.somethingWasDeallocated = true |
|
| 364 |
+ if err := a.deallocateNode(node); err != nil {
|
|
| 365 |
+ log.G(ctx).WithError(err).Errorf("Failed freeing network resources for node %s", node.ID)
|
|
| 366 |
+ } else {
|
|
| 367 |
+ nc.somethingWasDeallocated = true |
|
| 368 |
+ } |
|
| 369 |
+ } else {
|
|
| 370 |
+ allocatedNetworks, err := a.getAllocatedNetworks() |
|
| 371 |
+ if err != nil {
|
|
| 372 |
+ log.G(ctx).WithError(err).Errorf("Error listing allocated networks in network %s", node.ID)
|
|
| 373 |
+ } |
|
| 374 |
+ |
|
| 375 |
+ isAllocated := a.allocateNode(ctx, node, false, allocatedNetworks) |
|
| 376 |
+ |
|
| 377 |
+ if isAllocated {
|
|
| 378 |
+ if err := a.store.Batch(func(batch *store.Batch) error {
|
|
| 379 |
+ return a.commitAllocatedNode(ctx, batch, node) |
|
| 380 |
+ }); err != nil {
|
|
| 381 |
+ log.G(ctx).WithError(err).Errorf("Failed to commit allocation of network resources for node %s", node.ID)
|
|
| 369 | 382 |
} |
| 370 | 383 |
} |
| 371 |
- return |
|
| 372 | 384 |
} |
| 385 |
+} |
|
| 373 | 386 |
|
| 374 |
- if !nc.nwkAllocator.IsNodeAllocated(node) && nc.ingressNetwork != nil {
|
|
| 375 |
- if node.Attachment == nil {
|
|
| 376 |
- node.Attachment = &api.NetworkAttachment{}
|
|
| 377 |
- } |
|
| 387 |
+func isOverlayNetwork(n *api.Network) bool {
|
|
| 388 |
+ if n.DriverState != nil && n.DriverState.Name == "overlay" {
|
|
| 389 |
+ return true |
|
| 390 |
+ } |
|
| 378 | 391 |
|
| 379 |
- node.Attachment.Network = nc.ingressNetwork.Copy() |
|
| 380 |
- if err := a.allocateNode(ctx, node); err != nil {
|
|
| 381 |
- log.G(ctx).WithError(err).Errorf("Failed to allocate network resources for node %s", node.ID)
|
|
| 382 |
- return |
|
| 383 |
- } |
|
| 392 |
+ if n.Spec.DriverConfig != nil && n.Spec.DriverConfig.Name == "overlay" {
|
|
| 393 |
+ return true |
|
| 394 |
+ } |
|
| 384 | 395 |
|
| 385 |
- if err := a.store.Batch(func(batch *store.Batch) error {
|
|
| 386 |
- return a.commitAllocatedNode(ctx, batch, node) |
|
| 387 |
- }); err != nil {
|
|
| 388 |
- log.G(ctx).WithError(err).Errorf("Failed to commit allocation of network resources for node %s", node.ID)
|
|
| 396 |
+ return false |
|
| 397 |
+} |
|
| 398 |
+ |
|
| 399 |
+func (a *Allocator) getAllocatedNetworks() ([]*api.Network, error) {
|
|
| 400 |
+ var ( |
|
| 401 |
+ err error |
|
| 402 |
+ nc = a.netCtx |
|
| 403 |
+ na = nc.nwkAllocator |
|
| 404 |
+ allocatedNetworks []*api.Network |
|
| 405 |
+ ) |
|
| 406 |
+ |
|
| 407 |
+ // Find allocated networks |
|
| 408 |
+ var networks []*api.Network |
|
| 409 |
+ a.store.View(func(tx store.ReadTx) {
|
|
| 410 |
+ networks, err = store.FindNetworks(tx, store.All) |
|
| 411 |
+ }) |
|
| 412 |
+ |
|
| 413 |
+ if err != nil {
|
|
| 414 |
+ return nil, errors.Wrap(err, "error listing all networks in store while trying to allocate during init") |
|
| 415 |
+ } |
|
| 416 |
+ |
|
| 417 |
+ for _, n := range networks {
|
|
| 418 |
+ |
|
| 419 |
+ if isOverlayNetwork(n) && na.IsAllocated(n) {
|
|
| 420 |
+ allocatedNetworks = append(allocatedNetworks, n) |
|
| 389 | 421 |
} |
| 390 | 422 |
} |
| 423 |
+ |
|
| 424 |
+ return allocatedNetworks, nil |
|
| 391 | 425 |
} |
| 392 | 426 |
|
| 393 | 427 |
func (a *Allocator) allocateNodes(ctx context.Context, existingAddressesOnly bool) error {
|
| ... | ... |
@@ -396,7 +427,6 @@ func (a *Allocator) allocateNodes(ctx context.Context, existingAddressesOnly boo |
| 396 | 396 |
allocatedNodes []*api.Node |
| 397 | 397 |
nodes []*api.Node |
| 398 | 398 |
err error |
| 399 |
- nc = a.netCtx |
|
| 400 | 399 |
) |
| 401 | 400 |
|
| 402 | 401 |
a.store.View(func(tx store.ReadTx) {
|
| ... | ... |
@@ -406,26 +436,16 @@ func (a *Allocator) allocateNodes(ctx context.Context, existingAddressesOnly boo |
| 406 | 406 |
return errors.Wrap(err, "error listing all nodes in store while trying to allocate network resources") |
| 407 | 407 |
} |
| 408 | 408 |
|
| 409 |
- for _, node := range nodes {
|
|
| 410 |
- if nc.nwkAllocator.IsNodeAllocated(node) {
|
|
| 411 |
- continue |
|
| 412 |
- } |
|
| 413 |
- |
|
| 414 |
- if node.Attachment == nil {
|
|
| 415 |
- node.Attachment = &api.NetworkAttachment{}
|
|
| 416 |
- } |
|
| 417 |
- |
|
| 418 |
- if existingAddressesOnly && len(node.Attachment.Addresses) == 0 {
|
|
| 419 |
- continue |
|
| 420 |
- } |
|
| 409 |
+ allocatedNetworks, err := a.getAllocatedNetworks() |
|
| 410 |
+ if err != nil {
|
|
| 411 |
+ return errors.Wrap(err, "error listing all nodes in store while trying to allocate network resources") |
|
| 412 |
+ } |
|
| 421 | 413 |
|
| 422 |
- node.Attachment.Network = nc.ingressNetwork.Copy() |
|
| 423 |
- if err := a.allocateNode(ctx, node); err != nil {
|
|
| 424 |
- log.G(ctx).WithError(err).Errorf("Failed to allocate network resources for node %s", node.ID)
|
|
| 425 |
- continue |
|
| 414 |
+ for _, node := range nodes {
|
|
| 415 |
+ isAllocated := a.allocateNode(ctx, node, existingAddressesOnly, allocatedNetworks) |
|
| 416 |
+ if isAllocated {
|
|
| 417 |
+ allocatedNodes = append(allocatedNodes, node) |
|
| 426 | 418 |
} |
| 427 |
- |
|
| 428 |
- allocatedNodes = append(allocatedNodes, node) |
|
| 429 | 419 |
} |
| 430 | 420 |
|
| 431 | 421 |
if err := a.store.Batch(func(batch *store.Batch) error {
|
| ... | ... |
@@ -457,20 +477,89 @@ func (a *Allocator) deallocateNodes(ctx context.Context) error {
|
| 457 | 457 |
} |
| 458 | 458 |
|
| 459 | 459 |
for _, node := range nodes {
|
| 460 |
- if nc.nwkAllocator.IsNodeAllocated(node) {
|
|
| 461 |
- if err := nc.nwkAllocator.DeallocateNode(node); err != nil {
|
|
| 462 |
- log.G(ctx).WithError(err).Errorf("Failed freeing network resources for node %s", node.ID)
|
|
| 463 |
- } else {
|
|
| 464 |
- nc.somethingWasDeallocated = true |
|
| 460 |
+ if err := a.deallocateNode(node); err != nil {
|
|
| 461 |
+ log.G(ctx).WithError(err).Errorf("Failed freeing network resources for node %s", node.ID)
|
|
| 462 |
+ } else {
|
|
| 463 |
+ nc.somethingWasDeallocated = true |
|
| 464 |
+ } |
|
| 465 |
+ if err := a.store.Batch(func(batch *store.Batch) error {
|
|
| 466 |
+ return a.commitAllocatedNode(ctx, batch, node) |
|
| 467 |
+ }); err != nil {
|
|
| 468 |
+ log.G(ctx).WithError(err).Errorf("Failed to commit deallocation of network resources for node %s", node.ID)
|
|
| 469 |
+ } |
|
| 470 |
+ } |
|
| 471 |
+ |
|
| 472 |
+ return nil |
|
| 473 |
+} |
|
| 474 |
+ |
|
| 475 |
+func (a *Allocator) deallocateNodeAttachments(ctx context.Context, nid string) error {
|
|
| 476 |
+ var ( |
|
| 477 |
+ nodes []*api.Node |
|
| 478 |
+ nc = a.netCtx |
|
| 479 |
+ err error |
|
| 480 |
+ ) |
|
| 481 |
+ |
|
| 482 |
+ a.store.View(func(tx store.ReadTx) {
|
|
| 483 |
+ nodes, err = store.FindNodes(tx, store.All) |
|
| 484 |
+ }) |
|
| 485 |
+ if err != nil {
|
|
| 486 |
+ return fmt.Errorf("error listing all nodes in store while trying to free network resources")
|
|
| 487 |
+ } |
|
| 488 |
+ |
|
| 489 |
+ for _, node := range nodes {
|
|
| 490 |
+ |
|
| 491 |
+ var networkAttachment *api.NetworkAttachment |
|
| 492 |
+ var naIndex int |
|
| 493 |
+ for index, na := range node.LbAttachments {
|
|
| 494 |
+ if na.Network.ID == nid {
|
|
| 495 |
+ networkAttachment = na |
|
| 496 |
+ naIndex = index |
|
| 497 |
+ break |
|
| 465 | 498 |
} |
| 466 |
- node.Attachment = nil |
|
| 467 |
- if err := a.store.Batch(func(batch *store.Batch) error {
|
|
| 468 |
- return a.commitAllocatedNode(ctx, batch, node) |
|
| 469 |
- }); err != nil {
|
|
| 499 |
+ } |
|
| 500 |
+ |
|
| 501 |
+ if networkAttachment == nil {
|
|
| 502 |
+ log.G(ctx).Errorf("Failed to find network %s on node %s", nid, node.ID)
|
|
| 503 |
+ continue |
|
| 504 |
+ } |
|
| 505 |
+ |
|
| 506 |
+ if nc.nwkAllocator.IsLBAttachmentAllocated(node, networkAttachment) {
|
|
| 507 |
+ if err := nc.nwkAllocator.DeallocateLBAttachment(node, networkAttachment); err != nil {
|
|
| 470 | 508 |
log.G(ctx).WithError(err).Errorf("Failed to commit deallocation of network resources for node %s", node.ID)
|
| 509 |
+ } else {
|
|
| 510 |
+ |
|
| 511 |
+ // Delete the lbattachment |
|
| 512 |
+ node.LbAttachments[naIndex] = node.LbAttachments[len(node.LbAttachments)-1] |
|
| 513 |
+ node.LbAttachments[len(node.LbAttachments)-1] = nil |
|
| 514 |
+ node.LbAttachments = node.LbAttachments[:len(node.LbAttachments)-1] |
|
| 515 |
+ |
|
| 516 |
+ if err := a.store.Batch(func(batch *store.Batch) error {
|
|
| 517 |
+ return a.commitAllocatedNode(ctx, batch, node) |
|
| 518 |
+ }); err != nil {
|
|
| 519 |
+ log.G(ctx).WithError(err).Errorf("Failed to commit deallocation of network resources for node %s", node.ID)
|
|
| 520 |
+ } |
|
| 521 |
+ |
|
| 471 | 522 |
} |
| 472 | 523 |
} |
| 524 |
+ |
|
| 473 | 525 |
} |
| 526 |
+ return nil |
|
| 527 |
+} |
|
| 528 |
+ |
|
| 529 |
+func (a *Allocator) deallocateNode(node *api.Node) error {
|
|
| 530 |
+ var ( |
|
| 531 |
+ nc = a.netCtx |
|
| 532 |
+ ) |
|
| 533 |
+ |
|
| 534 |
+ for _, na := range node.LbAttachments {
|
|
| 535 |
+ if nc.nwkAllocator.IsLBAttachmentAllocated(node, na) {
|
|
| 536 |
+ if err := nc.nwkAllocator.DeallocateLBAttachment(node, na); err != nil {
|
|
| 537 |
+ return err |
|
| 538 |
+ } |
|
| 539 |
+ } |
|
| 540 |
+ } |
|
| 541 |
+ |
|
| 542 |
+ node.LbAttachments = nil |
|
| 474 | 543 |
|
| 475 | 544 |
return nil |
| 476 | 545 |
} |
| ... | ... |
@@ -758,8 +847,48 @@ func (a *Allocator) doTaskAlloc(ctx context.Context, ev events.Event) {
|
| 758 | 758 |
nc.pendingTasks[t.ID] = t |
| 759 | 759 |
} |
| 760 | 760 |
|
| 761 |
-func (a *Allocator) allocateNode(ctx context.Context, node *api.Node) error {
|
|
| 762 |
- return a.netCtx.nwkAllocator.AllocateNode(node) |
|
| 761 |
+func (a *Allocator) allocateNode(ctx context.Context, node *api.Node, existingAddressesOnly bool, networks []*api.Network) bool {
|
|
| 762 |
+ var allocated bool |
|
| 763 |
+ |
|
| 764 |
+ nc := a.netCtx |
|
| 765 |
+ |
|
| 766 |
+ for _, network := range networks {
|
|
| 767 |
+ |
|
| 768 |
+ var lbAttachment *api.NetworkAttachment |
|
| 769 |
+ for _, na := range node.LbAttachments {
|
|
| 770 |
+ if na.Network != nil && na.Network.ID == network.ID {
|
|
| 771 |
+ lbAttachment = na |
|
| 772 |
+ break |
|
| 773 |
+ } |
|
| 774 |
+ } |
|
| 775 |
+ |
|
| 776 |
+ if lbAttachment != nil {
|
|
| 777 |
+ if nc.nwkAllocator.IsLBAttachmentAllocated(node, lbAttachment) {
|
|
| 778 |
+ continue |
|
| 779 |
+ } |
|
| 780 |
+ } |
|
| 781 |
+ |
|
| 782 |
+ if lbAttachment == nil {
|
|
| 783 |
+ lbAttachment = &api.NetworkAttachment{}
|
|
| 784 |
+ node.LbAttachments = append(node.LbAttachments, lbAttachment) |
|
| 785 |
+ } |
|
| 786 |
+ |
|
| 787 |
+ if existingAddressesOnly && len(lbAttachment.Addresses) == 0 {
|
|
| 788 |
+ continue |
|
| 789 |
+ } |
|
| 790 |
+ |
|
| 791 |
+ lbAttachment.Network = network.Copy() |
|
| 792 |
+ if err := a.netCtx.nwkAllocator.AllocateLBAttachment(node, lbAttachment); err != nil {
|
|
| 793 |
+ log.G(ctx).WithError(err).Errorf("Failed to allocate network resources for node %s", node.ID)
|
|
| 794 |
+ // TODO: Should we add a unallocatedNode and retry allocating resources like we do for network, tasks, services? |
|
| 795 |
+ // right now, we will only retry allocating network resources for the node when the node is updated. |
|
| 796 |
+ continue |
|
| 797 |
+ } |
|
| 798 |
+ |
|
| 799 |
+ allocated = true |
|
| 800 |
+ } |
|
| 801 |
+ return allocated |
|
| 802 |
+ |
|
| 763 | 803 |
} |
| 764 | 804 |
|
| 765 | 805 |
func (a *Allocator) commitAllocatedNode(ctx context.Context, batch *store.Batch, node *api.Node) error {
|
| ... | ... |
@@ -768,13 +897,13 @@ func (a *Allocator) commitAllocatedNode(ctx context.Context, batch *store.Batch, |
| 768 | 768 |
|
| 769 | 769 |
if err == store.ErrSequenceConflict {
|
| 770 | 770 |
storeNode := store.GetNode(tx, node.ID) |
| 771 |
- storeNode.Attachment = node.Attachment.Copy() |
|
| 771 |
+ storeNode.LbAttachments = node.LbAttachments |
|
| 772 | 772 |
err = store.UpdateNode(tx, storeNode) |
| 773 | 773 |
} |
| 774 | 774 |
|
| 775 | 775 |
return errors.Wrapf(err, "failed updating state in store transaction for node %s", node.ID) |
| 776 | 776 |
}); err != nil {
|
| 777 |
- if err := a.netCtx.nwkAllocator.DeallocateNode(node); err != nil {
|
|
| 777 |
+ if err := a.deallocateNode(node); err != nil {
|
|
| 778 | 778 |
log.G(ctx).WithError(err).Errorf("failed rolling back allocation of node %s", node.ID)
|
| 779 | 779 |
} |
| 780 | 780 |
|
| ... | ... |
@@ -66,22 +66,6 @@ type NetworkAllocator interface {
|
| 66 | 66 |
HostPublishPortsNeedUpdate(s *api.Service) bool |
| 67 | 67 |
|
| 68 | 68 |
// |
| 69 |
- // Node Allocation |
|
| 70 |
- // |
|
| 71 |
- |
|
| 72 |
- // IsNodeAllocated returns if the passed node has its network |
|
| 73 |
- // resources allocated or not. |
|
| 74 |
- IsNodeAllocated(node *api.Node) bool |
|
| 75 |
- |
|
| 76 |
- // AllocateNode allocates the IP addresses for the network to which |
|
| 77 |
- // the node is attached. |
|
| 78 |
- AllocateNode(node *api.Node) error |
|
| 79 |
- |
|
| 80 |
- // DeallocateNode deallocates the IP addresses for the network to |
|
| 81 |
- // which the node is attached. |
|
| 82 |
- DeallocateNode(node *api.Node) error |
|
| 83 |
- |
|
| 84 |
- // |
|
| 85 | 69 |
// Task Allocation |
| 86 | 70 |
// |
| 87 | 71 |
|
| ... | ... |
@@ -96,6 +80,15 @@ type NetworkAllocator interface {
|
| 96 | 96 |
// DeallocateTask releases all the endpoint resources for all the |
| 97 | 97 |
// networks that a task is attached to. |
| 98 | 98 |
DeallocateTask(t *api.Task) error |
| 99 |
+ |
|
| 100 |
+ // AllocateLBAttachment Allocates a load balancer endpoint for the node |
|
| 101 |
+ AllocateLBAttachment(node *api.Node, networkAttachment *api.NetworkAttachment) error |
|
| 102 |
+ |
|
| 103 |
+ // DeallocateLBAttachment Deallocates a load balancer endpoint for the node |
|
| 104 |
+ DeallocateLBAttachment(node *api.Node, networkAttachment *api.NetworkAttachment) error |
|
| 105 |
+ |
|
| 106 |
+ //IsLBAttachmentAllocated If lb endpoint is allocated on the node |
|
| 107 |
+ IsLBAttachmentAllocated(node *api.Node, networkAttachment *api.NetworkAttachment) bool |
|
| 99 | 108 |
} |
| 100 | 109 |
|
| 101 | 110 |
// IsIngressNetwork check if the network is an ingress network |