Files
protocol/rpc/io.psrpc.go
Raja Subramanian f5993a2691 Redact metadata, attribute, participant name from logs. (#1309)
* Redact metadata, attribute, participant name from logs.

Add size option to those.

* generated protobuf

* redact from connector protos

* generated protobuf

* Update changeset to redact log metadata

Redacts sensitive information from logs.

* Redact SIP fields.

* generated protobuf

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Denys Smirnov <dennwc@pm.me>
2025-11-18 14:05:15 +05:30

494 lines
25 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{
// 1985 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x58, 0x5f, 0x77, 0x1a, 0xc7,
0x15, 0x0f, 0x02, 0x21, 0xb8, 0x20, 0x84, 0x46, 0x48, 0x67, 0x85, 0x6a, 0x1b, 0xe3, 0x3a, 0x96,
0xd3, 0x53, 0xd4, 0xa8, 0x0f, 0x6d, 0x9d, 0xc4, 0x89, 0x84, 0x56, 0x36, 0x89, 0x2d, 0xf0, 0x02,
0xe7, 0x34, 0x7d, 0xd9, 0xae, 0x76, 0x07, 0xb4, 0xd1, 0xb2, 0xb3, 0x9d, 0x9d, 0x95, 0xad, 0xe6,
0xe4, 0x39, 0x7d, 0x68, 0xfa, 0xd0, 0xf7, 0x9e, 0x7e, 0x0a, 0x7f, 0xb6, 0xf6, 0xa1, 0x3d, 0x27,
0x67, 0xfe, 0x2c, 0x2c, 0x02, 0x6c, 0xe1, 0x27, 0xd8, 0xfb, 0x7f, 0xee, 0xfc, 0xe6, 0xce, 0xbd,
0x03, 0x45, 0x1a, 0xd8, 0x07, 0x2e, 0x69, 0x04, 0x94, 0x30, 0x82, 0xd2, 0x34, 0xb0, 0xab, 0x15,
0xcf, 0xbd, 0xc2, 0x97, 0x2e, 0x33, 0xf1, 0x90, 0xe2, 0x30, 0x94, 0xac, 0xea, 0x76, 0x4c, 0x75,
0xfd, 0x24, 0x79, 0x33, 0x26, 0x87, 0x6e, 0xa0, 0x48, 0x28, 0x26, 0x51, 0x42, 0x46, 0x8a, 0x56,
0xf1, 0xc8, 0x70, 0x88, 0xe9, 0x01, 0x09, 0x98, 0x4b, 0xfc, 0x58, 0x79, 0x6f, 0x48, 0xc8, 0xd0,
0xc3, 0x07, 0xe2, 0xeb, 0x3c, 0x1a, 0x1c, 0xe0, 0x51, 0xc0, 0xae, 0x15, 0xf3, 0xee, 0x4d, 0xa6,
0x13, 0x51, 0x8b, 0x6b, 0x4b, 0x7e, 0xfd, 0x00, 0xca, 0xcf, 0x30, 0xd3, 0x45, 0x30, 0x06, 0xfe,
0x4b, 0x84, 0x43, 0x86, 0xf6, 0x20, 0x2f, 0x83, 0x36, 0x5d, 0x47, 0x4b, 0xd5, 0x52, 0xfb, 0x79,
0x23, 0x27, 0x09, 0x2d, 0xa7, 0xfe, 0x63, 0x0a, 0x2a, 0xfd, 0xc0, 0xb1, 0x18, 0x7e, 0x89, 0x19,
0x75, 0xed, 0xb1, 0xd6, 0x23, 0xc8, 0xb8, 0xfe, 0x80, 0x08, 0x85, 0xc2, 0xe1, 0x56, 0x43, 0xc5,
0xdf, 0x90, 0xb6, 0x5b, 0xfe, 0x80, 0x18, 0x42, 0x00, 0xd5, 0x61, 0xdd, 0xba, 0x1a, 0x9a, 0x76,
0x10, 0x99, 0x51, 0x68, 0x0d, 0xb1, 0x96, 0xae, 0xa5, 0xf6, 0x57, 0x8c, 0x82, 0x75, 0x35, 0x6c,
0x06, 0x51, 0x9f, 0x93, 0xb8, 0xcc, 0xc8, 0x7a, 0x93, 0x90, 0xc9, 0x48, 0x99, 0x91, 0xf5, 0x26,
0x96, 0xa9, 0xf7, 0x61, 0xfb, 0x19, 0x66, 0x2d, 0x7f, 0x62, 0x5f, 0x45, 0x72, 0x07, 0x40, 0xa5,
0x77, 0xb2, 0x80, 0xbc, 0xa2, 0xb4, 0x1c, 0xce, 0x0e, 0x19, 0xc5, 0xd6, 0xc8, 0xbc, 0xc4, 0xd7,
0xda, 0x8a, 0x64, 0x4b, 0xca, 0x37, 0xf8, 0xba, 0xfe, 0xaf, 0x34, 0xec, 0xdc, 0xb4, 0x1b, 0x06,
0xc4, 0x0f, 0x31, 0xda, 0x9f, 0x5a, 0x62, 0x65, 0xbc, 0xc4, 0xa4, 0xac, 0x5c, 0x63, 0x05, 0x56,
0x19, 0xb9, 0xc4, 0xbe, 0x32, 0x2f, 0x3f, 0xd0, 0x36, 0x64, 0x5f, 0x87, 0x66, 0x44, 0x3d, 0xb1,
0xe4, 0xbc, 0xb1, 0xfa, 0x3a, 0xec, 0x53, 0x0f, 0xf5, 0xa1, 0xc4, 0x37, 0xd6, 0xf5, 0x87, 0xe6,
0xc0, 0xc5, 0x9e, 0x13, 0x6a, 0x99, 0x5a, 0x7a, 0xbf, 0x70, 0xd8, 0x68, 0xd0, 0xc0, 0x6e, 0xcc,
0x8f, 0xa5, 0xf1, 0x42, 0x6a, 0x9c, 0x0a, 0x05, 0xdd, 0x67, 0xf4, 0xda, 0x58, 0xf7, 0x92, 0x34,
0x64, 0xc0, 0xfa, 0x00, 0x5b, 0x2c, 0xa2, 0xd8, 0x1c, 0x78, 0xd6, 0x30, 0xd4, 0x56, 0x85, 0xd5,
0x5f, 0xbf, 0xcb, 0xea, 0xa9, 0x54, 0x38, 0xe5, 0xf2, 0xd2, 0x68, 0x71, 0x90, 0x20, 0x55, 0xbf,
0x02, 0x34, 0xeb, 0x18, 0x95, 0x21, 0xcd, 0x53, 0x29, 0x33, 0xcd, 0xff, 0xf2, 0xf5, 0x5f, 0x59,
0x5e, 0x84, 0xe3, 0xf5, 0x8b, 0x8f, 0x27, 0x2b, 0xbf, 0x4f, 0x55, 0xbf, 0x84, 0xcd, 0x19, 0x27,
0xcb, 0x18, 0xa8, 0x0f, 0x61, 0x57, 0xe2, 0x4f, 0xc5, 0xdf, 0x65, 0x16, 0xc3, 0xb7, 0xdc, 0xfa,
0x5f, 0xc1, 0x6a, 0xc8, 0xc5, 0x85, 0xd5, 0xc2, 0xe1, 0xf6, 0xcd, 0x1d, 0x94, 0xb6, 0xa4, 0x4c,
0xfd, 0x3f, 0x29, 0xa8, 0x3d, 0xc3, 0xac, 0xdb, 0xea, 0xf4, 0x68, 0xe4, 0x5f, 0x1e, 0x45, 0xec,
0x02, 0xfb, 0xcc, 0xb5, 0xc5, 0xf1, 0x89, 0x1d, 0xd6, 0xa1, 0x10, 0xba, 0x81, 0x69, 0x5b, 0x9e,
0xc7, 0x3d, 0x66, 0xb9, 0xc7, 0xe3, 0x15, 0x2d, 0x65, 0xe4, 0x43, 0x37, 0x68, 0x5a, 0x9e, 0xd7,
0x72, 0xd0, 0x0e, 0x64, 0x06, 0x94, 0x8c, 0xe4, 0x52, 0x04, 0x53, 0x7c, 0xa3, 0x7b, 0x90, 0xe7,
0xbf, 0xe6, 0x05, 0x09, 0x99, 0xb6, 0x36, 0x66, 0xe6, 0x38, 0xf1, 0x39, 0x09, 0x19, 0x42, 0xb0,
0xc2, 0x88, 0xc4, 0x8a, 0xe0, 0xac, 0x30, 0x82, 0xf6, 0x60, 0x8d, 0x11, 0xa9, 0xb2, 0x3a, 0x66,
0x64, 0x19, 0x11, 0x0a, 0x0f, 0xa0, 0x10, 0x52, 0xdb, 0xb4, 0x1c, 0x87, 0xaf, 0x46, 0x1c, 0x1a,
0x29, 0x00, 0x21, 0xb5, 0x8f, 0x24, 0x15, 0xd5, 0x20, 0xc3, 0xc3, 0xd5, 0x72, 0x22, 0x07, 0x45,
0x01, 0x87, 0x6e, 0xab, 0xc3, 0x83, 0x35, 0x04, 0xa7, 0xfe, 0xff, 0x15, 0xb8, 0xff, 0x8e, 0x95,
0xab, 0xd3, 0x70, 0x0c, 0xb9, 0x28, 0xc4, 0xd4, 0xb7, 0x46, 0x58, 0x66, 0xfa, 0xf8, 0xe3, 0xbf,
0xbd, 0xd5, 0x52, 0xff, 0x7c, 0xab, 0xdd, 0xfd, 0x9c, 0x62, 0xc7, 0xb2, 0x19, 0x76, 0x6a, 0xfb,
0xdf, 0x7f, 0x5f, 0x6b, 0x74, 0xdd, 0xbf, 0xe2, 0xda, 0x0f, 0x3f, 0xd4, 0xce, 0xaf, 0x19, 0x0e,
0x1f, 0x3f, 0x35, 0xc6, 0x7a, 0xdc, 0x46, 0x60, 0x85, 0xe1, 0x6b, 0x42, 0x1d, 0x95, 0x9e, 0x5b,
0xdb, 0x88, 0xf5, 0x10, 0x82, 0x8c, 0x43, 0x49, 0x20, 0xf2, 0x94, 0x33, 0xc4, 0x7f, 0x54, 0x83,
0x22, 0xdf, 0x16, 0xc6, 0xc3, 0xe7, 0xfb, 0x22, 0x32, 0x61, 0x40, 0xe8, 0x06, 0x62, 0x45, 0xb2,
0x0a, 0x04, 0x94, 0x7c, 0x87, 0x6d, 0xc6, 0xf9, 0xab, 0x12, 0x29, 0x8a, 0xd2, 0x72, 0xd0, 0x13,
0x58, 0x0f, 0x28, 0xb9, 0x72, 0x1d, 0x4c, 0x4d, 0x71, 0xe6, 0xb3, 0x37, 0x10, 0xd3, 0x51, 0x5c,
0x71, 0x7c, 0x8a, 0x41, 0xe2, 0x0b, 0x7d, 0x09, 0x80, 0x29, 0x25, 0xd4, 0xb4, 0x89, 0x83, 0xc5,
0xc6, 0x96, 0x0e, 0x6b, 0x71, 0x9a, 0xe7, 0x64, 0x54, 0xe7, 0xc2, 0x46, 0x5e, 0xe8, 0x34, 0x89,
0x83, 0xeb, 0xff, 0xcb, 0xc0, 0x3d, 0x9d, 0x23, 0xde, 0x62, 0xb8, 0xdb, 0xea, 0x9c, 0xb8, 0x61,
0x60, 0x31, 0xfb, 0xc2, 0x88, 0x3c, 0x1c, 0x2e, 0x00, 0x5e, 0x6e, 0x1e, 0xf0, 0x7e, 0x03, 0x88,
0xcb, 0x04, 0x16, 0x65, 0xae, 0xed, 0x06, 0x96, 0xcf, 0xc6, 0xa7, 0x42, 0x88, 0x96, 0x43, 0x37,
0xe8, 0x4c, 0x98, 0x2d, 0x67, 0x26, 0x6f, 0x30, 0x93, 0xb7, 0xc7, 0x50, 0xe2, 0x3e, 0x79, 0xb1,
0xf2, 0xa3, 0xd1, 0x39, 0xa6, 0x09, 0x58, 0xaf, 0x2b, 0xce, 0x99, 0x60, 0xa0, 0x87, 0x50, 0x8c,
0x45, 0x05, 0x5e, 0x0b, 0x63, 0xc1, 0x82, 0xa2, 0x0b, 0xd0, 0x3e, 0x02, 0xa1, 0x87, 0x9d, 0xd8,
0xe0, 0x04, 0xf0, 0x45, 0xc9, 0x50, 0xf6, 0x6e, 0x85, 0xee, 0x32, 0xa4, 0x03, 0xd7, 0x57, 0x1b,
0xca, 0xff, 0xf2, 0xaa, 0xeb, 0x13, 0x93, 0x13, 0xb3, 0x02, 0x21, 0xab, 0x3e, 0xe9, 0xb8, 0x3e,
0xb7, 0xa6, 0xdc, 0xde, 0x38, 0x7f, 0x20, 0xc9, 0x22, 0xb6, 0xbf, 0xa7, 0xa0, 0x8c, 0xdf, 0x30,
0x6a, 0x99, 0x16, 0x63, 0xd4, 0x3d, 0x8f, 0x18, 0x0e, 0xb5, 0xbc, 0xa8, 0xa3, 0x7f, 0x10, 0x3b,
0xfa, 0x9e, 0x6d, 0x6a, 0xe8, 0x5c, 0xf9, 0x68, 0xac, 0x2b, 0xca, 0xdd, 0xad, 0x31, 0xbe, 0x81,
0xa7, 0xb5, 0xc7, 0x47, 0xb7, 0xb8, 0xe8, 0xe8, 0x56, 0x8f, 0xa1, 0x32, 0xcf, 0xe5, 0x52, 0x15,
0xf6, 0xc7, 0x12, 0xd4, 0x16, 0xaf, 0x4b, 0x9d, 0xfe, 0x3d, 0xc8, 0xf3, 0xce, 0xc4, 0x9c, 0x1c,
0x7f, 0x23, 0xc7, 0x09, 0x67, 0xfc, 0x58, 0x7f, 0x0a, 0x95, 0x69, 0xd0, 0x71, 0xb0, 0xb3, 0xf8,
0xb2, 0xdd, 0x0a, 0x92, 0x98, 0x93, 0x2c, 0xf4, 0x0a, 0xca, 0x49, 0x15, 0x61, 0x76, 0x6d, 0xa9,
0x8a, 0xb0, 0x91, 0xd0, 0x17, 0x51, 0x7c, 0x3b, 0x1d, 0xc5, 0x08, 0x33, 0xcb, 0xb1, 0x98, 0xa5,
0xce, 0xca, 0x6d, 0xcd, 0x26, 0xa3, 0x7d, 0xa9, 0x4c, 0xa0, 0x7f, 0xa7, 0x60, 0x27, 0x69, 0x3b,
0x81, 0x8e, 0x82, 0x40, 0xc7, 0x57, 0xef, 0x41, 0x87, 0xba, 0x6f, 0x13, 0xa7, 0xef, 0x43, 0x41,
0xb2, 0x1d, 0xcc, 0xb3, 0xc1, 0xe1, 0x4d, 0x25, 0x06, 0x05, 0xf4, 0x45, 0x71, 0x94, 0xf0, 0x56,
0x64, 0x7e, 0x06, 0x3e, 0x8f, 0xdb, 0x94, 0xcc, 0x52, 0x29, 0x99, 0x69, 0x67, 0x56, 0x93, 0xed,
0x4c, 0x03, 0xb2, 0x14, 0x87, 0x91, 0xc7, 0xc4, 0x79, 0x2b, 0x1d, 0xee, 0xc4, 0x30, 0x1d, 0xa7,
0x40, 0x70, 0x0d, 0x25, 0x35, 0x53, 0x73, 0xf2, 0x33, 0x35, 0xe7, 0x00, 0x2a, 0x5c, 0xc2, 0x51,
0xfa, 0x26, 0x8d, 0x3c, 0x3c, 0xa9, 0x4e, 0x9b, 0xa1, 0x1b, 0x24, 0xb3, 0x3b, 0x53, 0xdc, 0x8b,
0x37, 0x8b, 0x3b, 0x83, 0xb5, 0x0b, 0x6c, 0x39, 0x98, 0x86, 0xda, 0xba, 0xd8, 0xad, 0xc3, 0xdb,
0xed, 0xd6, 0x73, 0xa9, 0xb4, 0xdc, 0xfe, 0xc4, 0xae, 0x10, 0x85, 0x6d, 0xf5, 0xd7, 0x64, 0x24,
0x89, 0x98, 0x92, 0x88, 0xe1, 0xe9, 0x52, 0x31, 0xf4, 0xc8, 0x0d, 0xbc, 0x18, 0x5b, 0x17, 0xb3,
0x1c, 0xee, 0x73, 0xe2, 0x88, 0xbb, 0x8d, 0xd7, 0x8d, 0x96, 0xf1, 0x39, 0x31, 0xd8, 0x23, 0xc9,
0x1c, 0x18, 0x5b, 0xd6, 0x2c, 0x07, 0x1d, 0xc3, 0x86, 0xeb, 0xdb, 0x5e, 0xe4, 0xe0, 0xb1, 0xb7,
0x2d, 0x01, 0x84, 0xdd, 0xf1, 0xe5, 0xd9, 0x6d, 0x75, 0xa4, 0x74, 0x5b, 0x4e, 0x32, 0x46, 0x49,
0x69, 0xc4, 0x36, 0x9e, 0x42, 0x19, 0xfb, 0xd6, 0x39, 0xaf, 0xce, 0xaa, 0xff, 0x0c, 0xb5, 0x8d,
0x5a, 0x7a, 0xbf, 0x94, 0x18, 0x2c, 0xba, 0xad, 0x8e, 0xea, 0x24, 0x8d, 0x0d, 0x25, 0xac, 0xbe,
0x45, 0x0c, 0xd4, 0xf5, 0x45, 0x4b, 0xcd, 0xdc, 0x11, 0x26, 0x11, 0xd3, 0xca, 0xa2, 0x66, 0xee,
0x36, 0xe4, 0x40, 0xd4, 0x88, 0x07, 0xa2, 0xc6, 0x89, 0x1a, 0x88, 0x8c, 0x92, 0xd2, 0xe8, 0x49,
0x05, 0xa4, 0xc3, 0xa6, 0x98, 0x41, 0xf8, 0x0d, 0x1b, 0x4f, 0x4d, 0xda, 0xe6, 0xfb, 0xac, 0x6c,
0xf0, 0x11, 0xc5, 0xf2, 0xbc, 0x98, 0x80, 0xee, 0x41, 0x41, 0x14, 0xca, 0x80, 0xe2, 0x10, 0x33,
0xad, 0x22, 0xd1, 0xcd, 0x49, 0x1d, 0x41, 0x41, 0x9f, 0x29, 0x01, 0x9b, 0xf8, 0x03, 0x77, 0xa8,
0x6d, 0x0b, 0x0f, 0xd5, 0xf1, 0x32, 0x0d, 0x42, 0x46, 0x4d, 0xc1, 0x8a, 0x5d, 0x08, 0x65, 0x49,
0x42, 0xa7, 0x50, 0x1e, 0x61, 0xc7, 0xb5, 0x4c, 0xec, 0xdb, 0xf4, 0x5a, 0x64, 0x53, 0xdb, 0x11,
0xd9, 0xde, 0x4b, 0x26, 0xea, 0x25, 0x97, 0xd1, 0xc7, 0x22, 0xc6, 0xc6, 0x68, 0x9a, 0x50, 0x7d,
0x0e, 0xd5, 0xc5, 0xb5, 0x68, 0xa9, 0x06, 0xff, 0x09, 0x14, 0x93, 0x18, 0x59, 0x4a, 0xf7, 0x14,
0xb4, 0x45, 0xf8, 0x5e, 0xd6, 0xce, 0x22, 0xcc, 0x2e, 0x75, 0x13, 0xfe, 0x94, 0x8a, 0x87, 0x0d,
0x75, 0xcb, 0x4e, 0x0d, 0x1b, 0x9f, 0x42, 0x5e, 0xb6, 0x5f, 0xf3, 0x66, 0x42, 0xa5, 0x20, 0xda,
0xc3, 0x9c, 0xad, 0xfe, 0xa1, 0x2f, 0x60, 0x9d, 0x51, 0xcb, 0x0f, 0x07, 0x71, 0x5b, 0x29, 0x07,
0x11, 0x2d, 0xa9, 0xd6, 0x53, 0x02, 0xb2, 0xb3, 0x64, 0x89, 0xaf, 0xfa, 0x4b, 0xd0, 0x0c, 0x6c,
0x13, 0xea, 0x70, 0xd3, 0x4d, 0xe2, 0x33, 0xfc, 0x86, 0x7d, 0x78, 0x34, 0xf5, 0xff, 0xa6, 0x60,
0x4d, 0x71, 0xd0, 0x2f, 0x00, 0xbc, 0xcb, 0x71, 0x3b, 0xa9, 0x2e, 0x74, 0xef, 0x52, 0x75, 0x92,
0x7b, 0x90, 0x0f, 0x49, 0x44, 0x6d, 0x6c, 0xba, 0x81, 0x4a, 0x53, 0x4e, 0x12, 0x5a, 0x01, 0x7a,
0x0c, 0x6b, 0x71, 0x4f, 0x96, 0x16, 0x7e, 0x37, 0x92, 0x7e, 0xfb, 0xd4, 0x35, 0x62, 0x3e, 0x7a,
0xa0, 0x46, 0xa1, 0xcc, 0x7c, 0xb9, 0x78, 0x2e, 0xe2, 0x63, 0xcf, 0xea, 0x7c, 0x11, 0x3e, 0x03,
0xdd, 0x87, 0xf4, 0x95, 0x6b, 0x69, 0x59, 0x51, 0xc3, 0x66, 0x24, 0x38, 0x0f, 0xdd, 0x9d, 0x6e,
0x8f, 0xd7, 0xd4, 0x94, 0x1f, 0xb7, 0xc6, 0x9f, 0xfc, 0x19, 0x36, 0x67, 0x6e, 0x24, 0xa4, 0x41,
0xe5, 0x85, 0xfe, 0xec, 0xa8, 0xf9, 0xad, 0x79, 0xd4, 0x6c, 0xea, 0x9d, 0x9e, 0xd9, 0x36, 0xcc,
0x4e, 0xeb, 0xac, 0xfc, 0x11, 0x02, 0xc8, 0x4a, 0x52, 0x39, 0x85, 0x36, 0xa0, 0x60, 0xe8, 0xaf,
0xfa, 0x7a, 0xb7, 0x27, 0x98, 0x2b, 0x9c, 0x69, 0xe8, 0x5f, 0xeb, 0xcd, 0x5e, 0x39, 0x8d, 0x72,
0x90, 0x39, 0x31, 0xda, 0x9d, 0x72, 0xe6, 0x93, 0x7f, 0xa4, 0x60, 0xef, 0x1d, 0xfd, 0x3e, 0xba,
0x03, 0xbb, 0xdd, 0x56, 0xc7, 0xec, 0x19, 0xfd, 0xb3, 0x6f, 0xcc, 0xa3, 0x7e, 0xef, 0xb9, 0xa9,
0x1b, 0x46, 0xdb, 0x30, 0xcf, 0xda, 0x67, 0x7a, 0xf9, 0x23, 0xf4, 0x08, 0x1e, 0xcc, 0x65, 0xbf,
0xea, 0xb7, 0x7b, 0x47, 0xa6, 0xfe, 0xc7, 0xa6, 0xae, 0x9f, 0xe8, 0x27, 0xe5, 0xd4, 0x42, 0xc1,
0xb3, 0xb6, 0xa2, 0x9d, 0xb6, 0xfb, 0x67, 0x27, 0xe5, 0x95, 0xc3, 0x9f, 0xd6, 0x20, 0xdb, 0x6a,
0x0b, 0x18, 0x7e, 0x06, 0xc5, 0x26, 0xc5, 0x16, 0xc3, 0xf2, 0x71, 0x06, 0xcd, 0x7b, 0xad, 0xa9,
0xee, 0xcc, 0x14, 0x39, 0x7d, 0x14, 0xb0, 0x6b, 0xae, 0x2c, 0xcf, 0xc4, 0x87, 0x28, 0xff, 0x0e,
0xf2, 0xe3, 0xf7, 0x26, 0xb4, 0x1d, 0x3f, 0x45, 0x4c, 0xbd, 0x3f, 0x55, 0xe7, 0x19, 0x44, 0x3a,
0xc0, 0x0b, 0x37, 0x8c, 0x35, 0x27, 0xe5, 0x71, 0x42, 0x8c, 0xd5, 0xf7, 0xe6, 0xf2, 0xc6, 0x43,
0xeb, 0xfa, 0xd4, 0xeb, 0x15, 0xda, 0x15, 0x31, 0xcc, 0x7b, 0xd1, 0x5a, 0xb8, 0x86, 0x2f, 0x60,
0x5d, 0x66, 0x4f, 0xbd, 0x1a, 0xa0, 0xb9, 0x2f, 0x41, 0x0b, 0xd5, 0x5b, 0x50, 0x9a, 0x7e, 0x7d,
0x41, 0xd5, 0xb9, 0x4f, 0x32, 0xf1, 0x6a, 0x16, 0x3f, 0xd7, 0xa0, 0x17, 0x80, 0x66, 0xdf, 0x42,
0xd0, 0xdd, 0xc4, 0x92, 0xe6, 0x3c, 0x92, 0x2c, 0x0c, 0xec, 0x3b, 0xd8, 0x5d, 0x38, 0xf5, 0xa3,
0x87, 0x71, 0x1c, 0xef, 0x7c, 0x0f, 0xa9, 0x7e, 0xfc, 0x3e, 0x31, 0x15, 0xf9, 0x10, 0xb4, 0x45,
0x6d, 0x07, 0xfa, 0xe5, 0x6d, 0x26, 0xab, 0xea, 0xc3, 0x5b, 0xf5, 0x2e, 0x93, 0x14, 0x25, 0x2b,
0xf8, 0x54, 0x8a, 0xe6, 0x94, 0xf6, 0x85, 0x29, 0xfa, 0x1a, 0x36, 0x67, 0x0a, 0x30, 0xba, 0x23,
0x8c, 0x2d, 0x2a, 0xcc, 0x8b, 0x6c, 0x1d, 0xdf, 0xff, 0xd3, 0xbd, 0xa1, 0xcb, 0x2e, 0xa2, 0xf3,
0x86, 0x4d, 0x46, 0x07, 0x0a, 0x41, 0xf2, 0xa1, 0xd6, 0x26, 0xde, 0x01, 0x0d, 0xec, 0xf3, 0xac,
0xf8, 0xfa, 0xed, 0xcf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x9c, 0x0d, 0xe5, 0xe3, 0x60, 0x16, 0x00,
0x00,
}