* move proto options to use lk reserved range * generated protobuf * Create swift-swans-sit.md --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
447 lines
20 KiB
Go
447 lines
20 KiB
Go
// Code generated by protoc-gen-psrpc v0.7.0, DO NOT EDIT.
|
|
// source: rpc/ingress.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 livekit5 "github.com/livekit/protocol/livekit"
|
|
|
|
var _ = version.PsrpcVersion_0_7
|
|
|
|
// ================================
|
|
// IngressInternal Client Interface
|
|
// ================================
|
|
|
|
type IngressInternalClient interface {
|
|
StartIngress(ctx context.Context, req *StartIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressInfo, error)
|
|
|
|
ListActiveIngress(ctx context.Context, topic string, req *ListActiveIngressRequest, opts ...psrpc.RequestOption) (<-chan *psrpc.Response[*ListActiveIngressResponse], error)
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Close()
|
|
}
|
|
|
|
// ====================================
|
|
// IngressInternal ServerImpl Interface
|
|
// ====================================
|
|
|
|
type IngressInternalServerImpl interface {
|
|
StartIngress(context.Context, *StartIngressRequest) (*livekit5.IngressInfo, error)
|
|
StartIngressAffinity(context.Context, *StartIngressRequest) float32
|
|
|
|
ListActiveIngress(context.Context, *ListActiveIngressRequest) (*ListActiveIngressResponse, error)
|
|
}
|
|
|
|
// ================================
|
|
// IngressInternal Server Interface
|
|
// ================================
|
|
|
|
type IngressInternalServer interface {
|
|
RegisterListActiveIngressTopic(topic string) error
|
|
DeregisterListActiveIngressTopic(topic string)
|
|
|
|
// Close and wait for pending RPCs to complete
|
|
Shutdown()
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Kill()
|
|
}
|
|
|
|
// ======================
|
|
// IngressInternal Client
|
|
// ======================
|
|
|
|
type ingressInternalClient struct {
|
|
client *client.RPCClient
|
|
}
|
|
|
|
// NewIngressInternalClient creates a psrpc client that implements the IngressInternalClient interface.
|
|
func NewIngressInternalClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (IngressInternalClient, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "IngressInternal",
|
|
ID: rand.NewClientID(),
|
|
}
|
|
|
|
sd.RegisterMethod("StartIngress", true, false, true, false)
|
|
sd.RegisterMethod("ListActiveIngress", false, true, false, false)
|
|
|
|
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &ingressInternalClient{
|
|
client: rpcClient,
|
|
}, nil
|
|
}
|
|
|
|
func (c *ingressInternalClient) StartIngress(ctx context.Context, req *StartIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressInfo, error) {
|
|
return client.RequestSingle[*livekit5.IngressInfo](ctx, c.client, "StartIngress", nil, req, opts...)
|
|
}
|
|
|
|
func (c *ingressInternalClient) ListActiveIngress(ctx context.Context, topic string, req *ListActiveIngressRequest, opts ...psrpc.RequestOption) (<-chan *psrpc.Response[*ListActiveIngressResponse], error) {
|
|
return client.RequestMulti[*ListActiveIngressResponse](ctx, c.client, "ListActiveIngress", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (s *ingressInternalClient) Close() {
|
|
s.client.Close()
|
|
}
|
|
|
|
// ======================
|
|
// IngressInternal Server
|
|
// ======================
|
|
|
|
type ingressInternalServer struct {
|
|
svc IngressInternalServerImpl
|
|
rpc *server.RPCServer
|
|
}
|
|
|
|
// NewIngressInternalServer builds a RPCServer that will route requests
|
|
// to the corresponding method in the provided svc implementation.
|
|
func NewIngressInternalServer(svc IngressInternalServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (IngressInternalServer, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "IngressInternal",
|
|
ID: rand.NewServerID(),
|
|
}
|
|
|
|
s := server.NewRPCServer(sd, bus, opts...)
|
|
|
|
sd.RegisterMethod("StartIngress", true, false, true, false)
|
|
var err error
|
|
err = server.RegisterHandler(s, "StartIngress", nil, svc.StartIngress, svc.StartIngressAffinity)
|
|
if err != nil {
|
|
s.Close(false)
|
|
return nil, err
|
|
}
|
|
|
|
sd.RegisterMethod("ListActiveIngress", false, true, false, false)
|
|
return &ingressInternalServer{
|
|
svc: svc,
|
|
rpc: s,
|
|
}, nil
|
|
}
|
|
|
|
func (s *ingressInternalServer) RegisterListActiveIngressTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "ListActiveIngress", []string{topic}, s.svc.ListActiveIngress, nil)
|
|
}
|
|
|
|
func (s *ingressInternalServer) DeregisterListActiveIngressTopic(topic string) {
|
|
s.rpc.DeregisterHandler("ListActiveIngress", []string{topic})
|
|
}
|
|
|
|
func (s *ingressInternalServer) Shutdown() {
|
|
s.rpc.Close(false)
|
|
}
|
|
|
|
func (s *ingressInternalServer) Kill() {
|
|
s.rpc.Close(true)
|
|
}
|
|
|
|
// ====================================
|
|
// IngressInternal Unimplemented Server
|
|
// ====================================
|
|
|
|
type UnimplementedIngressInternalServer struct{}
|
|
|
|
func (UnimplementedIngressInternalServer) StartIngress(context.Context, *StartIngressRequest) (*livekit5.IngressInfo, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
func (UnimplementedIngressInternalServer) StartIngressAffinity(context.Context, *StartIngressRequest) float32 {
|
|
return -1
|
|
}
|
|
|
|
func (UnimplementedIngressInternalServer) ListActiveIngress(context.Context, *ListActiveIngressRequest) (*ListActiveIngressResponse, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
// ===============================
|
|
// IngressHandler Client Interface
|
|
// ===============================
|
|
|
|
type IngressHandlerClient interface {
|
|
UpdateIngress(ctx context.Context, topic string, req *livekit5.UpdateIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressState, error)
|
|
|
|
DeleteIngress(ctx context.Context, topic string, req *livekit5.DeleteIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressState, error)
|
|
|
|
DeleteWHIPResource(ctx context.Context, topic string, req *DeleteWHIPResourceRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
|
|
|
|
ICERestartWHIPResource(ctx context.Context, topic string, req *ICERestartWHIPResourceRequest, opts ...psrpc.RequestOption) (*ICERestartWHIPResourceResponse, error)
|
|
|
|
WHIPRTCConnectionNotify(ctx context.Context, topic string, req *WHIPRTCConnectionNotifyRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Close()
|
|
}
|
|
|
|
// ===================================
|
|
// IngressHandler ServerImpl Interface
|
|
// ===================================
|
|
|
|
type IngressHandlerServerImpl interface {
|
|
UpdateIngress(context.Context, *livekit5.UpdateIngressRequest) (*livekit5.IngressState, error)
|
|
|
|
DeleteIngress(context.Context, *livekit5.DeleteIngressRequest) (*livekit5.IngressState, error)
|
|
|
|
DeleteWHIPResource(context.Context, *DeleteWHIPResourceRequest) (*google_protobuf.Empty, error)
|
|
|
|
ICERestartWHIPResource(context.Context, *ICERestartWHIPResourceRequest) (*ICERestartWHIPResourceResponse, error)
|
|
|
|
WHIPRTCConnectionNotify(context.Context, *WHIPRTCConnectionNotifyRequest) (*google_protobuf.Empty, error)
|
|
}
|
|
|
|
// ===============================
|
|
// IngressHandler Server Interface
|
|
// ===============================
|
|
|
|
type IngressHandlerServer interface {
|
|
RegisterUpdateIngressTopic(topic string) error
|
|
DeregisterUpdateIngressTopic(topic string)
|
|
RegisterDeleteIngressTopic(topic string) error
|
|
DeregisterDeleteIngressTopic(topic string)
|
|
RegisterDeleteWHIPResourceTopic(topic string) error
|
|
DeregisterDeleteWHIPResourceTopic(topic string)
|
|
RegisterICERestartWHIPResourceTopic(topic string) error
|
|
DeregisterICERestartWHIPResourceTopic(topic string)
|
|
RegisterWHIPRTCConnectionNotifyTopic(topic string) error
|
|
DeregisterWHIPRTCConnectionNotifyTopic(topic string)
|
|
|
|
// Close and wait for pending RPCs to complete
|
|
Shutdown()
|
|
|
|
// Close immediately, without waiting for pending RPCs
|
|
Kill()
|
|
}
|
|
|
|
// =====================
|
|
// IngressHandler Client
|
|
// =====================
|
|
|
|
type ingressHandlerClient struct {
|
|
client *client.RPCClient
|
|
}
|
|
|
|
// NewIngressHandlerClient creates a psrpc client that implements the IngressHandlerClient interface.
|
|
func NewIngressHandlerClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (IngressHandlerClient, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "IngressHandler",
|
|
ID: rand.NewClientID(),
|
|
}
|
|
|
|
sd.RegisterMethod("UpdateIngress", false, false, true, true)
|
|
sd.RegisterMethod("DeleteIngress", false, false, true, true)
|
|
sd.RegisterMethod("DeleteWHIPResource", false, false, true, true)
|
|
sd.RegisterMethod("ICERestartWHIPResource", false, false, true, true)
|
|
sd.RegisterMethod("WHIPRTCConnectionNotify", false, false, false, true)
|
|
|
|
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &ingressHandlerClient{
|
|
client: rpcClient,
|
|
}, nil
|
|
}
|
|
|
|
func (c *ingressHandlerClient) UpdateIngress(ctx context.Context, topic string, req *livekit5.UpdateIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressState, error) {
|
|
return client.RequestSingle[*livekit5.IngressState](ctx, c.client, "UpdateIngress", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (c *ingressHandlerClient) DeleteIngress(ctx context.Context, topic string, req *livekit5.DeleteIngressRequest, opts ...psrpc.RequestOption) (*livekit5.IngressState, error) {
|
|
return client.RequestSingle[*livekit5.IngressState](ctx, c.client, "DeleteIngress", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (c *ingressHandlerClient) DeleteWHIPResource(ctx context.Context, topic string, req *DeleteWHIPResourceRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
|
|
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "DeleteWHIPResource", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (c *ingressHandlerClient) ICERestartWHIPResource(ctx context.Context, topic string, req *ICERestartWHIPResourceRequest, opts ...psrpc.RequestOption) (*ICERestartWHIPResourceResponse, error) {
|
|
return client.RequestSingle[*ICERestartWHIPResourceResponse](ctx, c.client, "ICERestartWHIPResource", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (c *ingressHandlerClient) WHIPRTCConnectionNotify(ctx context.Context, topic string, req *WHIPRTCConnectionNotifyRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
|
|
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "WHIPRTCConnectionNotify", []string{topic}, req, opts...)
|
|
}
|
|
|
|
func (s *ingressHandlerClient) Close() {
|
|
s.client.Close()
|
|
}
|
|
|
|
// =====================
|
|
// IngressHandler Server
|
|
// =====================
|
|
|
|
type ingressHandlerServer struct {
|
|
svc IngressHandlerServerImpl
|
|
rpc *server.RPCServer
|
|
}
|
|
|
|
// NewIngressHandlerServer builds a RPCServer that will route requests
|
|
// to the corresponding method in the provided svc implementation.
|
|
func NewIngressHandlerServer(svc IngressHandlerServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (IngressHandlerServer, error) {
|
|
sd := &info.ServiceDefinition{
|
|
Name: "IngressHandler",
|
|
ID: rand.NewServerID(),
|
|
}
|
|
|
|
s := server.NewRPCServer(sd, bus, opts...)
|
|
|
|
sd.RegisterMethod("UpdateIngress", false, false, true, true)
|
|
sd.RegisterMethod("DeleteIngress", false, false, true, true)
|
|
sd.RegisterMethod("DeleteWHIPResource", false, false, true, true)
|
|
sd.RegisterMethod("ICERestartWHIPResource", false, false, true, true)
|
|
sd.RegisterMethod("WHIPRTCConnectionNotify", false, false, false, true)
|
|
return &ingressHandlerServer{
|
|
svc: svc,
|
|
rpc: s,
|
|
}, nil
|
|
}
|
|
|
|
func (s *ingressHandlerServer) RegisterUpdateIngressTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "UpdateIngress", []string{topic}, s.svc.UpdateIngress, nil)
|
|
}
|
|
|
|
func (s *ingressHandlerServer) DeregisterUpdateIngressTopic(topic string) {
|
|
s.rpc.DeregisterHandler("UpdateIngress", []string{topic})
|
|
}
|
|
|
|
func (s *ingressHandlerServer) RegisterDeleteIngressTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "DeleteIngress", []string{topic}, s.svc.DeleteIngress, nil)
|
|
}
|
|
|
|
func (s *ingressHandlerServer) DeregisterDeleteIngressTopic(topic string) {
|
|
s.rpc.DeregisterHandler("DeleteIngress", []string{topic})
|
|
}
|
|
|
|
func (s *ingressHandlerServer) RegisterDeleteWHIPResourceTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "DeleteWHIPResource", []string{topic}, s.svc.DeleteWHIPResource, nil)
|
|
}
|
|
|
|
func (s *ingressHandlerServer) DeregisterDeleteWHIPResourceTopic(topic string) {
|
|
s.rpc.DeregisterHandler("DeleteWHIPResource", []string{topic})
|
|
}
|
|
|
|
func (s *ingressHandlerServer) RegisterICERestartWHIPResourceTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "ICERestartWHIPResource", []string{topic}, s.svc.ICERestartWHIPResource, nil)
|
|
}
|
|
|
|
func (s *ingressHandlerServer) DeregisterICERestartWHIPResourceTopic(topic string) {
|
|
s.rpc.DeregisterHandler("ICERestartWHIPResource", []string{topic})
|
|
}
|
|
|
|
func (s *ingressHandlerServer) RegisterWHIPRTCConnectionNotifyTopic(topic string) error {
|
|
return server.RegisterHandler(s.rpc, "WHIPRTCConnectionNotify", []string{topic}, s.svc.WHIPRTCConnectionNotify, nil)
|
|
}
|
|
|
|
func (s *ingressHandlerServer) DeregisterWHIPRTCConnectionNotifyTopic(topic string) {
|
|
s.rpc.DeregisterHandler("WHIPRTCConnectionNotify", []string{topic})
|
|
}
|
|
|
|
func (s *ingressHandlerServer) Shutdown() {
|
|
s.rpc.Close(false)
|
|
}
|
|
|
|
func (s *ingressHandlerServer) Kill() {
|
|
s.rpc.Close(true)
|
|
}
|
|
|
|
// ===================================
|
|
// IngressHandler Unimplemented Server
|
|
// ===================================
|
|
|
|
type UnimplementedIngressHandlerServer struct{}
|
|
|
|
func (UnimplementedIngressHandlerServer) UpdateIngress(context.Context, *livekit5.UpdateIngressRequest) (*livekit5.IngressState, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIngressHandlerServer) DeleteIngress(context.Context, *livekit5.DeleteIngressRequest) (*livekit5.IngressState, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIngressHandlerServer) DeleteWHIPResource(context.Context, *DeleteWHIPResourceRequest) (*google_protobuf.Empty, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIngressHandlerServer) ICERestartWHIPResource(context.Context, *ICERestartWHIPResourceRequest) (*ICERestartWHIPResourceResponse, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
func (UnimplementedIngressHandlerServer) WHIPRTCConnectionNotify(context.Context, *WHIPRTCConnectionNotifyRequest) (*google_protobuf.Empty, error) {
|
|
return nil, psrpc.ErrUnimplemented
|
|
}
|
|
|
|
var psrpcFileDescriptor3 = []byte{
|
|
// 953 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x72, 0xe3, 0x44,
|
|
0x10, 0x2e, 0xd9, 0x8e, 0x93, 0xb4, 0xe3, 0xac, 0x33, 0xf9, 0x59, 0x45, 0x54, 0x42, 0x50, 0x2e,
|
|
0x2e, 0xb6, 0x90, 0x29, 0x53, 0x14, 0x14, 0x07, 0xc8, 0xe6, 0xaf, 0x62, 0x76, 0x17, 0x52, 0x4a,
|
|
0x16, 0xaa, 0x38, 0xa0, 0x52, 0xa4, 0x91, 0x76, 0x88, 0xac, 0x11, 0x33, 0xa3, 0xb8, 0x7c, 0xe3,
|
|
0x9a, 0x3b, 0x2f, 0xc0, 0x2b, 0xe4, 0x18, 0x9e, 0x82, 0xe2, 0x85, 0x28, 0xcd, 0x8c, 0x1c, 0x3b,
|
|
0xb6, 0x03, 0x1c, 0xf6, 0xa6, 0xee, 0xfe, 0xea, 0xeb, 0x99, 0xe9, 0xee, 0xaf, 0x05, 0x6b, 0x2c,
|
|
0x0b, 0x3a, 0x24, 0x8d, 0x19, 0xe6, 0xdc, 0xc9, 0x18, 0x15, 0x14, 0x55, 0x59, 0x16, 0x58, 0x4d,
|
|
0x9a, 0x09, 0x42, 0x53, 0xed, 0xb3, 0x36, 0x13, 0x72, 0x83, 0xaf, 0x89, 0xf0, 0x26, 0xa0, 0xd6,
|
|
0x07, 0x31, 0xa5, 0x71, 0x82, 0x3b, 0xd2, 0xba, 0xca, 0xa3, 0x0e, 0xee, 0x67, 0x62, 0xa8, 0x83,
|
|
0x1b, 0x09, 0x8d, 0x63, 0xcc, 0x3a, 0x13, 0x4c, 0xb6, 0x05, 0xe6, 0x6b, 0xc2, 0xc5, 0xcb, 0x40,
|
|
0x90, 0x1b, 0xdc, 0x53, 0x6c, 0x2e, 0xfe, 0x35, 0xc7, 0x5c, 0xd8, 0xbf, 0x19, 0xb0, 0x3d, 0x23,
|
|
0xc8, 0x33, 0x9a, 0x72, 0x8c, 0xf6, 0xa1, 0xa1, 0xb3, 0x7b, 0x24, 0xe4, 0xa6, 0xb1, 0x57, 0x6d,
|
|
0x2f, 0x1f, 0x56, 0x4c, 0xc3, 0x05, 0xed, 0xee, 0x85, 0x1c, 0x7d, 0x0d, 0xad, 0x12, 0xc4, 0x31,
|
|
0xe7, 0x45, 0x62, 0xb3, 0xb2, 0x57, 0x6d, 0x37, 0xba, 0xeb, 0x0e, 0xcb, 0x02, 0x47, 0x93, 0x5e,
|
|
0xa8, 0x98, 0xfb, 0x8c, 0x4c, 0xd8, 0xdc, 0xfe, 0x05, 0xb6, 0x8f, 0x71, 0x82, 0x05, 0xfe, 0xf1,
|
|
0xac, 0x77, 0xee, 0x62, 0x4e, 0x73, 0x16, 0x60, 0x7d, 0x3e, 0xe4, 0x40, 0x83, 0x69, 0x97, 0x47,
|
|
0x42, 0xd3, 0xd8, 0x33, 0xda, 0xcb, 0x87, 0xcd, 0xfb, 0x73, 0x28, 0xbd, 0xbd, 0x63, 0xf7, 0xe1,
|
|
0x3b, 0x44, 0x3b, 0x00, 0x5c, 0x30, 0xec, 0xf7, 0xbd, 0x6b, 0x3c, 0x34, 0x2b, 0x05, 0xdc, 0x5d,
|
|
0x56, 0x9e, 0x57, 0x78, 0x68, 0xff, 0x51, 0x81, 0x9d, 0xde, 0xd1, 0x89, 0x8b, 0xb9, 0xf0, 0x99,
|
|
0x78, 0xff, 0x09, 0xd1, 0x3e, 0x34, 0x73, 0x8e, 0x99, 0x17, 0x31, 0x3f, 0xee, 0xe3, 0x54, 0x98,
|
|
0x55, 0x89, 0x58, 0x29, 0x9c, 0xa7, 0xda, 0x87, 0x2c, 0x58, 0xca, 0x7c, 0xce, 0x07, 0x94, 0x85,
|
|
0x66, 0x4d, 0xc6, 0x47, 0x36, 0xda, 0x05, 0x08, 0xfc, 0x34, 0x24, 0xa1, 0x2f, 0x30, 0x37, 0x17,
|
|
0x8a, 0x0a, 0xb8, 0x63, 0x1e, 0xf4, 0x39, 0x3c, 0x67, 0xfe, 0xc0, 0x13, 0x8c, 0x04, 0xd7, 0x09,
|
|
0xf6, 0x48, 0x80, 0x3d, 0x1e, 0x66, 0x45, 0x3a, 0xb3, 0x2e, 0xa9, 0x36, 0x98, 0x3f, 0xb8, 0x54,
|
|
0xd1, 0x5e, 0x80, 0x2f, 0x54, 0x0c, 0x6d, 0xc3, 0x12, 0x89, 0xbc, 0xbe, 0x2f, 0x82, 0x77, 0xe6,
|
|
0xa2, 0xc4, 0x2d, 0x92, 0xe8, 0x4d, 0x61, 0xda, 0x21, 0xec, 0xce, 0x7b, 0x22, 0xdd, 0x16, 0x0e,
|
|
0xac, 0xcf, 0xca, 0x27, 0xdf, 0xca, 0x5d, 0x13, 0x53, 0xc9, 0x10, 0xd4, 0xb0, 0xf0, 0x63, 0xfd,
|
|
0x3a, 0xf2, 0xdb, 0xfe, 0xcb, 0x80, 0x5d, 0x49, 0x7e, 0x79, 0x74, 0x44, 0xd3, 0x14, 0x07, 0x45,
|
|
0xc7, 0x7e, 0x47, 0x05, 0x89, 0x86, 0x65, 0x29, 0xbe, 0x80, 0xd5, 0xcc, 0x67, 0x82, 0x04, 0x24,
|
|
0xf3, 0x53, 0xf1, 0x50, 0x8d, 0xd6, 0xfd, 0x79, 0x73, 0x2c, 0xd0, 0x3b, 0x76, 0x27, 0xcc, 0x10,
|
|
0x6d, 0x41, 0x3d, 0x48, 0x28, 0xc7, 0xa1, 0xcc, 0xb8, 0xe4, 0x6a, 0x0b, 0x39, 0xb0, 0x70, 0x43,
|
|
0x42, 0x4c, 0x65, 0x11, 0x1a, 0x5d, 0xd3, 0xd1, 0x23, 0xe6, 0xf4, 0xd2, 0x2c, 0x17, 0x3f, 0x14,
|
|
0xa1, 0x0b, 0xe1, 0x0b, 0xec, 0x2a, 0x58, 0x81, 0xf7, 0xf3, 0x90, 0x50, 0x59, 0x94, 0x29, 0xfc,
|
|
0xcb, 0x22, 0xa4, 0xf1, 0x12, 0x66, 0xff, 0x5e, 0x85, 0xf5, 0x8b, 0xe2, 0xd5, 0x26, 0x87, 0x0c,
|
|
0xb5, 0xa1, 0x46, 0xd2, 0x88, 0xca, 0xe3, 0x37, 0xba, 0x1b, 0x63, 0x34, 0x6a, 0x88, 0xd2, 0x88,
|
|
0xba, 0x12, 0x81, 0x36, 0x60, 0x41, 0xd0, 0x6b, 0x9c, 0xea, 0xa7, 0x52, 0x06, 0xda, 0x84, 0xfa,
|
|
0x80, 0x7b, 0x39, 0x4b, 0x74, 0xf7, 0x2c, 0x0c, 0xf8, 0x5b, 0x96, 0x20, 0x17, 0x56, 0x8b, 0x79,
|
|
0x27, 0x69, 0xec, 0x45, 0x04, 0x27, 0x21, 0x37, 0x6b, 0x72, 0xec, 0x5e, 0xc8, 0xb1, 0x9b, 0x71,
|
|
0x10, 0xe7, 0xb5, 0x82, 0x9f, 0x4a, 0xf4, 0x49, 0x2a, 0xd8, 0xd0, 0x6d, 0x26, 0xe3, 0x3e, 0xf4,
|
|
0x3d, 0x34, 0x23, 0xec, 0x8b, 0x9c, 0x61, 0x2f, 0x4a, 0xfc, 0x58, 0x75, 0x5c, 0xa3, 0xfb, 0xf1,
|
|
0x5c, 0xca, 0x53, 0x85, 0x3e, 0x2d, 0xc0, 0x8a, 0x71, 0x25, 0x1a, 0x73, 0x59, 0x07, 0x80, 0xa6,
|
|
0xb3, 0xa2, 0x16, 0x54, 0x8b, 0x71, 0x51, 0x1d, 0x53, 0x7c, 0x16, 0x37, 0xbf, 0xf1, 0x93, 0x1c,
|
|
0x97, 0x37, 0x97, 0xc6, 0x57, 0x95, 0x2f, 0x0d, 0xeb, 0x1b, 0x58, 0x9b, 0x4a, 0xf2, 0x7f, 0x08,
|
|
0xec, 0x3e, 0xac, 0x4e, 0x6a, 0x10, 0x7a, 0x01, 0xf0, 0xa0, 0x6b, 0xba, 0xab, 0x56, 0xee, 0xcf,
|
|
0x97, 0x4b, 0x55, 0x3b, 0x76, 0x47, 0x9f, 0xe1, 0x63, 0x45, 0xa8, 0xfc, 0x8b, 0x22, 0xd8, 0xdf,
|
|
0xc2, 0xf6, 0x2b, 0x92, 0x24, 0x8f, 0x64, 0x4f, 0xb7, 0xc2, 0x27, 0xb0, 0xa8, 0x45, 0x52, 0x77,
|
|
0xc3, 0x4c, 0x8d, 0x2c, 0x31, 0xdd, 0x3f, 0x0d, 0x78, 0x36, 0xea, 0x12, 0x81, 0x59, 0xea, 0x27,
|
|
0xe8, 0x0c, 0x56, 0xc6, 0x0b, 0x81, 0xcc, 0x79, 0xb5, 0xb1, 0x66, 0x76, 0x9a, 0xbd, 0x74, 0x77,
|
|
0x6b, 0xd4, 0x0e, 0x8c, 0x4f, 0x0d, 0xf4, 0x33, 0xac, 0x4d, 0x69, 0x3f, 0xda, 0x91, 0x74, 0xf3,
|
|
0x16, 0x86, 0xb5, 0x3b, 0x2f, 0xac, 0xb4, 0xc1, 0x86, 0xbb, 0x5b, 0xa3, 0xde, 0x32, 0x0e, 0x2a,
|
|
0x6d, 0xa3, 0xfb, 0x77, 0x75, 0xf4, 0xf2, 0x67, 0x7e, 0x1a, 0x26, 0x98, 0xa1, 0x37, 0xd0, 0x7c,
|
|
0x9b, 0x15, 0xca, 0xf5, 0x90, 0xae, 0x3c, 0xe3, 0x84, 0xbf, 0x4c, 0xb7, 0xf9, 0xf8, 0x0a, 0x72,
|
|
0xe0, 0xec, 0xfa, 0xdd, 0xad, 0x51, 0x69, 0x19, 0x05, 0x9d, 0xda, 0x1d, 0xd3, 0x74, 0x13, 0xfe,
|
|
0xff, 0x48, 0x77, 0x09, 0x68, 0x7a, 0x15, 0x21, 0x75, 0xe5, 0xb9, 0x3b, 0xca, 0xda, 0x72, 0xd4,
|
|
0x4e, 0x76, 0xca, 0x9d, 0xec, 0x9c, 0x14, 0x3b, 0x79, 0xc4, 0x4a, 0x60, 0x6b, 0xb6, 0xa0, 0x22,
|
|
0x5b, 0x15, 0xff, 0xa9, 0x85, 0x64, 0xed, 0x3f, 0x89, 0xd1, 0xaf, 0x5e, 0xa6, 0xba, 0x82, 0xe7,
|
|
0x73, 0x44, 0x15, 0x29, 0x9e, 0xa7, 0x25, 0x77, 0xee, 0x55, 0x74, 0x55, 0xad, 0xca, 0x9e, 0x71,
|
|
0xf8, 0xd1, 0x4f, 0x1f, 0xc6, 0x44, 0xbc, 0xcb, 0xaf, 0x9c, 0x80, 0xf6, 0x3b, 0xfa, 0x3d, 0xd5,
|
|
0xff, 0x48, 0x40, 0x93, 0x0e, 0xcb, 0x82, 0xab, 0xba, 0xb4, 0x3e, 0xfb, 0x27, 0x00, 0x00, 0xff,
|
|
0xff, 0x5d, 0x56, 0xe5, 0xf3, 0xeb, 0x08, 0x00, 0x00,
|
|
}
|