From ae9ce6e12965ba4ff5dfd05f2b7a411ae956dcfc Mon Sep 17 00:00:00 2001 From: Archana Shinde Date: Thu, 7 Feb 2019 13:46:37 -0800 Subject: [PATCH] network: Remove grpc AddInterface and RemoveInterface api These grpc APIs are not really used/called by the runtime. Remove this to clean the code. Fixes #456 Signed-off-by: Archana Shinde --- grpc.go | 8 - network.go | 45 -- protocols/grpc/agent.pb.go | 731 ++++++++--------------------- protocols/grpc/agent.proto | 10 - protocols/mockserver/mockserver.go | 20 - 5 files changed, 192 insertions(+), 622 deletions(-) diff --git a/grpc.go b/grpc.go index fa6f049760..62286f4520 100644 --- a/grpc.go +++ b/grpc.go @@ -1357,18 +1357,10 @@ func (a *agentGRPC) DestroySandbox(ctx context.Context, req *pb.DestroySandboxRe return emptyResp, nil } -func (a *agentGRPC) AddInterface(ctx context.Context, req *pb.AddInterfaceRequest) (*types.Interface, error) { - return a.sandbox.addInterface(nil, req.Interface) -} - func (a *agentGRPC) UpdateInterface(ctx context.Context, req *pb.UpdateInterfaceRequest) (*types.Interface, error) { return a.sandbox.updateInterface(nil, req.Interface) } -func (a *agentGRPC) RemoveInterface(ctx context.Context, req *pb.RemoveInterfaceRequest) (*types.Interface, error) { - return a.sandbox.removeInterface(nil, req.Interface) -} - func (a *agentGRPC) UpdateRoutes(ctx context.Context, req *pb.UpdateRoutesRequest) (*pb.Routes, error) { return a.sandbox.updateRoutes(nil, req.Routes) } diff --git a/network.go b/network.go index f54bb92d1e..ea502ac727 100644 --- a/network.go +++ b/network.go @@ -147,51 +147,6 @@ func updateLink(netHandle *netlink.Handle, link netlink.Link, iface *types.Inter return nil } -func (s *sandbox) addInterface(netHandle *netlink.Handle, iface *types.Interface) (resultingIfc *types.Interface, err error) { - if iface == nil { - return nil, errNoIF - } - - s.network.ifacesLock.Lock() - defer s.network.ifacesLock.Unlock() - - if netHandle == nil { - netHandle, err = netlink.NewHandle(unix.NETLINK_ROUTE) - if err != nil { - return nil, err - } - defer netHandle.Delete() - } - - hwAddr, err := net.ParseMAC(iface.HwAddr) - if err != nil { - return nil, err - } - - link := &netlink.Device{ - LinkAttrs: netlink.LinkAttrs{ - MTU: int(iface.Mtu), - TxQLen: -1, - Name: iface.Name, - HardwareAddr: hwAddr, - }, - } - - // Create the link. - if err := netHandle.LinkAdd(link); err != nil { - return nil, err - } - - // Set the link up. - if err := netHandle.LinkSetUp(link); err != nil { - return iface, err - } - - // Update sandbox interface list. - s.network.ifaces[iface.Name] = iface - - return iface, nil -} func (s *sandbox) removeInterface(netHandle *netlink.Handle, iface *types.Interface) (resultingIfc *types.Interface, err error) { if iface == nil { return nil, errNoIF diff --git a/protocols/grpc/agent.pb.go b/protocols/grpc/agent.pb.go index c617fa60b1..0e2c110121 100644 --- a/protocols/grpc/agent.pb.go +++ b/protocols/grpc/agent.pb.go @@ -45,8 +45,6 @@ Interfaces Routes UpdateInterfaceRequest - AddInterfaceRequest - RemoveInterfaceRequest UpdateRoutesRequest ListInterfacesRequest ListRoutesRequest @@ -1176,38 +1174,6 @@ func (m *UpdateInterfaceRequest) GetInterface() *types.Interface { return nil } -type AddInterfaceRequest struct { - Interface *types.Interface `protobuf:"bytes,1,opt,name=interface" json:"interface,omitempty"` -} - -func (m *AddInterfaceRequest) Reset() { *m = AddInterfaceRequest{} } -func (m *AddInterfaceRequest) String() string { return proto.CompactTextString(m) } -func (*AddInterfaceRequest) ProtoMessage() {} -func (*AddInterfaceRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{35} } - -func (m *AddInterfaceRequest) GetInterface() *types.Interface { - if m != nil { - return m.Interface - } - return nil -} - -type RemoveInterfaceRequest struct { - Interface *types.Interface `protobuf:"bytes,1,opt,name=interface" json:"interface,omitempty"` -} - -func (m *RemoveInterfaceRequest) Reset() { *m = RemoveInterfaceRequest{} } -func (m *RemoveInterfaceRequest) String() string { return proto.CompactTextString(m) } -func (*RemoveInterfaceRequest) ProtoMessage() {} -func (*RemoveInterfaceRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{36} } - -func (m *RemoveInterfaceRequest) GetInterface() *types.Interface { - if m != nil { - return m.Interface - } - return nil -} - type UpdateRoutesRequest struct { Routes *Routes `protobuf:"bytes,1,opt,name=routes" json:"routes,omitempty"` } @@ -1215,7 +1181,7 @@ type UpdateRoutesRequest struct { func (m *UpdateRoutesRequest) Reset() { *m = UpdateRoutesRequest{} } func (m *UpdateRoutesRequest) String() string { return proto.CompactTextString(m) } func (*UpdateRoutesRequest) ProtoMessage() {} -func (*UpdateRoutesRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{37} } +func (*UpdateRoutesRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{35} } func (m *UpdateRoutesRequest) GetRoutes() *Routes { if m != nil { @@ -1230,7 +1196,7 @@ type ListInterfacesRequest struct { func (m *ListInterfacesRequest) Reset() { *m = ListInterfacesRequest{} } func (m *ListInterfacesRequest) String() string { return proto.CompactTextString(m) } func (*ListInterfacesRequest) ProtoMessage() {} -func (*ListInterfacesRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{38} } +func (*ListInterfacesRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{36} } type ListRoutesRequest struct { } @@ -1238,7 +1204,7 @@ type ListRoutesRequest struct { func (m *ListRoutesRequest) Reset() { *m = ListRoutesRequest{} } func (m *ListRoutesRequest) String() string { return proto.CompactTextString(m) } func (*ListRoutesRequest) ProtoMessage() {} -func (*ListRoutesRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{39} } +func (*ListRoutesRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{37} } type OnlineCPUMemRequest struct { // Wait specifies if the caller waits for the agent to online all resources. @@ -1254,7 +1220,7 @@ type OnlineCPUMemRequest struct { func (m *OnlineCPUMemRequest) Reset() { *m = OnlineCPUMemRequest{} } func (m *OnlineCPUMemRequest) String() string { return proto.CompactTextString(m) } func (*OnlineCPUMemRequest) ProtoMessage() {} -func (*OnlineCPUMemRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{40} } +func (*OnlineCPUMemRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{38} } func (m *OnlineCPUMemRequest) GetWait() bool { if m != nil { @@ -1285,7 +1251,7 @@ type ReseedRandomDevRequest struct { func (m *ReseedRandomDevRequest) Reset() { *m = ReseedRandomDevRequest{} } func (m *ReseedRandomDevRequest) String() string { return proto.CompactTextString(m) } func (*ReseedRandomDevRequest) ProtoMessage() {} -func (*ReseedRandomDevRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{41} } +func (*ReseedRandomDevRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{39} } func (m *ReseedRandomDevRequest) GetData() []byte { if m != nil { @@ -1312,7 +1278,7 @@ type AgentDetails struct { func (m *AgentDetails) Reset() { *m = AgentDetails{} } func (m *AgentDetails) String() string { return proto.CompactTextString(m) } func (*AgentDetails) ProtoMessage() {} -func (*AgentDetails) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{42} } +func (*AgentDetails) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{40} } func (m *AgentDetails) GetVersion() string { if m != nil { @@ -1363,7 +1329,7 @@ type GuestDetailsRequest struct { func (m *GuestDetailsRequest) Reset() { *m = GuestDetailsRequest{} } func (m *GuestDetailsRequest) String() string { return proto.CompactTextString(m) } func (*GuestDetailsRequest) ProtoMessage() {} -func (*GuestDetailsRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{43} } +func (*GuestDetailsRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{41} } func (m *GuestDetailsRequest) GetMemBlockSize() bool { if m != nil { @@ -1389,7 +1355,7 @@ type GuestDetailsResponse struct { func (m *GuestDetailsResponse) Reset() { *m = GuestDetailsResponse{} } func (m *GuestDetailsResponse) String() string { return proto.CompactTextString(m) } func (*GuestDetailsResponse) ProtoMessage() {} -func (*GuestDetailsResponse) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{44} } +func (*GuestDetailsResponse) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{42} } func (m *GuestDetailsResponse) GetMemBlockSizeBytes() uint64 { if m != nil { @@ -1421,7 +1387,7 @@ type MemHotplugByProbeRequest struct { func (m *MemHotplugByProbeRequest) Reset() { *m = MemHotplugByProbeRequest{} } func (m *MemHotplugByProbeRequest) String() string { return proto.CompactTextString(m) } func (*MemHotplugByProbeRequest) ProtoMessage() {} -func (*MemHotplugByProbeRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{45} } +func (*MemHotplugByProbeRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{43} } func (m *MemHotplugByProbeRequest) GetMemHotplugProbeAddr() []uint64 { if m != nil { @@ -1440,7 +1406,7 @@ type SetGuestDateTimeRequest struct { func (m *SetGuestDateTimeRequest) Reset() { *m = SetGuestDateTimeRequest{} } func (m *SetGuestDateTimeRequest) String() string { return proto.CompactTextString(m) } func (*SetGuestDateTimeRequest) ProtoMessage() {} -func (*SetGuestDateTimeRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{46} } +func (*SetGuestDateTimeRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{44} } func (m *SetGuestDateTimeRequest) GetSec() int64 { if m != nil { @@ -1489,7 +1455,7 @@ type Storage struct { func (m *Storage) Reset() { *m = Storage{} } func (m *Storage) String() string { return proto.CompactTextString(m) } func (*Storage) ProtoMessage() {} -func (*Storage) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{47} } +func (*Storage) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{45} } func (m *Storage) GetDriver() string { if m != nil { @@ -1572,7 +1538,7 @@ type Device struct { func (m *Device) Reset() { *m = Device{} } func (m *Device) String() string { return proto.CompactTextString(m) } func (*Device) ProtoMessage() {} -func (*Device) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{48} } +func (*Device) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{46} } func (m *Device) GetId() string { if m != nil { @@ -1618,7 +1584,7 @@ type StringUser struct { func (m *StringUser) Reset() { *m = StringUser{} } func (m *StringUser) String() string { return proto.CompactTextString(m) } func (*StringUser) ProtoMessage() {} -func (*StringUser) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{49} } +func (*StringUser) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{47} } func (m *StringUser) GetUid() string { if m != nil { @@ -1666,7 +1632,7 @@ type CopyFileRequest struct { func (m *CopyFileRequest) Reset() { *m = CopyFileRequest{} } func (m *CopyFileRequest) String() string { return proto.CompactTextString(m) } func (*CopyFileRequest) ProtoMessage() {} -func (*CopyFileRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{50} } +func (*CopyFileRequest) Descriptor() ([]byte, []int) { return fileDescriptorAgent, []int{48} } func (m *CopyFileRequest) GetPath() string { if m != nil { @@ -1760,8 +1726,6 @@ func init() { proto.RegisterType((*Interfaces)(nil), "grpc.Interfaces") proto.RegisterType((*Routes)(nil), "grpc.Routes") proto.RegisterType((*UpdateInterfaceRequest)(nil), "grpc.UpdateInterfaceRequest") - proto.RegisterType((*AddInterfaceRequest)(nil), "grpc.AddInterfaceRequest") - proto.RegisterType((*RemoveInterfaceRequest)(nil), "grpc.RemoveInterfaceRequest") proto.RegisterType((*UpdateRoutesRequest)(nil), "grpc.UpdateRoutesRequest") proto.RegisterType((*ListInterfacesRequest)(nil), "grpc.ListInterfacesRequest") proto.RegisterType((*ListRoutesRequest)(nil), "grpc.ListRoutesRequest") @@ -1814,9 +1778,7 @@ type AgentServiceClient interface { CloseStdin(ctx context.Context, in *CloseStdinRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) TtyWinResize(ctx context.Context, in *TtyWinResizeRequest, opts ...grpc1.CallOption) (*google_protobuf2.Empty, error) // networking - AddInterface(ctx context.Context, in *AddInterfaceRequest, opts ...grpc1.CallOption) (*types.Interface, error) UpdateInterface(ctx context.Context, in *UpdateInterfaceRequest, opts ...grpc1.CallOption) (*types.Interface, error) - RemoveInterface(ctx context.Context, in *RemoveInterfaceRequest, opts ...grpc1.CallOption) (*types.Interface, error) UpdateRoutes(ctx context.Context, in *UpdateRoutesRequest, opts ...grpc1.CallOption) (*Routes, error) ListInterfaces(ctx context.Context, in *ListInterfacesRequest, opts ...grpc1.CallOption) (*Interfaces, error) ListRoutes(ctx context.Context, in *ListRoutesRequest, opts ...grpc1.CallOption) (*Routes, error) @@ -1983,15 +1945,6 @@ func (c *agentServiceClient) TtyWinResize(ctx context.Context, in *TtyWinResizeR return out, nil } -func (c *agentServiceClient) AddInterface(ctx context.Context, in *AddInterfaceRequest, opts ...grpc1.CallOption) (*types.Interface, error) { - out := new(types.Interface) - err := grpc1.Invoke(ctx, "/grpc.AgentService/AddInterface", in, out, c.cc, opts...) - if err != nil { - return nil, err - } - return out, nil -} - func (c *agentServiceClient) UpdateInterface(ctx context.Context, in *UpdateInterfaceRequest, opts ...grpc1.CallOption) (*types.Interface, error) { out := new(types.Interface) err := grpc1.Invoke(ctx, "/grpc.AgentService/UpdateInterface", in, out, c.cc, opts...) @@ -2001,15 +1954,6 @@ func (c *agentServiceClient) UpdateInterface(ctx context.Context, in *UpdateInte return out, nil } -func (c *agentServiceClient) RemoveInterface(ctx context.Context, in *RemoveInterfaceRequest, opts ...grpc1.CallOption) (*types.Interface, error) { - out := new(types.Interface) - err := grpc1.Invoke(ctx, "/grpc.AgentService/RemoveInterface", in, out, c.cc, opts...) - if err != nil { - return nil, err - } - return out, nil -} - func (c *agentServiceClient) UpdateRoutes(ctx context.Context, in *UpdateRoutesRequest, opts ...grpc1.CallOption) (*Routes, error) { out := new(Routes) err := grpc1.Invoke(ctx, "/grpc.AgentService/UpdateRoutes", in, out, c.cc, opts...) @@ -2137,9 +2081,7 @@ type AgentServiceServer interface { CloseStdin(context.Context, *CloseStdinRequest) (*google_protobuf2.Empty, error) TtyWinResize(context.Context, *TtyWinResizeRequest) (*google_protobuf2.Empty, error) // networking - AddInterface(context.Context, *AddInterfaceRequest) (*types.Interface, error) UpdateInterface(context.Context, *UpdateInterfaceRequest) (*types.Interface, error) - RemoveInterface(context.Context, *RemoveInterfaceRequest) (*types.Interface, error) UpdateRoutes(context.Context, *UpdateRoutesRequest) (*Routes, error) ListInterfaces(context.Context, *ListInterfacesRequest) (*Interfaces, error) ListRoutes(context.Context, *ListRoutesRequest) (*Routes, error) @@ -2446,24 +2388,6 @@ func _AgentService_TtyWinResize_Handler(srv interface{}, ctx context.Context, de return interceptor(ctx, in, info, handler) } -func _AgentService_AddInterface_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc1.UnaryServerInterceptor) (interface{}, error) { - in := new(AddInterfaceRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(AgentServiceServer).AddInterface(ctx, in) - } - info := &grpc1.UnaryServerInfo{ - Server: srv, - FullMethod: "/grpc.AgentService/AddInterface", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(AgentServiceServer).AddInterface(ctx, req.(*AddInterfaceRequest)) - } - return interceptor(ctx, in, info, handler) -} - func _AgentService_UpdateInterface_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc1.UnaryServerInterceptor) (interface{}, error) { in := new(UpdateInterfaceRequest) if err := dec(in); err != nil { @@ -2482,24 +2406,6 @@ func _AgentService_UpdateInterface_Handler(srv interface{}, ctx context.Context, return interceptor(ctx, in, info, handler) } -func _AgentService_RemoveInterface_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc1.UnaryServerInterceptor) (interface{}, error) { - in := new(RemoveInterfaceRequest) - if err := dec(in); err != nil { - return nil, err - } - if interceptor == nil { - return srv.(AgentServiceServer).RemoveInterface(ctx, in) - } - info := &grpc1.UnaryServerInfo{ - Server: srv, - FullMethod: "/grpc.AgentService/RemoveInterface", - } - handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(AgentServiceServer).RemoveInterface(ctx, req.(*RemoveInterfaceRequest)) - } - return interceptor(ctx, in, info, handler) -} - func _AgentService_UpdateRoutes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc1.UnaryServerInterceptor) (interface{}, error) { in := new(UpdateRoutesRequest) if err := dec(in); err != nil { @@ -2766,18 +2672,10 @@ var _AgentService_serviceDesc = grpc1.ServiceDesc{ MethodName: "TtyWinResize", Handler: _AgentService_TtyWinResize_Handler, }, - { - MethodName: "AddInterface", - Handler: _AgentService_AddInterface_Handler, - }, { MethodName: "UpdateInterface", Handler: _AgentService_UpdateInterface_Handler, }, - { - MethodName: "RemoveInterface", - Handler: _AgentService_RemoveInterface_Handler, - }, { MethodName: "UpdateRoutes", Handler: _AgentService_UpdateRoutes_Handler, @@ -4210,62 +4108,6 @@ func (m *UpdateInterfaceRequest) MarshalTo(dAtA []byte) (int, error) { return i, nil } -func (m *AddInterfaceRequest) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalTo(dAtA) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *AddInterfaceRequest) MarshalTo(dAtA []byte) (int, error) { - var i int - _ = i - var l int - _ = l - if m.Interface != nil { - dAtA[i] = 0xa - i++ - i = encodeVarintAgent(dAtA, i, uint64(m.Interface.Size())) - n20, err := m.Interface.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err - } - i += n20 - } - return i, nil -} - -func (m *RemoveInterfaceRequest) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalTo(dAtA) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *RemoveInterfaceRequest) MarshalTo(dAtA []byte) (int, error) { - var i int - _ = i - var l int - _ = l - if m.Interface != nil { - dAtA[i] = 0xa - i++ - i = encodeVarintAgent(dAtA, i, uint64(m.Interface.Size())) - n21, err := m.Interface.MarshalTo(dAtA[i:]) - if err != nil { - return 0, err - } - i += n21 - } - return i, nil -} - func (m *UpdateRoutesRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4285,11 +4127,11 @@ func (m *UpdateRoutesRequest) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintAgent(dAtA, i, uint64(m.Routes.Size())) - n22, err := m.Routes.MarshalTo(dAtA[i:]) + n20, err := m.Routes.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n22 + i += n20 } return i, nil } @@ -4533,11 +4375,11 @@ func (m *GuestDetailsResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintAgent(dAtA, i, uint64(m.AgentDetails.Size())) - n23, err := m.AgentDetails.MarshalTo(dAtA[i:]) + n21, err := m.AgentDetails.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n23 + i += n21 } if m.SupportMemHotplugProbe { dAtA[i] = 0x18 @@ -4568,21 +4410,21 @@ func (m *MemHotplugByProbeRequest) MarshalTo(dAtA []byte) (int, error) { var l int _ = l if len(m.MemHotplugProbeAddr) > 0 { - dAtA25 := make([]byte, len(m.MemHotplugProbeAddr)*10) - var j24 int + dAtA23 := make([]byte, len(m.MemHotplugProbeAddr)*10) + var j22 int for _, num := range m.MemHotplugProbeAddr { for num >= 1<<7 { - dAtA25[j24] = uint8(uint64(num)&0x7f | 0x80) + dAtA23[j22] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j24++ + j22++ } - dAtA25[j24] = uint8(num) - j24++ + dAtA23[j22] = uint8(num) + j22++ } dAtA[i] = 0xa i++ - i = encodeVarintAgent(dAtA, i, uint64(j24)) - i += copy(dAtA[i:], dAtA25[:j24]) + i = encodeVarintAgent(dAtA, i, uint64(j22)) + i += copy(dAtA[i:], dAtA23[:j22]) } return i, nil } @@ -5461,26 +5303,6 @@ func (m *UpdateInterfaceRequest) Size() (n int) { return n } -func (m *AddInterfaceRequest) Size() (n int) { - var l int - _ = l - if m.Interface != nil { - l = m.Interface.Size() - n += 1 + l + sovAgent(uint64(l)) - } - return n -} - -func (m *RemoveInterfaceRequest) Size() (n int) { - var l int - _ = l - if m.Interface != nil { - l = m.Interface.Size() - n += 1 + l + sovAgent(uint64(l)) - } - return n -} - func (m *UpdateRoutesRequest) Size() (n int) { var l int _ = l @@ -10226,172 +10048,6 @@ func (m *UpdateInterfaceRequest) Unmarshal(dAtA []byte) error { } return nil } -func (m *AddInterfaceRequest) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowAgent - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: AddInterfaceRequest: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: AddInterfaceRequest: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Interface", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowAgent - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthAgent - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Interface == nil { - m.Interface = &types.Interface{} - } - if err := m.Interface.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipAgent(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthAgent - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *RemoveInterfaceRequest) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowAgent - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= (uint64(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: RemoveInterfaceRequest: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: RemoveInterfaceRequest: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Interface", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowAgent - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= (int(b) & 0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthAgent - } - postIndex := iNdEx + msglen - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Interface == nil { - m.Interface = &types.Interface{} - } - if err := m.Interface.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipAgent(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthAgent - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func (m *UpdateRoutesRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -12242,173 +11898,170 @@ var ( func init() { proto.RegisterFile("agent.proto", fileDescriptorAgent) } var fileDescriptorAgent = []byte{ - // 2675 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x19, 0xdb, 0x6e, 0x1b, 0xc7, - 0x15, 0xbc, 0x88, 0x22, 0x0f, 0x49, 0x51, 0x1c, 0xc9, 0x32, 0x4d, 0x27, 0xae, 0xb3, 0x49, 0x1d, - 0xa5, 0x69, 0xa8, 0xc4, 0x09, 0x9a, 0x8b, 0x91, 0x1a, 0x96, 0xac, 0x5a, 0x6a, 0xe2, 0x5a, 0x5d, - 0x45, 0x48, 0x81, 0xa2, 0x58, 0xac, 0x76, 0x47, 0xe4, 0x44, 0xdc, 0x9d, 0xcd, 0xce, 0xac, 0x6c, - 0xa6, 0x40, 0x1f, 0xfb, 0xda, 0x2f, 0xe8, 0x0f, 0x14, 0x7d, 0xeb, 0x63, 0x5f, 0xfb, 0x10, 0xf4, - 0xa9, 0xef, 0x05, 0x8a, 0x22, 0x9f, 0xd0, 0x2f, 0x28, 0xe6, 0xb6, 0x17, 0x72, 0xa9, 0xa4, 0x8a, - 0x80, 0xbe, 0x10, 0x73, 0x2e, 0x73, 0x6e, 0x33, 0x73, 0xf6, 0x9c, 0x43, 0x68, 0xbb, 0x63, 0x1c, - 0xf2, 0x51, 0x14, 0x53, 0x4e, 0x51, 0x7d, 0x1c, 0x47, 0xde, 0xb0, 0x45, 0x3d, 0xa2, 0x10, 0xc3, - 0x9f, 0x8c, 0x09, 0x9f, 0x24, 0xa7, 0x23, 0x8f, 0x06, 0x3b, 0xe7, 0x2e, 0x77, 0xdf, 0xf2, 0x68, - 0xc8, 0x5d, 0x12, 0xe2, 0x98, 0xed, 0xc8, 0x8d, 0x3b, 0xd1, 0xf9, 0x78, 0x87, 0xcf, 0x22, 0xcc, - 0xd4, 0xaf, 0xde, 0x77, 0x7b, 0x4c, 0xe9, 0x78, 0x8a, 0x77, 0x24, 0x74, 0x9a, 0x9c, 0xed, 0xe0, - 0x20, 0xe2, 0x33, 0x45, 0xb4, 0xfe, 0x58, 0x85, 0xad, 0xbd, 0x18, 0xbb, 0x1c, 0xef, 0x19, 0x69, - 0x36, 0xfe, 0x32, 0xc1, 0x8c, 0xa3, 0x57, 0xa0, 0x93, 0x6a, 0x70, 0x88, 0x3f, 0xa8, 0xdc, 0xad, - 0x6c, 0xb7, 0xec, 0x76, 0x8a, 0x3b, 0xf4, 0xd1, 0x4d, 0x58, 0xc5, 0x2f, 0xb0, 0x27, 0xa8, 0x55, - 0x49, 0x6d, 0x08, 0xf0, 0xd0, 0x47, 0xef, 0x40, 0x9b, 0xf1, 0x98, 0x84, 0x63, 0x27, 0x61, 0x38, - 0x1e, 0xd4, 0xee, 0x56, 0xb6, 0xdb, 0xf7, 0xd7, 0x47, 0xc2, 0xa5, 0xd1, 0xb1, 0x24, 0x9c, 0x30, - 0x1c, 0xdb, 0xc0, 0xd2, 0x35, 0xba, 0x07, 0xab, 0x3e, 0xbe, 0x20, 0x1e, 0x66, 0x83, 0xfa, 0xdd, - 0xda, 0x76, 0xfb, 0x7e, 0x47, 0xb1, 0x3f, 0x96, 0x48, 0xdb, 0x10, 0xd1, 0x1b, 0xd0, 0x64, 0x9c, - 0xc6, 0xee, 0x18, 0xb3, 0xc1, 0x8a, 0x64, 0xec, 0x1a, 0xb9, 0x12, 0x6b, 0xa7, 0x64, 0xf4, 0x12, - 0xd4, 0x9e, 0xed, 0x1d, 0x0e, 0x1a, 0x52, 0x3b, 0x68, 0xae, 0x08, 0x7b, 0xb6, 0x40, 0xa3, 0x57, - 0xa1, 0xcb, 0xdc, 0xd0, 0x3f, 0xa5, 0x2f, 0x9c, 0x88, 0xf8, 0x21, 0x1b, 0xac, 0xde, 0xad, 0x6c, - 0x37, 0xed, 0x8e, 0x46, 0x1e, 0x09, 0x9c, 0xf5, 0x11, 0xdc, 0x38, 0xe6, 0x6e, 0xcc, 0xaf, 0x10, - 0x1d, 0xeb, 0x04, 0xb6, 0x6c, 0x1c, 0xd0, 0x8b, 0x2b, 0x85, 0x76, 0x00, 0xab, 0x9c, 0x04, 0x98, - 0x26, 0x5c, 0x86, 0xb6, 0x6b, 0x1b, 0xd0, 0xfa, 0x73, 0x05, 0xd0, 0xfe, 0x0b, 0xec, 0x1d, 0xc5, - 0xd4, 0xc3, 0x8c, 0xfd, 0x9f, 0x8e, 0xeb, 0x75, 0x58, 0x8d, 0x94, 0x01, 0x83, 0xba, 0x64, 0xd7, - 0xa7, 0x60, 0xac, 0x32, 0x54, 0xeb, 0x0b, 0xd8, 0x3c, 0x26, 0xe3, 0xd0, 0x9d, 0x5e, 0xa3, 0xbd, - 0x5b, 0xd0, 0x60, 0x52, 0xa6, 0x34, 0xb5, 0x6b, 0x6b, 0xc8, 0x3a, 0x02, 0xf4, 0xb9, 0x4b, 0xf8, - 0xf5, 0x69, 0xb2, 0xde, 0x82, 0x8d, 0x82, 0x44, 0x16, 0xd1, 0x90, 0x61, 0x69, 0x00, 0x77, 0x79, - 0xc2, 0xa4, 0xb0, 0x15, 0x5b, 0x43, 0x16, 0x86, 0xcd, 0x4f, 0x09, 0x33, 0xec, 0xf8, 0x7f, 0x31, - 0x61, 0x0b, 0x1a, 0x67, 0x34, 0x0e, 0x5c, 0x6e, 0x2c, 0x50, 0x10, 0x42, 0x50, 0x77, 0xe3, 0x31, - 0x1b, 0xd4, 0xee, 0xd6, 0xb6, 0x5b, 0xb6, 0x5c, 0x8b, 0x5b, 0x39, 0xa7, 0x46, 0xdb, 0xf5, 0x0a, - 0x74, 0x74, 0xdc, 0x9d, 0x29, 0x61, 0x5c, 0xea, 0xe9, 0xd8, 0x6d, 0x8d, 0x13, 0x7b, 0x2c, 0x0a, - 0x5b, 0x27, 0x91, 0x7f, 0xc5, 0x07, 0x7f, 0x1f, 0x5a, 0x31, 0x66, 0x34, 0x89, 0xc5, 0x33, 0xad, - 0xca, 0x73, 0xdf, 0x54, 0xe7, 0xfe, 0x29, 0x09, 0x93, 0x17, 0xb6, 0xa1, 0xd9, 0x19, 0x9b, 0x7e, - 0x42, 0x9c, 0x5d, 0xe5, 0x09, 0x7d, 0x04, 0x37, 0x8e, 0xdc, 0x84, 0x5d, 0xc5, 0x56, 0xeb, 0x81, - 0x78, 0x7e, 0x2c, 0x09, 0xae, 0xb4, 0xf9, 0x4f, 0x15, 0x68, 0xee, 0x45, 0xc9, 0x09, 0x73, 0xc7, - 0x18, 0xfd, 0x00, 0xda, 0x9c, 0x72, 0x77, 0xea, 0x24, 0x02, 0x94, 0xec, 0x75, 0x1b, 0x24, 0x4a, - 0x31, 0x88, 0xb0, 0xe3, 0xd8, 0x8b, 0x12, 0xcd, 0x51, 0xbd, 0x5b, 0xdb, 0xae, 0xdb, 0x6d, 0x85, - 0x53, 0x2c, 0x23, 0xd8, 0x90, 0x34, 0x87, 0x84, 0xce, 0x39, 0x8e, 0x43, 0x3c, 0x0d, 0xa8, 0x8f, - 0xe5, 0xfd, 0xad, 0xdb, 0x7d, 0x49, 0x3a, 0x0c, 0x3f, 0x49, 0x09, 0xe8, 0x47, 0xd0, 0x4f, 0xf9, - 0xc5, 0xa3, 0x94, 0xdc, 0x75, 0xc9, 0xdd, 0xd3, 0xdc, 0x27, 0x1a, 0x6d, 0xfd, 0x0e, 0xd6, 0x3e, - 0x9b, 0xc4, 0x94, 0xf3, 0x29, 0x09, 0xc7, 0x8f, 0x5d, 0xee, 0x8a, 0xec, 0x11, 0xe1, 0x98, 0x50, - 0x9f, 0x69, 0x6b, 0x0d, 0x88, 0xde, 0x84, 0x3e, 0x57, 0xbc, 0xd8, 0x77, 0x0c, 0x4f, 0x55, 0xf2, - 0xac, 0xa7, 0x84, 0x23, 0xcd, 0xfc, 0x43, 0x58, 0xcb, 0x98, 0x45, 0xfe, 0xd1, 0xf6, 0x76, 0x53, - 0xec, 0x67, 0x24, 0xc0, 0xd6, 0x85, 0x8c, 0x95, 0x3c, 0x64, 0xf4, 0x26, 0xb4, 0xb2, 0x38, 0x54, - 0xe4, 0x0d, 0x59, 0x53, 0x37, 0xc4, 0x84, 0xd3, 0x6e, 0xa6, 0x41, 0xf9, 0x18, 0x7a, 0x3c, 0x35, - 0xdc, 0xf1, 0x5d, 0xee, 0x16, 0x2f, 0x55, 0xd1, 0x2b, 0x7b, 0x8d, 0x17, 0x60, 0xeb, 0x01, 0xb4, - 0x8e, 0x88, 0xcf, 0x94, 0xe2, 0x01, 0xac, 0x7a, 0x49, 0x1c, 0xe3, 0x90, 0x1b, 0x97, 0x35, 0x88, - 0x36, 0x61, 0x65, 0x4a, 0x02, 0xc2, 0xb5, 0x9b, 0x0a, 0xb0, 0x28, 0xc0, 0x53, 0x1c, 0xd0, 0x78, - 0x26, 0x03, 0xb6, 0x09, 0x2b, 0xf9, 0xc3, 0x55, 0x00, 0xba, 0x0d, 0xad, 0xc0, 0x7d, 0x91, 0x1e, - 0xaa, 0xa0, 0x34, 0x03, 0xf7, 0x85, 0x32, 0x7e, 0x00, 0xab, 0x67, 0x2e, 0x99, 0x7a, 0x21, 0xd7, - 0x51, 0x31, 0x60, 0xa6, 0xb0, 0x9e, 0x57, 0xf8, 0xb7, 0x2a, 0xb4, 0x95, 0x46, 0x65, 0xf0, 0x26, - 0xac, 0x78, 0xae, 0x37, 0x49, 0x55, 0x4a, 0x00, 0xdd, 0x33, 0x86, 0x54, 0xf3, 0x49, 0x38, 0xb3, - 0xd4, 0x98, 0xb6, 0x03, 0xc0, 0x9e, 0xbb, 0x91, 0xb6, 0xad, 0xb6, 0x84, 0xb9, 0x25, 0x78, 0x94, - 0xb9, 0xef, 0x42, 0x47, 0xdd, 0x3b, 0xbd, 0xa5, 0xbe, 0x64, 0x4b, 0x5b, 0x71, 0xa9, 0x4d, 0xaf, - 0x42, 0x37, 0x61, 0xd8, 0x99, 0x10, 0x1c, 0xbb, 0xb1, 0x37, 0x99, 0x0d, 0x56, 0xd4, 0x37, 0x32, - 0x61, 0xf8, 0xc0, 0xe0, 0xd0, 0x7d, 0x58, 0x11, 0xe9, 0x8f, 0x0d, 0x1a, 0xf2, 0x73, 0xfc, 0x52, - 0x5e, 0xa4, 0x74, 0x75, 0x24, 0x7f, 0xf7, 0x43, 0x1e, 0xcf, 0x6c, 0xc5, 0x3a, 0xfc, 0x00, 0x20, - 0x43, 0xa2, 0x75, 0xa8, 0x9d, 0xe3, 0x99, 0x7e, 0x87, 0x62, 0x29, 0x82, 0x73, 0xe1, 0x4e, 0x13, - 0x13, 0x75, 0x05, 0x7c, 0x54, 0xfd, 0xa0, 0x62, 0x79, 0xd0, 0xdb, 0x9d, 0x9e, 0x13, 0x9a, 0xdb, - 0xbe, 0x09, 0x2b, 0x81, 0xfb, 0x05, 0x8d, 0x4d, 0x24, 0x25, 0x20, 0xb1, 0x24, 0xa4, 0xb1, 0x11, - 0x21, 0x01, 0xb4, 0x06, 0x55, 0x1a, 0xc9, 0x78, 0xb5, 0xec, 0x2a, 0x8d, 0x32, 0x45, 0xf5, 0x9c, - 0x22, 0xeb, 0x5f, 0x75, 0x80, 0x4c, 0x0b, 0xb2, 0x61, 0x48, 0xa8, 0xc3, 0x70, 0x2c, 0x4a, 0x10, - 0xe7, 0x74, 0xc6, 0x31, 0x73, 0x62, 0xec, 0x25, 0x31, 0x23, 0x17, 0xe2, 0xfc, 0x84, 0xdb, 0x37, - 0x94, 0xdb, 0x73, 0xb6, 0xd9, 0x37, 0x09, 0x3d, 0x56, 0xfb, 0x76, 0xc5, 0x36, 0xdb, 0xec, 0x42, - 0x87, 0x70, 0x23, 0x93, 0xe9, 0xe7, 0xc4, 0x55, 0x2f, 0x13, 0xb7, 0x91, 0x8a, 0xf3, 0x33, 0x51, - 0xfb, 0xb0, 0x41, 0xa8, 0xf3, 0x65, 0x82, 0x93, 0x82, 0xa0, 0xda, 0x65, 0x82, 0xfa, 0x84, 0xfe, - 0x52, 0x6e, 0xc8, 0xc4, 0x1c, 0xc1, 0xad, 0x9c, 0x97, 0xe2, 0xb9, 0xe7, 0x84, 0xd5, 0x2f, 0x13, - 0xb6, 0x95, 0x5a, 0x25, 0xf2, 0x41, 0x26, 0xf1, 0xe7, 0xb0, 0x45, 0xa8, 0xf3, 0xdc, 0x25, 0x7c, - 0x5e, 0xdc, 0xca, 0xb7, 0x38, 0x29, 0x3e, 0xba, 0x45, 0x59, 0xca, 0xc9, 0x00, 0xc7, 0xe3, 0x82, - 0x93, 0x8d, 0x6f, 0x71, 0xf2, 0xa9, 0xdc, 0x90, 0x89, 0x79, 0x04, 0x7d, 0x42, 0xe7, 0xad, 0x59, - 0xbd, 0x4c, 0x48, 0x8f, 0xd0, 0xa2, 0x25, 0xbb, 0xd0, 0x67, 0xd8, 0xe3, 0x34, 0xce, 0x5f, 0x82, - 0xe6, 0x65, 0x22, 0xd6, 0x35, 0x7f, 0x2a, 0xc3, 0xfa, 0x35, 0x74, 0x0e, 0x92, 0x31, 0xe6, 0xd3, - 0xd3, 0x34, 0x19, 0x5c, 0x5b, 0xfe, 0xb1, 0xfe, 0x53, 0x85, 0xf6, 0xde, 0x38, 0xa6, 0x49, 0x54, - 0xc8, 0xc9, 0xea, 0x91, 0xce, 0xe7, 0x64, 0xc9, 0x22, 0x73, 0xb2, 0x62, 0x7e, 0x0f, 0x3a, 0x81, - 0x7c, 0xba, 0x9a, 0x5f, 0xe5, 0xa1, 0xfe, 0xc2, 0xa3, 0xb6, 0xdb, 0x41, 0x2e, 0x99, 0x8d, 0x00, - 0x22, 0xe2, 0x33, 0xbd, 0x47, 0xa5, 0xa3, 0x9e, 0xae, 0x08, 0x4d, 0x8a, 0xb6, 0x5b, 0x51, 0x9a, - 0xad, 0xdf, 0x81, 0xf6, 0xa9, 0x08, 0x92, 0xde, 0x50, 0x48, 0x46, 0x59, 0xf4, 0x6c, 0x38, 0xcd, - 0x1e, 0xe1, 0x01, 0x74, 0x27, 0x2a, 0x64, 0x7a, 0x93, 0xba, 0x43, 0xaf, 0x6a, 0x4f, 0x32, 0x7f, - 0x47, 0xf9, 0xc8, 0xaa, 0x03, 0xe8, 0x4c, 0x72, 0xa8, 0xe1, 0x31, 0xf4, 0x17, 0x58, 0x4a, 0x72, - 0xd0, 0x76, 0x3e, 0x07, 0xb5, 0xef, 0x23, 0xa5, 0x28, 0xbf, 0x33, 0x9f, 0x97, 0x7e, 0x01, 0x5b, - 0xf3, 0x65, 0x8e, 0x2e, 0xca, 0xde, 0x83, 0x8e, 0x27, 0xad, 0x2b, 0x9c, 0x40, 0x7f, 0xc1, 0x6e, - 0xbb, 0xed, 0x65, 0x80, 0xe5, 0x03, 0xfa, 0x3c, 0x26, 0x1c, 0x1f, 0xf3, 0x18, 0xbb, 0xc1, 0x75, - 0x54, 0xcd, 0x08, 0xea, 0xf2, 0x13, 0x5b, 0x93, 0x45, 0xa1, 0x5c, 0x5b, 0xaf, 0xc3, 0x46, 0x41, - 0x8b, 0x36, 0x79, 0x1d, 0x6a, 0x53, 0x1c, 0x4a, 0xe9, 0x5d, 0x5b, 0x2c, 0x2d, 0x17, 0xfa, 0x36, - 0x76, 0xfd, 0xeb, 0xb3, 0x46, 0xab, 0xa8, 0x65, 0x2a, 0xb6, 0x01, 0xe5, 0x55, 0x68, 0x53, 0x8c, - 0xd5, 0x95, 0x9c, 0xd5, 0xcf, 0xa0, 0xbf, 0x37, 0xa5, 0x0c, 0x1f, 0x73, 0x9f, 0x84, 0xd7, 0x51, - 0xe6, 0xff, 0x16, 0x36, 0x3e, 0xe3, 0xb3, 0xcf, 0x85, 0x30, 0x46, 0xbe, 0xc2, 0xd7, 0xe4, 0x5f, - 0x4c, 0x9f, 0x1b, 0xff, 0x62, 0xfa, 0x5c, 0x54, 0xf8, 0x1e, 0x9d, 0x26, 0x41, 0x28, 0xaf, 0x7b, - 0xd7, 0xd6, 0x90, 0xf5, 0xcf, 0x0a, 0x6c, 0xaa, 0x1e, 0xfc, 0x58, 0xb5, 0x9e, 0x46, 0xfd, 0x10, - 0x9a, 0x13, 0xca, 0x78, 0xe8, 0x06, 0x58, 0xab, 0x4e, 0x61, 0x21, 0x5e, 0xf4, 0xac, 0x55, 0xd9, - 0x15, 0x88, 0x65, 0xa1, 0x31, 0xae, 0x5d, 0xde, 0x18, 0x2f, 0xb4, 0xbe, 0xf5, 0xc5, 0xd6, 0x17, - 0xbd, 0x0c, 0x60, 0x98, 0x88, 0x2f, 0x3f, 0xfc, 0x2d, 0xbb, 0xa5, 0x31, 0x87, 0x3e, 0xba, 0x07, - 0xbd, 0xb1, 0xb0, 0xd2, 0x99, 0x50, 0x7a, 0xee, 0x44, 0x2e, 0x9f, 0xc8, 0x46, 0xbb, 0x65, 0x77, - 0x25, 0xfa, 0x80, 0xd2, 0xf3, 0x23, 0x97, 0x4f, 0xac, 0x9b, 0x70, 0xe3, 0x31, 0x66, 0x3c, 0xa6, - 0xb3, 0xa2, 0x77, 0xd6, 0x4f, 0x01, 0x0e, 0x43, 0x8e, 0xe3, 0x33, 0x57, 0xb4, 0xf5, 0x6f, 0xe7, - 0x21, 0xfd, 0x49, 0x5d, 0x1f, 0xa9, 0x39, 0x46, 0x4a, 0xb0, 0x73, 0x3c, 0xd6, 0x08, 0x1a, 0x36, - 0x4d, 0x38, 0x66, 0xe8, 0x35, 0xb3, 0xd2, 0xfb, 0x3a, 0x7a, 0x9f, 0x44, 0xda, 0x9a, 0x66, 0x1d, - 0x98, 0xc6, 0x27, 0x13, 0xa7, 0xe3, 0x3c, 0x82, 0x16, 0x31, 0x38, 0xfd, 0x3a, 0x17, 0x55, 0x67, - 0x2c, 0xd6, 0x3e, 0x6c, 0x3c, 0xf2, 0xfd, 0xef, 0x2d, 0xe6, 0xc0, 0xcc, 0x07, 0xbe, 0xb7, 0xa4, - 0x07, 0xb0, 0xa1, 0x5c, 0x53, 0xae, 0x1a, 0x31, 0xaf, 0x41, 0x23, 0x36, 0x71, 0xa9, 0x64, 0x13, - 0x15, 0xcd, 0xa4, 0x69, 0xe2, 0x80, 0x44, 0x63, 0x98, 0x45, 0xd6, 0x1c, 0xd0, 0x06, 0xf4, 0x05, - 0xa1, 0x20, 0xd3, 0xfa, 0x0d, 0x6c, 0x3c, 0x0b, 0xa7, 0x24, 0xc4, 0x7b, 0x47, 0x27, 0x4f, 0x71, - 0x9a, 0x09, 0x10, 0xd4, 0xc5, 0x67, 0x5e, 0x2a, 0x6a, 0xda, 0x72, 0x2d, 0x9e, 0x46, 0x78, 0xea, - 0x78, 0x51, 0xc2, 0xf4, 0x08, 0xa3, 0x11, 0x9e, 0xee, 0x45, 0x09, 0x43, 0xb7, 0x40, 0x7c, 0x6e, - 0x1c, 0x1a, 0x4e, 0x67, 0xf2, 0x7d, 0x34, 0xed, 0x55, 0x2f, 0x4a, 0x9e, 0x85, 0xd3, 0x99, 0xf5, - 0x63, 0xd9, 0xb4, 0x61, 0xec, 0xdb, 0x6e, 0xe8, 0xd3, 0xe0, 0x31, 0xbe, 0xc8, 0x69, 0x48, 0x1b, - 0x04, 0x93, 0x07, 0xbe, 0xae, 0x40, 0xe7, 0xd1, 0x18, 0x87, 0xfc, 0x31, 0xe6, 0x2e, 0x99, 0xca, - 0x26, 0xe0, 0x02, 0xc7, 0x8c, 0xd0, 0x50, 0x3f, 0x18, 0x03, 0x8a, 0x1e, 0x8e, 0x84, 0x84, 0x3b, - 0xbe, 0x8b, 0x03, 0x1a, 0x4a, 0x29, 0x4d, 0x1b, 0x04, 0xea, 0xb1, 0xc4, 0xa0, 0xd7, 0xa1, 0xa7, - 0x46, 0x4c, 0xce, 0xc4, 0x0d, 0xfd, 0x29, 0x8e, 0x4d, 0xcb, 0xbd, 0xa6, 0xd0, 0x07, 0x1a, 0x8b, - 0xde, 0x80, 0x75, 0xfd, 0x90, 0x32, 0xce, 0xba, 0xe4, 0xec, 0x69, 0x7c, 0x81, 0x35, 0x89, 0x22, - 0x1a, 0x73, 0xe6, 0x30, 0xec, 0x79, 0x34, 0x88, 0x74, 0x05, 0xdd, 0x33, 0xf8, 0x63, 0x85, 0xb6, - 0xc6, 0xb0, 0xf1, 0x44, 0xf8, 0xa9, 0x3d, 0xc9, 0x8e, 0x70, 0x2d, 0xc0, 0x81, 0x73, 0x3a, 0xa5, - 0xde, 0xb9, 0x23, 0x52, 0x93, 0x8e, 0xb0, 0xf8, 0x46, 0xef, 0x0a, 0xe4, 0x31, 0xf9, 0x4a, 0x36, - 0x8b, 0x82, 0x6b, 0x42, 0x79, 0x34, 0x4d, 0xc6, 0x4e, 0x14, 0xd3, 0x53, 0xac, 0x5d, 0xec, 0x05, - 0x38, 0x38, 0x50, 0xf8, 0x23, 0x81, 0xb6, 0xfe, 0x5a, 0x81, 0xcd, 0xa2, 0x26, 0x9d, 0x68, 0x77, - 0x60, 0xb3, 0xa8, 0x4a, 0x15, 0xba, 0xba, 0x22, 0xe9, 0xe7, 0x15, 0xca, 0x52, 0x16, 0xbd, 0x0f, - 0x5d, 0x39, 0x77, 0x74, 0x7c, 0x25, 0xa9, 0xf8, 0x9d, 0xcc, 0x9f, 0x8b, 0xdd, 0x71, 0xf3, 0xa7, - 0xf4, 0x21, 0xdc, 0xd2, 0xee, 0x3b, 0x8b, 0x66, 0xab, 0x0b, 0xb1, 0xa5, 0x19, 0x9e, 0xce, 0x59, - 0xff, 0x29, 0x0c, 0x32, 0xd4, 0xee, 0x4c, 0x22, 0x4d, 0xac, 0xde, 0x86, 0x8d, 0x39, 0x67, 0x1f, - 0xf9, 0x7e, 0x2c, 0x73, 0x42, 0xdd, 0x2e, 0x23, 0x59, 0x0f, 0xe1, 0xe6, 0x31, 0xe6, 0x2a, 0x1a, - 0x2e, 0xd7, 0xc5, 0xab, 0x12, 0xb6, 0x0e, 0xb5, 0x63, 0xec, 0x49, 0xe7, 0x6b, 0xb6, 0x58, 0x8a, - 0x0b, 0x78, 0xc2, 0xb0, 0x27, 0xbd, 0xac, 0xd9, 0x72, 0x6d, 0xfd, 0xa5, 0x02, 0xab, 0x3a, 0xbd, - 0x8a, 0xf4, 0xee, 0xc7, 0xe4, 0x02, 0xc7, 0xfa, 0xea, 0x69, 0x48, 0x34, 0xd1, 0x6a, 0xe5, 0xd0, - 0x88, 0x13, 0x9a, 0x26, 0xed, 0xae, 0xc2, 0x3e, 0x53, 0x48, 0x39, 0x52, 0x92, 0x13, 0x13, 0xdd, - 0x9c, 0x68, 0x48, 0xce, 0x85, 0x98, 0x78, 0xfb, 0x32, 0x49, 0xb7, 0x6c, 0x0d, 0x89, 0xab, 0x6e, - 0xe4, 0xad, 0x48, 0x79, 0x06, 0x14, 0x57, 0x3d, 0xa0, 0x49, 0xc8, 0x9d, 0x88, 0x92, 0x90, 0xeb, - 0xac, 0x0c, 0x12, 0x75, 0x24, 0x30, 0xd6, 0xef, 0x2b, 0xd0, 0x50, 0x63, 0x55, 0xd1, 0x0e, 0xa5, - 0xdf, 0xb5, 0x2a, 0x91, 0x35, 0x82, 0xd4, 0xa5, 0xbe, 0x65, 0x72, 0x2d, 0xde, 0xf1, 0x45, 0xa0, - 0x32, 0xbc, 0x36, 0xed, 0x22, 0x10, 0xa9, 0x5d, 0x78, 0x96, 0x7d, 0x1e, 0x25, 0x5d, 0x99, 0xd8, - 0x4d, 0xb1, 0x92, 0x6d, 0xa9, 0xa5, 0xd6, 0xaf, 0x44, 0x17, 0x98, 0x8e, 0x14, 0xd7, 0xa1, 0x96, - 0xa4, 0xc6, 0x88, 0xa5, 0xc0, 0x8c, 0xd3, 0x0f, 0xab, 0x58, 0xa2, 0x7b, 0xb0, 0xe6, 0xfa, 0x3e, - 0x11, 0xdb, 0xdd, 0xe9, 0x13, 0xe2, 0xa7, 0x8f, 0xb4, 0x88, 0xb5, 0xfe, 0x5e, 0x81, 0xde, 0x1e, - 0x8d, 0x66, 0x3f, 0x23, 0x53, 0x9c, 0xcb, 0x20, 0xd2, 0x48, 0xa5, 0x40, 0xae, 0x45, 0x85, 0x7d, - 0x46, 0xa6, 0x58, 0x3d, 0x2d, 0x75, 0xb2, 0x4d, 0x81, 0x90, 0xcf, 0xca, 0x10, 0xd3, 0x49, 0x4d, - 0x57, 0x11, 0x9f, 0x52, 0x1f, 0x8b, 0x24, 0xe6, 0x93, 0xd8, 0x49, 0xe7, 0x32, 0x5d, 0x7b, 0xd5, - 0x27, 0xb1, 0x24, 0x69, 0x47, 0x56, 0xe4, 0x68, 0x30, 0xef, 0x48, 0x43, 0x61, 0x84, 0x23, 0x5b, - 0xd0, 0xa0, 0x67, 0x67, 0x0c, 0x73, 0x39, 0x76, 0xae, 0xd9, 0x1a, 0x4a, 0xd3, 0x5c, 0x33, 0x4b, - 0x73, 0xf7, 0xff, 0xb0, 0xae, 0xd3, 0x9c, 0x6e, 0xb2, 0xd0, 0x13, 0xe8, 0xcd, 0x0d, 0xed, 0x91, - 0xee, 0xba, 0xcb, 0x67, 0xf9, 0xc3, 0xad, 0x91, 0xfa, 0x13, 0x60, 0x64, 0xfe, 0x04, 0x18, 0xed, - 0x07, 0x11, 0x9f, 0xa1, 0x7d, 0x58, 0x2b, 0x8e, 0xb7, 0xd1, 0x6d, 0x53, 0x33, 0x94, 0x0c, 0xbd, - 0x97, 0x8a, 0x79, 0x02, 0xbd, 0xb9, 0x49, 0xb7, 0xb1, 0xa7, 0x7c, 0x00, 0xbe, 0x54, 0xd0, 0x43, - 0x68, 0xe7, 0x46, 0xdb, 0x68, 0xa0, 0x84, 0x2c, 0x4e, 0xbb, 0x97, 0x0a, 0xd8, 0x83, 0x6e, 0x61, - 0xda, 0x8c, 0x86, 0xda, 0x9f, 0x92, 0x11, 0xf4, 0x52, 0x21, 0xbb, 0xd0, 0xce, 0x0d, 0x7d, 0x8d, - 0x15, 0x8b, 0x93, 0xe5, 0xe1, 0xad, 0x12, 0x8a, 0xce, 0xa6, 0x07, 0xd0, 0x2d, 0x8c, 0x68, 0x8d, - 0x21, 0x65, 0xe3, 0xe1, 0xe1, 0xed, 0x52, 0x9a, 0x96, 0xf4, 0x04, 0x7a, 0x73, 0x03, 0x5b, 0x13, - 0xdc, 0xf2, 0x39, 0xee, 0x52, 0xb7, 0x3e, 0x91, 0x87, 0x9d, 0xeb, 0x50, 0x72, 0x87, 0xbd, 0x38, - 0x9e, 0x1d, 0xbe, 0x54, 0x4e, 0xd4, 0x56, 0xed, 0xc3, 0x5a, 0x71, 0x32, 0x6b, 0x84, 0x95, 0xce, - 0x6b, 0x2f, 0xbf, 0x39, 0x85, 0x21, 0x6d, 0x76, 0x73, 0xca, 0x66, 0xb7, 0x4b, 0x05, 0x3d, 0x02, - 0xd0, 0x8d, 0x8c, 0x4f, 0xc2, 0xf4, 0xc8, 0x16, 0x1a, 0xa8, 0xf4, 0xc8, 0x4a, 0x9a, 0x9e, 0x87, - 0x00, 0xaa, 0xff, 0xf0, 0x69, 0xc2, 0xd1, 0x4d, 0x63, 0xc6, 0x5c, 0xd3, 0x33, 0x1c, 0x2c, 0x12, - 0x16, 0x04, 0xe0, 0x38, 0xbe, 0x8a, 0x80, 0x8f, 0x01, 0xb2, 0xbe, 0xc6, 0x08, 0x58, 0xe8, 0x74, - 0x2e, 0x89, 0x41, 0x27, 0xdf, 0xc5, 0x20, 0xed, 0x6b, 0x49, 0x67, 0xb3, 0x54, 0xc4, 0x03, 0xe8, - 0xe4, 0x4b, 0x5b, 0x23, 0xa2, 0xa4, 0xdc, 0x1d, 0x2e, 0x54, 0xa4, 0xe8, 0x91, 0xb9, 0xa9, 0x19, - 0xaa, 0x70, 0x53, 0xbf, 0x9b, 0x88, 0xb9, 0x9a, 0xb8, 0x98, 0x49, 0xbe, 0x83, 0x88, 0xf7, 0xa1, - 0x93, 0x2f, 0x86, 0x8d, 0x0b, 0x25, 0x05, 0xf2, 0xb0, 0x50, 0x10, 0xa3, 0x87, 0xb0, 0x56, 0x2c, - 0x84, 0x51, 0xee, 0x5d, 0x2e, 0x94, 0xc7, 0x43, 0x3d, 0xad, 0xc8, 0xb1, 0xbf, 0x0b, 0x90, 0x15, - 0xcc, 0xe6, 0xf8, 0x16, 0x4a, 0xe8, 0x39, 0xad, 0x7b, 0xd0, 0x2d, 0x34, 0x7f, 0x26, 0x51, 0x94, - 0x75, 0x84, 0x97, 0xe5, 0xf1, 0x62, 0x93, 0x65, 0x4c, 0x2f, 0x6d, 0xbd, 0x2e, 0xbb, 0x40, 0xf9, - 0xe2, 0xde, 0x84, 0xae, 0xa4, 0xe0, 0xff, 0x96, 0x07, 0x9d, 0x2f, 0xe0, 0x73, 0x0f, 0xba, 0xa4, - 0xae, 0x5f, 0x2a, 0xe8, 0x00, 0x7a, 0x4f, 0x4c, 0x6d, 0xa6, 0xeb, 0x46, 0x6d, 0x4e, 0x49, 0x9d, - 0x3c, 0x1c, 0x96, 0x91, 0xf4, 0xab, 0xfa, 0x04, 0xfa, 0x0b, 0x35, 0x23, 0xba, 0x93, 0x0e, 0xb4, - 0x4a, 0x8b, 0xc9, 0xa5, 0x66, 0x1d, 0xc2, 0xfa, 0x7c, 0xc9, 0x88, 0x5e, 0xd6, 0x99, 0xb2, 0xbc, - 0x94, 0x5c, 0x2a, 0xea, 0x43, 0x68, 0x9a, 0x12, 0x05, 0xe9, 0xc1, 0xe1, 0x5c, 0xc9, 0xb2, 0x6c, - 0xeb, 0x6e, 0xe7, 0xeb, 0x6f, 0xee, 0x54, 0xfe, 0xf1, 0xcd, 0x9d, 0xca, 0xbf, 0xbf, 0xb9, 0x53, - 0x39, 0x6d, 0x48, 0xea, 0xbb, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xbe, 0xbd, 0x6e, 0x1d, 0x40, - 0x20, 0x00, 0x00, + // 2638 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x18, 0xdb, 0x6e, 0x1b, 0xc7, + 0x15, 0xbc, 0x48, 0x22, 0x0f, 0x49, 0x51, 0x1c, 0xc9, 0x32, 0x4d, 0x27, 0xae, 0xb3, 0x49, 0x1d, + 0xa5, 0x69, 0xa8, 0xc4, 0x09, 0x9a, 0x1b, 0x52, 0xc3, 0x92, 0x5d, 0x4b, 0x4d, 0x5c, 0xab, 0xab, + 0x08, 0x29, 0x50, 0x14, 0x8b, 0xd5, 0xee, 0x88, 0x9c, 0x88, 0xbb, 0xb3, 0x99, 0x99, 0x95, 0xcd, + 0x14, 0xe8, 0x63, 0x5f, 0xfb, 0x05, 0xfd, 0x81, 0xa2, 0x6f, 0x7d, 0xec, 0x6b, 0x1f, 0x82, 0x3e, + 0xf5, 0xbd, 0x40, 0x51, 0xe4, 0x13, 0xfa, 0x05, 0xc5, 0xdc, 0xf6, 0xc2, 0x8b, 0x8c, 0x0a, 0x02, + 0xfa, 0xb2, 0xd8, 0x73, 0x99, 0x73, 0x9b, 0x99, 0x33, 0xe7, 0x1c, 0x68, 0xf9, 0x23, 0x1c, 0x8b, + 0x61, 0xc2, 0xa8, 0xa0, 0xa8, 0x3e, 0x62, 0x49, 0x30, 0x68, 0xd2, 0x80, 0x68, 0xc4, 0xe0, 0x27, + 0x23, 0x22, 0xc6, 0xe9, 0xe9, 0x30, 0xa0, 0xd1, 0xee, 0xb9, 0x2f, 0xfc, 0x77, 0x02, 0x1a, 0x0b, + 0x9f, 0xc4, 0x98, 0xf1, 0x5d, 0xb5, 0x70, 0x37, 0x39, 0x1f, 0xed, 0x8a, 0x69, 0x82, 0xb9, 0xfe, + 0x9a, 0x75, 0xb7, 0x47, 0x94, 0x8e, 0x26, 0x78, 0x57, 0x41, 0xa7, 0xe9, 0xd9, 0x2e, 0x8e, 0x12, + 0x31, 0xd5, 0x44, 0xe7, 0x8f, 0x55, 0xd8, 0xde, 0x67, 0xd8, 0x17, 0x78, 0xdf, 0x4a, 0x73, 0xf1, + 0x37, 0x29, 0xe6, 0x02, 0xbd, 0x06, 0xed, 0x4c, 0x83, 0x47, 0xc2, 0x7e, 0xe5, 0x6e, 0x65, 0xa7, + 0xe9, 0xb6, 0x32, 0xdc, 0x61, 0x88, 0x6e, 0xc2, 0x1a, 0x7e, 0x81, 0x03, 0x49, 0xad, 0x2a, 0xea, + 0xaa, 0x04, 0x0f, 0x43, 0xf4, 0x1e, 0xb4, 0xb8, 0x60, 0x24, 0x1e, 0x79, 0x29, 0xc7, 0xac, 0x5f, + 0xbb, 0x5b, 0xd9, 0x69, 0xdd, 0xdf, 0x18, 0x4a, 0x97, 0x86, 0xc7, 0x8a, 0x70, 0xc2, 0x31, 0x73, + 0x81, 0x67, 0xff, 0xe8, 0x1e, 0xac, 0x85, 0xf8, 0x82, 0x04, 0x98, 0xf7, 0xeb, 0x77, 0x6b, 0x3b, + 0xad, 0xfb, 0x6d, 0xcd, 0xfe, 0x48, 0x21, 0x5d, 0x4b, 0x44, 0x6f, 0x41, 0x83, 0x0b, 0xca, 0xfc, + 0x11, 0xe6, 0xfd, 0x15, 0xc5, 0xd8, 0xb1, 0x72, 0x15, 0xd6, 0xcd, 0xc8, 0xe8, 0x15, 0xa8, 0x3d, + 0xdb, 0x3f, 0xec, 0xaf, 0x2a, 0xed, 0x60, 0xb8, 0x12, 0x1c, 0xb8, 0x12, 0x8d, 0x5e, 0x87, 0x0e, + 0xf7, 0xe3, 0xf0, 0x94, 0xbe, 0xf0, 0x12, 0x12, 0xc6, 0xbc, 0xbf, 0x76, 0xb7, 0xb2, 0xd3, 0x70, + 0xdb, 0x06, 0x79, 0x24, 0x71, 0xce, 0x27, 0x70, 0xe3, 0x58, 0xf8, 0x4c, 0x5c, 0x21, 0x3a, 0xce, + 0x09, 0x6c, 0xbb, 0x38, 0xa2, 0x17, 0x57, 0x0a, 0x6d, 0x1f, 0xd6, 0x04, 0x89, 0x30, 0x4d, 0x85, + 0x0a, 0x6d, 0xc7, 0xb5, 0xa0, 0xf3, 0xe7, 0x0a, 0xa0, 0xc7, 0x2f, 0x70, 0x70, 0xc4, 0x68, 0x80, + 0x39, 0xff, 0x3f, 0x6d, 0xd7, 0x9b, 0xb0, 0x96, 0x68, 0x03, 0xfa, 0x75, 0xc5, 0x6e, 0x76, 0xc1, + 0x5a, 0x65, 0xa9, 0xce, 0xd7, 0xb0, 0x75, 0x4c, 0x46, 0xb1, 0x3f, 0xb9, 0x46, 0x7b, 0xb7, 0x61, + 0x95, 0x2b, 0x99, 0xca, 0xd4, 0x8e, 0x6b, 0x20, 0xe7, 0x08, 0xd0, 0x57, 0x3e, 0x11, 0xd7, 0xa7, + 0xc9, 0x79, 0x07, 0x36, 0x4b, 0x12, 0x79, 0x42, 0x63, 0x8e, 0x95, 0x01, 0xc2, 0x17, 0x29, 0x57, + 0xc2, 0x56, 0x5c, 0x03, 0x39, 0x18, 0xb6, 0xbe, 0x20, 0xdc, 0xb2, 0xe3, 0xff, 0xc5, 0x84, 0x6d, + 0x58, 0x3d, 0xa3, 0x2c, 0xf2, 0x85, 0xb5, 0x40, 0x43, 0x08, 0x41, 0xdd, 0x67, 0x23, 0xde, 0xaf, + 0xdd, 0xad, 0xed, 0x34, 0x5d, 0xf5, 0x2f, 0x4f, 0xe5, 0x8c, 0x1a, 0x63, 0xd7, 0x6b, 0xd0, 0x36, + 0x71, 0xf7, 0x26, 0x84, 0x0b, 0xa5, 0xa7, 0xed, 0xb6, 0x0c, 0x4e, 0xae, 0x71, 0x28, 0x6c, 0x9f, + 0x24, 0xe1, 0x15, 0x2f, 0xfc, 0x7d, 0x68, 0x32, 0xcc, 0x69, 0xca, 0xe4, 0x35, 0xad, 0xaa, 0x7d, + 0xdf, 0xd2, 0xfb, 0xfe, 0x05, 0x89, 0xd3, 0x17, 0xae, 0xa5, 0xb9, 0x39, 0x9b, 0xb9, 0x42, 0x82, + 0x5f, 0xe5, 0x0a, 0x7d, 0x02, 0x37, 0x8e, 0xfc, 0x94, 0x5f, 0xc5, 0x56, 0xe7, 0x53, 0x79, 0xfd, + 0x78, 0x1a, 0x5d, 0x69, 0xf1, 0x9f, 0x2a, 0xd0, 0xd8, 0x4f, 0xd2, 0x13, 0xee, 0x8f, 0x30, 0xfa, + 0x01, 0xb4, 0x04, 0x15, 0xfe, 0xc4, 0x4b, 0x25, 0xa8, 0xd8, 0xeb, 0x2e, 0x28, 0x94, 0x66, 0x90, + 0x61, 0xc7, 0x2c, 0x48, 0x52, 0xc3, 0x51, 0xbd, 0x5b, 0xdb, 0xa9, 0xbb, 0x2d, 0x8d, 0xd3, 0x2c, + 0x43, 0xd8, 0x54, 0x34, 0x8f, 0xc4, 0xde, 0x39, 0x66, 0x31, 0x9e, 0x44, 0x34, 0xc4, 0xea, 0xfc, + 0xd6, 0xdd, 0x9e, 0x22, 0x1d, 0xc6, 0x9f, 0x67, 0x04, 0xf4, 0x23, 0xe8, 0x65, 0xfc, 0xf2, 0x52, + 0x2a, 0xee, 0xba, 0xe2, 0xee, 0x1a, 0xee, 0x13, 0x83, 0x76, 0x7e, 0x07, 0xeb, 0x5f, 0x8e, 0x19, + 0x15, 0x62, 0x42, 0xe2, 0xd1, 0x23, 0x5f, 0xf8, 0x32, 0x7b, 0x24, 0x98, 0x11, 0x1a, 0x72, 0x63, + 0xad, 0x05, 0xd1, 0xdb, 0xd0, 0x13, 0x9a, 0x17, 0x87, 0x9e, 0xe5, 0xa9, 0x2a, 0x9e, 0x8d, 0x8c, + 0x70, 0x64, 0x98, 0x7f, 0x08, 0xeb, 0x39, 0xb3, 0xcc, 0x3f, 0xc6, 0xde, 0x4e, 0x86, 0xfd, 0x92, + 0x44, 0xd8, 0xb9, 0x50, 0xb1, 0x52, 0x9b, 0x8c, 0xde, 0x86, 0x66, 0x1e, 0x87, 0x8a, 0x3a, 0x21, + 0xeb, 0xfa, 0x84, 0xd8, 0x70, 0xba, 0x8d, 0x2c, 0x28, 0x9f, 0x41, 0x57, 0x64, 0x86, 0x7b, 0xa1, + 0x2f, 0xfc, 0xf2, 0xa1, 0x2a, 0x7b, 0xe5, 0xae, 0x8b, 0x12, 0xec, 0x7c, 0x0a, 0xcd, 0x23, 0x12, + 0x72, 0xad, 0xb8, 0x0f, 0x6b, 0x41, 0xca, 0x18, 0x8e, 0x85, 0x75, 0xd9, 0x80, 0x68, 0x0b, 0x56, + 0x26, 0x24, 0x22, 0xc2, 0xb8, 0xa9, 0x01, 0x87, 0x02, 0x3c, 0xc5, 0x11, 0x65, 0x53, 0x15, 0xb0, + 0x2d, 0x58, 0x29, 0x6e, 0xae, 0x06, 0xd0, 0x6d, 0x68, 0x46, 0xfe, 0x8b, 0x6c, 0x53, 0x25, 0xa5, + 0x11, 0xf9, 0x2f, 0xb4, 0xf1, 0x7d, 0x58, 0x3b, 0xf3, 0xc9, 0x24, 0x88, 0x85, 0x89, 0x8a, 0x05, + 0x73, 0x85, 0xf5, 0xa2, 0xc2, 0xbf, 0x55, 0xa1, 0xa5, 0x35, 0x6a, 0x83, 0xb7, 0x60, 0x25, 0xf0, + 0x83, 0x71, 0xa6, 0x52, 0x01, 0xe8, 0x9e, 0x35, 0xa4, 0x5a, 0x4c, 0xc2, 0xb9, 0xa5, 0xd6, 0xb4, + 0x5d, 0x00, 0xfe, 0xdc, 0x4f, 0x8c, 0x6d, 0xb5, 0x25, 0xcc, 0x4d, 0xc9, 0xa3, 0xcd, 0x7d, 0x1f, + 0xda, 0xfa, 0xdc, 0x99, 0x25, 0xf5, 0x25, 0x4b, 0x5a, 0x9a, 0x4b, 0x2f, 0x7a, 0x1d, 0x3a, 0x29, + 0xc7, 0xde, 0x98, 0x60, 0xe6, 0xb3, 0x60, 0x3c, 0xed, 0xaf, 0xe8, 0x37, 0x32, 0xe5, 0xf8, 0xc0, + 0xe2, 0xd0, 0x7d, 0x58, 0x91, 0xe9, 0x8f, 0xf7, 0x57, 0xd5, 0x73, 0xfc, 0x4a, 0x51, 0xa4, 0x72, + 0x75, 0xa8, 0xbe, 0x8f, 0x63, 0xc1, 0xa6, 0xae, 0x66, 0x1d, 0x7c, 0x04, 0x90, 0x23, 0xd1, 0x06, + 0xd4, 0xce, 0xf1, 0xd4, 0xdc, 0x43, 0xf9, 0x2b, 0x83, 0x73, 0xe1, 0x4f, 0x52, 0x1b, 0x75, 0x0d, + 0x7c, 0x52, 0xfd, 0xa8, 0xe2, 0x04, 0xd0, 0xdd, 0x9b, 0x9c, 0x13, 0x5a, 0x58, 0xbe, 0x05, 0x2b, + 0x91, 0xff, 0x35, 0x65, 0x36, 0x92, 0x0a, 0x50, 0x58, 0x12, 0x53, 0x66, 0x45, 0x28, 0x00, 0xad, + 0x43, 0x95, 0x26, 0x2a, 0x5e, 0x4d, 0xb7, 0x4a, 0x93, 0x5c, 0x51, 0xbd, 0xa0, 0xc8, 0xf9, 0x57, + 0x1d, 0x20, 0xd7, 0x82, 0x5c, 0x18, 0x10, 0xea, 0x71, 0xcc, 0x64, 0x09, 0xe2, 0x9d, 0x4e, 0x05, + 0xe6, 0x1e, 0xc3, 0x41, 0xca, 0x38, 0xb9, 0x90, 0xfb, 0x27, 0xdd, 0xbe, 0xa1, 0xdd, 0x9e, 0xb1, + 0xcd, 0xbd, 0x49, 0xe8, 0xb1, 0x5e, 0xb7, 0x27, 0x97, 0xb9, 0x76, 0x15, 0x3a, 0x84, 0x1b, 0xb9, + 0xcc, 0xb0, 0x20, 0xae, 0x7a, 0x99, 0xb8, 0xcd, 0x4c, 0x5c, 0x98, 0x8b, 0x7a, 0x0c, 0x9b, 0x84, + 0x7a, 0xdf, 0xa4, 0x38, 0x2d, 0x09, 0xaa, 0x5d, 0x26, 0xa8, 0x47, 0xe8, 0x2f, 0xd5, 0x82, 0x5c, + 0xcc, 0x11, 0xdc, 0x2a, 0x78, 0x29, 0xaf, 0x7b, 0x41, 0x58, 0xfd, 0x32, 0x61, 0xdb, 0x99, 0x55, + 0x32, 0x1f, 0xe4, 0x12, 0x7f, 0x0e, 0xdb, 0x84, 0x7a, 0xcf, 0x7d, 0x22, 0x66, 0xc5, 0xad, 0xbc, + 0xc4, 0x49, 0xf9, 0xe8, 0x96, 0x65, 0x69, 0x27, 0x23, 0xcc, 0x46, 0x25, 0x27, 0x57, 0x5f, 0xe2, + 0xe4, 0x53, 0xb5, 0x20, 0x17, 0xf3, 0x10, 0x7a, 0x84, 0xce, 0x5a, 0xb3, 0x76, 0x99, 0x90, 0x2e, + 0xa1, 0x65, 0x4b, 0xf6, 0xa0, 0xc7, 0x71, 0x20, 0x28, 0x2b, 0x1e, 0x82, 0xc6, 0x65, 0x22, 0x36, + 0x0c, 0x7f, 0x26, 0xc3, 0xf9, 0x35, 0xb4, 0x0f, 0xd2, 0x11, 0x16, 0x93, 0xd3, 0x2c, 0x19, 0x5c, + 0x5b, 0xfe, 0x71, 0xfe, 0x53, 0x85, 0xd6, 0xfe, 0x88, 0xd1, 0x34, 0x29, 0xe5, 0x64, 0x7d, 0x49, + 0x67, 0x73, 0xb2, 0x62, 0x51, 0x39, 0x59, 0x33, 0x7f, 0x00, 0xed, 0x48, 0x5d, 0x5d, 0xc3, 0xaf, + 0xf3, 0x50, 0x6f, 0xee, 0x52, 0xbb, 0xad, 0xa8, 0x90, 0xcc, 0x86, 0x00, 0x09, 0x09, 0xb9, 0x59, + 0xa3, 0xd3, 0x51, 0xd7, 0x54, 0x84, 0x36, 0x45, 0xbb, 0xcd, 0x24, 0xcb, 0xd6, 0xef, 0x41, 0xeb, + 0x54, 0x06, 0xc9, 0x2c, 0x28, 0x25, 0xa3, 0x3c, 0x7a, 0x2e, 0x9c, 0xe6, 0x97, 0xf0, 0x00, 0x3a, + 0x63, 0x1d, 0x32, 0xb3, 0x48, 0x9f, 0xa1, 0xd7, 0x8d, 0x27, 0xb9, 0xbf, 0xc3, 0x62, 0x64, 0xf5, + 0x06, 0xb4, 0xc7, 0x05, 0xd4, 0xe0, 0x18, 0x7a, 0x73, 0x2c, 0x0b, 0x72, 0xd0, 0x4e, 0x31, 0x07, + 0xb5, 0xee, 0x23, 0xad, 0xa8, 0xb8, 0xb2, 0x98, 0x97, 0x7e, 0x01, 0xdb, 0xb3, 0x65, 0x8e, 0x29, + 0xca, 0x3e, 0x80, 0x76, 0xa0, 0xac, 0x2b, 0xed, 0x40, 0x6f, 0xce, 0x6e, 0xb7, 0x15, 0xe4, 0x80, + 0x13, 0x02, 0xfa, 0x8a, 0x11, 0x81, 0x8f, 0x05, 0xc3, 0x7e, 0x74, 0x1d, 0x55, 0x33, 0x82, 0xba, + 0x7a, 0x62, 0x6b, 0xaa, 0x28, 0x54, 0xff, 0xce, 0x9b, 0xb0, 0x59, 0xd2, 0x62, 0x4c, 0xde, 0x80, + 0xda, 0x04, 0xc7, 0x4a, 0x7a, 0xc7, 0x95, 0xbf, 0x8e, 0x0f, 0x3d, 0x17, 0xfb, 0xe1, 0xf5, 0x59, + 0x63, 0x54, 0xd4, 0x72, 0x15, 0x3b, 0x80, 0x8a, 0x2a, 0x8c, 0x29, 0xd6, 0xea, 0x4a, 0xc1, 0xea, + 0x67, 0xd0, 0xdb, 0x9f, 0x50, 0x8e, 0x8f, 0x45, 0x48, 0xe2, 0xeb, 0x28, 0xf3, 0x7f, 0x0b, 0x9b, + 0x5f, 0x8a, 0xe9, 0x57, 0x52, 0x18, 0x27, 0xdf, 0xe2, 0x6b, 0xf2, 0x8f, 0xd1, 0xe7, 0xd6, 0x3f, + 0x46, 0x9f, 0xcb, 0x0a, 0x3f, 0xa0, 0x93, 0x34, 0x8a, 0xd5, 0x71, 0xef, 0xb8, 0x06, 0x72, 0xfe, + 0x59, 0x81, 0x2d, 0xdd, 0x83, 0x1f, 0xeb, 0xd6, 0xd3, 0xaa, 0x1f, 0x40, 0x63, 0x4c, 0xb9, 0x88, + 0xfd, 0x08, 0x1b, 0xd5, 0x19, 0x2c, 0xc5, 0xcb, 0x9e, 0xb5, 0xaa, 0xba, 0x02, 0xf9, 0x5b, 0x6a, + 0x8c, 0x6b, 0x97, 0x37, 0xc6, 0x73, 0xad, 0x6f, 0x7d, 0xbe, 0xf5, 0x45, 0xaf, 0x02, 0x58, 0x26, + 0x12, 0xaa, 0x87, 0xbf, 0xe9, 0x36, 0x0d, 0xe6, 0x30, 0x44, 0xf7, 0xa0, 0x3b, 0x92, 0x56, 0x7a, + 0x63, 0x4a, 0xcf, 0xbd, 0xc4, 0x17, 0x63, 0xd5, 0x68, 0x37, 0xdd, 0x8e, 0x42, 0x1f, 0x50, 0x7a, + 0x7e, 0xe4, 0x8b, 0xb1, 0x73, 0x13, 0x6e, 0x3c, 0xc2, 0x5c, 0x30, 0x3a, 0x2d, 0x7b, 0xe7, 0xfc, + 0x14, 0xe0, 0x30, 0x16, 0x98, 0x9d, 0xf9, 0xb2, 0xad, 0x7f, 0xb7, 0x08, 0x99, 0x27, 0x75, 0x63, + 0xa8, 0xe7, 0x18, 0x19, 0xc1, 0x2d, 0xf0, 0x38, 0x43, 0x58, 0x75, 0x69, 0x2a, 0x30, 0x47, 0x6f, + 0xd8, 0x3f, 0xb3, 0xae, 0x6d, 0xd6, 0x29, 0xa4, 0x6b, 0x68, 0xce, 0x81, 0x6d, 0x7c, 0x72, 0x71, + 0x26, 0xce, 0x43, 0x68, 0x12, 0x8b, 0x33, 0xb7, 0x73, 0x5e, 0x75, 0xce, 0xe2, 0x7c, 0x0a, 0x9b, + 0x5a, 0x92, 0x96, 0x6c, 0xc5, 0xbc, 0x01, 0xab, 0xcc, 0x9a, 0x51, 0xc9, 0x07, 0x18, 0x86, 0xc9, + 0xd0, 0x64, 0x3c, 0x64, 0x1f, 0x96, 0x3b, 0x62, 0xe3, 0xb1, 0x09, 0x3d, 0x49, 0x28, 0xc9, 0x74, + 0x7e, 0x03, 0x9b, 0xcf, 0xe2, 0x09, 0x89, 0xf1, 0xfe, 0xd1, 0xc9, 0x53, 0x9c, 0x5d, 0x3c, 0x04, + 0x75, 0xf9, 0xaa, 0x2a, 0x45, 0x0d, 0x57, 0xfd, 0xcb, 0x93, 0x18, 0x9f, 0x7a, 0x41, 0x92, 0x72, + 0x33, 0x31, 0x58, 0x8d, 0x4f, 0xf7, 0x93, 0x94, 0xa3, 0x5b, 0x20, 0xb3, 0xbb, 0x47, 0xe3, 0xc9, + 0x54, 0x1d, 0xc7, 0x86, 0xbb, 0x16, 0x24, 0xe9, 0xb3, 0x78, 0x32, 0x75, 0x7e, 0xac, 0x7a, 0x24, + 0x8c, 0x43, 0xd7, 0x8f, 0x43, 0x1a, 0x3d, 0xc2, 0x17, 0x05, 0x0d, 0x59, 0x3d, 0x6e, 0xaf, 0xdd, + 0x77, 0x15, 0x68, 0x3f, 0x1c, 0xe1, 0x58, 0x3c, 0xc2, 0xc2, 0x27, 0x13, 0x55, 0x73, 0x5f, 0x60, + 0xc6, 0x09, 0x8d, 0xcd, 0xf9, 0xb4, 0xa0, 0x6c, 0x99, 0x48, 0x4c, 0x84, 0x17, 0xfa, 0x38, 0xa2, + 0xb1, 0x92, 0xd2, 0x70, 0x41, 0xa2, 0x1e, 0x29, 0x0c, 0x7a, 0x13, 0xba, 0x7a, 0xa2, 0xe3, 0x8d, + 0xfd, 0x38, 0x9c, 0x60, 0x66, 0x3b, 0xdc, 0x75, 0x8d, 0x3e, 0x30, 0x58, 0xf4, 0x16, 0x6c, 0x98, + 0x73, 0x9b, 0x73, 0xd6, 0x15, 0x67, 0xd7, 0xe0, 0x4b, 0xac, 0x69, 0x92, 0x50, 0x26, 0xb8, 0xc7, + 0x71, 0x10, 0xd0, 0x28, 0x31, 0x05, 0x6b, 0xd7, 0xe2, 0x8f, 0x35, 0xda, 0x19, 0xc1, 0xe6, 0x13, + 0xe9, 0xa7, 0xf1, 0x24, 0xdf, 0xc2, 0xf5, 0x08, 0x47, 0xde, 0xe9, 0x84, 0x06, 0xe7, 0x9e, 0xcc, + 0x04, 0x26, 0xc2, 0xf2, 0x49, 0xdc, 0x93, 0xc8, 0x63, 0xf2, 0xad, 0xea, 0xcd, 0x24, 0xd7, 0x98, + 0x8a, 0x64, 0x92, 0x8e, 0xbc, 0x84, 0xd1, 0x53, 0x6c, 0x5c, 0xec, 0x46, 0x38, 0x3a, 0xd0, 0xf8, + 0x23, 0x89, 0x76, 0xfe, 0x5a, 0x81, 0xad, 0xb2, 0x26, 0x93, 0xd7, 0x76, 0x61, 0xab, 0xac, 0x4a, + 0xd7, 0x95, 0xa6, 0x00, 0xe8, 0x15, 0x15, 0xaa, 0xca, 0x11, 0x7d, 0x08, 0x1d, 0x35, 0xe6, 0xf3, + 0x42, 0x2d, 0xa9, 0xfc, 0x2c, 0x15, 0xf7, 0xc5, 0x6d, 0xfb, 0xc5, 0x5d, 0xfa, 0x18, 0x6e, 0x19, + 0xf7, 0xbd, 0x79, 0xb3, 0xf5, 0x81, 0xd8, 0x36, 0x0c, 0x4f, 0x67, 0xac, 0xff, 0x02, 0xfa, 0x39, + 0x6a, 0x6f, 0xaa, 0x90, 0x36, 0x56, 0xef, 0xc2, 0xe6, 0x8c, 0xb3, 0x0f, 0xc3, 0x90, 0xa9, 0x2b, + 0x58, 0x77, 0x17, 0x91, 0x9c, 0x07, 0x70, 0xf3, 0x18, 0x0b, 0x1d, 0x0d, 0x5f, 0x98, 0x5a, 0x51, + 0x0b, 0xdb, 0x80, 0xda, 0x31, 0x0e, 0x94, 0xf3, 0x35, 0x57, 0xfe, 0xca, 0x03, 0x78, 0xc2, 0x71, + 0xa0, 0xbc, 0xac, 0xb9, 0xea, 0xdf, 0xf9, 0x4b, 0x05, 0xd6, 0x4c, 0x36, 0x93, 0xd9, 0x34, 0x64, + 0xe4, 0x02, 0x33, 0x73, 0xf4, 0x0c, 0x24, 0x7b, 0x56, 0xfd, 0xe7, 0xd1, 0x44, 0x10, 0x9a, 0xe5, + 0xc8, 0x8e, 0xc6, 0x3e, 0xd3, 0x48, 0x35, 0xc1, 0x51, 0x03, 0x0a, 0xd3, 0x0b, 0x18, 0x48, 0x8d, + 0x61, 0xb8, 0xbc, 0xfb, 0x2a, 0x27, 0x36, 0x5d, 0x03, 0xc9, 0xa3, 0x6e, 0xe5, 0xad, 0x28, 0x79, + 0x16, 0x94, 0x47, 0x3d, 0xa2, 0x69, 0x2c, 0xbc, 0x84, 0x92, 0x58, 0x98, 0x24, 0x08, 0x0a, 0x75, + 0x24, 0x31, 0xce, 0xef, 0x2b, 0xb0, 0xaa, 0xa7, 0x98, 0xb2, 0xfb, 0xc8, 0x9e, 0x91, 0x2a, 0x51, + 0x4f, 0xb2, 0xd2, 0xa5, 0x9f, 0x0e, 0xf5, 0x2f, 0xef, 0xf1, 0x45, 0xa4, 0x13, 0xaa, 0x31, 0xed, + 0x22, 0x92, 0x99, 0x54, 0x7a, 0x96, 0xbf, 0x46, 0x8a, 0xae, 0x4d, 0xec, 0x64, 0x58, 0xc5, 0xb6, + 0xd4, 0x52, 0xe7, 0x57, 0xb2, 0xe9, 0xca, 0x26, 0x78, 0x1b, 0x50, 0x4b, 0x33, 0x63, 0xe4, 0xaf, + 0xc4, 0x8c, 0xb2, 0x77, 0x4c, 0xfe, 0xa2, 0x7b, 0xb0, 0xee, 0x87, 0x21, 0x91, 0xcb, 0xfd, 0xc9, + 0x13, 0x12, 0x66, 0x97, 0xb4, 0x8c, 0x75, 0xfe, 0x5e, 0x81, 0xee, 0x3e, 0x4d, 0xa6, 0x3f, 0x23, + 0x13, 0x5c, 0xc8, 0x20, 0xca, 0x48, 0xad, 0x40, 0xfd, 0xcb, 0x82, 0xf6, 0x8c, 0x4c, 0xb0, 0xbe, + 0x5a, 0x7a, 0x67, 0x1b, 0x12, 0xa1, 0xae, 0x95, 0x25, 0x66, 0x83, 0x91, 0x8e, 0x26, 0x3e, 0xa5, + 0x21, 0x96, 0x49, 0x2c, 0x24, 0xcc, 0xcb, 0xc6, 0x20, 0x1d, 0x77, 0x2d, 0x24, 0x4c, 0x91, 0x8c, + 0x23, 0x2b, 0x6a, 0x12, 0x57, 0x74, 0x64, 0x55, 0x63, 0xa4, 0x23, 0xdb, 0xb0, 0x4a, 0xcf, 0xce, + 0x38, 0x16, 0x6a, 0xca, 0x5b, 0x73, 0x0d, 0x94, 0xa5, 0xb9, 0x46, 0x9e, 0xe6, 0xee, 0xff, 0xa1, + 0x6b, 0xd2, 0x9c, 0xe9, 0x69, 0xd0, 0x13, 0xe8, 0xce, 0xcc, 0xc8, 0x91, 0x69, 0x72, 0x17, 0x8f, + 0xce, 0x07, 0xdb, 0x43, 0x3d, 0x73, 0x1f, 0xda, 0x99, 0xfb, 0xf0, 0x71, 0x94, 0x88, 0x29, 0x7a, + 0x0c, 0xeb, 0xe5, 0x69, 0x32, 0xba, 0x6d, 0x9f, 0xe8, 0x05, 0x33, 0xe6, 0xa5, 0x62, 0x9e, 0x40, + 0x77, 0x66, 0xb0, 0x6c, 0xed, 0x59, 0x3c, 0x6f, 0x5e, 0x2a, 0xe8, 0x01, 0xb4, 0x0a, 0x93, 0x64, + 0xd4, 0xd7, 0x42, 0xe6, 0x87, 0xcb, 0x4b, 0x05, 0xec, 0x43, 0xa7, 0x34, 0xdc, 0x45, 0x03, 0xe3, + 0xcf, 0x82, 0x89, 0xef, 0x52, 0x21, 0x7b, 0xd0, 0x2a, 0xcc, 0x58, 0xad, 0x15, 0xf3, 0x83, 0xdc, + 0xc1, 0xad, 0x05, 0x14, 0x93, 0x4d, 0x0f, 0xa0, 0x53, 0x9a, 0x88, 0x5a, 0x43, 0x16, 0x4d, 0x63, + 0x07, 0xb7, 0x17, 0xd2, 0x8c, 0xa4, 0x27, 0xd0, 0x9d, 0x99, 0x8f, 0xda, 0xe0, 0x2e, 0x1e, 0x9b, + 0x2e, 0x75, 0xeb, 0x73, 0xb5, 0xd9, 0x85, 0x86, 0xa0, 0xb0, 0xd9, 0xf3, 0xd3, 0xd0, 0xc1, 0x2b, + 0x8b, 0x89, 0xc6, 0xaa, 0xc7, 0xb0, 0x5e, 0x1e, 0x84, 0x5a, 0x61, 0x0b, 0xc7, 0xa3, 0x97, 0x9f, + 0x9c, 0xd2, 0x4c, 0x34, 0x3f, 0x39, 0x8b, 0x46, 0xa5, 0x4b, 0x05, 0x3d, 0x04, 0x30, 0x7d, 0x43, + 0x48, 0xe2, 0x6c, 0xcb, 0xe6, 0xfa, 0x95, 0x6c, 0xcb, 0x16, 0xf4, 0x18, 0x0f, 0x00, 0x74, 0xb9, + 0x1f, 0xd2, 0x54, 0xa0, 0x9b, 0xd6, 0x8c, 0x99, 0x1e, 0x63, 0xd0, 0x9f, 0x27, 0xcc, 0x09, 0xc0, + 0x8c, 0x5d, 0x45, 0xc0, 0x67, 0x00, 0x79, 0x1b, 0x61, 0x05, 0xcc, 0x35, 0x16, 0x97, 0xc4, 0xa0, + 0x5d, 0x6c, 0x1a, 0x90, 0xf1, 0x75, 0x41, 0x23, 0x71, 0x89, 0x88, 0xee, 0x4c, 0x4d, 0x5a, 0x3e, + 0x6c, 0xb3, 0xa5, 0xea, 0x60, 0xae, 0x2e, 0x45, 0x1f, 0x42, 0xbb, 0x58, 0x8c, 0x5a, 0x2b, 0x16, + 0x14, 0xa8, 0x83, 0x52, 0x41, 0x8a, 0x1e, 0xc0, 0x7a, 0xb9, 0x10, 0x45, 0x85, 0x7b, 0x31, 0x57, + 0x9e, 0x0e, 0x4c, 0x73, 0x5e, 0x60, 0x7f, 0x1f, 0x20, 0x2f, 0x58, 0x6d, 0xf8, 0xe6, 0x4a, 0xd8, + 0x19, 0xad, 0xfb, 0xd0, 0x29, 0xf5, 0x3a, 0xf6, 0xa2, 0x2e, 0x6a, 0x80, 0x2e, 0xcb, 0xa3, 0xe5, + 0x9e, 0xc2, 0x9a, 0xbe, 0xb0, 0xd3, 0xb8, 0x6c, 0x03, 0x8b, 0xc5, 0xb5, 0x0d, 0xdd, 0x82, 0x82, + 0xfb, 0x25, 0x17, 0xaa, 0x58, 0x40, 0x17, 0x2e, 0xd4, 0x82, 0xba, 0x7a, 0xa9, 0xa0, 0x03, 0xe8, + 0x3e, 0xb1, 0xb5, 0x91, 0xa9, 0xdb, 0x8c, 0x39, 0x0b, 0xea, 0xd4, 0xc1, 0x60, 0x11, 0xc9, 0x9c, + 0xea, 0xcf, 0xa1, 0x37, 0x57, 0xb3, 0xa1, 0x3b, 0xd9, 0xfc, 0x66, 0x61, 0x31, 0xb7, 0xd4, 0xac, + 0x43, 0xd8, 0x98, 0x2d, 0xd9, 0xd0, 0xab, 0x26, 0x53, 0x2d, 0x2e, 0xe5, 0x96, 0x8a, 0xfa, 0x18, + 0x1a, 0xb6, 0x44, 0x40, 0x66, 0x4e, 0x36, 0x53, 0x32, 0x2c, 0x5b, 0xba, 0xd7, 0xfe, 0xee, 0xfb, + 0x3b, 0x95, 0x7f, 0x7c, 0x7f, 0xa7, 0xf2, 0xef, 0xef, 0xef, 0x54, 0x4e, 0x57, 0x15, 0xf5, 0xfd, + 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x36, 0x43, 0x56, 0x42, 0x2f, 0x1f, 0x00, 0x00, } diff --git a/protocols/grpc/agent.proto b/protocols/grpc/agent.proto index 2672e6a62f..bbb33dd8b9 100644 --- a/protocols/grpc/agent.proto +++ b/protocols/grpc/agent.proto @@ -42,9 +42,7 @@ service AgentService { rpc TtyWinResize(TtyWinResizeRequest) returns (google.protobuf.Empty); // networking - rpc AddInterface(AddInterfaceRequest) returns(types.Interface); rpc UpdateInterface(UpdateInterfaceRequest) returns (types.Interface); - rpc RemoveInterface(RemoveInterfaceRequest) returns (types.Interface); rpc UpdateRoutes(UpdateRoutesRequest) returns (Routes); rpc ListInterfaces(ListInterfacesRequest) returns(Interfaces); rpc ListRoutes(ListRoutesRequest) returns (Routes); @@ -289,14 +287,6 @@ message UpdateInterfaceRequest { types.Interface interface = 1; } -message AddInterfaceRequest { - types.Interface interface = 1; -} - -message RemoveInterfaceRequest { - types.Interface interface = 1; -} - message UpdateRoutesRequest { Routes routes = 1; } diff --git a/protocols/mockserver/mockserver.go b/protocols/mockserver/mockserver.go index 848dcfdf50..394ae8511c 100644 --- a/protocols/mockserver/mockserver.go +++ b/protocols/mockserver/mockserver.go @@ -287,26 +287,6 @@ func (m *mockServer) DestroySandbox(ctx context.Context, req *pb.DestroySandboxR return &types.Empty{}, nil } -func (m *mockServer) AddInterface(context.Context, *pb.AddInterfaceRequest) (*pbTypes.Interface, error) { - mockLock.RLock() - defer mockLock.RUnlock() - if err := m.podExist(); err != nil { - return nil, err - } - - return nil, nil -} - -func (m *mockServer) RemoveInterface(context.Context, *pb.RemoveInterfaceRequest) (*pbTypes.Interface, error) { - mockLock.RLock() - defer mockLock.RUnlock() - if err := m.podExist(); err != nil { - return nil, err - } - - return nil, nil -} - func (m *mockServer) UpdateInterface(ctx context.Context, req *pb.UpdateInterfaceRequest) (*pbTypes.Interface, error) { mockLock.RLock() defer mockLock.RUnlock()