webclient: load,store,select of Bash- and HIDScripts; some fixes

This commit is contained in:
MaMe82 2018-10-13 19:43:04 +02:00
parent 551beb70f3
commit 1fb52cfd56
14 changed files with 537 additions and 291 deletions

View File

@ -111,6 +111,7 @@ install:
# reinit service daemon
systemctl daemon-reload
# enable service
systemctl enable haveged
systemctl enable P4wnP1.service
# start service
service P4wnP1 start

View File

@ -5149,6 +5149,8 @@ type P4WNP1Client interface {
StoreTriggerActionSet(ctx context.Context, in *TriggerActionSet, opts ...grpcweb.CallOption) (*Empty, error)
DeployStoredTriggerActionSetReplace(ctx context.Context, in *StringMessage, opts ...grpcweb.CallOption) (*TriggerActionSet, error)
DeployStoredTriggerActionSetAdd(ctx context.Context, in *StringMessage, opts ...grpcweb.CallOption) (*TriggerActionSet, error)
ListStoredHIDScripts(ctx context.Context, in *Empty, opts ...grpcweb.CallOption) (*StringMessageArray, error)
ListStoredBashScripts(ctx context.Context, in *Empty, opts ...grpcweb.CallOption) (*StringMessageArray, error)
}
type p4WNP1Client struct {
@ -5535,3 +5537,21 @@ func (c *p4WNP1Client) DeployStoredTriggerActionSetAdd(ctx context.Context, in *
return new(TriggerActionSet).Unmarshal(resp)
}
func (c *p4WNP1Client) ListStoredHIDScripts(ctx context.Context, in *Empty, opts ...grpcweb.CallOption) (*StringMessageArray, error) {
resp, err := c.client.RPCCall(ctx, "ListStoredHIDScripts", in.Marshal(), opts...)
if err != nil {
return nil, err
}
return new(StringMessageArray).Unmarshal(resp)
}
func (c *p4WNP1Client) ListStoredBashScripts(ctx context.Context, in *Empty, opts ...grpcweb.CallOption) (*StringMessageArray, error) {
resp, err := c.client.RPCCall(ctx, "ListStoredBashScripts", in.Marshal(), opts...)
if err != nil {
return nil, err
}
return new(StringMessageArray).Unmarshal(resp)
}

View File

@ -2531,6 +2531,8 @@ type P4WNP1Client interface {
StoreTriggerActionSet(ctx context.Context, in *TriggerActionSet, opts ...grpc.CallOption) (*Empty, error)
DeployStoredTriggerActionSetReplace(ctx context.Context, in *StringMessage, opts ...grpc.CallOption) (*TriggerActionSet, error)
DeployStoredTriggerActionSetAdd(ctx context.Context, in *StringMessage, opts ...grpc.CallOption) (*TriggerActionSet, error)
ListStoredHIDScripts(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*StringMessageArray, error)
ListStoredBashScripts(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*StringMessageArray, error)
}
type p4WNP1Client struct {
@ -2915,6 +2917,24 @@ func (c *p4WNP1Client) DeployStoredTriggerActionSetAdd(ctx context.Context, in *
return out, nil
}
func (c *p4WNP1Client) ListStoredHIDScripts(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*StringMessageArray, error) {
out := new(StringMessageArray)
err := grpc.Invoke(ctx, "/P4wnP1_grpc.P4WNP1/ListStoredHIDScripts", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *p4WNP1Client) ListStoredBashScripts(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*StringMessageArray, error) {
out := new(StringMessageArray)
err := grpc.Invoke(ctx, "/P4wnP1_grpc.P4WNP1/ListStoredBashScripts", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// Server API for P4WNP1 service
type P4WNP1Server interface {
@ -2966,6 +2986,8 @@ type P4WNP1Server interface {
StoreTriggerActionSet(context.Context, *TriggerActionSet) (*Empty, error)
DeployStoredTriggerActionSetReplace(context.Context, *StringMessage) (*TriggerActionSet, error)
DeployStoredTriggerActionSetAdd(context.Context, *StringMessage) (*TriggerActionSet, error)
ListStoredHIDScripts(context.Context, *Empty) (*StringMessageArray, error)
ListStoredBashScripts(context.Context, *Empty) (*StringMessageArray, error)
}
func RegisterP4WNP1Server(s *grpc.Server, srv P4WNP1Server) {
@ -3677,6 +3699,42 @@ func _P4WNP1_DeployStoredTriggerActionSetAdd_Handler(srv interface{}, ctx contex
return interceptor(ctx, in, info, handler)
}
func _P4WNP1_ListStoredHIDScripts_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(P4WNP1Server).ListStoredHIDScripts(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/P4wnP1_grpc.P4WNP1/ListStoredHIDScripts",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(P4WNP1Server).ListStoredHIDScripts(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
func _P4WNP1_ListStoredBashScripts_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(P4WNP1Server).ListStoredBashScripts(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/P4wnP1_grpc.P4WNP1/ListStoredBashScripts",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(P4WNP1Server).ListStoredBashScripts(ctx, req.(*Empty))
}
return interceptor(ctx, in, info, handler)
}
var _P4WNP1_serviceDesc = grpc.ServiceDesc{
ServiceName: "P4wnP1_grpc.P4WNP1",
HandlerType: (*P4WNP1Server)(nil),
@ -3833,6 +3891,14 @@ var _P4WNP1_serviceDesc = grpc.ServiceDesc{
MethodName: "DeployStoredTriggerActionSetAdd",
Handler: _P4WNP1_DeployStoredTriggerActionSetAdd_Handler,
},
{
MethodName: "ListStoredHIDScripts",
Handler: _P4WNP1_ListStoredHIDScripts_Handler,
},
{
MethodName: "ListStoredBashScripts",
Handler: _P4WNP1_ListStoredBashScripts_Handler,
},
},
Streams: []grpc.StreamDesc{
{
@ -3847,223 +3913,225 @@ var _P4WNP1_serviceDesc = grpc.ServiceDesc{
func init() { proto.RegisterFile("grpc.proto", fileDescriptor0) }
var fileDescriptor0 = []byte{
// 3487 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x5a, 0xdd, 0x73, 0xe3, 0xc8,
0x71, 0x27, 0x45, 0x49, 0x24, 0x9b, 0x5f, 0xd0, 0xec, 0xae, 0x96, 0xab, 0xfd, 0x3c, 0xf8, 0x7c,
0x56, 0xe4, 0x58, 0xb7, 0xa7, 0xd3, 0xed, 0x9d, 0xaf, 0xec, 0x3a, 0xf3, 0x9b, 0xdc, 0xe5, 0x57,
0x0d, 0xc8, 0x53, 0x12, 0x57, 0x99, 0x86, 0x80, 0x11, 0x05, 0x2f, 0x09, 0x30, 0xc0, 0x40, 0x7b,
0xca, 0x83, 0x53, 0x95, 0x7f, 0x22, 0xff, 0x45, 0x1e, 0x93, 0xbf, 0x28, 0xef, 0x79, 0xc9, 0xb3,
0x5d, 0x33, 0x03, 0x80, 0x00, 0x04, 0x52, 0x7b, 0x77, 0x6f, 0x3d, 0x3d, 0xdd, 0xbf, 0x19, 0x74,
0xf7, 0xf4, 0xf4, 0x34, 0x09, 0x30, 0xb7, 0x57, 0xda, 0xe9, 0xca, 0xb6, 0xa8, 0x85, 0x0a, 0xe3,
0xf3, 0x0f, 0xe6, 0xf8, 0x8b, 0x19, 0x63, 0xc9, 0x7f, 0x01, 0x69, 0x62, 0x1b, 0xf3, 0x39, 0xb1,
0x6b, 0x1a, 0x35, 0x2c, 0x53, 0x21, 0x14, 0xd5, 0xa1, 0x1c, 0xe1, 0x39, 0xd5, 0xf4, 0xab, 0xcc,
0x71, 0xe1, 0xec, 0xe8, 0x34, 0xa4, 0x79, 0x1a, 0x11, 0xc1, 0x31, 0x0d, 0x84, 0x60, 0x77, 0xa8,
0x2e, 0x49, 0x75, 0xe7, 0x55, 0xfa, 0x38, 0x8f, 0x39, 0x2d, 0xff, 0x37, 0x40, 0x29, 0x22, 0x86,
0xca, 0xb0, 0x63, 0xe8, 0xd5, 0xf4, 0xab, 0xf4, 0x71, 0x09, 0xef, 0x18, 0x3a, 0xaa, 0x42, 0xd6,
0x32, 0x89, 0x72, 0x6d, 0x51, 0xae, 0x98, 0xc3, 0xfe, 0x10, 0x1d, 0x41, 0xce, 0x70, 0x98, 0xd6,
0x0d, 0xa9, 0x66, 0xf8, 0x54, 0x30, 0x46, 0xcf, 0x20, 0x6f, 0x2c, 0x97, 0x2e, 0x55, 0x2f, 0x17,
0xa4, 0xba, 0xcb, 0x27, 0xd7, 0x0c, 0xd4, 0x87, 0xb2, 0x43, 0xec, 0x1b, 0x43, 0x23, 0x0a, 0x55,
0x6d, 0x4a, 0xf4, 0xea, 0xde, 0xab, 0xf4, 0x71, 0xe1, 0x4c, 0x4e, 0xfa, 0x1a, 0x25, 0x22, 0xd9,
0x4d, 0xe1, 0x98, 0x2e, 0xfa, 0x27, 0x40, 0xae, 0x73, 0xd9, 0x51, 0xf5, 0x39, 0xa1, 0x0d, 0xcb,
0x34, 0x89, 0xc6, 0x10, 0xf7, 0x39, 0xe2, 0x67, 0x49, 0x88, 0x53, 0xa5, 0x1e, 0x93, 0xee, 0xa6,
0x70, 0x02, 0x06, 0x52, 0xe1, 0x51, 0xc0, 0x6d, 0x1a, 0x8e, 0x16, 0x80, 0x67, 0x39, 0xf8, 0x3f,
0x6c, 0x05, 0x0f, 0x2b, 0x74, 0x53, 0x38, 0x19, 0x09, 0xf5, 0xa0, 0xf4, 0xc1, 0xb8, 0x32, 0x6a,
0x63, 0xdf, 0x12, 0x39, 0x0e, 0xfd, 0x49, 0x12, 0xf4, 0x45, 0x58, 0xb0, 0x9b, 0xc2, 0x51, 0x4d,
0x66, 0x07, 0xc6, 0x08, 0xb6, 0x5f, 0x73, 0x14, 0xaa, 0x56, 0xf3, 0x9b, 0xed, 0x70, 0x71, 0x47,
0x9a, 0xd9, 0xe1, 0x2e, 0x06, 0xfa, 0x16, 0x72, 0x8e, 0x73, 0xdd, 0xb7, 0xe6, 0x86, 0x59, 0x05,
0x8e, 0xf7, 0x2c, 0xd1, 0x53, 0x4a, 0x97, 0xcb, 0x74, 0x53, 0x38, 0x90, 0x47, 0x18, 0x24, 0xfd,
0x5a, 0x5b, 0xf5, 0x89, 0xea, 0x90, 0x8e, 0xad, 0x9a, 0xec, 0x1b, 0x0b, 0x1c, 0xe3, 0xd3, 0x24,
0x8c, 0x66, 0xb7, 0x31, 0x0e, 0xcb, 0x76, 0x53, 0xf8, 0x8e, 0x3e, 0x6a, 0x43, 0x71, 0x6e, 0x5b,
0xee, 0x0a, 0x13, 0x8d, 0xb0, 0xe8, 0x2b, 0x72, 0xbc, 0x57, 0x49, 0x78, 0x9d, 0x90, 0x5c, 0x37,
0x85, 0x23, 0x7a, 0xe8, 0x4f, 0xf0, 0x30, 0x3c, 0x56, 0xc8, 0xbf, 0xba, 0xc4, 0xd4, 0x48, 0xb5,
0xc4, 0xf1, 0x8e, 0xef, 0xc3, 0xf3, 0xe5, 0xbb, 0x29, 0x9c, 0x88, 0x83, 0xce, 0x61, 0x7f, 0xbe,
0x32, 0xac, 0x9e, 0x59, 0x2d, 0x73, 0xc4, 0xc4, 0xd3, 0xda, 0x19, 0xf7, 0x46, 0x3d, 0x66, 0x33,
0x4f, 0x16, 0x35, 0x01, 0x2e, 0x55, 0xe7, 0x5a, 0xd1, 0x6c, 0x63, 0x45, 0xab, 0x95, 0x84, 0x93,
0xe1, 0xe5, 0x05, 0xe6, 0xf7, 0x7a, 0x20, 0xd9, 0x4d, 0xe3, 0x90, 0x1e, 0xaa, 0x41, 0xfe, 0xda,
0xd0, 0x3d, 0x10, 0x29, 0x21, 0xa8, 0x42, 0x20, 0xdd, 0x5e, 0x33, 0xc0, 0x58, 0x6b, 0x21, 0x0d,
0x0e, 0x75, 0xb2, 0x5a, 0x58, 0xb7, 0x0a, 0xa1, 0xd4, 0x30, 0xe7, 0xce, 0x84, 0x2c, 0x57, 0x0b,
0x95, 0x92, 0xea, 0x41, 0x42, 0xfc, 0x0b, 0xbc, 0x66, 0xa2, 0x42, 0x37, 0x8d, 0x37, 0x40, 0xa1,
0x13, 0xc8, 0x2c, 0xac, 0x79, 0x15, 0x71, 0xc4, 0xc3, 0x04, 0xc4, 0xbe, 0x35, 0xef, 0xa6, 0x31,
0x13, 0x42, 0x6f, 0x20, 0xcb, 0x6c, 0x34, 0x72, 0x69, 0xf5, 0x41, 0x82, 0x41, 0x85, 0x3c, 0xb3,
0xe7, 0xc8, 0x65, 0x9f, 0xe2, 0x0b, 0xa3, 0xdf, 0x41, 0x9e, 0xfb, 0x47, 0x21, 0xa6, 0x5e, 0x7d,
0x98, 0x10, 0xc0, 0x9e, 0xa6, 0x2f, 0xc3, 0xcc, 0x10, 0x28, 0xd4, 0xf3, 0x90, 0xf5, 0x5c, 0x55,
0xcf, 0xc1, 0xbe, 0x10, 0x95, 0x1f, 0xc3, 0xa3, 0xc4, 0xfc, 0x24, 0x3f, 0x85, 0x27, 0x1b, 0xd3,
0x8c, 0xfc, 0x02, 0x9e, 0x6d, 0x4b, 0x13, 0xf2, 0x21, 0x3c, 0x4c, 0x3a, 0xeb, 0x21, 0xd0, 0xbb,
0x67, 0x56, 0xfe, 0x1c, 0x2a, 0xb1, 0x03, 0xc8, 0xd2, 0xef, 0x82, 0x11, 0x53, 0x87, 0xd8, 0x3c,
0x97, 0xe7, 0xf1, 0x9a, 0x21, 0x3f, 0x81, 0xc7, 0x1b, 0x4e, 0x9b, 0xdc, 0x83, 0x07, 0x09, 0x81,
0xce, 0xf0, 0xb8, 0x3d, 0xf8, 0xfd, 0xe1, 0xe1, 0x05, 0x0c, 0xf4, 0x10, 0xf6, 0x6e, 0xd4, 0x85,
0x2b, 0x6e, 0x96, 0x3d, 0x2c, 0x06, 0xf2, 0xbf, 0xc3, 0xd3, 0x2d, 0x67, 0xe6, 0x1e, 0xc8, 0x13,
0x90, 0x7a, 0x73, 0xd3, 0xb2, 0xc9, 0xc8, 0xa5, 0xa3, 0xab, 0x91, 0xad, 0x13, 0xdb, 0xbb, 0x7e,
0xee, 0xf0, 0xd1, 0x21, 0xec, 0xf3, 0x15, 0x9d, 0x6a, 0xe6, 0x55, 0xe6, 0x78, 0x0f, 0x7b, 0x23,
0xf9, 0x7f, 0xd2, 0xc1, 0xdd, 0x26, 0xce, 0x18, 0x3a, 0x15, 0xf1, 0x33, 0x74, 0x97, 0x7c, 0xc5,
0xf2, 0xd9, 0xc3, 0x48, 0x14, 0x30, 0xa9, 0xa1, 0xbb, 0xc4, 0xbe, 0x10, 0xfa, 0x3d, 0xc0, 0xca,
0x5d, 0x2c, 0xa6, 0xab, 0xa6, 0xf5, 0xc1, 0xe4, 0xeb, 0x97, 0xcf, 0x9e, 0xdf, 0x51, 0xe9, 0x99,
0xe3, 0x40, 0x08, 0x87, 0x14, 0xd0, 0xd7, 0x00, 0xe2, 0x48, 0xb7, 0xf4, 0xb9, 0xb8, 0x22, 0xcb,
0x67, 0x8f, 0x13, 0xd4, 0xd9, 0x34, 0x0e, 0x89, 0xca, 0x5f, 0xc3, 0xa3, 0xc4, 0x23, 0x8e, 0x5e,
0x00, 0x38, 0x9c, 0x0a, 0x59, 0x2d, 0xc4, 0x91, 0xdf, 0xc0, 0xc3, 0xa4, 0x63, 0x7d, 0xaf, 0xde,
0xff, 0xa7, 0xe1, 0xd9, 0xb6, 0xf3, 0x8b, 0x64, 0x28, 0x52, 0x8f, 0x0e, 0x41, 0x44, 0x78, 0xe8,
0x2d, 0xec, 0xd2, 0xdb, 0x15, 0xf1, 0xec, 0xf4, 0xe6, 0xa3, 0x93, 0xc3, 0xa9, 0x4f, 0x4c, 0x6e,
0x57, 0x04, 0x73, 0x0c, 0x99, 0x40, 0x31, 0xcc, 0x45, 0x07, 0x50, 0x6a, 0x4f, 0xfb, 0xfd, 0x99,
0xd2, 0x9a, 0x4c, 0x7a, 0xc3, 0x8e, 0x22, 0xa5, 0x50, 0x01, 0xb2, 0xc3, 0xd6, 0xe4, 0x62, 0x84,
0xdf, 0x49, 0x69, 0x94, 0x83, 0xdd, 0x8b, 0x5e, 0xbb, 0x27, 0xed, 0xa0, 0x2c, 0x64, 0xa6, 0x4a,
0x5d, 0xca, 0xa0, 0x12, 0xe4, 0xeb, 0xfd, 0x69, 0x6b, 0x32, 0x1a, 0x4d, 0xba, 0xd2, 0x2e, 0x7a,
0x00, 0x95, 0x09, 0xee, 0x75, 0x3a, 0x2d, 0x3c, 0xab, 0x35, 0x26, 0xbd, 0xd1, 0x50, 0x91, 0xf6,
0xe4, 0x02, 0xe4, 0x83, 0x24, 0x23, 0xaf, 0xa0, 0x14, 0xc9, 0x20, 0x3f, 0x3a, 0x5c, 0x3e, 0x0f,
0x9f, 0x83, 0xf2, 0xd9, 0x93, 0x3b, 0xd2, 0x23, 0x97, 0x7e, 0xcf, 0x04, 0xfc, 0x23, 0xd2, 0x82,
0x4a, 0x2c, 0xf3, 0xfc, 0xa4, 0x93, 0xf6, 0x01, 0x8e, 0x58, 0x5a, 0xc0, 0xec, 0x68, 0x39, 0xd4,
0x37, 0xaf, 0x42, 0x2d, 0x5b, 0x9d, 0x73, 0xd7, 0x4d, 0x12, 0x5c, 0x17, 0xe6, 0xa1, 0xaf, 0x20,
0xe7, 0x78, 0x6a, 0x1c, 0xba, 0x10, 0xdb, 0xfc, 0x85, 0xd1, 0x36, 0x7c, 0x5c, 0x1c, 0x88, 0xca,
0xff, 0x99, 0x81, 0x62, 0x78, 0x8a, 0x95, 0x98, 0xe6, 0x7a, 0x0d, 0x4e, 0xb3, 0x32, 0x51, 0x37,
0x1c, 0x56, 0xf7, 0xe9, 0xde, 0x11, 0x0e, 0xc6, 0x2c, 0x2e, 0x6d, 0x32, 0x77, 0x17, 0x2a, 0xb5,
0xec, 0x5b, 0x7e, 0x42, 0xf2, 0x38, 0xc4, 0x41, 0xdf, 0x41, 0xf1, 0x83, 0x65, 0xbf, 0x37, 0xcc,
0xf9, 0x6c, 0x69, 0xe9, 0xa2, 0x92, 0x2c, 0xc7, 0x72, 0x37, 0xdb, 0xc0, 0x85, 0x10, 0x1a, 0x58,
0x3a, 0xc1, 0x85, 0x0f, 0xeb, 0x01, 0x7a, 0x03, 0x79, 0xd5, 0xa5, 0xd7, 0x42, 0x7b, 0x2f, 0xc1,
0x2d, 0x4c, 0xbb, 0xe6, 0xd2, 0x6b, 0xae, 0x9a, 0x53, 0x3d, 0x8a, 0x55, 0xbd, 0xda, 0xb5, 0x6a,
0x9a, 0x64, 0xc1, 0x0b, 0xc9, 0x12, 0xf6, 0x87, 0xe8, 0x14, 0xf6, 0xd5, 0xd5, 0xac, 0xae, 0x28,
0x5e, 0x11, 0xf8, 0xf8, 0x0e, 0x5c, 0x5d, 0x51, 0x1a, 0x57, 0x73, 0xbc, 0xa7, 0xae, 0xea, 0x8a,
0x82, 0xbe, 0x83, 0x8a, 0xb6, 0x30, 0x88, 0x49, 0x99, 0xce, 0x6c, 0x61, 0x38, 0xb4, 0x9a, 0xe3,
0xa5, 0xfb, 0x46, 0xc5, 0x92, 0x90, 0xaf, 0x2b, 0x4a, 0xdf, 0x70, 0x28, 0x7a, 0xca, 0x2f, 0x72,
0x32, 0x73, 0x1c, 0x43, 0xe7, 0xd5, 0x5c, 0x0e, 0xe7, 0x18, 0x43, 0x71, 0x0c, 0x9d, 0xe5, 0x3e,
0x93, 0xfc, 0xb0, 0xb4, 0x4c, 0x5e, 0xb3, 0xe4, 0xb0, 0x37, 0x92, 0xff, 0x2b, 0x0d, 0x79, 0xee,
0x19, 0xca, 0x4e, 0xef, 0x29, 0xec, 0x72, 0x03, 0x88, 0x28, 0x3e, 0xba, 0xeb, 0x5a, 0x26, 0xc5,
0x2d, 0xc0, 0xe5, 0xc2, 0x5f, 0xbf, 0x13, 0xfd, 0x7a, 0x04, 0xbb, 0x7c, 0x1f, 0xc2, 0x55, 0x9c,
0x46, 0x0d, 0xa8, 0x68, 0xae, 0x6d, 0x13, 0x33, 0x08, 0x3d, 0xee, 0xa7, 0xad, 0x31, 0x14, 0xd7,
0x90, 0xcf, 0x00, 0xd6, 0x26, 0x60, 0xcb, 0x28, 0x4a, 0xaf, 0xe9, 0xc7, 0x11, 0xa3, 0x91, 0x04,
0x99, 0xb1, 0xf2, 0xce, 0x7b, 0xbd, 0x30, 0x52, 0xfe, 0x04, 0x4a, 0x0a, 0xb5, 0x99, 0xab, 0x89,
0xe3, 0xb0, 0x50, 0x97, 0x20, 0xb3, 0x74, 0xe6, 0x9e, 0x16, 0x23, 0xe5, 0xd7, 0x80, 0x22, 0x22,
0x35, 0xdb, 0x56, 0x6f, 0x59, 0x48, 0x2e, 0x9d, 0x39, 0xa7, 0xf9, 0x3b, 0x2a, 0x8f, 0x83, 0xb1,
0x7c, 0x0a, 0xc5, 0xd6, 0x0d, 0x31, 0xa9, 0x77, 0x9a, 0x58, 0x88, 0x32, 0xa7, 0x11, 0x93, 0xe5,
0x21, 0x0e, 0x9d, 0xc1, 0x21, 0x8e, 0xac, 0x02, 0x70, 0x79, 0x7e, 0xb0, 0xd1, 0x11, 0x64, 0xa9,
0xc3, 0x17, 0x14, 0xbb, 0xe8, 0xa6, 0xb0, 0xcf, 0x40, 0x87, 0xb0, 0x47, 0x2f, 0x2d, 0x4b, 0xd8,
0x34, 0xd7, 0x4d, 0x61, 0x31, 0x44, 0x55, 0xd8, 0xa7, 0x86, 0x49, 0xdf, 0x9c, 0x73, 0xab, 0x66,
0x58, 0x25, 0x28, 0xc6, 0xf5, 0x3d, 0xc8, 0xdc, 0xa8, 0x0b, 0xb9, 0x0f, 0x7b, 0x7c, 0x09, 0x66,
0x16, 0xba, 0xde, 0x05, 0xa7, 0xd1, 0xe7, 0xc1, 0xed, 0xb7, 0x93, 0x10, 0x56, 0xeb, 0xad, 0x05,
0xd7, 0xe2, 0x9f, 0xe1, 0x21, 0x3b, 0xfb, 0x4d, 0xc3, 0x1e, 0xd9, 0x6d, 0x63, 0x41, 0xfc, 0x0f,
0x95, 0x20, 0xa3, 0x1b, 0x7e, 0xb5, 0xc0, 0x48, 0x16, 0x5c, 0x2b, 0x9b, 0x5c, 0x19, 0x3f, 0x78,
0x46, 0xf7, 0x46, 0xcc, 0x24, 0x96, 0xb9, 0xb8, 0x6d, 0x5b, 0x0b, 0x76, 0x2d, 0x8b, 0xa7, 0x5f,
0x88, 0xc3, 0xae, 0xaf, 0xd8, 0x0a, 0xce, 0xca, 0x32, 0x1d, 0x22, 0x8e, 0xbb, 0xe3, 0x2e, 0xe8,
0x58, 0xa5, 0xd7, 0xfe, 0x35, 0xb4, 0xe6, 0xc8, 0x23, 0xa8, 0x60, 0xa2, 0xea, 0xe1, 0x5d, 0x21,
0xd8, 0x5d, 0xad, 0x85, 0x39, 0xcd, 0xb2, 0xa0, 0xc3, 0xee, 0x37, 0xbe, 0xad, 0x0c, 0x16, 0x03,
0x26, 0xa9, 0xab, 0x54, 0xe5, 0xfb, 0x29, 0x62, 0x4e, 0xcb, 0xaf, 0x41, 0x5a, 0x03, 0x7a, 0x9b,
0x78, 0x06, 0x79, 0x9b, 0xa8, 0x7a, 0xc3, 0x72, 0x4d, 0xea, 0x59, 0x72, 0xcd, 0x90, 0x6f, 0x40,
0xba, 0xb0, 0x0d, 0x4a, 0xee, 0xdb, 0xc3, 0x21, 0x4b, 0x03, 0x2b, 0x56, 0x4f, 0x8a, 0x9c, 0xe6,
0x8d, 0x58, 0xb6, 0x5d, 0xba, 0x0e, 0x1d, 0x5a, 0xb4, 0xf5, 0x03, 0x3b, 0xeb, 0xc2, 0x3a, 0x11,
0x5e, 0xb0, 0xd3, 0xdd, 0xd0, 0x4e, 0x7f, 0x09, 0x15, 0xb6, 0x64, 0xcf, 0xbc, 0xb2, 0xb6, 0x2c,
0x2b, 0xff, 0x15, 0xa4, 0xb5, 0x98, 0xf7, 0x41, 0x49, 0x49, 0x97, 0x9d, 0x53, 0xe3, 0xdf, 0x88,
0x67, 0x21, 0x4e, 0x33, 0x1e, 0xcf, 0x02, 0x19, 0x7e, 0xa4, 0x83, 0x93, 0xbe, 0xb4, 0xf4, 0x89,
0xb1, 0x14, 0xb9, 0x35, 0x83, 0xfd, 0x21, 0x33, 0xb2, 0xe1, 0x34, 0x0d, 0x9b, 0x67, 0xcd, 0x1c,
0x16, 0x03, 0xf9, 0x5f, 0x40, 0x0a, 0xaa, 0x8a, 0xd0, 0x09, 0x11, 0xa5, 0x44, 0xd8, 0xab, 0x6b,
0x0e, 0xfa, 0x0c, 0xca, 0xd4, 0x58, 0x12, 0xcb, 0xa5, 0x0a, 0xd1, 0x2c, 0x53, 0x77, 0xbc, 0xa4,
0x12, 0xe3, 0xca, 0x2f, 0xa0, 0x18, 0x60, 0xbf, 0xb5, 0x2e, 0xe3, 0x9d, 0x08, 0xf9, 0xd3, 0xd0,
0xda, 0x6f, 0xad, 0x4b, 0x9e, 0x1c, 0x25, 0xc8, 0x18, 0xba, 0x68, 0x86, 0x94, 0x30, 0x23, 0xe5,
0xef, 0xa1, 0xda, 0xed, 0x35, 0xb1, 0x6b, 0x9a, 0x86, 0x39, 0x7f, 0x6b, 0x5d, 0xf2, 0xdc, 0x86,
0x79, 0x8c, 0x85, 0x10, 0x33, 0xbc, 0xb7, 0x81, 0x60, 0xf7, 0x66, 0xd9, 0xd3, 0x7d, 0x2b, 0x31,
0x9a, 0x39, 0xd6, 0xb1, 0x5c, 0x5b, 0x23, 0x5e, 0x8e, 0xf3, 0x46, 0xf2, 0x5f, 0xa1, 0x12, 0xfa,
0x72, 0x0e, 0xf7, 0x6b, 0xc8, 0xfc, 0xc5, 0xba, 0xe4, 0x78, 0xf1, 0x64, 0x17, 0xde, 0x28, 0x66,
0x52, 0xcc, 0x4a, 0x86, 0xd3, 0x36, 0x4c, 0xc3, 0xb9, 0x0e, 0x2e, 0xc2, 0x10, 0x67, 0x7d, 0x36,
0xde, 0x3a, 0x96, 0xb9, 0xbe, 0x0a, 0x7d, 0x8e, 0x7c, 0x0a, 0x85, 0x7e, 0xab, 0x19, 0xdc, 0xb4,
0x2f, 0xa1, 0x70, 0xb9, 0x30, 0xcc, 0xf7, 0x33, 0x2d, 0x88, 0xe3, 0x12, 0x06, 0xce, 0x12, 0x81,
0xfc, 0xbf, 0xbb, 0x50, 0x16, 0x2f, 0x8c, 0x40, 0xa7, 0x0a, 0x59, 0x62, 0x8a, 0x8b, 0x38, 0x2d,
0x5a, 0x39, 0xde, 0x90, 0x99, 0xf1, 0xc6, 0xd0, 0xfd, 0xdc, 0x7a, 0x63, 0x70, 0xce, 0x2a, 0xc8,
0xf3, 0x8c, 0xe4, 0x91, 0xad, 0x9a, 0xee, 0x95, 0xaa, 0x51, 0xd7, 0x26, 0x36, 0x8f, 0x97, 0x3c,
0x8e, 0xf0, 0xd8, 0x0a, 0x2b, 0xdb, 0xd2, 0x5d, 0x8d, 0xf2, 0xb0, 0xc9, 0x63, 0x7f, 0xc8, 0xcd,
0x4a, 0x6c, 0x43, 0x15, 0xf7, 0x29, 0x33, 0x2b, 0x1f, 0xa1, 0x17, 0x50, 0x70, 0x1d, 0x32, 0x6b,
0x34, 0x1b, 0xb3, 0x56, 0x63, 0xc0, 0xef, 0xd4, 0x1c, 0xce, 0xbb, 0x0e, 0x69, 0x34, 0x1b, 0xad,
0xc6, 0x80, 0xdd, 0x7e, 0x6c, 0x1e, 0x0f, 0x9b, 0x3d, 0x85, 0xf7, 0x46, 0x72, 0x38, 0xe7, 0x3a,
0x84, 0x8f, 0xd1, 0x31, 0x48, 0x6c, 0xb2, 0xdb, 0x6b, 0xce, 0xde, 0xb5, 0xfe, 0xb9, 0x3e, 0xaa,
0xe1, 0xa6, 0x77, 0x43, 0x96, 0x5d, 0x87, 0x74, 0x7b, 0x4d, 0x9f, 0x8b, 0x64, 0x28, 0xf9, 0x92,
0x83, 0xd1, 0x54, 0x69, 0xf1, 0x36, 0x46, 0x0e, 0x17, 0x84, 0x18, 0x67, 0xf9, 0x5b, 0x61, 0x32,
0xb8, 0x76, 0xc1, 0x9b, 0x14, 0x62, 0x2b, 0x2c, 0x9e, 0x6a, 0x17, 0xe8, 0x31, 0x64, 0xd9, 0xfc,
0x74, 0xa0, 0xf0, 0x86, 0x43, 0x0e, 0xef, 0xbb, 0x0e, 0x99, 0x0e, 0x14, 0xf4, 0x1c, 0x80, 0x4d,
0x28, 0x2d, 0xdc, 0xab, 0xf5, 0xbd, 0x8b, 0x98, 0xe9, 0x09, 0x06, 0x7a, 0x0b, 0x65, 0xdb, 0xd4,
0x0d, 0x67, 0x16, 0x94, 0x58, 0xa2, 0x1b, 0xf0, 0x8b, 0x68, 0x7d, 0x18, 0xf1, 0x55, 0x8b, 0x5e,
0x13, 0xdb, 0x24, 0x14, 0x97, 0xb8, 0x6a, 0xe0, 0xc2, 0x01, 0x48, 0x9a, 0xae, 0xcd, 0x88, 0xb6,
0x5c, 0xa3, 0x55, 0x3e, 0x1e, 0xad, 0xac, 0xe9, 0x5a, 0x4b, 0x5b, 0x06, 0x70, 0x35, 0x28, 0xba,
0xcb, 0xd0, 0xc6, 0x44, 0x9f, 0xe0, 0xc5, 0x16, 0xa8, 0xe9, 0x40, 0xc1, 0x05, 0x77, 0x19, 0xec,
0x48, 0x1e, 0xc3, 0x61, 0xf2, 0x62, 0xbc, 0x70, 0xb1, 0x1c, 0x3a, 0x53, 0x75, 0xdd, 0xbf, 0x56,
0x72, 0x8c, 0x51, 0xd3, 0x75, 0x1b, 0x3d, 0x81, 0x9c, 0x4e, 0x6e, 0xc4, 0x9c, 0x08, 0xbb, 0xac,
0x4e, 0x6e, 0xd8, 0x94, 0xfc, 0x7b, 0x38, 0xb8, 0xb3, 0x26, 0x4b, 0x47, 0x9a, 0x6e, 0x5b, 0x4b,
0x2f, 0x72, 0xc5, 0x80, 0x1d, 0xe0, 0x2b, 0x63, 0x11, 0xb4, 0x34, 0x19, 0x2d, 0xcf, 0xe0, 0x13,
0xf1, 0xce, 0x20, 0xba, 0xbf, 0x95, 0x9e, 0x49, 0x89, 0x7d, 0xa5, 0x6a, 0x24, 0xf8, 0xf0, 0x6f,
0x61, 0x97, 0x97, 0x62, 0xa2, 0x8b, 0x1a, 0xed, 0x8e, 0x6d, 0xd4, 0xc2, 0x5c, 0x47, 0xfe, 0x8f,
0x0c, 0x3c, 0xd9, 0x8c, 0x9c, 0x94, 0x8d, 0xbf, 0xf3, 0x32, 0xaf, 0x78, 0x17, 0xfc, 0xfa, 0xe3,
0x56, 0x3b, 0x0d, 0x15, 0x64, 0x2c, 0x79, 0xac, 0x98, 0x71, 0x88, 0xe3, 0x9c, 0xfb, 0xc9, 0x61,
0xcd, 0x61, 0x05, 0x8d, 0x49, 0xe8, 0x52, 0x75, 0xde, 0x9f, 0x7b, 0xe7, 0x32, 0x18, 0x87, 0x4f,
0xfd, 0x5e, 0xf4, 0xd4, 0x8f, 0x00, 0xe9, 0xd7, 0xda, 0x4a, 0x21, 0xf6, 0x0d, 0xb1, 0x83, 0xda,
0x4d, 0x34, 0x4e, 0x5f, 0x46, 0x36, 0xd9, 0xec, 0x36, 0xc6, 0x51, 0x31, 0x9c, 0xa0, 0x8a, 0x3e,
0x85, 0x92, 0x1f, 0x4a, 0x3d, 0x73, 0xea, 0x10, 0xef, 0x38, 0x47, 0x99, 0x72, 0x03, 0x76, 0x79,
0x8d, 0x0d, 0xb0, 0x3f, 0xa8, 0x0d, 0xa7, 0xb5, 0xbe, 0x94, 0x42, 0x15, 0x28, 0xb0, 0x35, 0x66,
0x8d, 0x7e, 0xaf, 0x35, 0x9c, 0x48, 0xe9, 0x80, 0xa1, 0xb4, 0xf0, 0xf7, 0x2d, 0x2c, 0xed, 0xb0,
0xe7, 0xdc, 0x74, 0x38, 0xa8, 0x0d, 0x6b, 0x9d, 0x56, 0x53, 0xca, 0xc8, 0x7f, 0xcb, 0x00, 0xba,
0xbb, 0xab, 0x75, 0xb5, 0x36, 0xb6, 0xec, 0x20, 0x2b, 0xae, 0x39, 0xe8, 0x18, 0x2a, 0x62, 0x14,
0x98, 0xdb, 0x8b, 0x9d, 0x38, 0x9b, 0xb7, 0x50, 0x88, 0xea, 0xf0, 0x42, 0xc0, 0xb3, 0xf8, 0x9a,
0x81, 0x4e, 0x40, 0x32, 0x2d, 0xca, 0x1e, 0x0e, 0x96, 0x6d, 0x50, 0x95, 0xf7, 0xc0, 0x45, 0x9b,
0xfb, 0x0e, 0x1f, 0x9d, 0x02, 0xd2, 0xad, 0xa1, 0x45, 0xeb, 0x86, 0xa9, 0xaf, 0x97, 0x15, 0xbe,
0x48, 0x98, 0x61, 0xf7, 0xa5, 0xa6, 0x2e, 0x16, 0x97, 0xaa, 0xf6, 0xde, 0x6b, 0xdf, 0x89, 0x94,
0x19, 0xe3, 0xa2, 0x73, 0xd8, 0xb7, 0x55, 0x73, 0x4e, 0x9c, 0x6a, 0x96, 0x47, 0xf1, 0xb3, 0x0d,
0x2e, 0xc3, 0x4c, 0x08, 0x7b, 0xb2, 0xa8, 0x0d, 0x59, 0x6b, 0x25, 0x7e, 0x42, 0x10, 0xef, 0x90,
0x7f, 0xbc, 0xc7, 0xd3, 0xa7, 0x23, 0x21, 0xde, 0x32, 0xa9, 0x7d, 0x8b, 0x7d, 0x65, 0xd4, 0x80,
0x82, 0xc3, 0x3e, 0x50, 0xeb, 0x5a, 0x0e, 0x75, 0xaa, 0x79, 0x8e, 0xf5, 0xc9, 0x26, 0xac, 0x40,
0x12, 0x87, 0xb5, 0x8e, 0xbe, 0x85, 0x62, 0x18, 0x9d, 0xdd, 0x3a, 0xef, 0xc9, 0xad, 0xe7, 0x37,
0x46, 0x46, 0x5f, 0xbc, 0x79, 0xef, 0xc5, 0xfb, 0xed, 0xce, 0x37, 0x69, 0xd9, 0x82, 0x4a, 0xec,
0x1b, 0xf9, 0x1d, 0xca, 0x88, 0xbe, 0xf5, 0x21, 0xe8, 0x7b, 0x85, 0x38, 0xc1, 0xfc, 0x74, 0xb5,
0x22, 0x7e, 0xda, 0x09, 0x71, 0x02, 0x9f, 0xf3, 0x7a, 0x28, 0xec, 0x73, 0xc6, 0x90, 0xbf, 0x81,
0x87, 0x49, 0x5f, 0xc4, 0x5f, 0x1d, 0xaa, 0x16, 0xbc, 0x3a, 0x54, 0x8d, 0xd7, 0x19, 0x2b, 0x0f,
0x7f, 0xc7, 0x58, 0xc9, 0x59, 0xd8, 0x6b, 0x2d, 0x57, 0xf4, 0xf6, 0xe4, 0x37, 0x20, 0xc5, 0x3b,
0x46, 0x68, 0x1f, 0x76, 0xa6, 0x63, 0x29, 0x85, 0x72, 0xb0, 0xdb, 0x1c, 0x5d, 0x0c, 0xa5, 0x34,
0xca, 0x42, 0x66, 0xd4, 0x6e, 0x4b, 0x3b, 0x27, 0x9f, 0x03, 0xac, 0x3b, 0x44, 0xec, 0xbc, 0xe0,
0x9e, 0xd2, 0x1b, 0x76, 0x44, 0xf3, 0xa3, 0x5d, 0xeb, 0xf7, 0xd9, 0x80, 0x37, 0x3f, 0xea, 0xa3,
0x49, 0x57, 0xda, 0x39, 0xf9, 0xbf, 0x34, 0x64, 0xbd, 0xb6, 0x04, 0xca, 0xc3, 0xde, 0x70, 0x3a,
0x98, 0x7d, 0x21, 0xa5, 0x7c, 0xf2, 0x4c, 0x4a, 0xfb, 0xe4, 0x97, 0xd2, 0x8e, 0x4f, 0x9e, 0x4b,
0x19, 0x9f, 0xfc, 0x4a, 0xda, 0xf5, 0xc9, 0x37, 0xd2, 0x9e, 0x4f, 0x7e, 0x2d, 0xed, 0xfb, 0xe4,
0x37, 0x52, 0xd6, 0x27, 0x7f, 0x2b, 0xe5, 0xd8, 0x8e, 0xf8, 0x12, 0xaf, 0xa5, 0x7c, 0x40, 0x7f,
0x21, 0x41, 0x40, 0x9f, 0x49, 0x85, 0x80, 0xfe, 0x52, 0x2a, 0x06, 0xf4, 0xb9, 0x54, 0x0a, 0xe8,
0xaf, 0xa4, 0x72, 0x40, 0xbf, 0x91, 0x2a, 0x01, 0xfd, 0xb5, 0x24, 0x05, 0xf4, 0x37, 0xd2, 0x41,
0x40, 0xff, 0x56, 0x42, 0x3e, 0x7d, 0xf6, 0x5a, 0x7a, 0x70, 0xf2, 0x1b, 0x28, 0x86, 0x5b, 0x2b,
0xcc, 0x78, 0xfd, 0xd1, 0x85, 0xb0, 0x67, 0xb7, 0xd7, 0xe9, 0x4a, 0x69, 0x26, 0x3e, 0x19, 0x75,
0x3a, 0xfd, 0x96, 0xb4, 0x73, 0xd2, 0x84, 0x4a, 0xac, 0x61, 0xc0, 0x6c, 0x39, 0x1d, 0xbe, 0x1b,
0x32, 0xdb, 0xa7, 0x98, 0x37, 0x6a, 0x63, 0xe1, 0x03, 0x65, 0x52, 0x93, 0x76, 0xd0, 0x03, 0xa8,
0x28, 0x93, 0xda, 0xac, 0x5d, 0xeb, 0xf5, 0x47, 0xdf, 0xb7, 0xf0, 0xac, 0x36, 0x96, 0x32, 0x27,
0x4d, 0x28, 0x45, 0xde, 0xcd, 0xe8, 0x11, 0x1c, 0x30, 0xa9, 0xe1, 0x68, 0x32, 0x6b, 0x8c, 0x86,
0xc3, 0x56, 0x63, 0xd2, 0x6a, 0x0a, 0xc3, 0xd7, 0xc6, 0xb3, 0x29, 0x03, 0x3c, 0x80, 0x12, 0x93,
0x58, 0xcf, 0xee, 0x9c, 0x7c, 0x26, 0xba, 0x27, 0x7e, 0xfb, 0x01, 0x15, 0x21, 0x77, 0x31, 0xae,
0x9d, 0xcd, 0xc6, 0xca, 0x3b, 0xb1, 0xff, 0xd1, 0xb8, 0x35, 0x94, 0xd2, 0x67, 0x7f, 0xab, 0xc2,
0xfe, 0xf8, 0xfc, 0x62, 0x38, 0xfe, 0x02, 0x0d, 0xa0, 0xda, 0x21, 0xd4, 0xbf, 0xdf, 0x22, 0xd7,
0x24, 0x42, 0xd1, 0x7b, 0x85, 0x05, 0xdc, 0xd1, 0xd3, 0x2d, 0x57, 0xb9, 0x9c, 0x42, 0x5d, 0x78,
0x20, 0xb0, 0x7e, 0x36, 0x52, 0x1b, 0x0e, 0x3a, 0x84, 0xc6, 0x0a, 0xce, 0x9f, 0x80, 0x33, 0x82,
0x03, 0xe5, 0x0e, 0xce, 0x36, 0x9d, 0xfb, 0x00, 0xff, 0x00, 0xe5, 0x0e, 0xa1, 0xe1, 0xd2, 0x39,
0x69, 0x57, 0xd5, 0x08, 0x2f, 0x24, 0x2d, 0x10, 0x94, 0x28, 0xc2, 0x46, 0xe9, 0xa3, 0x04, 0x6c,
0x39, 0x85, 0x9a, 0x50, 0x1c, 0xb0, 0xa2, 0x7c, 0x3a, 0x50, 0xf8, 0xed, 0x71, 0x4f, 0x81, 0xb5,
0x01, 0x65, 0x06, 0x2f, 0x85, 0xb3, 0x36, 0x17, 0x1f, 0x1f, 0x59, 0xc8, 0x6c, 0x58, 0xc0, 0x82,
0x5f, 0x75, 0x08, 0xad, 0x2d, 0x16, 0xf7, 0xd7, 0x4f, 0x49, 0x36, 0x3c, 0x8d, 0x26, 0xff, 0xfb,
0x30, 0xe4, 0x14, 0x5a, 0xc0, 0xa7, 0xa1, 0x68, 0xde, 0xbc, 0x5a, 0xb4, 0x63, 0x15, 0x69, 0xe8,
0x1c, 0x7d, 0xe4, 0x27, 0xcb, 0x29, 0x34, 0xe0, 0xef, 0x4b, 0xec, 0x9a, 0xde, 0xfd, 0xf9, 0x3c,
0xf9, 0xc5, 0xe6, 0x3d, 0x6b, 0x8f, 0x9e, 0x6d, 0x9a, 0x66, 0x4f, 0x32, 0x0e, 0x57, 0x09, 0xc3,
0xb1, 0x17, 0xeb, 0x3d, 0x88, 0x9b, 0x9f, 0x88, 0x72, 0x0a, 0x61, 0x78, 0xd4, 0xed, 0x35, 0x3b,
0x84, 0xae, 0xdf, 0x8d, 0xe2, 0x95, 0xb9, 0x59, 0xeb, 0xde, 0x2d, 0xb6, 0x00, 0x75, 0x7b, 0xcd,
0x86, 0x6a, 0x6a, 0x64, 0xb1, 0xde, 0xe5, 0x16, 0xc0, 0xe4, 0xb8, 0x18, 0xc2, 0x63, 0xb1, 0x35,
0xef, 0x55, 0x1d, 0xc8, 0x27, 0xc7, 0xc1, 0xf3, 0x8d, 0xf8, 0xec, 0xc9, 0x2e, 0xa7, 0x50, 0x1d,
0x0e, 0x83, 0x6d, 0xd5, 0x16, 0x8b, 0x7b, 0xe0, 0x92, 0xf7, 0xf4, 0x47, 0xdf, 0x5c, 0xb1, 0x97,
0xfe, 0xb6, 0xaf, 0xfb, 0x65, 0x7c, 0x2a, 0xb1, 0x4b, 0xc0, 0x37, 0x58, 0x68, 0x2b, 0x41, 0x1b,
0x28, 0xe6, 0xd6, 0x78, 0x7b, 0x68, 0xc3, 0x06, 0xdf, 0x01, 0xb4, 0x15, 0xbf, 0xf9, 0x84, 0xa2,
0x9e, 0x8a, 0x35, 0xb9, 0x62, 0x16, 0x8b, 0x77, 0xac, 0xb8, 0x07, 0x4a, 0x6d, 0xa5, 0x43, 0xa8,
0xdf, 0xfb, 0x89, 0xe1, 0xc5, 0x3a, 0x47, 0x31, 0xbc, 0x78, 0xc3, 0x48, 0x4e, 0xa1, 0x3f, 0xc3,
0xa3, 0xb6, 0xd2, 0xb0, 0x89, 0x4a, 0x49, 0xa4, 0x53, 0x87, 0x62, 0xff, 0x3b, 0x48, 0xe8, 0x13,
0x1e, 0xc9, 0xdb, 0x44, 0x82, 0x15, 0xfe, 0x00, 0x05, 0xde, 0x7b, 0xec, 0xf3, 0xb2, 0x3a, 0xe6,
0x95, 0x70, 0x83, 0x35, 0x6e, 0x3e, 0x36, 0x25, 0xa7, 0x5e, 0xa7, 0x51, 0x07, 0x0a, 0x2d, 0xed,
0x3a, 0xe8, 0x86, 0x6d, 0xcb, 0x01, 0x5b, 0xe6, 0xe4, 0x14, 0xea, 0x01, 0x12, 0x29, 0x26, 0xf2,
0x53, 0xc5, 0xe6, 0xe6, 0xf4, 0xd1, 0x61, 0x72, 0x83, 0x5c, 0x4e, 0xa1, 0xdf, 0x41, 0xb1, 0x43,
0xe8, 0xba, 0xb1, 0x9e, 0x14, 0xaf, 0x9b, 0xb5, 0xdb, 0x70, 0x28, 0xcc, 0x11, 0x30, 0x1b, 0xd7,
0xa2, 0x28, 0xff, 0x71, 0x38, 0x18, 0x0e, 0x14, 0x6a, 0xd9, 0xe4, 0xc2, 0xb8, 0x5a, 0x7f, 0xcf,
0xaf, 0x62, 0xe2, 0x9b, 0x7e, 0x0f, 0xda, 0x10, 0xae, 0x63, 0x78, 0xc4, 0x72, 0x0f, 0x83, 0xd5,
0x23, 0xb8, 0xdb, 0xec, 0xbe, 0xd9, 0x86, 0x1c, 0xb1, 0xea, 0xfd, 0xde, 0xf7, 0xe3, 0x40, 0x37,
0x7f, 0xf7, 0x00, 0x9e, 0x70, 0x2c, 0xff, 0xc2, 0xf8, 0x68, 0xc8, 0xe4, 0x4f, 0x1e, 0x09, 0x77,
0x24, 0x6c, 0x2f, 0xc9, 0x1d, 0x2f, 0x37, 0xe3, 0x8b, 0x1f, 0x0e, 0x98, 0x5f, 0x9e, 0x86, 0xae,
0xb3, 0x3b, 0xff, 0xe1, 0xba, 0x3f, 0x57, 0xc6, 0x55, 0xf8, 0xa5, 0xff, 0x5c, 0x00, 0xc6, 0xe7,
0x30, 0x59, 0x2d, 0xd8, 0x6b, 0x71, 0x3b, 0xc2, 0xfd, 0x0b, 0xfc, 0x11, 0x9e, 0x24, 0x2f, 0x50,
0xd3, 0xf5, 0x9f, 0x0d, 0xfe, 0x27, 0x78, 0xb6, 0x69, 0xf7, 0x4b, 0xeb, 0xe6, 0xe7, 0x6f, 0x7e,
0x02, 0x4f, 0xd7, 0x2e, 0x8c, 0xcf, 0xff, 0x64, 0x3f, 0xf6, 0xe1, 0x11, 0x47, 0xbc, 0xe3, 0xc1,
0x7b, 0xb6, 0x9b, 0x1c, 0x66, 0x97, 0xf0, 0x8b, 0xf0, 0x39, 0xd8, 0xe4, 0xc7, 0x6d, 0xf1, 0xfb,
0x11, 0x76, 0x7e, 0xb9, 0x6d, 0x0d, 0xe6, 0xca, 0x9f, 0x83, 0x7f, 0xb9, 0xcf, 0xff, 0xa6, 0xf8,
0xe5, 0xdf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x28, 0xa1, 0xe9, 0x7d, 0xb4, 0x28, 0x00, 0x00,
// 3508 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x5a, 0x5b, 0x77, 0xe3, 0xc8,
0x71, 0x26, 0x45, 0x5d, 0xc8, 0xa2, 0x28, 0x42, 0x3d, 0x92, 0x86, 0xa3, 0xb9, 0x2e, 0xbc, 0x5e,
0x4f, 0xe4, 0x58, 0x3b, 0xab, 0xd5, 0xce, 0xae, 0xf7, 0xd8, 0x67, 0xcd, 0x3b, 0x39, 0xc3, 0xdb,
0x69, 0x90, 0xab, 0x24, 0x3e, 0xc7, 0x34, 0x04, 0xb4, 0x28, 0x78, 0x48, 0x80, 0x01, 0x1a, 0x9a,
0x55, 0x1e, 0x9c, 0x73, 0xf2, 0x27, 0xf2, 0x96, 0x9f, 0x90, 0xc7, 0xe4, 0x17, 0xe5, 0x3d, 0x2f,
0x79, 0x8e, 0x4f, 0x77, 0xe3, 0x2e, 0x90, 0x9a, 0x9d, 0x79, 0xab, 0xae, 0xae, 0xfa, 0xba, 0x51,
0x55, 0x5d, 0x5d, 0x5d, 0x24, 0xc0, 0xcc, 0x5e, 0x6a, 0xa7, 0x4b, 0xdb, 0xa2, 0x16, 0x2a, 0x8e,
0xce, 0xdf, 0x9b, 0xa3, 0xaf, 0xa6, 0x8c, 0x25, 0xff, 0x05, 0xa4, 0xb1, 0x6d, 0xcc, 0x66, 0xc4,
0xae, 0x6a, 0xd4, 0xb0, 0x4c, 0x85, 0x50, 0x54, 0x83, 0xbd, 0x18, 0xcf, 0xa9, 0x64, 0x5f, 0xe4,
0x5e, 0x16, 0xcf, 0x8e, 0x4f, 0x23, 0x9a, 0xa7, 0x31, 0x11, 0x9c, 0xd0, 0x40, 0x08, 0x36, 0x07,
0xea, 0x82, 0x54, 0x36, 0x5e, 0x64, 0x5f, 0x16, 0x30, 0xa7, 0xe5, 0xff, 0x02, 0x28, 0xc5, 0xc4,
0xd0, 0x1e, 0x6c, 0x18, 0x7a, 0x25, 0xfb, 0x22, 0xfb, 0xb2, 0x84, 0x37, 0x0c, 0x1d, 0x55, 0x60,
0xc7, 0x32, 0x89, 0x72, 0x6d, 0x51, 0xae, 0x98, 0xc7, 0xfe, 0x10, 0x1d, 0x43, 0xde, 0x70, 0x98,
0xd6, 0x0d, 0xa9, 0xe4, 0xf8, 0x54, 0x30, 0x46, 0x4f, 0xa0, 0x60, 0x2c, 0x16, 0x2e, 0x55, 0x2f,
0xe7, 0xa4, 0xb2, 0xc9, 0x27, 0x43, 0x06, 0xea, 0xc1, 0x9e, 0x43, 0xec, 0x1b, 0x43, 0x23, 0x0a,
0x55, 0x6d, 0x4a, 0xf4, 0xca, 0xd6, 0x8b, 0xec, 0xcb, 0xe2, 0x99, 0x9c, 0xf6, 0x35, 0x4a, 0x4c,
0xb2, 0x93, 0xc1, 0x09, 0x5d, 0xf4, 0x0f, 0x80, 0x5c, 0xe7, 0xb2, 0xad, 0xea, 0x33, 0x42, 0xeb,
0x96, 0x69, 0x12, 0x8d, 0x21, 0x6e, 0x73, 0xc4, 0x2f, 0xd2, 0x10, 0x27, 0x4a, 0x2d, 0x21, 0xdd,
0xc9, 0xe0, 0x14, 0x0c, 0xa4, 0xc2, 0x61, 0xc0, 0x6d, 0x18, 0x8e, 0x16, 0x80, 0xef, 0x70, 0xf0,
0xbf, 0x5b, 0x0b, 0x1e, 0x55, 0xe8, 0x64, 0x70, 0x3a, 0x12, 0xea, 0x42, 0xe9, 0xbd, 0x71, 0x65,
0x54, 0x47, 0xbe, 0x25, 0xf2, 0x1c, 0xfa, 0xb3, 0x34, 0xe8, 0x8b, 0xa8, 0x60, 0x27, 0x83, 0xe3,
0x9a, 0xcc, 0x0e, 0x8c, 0x11, 0x6c, 0xbf, 0xea, 0x28, 0x54, 0xad, 0x14, 0x56, 0xdb, 0xe1, 0xe2,
0x8e, 0x34, 0xb3, 0xc3, 0x5d, 0x0c, 0xf4, 0x3d, 0xe4, 0x1d, 0xe7, 0xba, 0x67, 0xcd, 0x0c, 0xb3,
0x02, 0x1c, 0xef, 0x49, 0xaa, 0xa7, 0x94, 0x0e, 0x97, 0xe9, 0x64, 0x70, 0x20, 0x8f, 0x30, 0x48,
0xfa, 0xb5, 0xb6, 0xec, 0x11, 0xd5, 0x21, 0x6d, 0x5b, 0x35, 0xd9, 0x37, 0x16, 0x39, 0xc6, 0xe7,
0x69, 0x18, 0x8d, 0x4e, 0x7d, 0x14, 0x95, 0xed, 0x64, 0xf0, 0x1d, 0x7d, 0xd4, 0x82, 0xdd, 0x99,
0x6d, 0xb9, 0x4b, 0x4c, 0x34, 0xc2, 0xa2, 0x6f, 0x97, 0xe3, 0xbd, 0x48, 0xc3, 0x6b, 0x47, 0xe4,
0x3a, 0x19, 0x1c, 0xd3, 0x43, 0x7f, 0x82, 0x83, 0xe8, 0x58, 0x21, 0xff, 0xec, 0x12, 0x53, 0x23,
0x95, 0x12, 0xc7, 0x7b, 0x79, 0x1f, 0x9e, 0x2f, 0xdf, 0xc9, 0xe0, 0x54, 0x1c, 0x74, 0x0e, 0xdb,
0xb3, 0xa5, 0x61, 0x75, 0xcd, 0xca, 0x1e, 0x47, 0x4c, 0x3d, 0xad, 0xed, 0x51, 0x77, 0xd8, 0x65,
0x36, 0xf3, 0x64, 0x51, 0x03, 0xe0, 0x52, 0x75, 0xae, 0x15, 0xcd, 0x36, 0x96, 0xb4, 0x52, 0x4e,
0x39, 0x19, 0x5e, 0x5e, 0x60, 0x7e, 0xaf, 0x05, 0x92, 0x9d, 0x2c, 0x8e, 0xe8, 0xa1, 0x2a, 0x14,
0xae, 0x0d, 0xdd, 0x03, 0x91, 0x52, 0x82, 0x2a, 0x02, 0xd2, 0xe9, 0x36, 0x02, 0x8c, 0x50, 0x0b,
0x69, 0x70, 0xa4, 0x93, 0xe5, 0xdc, 0xba, 0x55, 0x08, 0xa5, 0x86, 0x39, 0x73, 0xc6, 0x64, 0xb1,
0x9c, 0xab, 0x94, 0x54, 0xf6, 0x53, 0xe2, 0x5f, 0xe0, 0x35, 0x52, 0x15, 0x3a, 0x59, 0xbc, 0x02,
0x0a, 0x9d, 0x40, 0x6e, 0x6e, 0xcd, 0x2a, 0x88, 0x23, 0x1e, 0xa5, 0x20, 0xf6, 0xac, 0x59, 0x27,
0x8b, 0x99, 0x10, 0x7a, 0x0d, 0x3b, 0xcc, 0x46, 0x43, 0x97, 0x56, 0x1e, 0xa4, 0x18, 0x54, 0xc8,
0x33, 0x7b, 0x0e, 0x5d, 0xf6, 0x29, 0xbe, 0x30, 0xfa, 0x1d, 0x14, 0xb8, 0x7f, 0x14, 0x62, 0xea,
0x95, 0x83, 0x94, 0x00, 0xf6, 0x34, 0x7d, 0x19, 0x66, 0x86, 0x40, 0xa1, 0x56, 0x80, 0x1d, 0xcf,
0x55, 0xb5, 0x3c, 0x6c, 0x0b, 0x51, 0xf9, 0x21, 0x1c, 0xa6, 0xe6, 0x27, 0xf9, 0x31, 0x3c, 0x5a,
0x99, 0x66, 0xe4, 0x67, 0xf0, 0x64, 0x5d, 0x9a, 0x90, 0x8f, 0xe0, 0x20, 0xed, 0xac, 0x47, 0x40,
0xef, 0x9e, 0x59, 0xf9, 0x4b, 0x28, 0x27, 0x0e, 0x20, 0x4b, 0xbf, 0x73, 0x46, 0x4c, 0x1c, 0x62,
0xf3, 0x5c, 0x5e, 0xc0, 0x21, 0x43, 0x7e, 0x04, 0x0f, 0x57, 0x9c, 0x36, 0xb9, 0x0b, 0x0f, 0x52,
0x02, 0x9d, 0xe1, 0x71, 0x7b, 0xf0, 0xfb, 0xc3, 0xc3, 0x0b, 0x18, 0xe8, 0x00, 0xb6, 0x6e, 0xd4,
0xb9, 0x2b, 0x6e, 0x96, 0x2d, 0x2c, 0x06, 0xf2, 0xbf, 0xc2, 0xe3, 0x35, 0x67, 0xe6, 0x1e, 0xc8,
0x13, 0x90, 0xba, 0x33, 0xd3, 0xb2, 0xc9, 0xd0, 0xa5, 0xc3, 0xab, 0xa1, 0xad, 0x13, 0xdb, 0xbb,
0x7e, 0xee, 0xf0, 0xd1, 0x11, 0x6c, 0xf3, 0x15, 0x9d, 0x4a, 0xee, 0x45, 0xee, 0xe5, 0x16, 0xf6,
0x46, 0xf2, 0x7f, 0x67, 0x83, 0xbb, 0x4d, 0x9c, 0x31, 0x74, 0x2a, 0xe2, 0x67, 0xe0, 0x2e, 0xf8,
0x8a, 0x7b, 0x67, 0x07, 0xb1, 0x28, 0x60, 0x52, 0x03, 0x77, 0x81, 0x7d, 0x21, 0xf4, 0x7b, 0x80,
0xa5, 0x3b, 0x9f, 0x4f, 0x96, 0x0d, 0xeb, 0xbd, 0xc9, 0xd7, 0xdf, 0x3b, 0x7b, 0x7a, 0x47, 0xa5,
0x6b, 0x8e, 0x02, 0x21, 0x1c, 0x51, 0x40, 0xdf, 0x02, 0x88, 0x23, 0xdd, 0xd4, 0x67, 0xe2, 0x8a,
0xdc, 0x3b, 0x7b, 0x98, 0xa2, 0xce, 0xa6, 0x71, 0x44, 0x54, 0xfe, 0x16, 0x0e, 0x53, 0x8f, 0x38,
0x7a, 0x06, 0xe0, 0x70, 0x2a, 0x62, 0xb5, 0x08, 0x47, 0x7e, 0x0d, 0x07, 0x69, 0xc7, 0xfa, 0x5e,
0xbd, 0xff, 0xcb, 0xc2, 0x93, 0x75, 0xe7, 0x17, 0xc9, 0xb0, 0x4b, 0x3d, 0x3a, 0x02, 0x11, 0xe3,
0xa1, 0x37, 0xb0, 0x49, 0x6f, 0x97, 0xc4, 0xb3, 0xd3, 0xeb, 0x0f, 0x4e, 0x0e, 0xa7, 0x3e, 0x31,
0xbe, 0x5d, 0x12, 0xcc, 0x31, 0x64, 0x02, 0xbb, 0x51, 0x2e, 0xda, 0x87, 0x52, 0x6b, 0xd2, 0xeb,
0x4d, 0x95, 0xe6, 0x78, 0xdc, 0x1d, 0xb4, 0x15, 0x29, 0x83, 0x8a, 0xb0, 0x33, 0x68, 0x8e, 0x2f,
0x86, 0xf8, 0xad, 0x94, 0x45, 0x79, 0xd8, 0xbc, 0xe8, 0xb6, 0xba, 0xd2, 0x06, 0xda, 0x81, 0xdc,
0x44, 0xa9, 0x49, 0x39, 0x54, 0x82, 0x42, 0xad, 0x37, 0x69, 0x8e, 0x87, 0xc3, 0x71, 0x47, 0xda,
0x44, 0x0f, 0xa0, 0x3c, 0xc6, 0xdd, 0x76, 0xbb, 0x89, 0xa7, 0xd5, 0xfa, 0xb8, 0x3b, 0x1c, 0x28,
0xd2, 0x96, 0x5c, 0x84, 0x42, 0x90, 0x64, 0xe4, 0x25, 0x94, 0x62, 0x19, 0xe4, 0x67, 0x87, 0xcb,
0x97, 0xd1, 0x73, 0xb0, 0x77, 0xf6, 0xe8, 0x8e, 0xf4, 0xd0, 0xa5, 0x3f, 0x32, 0x01, 0xff, 0x88,
0x34, 0xa1, 0x9c, 0xc8, 0x3c, 0x1f, 0x75, 0xd2, 0xde, 0xc3, 0x31, 0x4b, 0x0b, 0x98, 0x1d, 0x2d,
0x87, 0xfa, 0xe6, 0x55, 0xa8, 0x65, 0xab, 0x33, 0xee, 0xba, 0x71, 0x8a, 0xeb, 0xa2, 0x3c, 0xf4,
0x0d, 0xe4, 0x1d, 0x4f, 0x8d, 0x43, 0x17, 0x13, 0x9b, 0xbf, 0x30, 0x5a, 0x86, 0x8f, 0x8b, 0x03,
0x51, 0xf9, 0xdf, 0x73, 0xb0, 0x1b, 0x9d, 0x62, 0x25, 0xa6, 0x19, 0xae, 0xc1, 0x69, 0x56, 0x26,
0xea, 0x86, 0xc3, 0xea, 0x3e, 0xdd, 0x3b, 0xc2, 0xc1, 0x98, 0xc5, 0xa5, 0x4d, 0x66, 0xee, 0x5c,
0xa5, 0x96, 0x7d, 0xcb, 0x4f, 0x48, 0x01, 0x47, 0x38, 0xe8, 0x07, 0xd8, 0x7d, 0x6f, 0xd9, 0xef,
0x0c, 0x73, 0x36, 0x5d, 0x58, 0xba, 0xa8, 0x24, 0xf7, 0x12, 0xb9, 0x9b, 0x6d, 0xe0, 0x42, 0x08,
0xf5, 0x2d, 0x9d, 0xe0, 0xe2, 0xfb, 0x70, 0x80, 0x5e, 0x43, 0x41, 0x75, 0xe9, 0xb5, 0xd0, 0xde,
0x4a, 0x71, 0x0b, 0xd3, 0xae, 0xba, 0xf4, 0x9a, 0xab, 0xe6, 0x55, 0x8f, 0x62, 0x55, 0xaf, 0x76,
0xad, 0x9a, 0x26, 0x99, 0xf3, 0x42, 0xb2, 0x84, 0xfd, 0x21, 0x3a, 0x85, 0x6d, 0x75, 0x39, 0xad,
0x29, 0x8a, 0x57, 0x04, 0x3e, 0xbc, 0x03, 0x57, 0x53, 0x94, 0xfa, 0xd5, 0x0c, 0x6f, 0xa9, 0xcb,
0x9a, 0xa2, 0xa0, 0x1f, 0xa0, 0xac, 0xcd, 0x0d, 0x62, 0x52, 0xa6, 0x33, 0x9d, 0x1b, 0x0e, 0xad,
0xe4, 0x79, 0xe9, 0xbe, 0x52, 0xb1, 0x24, 0xe4, 0x6b, 0x8a, 0xd2, 0x33, 0x1c, 0x8a, 0x1e, 0xf3,
0x8b, 0x9c, 0x4c, 0x1d, 0xc7, 0xd0, 0x79, 0x35, 0x97, 0xc7, 0x79, 0xc6, 0x50, 0x1c, 0x43, 0x67,
0xb9, 0xcf, 0x24, 0x3f, 0x2d, 0x2c, 0x93, 0xd7, 0x2c, 0x79, 0xec, 0x8d, 0xe4, 0xff, 0xcc, 0x42,
0x81, 0x7b, 0x86, 0xb2, 0xd3, 0x7b, 0x0a, 0x9b, 0xdc, 0x00, 0x22, 0x8a, 0x8f, 0xef, 0xba, 0x96,
0x49, 0x71, 0x0b, 0x70, 0xb9, 0xe8, 0xd7, 0x6f, 0xc4, 0xbf, 0x1e, 0xc1, 0x26, 0xdf, 0x87, 0x70,
0x15, 0xa7, 0x51, 0x1d, 0xca, 0x9a, 0x6b, 0xdb, 0xc4, 0x0c, 0x42, 0x8f, 0xfb, 0x69, 0x6d, 0x0c,
0x25, 0x35, 0xe4, 0x33, 0x80, 0xd0, 0x04, 0x6c, 0x19, 0x45, 0xe9, 0x36, 0xfc, 0x38, 0x62, 0x34,
0x92, 0x20, 0x37, 0x52, 0xde, 0x7a, 0xaf, 0x17, 0x46, 0xca, 0x9f, 0x41, 0x49, 0xa1, 0x36, 0x73,
0x35, 0x71, 0x1c, 0x16, 0xea, 0x12, 0xe4, 0x16, 0xce, 0xcc, 0xd3, 0x62, 0xa4, 0xfc, 0x0a, 0x50,
0x4c, 0xa4, 0x6a, 0xdb, 0xea, 0x2d, 0x0b, 0xc9, 0x85, 0x33, 0xe3, 0x34, 0x7f, 0x47, 0x15, 0x70,
0x30, 0x96, 0x4f, 0x61, 0xb7, 0x79, 0x43, 0x4c, 0xea, 0x9d, 0x26, 0x16, 0xa2, 0xcc, 0x69, 0xc4,
0x64, 0x79, 0x88, 0x43, 0xe7, 0x70, 0x84, 0x23, 0xab, 0x00, 0x5c, 0x9e, 0x1f, 0x6c, 0x74, 0x0c,
0x3b, 0xd4, 0xe1, 0x0b, 0x8a, 0x5d, 0x74, 0x32, 0xd8, 0x67, 0xa0, 0x23, 0xd8, 0xa2, 0x97, 0x96,
0x25, 0x6c, 0x9a, 0xef, 0x64, 0xb0, 0x18, 0xa2, 0x0a, 0x6c, 0x53, 0xc3, 0xa4, 0xaf, 0xcf, 0xb9,
0x55, 0x73, 0xac, 0x12, 0x14, 0xe3, 0xda, 0x16, 0xe4, 0x6e, 0xd4, 0xb9, 0xdc, 0x83, 0x2d, 0xbe,
0x04, 0x33, 0x0b, 0x0d, 0x77, 0xc1, 0x69, 0xf4, 0x65, 0x70, 0xfb, 0x6d, 0xa4, 0x84, 0x55, 0xb8,
0xb5, 0xe0, 0x5a, 0xfc, 0x33, 0x1c, 0xb0, 0xb3, 0xdf, 0x30, 0xec, 0xa1, 0xdd, 0x32, 0xe6, 0xc4,
0xff, 0x50, 0x09, 0x72, 0xba, 0xe1, 0x57, 0x0b, 0x8c, 0x64, 0xc1, 0xb5, 0xb4, 0xc9, 0x95, 0xf1,
0x93, 0x67, 0x74, 0x6f, 0xc4, 0x4c, 0x62, 0x99, 0xf3, 0xdb, 0x96, 0x35, 0x67, 0xd7, 0xb2, 0x78,
0xfa, 0x45, 0x38, 0xec, 0xfa, 0x4a, 0xac, 0xe0, 0x2c, 0x2d, 0xd3, 0x21, 0xe2, 0xb8, 0x3b, 0xee,
0x9c, 0x8e, 0x54, 0x7a, 0xed, 0x5f, 0x43, 0x21, 0x47, 0x1e, 0x42, 0x19, 0x13, 0x55, 0x8f, 0xee,
0x0a, 0xc1, 0xe6, 0x32, 0x14, 0xe6, 0x34, 0xcb, 0x82, 0x0e, 0xbb, 0xdf, 0xf8, 0xb6, 0x72, 0x58,
0x0c, 0x98, 0xa4, 0xae, 0x52, 0x95, 0xef, 0x67, 0x17, 0x73, 0x5a, 0x7e, 0x05, 0x52, 0x08, 0xe8,
0x6d, 0xe2, 0x09, 0x14, 0x6c, 0xa2, 0xea, 0x75, 0xcb, 0x35, 0xa9, 0x67, 0xc9, 0x90, 0x21, 0xdf,
0x80, 0x74, 0x61, 0x1b, 0x94, 0xdc, 0xb7, 0x87, 0x23, 0x96, 0x06, 0x96, 0xac, 0x9e, 0x14, 0x39,
0xcd, 0x1b, 0xb1, 0x6c, 0xbb, 0x70, 0x1d, 0x3a, 0xb0, 0x68, 0xf3, 0x27, 0x76, 0xd6, 0x85, 0x75,
0x62, 0xbc, 0x60, 0xa7, 0x9b, 0x91, 0x9d, 0xfe, 0x12, 0xca, 0x6c, 0xc9, 0xae, 0x79, 0x65, 0xad,
0x59, 0x56, 0xfe, 0x2b, 0x48, 0xa1, 0x98, 0xf7, 0x41, 0x69, 0x49, 0x97, 0x9d, 0x53, 0xe3, 0x5f,
0x88, 0x67, 0x21, 0x4e, 0x33, 0x1e, 0xcf, 0x02, 0x39, 0x7e, 0xa4, 0x83, 0x93, 0xbe, 0xb0, 0xf4,
0xb1, 0xb1, 0x10, 0xb9, 0x35, 0x87, 0xfd, 0x21, 0x33, 0xb2, 0xe1, 0x34, 0x0c, 0x9b, 0x67, 0xcd,
0x3c, 0x16, 0x03, 0xf9, 0x9f, 0x40, 0x0a, 0xaa, 0x8a, 0xc8, 0x09, 0x11, 0xa5, 0x44, 0xd4, 0xab,
0x21, 0x07, 0x7d, 0x01, 0x7b, 0xd4, 0x58, 0x10, 0xcb, 0xa5, 0x0a, 0xd1, 0x2c, 0x53, 0x77, 0xbc,
0xa4, 0x92, 0xe0, 0xca, 0xcf, 0x60, 0x37, 0xc0, 0x7e, 0x63, 0x5d, 0x26, 0x3b, 0x11, 0xf2, 0xe7,
0x91, 0xb5, 0xdf, 0x58, 0x97, 0x3c, 0x39, 0x4a, 0x90, 0x33, 0x74, 0xd1, 0x0c, 0x29, 0x61, 0x46,
0xca, 0x3f, 0x42, 0xa5, 0xd3, 0x6d, 0x60, 0xd7, 0x34, 0x0d, 0x73, 0xf6, 0xc6, 0xba, 0xe4, 0xb9,
0x0d, 0xf3, 0x18, 0x8b, 0x20, 0xe6, 0x78, 0x6f, 0x03, 0xc1, 0xe6, 0xcd, 0xa2, 0xab, 0xfb, 0x56,
0x62, 0x34, 0x73, 0xac, 0x63, 0xb9, 0xb6, 0x46, 0xbc, 0x1c, 0xe7, 0x8d, 0xe4, 0xbf, 0x42, 0x39,
0xf2, 0xe5, 0x1c, 0xee, 0xd7, 0x90, 0xfb, 0x8b, 0x75, 0xc9, 0xf1, 0x92, 0xc9, 0x2e, 0xba, 0x51,
0xcc, 0xa4, 0x98, 0x95, 0x0c, 0xa7, 0x65, 0x98, 0x86, 0x73, 0x1d, 0x5c, 0x84, 0x11, 0x4e, 0x78,
0x36, 0xde, 0x38, 0x96, 0x19, 0x5e, 0x85, 0x3e, 0x47, 0x3e, 0x85, 0x62, 0xaf, 0xd9, 0x08, 0x6e,
0xda, 0xe7, 0x50, 0xbc, 0x9c, 0x1b, 0xe6, 0xbb, 0xa9, 0x16, 0xc4, 0x71, 0x09, 0x03, 0x67, 0x89,
0x40, 0xfe, 0x9f, 0x4d, 0xd8, 0x13, 0x2f, 0x8c, 0x40, 0xa7, 0x02, 0x3b, 0xc4, 0x14, 0x17, 0x71,
0x56, 0xb4, 0x72, 0xbc, 0x21, 0x33, 0xe3, 0x8d, 0xa1, 0xfb, 0xb9, 0xf5, 0xc6, 0xe0, 0x9c, 0x65,
0x90, 0xe7, 0x19, 0xc9, 0x23, 0x5b, 0x35, 0xdd, 0x2b, 0x55, 0xa3, 0xae, 0x4d, 0x6c, 0x1e, 0x2f,
0x05, 0x1c, 0xe3, 0xb1, 0x15, 0x96, 0xb6, 0xa5, 0xbb, 0x1a, 0xe5, 0x61, 0x53, 0xc0, 0xfe, 0x90,
0x9b, 0x95, 0xd8, 0x86, 0x2a, 0xee, 0x53, 0x66, 0x56, 0x3e, 0x42, 0xcf, 0xa0, 0xe8, 0x3a, 0x64,
0x5a, 0x6f, 0xd4, 0xa7, 0xcd, 0x7a, 0x9f, 0xdf, 0xa9, 0x79, 0x5c, 0x70, 0x1d, 0x52, 0x6f, 0xd4,
0x9b, 0xf5, 0x3e, 0xbb, 0xfd, 0xd8, 0x3c, 0x1e, 0x34, 0xba, 0x0a, 0xef, 0x8d, 0xe4, 0x71, 0xde,
0x75, 0x08, 0x1f, 0xa3, 0x97, 0x20, 0xb1, 0xc9, 0x4e, 0xb7, 0x31, 0x7d, 0xdb, 0xfc, 0xc7, 0xda,
0xb0, 0x8a, 0x1b, 0xde, 0x0d, 0xb9, 0xe7, 0x3a, 0xa4, 0xd3, 0x6d, 0xf8, 0x5c, 0x24, 0x43, 0xc9,
0x97, 0xec, 0x0f, 0x27, 0x4a, 0x93, 0xb7, 0x31, 0xf2, 0xb8, 0x28, 0xc4, 0x38, 0xcb, 0xdf, 0x0a,
0x93, 0xc1, 0xd5, 0x0b, 0xde, 0xa4, 0x10, 0x5b, 0x61, 0xf1, 0x54, 0xbd, 0x40, 0x0f, 0x61, 0x87,
0xcd, 0x4f, 0xfa, 0x0a, 0x6f, 0x38, 0xe4, 0xf1, 0xb6, 0xeb, 0x90, 0x49, 0x5f, 0x41, 0x4f, 0x01,
0xd8, 0x84, 0xd2, 0xc4, 0xdd, 0x6a, 0xcf, 0xbb, 0x88, 0x99, 0x9e, 0x60, 0xa0, 0x37, 0xb0, 0x67,
0x9b, 0xba, 0xe1, 0x4c, 0x83, 0x12, 0x4b, 0x74, 0x03, 0x7e, 0x11, 0xaf, 0x0f, 0x63, 0xbe, 0x6a,
0xd2, 0x6b, 0x62, 0x9b, 0x84, 0xe2, 0x12, 0x57, 0x0d, 0x5c, 0xd8, 0x07, 0x49, 0xd3, 0xb5, 0x29,
0xd1, 0x16, 0x21, 0x5a, 0xf9, 0xc3, 0xd1, 0xf6, 0x34, 0x5d, 0x6b, 0x6a, 0x8b, 0x00, 0xae, 0x0a,
0xbb, 0xee, 0x22, 0xb2, 0x31, 0xd1, 0x27, 0x78, 0xb6, 0x06, 0x6a, 0xd2, 0x57, 0x70, 0xd1, 0x5d,
0x04, 0x3b, 0x92, 0x47, 0x70, 0x94, 0xbe, 0x18, 0x2f, 0x5c, 0x2c, 0x87, 0x4e, 0x55, 0x5d, 0xf7,
0xaf, 0x95, 0x3c, 0x63, 0x54, 0x75, 0xdd, 0x46, 0x8f, 0x20, 0xaf, 0x93, 0x1b, 0x31, 0x27, 0xc2,
0x6e, 0x47, 0x27, 0x37, 0x6c, 0x4a, 0xfe, 0x3d, 0xec, 0xdf, 0x59, 0x93, 0xa5, 0x23, 0x4d, 0xb7,
0xad, 0x85, 0x17, 0xb9, 0x62, 0xc0, 0x0e, 0xf0, 0x95, 0x31, 0x0f, 0x5a, 0x9a, 0x8c, 0x96, 0xa7,
0xf0, 0x99, 0x78, 0x67, 0x10, 0xdd, 0xdf, 0x4a, 0xd7, 0xa4, 0xc4, 0xbe, 0x52, 0x35, 0x12, 0x7c,
0xf8, 0xf7, 0xb0, 0xc9, 0x4b, 0x31, 0xd1, 0x45, 0x8d, 0x77, 0xc7, 0x56, 0x6a, 0x61, 0xae, 0x23,
0xff, 0x5b, 0x0e, 0x1e, 0xad, 0x46, 0x4e, 0xcb, 0xc6, 0x3f, 0x78, 0x99, 0x57, 0xbc, 0x0b, 0x7e,
0xfd, 0x61, 0xab, 0x9d, 0x46, 0x0a, 0x32, 0x96, 0x3c, 0x96, 0xcc, 0x38, 0xc4, 0x71, 0xce, 0xfd,
0xe4, 0x10, 0x72, 0x58, 0x41, 0x63, 0x12, 0xba, 0x50, 0x9d, 0x77, 0xe7, 0xde, 0xb9, 0x0c, 0xc6,
0xd1, 0x53, 0xbf, 0x15, 0x3f, 0xf5, 0x43, 0x40, 0xfa, 0xb5, 0xb6, 0x54, 0x88, 0x7d, 0x43, 0xec,
0xa0, 0x76, 0x13, 0x8d, 0xd3, 0xe7, 0xb1, 0x4d, 0x36, 0x3a, 0xf5, 0x51, 0x5c, 0x0c, 0xa7, 0xa8,
0xa2, 0xcf, 0xa1, 0xe4, 0x87, 0x52, 0xd7, 0x9c, 0x38, 0xc4, 0x3b, 0xce, 0x71, 0xa6, 0x5c, 0x87,
0x4d, 0x5e, 0x63, 0x03, 0x6c, 0xf7, 0xab, 0x83, 0x49, 0xb5, 0x27, 0x65, 0x50, 0x19, 0x8a, 0x6c,
0x8d, 0x69, 0xbd, 0xd7, 0x6d, 0x0e, 0xc6, 0x52, 0x36, 0x60, 0x28, 0x4d, 0xfc, 0x63, 0x13, 0x4b,
0x1b, 0xec, 0x39, 0x37, 0x19, 0xf4, 0xab, 0x83, 0x6a, 0xbb, 0xd9, 0x90, 0x72, 0xf2, 0xff, 0xe7,
0x00, 0xdd, 0xdd, 0x55, 0x58, 0xad, 0x8d, 0x2c, 0x3b, 0xc8, 0x8a, 0x21, 0x07, 0xbd, 0x84, 0xb2,
0x18, 0x05, 0xe6, 0xf6, 0x62, 0x27, 0xc9, 0xe6, 0x2d, 0x14, 0xa2, 0x3a, 0xbc, 0x10, 0xf0, 0x2c,
0x1e, 0x32, 0xd0, 0x09, 0x48, 0xa6, 0x45, 0xd9, 0xc3, 0xc1, 0xb2, 0x0d, 0xaa, 0xf2, 0x1e, 0xb8,
0x68, 0x73, 0xdf, 0xe1, 0xa3, 0x53, 0x40, 0xba, 0x35, 0xb0, 0x68, 0xcd, 0x30, 0xf5, 0x70, 0x59,
0xe1, 0x8b, 0x94, 0x19, 0x76, 0x5f, 0x6a, 0xea, 0x7c, 0x7e, 0xa9, 0x6a, 0xef, 0xbc, 0xf6, 0x9d,
0x48, 0x99, 0x09, 0x2e, 0x3a, 0x87, 0x6d, 0x5b, 0x35, 0x67, 0xc4, 0xa9, 0xec, 0xf0, 0x28, 0x7e,
0xb2, 0xc2, 0x65, 0x98, 0x09, 0x61, 0x4f, 0x16, 0xb5, 0x60, 0xc7, 0x5a, 0x8a, 0x9f, 0x10, 0xc4,
0x3b, 0xe4, 0xef, 0xef, 0xf1, 0xf4, 0xe9, 0x50, 0x88, 0x37, 0x4d, 0x6a, 0xdf, 0x62, 0x5f, 0x19,
0xd5, 0xa1, 0xe8, 0xb0, 0x0f, 0xd4, 0x3a, 0x96, 0x43, 0x9d, 0x4a, 0x81, 0x63, 0x7d, 0xb6, 0x0a,
0x2b, 0x90, 0xc4, 0x51, 0xad, 0xe3, 0xef, 0x61, 0x37, 0x8a, 0xce, 0x6e, 0x9d, 0x77, 0xe4, 0xd6,
0xf3, 0x1b, 0x23, 0xe3, 0x2f, 0xde, 0x82, 0xf7, 0xe2, 0xfd, 0x7e, 0xe3, 0xbb, 0xac, 0x6c, 0x41,
0x39, 0xf1, 0x8d, 0xfc, 0x0e, 0x65, 0x44, 0xcf, 0x7a, 0x1f, 0xf4, 0xbd, 0x22, 0x9c, 0x60, 0x7e,
0xb2, 0x5c, 0x12, 0x3f, 0xed, 0x44, 0x38, 0x81, 0xcf, 0x79, 0x3d, 0x14, 0xf5, 0x39, 0x63, 0xc8,
0xdf, 0xc1, 0x41, 0xda, 0x17, 0xf1, 0x57, 0x87, 0xaa, 0x05, 0xaf, 0x0e, 0x55, 0xe3, 0x75, 0xc6,
0xd2, 0xc3, 0xdf, 0x30, 0x96, 0xf2, 0x0e, 0x6c, 0x35, 0x17, 0x4b, 0x7a, 0x7b, 0xf2, 0x1b, 0x90,
0x92, 0x1d, 0x23, 0xb4, 0x0d, 0x1b, 0x93, 0x91, 0x94, 0x41, 0x79, 0xd8, 0x6c, 0x0c, 0x2f, 0x06,
0x52, 0x16, 0xed, 0x40, 0x6e, 0xd8, 0x6a, 0x49, 0x1b, 0x27, 0x5f, 0x02, 0x84, 0x1d, 0x22, 0x76,
0x5e, 0x70, 0x57, 0xe9, 0x0e, 0xda, 0xa2, 0xf9, 0xd1, 0xaa, 0xf6, 0x7a, 0x6c, 0xc0, 0x9b, 0x1f,
0xb5, 0xe1, 0xb8, 0x23, 0x6d, 0x9c, 0xfc, 0x6f, 0x16, 0x76, 0xbc, 0xb6, 0x04, 0x2a, 0xc0, 0xd6,
0x60, 0xd2, 0x9f, 0x7e, 0x25, 0x65, 0x7c, 0xf2, 0x4c, 0xca, 0xfa, 0xe4, 0xd7, 0xd2, 0x86, 0x4f,
0x9e, 0x4b, 0x39, 0x9f, 0xfc, 0x46, 0xda, 0xf4, 0xc9, 0xd7, 0xd2, 0x96, 0x4f, 0x7e, 0x2b, 0x6d,
0xfb, 0xe4, 0x77, 0xd2, 0x8e, 0x4f, 0xfe, 0x56, 0xca, 0xb3, 0x1d, 0xf1, 0x25, 0x5e, 0x49, 0x85,
0x80, 0xfe, 0x4a, 0x82, 0x80, 0x3e, 0x93, 0x8a, 0x01, 0xfd, 0xb5, 0xb4, 0x1b, 0xd0, 0xe7, 0x52,
0x29, 0xa0, 0xbf, 0x91, 0xf6, 0x02, 0xfa, 0xb5, 0x54, 0x0e, 0xe8, 0x6f, 0x25, 0x29, 0xa0, 0xbf,
0x93, 0xf6, 0x03, 0xfa, 0xb7, 0x12, 0xf2, 0xe9, 0xb3, 0x57, 0xd2, 0x83, 0x93, 0xdf, 0xc0, 0x6e,
0xb4, 0xb5, 0xc2, 0x8c, 0xd7, 0x1b, 0x5e, 0x08, 0x7b, 0x76, 0xba, 0xed, 0x8e, 0x94, 0x65, 0xe2,
0xe3, 0x61, 0xbb, 0xdd, 0x6b, 0x4a, 0x1b, 0x27, 0x0d, 0x28, 0x27, 0x1a, 0x06, 0xcc, 0x96, 0x93,
0xc1, 0xdb, 0x01, 0xb3, 0x7d, 0x86, 0x79, 0xa3, 0x3a, 0x12, 0x3e, 0x50, 0xc6, 0x55, 0x69, 0x03,
0x3d, 0x80, 0xb2, 0x32, 0xae, 0x4e, 0x5b, 0xd5, 0x6e, 0x6f, 0xf8, 0x63, 0x13, 0x4f, 0xab, 0x23,
0x29, 0x77, 0xd2, 0x80, 0x52, 0xec, 0xdd, 0x8c, 0x0e, 0x61, 0x9f, 0x49, 0x0d, 0x86, 0xe3, 0x69,
0x7d, 0x38, 0x18, 0x34, 0xeb, 0xe3, 0x66, 0x43, 0x18, 0xbe, 0x3a, 0x9a, 0x4e, 0x18, 0xe0, 0x3e,
0x94, 0x98, 0x44, 0x38, 0xbb, 0x71, 0xf2, 0x85, 0xe8, 0x9e, 0xf8, 0xed, 0x07, 0xb4, 0x0b, 0xf9,
0x8b, 0x51, 0xf5, 0x6c, 0x3a, 0x52, 0xde, 0x8a, 0xfd, 0x0f, 0x47, 0xcd, 0x81, 0x94, 0x3d, 0xfb,
0x8f, 0x63, 0xd8, 0x1e, 0x9d, 0x5f, 0x0c, 0x46, 0x5f, 0xa1, 0x3e, 0x54, 0xda, 0x84, 0xfa, 0xf7,
0x5b, 0xec, 0x9a, 0x44, 0x28, 0x7e, 0xaf, 0xb0, 0x80, 0x3b, 0x7e, 0xbc, 0xe6, 0x2a, 0x97, 0x33,
0xa8, 0x03, 0x0f, 0x04, 0xd6, 0x27, 0x23, 0xb5, 0x60, 0xbf, 0x4d, 0x68, 0xa2, 0xe0, 0xfc, 0x08,
0x9c, 0x21, 0xec, 0x2b, 0x77, 0x70, 0xd6, 0xe9, 0xdc, 0x07, 0xf8, 0x07, 0xd8, 0x6b, 0x13, 0x1a,
0x2d, 0x9d, 0xd3, 0x76, 0x55, 0x89, 0xf1, 0x22, 0xd2, 0x02, 0x41, 0x89, 0x23, 0xac, 0x94, 0x3e,
0x4e, 0xc1, 0x96, 0x33, 0xa8, 0x01, 0xbb, 0x7d, 0x56, 0x94, 0x4f, 0xfa, 0x0a, 0xbf, 0x3d, 0xee,
0x29, 0xb0, 0x56, 0xa0, 0x4c, 0xe1, 0xb9, 0x70, 0xd6, 0xea, 0xe2, 0xe3, 0x03, 0x0b, 0x99, 0x15,
0x0b, 0x58, 0xf0, 0xab, 0x36, 0xa1, 0xd5, 0xf9, 0xfc, 0xfe, 0xfa, 0x29, 0xcd, 0x86, 0xa7, 0xf1,
0xe4, 0x7f, 0x1f, 0x86, 0x9c, 0x41, 0x73, 0xf8, 0x3c, 0x12, 0xcd, 0xab, 0x57, 0x8b, 0x77, 0xac,
0x62, 0x0d, 0x9d, 0xe3, 0x0f, 0xfc, 0x64, 0x39, 0x83, 0xfa, 0xfc, 0x7d, 0x89, 0x5d, 0xd3, 0xbb,
0x3f, 0x9f, 0xa6, 0xbf, 0xd8, 0xbc, 0x67, 0xed, 0xf1, 0x93, 0x55, 0xd3, 0xec, 0x49, 0xc6, 0xe1,
0xca, 0x51, 0x38, 0xf6, 0x62, 0xbd, 0x07, 0x71, 0xf5, 0x13, 0x51, 0xce, 0x20, 0x0c, 0x87, 0x9d,
0x6e, 0xa3, 0x4d, 0x68, 0xf8, 0x6e, 0x14, 0xaf, 0xcc, 0xd5, 0x5a, 0xf7, 0x6e, 0xb1, 0x09, 0xa8,
0xd3, 0x6d, 0xd4, 0x55, 0x53, 0x23, 0xf3, 0x70, 0x97, 0x6b, 0x00, 0xd3, 0xe3, 0x62, 0x00, 0x0f,
0xc5, 0xd6, 0xbc, 0x57, 0x75, 0x20, 0x9f, 0x1e, 0x07, 0x4f, 0x57, 0xe2, 0xb3, 0x27, 0xbb, 0x9c,
0x41, 0x35, 0x38, 0x0a, 0xb6, 0x55, 0x9d, 0xcf, 0xef, 0x81, 0x4b, 0xdf, 0xd3, 0x1f, 0x7d, 0x73,
0x25, 0x5e, 0xfa, 0xeb, 0xbe, 0xee, 0x97, 0xc9, 0xa9, 0xd4, 0x2e, 0x01, 0xdf, 0x60, 0xb1, 0xa5,
0x04, 0x6d, 0xa0, 0x84, 0x5b, 0x93, 0xed, 0xa1, 0x15, 0x1b, 0x7c, 0x0b, 0xd0, 0x52, 0xfc, 0xe6,
0x13, 0x8a, 0x7b, 0x2a, 0xd1, 0xe4, 0x4a, 0x58, 0x2c, 0xd9, 0xb1, 0xe2, 0x1e, 0x28, 0xb5, 0x94,
0x36, 0xa1, 0x7e, 0xef, 0x27, 0x81, 0x97, 0xe8, 0x1c, 0x25, 0xf0, 0x92, 0x0d, 0x23, 0x39, 0x83,
0xfe, 0x0c, 0x87, 0x2d, 0xa5, 0x6e, 0x13, 0x95, 0x92, 0x58, 0xa7, 0x0e, 0x25, 0xfe, 0x77, 0x90,
0xd2, 0x27, 0x3c, 0x96, 0xd7, 0x89, 0x04, 0x2b, 0xfc, 0x01, 0x8a, 0xbc, 0xf7, 0xd8, 0xe3, 0x65,
0x75, 0xc2, 0x2b, 0xd1, 0x06, 0x6b, 0xd2, 0x7c, 0x6c, 0x4a, 0xce, 0xbc, 0xca, 0xa2, 0x36, 0x14,
0x9b, 0xda, 0x75, 0xd0, 0x0d, 0x5b, 0x97, 0x03, 0xd6, 0xcc, 0xc9, 0x19, 0xd4, 0x05, 0x24, 0x52,
0x4c, 0xec, 0xa7, 0x8a, 0xd5, 0xcd, 0xe9, 0xe3, 0xa3, 0xf4, 0x06, 0xb9, 0x9c, 0x41, 0xbf, 0x83,
0xdd, 0x36, 0xa1, 0x61, 0x63, 0x3d, 0x2d, 0x5e, 0x57, 0x6b, 0xb7, 0xe0, 0x48, 0x98, 0x23, 0x60,
0xd6, 0xaf, 0x45, 0x51, 0xfe, 0xf3, 0x70, 0x30, 0xec, 0x2b, 0xd4, 0xb2, 0xc9, 0x85, 0x71, 0x15,
0x7e, 0xcf, 0xaf, 0x12, 0xe2, 0xab, 0x7e, 0x0f, 0x5a, 0x11, 0xae, 0x23, 0x38, 0x64, 0xb9, 0x87,
0xc1, 0xea, 0x31, 0xdc, 0x75, 0x76, 0x5f, 0x6d, 0x43, 0x8e, 0x58, 0xf1, 0x7e, 0xef, 0xfb, 0x79,
0xa0, 0xab, 0xbf, 0xbb, 0x0f, 0x8f, 0x38, 0x96, 0x7f, 0x61, 0x7c, 0x30, 0x64, 0xfa, 0x27, 0x0f,
0x85, 0x3b, 0x52, 0xb6, 0x97, 0xe6, 0x8e, 0xe7, 0xab, 0xf1, 0xc5, 0x0f, 0x07, 0xcc, 0x2f, 0x8f,
0x23, 0xd7, 0xd9, 0x9d, 0xff, 0x70, 0xdd, 0x9f, 0x2b, 0x93, 0x2a, 0xfc, 0xd2, 0x7f, 0x2a, 0x00,
0x93, 0x73, 0x98, 0x2c, 0xe7, 0xec, 0xb5, 0xb8, 0x1e, 0xe1, 0xfe, 0x05, 0xfe, 0x08, 0x8f, 0xd2,
0x17, 0xa8, 0xea, 0xfa, 0x27, 0x83, 0xff, 0x09, 0x9e, 0xac, 0xda, 0xfd, 0xc2, 0xba, 0xf9, 0xf4,
0xcd, 0x8f, 0xe1, 0x71, 0xe8, 0xc2, 0xe4, 0xfc, 0x47, 0xfb, 0xb1, 0x07, 0x87, 0x1c, 0xf1, 0x8e,
0x07, 0xef, 0xd9, 0x6e, 0x7a, 0x98, 0x5d, 0xc2, 0x2f, 0xa2, 0xe7, 0x60, 0x95, 0x1f, 0xd7, 0xc5,
0xef, 0x07, 0xd8, 0xf9, 0xf9, 0xba, 0x35, 0x98, 0x2b, 0x3f, 0x09, 0xbf, 0x0f, 0x07, 0xa1, 0x9d,
0x83, 0x3b, 0xf5, 0xa3, 0x0d, 0x3c, 0x80, 0xc3, 0x10, 0x2e, 0xfc, 0x7b, 0xc3, 0xc7, 0xe2, 0x5d,
0x6e, 0xf3, 0x7f, 0x51, 0x7e, 0xfd, 0xb7, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc4, 0xe0, 0x0d, 0x9a,
0x53, 0x29, 0x00, 0x00,
}

View File

@ -59,6 +59,10 @@ service P4WNP1 {
rpc StoreTriggerActionSet(TriggerActionSet) returns (Empty) {}
rpc DeployStoredTriggerActionSetReplace(StringMessage) returns (TriggerActionSet) {} // Adds a set of additional TriggerActions, returns a set of all Triggeractions registered afterwards
rpc DeployStoredTriggerActionSetAdd(StringMessage) returns (TriggerActionSet) {} // Replaces registered TriggerActions with given set, returns a set ONLY OF ADDED TriggerActions (with assigned IDs)
rpc ListStoredHIDScripts(Empty) returns (StringMessageArray) {}
rpc ListStoredBashScripts(Empty) returns (StringMessageArray) {}
}
/* Triggers, Actions and resulting TriggerActions */

View File

@ -1,7 +1,9 @@
package service
import (
"io/ioutil"
"os/exec"
"path/filepath"
"strings"
)
@ -16,3 +18,44 @@ func binaryAvailable(binname string) bool {
}
return false
}
func ListFilesOfFolder(folderPath string, allowedExtensions ...string) (res []string, err error) {
// assure all allowed extensions are prepended with a dot and converted to lower case
for i,e := range allowedExtensions {
if len(e) == 0 { continue }
if []rune(e)[0] != '.' {
allowedExtensions[i] = "." + allowedExtensions[i]
}
allowedExtensions[i] = strings.ToLower(allowedExtensions[i])
}
fcontent,err := ioutil.ReadDir(folderPath)
if err != nil { return res,err }
for _,fitem := range fcontent {
if !fitem.IsDir() {
extensionValid := false
// seems to be a file
if len(allowedExtensions) > 0 {
//check if extension is valid
itemExt := strings.ToLower(filepath.Ext(fitem.Name()))
Inner:
for _,validExt := range allowedExtensions {
if validExt == itemExt {
extensionValid = true
break Inner
}
}
} else {
extensionValid = true
}
if extensionValid {
res = append(res, fitem.Name())
}
}
}
return
}

View File

@ -46,6 +46,20 @@ type server struct {
listenAddrWeb string
}
func (s *server) ListStoredHIDScripts(context.Context, *pb.Empty) (*pb.StringMessageArray, error) {
scripts,err := ListFilesOfFolder(PATH_HID_SCRIPTS, ".js", ".javascript")
if err != nil { return nil,err }
return &pb.StringMessageArray{MsgArray:scripts}, nil
}
func (s *server) ListStoredBashScripts(context.Context, *pb.Empty) (*pb.StringMessageArray, error) {
scripts,err := ListFilesOfFolder(PATH_BASH_SCRIPTS, ".sh", ".bash")
if err != nil { return nil,err }
return &pb.StringMessageArray{MsgArray:scripts}, nil
}
func (s *server) DeployStoredTriggerActionSetReplace(ctx context.Context, msg *pb.StringMessage) (tas *pb.TriggerActionSet, err error) {
// load set from store
tas = &pb.TriggerActionSet{}

View File

@ -226,7 +226,7 @@ func (tam *TriggerActionManager) onWifiConnectedAsSta(evt *pb.Event, ta *pb.Trig
}
func (tam *TriggerActionManager) onWifiApStarted(evt *pb.Event, ta *pb.TriggerAction, tt triggerType, at actionType) error {
//ToDo: filter by AP name
//ToDo: provide AP name with event and hand it over to the action
// always triggers
tam.executeAction(evt, ta, tt, at)
return nil
@ -252,7 +252,7 @@ func (tam *TriggerActionManager) onUsbGadgetDisconnected(evt *pb.Event, ta *pb.T
}
func (tam *TriggerActionManager) onGpioIn(evt *pb.Event, ta *pb.TriggerAction, tt triggerType, at actionType) error {
// only triggers if PIN matches
//ToDo: only trigger if PIN matches, important: Enum values have to be parsed for matching (0 != PIN0)
tam.executeAction(evt, ta, tt, at)
return nil
}
@ -326,15 +326,14 @@ func (tam *TriggerActionManager) executeAction(evt *pb.Event, ta *pb.TriggerActi
}
func (tam *TriggerActionManager) executeActionGroupSend(evt *pb.Event, ta *pb.TriggerAction, tt triggerType, at actionType, action *pb.ActionGroupSend) {
func (tam *TriggerActionManager) executeActionDeploySettingsTemplate(evt *pb.Event, ta *pb.TriggerAction, tt triggerType, at actionType, action *pb.ActionDeploySettingsTemplate) {
triggerName := triggerTypeString[tt]
actionName := actionTypeString[at]
groupName := action.GroupName
value := action.Value
fmt.Printf("Trigger '%s' fired -> executing action '%s' ('%s': %d)\n", triggerName, actionName, groupName, value)
templateTypeName := pb.ActionDeploySettingsTemplate_TemplateType_name[int32(action.Type)]
fmt.Printf("Trigger '%s' fired -> executing action '%s' (%s: '%s')\n", triggerName, actionName, templateTypeName, action.TemplateName)
tam.rootSvc.SubSysEvent.Emit(ConstructEventTriggerGroupReceive(groupName, value))
// ToDo: Implement
}
func (tam *TriggerActionManager) executeActionGPIOOut(evt *pb.Event, ta *pb.TriggerAction, tt triggerType, at actionType, action *pb.ActionGPIOOut) {
@ -347,6 +346,16 @@ func (tam *TriggerActionManager) executeActionGPIOOut(evt *pb.Event, ta *pb.Trig
// ToDo: Implement
}
func (tam *TriggerActionManager) executeActionGroupSend(evt *pb.Event, ta *pb.TriggerAction, tt triggerType, at actionType, action *pb.ActionGroupSend) {
triggerName := triggerTypeString[tt]
actionName := actionTypeString[at]
groupName := action.GroupName
value := action.Value
fmt.Printf("Trigger '%s' fired -> executing action '%s' ('%s': %d)\n", triggerName, actionName, groupName, value)
tam.rootSvc.SubSysEvent.Emit(ConstructEventTriggerGroupReceive(groupName, value))
}
func (tam *TriggerActionManager) executeActionStartHidScript(evt *pb.Event, ta *pb.TriggerAction, tt triggerType, at actionType, action *pb.ActionStartHIDScript) {
triggerName := triggerTypeString[tt]
@ -415,16 +424,6 @@ func (tam *TriggerActionManager) executeActionStartHidScript(evt *pb.Event, ta *
return
}
func (tam *TriggerActionManager) executeActionDeploySettingsTemplate(evt *pb.Event, ta *pb.TriggerAction, tt triggerType, at actionType, action *pb.ActionDeploySettingsTemplate) {
triggerName := triggerTypeString[tt]
actionName := actionTypeString[at]
templateTypeName := pb.ActionDeploySettingsTemplate_TemplateType_name[int32(action.Type)]
fmt.Printf("Trigger '%s' fired -> executing action '%s' (%s: '%s')\n", triggerName, actionName, templateTypeName, action.TemplateName)
// ToDo: Implement
}
func (tam *TriggerActionManager) executeActionBashScript(evt *pb.Event, ta *pb.TriggerAction, tt triggerType, at actionType, action *pb.ActionStartBashScript) {
triggerName := triggerTypeString[tt]
actionName := actionTypeString[at]
@ -511,37 +510,6 @@ func (tam *TriggerActionManager) executeActionLog(evt *pb.Event, ta *pb.TriggerA
tam.rootSvc.SubSysEvent.Emit(ConstructEventLog("TriggerAction", 0, logMessage))
}
/*
func (tam *TriggerActionManager) fireActionNoArgs(ta *pb.TriggerAction) (err error ) {
switch actionType := ta.Action.(type) {
case *pb.TriggerAction_BashScript:
bs := actionType.BashScript
scriptPath := PATH_BASH_SCRIPTS + "/" + bs.ScriptName
go common.RunBashScriptEnv(scriptPath)
fmt.Printf("Fire bash script '%s'\n", scriptPath)
case *pb.TriggerAction_HidScript:
// ToDo: Implement
hs := actionType.HidScript
fmt.Printf("Placeholder: Starting HID script '%s'\n", hs.ScriptName)
case *pb.TriggerAction_DeploySettingsTemplate:
// ToDo: Implement
st := actionType.DeploySettingsTemplate
strType := pb.ActionDeploySettingsTemplate_TemplateType_name[int32(st.Type)]
fmt.Printf("Placeholder: Deploy settings template of type [%s] with name '%s'\n", strType, st.TemplateName)
case *pb.TriggerAction_Log:
fmt.Printf("Logging trigger '%+v'\n", ta.Trigger)
case *pb.TriggerAction_GroupSend:
tam.executeActionGroupSend(ta, actionType.GroupSend)
case *pb.TriggerAction_GpioOut:
tam.executeActionGPIOOut(ta, actionType.GpioOut)
}
return nil
}
*/
// checks if the triggerType of the given event (if trigger event at all), matches the TriggerType of the TriggerAction
func taTriggerTypeMatchesEvtTriggerType(ttype triggerType, evt *pb.Event) bool {
if evt.Type != common_web.EVT_TRIGGER { return false }

View File

@ -128,10 +128,6 @@ ScriptSource string `js:"textSource"`
//{ "evtype": 0, "vmId": 2, "jobId": 3, "hasError": false, "result": "null", "error": "", "message": "Script started", "time": "2018-07-30 04:56:42.297533 +0000 UTC m=+7625.097825001" }
compHIDJobOverviewTemplate = `
<q-card class="full-height">
<q-card-title>
HIDScript jobs
</q-card-title>
<q-list>
<q-list-header>Running</q-list-header>
<hid-job-overview-item v-for="job in $store.getters.hidjobsRunning" :job="job" :key="job.id"></hid-job-overview-item>

View File

@ -13,9 +13,8 @@ type CompHIDScriptCodeEditorData struct {
CodeMirrorOptions *CodeMirrorOptionsType `js:"codemirrorOptions"`
}
func (data *CompHIDScriptCodeEditorData) SendAndRun(vm *hvue.VM) {
sourceCode := vm.Get("scriptContent").String()
func SendAndRun(vm *hvue.VM) {
sourceCode := vm.Get("$store").Get("state").Get("currentHIDScriptSource").String()
md5 := StringToMD5(sourceCode) //Calculate MD5 hexstring of current script content
go func() {
@ -80,7 +79,7 @@ func InitComponentsHIDScript() {
"hid-script-code-editor",
hvue.Template(compHIDScriptCodeEditorTemplate),
hvue.DataFunc(newCompHIDScriptCodeEditorData),
hvue.MethodsOf(&CompHIDScriptCodeEditorData{}),
hvue.Method("SendAndRun", SendAndRun),
hvue.ComputedWithGetSet(
"scriptContent",
func(vm *hvue.VM) interface{} {
@ -94,6 +93,21 @@ func InitComponentsHIDScript() {
hvue.NewComponent(
"hid-script",
hvue.Template(compHIDScriptTemplate),
hvue.DataFunc(func(vm *hvue.VM) interface{} {
data := struct {
*js.Object
ShowLoadHIDScriptModal bool `js:"ShowLoadHIDScriptModal"`
ShowStoreHIDScriptModal bool `js:"ShowStoreHIDScriptModal"`
}{Object: O()}
data.ShowLoadHIDScriptModal = false
data.ShowStoreHIDScriptModal = false
return &data
}),
hvue.Method("updateStoredHIDScriptsList",
func(vm *hvue.VM) {
vm.Store.Call("dispatch", VUEX_ACTION_UPDATE_STORED_HID_SCRIPTS_LIST)
}),
hvue.Method("SendAndRun", SendAndRun),
)
}
@ -101,7 +115,32 @@ const (
compHIDScriptTemplate = `
<q-page padding>
<modal-string-input v-model="ShowStoreHIDScriptModal" title="Store HIDScript" @save=""></modal-string-input>
<select-string-from-array :values="this.$store.state.StoredHIDScriptsList" v-model="ShowLoadHIDScriptModal" title="Load HIDScript to editor" @load=""></select-string-from-array>
<div class="row gutter-sm">
<div class="col-12">
<q-card>
<q-card-title>
HIDScript editor
</q-card-title>
<q-card-main>
<div class="row gutter-sm">
<div class="col-12 col-sm"><q-btn class="fit" color="primary" label="run" @click="SendAndRun()" icon="play_circle_filled" /></div>
<div class="col-12 col-sm"><q-btn class="fit" color="secondary" label="store" icon="save" @click="ShowStoreHIDScriptModal=true" /></div>
<div class="col-12 col-sm"><q-btn class="fit" color="warning" label="load & replace" icon="settings_backup_restore" @click="updateStoredHIDScriptsList(); ShowLoadHIDScriptModal=true"/></div>
<div class="col-12 col-sm"><q-btn class="fit" color="warning" label="load & prepend" icon="add_to_photos" @click="updateStoredHIDScriptsList(); ShowLoadHIDScriptModal=true"/></div>
<!-- <div class="col-12 col-sm"><q-btn class="fit" color="warning" label="load & add" @click="updateStoredTriggerActionSetsList(); showAddTASModal=true" icon="add_to_photos" /></div> -->
</div>
</q-card-main>
</q-card>
</div>
<div class="col-12 col-md-7 col-lg-8 col-xl-9">
<hid-script-code-editor></hid-script-code-editor>
</div>
@ -116,18 +155,11 @@ const (
`
compHIDScriptCodeEditorTemplate = `
<q-card class="full-height">
<!--
<q-card-title>
HIDScript editor
</q-card-title>
<q-card-separator />
<q-card-actions>
<q-btn color="primary" @click="SendAndRun()">run</q-btn>
</q-card-actions>
<q-card-separator />
-->
<q-card-main>
<codemirror v-model="scriptContent" :options="codemirrorOptions"></codemirror>
</q-card-main>

View File

@ -120,7 +120,7 @@ const templateSelectStringModal = `
<q-item tag="label">
<q-item-main>
<q-item-tile>
<q-btn color="primary" v-show="CurrentSelection != undefined" label="load" @click="onLoadPressed(); visible=false"/>
<q-btn color="primary" v-show="CurrentSelection != undefined" label="ok" @click="onLoadPressed(); visible=false"/>
<q-btn color="secondary" v-close-overlay label="close" />
</q-item-tile>
</q-item-main>

View File

@ -437,6 +437,24 @@ func InitComponentsTriggerActions() {
"action",
hvue.Props("ta"),
hvue.Template(templateAction),
hvue.DataFunc(func(vm *hvue.VM) interface{} {
data := struct {
*js.Object
ShowSelectHIDScriptModal bool `js:"ShowSelectHIDScriptModal"`
ShowSelectBashScriptModal bool `js:"ShowSelectBashScriptModal"`
}{Object: O()}
data.ShowSelectHIDScriptModal = false
data.ShowSelectBashScriptModal = false
return &data
}),
hvue.Method("updateStoredHIDScriptsList",
func(vm *hvue.VM) {
vm.Store.Call("dispatch", VUEX_ACTION_UPDATE_STORED_HID_SCRIPTS_LIST)
}),
hvue.Method("updateStoredBashScriptsList",
func(vm *hvue.VM) {
vm.Store.Call("dispatch", VUEX_ACTION_UPDATE_STORED_BASH_SCRIPTS_LIST)
}),
hvue.Computed("actiontypes", func(vm *hvue.VM) interface{} {
return generateSelectOptionsAction()
}),
@ -658,24 +676,28 @@ const templateAction = `
</q-item>
<q-item tag="label" v-if="isActionBashScript">
<modalLoadBashScript ref="bashScriptSelect"></modalLoadBashScript>
<select-string-from-array :values="this.$store.state.StoredBashScriptsList" v-model="ShowSelectBashScriptModal" title="Select BASH script" @load="ta.ActionData.ScriptName=$event"></select-string-from-array>
<q-item-main>
<q-item-tile label>Script path</q-item-tile>
<q-item-tile sublabel>Path to the BashScript which should be issued</q-item-tile>
<q-item-tile>
<q-input v-model="ta.ActionData.ScriptName" color="secondary" inverted readonly :after="[{icon: 'more_horiz', handler(){$refs.bashScriptSelect.setVisible(true)}}]" :disable="!ta.IsActive"></q-input>
<q-input @click="updateStoredBashScriptsList();ShowSelectBashScriptModal=true" v-model="ta.ActionData.ScriptName" color="secondary" inverted readonly :after="[{icon: 'more_horiz', handler(){}}]" :disable="!ta.IsActive"></q-input>
</q-item-tile>
</q-item-main>
</q-item>
<q-item tag="label" v-if="isActionHidScript">
<select-string-from-array :values="this.$store.state.StoredHIDScriptsList" v-model="ShowSelectHIDScriptModal" title="Select HIDScript" @load="ta.ActionData.ScriptName=$event"></select-string-from-array>
<q-item-main>
<q-item-tile label>Script name</q-item-tile>
<q-item-tile sublabel>Name of a stored HIDScript</q-item-tile>
<q-item-tile>
<q-input v-model="ta.ActionData.ScriptName" color="secondary" inverted :disable="!ta.IsActive"></q-input>
<q-input @click="updateStoredHIDScriptsList();ShowSelectHIDScriptModal=true" v-model="ta.ActionData.ScriptName" color="secondary" inverted readonly :after="[{icon: 'more_horiz', handler(){}}]" :disable="!ta.IsActive"></q-input>
</q-item-tile>
</q-item-main>
</q-item>
<q-item tag="label" v-if="isActionGPIOOut">

View File

@ -299,16 +299,16 @@ func (ta *jsTriggerAction) ChangeActionType(newAt actionType) {
data = d.Object
case ActionHidScript:
d := &jsActionStartHIDScript{Object:O()}
d.ScriptName = "some-hid-script.js"
d.ScriptName = ""
data = d.Object
case ActionDeploySettingsTemplate:
d := &jsActionDeploySettingsTemplate{Object:O()}
d.TemplateName = "some-template"
d.TemplateName = ""
d.Type = availableTemplateTypes[0]
data = d.Object
case ActionBashScript:
d := &jsActionStartBashScript{Object:O()}
d.ScriptName = "some-bash-script.sh"
d.ScriptName = ""
data = d.Object
case ActionGPIOOut:
d := &jsActionGPIOOut{Object:O()}

View File

@ -42,6 +42,13 @@ const (
VUEX_MUTATION_SET_CURRENT_HID_SCRIPT_SOURCE_TO = "setCurrentHIDScriptSource"
VUEX_MUTATION_SET_STORED_WIFI_SETTINGS_LIST = "setStoredWifiSettingsList"
VUEX_ACTION_UPDATE_STORED_BASH_SCRIPTS_LIST = "updateStoredBashScriptsList"
VUEX_ACTION_UPDATE_STORED_HID_SCRIPTS_LIST = "updateStoredHIDScriptsList"
VUEX_MUTATION_SET_STORED_BASH_SCRIPTS_LIST = "setStoredBashScriptsList"
VUEX_MUTATION_SET_STORED_HID_SCRIPTS_LIST = "setStoredHIDScriptsList"
VUEX_MUTATION_SET_STORED_TRIGGER_ACTIONS_SETS_LIST = "setStoredTriggerActionSetsList"
initHIDScript = `layout('us'); // US keyboard layout
@ -93,6 +100,8 @@ type GlobalState struct {
StoredWifiSettingsList []string `js:"StoredWifiSettingsList"`
StoredTriggerActionSetsList []string `js:"StoredTriggerActionSetsList"`
StoredBashScriptsList []string `js:"StoredBashScriptsList"`
StoredHIDScriptsList []string `js:"StoredHIDScriptsList"`
}
func createGlobalStateStruct() GlobalState {
@ -110,6 +119,8 @@ func createGlobalStateStruct() GlobalState {
state.StoredWifiSettingsList = []string{}
state.StoredTriggerActionSetsList = []string{}
state.StoredBashScriptsList = []string{}
state.StoredHIDScriptsList = []string{}
//Retrieve Interface settings
// ToDo: Replace panics by default values
ifSettings, err := RpcClient.GetAllDeployedEthernetInterfaceSettings(time.Second * 5)
@ -129,6 +140,44 @@ func createGlobalStateStruct() GlobalState {
return state
}
func actionUpdateStoredBashScriptsList(store *mvuex.Store, context *mvuex.ActionContext, state *GlobalState) {
go func() {
println("Trying to fetch stored BasScripts list")
//fetch deployed gadget settings
wsList, err := RpcClient.GetStoredBashScriptsList(defaultTimeout)
if err != nil {
println("Couldn't retrieve stored BasScripts list")
return
}
//commit to current
println(wsList)
context.Commit(VUEX_MUTATION_SET_STORED_BASH_SCRIPTS_LIST, wsList)
}()
return
}
func actionUpdateStoredHIDScriptsList(store *mvuex.Store, context *mvuex.ActionContext, state *GlobalState) {
go func() {
println("Trying to fetch stored HIDScripts list")
//fetch deployed gadget settings
wsList, err := RpcClient.GetStoredHIDScriptsList(defaultTimeout)
if err != nil {
println("Couldn't retrieve stored HIDScripts list")
return
}
//commit to current
println(wsList)
context.Commit(VUEX_MUTATION_SET_STORED_HID_SCRIPTS_LIST, wsList)
}()
return
}
func actionUpdateGadgetSettingsFromDeployed(store *mvuex.Store, context *mvuex.ActionContext, state *GlobalState) {
go func() {
//fetch deployed gadget settings
@ -453,6 +502,12 @@ func initMVuex() *mvuex.Store {
println("New ws list", wsList)
hvue.Set(state, "StoredWifiSettingsList", wsList)
}),
mvuex.Mutation(VUEX_MUTATION_SET_STORED_BASH_SCRIPTS_LIST, func(store *mvuex.Store, state *GlobalState, bsList []interface{}) {
hvue.Set(state, "StoredBashScriptsList", bsList)
}),
mvuex.Mutation(VUEX_MUTATION_SET_STORED_HID_SCRIPTS_LIST, func(store *mvuex.Store, state *GlobalState, hidsList []interface{}) {
hvue.Set(state, "StoredHIDScriptsList", hidsList)
}),
mvuex.Mutation(VUEX_MUTATION_SET_STORED_TRIGGER_ACTIONS_SETS_LIST, func(store *mvuex.Store, state *GlobalState, tasList []interface{}) {
hvue.Set(state, "StoredTriggerActionSetsList", tasList)
}),
@ -485,6 +540,10 @@ func initMVuex() *mvuex.Store {
mvuex.Action(VUEX_ACTION_DEPLOY_TRIGGER_ACTION_SET_REPLACE, actionDeployTriggerActionSetReplace),
mvuex.Action(VUEX_ACTION_DEPLOY_TRIGGER_ACTION_SET_ADD, actionDeployTriggerActionSetAdd),
mvuex.Action(VUEX_ACTION_UPDATE_STORED_BASH_SCRIPTS_LIST, actionUpdateStoredBashScriptsList),
mvuex.Action(VUEX_ACTION_UPDATE_STORED_HID_SCRIPTS_LIST, actionUpdateStoredHIDScriptsList),
mvuex.Getter("triggerActions", func(state *GlobalState) interface{} {
return state.TriggerActionList.TriggerActions
}),

View File

@ -30,6 +30,25 @@ func NewRpcClient(addr string) Rpc {
return rcl
}
func (rpc *Rpc) GetStoredBashScriptsList(timeout time.Duration) (ws []string, err error) {
ctx, cancel := context.WithTimeout(context.Background(), timeout)
defer cancel()
ma, err := rpc.Client.ListStoredBashScripts(ctx, &pb.Empty{})
if err != nil { return ws, err }
return ma.MsgArray, err
}
func (rpc *Rpc) GetStoredHIDScriptsList(timeout time.Duration) (ws []string, err error) {
ctx, cancel := context.WithTimeout(context.Background(), timeout)
defer cancel()
ma, err := rpc.Client.ListStoredHIDScripts(ctx, &pb.Empty{})
if err != nil { return ws, err }
return ma.MsgArray, err
}
func (rpc *Rpc) DeployedEthernetInterfaceSettings(timeout time.Duration, settings *pb.EthernetInterfaceSettings) (err error) {
// ToDo: The RPC call has to return an error in case deployment fails
ctx, cancel := context.WithTimeout(context.Background(), timeout)