Update TriggerActions without recreating unchanged ones

This commit is contained in:
MaMe82 2018-11-08 14:30:20 +01:00
parent 5c0d8310ed
commit 391a9400af
7 changed files with 402 additions and 307 deletions

View File

@ -6517,6 +6517,7 @@ type P4WNP1Client interface {
DeployTriggerActionSetReplace(ctx context.Context, in *TriggerActionSet, opts ...grpcweb.CallOption) (*TriggerActionSet, error)
DeployTriggerActionSetAdd(ctx context.Context, in *TriggerActionSet, opts ...grpcweb.CallOption) (*TriggerActionSet, error)
DeployTriggerActionSetRemove(ctx context.Context, in *TriggerActionSet, opts ...grpcweb.CallOption) (*TriggerActionSet, error)
DeployTriggerActionSetUpdate(ctx context.Context, in *TriggerActionSet, opts ...grpcweb.CallOption) (*TriggerActionSet, error)
ListStoredTriggerActionSets(ctx context.Context, in *Empty, opts ...grpcweb.CallOption) (*StringMessageArray, error)
StoreTriggerActionSet(ctx context.Context, in *TriggerActionSet, opts ...grpcweb.CallOption) (*Empty, error)
DeployStoredTriggerActionSetReplace(ctx context.Context, in *StringMessage, opts ...grpcweb.CallOption) (*TriggerActionSet, error)
@ -7107,6 +7108,15 @@ func (c *p4WNP1Client) DeployTriggerActionSetRemove(ctx context.Context, in *Tri
return new(TriggerActionSet).Unmarshal(resp)
}
func (c *p4WNP1Client) DeployTriggerActionSetUpdate(ctx context.Context, in *TriggerActionSet, opts ...grpcweb.CallOption) (*TriggerActionSet, error) {
resp, err := c.client.RPCCall(ctx, "DeployTriggerActionSetUpdate", in.Marshal(), opts...)
if err != nil {
return nil, err
}
return new(TriggerActionSet).Unmarshal(resp)
}
func (c *p4WNP1Client) ListStoredTriggerActionSets(ctx context.Context, in *Empty, opts ...grpcweb.CallOption) (*StringMessageArray, error) {
resp, err := c.client.RPCCall(ctx, "ListStoredTriggerActionSets", in.Marshal(), opts...)
if err != nil {

View File

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

View File

@ -88,6 +88,7 @@ service P4WNP1 {
rpc DeployTriggerActionSetReplace(TriggerActionSet) returns (TriggerActionSet) {} // Replaces registered TriggerActions with given set, returns a set ONLY OF ADDED TriggerActions (with assigned IDs)
rpc DeployTriggerActionSetAdd(TriggerActionSet) returns (TriggerActionSet) {} // Adds a set of additional TriggerActions, returns a set of all Triggeractions registered afterwards
rpc DeployTriggerActionSetRemove(TriggerActionSet) returns (TriggerActionSet) {} // Removes registered TriggerActions from given set, returns a set ONLY OF REMOVED TriggerActions (with assigned IDs)
rpc DeployTriggerActionSetUpdate(TriggerActionSet) returns (TriggerActionSet) {} // Updates already registered TriggerActions from given set, returns aall regitered TriggerActions
rpc ListStoredTriggerActionSets(Empty) returns (StringMessageArray) {}
rpc StoreTriggerActionSet(TriggerActionSet) returns (Empty) {}

View File

@ -51,6 +51,19 @@ type server struct {
listenAddrWeb string
}
func (s *server) DeployTriggerActionSetUpdate(ctx context.Context, updateTas *pb.TriggerActionSet) (resultingTas *pb.TriggerActionSet, err error) {
defer s.rootSvc.SubSysEvent.Emit(ConstructEventNotifyStateChange(common_web.STATE_CHANGE_EVT_TYPE_TRIGGER_ACTIONS))
for _, updateTa := range updateTas.TriggerActions {
// try to find the trigger action to update by ID
if s.rootSvc.SubSysTriggerActions.UpdateTriggerAction(updateTa, false) != nil {
// coudln't find the given action, return with error
return &s.rootSvc.SubSysTriggerActions.registeredTriggerActions,errors.New(fmt.Sprintf("Couldn't find trigger action with id %d", updateTa.Id))
}
}
resultingTas = &s.rootSvc.SubSysTriggerActions.registeredTriggerActions
return
}
func (s *server) GetAvailableGpios(context.Context, *pb.Empty) (res *pb.StringMessageArray, err error) {
res = &pb.StringMessageArray{}
res.MsgArray,err = s.rootSvc.SubSysGpio.GetAvailableGpioNames()

View File

@ -346,11 +346,17 @@ func InitComponentsTriggerActions() {
hvue.Method(
"updateTA",
func(vm *hvue.VM) {
println("update ta: ", vm.Get("ta"))
ta_obj := vm.Get("ta")
println("update ta: ", ta_obj)
/*
//Replace the whole TriggerActionSet of server with the current one from vuex store
// ToDo: This has to be changed to update a single action (inconssistnecy with multiple clients, all TA IDs change, overhead of transferring a whole set) -> has to be implemented like deleteTA logic
currentTas := vm.Get("$store").Get("state").Get("triggerActionList") //Current TriggerActionSet of ViewModel
vm.Get("$store").Call("dispatch", VUEX_ACTION_DEPLOY_TRIGGER_ACTION_SET_REPLACE, currentTas)
*/
updateTas := NewTriggerActionSet()
updateTas.UpdateEntry(&jsTriggerAction{Object: ta_obj})
vm.Get("$store").Call("dispatch", VUEX_ACTION_UPDATE_TRIGGER_ACTIONS, updateTas)
}),
hvue.Method(
"cancelUpdateTA",

View File

@ -101,6 +101,7 @@ const (
VUEX_ACTION_UPDATE_CURRENT_TRIGGER_ACTIONS_FROM_SERVER = "updateCurrentTriggerActionsFromServer"
VUEX_ACTION_ADD_NEW_TRIGGER_ACTION = "addTriggerAction"
VUEX_ACTION_REMOVE_TRIGGER_ACTIONS = "removeTriggerActions"
VUEX_ACTION_UPDATE_TRIGGER_ACTIONS = "updateTriggerActions"
VUEX_ACTION_STORE_TRIGGER_ACTION_SET = "storeTriggerActionSet"
VUEX_ACTION_UPDATE_STORED_TRIGGER_ACTION_SETS_LIST = "updateStoredTriggerActionSetsList"
VUEX_ACTION_DEPLOY_STORED_TRIGGER_ACTION_SET_REPLACE = "deployStoredTriggerActionSetReplace"
@ -1169,6 +1170,28 @@ func actionAddNewTriggerAction(store *mvuex.Store, context *mvuex.ActionContext,
return
}
func actionUpdateTriggerActions(store *mvuex.Store, context *mvuex.ActionContext, state *GlobalState, jsTas *jsTriggerActionSet) {
go func() {
goTa,err := RpcClient.DeployTriggerActionsSetUpdate(defaultTimeout, jsTas.toGo())
if err != nil {
actionUpdateCurrentTriggerActionsFromServer(store, context, state)
return
}
//actionUpdateCurrentTriggerActionsFromServer(store, context, state)
state.TriggerActionList.Flush()
for _, ta := range goTa.TriggerActions {
jsTA := NewTriggerAction()
jsTA.fromGo(ta)
state.TriggerActionList.UpdateEntry(jsTA)
}
}()
return
}
func actionRemoveTriggerActions(store *mvuex.Store, context *mvuex.ActionContext, state *GlobalState, jsTas *jsTriggerActionSet) {
go func() {
RpcClient.DeployTriggerActionsSetRemove(defaultTimeout, jsTas.toGo())
@ -1435,6 +1458,7 @@ func initMVuex() *mvuex.Store {
mvuex.Action(VUEX_ACTION_UPDATE_CURRENT_TRIGGER_ACTIONS_FROM_SERVER, actionUpdateCurrentTriggerActionsFromServer),
mvuex.Action(VUEX_ACTION_ADD_NEW_TRIGGER_ACTION, actionAddNewTriggerAction),
mvuex.Action(VUEX_ACTION_REMOVE_TRIGGER_ACTIONS, actionRemoveTriggerActions),
mvuex.Action(VUEX_ACTION_UPDATE_TRIGGER_ACTIONS, actionUpdateTriggerActions),
mvuex.Action(VUEX_ACTION_STORE_TRIGGER_ACTION_SET, actionStoreTriggerActionSet),
mvuex.Action(VUEX_ACTION_UPDATE_STORED_TRIGGER_ACTION_SETS_LIST, actionUpdateStoredTriggerActionSetsList),
mvuex.Action(VUEX_ACTION_DEPLOY_STORED_TRIGGER_ACTION_SET_REPLACE, actionDeployStoredTriggerActionSetReplace),

View File

@ -563,6 +563,13 @@ func (rpc *Rpc) DeployTriggerActionsSetRemove(timeout time.Duration, set *pb.Tri
return rpc.Client.DeployTriggerActionSetRemove(ctx, set)
}
func (rpc *Rpc) DeployTriggerActionsSetUpdate(timeout time.Duration, set *pb.TriggerActionSet) (res *pb.TriggerActionSet, err error) {
ctx, cancel := context.WithTimeout(context.Background(), timeout)
defer cancel()
return rpc.Client.DeployTriggerActionSetUpdate(ctx, set)
}
func (rpc *Rpc) DeployTriggerActionsSetAdd(timeout time.Duration, set *pb.TriggerActionSet) (res *pb.TriggerActionSet, err error) {
ctx, cancel := context.WithTimeout(context.Background(), timeout)
defer cancel()