- Add projectID explicitly to GetIngressInfoResponse as we cannot send it in headers on a response - move ingressobs.Reporter to protocol - Remove the unused KillIngressSession RPC - Random fmt fixes by the protobuf linter included in my editor... --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
497 lines
26 KiB
Go
497 lines
26 KiB
Go
// Code generated by protoc-gen-psrpc v0.7.0, DO NOT EDIT.
|
|
// source: rpc/io.proto
|
|
|
|
package rpc
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/livekit/psrpc"
|
|
"github.com/livekit/psrpc/pkg/client"
|
|
"github.com/livekit/psrpc/pkg/info"
|
|
"github.com/livekit/psrpc/pkg/rand"
|
|
"github.com/livekit/psrpc/pkg/server"
|
|
"github.com/livekit/psrpc/version"
|
|
)
|
|
import google_protobuf "google.golang.org/protobuf/types/known/emptypb"
|
|
import livekit4 "github.com/livekit/protocol/livekit"
|
|
import livekit5 "github.com/livekit/protocol/livekit"
|
|
|
|
var _ = version.PsrpcVersion_0_7
|
|
|
|
// =======================
|
|
// IOInfo Client Interface
|
|
// =======================
|
|
|
|
type IOInfoClient interface {
|
|
// egress
|
|
CreateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
|
|
|
|
UpdateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
|
|
|
|
GetEgress(ctx context.Context, req *GetEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error)
|
|
|
|
ListEgress(ctx context.Context, req *livekit4.ListEgressRequest, opts ...psrpc.RequestOption) (*livekit4.ListEgressResponse, error)
|
|
|
|
UpdateMetrics(ctx context.Context, req *UpdateMetricsRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
|
|
|
|
// ingress
|
|
CreateIngress(ctx context.Context, req *livekit5.IngressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
|
|
|
|
GetIngressInfo(ctx context.Context, req *GetIngressInfoRequest, opts ...psrpc.RequestOption) (*GetIngressInfoResponse, error)
|
|
|
|
UpdateIngressState(ctx context.Context, req *UpdateIngressStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
|
|
|
|
// sip
|
|
GetSIPTrunkAuthentication(ctx context.Context, req *GetSIPTrunkAuthenticationRequest, opts ...psrpc.RequestOption) (*GetSIPTrunkAuthenticationResponse, error)
|
|
|
|
EvaluateSIPDispatchRules(ctx context.Context, req *EvaluateSIPDispatchRulesRequest, opts ...psrpc.RequestOption) (*EvaluateSIPDispatchRulesResponse, error)
|
|
|
|
UpdateSIPCallState(ctx context.Context, req *UpdateSIPCallStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
|
|
|
|
RecordCallContext(ctx context.Context, req *RecordCallContextRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Close()
|
|
}
|
|
|
|
// ===========================
|
|
// IOInfo ServerImpl Interface
|
|
// ===========================
|
|
|
|
type IOInfoServerImpl interface {
|
|
// egress
|
|
CreateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error)
|
|
|
|
UpdateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error)
|
|
|
|
GetEgress(context.Context, *GetEgressRequest) (*livekit4.EgressInfo, error)
|
|
|
|
ListEgress(context.Context, *livekit4.ListEgressRequest) (*livekit4.ListEgressResponse, error)
|
|
|
|
UpdateMetrics(context.Context, *UpdateMetricsRequest) (*google_protobuf.Empty, error)
|
|
|
|
// ingress
|
|
CreateIngress(context.Context, *livekit5.IngressInfo) (*google_protobuf.Empty, error)
|
|
|
|
GetIngressInfo(context.Context, *GetIngressInfoRequest) (*GetIngressInfoResponse, error)
|
|
|
|
UpdateIngressState(context.Context, *UpdateIngressStateRequest) (*google_protobuf.Empty, error)
|
|
|
|
// sip
|
|
GetSIPTrunkAuthentication(context.Context, *GetSIPTrunkAuthenticationRequest) (*GetSIPTrunkAuthenticationResponse, error)
|
|
|
|
EvaluateSIPDispatchRules(context.Context, *EvaluateSIPDispatchRulesRequest) (*EvaluateSIPDispatchRulesResponse, error)
|
|
|
|
UpdateSIPCallState(context.Context, *UpdateSIPCallStateRequest) (*google_protobuf.Empty, error)
|
|
|
|
RecordCallContext(context.Context, *RecordCallContextRequest) (*google_protobuf.Empty, error)
|
|
}
|
|
|
|
// =======================
|
|
// IOInfo Server Interface
|
|
// =======================
|
|
|
|
type IOInfoServer interface {
|
|
|
|
// Close and wait for pending RPCs to complete
|
|
Shutdown()
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Kill()
|
|
}
|
|
|
|
// =============
|
|
// IOInfo Client
|
|
// =============
|
|
|
|
type iOInfoClient struct {
|
|
client *client.RPCClient
|
|
}
|
|
|
|
// NewIOInfoClient creates a psrpc client that implements the IOInfoClient interface.
|
|
func NewIOInfoClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (IOInfoClient, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "IOInfo",
|
|
ID: rand.NewClientID(),
|
|
}
|
|
|
|
sd.RegisterMethod("CreateEgress", false, false, true, true)
|
|
sd.RegisterMethod("UpdateEgress", false, false, true, true)
|
|
sd.RegisterMethod("GetEgress", false, false, true, true)
|
|
sd.RegisterMethod("ListEgress", false, false, true, true)
|
|
sd.RegisterMethod("UpdateMetrics", false, false, true, true)
|
|
sd.RegisterMethod("CreateIngress", false, false, true, true)
|
|
sd.RegisterMethod("GetIngressInfo", false, false, true, true)
|
|
sd.RegisterMethod("UpdateIngressState", false, false, true, true)
|
|
sd.RegisterMethod("GetSIPTrunkAuthentication", false, false, true, true)
|
|
sd.RegisterMethod("EvaluateSIPDispatchRules", false, false, true, true)
|
|
sd.RegisterMethod("UpdateSIPCallState", false, false, true, true)
|
|
sd.RegisterMethod("RecordCallContext", false, false, true, true)
|
|
|
|
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &iOInfoClient{
|
|
client: rpcClient,
|
|
}, nil
|
|
}
|
|
|
|
func (c *iOInfoClient) CreateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
|
|
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "CreateEgress", nil, req, opts...)
|
|
}
|
|
|
|
func (c *iOInfoClient) UpdateEgress(ctx context.Context, req *livekit4.EgressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
|
|
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateEgress", nil, req, opts...)
|
|
}
|
|
|
|
func (c *iOInfoClient) GetEgress(ctx context.Context, req *GetEgressRequest, opts ...psrpc.RequestOption) (*livekit4.EgressInfo, error) {
|
|
return client.RequestSingle[*livekit4.EgressInfo](ctx, c.client, "GetEgress", nil, req, opts...)
|
|
}
|
|
|
|
func (c *iOInfoClient) ListEgress(ctx context.Context, req *livekit4.ListEgressRequest, opts ...psrpc.RequestOption) (*livekit4.ListEgressResponse, error) {
|
|
return client.RequestSingle[*livekit4.ListEgressResponse](ctx, c.client, "ListEgress", nil, req, opts...)
|
|
}
|
|
|
|
func (c *iOInfoClient) UpdateMetrics(ctx context.Context, req *UpdateMetricsRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
|
|
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateMetrics", nil, req, opts...)
|
|
}
|
|
|
|
func (c *iOInfoClient) CreateIngress(ctx context.Context, req *livekit5.IngressInfo, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
|
|
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "CreateIngress", nil, req, opts...)
|
|
}
|
|
|
|
func (c *iOInfoClient) GetIngressInfo(ctx context.Context, req *GetIngressInfoRequest, opts ...psrpc.RequestOption) (*GetIngressInfoResponse, error) {
|
|
return client.RequestSingle[*GetIngressInfoResponse](ctx, c.client, "GetIngressInfo", nil, req, opts...)
|
|
}
|
|
|
|
func (c *iOInfoClient) UpdateIngressState(ctx context.Context, req *UpdateIngressStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
|
|
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateIngressState", nil, req, opts...)
|
|
}
|
|
|
|
func (c *iOInfoClient) GetSIPTrunkAuthentication(ctx context.Context, req *GetSIPTrunkAuthenticationRequest, opts ...psrpc.RequestOption) (*GetSIPTrunkAuthenticationResponse, error) {
|
|
return client.RequestSingle[*GetSIPTrunkAuthenticationResponse](ctx, c.client, "GetSIPTrunkAuthentication", nil, req, opts...)
|
|
}
|
|
|
|
func (c *iOInfoClient) EvaluateSIPDispatchRules(ctx context.Context, req *EvaluateSIPDispatchRulesRequest, opts ...psrpc.RequestOption) (*EvaluateSIPDispatchRulesResponse, error) {
|
|
return client.RequestSingle[*EvaluateSIPDispatchRulesResponse](ctx, c.client, "EvaluateSIPDispatchRules", nil, req, opts...)
|
|
}
|
|
|
|
func (c *iOInfoClient) UpdateSIPCallState(ctx context.Context, req *UpdateSIPCallStateRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
|
|
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "UpdateSIPCallState", nil, req, opts...)
|
|
}
|
|
|
|
func (c *iOInfoClient) RecordCallContext(ctx context.Context, req *RecordCallContextRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
|
|
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "RecordCallContext", nil, req, opts...)
|
|
}
|
|
|
|
func (s *iOInfoClient) Close() {
|
|
s.client.Close()
|
|
}
|
|
|
|
// =============
|
|
// IOInfo Server
|
|
// =============
|
|
|
|
type iOInfoServer struct {
|
|
svc IOInfoServerImpl
|
|
rpc *server.RPCServer
|
|
}
|
|
|
|
// NewIOInfoServer builds a RPCServer that will route requests
|
|
// to the corresponding method in the provided svc implementation.
|
|
func NewIOInfoServer(svc IOInfoServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (IOInfoServer, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "IOInfo",
|
|
ID: rand.NewServerID(),
|
|
}
|
|
|
|
s := server.NewRPCServer(sd, bus, opts...)
|
|
|
|
sd.RegisterMethod("CreateEgress", false, false, true, true)
|
|
var err error
|
|
err = server.RegisterHandler(s, "CreateEgress", nil, svc.CreateEgress, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("UpdateEgress", false, false, true, true)
|
|
err = server.RegisterHandler(s, "UpdateEgress", nil, svc.UpdateEgress, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("GetEgress", false, false, true, true)
|
|
err = server.RegisterHandler(s, "GetEgress", nil, svc.GetEgress, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("ListEgress", false, false, true, true)
|
|
err = server.RegisterHandler(s, "ListEgress", nil, svc.ListEgress, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("UpdateMetrics", false, false, true, true)
|
|
err = server.RegisterHandler(s, "UpdateMetrics", nil, svc.UpdateMetrics, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("CreateIngress", false, false, true, true)
|
|
err = server.RegisterHandler(s, "CreateIngress", nil, svc.CreateIngress, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("GetIngressInfo", false, false, true, true)
|
|
err = server.RegisterHandler(s, "GetIngressInfo", nil, svc.GetIngressInfo, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("UpdateIngressState", false, false, true, true)
|
|
err = server.RegisterHandler(s, "UpdateIngressState", nil, svc.UpdateIngressState, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("GetSIPTrunkAuthentication", false, false, true, true)
|
|
err = server.RegisterHandler(s, "GetSIPTrunkAuthentication", nil, svc.GetSIPTrunkAuthentication, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("EvaluateSIPDispatchRules", false, false, true, true)
|
|
err = server.RegisterHandler(s, "EvaluateSIPDispatchRules", nil, svc.EvaluateSIPDispatchRules, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("UpdateSIPCallState", false, false, true, true)
|
|
err = server.RegisterHandler(s, "UpdateSIPCallState", nil, svc.UpdateSIPCallState, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("RecordCallContext", false, false, true, true)
|
|
err = server.RegisterHandler(s, "RecordCallContext", nil, svc.RecordCallContext, nil)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
return &iOInfoServer{
|
|
svc: svc,
|
|
rpc: s,
|
|
}, nil
|
|
}
|
|
|
|
func (s *iOInfoServer) Shutdown() {
|
|
s.rpc.Close(false)
|
|
}
|
|
|
|
func (s *iOInfoServer) Kill() {
|
|
s.rpc.Close(true)
|
|
}
|
|
|
|
// ===========================
|
|
// IOInfo Unimplemented Server
|
|
// ===========================
|
|
|
|
type UnimplementedIOInfoServer struct{}
|
|
|
|
func (UnimplementedIOInfoServer) CreateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIOInfoServer) UpdateEgress(context.Context, *livekit4.EgressInfo) (*google_protobuf.Empty, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIOInfoServer) GetEgress(context.Context, *GetEgressRequest) (*livekit4.EgressInfo, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIOInfoServer) ListEgress(context.Context, *livekit4.ListEgressRequest) (*livekit4.ListEgressResponse, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIOInfoServer) UpdateMetrics(context.Context, *UpdateMetricsRequest) (*google_protobuf.Empty, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIOInfoServer) CreateIngress(context.Context, *livekit5.IngressInfo) (*google_protobuf.Empty, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIOInfoServer) GetIngressInfo(context.Context, *GetIngressInfoRequest) (*GetIngressInfoResponse, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIOInfoServer) UpdateIngressState(context.Context, *UpdateIngressStateRequest) (*google_protobuf.Empty, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIOInfoServer) GetSIPTrunkAuthentication(context.Context, *GetSIPTrunkAuthenticationRequest) (*GetSIPTrunkAuthenticationResponse, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIOInfoServer) EvaluateSIPDispatchRules(context.Context, *EvaluateSIPDispatchRulesRequest) (*EvaluateSIPDispatchRulesResponse, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIOInfoServer) UpdateSIPCallState(context.Context, *UpdateSIPCallStateRequest) (*google_protobuf.Empty, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIOInfoServer) RecordCallContext(context.Context, *RecordCallContextRequest) (*google_protobuf.Empty, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
var psrpcFileDescriptor4 = []byte{
|
|
// 2036 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x18, 0x4d, 0x77, 0xdb, 0xc6,
|
|
0x31, 0x94, 0x28, 0x8a, 0x1c, 0x52, 0x22, 0xb5, 0xa2, 0x54, 0x88, 0x6a, 0x6c, 0x9a, 0xae, 0x63,
|
|
0x39, 0x4d, 0xa9, 0x46, 0x3d, 0x24, 0x75, 0x12, 0x27, 0x12, 0x05, 0xd9, 0x4c, 0x6c, 0x89, 0x86,
|
|
0xc8, 0xf7, 0x9a, 0xbe, 0xf6, 0xa1, 0x10, 0xb0, 0xa4, 0x10, 0x81, 0x58, 0x74, 0xb1, 0x90, 0xad,
|
|
0xe6, 0xe5, 0xdc, 0x1e, 0x9a, 0x1e, 0x7a, 0xe9, 0xa9, 0xaf, 0xb7, 0xfe, 0x8a, 0xfe, 0xa4, 0xdc,
|
|
0x7b, 0xe9, 0xa1, 0x6f, 0x3f, 0x40, 0x82, 0x5f, 0x16, 0xe9, 0xbe, 0xd7, 0x13, 0x89, 0xf9, 0xde,
|
|
0xd9, 0x99, 0xd9, 0x99, 0x81, 0x02, 0x0d, 0xec, 0x7d, 0x97, 0xd4, 0x03, 0x4a, 0x18, 0x41, 0xcb,
|
|
0x34, 0xb0, 0x2b, 0x65, 0xcf, 0xbd, 0xc6, 0x57, 0x2e, 0x33, 0x71, 0x8f, 0xe2, 0x30, 0x94, 0xa8,
|
|
0xca, 0x56, 0x0c, 0x75, 0xfd, 0x24, 0x78, 0x23, 0x06, 0x87, 0x6e, 0xa0, 0x40, 0x28, 0x06, 0x51,
|
|
0x42, 0xfa, 0x0a, 0x56, 0xf6, 0x48, 0xaf, 0x87, 0xe9, 0x3e, 0x09, 0x98, 0x4b, 0xfc, 0x98, 0x79,
|
|
0xb7, 0x47, 0x48, 0xcf, 0xc3, 0xfb, 0xe2, 0xeb, 0x22, 0xea, 0xee, 0xe3, 0x7e, 0xc0, 0x6e, 0x14,
|
|
0xf2, 0xce, 0x38, 0xd2, 0x89, 0xa8, 0xc5, 0xb9, 0x25, 0xbe, 0xb6, 0x0f, 0xa5, 0xa7, 0x98, 0xe9,
|
|
0xc2, 0x18, 0x03, 0xff, 0x3e, 0xc2, 0x21, 0x43, 0xbb, 0x90, 0x93, 0x46, 0x9b, 0xae, 0xa3, 0xa5,
|
|
0xaa, 0xa9, 0xbd, 0x9c, 0x91, 0x95, 0x80, 0xa6, 0x53, 0xfb, 0x63, 0x0a, 0xca, 0x9d, 0xc0, 0xb1,
|
|
0x18, 0x7e, 0x81, 0x19, 0x75, 0xed, 0x01, 0xd7, 0x43, 0x48, 0xbb, 0x7e, 0x97, 0x08, 0x86, 0xfc,
|
|
0xc1, 0x66, 0x5d, 0xd9, 0x5f, 0x97, 0xb2, 0x9b, 0x7e, 0x97, 0x18, 0x82, 0x00, 0xd5, 0x60, 0xcd,
|
|
0xba, 0xee, 0x99, 0x76, 0x10, 0x99, 0x51, 0x68, 0xf5, 0xb0, 0xb6, 0x5c, 0x4d, 0xed, 0x2d, 0x19,
|
|
0x79, 0xeb, 0xba, 0xd7, 0x08, 0xa2, 0x0e, 0x07, 0x71, 0x9a, 0xbe, 0xf5, 0x3a, 0x41, 0x93, 0x96,
|
|
0x34, 0x7d, 0xeb, 0x75, 0x4c, 0x53, 0xeb, 0xc0, 0xd6, 0x53, 0xcc, 0x9a, 0xfe, 0x50, 0xbe, 0xb2,
|
|
0xe4, 0x5d, 0x00, 0xe5, 0xde, 0xe1, 0x01, 0x72, 0x0a, 0xd2, 0x74, 0x38, 0x3a, 0x64, 0x14, 0x5b,
|
|
0x7d, 0xf3, 0x0a, 0xdf, 0x68, 0x4b, 0x12, 0x2d, 0x21, 0x5f, 0xe1, 0x9b, 0xda, 0xbf, 0x96, 0x61,
|
|
0x7b, 0x5c, 0x6e, 0x18, 0x10, 0x3f, 0xc4, 0x68, 0x6f, 0xe4, 0x88, 0xe5, 0xc1, 0x11, 0x93, 0xb4,
|
|
0xf2, 0x8c, 0x65, 0x58, 0x61, 0xe4, 0x0a, 0xfb, 0x4a, 0xbc, 0xfc, 0x40, 0x5b, 0x90, 0x79, 0x15,
|
|
0x9a, 0x11, 0xf5, 0xc4, 0x91, 0x73, 0xc6, 0xca, 0xab, 0xb0, 0x43, 0x3d, 0x6e, 0x50, 0x40, 0xc9,
|
|
0x37, 0xd8, 0x66, 0xdc, 0xde, 0x8c, 0x34, 0x48, 0x41, 0x9a, 0x0e, 0xea, 0xc0, 0x3a, 0xbf, 0x77,
|
|
0xd7, 0xef, 0x99, 0x5d, 0x17, 0x7b, 0x4e, 0xa8, 0xa5, 0xab, 0xcb, 0x7b, 0xf9, 0x83, 0x7a, 0x9d,
|
|
0x06, 0x76, 0x7d, 0xba, 0xa9, 0xf5, 0xe7, 0x92, 0xe3, 0x44, 0x30, 0xe8, 0x3e, 0xa3, 0x37, 0xc6,
|
|
0x9a, 0x97, 0x84, 0x21, 0x03, 0xd6, 0xba, 0xd8, 0x62, 0x11, 0xc5, 0x66, 0xd7, 0xb3, 0x7a, 0xa1,
|
|
0xb6, 0x22, 0xa4, 0xfe, 0xec, 0x4d, 0x52, 0x4f, 0x24, 0xc3, 0x09, 0xa7, 0x97, 0x42, 0x0b, 0xdd,
|
|
0x04, 0xa8, 0xf2, 0x05, 0xa0, 0x49, 0xc5, 0xa8, 0x04, 0xcb, 0xdc, 0xd3, 0xf2, 0x22, 0xf8, 0x5f,
|
|
0xee, 0x9e, 0x6b, 0xcb, 0x8b, 0x70, 0xec, 0x1e, 0xf1, 0xf1, 0x78, 0xe9, 0xe3, 0x54, 0xe5, 0x73,
|
|
0xd8, 0x98, 0x50, 0xb2, 0x88, 0x80, 0x5a, 0x0f, 0x76, 0x64, 0x78, 0x2a, 0xfb, 0xcf, 0x99, 0xc5,
|
|
0xf0, 0x9c, 0x91, 0xf1, 0x53, 0x58, 0x09, 0x39, 0xb9, 0x90, 0x9a, 0x3f, 0xd8, 0x1a, 0xbf, 0x60,
|
|
0x29, 0x4b, 0xd2, 0xd4, 0xfe, 0x9d, 0x82, 0xea, 0x53, 0xcc, 0xce, 0x9b, 0xad, 0x36, 0x8d, 0xfc,
|
|
0xab, 0xc3, 0x88, 0x5d, 0x62, 0x9f, 0xb9, 0xb6, 0xc8, 0xae, 0x58, 0x61, 0x0d, 0xf2, 0xa1, 0x1b,
|
|
0x98, 0xb6, 0xe5, 0x79, 0x83, 0xbb, 0x3d, 0x5a, 0xd2, 0x52, 0x46, 0x2e, 0x74, 0x83, 0x86, 0xe5,
|
|
0x79, 0x4d, 0x07, 0x6d, 0x43, 0xba, 0x4b, 0x49, 0x5f, 0x1e, 0x45, 0x20, 0xc5, 0x37, 0xba, 0x0b,
|
|
0x39, 0xfe, 0x6b, 0x5e, 0x92, 0x90, 0x69, 0xab, 0x03, 0x64, 0x96, 0x03, 0x9f, 0x91, 0x90, 0x21,
|
|
0x04, 0x4b, 0x8c, 0xc8, 0x50, 0x12, 0x98, 0x25, 0x46, 0xd0, 0x2e, 0xac, 0x32, 0x22, 0x59, 0x56,
|
|
0x06, 0x88, 0x0c, 0x23, 0x82, 0xe1, 0x3e, 0xe4, 0x43, 0x6a, 0x9b, 0x96, 0xe3, 0xf0, 0xd3, 0x88,
|
|
0x9c, 0x92, 0x04, 0x10, 0x52, 0xfb, 0x50, 0x42, 0x51, 0x15, 0xd2, 0xdc, 0x5c, 0x2d, 0x2b, 0x7c,
|
|
0x50, 0x10, 0xe1, 0x70, 0xde, 0x6c, 0x71, 0x63, 0x0d, 0x81, 0xa9, 0xfd, 0x3d, 0x0d, 0xf7, 0xde,
|
|
0x70, 0x72, 0x95, 0x2c, 0x47, 0x90, 0x8d, 0x42, 0x4c, 0x7d, 0xab, 0x8f, 0xa5, 0xa7, 0x8f, 0xde,
|
|
0xfb, 0xd3, 0x0f, 0x1f, 0xa4, 0xfe, 0xfa, 0xc3, 0x07, 0x77, 0x3e, 0xa5, 0xd8, 0xb1, 0x6c, 0x86,
|
|
0x9d, 0xea, 0xde, 0xb7, 0xdf, 0x56, 0xeb, 0xe7, 0xee, 0x1f, 0x70, 0xf5, 0xbb, 0xef, 0xaa, 0x17,
|
|
0x37, 0x0c, 0x87, 0x8f, 0x9e, 0x18, 0x03, 0x3e, 0x2e, 0x23, 0xb0, 0xc2, 0xf0, 0x15, 0xa1, 0x8e,
|
|
0x72, 0xcf, 0xdc, 0x32, 0x62, 0x3e, 0x84, 0x20, 0xed, 0x50, 0x12, 0x08, 0x3f, 0x65, 0x0d, 0xf1,
|
|
0x1f, 0x55, 0xa1, 0xc0, 0xaf, 0x85, 0x71, 0xf3, 0xf9, 0xbd, 0x08, 0x4f, 0x18, 0x10, 0xba, 0x81,
|
|
0x38, 0x91, 0x2c, 0x12, 0x89, 0x9c, 0x5c, 0x19, 0xcf, 0xc9, 0xc7, 0xb0, 0x16, 0x50, 0x72, 0xed,
|
|
0x3a, 0x98, 0x9a, 0xa2, 0x24, 0x64, 0xc6, 0x22, 0xa6, 0xa5, 0xb0, 0x22, 0x7d, 0x0a, 0x41, 0xe2,
|
|
0x0b, 0x7d, 0x0e, 0x80, 0x29, 0x25, 0xd4, 0xb4, 0x89, 0x83, 0xc5, 0xc5, 0xae, 0x1f, 0x54, 0x63,
|
|
0x37, 0x4f, 0xf1, 0xa8, 0xce, 0x89, 0x8d, 0x9c, 0xe0, 0x69, 0x10, 0x07, 0xa3, 0xdf, 0x8e, 0x67,
|
|
0x6e, 0x56, 0x64, 0xee, 0xc7, 0x71, 0xe6, 0xbe, 0xf9, 0x62, 0x6e, 0x4d, 0xe2, 0xff, 0x39, 0x05,
|
|
0xff, 0x93, 0x86, 0xbb, 0x3a, 0xff, 0xb4, 0x18, 0x3e, 0x6f, 0xb6, 0x8e, 0xdd, 0x30, 0xb0, 0x98,
|
|
0x7d, 0x69, 0x44, 0x1e, 0x0e, 0x67, 0x24, 0x46, 0x76, 0x5a, 0x62, 0xfc, 0x1c, 0x10, 0xa7, 0x09,
|
|
0x2c, 0xca, 0x5c, 0xdb, 0x0d, 0x2c, 0x9f, 0x0d, 0xb2, 0x56, 0x90, 0x96, 0x42, 0x37, 0x68, 0x0d,
|
|
0x91, 0x4d, 0x67, 0xe2, 0x5e, 0x61, 0xe2, 0x5e, 0x1f, 0xc1, 0x3a, 0xd7, 0xc9, 0x8b, 0xa9, 0x1f,
|
|
0xf5, 0x2f, 0x30, 0x4d, 0xa4, 0xdd, 0x9a, 0xc2, 0x9c, 0x0a, 0x04, 0x7a, 0x00, 0x85, 0x98, 0x54,
|
|
0xe4, 0x53, 0x7e, 0x40, 0x98, 0x57, 0x70, 0x91, 0x54, 0x0f, 0x41, 0xf0, 0x61, 0x27, 0x16, 0x38,
|
|
0x4c, 0xc8, 0x82, 0x44, 0x28, 0x79, 0x73, 0x65, 0x5f, 0x09, 0x96, 0x03, 0xd7, 0x57, 0x01, 0xc7,
|
|
0xff, 0xf2, 0x47, 0xc3, 0x27, 0x26, 0x07, 0x66, 0x44, 0x04, 0xaf, 0xf8, 0xa4, 0xe5, 0xfa, 0x5c,
|
|
0x9a, 0x52, 0x3b, 0x56, 0x1f, 0x40, 0x82, 0x85, 0x6d, 0x7f, 0x4e, 0x41, 0x09, 0xbf, 0x66, 0xd4,
|
|
0x32, 0x2d, 0xc6, 0xa8, 0x7b, 0x11, 0x31, 0x1c, 0x6a, 0x39, 0x11, 0x2d, 0xbf, 0x14, 0xd1, 0x72,
|
|
0xcb, 0x35, 0xd5, 0x75, 0xce, 0x7c, 0x38, 0xe0, 0x15, 0xb1, 0x30, 0x77, 0x0e, 0x16, 0xf1, 0x28,
|
|
0xf7, 0xa0, 0xb4, 0x14, 0x66, 0x95, 0x96, 0xca, 0x11, 0x94, 0xa7, 0xa9, 0x5c, 0x28, 0xfc, 0xfe,
|
|
0x59, 0x84, 0xea, 0xec, 0x73, 0xa9, 0xea, 0xb4, 0x0b, 0x39, 0xde, 0x58, 0x99, 0xc3, 0xf2, 0x64,
|
|
0x64, 0x39, 0xe0, 0x94, 0x97, 0x9d, 0x0f, 0xa1, 0x3c, 0x1a, 0x74, 0x3c, 0x8b, 0x58, 0xdc, 0x2b,
|
|
0x6c, 0x06, 0xc9, 0x98, 0x93, 0x28, 0xf4, 0x12, 0x4a, 0x49, 0x16, 0x21, 0x76, 0x75, 0xa1, 0x8a,
|
|
0x55, 0x4c, 0xf0, 0x0b, 0x2b, 0xbe, 0x1e, 0xb5, 0xa2, 0x8f, 0x99, 0xe5, 0x58, 0xcc, 0x52, 0xb9,
|
|
0x32, 0xaf, 0xd8, 0xa4, 0xb5, 0x2f, 0x94, 0x08, 0xf4, 0x8f, 0x14, 0x6c, 0x27, 0x65, 0x27, 0xa2,
|
|
0x23, 0x2f, 0xa2, 0xe3, 0x8b, 0x5b, 0xa2, 0x43, 0x95, 0x92, 0x44, 0xf6, 0xbd, 0x6d, 0x90, 0x6c,
|
|
0x05, 0xd3, 0x64, 0xf0, 0xf0, 0xa6, 0x32, 0x06, 0x45, 0xe8, 0x8b, 0xe2, 0x2d, 0xc3, 0x5b, 0x81,
|
|
0x79, 0x0e, 0x7c, 0x1a, 0x77, 0x59, 0xe9, 0x85, 0x5c, 0x32, 0xd1, 0x8d, 0xad, 0x24, 0xbb, 0xb1,
|
|
0x3a, 0x64, 0x28, 0x0e, 0x23, 0x8f, 0x89, 0x7c, 0x5b, 0x3f, 0xd8, 0x8e, 0xc3, 0x74, 0xe0, 0x02,
|
|
0x81, 0x35, 0x14, 0xd5, 0x44, 0xcd, 0xc9, 0x4d, 0xd4, 0x9c, 0x7d, 0x28, 0x73, 0x0a, 0x47, 0xf1,
|
|
0x9b, 0x34, 0xf2, 0xf0, 0xb0, 0x3a, 0x6d, 0x84, 0x6e, 0x90, 0xf4, 0xee, 0xc4, 0xe3, 0x53, 0x18,
|
|
0x7f, 0x7c, 0x18, 0xac, 0x5e, 0x62, 0xcb, 0xc1, 0x34, 0xd4, 0xd6, 0xc4, 0x6d, 0x1d, 0xcc, 0x77,
|
|
0x5b, 0xcf, 0x24, 0xd3, 0x62, 0xf7, 0x13, 0xab, 0x42, 0x14, 0xb6, 0xd4, 0x5f, 0x93, 0x91, 0x64,
|
|
0xc4, 0xac, 0x0b, 0x1b, 0x9e, 0x2c, 0x64, 0x43, 0x9b, 0x8c, 0xc5, 0x8b, 0xb1, 0x79, 0x39, 0x89,
|
|
0xe1, 0x3a, 0x87, 0x8a, 0xb8, 0xda, 0xf8, 0xdc, 0x68, 0x11, 0x9d, 0x43, 0x81, 0x6d, 0x92, 0xf4,
|
|
0x81, 0xb1, 0x69, 0x4d, 0x62, 0xd0, 0x11, 0x14, 0x5d, 0xdf, 0xf6, 0x22, 0x07, 0x0f, 0xb4, 0x6d,
|
|
0x8a, 0x40, 0xd8, 0x19, 0x3c, 0xee, 0xe7, 0xcd, 0x96, 0xa4, 0x3e, 0x93, 0x83, 0x98, 0xb1, 0xae,
|
|
0x38, 0x62, 0x19, 0x4f, 0xa0, 0x84, 0x7d, 0xeb, 0x82, 0x57, 0x67, 0xf5, 0xb4, 0x86, 0x5a, 0xb1,
|
|
0xba, 0xbc, 0xb7, 0x9e, 0x98, 0x8b, 0xce, 0x9b, 0x2d, 0xf5, 0xcc, 0x1a, 0x45, 0x45, 0xac, 0xbe,
|
|
0x85, 0x0d, 0xd4, 0xf5, 0x45, 0xcb, 0xcf, 0xdc, 0x3e, 0x26, 0x11, 0xd3, 0x4a, 0xa2, 0x66, 0xee,
|
|
0xd4, 0xe5, 0x3c, 0x57, 0x8f, 0xe7, 0xb9, 0xfa, 0xb1, 0x9a, 0xe7, 0x8c, 0x75, 0xc5, 0xd1, 0x96,
|
|
0x0c, 0x48, 0x87, 0x0d, 0x31, 0x42, 0xf1, 0x17, 0x36, 0x1e, 0xfa, 0xb4, 0x8d, 0xdb, 0xa4, 0x14,
|
|
0xf9, 0x84, 0x65, 0x79, 0x5e, 0x0c, 0x40, 0x77, 0x21, 0x2f, 0x0a, 0x65, 0x40, 0x71, 0x88, 0x99,
|
|
0x56, 0x96, 0xd1, 0xcd, 0x41, 0x2d, 0x01, 0x41, 0x9f, 0x28, 0x02, 0x9b, 0xf8, 0x5d, 0xb7, 0xa7,
|
|
0x6d, 0x09, 0x0d, 0x95, 0xc1, 0x31, 0x0d, 0x42, 0xfa, 0x0d, 0x81, 0x8a, 0x55, 0x08, 0x66, 0x09,
|
|
0x42, 0x27, 0x50, 0xea, 0x63, 0xc7, 0xb5, 0x4c, 0xec, 0xdb, 0xf4, 0x46, 0x78, 0x53, 0xdb, 0x16,
|
|
0xde, 0xde, 0x4d, 0x3a, 0xea, 0x05, 0xa7, 0xd1, 0x07, 0x24, 0x46, 0xb1, 0x3f, 0x0a, 0x40, 0xbf,
|
|
0x19, 0x6f, 0x89, 0x7e, 0x24, 0x02, 0xe4, 0xa3, 0xf9, 0x02, 0xe4, 0xb6, 0x8e, 0xe8, 0x19, 0x54,
|
|
0x66, 0x57, 0xba, 0x85, 0xc6, 0x9b, 0xc7, 0x50, 0x48, 0x46, 0xe0, 0x42, 0xbc, 0x27, 0xa0, 0xcd,
|
|
0xca, 0x9e, 0x45, 0xe5, 0xcc, 0xca, 0x88, 0xff, 0xef, 0xa8, 0xf6, 0x7d, 0x2a, 0x9e, 0xd5, 0x54,
|
|
0x13, 0x30, 0x32, 0xab, 0x7d, 0x08, 0x39, 0xd9, 0x1d, 0x4e, 0x9b, 0xb8, 0x15, 0x83, 0xe8, 0xae,
|
|
0xb3, 0xb6, 0xfa, 0x87, 0x3e, 0x83, 0x35, 0x46, 0x2d, 0x3f, 0xec, 0xc6, 0x5d, 0xb9, 0x9c, 0xe3,
|
|
0xb4, 0x24, 0x5b, 0x5b, 0x11, 0xc8, 0xc6, 0x9c, 0x25, 0xbe, 0x6a, 0x2f, 0x40, 0x33, 0xb0, 0x4d,
|
|
0xa8, 0xc3, 0x45, 0x37, 0x88, 0xcf, 0xf0, 0x6b, 0xf6, 0xf6, 0xd6, 0xd4, 0xfe, 0xb6, 0x04, 0xab,
|
|
0x0a, 0x83, 0x7e, 0x0c, 0xe0, 0x5d, 0x0d, 0xba, 0x5d, 0xd5, 0x6f, 0x78, 0x57, 0xaa, 0xd1, 0xdd,
|
|
0x85, 0x5c, 0x48, 0x22, 0x6a, 0x63, 0xd3, 0x0d, 0x94, 0x9b, 0xb2, 0x12, 0xd0, 0x0c, 0xd0, 0x23,
|
|
0x58, 0x8d, 0x5b, 0xc6, 0x65, 0xa1, 0xb7, 0x98, 0xd4, 0xdb, 0xa1, 0xae, 0x11, 0xe3, 0xd1, 0x7d,
|
|
0x35, 0x49, 0xa6, 0xa7, 0xd3, 0xc5, 0x63, 0x25, 0x9f, 0x1a, 0x57, 0xa6, 0x93, 0xf0, 0x11, 0xf2,
|
|
0x1e, 0x2c, 0x5f, 0xbb, 0x96, 0x96, 0x11, 0x19, 0x34, 0x41, 0xc1, 0x71, 0xe8, 0xce, 0x68, 0xf7,
|
|
0xbe, 0xaa, 0x76, 0x28, 0x83, 0xce, 0x7d, 0xf4, 0x01, 0xcb, 0x8e, 0x3d, 0x60, 0xef, 0xff, 0x0e,
|
|
0x36, 0x26, 0xde, 0x53, 0xa4, 0x41, 0xf9, 0xb9, 0xfe, 0xf4, 0xb0, 0xf1, 0xb5, 0x79, 0xd8, 0x68,
|
|
0xe8, 0xad, 0xb6, 0x79, 0x66, 0x98, 0xad, 0xe6, 0x69, 0xe9, 0x1d, 0x04, 0x90, 0x91, 0xa0, 0x52,
|
|
0x0a, 0x15, 0x21, 0x6f, 0xe8, 0x2f, 0x3b, 0xfa, 0x79, 0x5b, 0x20, 0x97, 0x38, 0xd2, 0xd0, 0xbf,
|
|
0xd4, 0x1b, 0xed, 0xd2, 0x32, 0xca, 0x42, 0xfa, 0xd8, 0x38, 0x6b, 0x95, 0xd2, 0xef, 0xff, 0x25,
|
|
0x05, 0xbb, 0x6f, 0x98, 0xa6, 0xd0, 0xbb, 0xb0, 0x73, 0xde, 0x6c, 0x99, 0x6d, 0xa3, 0x73, 0xfa,
|
|
0x95, 0x79, 0xd8, 0x69, 0x3f, 0x33, 0x75, 0xc3, 0x38, 0x33, 0xcc, 0xd3, 0xb3, 0x53, 0xbd, 0xf4,
|
|
0x0e, 0x7a, 0x08, 0xf7, 0xa7, 0xa2, 0x5f, 0x76, 0xce, 0xda, 0x87, 0xa6, 0xfe, 0xab, 0x86, 0xae,
|
|
0x1f, 0xeb, 0xc7, 0xa5, 0xd4, 0x4c, 0xc2, 0xd3, 0x33, 0x05, 0x3b, 0x39, 0xeb, 0x9c, 0x1e, 0x97,
|
|
0x96, 0x0e, 0xbe, 0x5f, 0x85, 0x4c, 0xf3, 0x4c, 0x44, 0xe9, 0x27, 0x50, 0x68, 0x50, 0x6c, 0x31,
|
|
0x2c, 0x37, 0x63, 0x68, 0xda, 0xaa, 0xac, 0xb2, 0x3d, 0x51, 0xa2, 0xf5, 0x7e, 0xc0, 0x6e, 0x38,
|
|
0xb3, 0x4c, 0x99, 0xb7, 0x61, 0xfe, 0x08, 0x72, 0x83, 0x65, 0x1f, 0xda, 0x8a, 0xc7, 0xc5, 0x91,
|
|
0xe5, 0x5f, 0x65, 0x9a, 0x40, 0xa4, 0x03, 0x3c, 0x77, 0xc3, 0x98, 0x73, 0x58, 0xdc, 0x87, 0xc0,
|
|
0x98, 0x7d, 0x77, 0x2a, 0x6e, 0xb0, 0x12, 0x58, 0x1b, 0x59, 0x1d, 0xa2, 0x1d, 0x61, 0xc3, 0xb4,
|
|
0x75, 0xe2, 0xcc, 0x33, 0x7c, 0x06, 0x6b, 0xd2, 0x7b, 0x6a, 0x27, 0x83, 0xa6, 0xae, 0xe1, 0x66,
|
|
0xb2, 0x37, 0x61, 0x7d, 0x74, 0xb7, 0x85, 0x2a, 0x53, 0x17, 0x5e, 0xf1, 0x69, 0x66, 0x2f, 0xc3,
|
|
0xd0, 0x73, 0x40, 0x93, 0x9b, 0x26, 0x74, 0x27, 0x71, 0xa4, 0x29, 0x2b, 0xa8, 0x99, 0x86, 0x7d,
|
|
0x03, 0x3b, 0x33, 0x47, 0x77, 0xf4, 0xe0, 0xb6, 0xd1, 0x5e, 0xca, 0x7e, 0x6f, 0xbe, 0x0d, 0x00,
|
|
0xea, 0x81, 0x36, 0xeb, 0x4d, 0x44, 0x3f, 0x99, 0x67, 0x2e, 0xac, 0x3c, 0x98, 0xeb, 0x61, 0x1d,
|
|
0xba, 0x28, 0x59, 0xe0, 0x47, 0x5c, 0x34, 0xa5, 0xf2, 0xcf, 0x74, 0xd1, 0x97, 0xb0, 0x31, 0x51,
|
|
0x9f, 0xd1, 0xbb, 0x42, 0xd8, 0xac, 0xba, 0x3d, 0x4b, 0xd6, 0xd1, 0xbd, 0x5f, 0xdf, 0xed, 0xb9,
|
|
0xec, 0x32, 0xba, 0xa8, 0xdb, 0xa4, 0xbf, 0xaf, 0x22, 0x48, 0x6e, 0xc9, 0x6d, 0xe2, 0xed, 0xd3,
|
|
0xc0, 0xbe, 0xc8, 0x88, 0xaf, 0x5f, 0xfc, 0x37, 0x00, 0x00, 0xff, 0xff, 0x7d, 0xf5, 0x13, 0xa6,
|
|
0xdd, 0x17, 0x00, 0x00,
|
|
}
|