CRI: Add a call to reopen log file for a container

This allows a daemon external to the container runtime to rotate the log
file, and then ask the runtime to reopen the files.
This commit is contained in:
Yu-Ju Hong 2018-01-26 14:07:08 -08:00
parent 88abb431ae
commit 57d8b64dbd
9 changed files with 630 additions and 271 deletions

View File

@ -52,6 +52,9 @@ type ContainerManager interface {
Exec(*runtimeapi.ExecRequest) (*runtimeapi.ExecResponse, error)
// Attach prepares a streaming endpoint to attach to a running container, and returns the address.
Attach(req *runtimeapi.AttachRequest) (*runtimeapi.AttachResponse, error)
// ReopenContainerLog asks runtime to reopen the stdout/stderr log file
// for the container.
ReopenContainerLog(ContainerID string) error
}
// PodSandboxManager contains methods for operating on PodSandboxes. The methods

View File

@ -459,3 +459,11 @@ func (r *FakeRuntimeService) ListContainerStats(filter *runtimeapi.ContainerStat
return result, nil
}
func (r *FakeRuntimeService) ReopenContainerLog(containerID string) error {
r.Lock()
defer r.Unlock()
r.Called = append(r.Called, "ReopenContainerLog")
return nil
}

View File

@ -122,6 +122,8 @@ limitations under the License.
ContainerStats
CpuUsage
MemoryUsage
ReopenContainerLogRequest
ReopenContainerLogResponse
*/
package runtime
@ -3429,6 +3431,29 @@ func (m *MemoryUsage) GetWorkingSetBytes() *UInt64Value {
return nil
}
type ReopenContainerLogRequest struct {
// ID of the container for which to reopen the log.
ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
}
func (m *ReopenContainerLogRequest) Reset() { *m = ReopenContainerLogRequest{} }
func (*ReopenContainerLogRequest) ProtoMessage() {}
func (*ReopenContainerLogRequest) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{97} }
func (m *ReopenContainerLogRequest) GetContainerId() string {
if m != nil {
return m.ContainerId
}
return ""
}
type ReopenContainerLogResponse struct {
}
func (m *ReopenContainerLogResponse) Reset() { *m = ReopenContainerLogResponse{} }
func (*ReopenContainerLogResponse) ProtoMessage() {}
func (*ReopenContainerLogResponse) Descriptor() ([]byte, []int) { return fileDescriptorApi, []int{98} }
func init() {
proto.RegisterType((*VersionRequest)(nil), "runtime.VersionRequest")
proto.RegisterType((*VersionResponse)(nil), "runtime.VersionResponse")
@ -3527,6 +3552,8 @@ func init() {
proto.RegisterType((*ContainerStats)(nil), "runtime.ContainerStats")
proto.RegisterType((*CpuUsage)(nil), "runtime.CpuUsage")
proto.RegisterType((*MemoryUsage)(nil), "runtime.MemoryUsage")
proto.RegisterType((*ReopenContainerLogRequest)(nil), "runtime.ReopenContainerLogRequest")
proto.RegisterType((*ReopenContainerLogResponse)(nil), "runtime.ReopenContainerLogResponse")
proto.RegisterEnum("runtime.Protocol", Protocol_name, Protocol_value)
proto.RegisterEnum("runtime.MountPropagation", MountPropagation_name, MountPropagation_value)
proto.RegisterEnum("runtime.PodSandboxState", PodSandboxState_name, PodSandboxState_value)
@ -3590,6 +3617,10 @@ type RuntimeServiceClient interface {
ContainerStatus(ctx context.Context, in *ContainerStatusRequest, opts ...grpc.CallOption) (*ContainerStatusResponse, error)
// UpdateContainerResources updates ContainerConfig of the container.
UpdateContainerResources(ctx context.Context, in *UpdateContainerResourcesRequest, opts ...grpc.CallOption) (*UpdateContainerResourcesResponse, error)
// ReopenContainerLog asks runtime to reopen the stdout/stderr log file
// for the container. This is often called after the log file has been
// rotated.
ReopenContainerLog(ctx context.Context, in *ReopenContainerLogRequest, opts ...grpc.CallOption) (*ReopenContainerLogResponse, error)
// ExecSync runs a command in a container synchronously.
ExecSync(ctx context.Context, in *ExecSyncRequest, opts ...grpc.CallOption) (*ExecSyncResponse, error)
// Exec prepares a streaming endpoint to execute a command in the container.
@ -3734,6 +3765,15 @@ func (c *runtimeServiceClient) UpdateContainerResources(ctx context.Context, in
return out, nil
}
func (c *runtimeServiceClient) ReopenContainerLog(ctx context.Context, in *ReopenContainerLogRequest, opts ...grpc.CallOption) (*ReopenContainerLogResponse, error) {
out := new(ReopenContainerLogResponse)
err := grpc.Invoke(ctx, "/runtime.RuntimeService/ReopenContainerLog", in, out, c.cc, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *runtimeServiceClient) ExecSync(ctx context.Context, in *ExecSyncRequest, opts ...grpc.CallOption) (*ExecSyncResponse, error) {
out := new(ExecSyncResponse)
err := grpc.Invoke(ctx, "/runtime.RuntimeService/ExecSync", in, out, c.cc, opts...)
@ -3855,6 +3895,10 @@ type RuntimeServiceServer interface {
ContainerStatus(context.Context, *ContainerStatusRequest) (*ContainerStatusResponse, error)
// UpdateContainerResources updates ContainerConfig of the container.
UpdateContainerResources(context.Context, *UpdateContainerResourcesRequest) (*UpdateContainerResourcesResponse, error)
// ReopenContainerLog asks runtime to reopen the stdout/stderr log file
// for the container. This is often called after the log file has been
// rotated.
ReopenContainerLog(context.Context, *ReopenContainerLogRequest) (*ReopenContainerLogResponse, error)
// ExecSync runs a command in a container synchronously.
ExecSync(context.Context, *ExecSyncRequest) (*ExecSyncResponse, error)
// Exec prepares a streaming endpoint to execute a command in the container.
@ -4112,6 +4156,24 @@ func _RuntimeService_UpdateContainerResources_Handler(srv interface{}, ctx conte
return interceptor(ctx, in, info, handler)
}
func _RuntimeService_ReopenContainerLog_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ReopenContainerLogRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(RuntimeServiceServer).ReopenContainerLog(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/runtime.RuntimeService/ReopenContainerLog",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(RuntimeServiceServer).ReopenContainerLog(ctx, req.(*ReopenContainerLogRequest))
}
return interceptor(ctx, in, info, handler)
}
func _RuntimeService_ExecSync_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ExecSyncRequest)
if err := dec(in); err != nil {
@ -4312,6 +4374,10 @@ var _RuntimeService_serviceDesc = grpc.ServiceDesc{
MethodName: "UpdateContainerResources",
Handler: _RuntimeService_UpdateContainerResources_Handler,
},
{
MethodName: "ReopenContainerLog",
Handler: _RuntimeService_ReopenContainerLog_Handler,
},
{
MethodName: "ExecSync",
Handler: _RuntimeService_ExecSync_Handler,
@ -8569,6 +8635,48 @@ func (m *MemoryUsage) MarshalTo(dAtA []byte) (int, error) {
return i, nil
}
func (m *ReopenContainerLogRequest) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *ReopenContainerLogRequest) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
if len(m.ContainerId) > 0 {
dAtA[i] = 0xa
i++
i = encodeVarintApi(dAtA, i, uint64(len(m.ContainerId)))
i += copy(dAtA[i:], m.ContainerId)
}
return i, nil
}
func (m *ReopenContainerLogResponse) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalTo(dAtA)
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *ReopenContainerLogResponse) MarshalTo(dAtA []byte) (int, error) {
var i int
_ = i
var l int
_ = l
return i, nil
}
func encodeFixed64Api(dAtA []byte, offset int, v uint64) int {
dAtA[offset] = uint8(v)
dAtA[offset+1] = uint8(v >> 8)
@ -10264,6 +10372,22 @@ func (m *MemoryUsage) Size() (n int) {
return n
}
func (m *ReopenContainerLogRequest) Size() (n int) {
var l int
_ = l
l = len(m.ContainerId)
if l > 0 {
n += 1 + l + sovApi(uint64(l))
}
return n
}
func (m *ReopenContainerLogResponse) Size() (n int) {
var l int
_ = l
return n
}
func sovApi(x uint64) (n int) {
for {
n++
@ -11621,6 +11745,25 @@ func (this *MemoryUsage) String() string {
}, "")
return s
}
func (this *ReopenContainerLogRequest) String() string {
if this == nil {
return "nil"
}
s := strings.Join([]string{`&ReopenContainerLogRequest{`,
`ContainerId:` + fmt.Sprintf("%v", this.ContainerId) + `,`,
`}`,
}, "")
return s
}
func (this *ReopenContainerLogResponse) String() string {
if this == nil {
return "nil"
}
s := strings.Join([]string{`&ReopenContainerLogResponse{`,
`}`,
}, "")
return s
}
func valueToStringApi(v interface{}) string {
rv := reflect.ValueOf(v)
if rv.IsNil() {
@ -25473,6 +25616,135 @@ func (m *MemoryUsage) Unmarshal(dAtA []byte) error {
}
return nil
}
func (m *ReopenContainerLogRequest) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowApi
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: ReopenContainerLogRequest: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: ReopenContainerLogRequest: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field ContainerId", wireType)
}
var stringLen uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowApi
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
stringLen |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
intStringLen := int(stringLen)
if intStringLen < 0 {
return ErrInvalidLengthApi
}
postIndex := iNdEx + intStringLen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.ContainerId = string(dAtA[iNdEx:postIndex])
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipApi(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthApi
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func (m *ReopenContainerLogResponse) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowApi
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= (uint64(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: ReopenContainerLogResponse: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: ReopenContainerLogResponse: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
default:
iNdEx = preIndex
skippy, err := skipApi(dAtA[iNdEx:])
if err != nil {
return err
}
if skippy < 0 {
return ErrInvalidLengthApi
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func skipApi(dAtA []byte) (n int, err error) {
l := len(dAtA)
iNdEx := 0
@ -25581,280 +25853,282 @@ var (
func init() { proto.RegisterFile("api.proto", fileDescriptorApi) }
var fileDescriptorApi = []byte{
// 4392 bytes of a gzipped FileDescriptorProto
// 4431 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5b, 0xcd, 0x6f, 0x1c, 0x47,
0x76, 0xe7, 0xcc, 0xf0, 0x63, 0xe6, 0x0d, 0x67, 0x38, 0x2c, 0x51, 0xe4, 0x70, 0x24, 0x51, 0x54,
0xcb, 0x92, 0x25, 0xed, 0x4a, 0x96, 0xe9, 0xb5, 0x14, 0xcb, 0xb6, 0xe4, 0x31, 0x49, 0x29, 0xb4,
0x24, 0x92, 0xdb, 0x43, 0x7a, 0x6d, 0x6c, 0x80, 0x4e, 0x73, 0xba, 0x38, 0x6c, 0x7b, 0xa6, 0xab,
0xdd, 0x1f, 0x92, 0x18, 0xe4, 0x90, 0x5c, 0x82, 0x20, 0x40, 0x80, 0xcd, 0x31, 0x39, 0xe5, 0x10,
0x60, 0x91, 0x4b, 0x10, 0xe4, 0x10, 0xe4, 0x0f, 0x08, 0x92, 0xbd, 0x2c, 0x10, 0x20, 0x40, 0x90,
0xdc, 0xb2, 0xca, 0x21, 0x87, 0x00, 0xf9, 0x1b, 0x16, 0xf5, 0xd5, 0x5d, 0xfd, 0x35, 0x22, 0x65,
0xef, 0x5a, 0xa7, 0xe9, 0x7a, 0xf5, 0xea, 0xd5, 0xab, 0xaa, 0x57, 0xaf, 0xde, 0xfb, 0x55, 0x0d,
0xd4, 0x4c, 0xd7, 0xbe, 0xe5, 0x7a, 0x24, 0x20, 0x68, 0xc6, 0x0b, 0x9d, 0xc0, 0x1e, 0xe1, 0xce,
0xcd, 0x81, 0x1d, 0x1c, 0x85, 0x07, 0xb7, 0xfa, 0x64, 0xf4, 0xce, 0x80, 0x0c, 0xc8, 0x3b, 0xac,
0xfe, 0x20, 0x3c, 0x64, 0x25, 0x56, 0x60, 0x5f, 0xbc, 0x9d, 0x76, 0x03, 0x9a, 0x9f, 0x63, 0xcf,
0xb7, 0x89, 0xa3, 0xe3, 0x6f, 0x42, 0xec, 0x07, 0xa8, 0x0d, 0x33, 0xcf, 0x38, 0xa5, 0x5d, 0x5a,
0x2d, 0x5d, 0xab, 0xe9, 0xb2, 0xa8, 0xfd, 0xbc, 0x04, 0x73, 0x11, 0xb3, 0xef, 0x12, 0xc7, 0xc7,
0xc5, 0xdc, 0xe8, 0x12, 0xcc, 0x0a, 0x9d, 0x0c, 0xc7, 0x1c, 0xe1, 0x76, 0x99, 0x55, 0xd7, 0x05,
0x6d, 0xdb, 0x1c, 0x61, 0xf4, 0x36, 0xcc, 0x49, 0x16, 0x29, 0xa4, 0xc2, 0xb8, 0x9a, 0x82, 0x2c,
0x7a, 0x43, 0xb7, 0xe0, 0x8c, 0x64, 0x34, 0x5d, 0x3b, 0x62, 0x9e, 0x64, 0xcc, 0xf3, 0xa2, 0xaa,
0xeb, 0xda, 0x82, 0x5f, 0xfb, 0x29, 0xd4, 0x36, 0xb6, 0x7b, 0xeb, 0xc4, 0x39, 0xb4, 0x07, 0x54,
0x45, 0x1f, 0x7b, 0xb4, 0x4d, 0xbb, 0xb4, 0x5a, 0xa1, 0x2a, 0x8a, 0x22, 0xea, 0x40, 0xd5, 0xc7,
0xa6, 0xd7, 0x3f, 0xc2, 0x7e, 0xbb, 0xcc, 0xaa, 0xa2, 0x32, 0x6d, 0x45, 0xdc, 0xc0, 0x26, 0x8e,
0xdf, 0xae, 0xf0, 0x56, 0xa2, 0xa8, 0xfd, 0x65, 0x09, 0xea, 0xbb, 0xc4, 0x0b, 0x9e, 0x9a, 0xae,
0x6b, 0x3b, 0x03, 0x74, 0x13, 0xaa, 0x6c, 0x2e, 0xfb, 0x64, 0xc8, 0xe6, 0xa0, 0xb9, 0x36, 0x7f,
0x4b, 0xa8, 0x74, 0x6b, 0x57, 0x54, 0xe8, 0x11, 0x0b, 0xba, 0x02, 0xcd, 0x3e, 0x71, 0x02, 0xd3,
0x76, 0xb0, 0x67, 0xb8, 0xc4, 0x0b, 0xd8, 0xcc, 0x4c, 0xe9, 0x8d, 0x88, 0x4a, 0x85, 0xa3, 0x73,
0x50, 0x3b, 0x22, 0x7e, 0xc0, 0x39, 0x2a, 0x8c, 0xa3, 0x4a, 0x09, 0xac, 0x72, 0x09, 0x66, 0x58,
0xa5, 0xed, 0x8a, 0x39, 0x98, 0xa6, 0xc5, 0x2d, 0x57, 0xfb, 0x65, 0x09, 0xa6, 0x9e, 0x92, 0xd0,
0x09, 0x52, 0xdd, 0x98, 0xc1, 0x91, 0x58, 0x1f, 0xa5, 0x1b, 0x33, 0x38, 0x8a, 0xbb, 0xa1, 0x1c,
0x7c, 0x89, 0x78, 0x37, 0xb4, 0xb2, 0x03, 0x55, 0x0f, 0x9b, 0x16, 0x71, 0x86, 0xc7, 0x4c, 0x85,
0xaa, 0x1e, 0x95, 0xe9, 0xda, 0xf9, 0x78, 0x68, 0x3b, 0xe1, 0x0b, 0xc3, 0xc3, 0x43, 0xf3, 0x00,
0x0f, 0x99, 0x2a, 0x55, 0xbd, 0x29, 0xc8, 0x3a, 0xa7, 0xa2, 0x0f, 0xa1, 0xee, 0x7a, 0xc4, 0x35,
0x07, 0x26, 0x9d, 0xbe, 0xf6, 0x14, 0x9b, 0xa1, 0xe5, 0x68, 0x86, 0x98, 0xb6, 0xbb, 0x31, 0x83,
0xae, 0x72, 0x6b, 0x5f, 0xc1, 0x1c, 0xb5, 0x14, 0xdf, 0x35, 0xfb, 0x78, 0x87, 0xcd, 0x3f, 0xb5,
0x2b, 0xa6, 0xb1, 0x83, 0x83, 0xe7, 0xc4, 0xfb, 0x9a, 0x0d, 0xab, 0xaa, 0xd7, 0x29, 0x6d, 0x9b,
0x93, 0xd0, 0x32, 0x54, 0xf9, 0xa0, 0x6c, 0x8b, 0x8d, 0xa9, 0xaa, 0xb3, 0xe9, 0xda, 0xb5, 0xad,
0xa8, 0xca, 0x76, 0xfb, 0x62, 0x48, 0x33, 0x7c, 0xea, 0xfa, 0x9a, 0x06, 0xb0, 0xe5, 0x04, 0x77,
0x7e, 0xf4, 0xb9, 0x39, 0x0c, 0x31, 0x5a, 0x80, 0xa9, 0x67, 0xf4, 0x83, 0xc9, 0xaf, 0xe8, 0xbc,
0xa0, 0xfd, 0x49, 0x05, 0xce, 0x3d, 0xa1, 0xa3, 0xeb, 0x99, 0x8e, 0x75, 0x40, 0x5e, 0xf4, 0x70,
0x3f, 0xf4, 0xec, 0xe0, 0x78, 0x9d, 0x38, 0x01, 0x7e, 0x11, 0xa0, 0x4d, 0x98, 0x77, 0xa4, 0xbe,
0x86, 0xb4, 0x1f, 0x2a, 0xa1, 0xbe, 0xd6, 0x8e, 0x86, 0x9c, 0x1a, 0x91, 0xde, 0x72, 0x92, 0x04,
0x1f, 0x3d, 0x88, 0x27, 0x57, 0x0a, 0x29, 0x33, 0x21, 0x8b, 0x91, 0x90, 0xde, 0x26, 0xd3, 0x43,
0x88, 0x90, 0x93, 0x2e, 0x05, 0xbc, 0x07, 0x74, 0xa3, 0x19, 0xa6, 0x6f, 0x84, 0x3e, 0xf6, 0xd8,
0x48, 0xeb, 0x6b, 0x67, 0xa2, 0xc6, 0xf1, 0x38, 0xf5, 0x9a, 0x17, 0x3a, 0x5d, 0x7f, 0xdf, 0xc7,
0x1e, 0xdb, 0x8e, 0x62, 0x79, 0x0d, 0x8f, 0x90, 0xe0, 0xd0, 0x97, 0x4b, 0x2a, 0xc9, 0x3a, 0xa3,
0xa2, 0x77, 0xe0, 0x8c, 0x1f, 0xba, 0xee, 0x10, 0x8f, 0xb0, 0x13, 0x98, 0x43, 0x63, 0xe0, 0x91,
0xd0, 0xf5, 0xdb, 0x53, 0xab, 0x95, 0x6b, 0x15, 0x1d, 0xa9, 0x55, 0x8f, 0x58, 0x0d, 0x5a, 0x01,
0x70, 0x3d, 0xfb, 0x99, 0x3d, 0xc4, 0x03, 0x6c, 0xb5, 0xa7, 0x99, 0x50, 0x85, 0x82, 0x6e, 0xc3,
0x82, 0x8f, 0xfb, 0x7d, 0x32, 0x72, 0x0d, 0xd7, 0x23, 0x87, 0xf6, 0x10, 0x73, 0x83, 0x9c, 0x61,
0x06, 0x89, 0x44, 0xdd, 0x2e, 0xaf, 0xa2, 0xa6, 0xa9, 0xfd, 0xac, 0x0c, 0x67, 0xd9, 0x04, 0xec,
0x12, 0x4b, 0xac, 0x85, 0xd8, 0xee, 0x97, 0xa1, 0xd1, 0x67, 0x0a, 0x19, 0xae, 0xe9, 0x61, 0x27,
0x10, 0x76, 0x3f, 0xcb, 0x89, 0xbb, 0x8c, 0x86, 0x76, 0xa0, 0xe5, 0x8b, 0xa5, 0x33, 0xfa, 0x7c,
0xed, 0xc4, 0x0c, 0xbf, 0x15, 0x4d, 0xd2, 0x98, 0x75, 0xd6, 0xe7, 0xfc, 0xcc, 0xc2, 0xcf, 0xf8,
0xc7, 0x7e, 0x3f, 0x18, 0x72, 0x77, 0x51, 0x5f, 0xfb, 0x41, 0x52, 0x4e, 0x5a, 0xcd, 0x5b, 0x3d,
0xce, 0xbd, 0xe9, 0x04, 0xde, 0xb1, 0x2e, 0xdb, 0x76, 0xee, 0xc1, 0xac, 0x5a, 0x81, 0x5a, 0x50,
0xf9, 0x1a, 0x1f, 0x8b, 0x21, 0xd0, 0xcf, 0xd8, 0x2e, 0xf9, 0x66, 0xe5, 0x85, 0x7b, 0xe5, 0xdf,
0x29, 0x69, 0x1e, 0xa0, 0xb8, 0x97, 0xa7, 0x38, 0x30, 0x2d, 0x33, 0x30, 0x11, 0x82, 0x49, 0xe6,
0x7e, 0xb9, 0x08, 0xf6, 0x4d, 0xa5, 0x86, 0x62, 0x6b, 0xd4, 0x74, 0xfa, 0x89, 0xce, 0x43, 0x2d,
0x32, 0x42, 0xe1, 0x83, 0x63, 0x02, 0xf5, 0x85, 0x66, 0x10, 0xe0, 0x91, 0x1b, 0x30, 0x83, 0x68,
0xe8, 0xb2, 0xa8, 0xfd, 0xd3, 0x24, 0xb4, 0x32, 0x2b, 0x70, 0x17, 0xaa, 0x23, 0xd1, 0xbd, 0xb0,
0xfd, 0x73, 0xb1, 0x43, 0xcc, 0x68, 0xa8, 0x47, 0xcc, 0xd4, 0xdf, 0xd0, 0xcd, 0xa8, 0x1c, 0x17,
0x51, 0x99, 0x2e, 0xeb, 0x90, 0x0c, 0x0c, 0xcb, 0xf6, 0x70, 0x3f, 0x20, 0xde, 0xb1, 0xd0, 0x72,
0x76, 0x48, 0x06, 0x1b, 0x92, 0x86, 0xde, 0x05, 0xb0, 0x1c, 0x9f, 0xae, 0xe8, 0xa1, 0x3d, 0x60,
0xba, 0xd6, 0xd7, 0x50, 0xd4, 0x77, 0x74, 0x24, 0xe8, 0x35, 0xcb, 0xf1, 0x85, 0xb2, 0x1f, 0x40,
0x83, 0xba, 0x58, 0x63, 0xc4, 0xbd, 0x39, 0xb7, 0xe2, 0xfa, 0xda, 0x82, 0xa2, 0x71, 0xe4, 0xea,
0xf5, 0x59, 0x37, 0x2e, 0xf8, 0xe8, 0x63, 0x98, 0x66, 0x2e, 0xce, 0x6f, 0x4f, 0xb3, 0x36, 0x57,
0x72, 0x46, 0x29, 0x56, 0xfb, 0x09, 0xe3, 0xe3, 0x8b, 0x2d, 0x1a, 0xa1, 0x27, 0x50, 0x37, 0x1d,
0x87, 0x04, 0x26, 0xdf, 0xe0, 0x33, 0x4c, 0xc6, 0x8d, 0x62, 0x19, 0xdd, 0x98, 0x99, 0x0b, 0x52,
0x9b, 0xa3, 0x1f, 0xc1, 0x14, 0xf3, 0x00, 0xed, 0x2a, 0x1b, 0xf5, 0xca, 0x78, 0xf3, 0xd3, 0x39,
0x73, 0xe7, 0x03, 0xa8, 0x2b, 0xaa, 0x9d, 0xc6, 0xdc, 0x3a, 0xf7, 0xa1, 0x95, 0xd6, 0xe8, 0x54,
0xe6, 0xba, 0x05, 0x0b, 0x7a, 0xe8, 0xc4, 0x8a, 0xc9, 0xf8, 0xe3, 0x5d, 0x98, 0x16, 0xeb, 0xc7,
0x6d, 0x67, 0xb9, 0x70, 0x46, 0x74, 0xc1, 0xa8, 0x7d, 0x0c, 0x67, 0x53, 0xa2, 0x44, 0x74, 0xf2,
0x16, 0x34, 0x5d, 0x62, 0x19, 0x3e, 0x27, 0x1b, 0xb6, 0x25, 0x9d, 0x81, 0x1b, 0xf1, 0x6e, 0x59,
0xb4, 0x79, 0x2f, 0x20, 0x6e, 0x56, 0x95, 0x93, 0x35, 0x6f, 0xc3, 0x62, 0xba, 0x39, 0xef, 0x5e,
0x7b, 0x00, 0x4b, 0x3a, 0x1e, 0x91, 0x67, 0xf8, 0x75, 0x45, 0x77, 0xa0, 0x9d, 0x15, 0x20, 0x84,
0x7f, 0x09, 0x4b, 0x31, 0xb5, 0x17, 0x98, 0x41, 0xe8, 0x9f, 0x4a, 0xb8, 0x08, 0xdd, 0x0e, 0x88,
0x8f, 0xe5, 0x21, 0x29, 0x8a, 0xda, 0x75, 0x55, 0xb4, 0x38, 0x54, 0x79, 0x0f, 0xa8, 0x09, 0x65,
0xdb, 0x15, 0xe2, 0xca, 0xb6, 0xab, 0x3d, 0x80, 0x5a, 0x74, 0x9c, 0xa1, 0xb5, 0x38, 0x66, 0x2a,
0xbf, 0xe2, 0xcc, 0x8b, 0xa2, 0xa9, 0xc7, 0x19, 0x3f, 0x2e, 0x7a, 0x5a, 0x03, 0x88, 0x3c, 0x90,
0x3c, 0x43, 0x51, 0x56, 0x9e, 0xae, 0x70, 0x69, 0x7f, 0x93, 0x70, 0x47, 0x8a, 0xca, 0x56, 0xa4,
0xb2, 0x95, 0x70, 0x4f, 0xe5, 0xd3, 0xb8, 0xa7, 0x5b, 0x30, 0xe5, 0x07, 0x66, 0xc0, 0x1d, 0x64,
0x53, 0x19, 0x5c, 0xb2, 0x4b, 0xac, 0x73, 0x36, 0x74, 0x01, 0xa0, 0xef, 0x61, 0x33, 0xc0, 0x96,
0x61, 0x72, 0xcf, 0x59, 0xd1, 0x6b, 0x82, 0xd2, 0x0d, 0xd0, 0x3d, 0x98, 0x91, 0x31, 0xcc, 0x14,
0x53, 0x63, 0x35, 0x47, 0x60, 0x62, 0xf6, 0x75, 0xd9, 0x20, 0xde, 0xed, 0xd3, 0xe3, 0x77, 0xbb,
0x68, 0xc7, 0x99, 0x15, 0x87, 0x35, 0x53, 0xe8, 0xb0, 0x78, 0x8b, 0x93, 0x38, 0xac, 0x6a, 0xa1,
0xc3, 0x12, 0x32, 0xc6, 0x3a, 0xac, 0xef, 0xd3, 0xf5, 0xfc, 0x6b, 0x09, 0xda, 0xd9, 0xbd, 0x23,
0x7c, 0xc6, 0xbb, 0x30, 0xed, 0x33, 0xca, 0x18, 0xff, 0x23, 0x9a, 0x08, 0x46, 0xf4, 0x00, 0x26,
0x6d, 0xe7, 0x90, 0xb0, 0x1c, 0x42, 0x3d, 0xf9, 0x8b, 0xfa, 0xb8, 0xb5, 0xe5, 0x1c, 0x12, 0x3e,
0x25, 0xac, 0x61, 0xe7, 0x2e, 0xd4, 0x22, 0xd2, 0xa9, 0x46, 0xf2, 0x10, 0x16, 0x52, 0xc6, 0xc7,
0xa3, 0xd7, 0xc8, 0x54, 0x4b, 0x27, 0x32, 0x55, 0xed, 0xff, 0x4b, 0xea, 0xc6, 0x79, 0x68, 0x0f,
0x03, 0xec, 0x65, 0x36, 0xce, 0x7b, 0x52, 0x28, 0xdf, 0x35, 0x17, 0x8a, 0x84, 0xf2, 0xc0, 0x52,
0x6c, 0x82, 0x1e, 0x34, 0x99, 0xf9, 0x18, 0x3e, 0x1e, 0xb2, 0x53, 0x5a, 0xc4, 0x47, 0x3f, 0xcc,
0x69, 0xcd, 0xfb, 0xe5, 0xb6, 0xd7, 0x13, 0xec, 0x7c, 0x9a, 0x1a, 0x43, 0x95, 0xd6, 0xf9, 0x04,
0x50, 0x96, 0xe9, 0x54, 0x13, 0xf7, 0x19, 0x75, 0x3b, 0x34, 0x9b, 0xca, 0x39, 0x7e, 0x0e, 0x99,
0x1a, 0x63, 0x96, 0x9f, 0xeb, 0xa9, 0x0b, 0x46, 0xed, 0xaf, 0x2b, 0x00, 0x71, 0xe5, 0x1b, 0xeb,
0x6f, 0xee, 0x46, 0xbb, 0x9f, 0x87, 0x38, 0x17, 0x73, 0xe4, 0xe5, 0xee, 0xfb, 0x87, 0xc9, 0x7d,
0xcf, 0x83, 0x9d, 0xb7, 0xf2, 0x5a, 0xbf, 0xb1, 0x3b, 0x7e, 0x1d, 0x16, 0xd3, 0xcb, 0x2d, 0xb6,
0xfb, 0x75, 0x98, 0xb2, 0x03, 0x3c, 0xe2, 0xd8, 0x80, 0x9a, 0x23, 0x29, 0xbc, 0x9c, 0x43, 0xbb,
0x04, 0xb5, 0xad, 0x91, 0x39, 0xc0, 0x3d, 0x17, 0xf7, 0x69, 0x5f, 0x36, 0x2d, 0x88, 0xfe, 0x79,
0x41, 0x5b, 0x83, 0xea, 0x63, 0x7c, 0xcc, 0xf7, 0xe0, 0x09, 0xf5, 0xd3, 0xfe, 0xbc, 0x0c, 0x4b,
0xcc, 0x6d, 0xaf, 0xcb, 0xcc, 0x5c, 0xc7, 0x3e, 0x09, 0xbd, 0x3e, 0xf6, 0xd9, 0x92, 0xba, 0xa1,
0xe1, 0x62, 0xcf, 0x26, 0x96, 0x48, 0x45, 0x6b, 0x7d, 0x37, 0xdc, 0x65, 0x04, 0x9a, 0xbd, 0xd3,
0xea, 0x6f, 0x42, 0x22, 0x6c, 0xab, 0xa2, 0x57, 0xfb, 0x6e, 0xf8, 0x63, 0x5a, 0x96, 0x6d, 0xfd,
0x23, 0xd3, 0xc3, 0x3e, 0xb3, 0x21, 0xde, 0xb6, 0xc7, 0x08, 0xe8, 0x5d, 0x38, 0x3b, 0xc2, 0x23,
0xe2, 0x1d, 0x1b, 0x43, 0x7b, 0x64, 0x07, 0x86, 0xed, 0x18, 0x07, 0xc7, 0x01, 0xf6, 0x85, 0xe1,
0x20, 0x5e, 0xf9, 0x84, 0xd6, 0x6d, 0x39, 0x9f, 0xd2, 0x1a, 0xa4, 0x41, 0x83, 0x90, 0x91, 0xe1,
0xf7, 0x89, 0x87, 0x0d, 0xd3, 0xfa, 0x8a, 0x9d, 0x5b, 0x15, 0xbd, 0x4e, 0xc8, 0xa8, 0x47, 0x69,
0x5d, 0xeb, 0x2b, 0x74, 0x11, 0xea, 0x7d, 0x37, 0xf4, 0x71, 0x60, 0xd0, 0x1f, 0x76, 0x3e, 0xd5,
0x74, 0xe0, 0xa4, 0x75, 0x37, 0xf4, 0x15, 0x86, 0x11, 0x9d, 0xf6, 0x19, 0x95, 0xe1, 0x29, 0x9d,
0x66, 0x13, 0x1a, 0x89, 0xe4, 0x96, 0xa6, 0x30, 0x2c, 0x8b, 0x15, 0x29, 0x0c, 0xfd, 0xa6, 0x34,
0x8f, 0x0c, 0xe5, 0x4c, 0xb2, 0x6f, 0x4a, 0x0b, 0x8e, 0x5d, 0x99, 0xbf, 0xb0, 0x6f, 0x3a, 0xe5,
0x43, 0xfc, 0x4c, 0x80, 0x13, 0x35, 0x9d, 0x17, 0x34, 0x0b, 0x60, 0xdd, 0x74, 0xcd, 0x03, 0x7b,
0x68, 0x07, 0xc7, 0xe8, 0x3a, 0xb4, 0x4c, 0xcb, 0x32, 0xfa, 0x92, 0x62, 0x63, 0x89, 0x14, 0xcd,
0x99, 0x96, 0xb5, 0xae, 0x90, 0xd1, 0x0f, 0x60, 0xde, 0xf2, 0x88, 0x9b, 0xe4, 0xe5, 0xd0, 0x51,
0x8b, 0x56, 0xa8, 0xcc, 0xda, 0x3f, 0x4e, 0xc2, 0x85, 0xe4, 0xc2, 0xa6, 0xe1, 0x82, 0xbb, 0x30,
0x9b, 0xea, 0x35, 0x99, 0xa7, 0xc7, 0x4a, 0xea, 0x09, 0xc6, 0x54, 0x42, 0x5d, 0xce, 0x24, 0xd4,
0xb9, 0x38, 0x44, 0xe5, 0xbb, 0xc0, 0x21, 0x26, 0xbf, 0x0d, 0x0e, 0x31, 0x75, 0x22, 0x1c, 0xe2,
0x2a, 0x83, 0x05, 0x65, 0x23, 0x96, 0x0d, 0x72, 0x33, 0x6a, 0x44, 0x3c, 0x8e, 0x84, 0x0f, 0x53,
0x78, 0xc5, 0xcc, 0x69, 0xf0, 0x8a, 0x6a, 0x21, 0x5e, 0x41, 0x2d, 0xc2, 0x75, 0x4d, 0x6f, 0x44,
0x3c, 0x09, 0x48, 0xb4, 0x6b, 0x4c, 0x85, 0x39, 0x49, 0x17, 0x60, 0x44, 0x21, 0x74, 0x01, 0x45,
0xd0, 0x05, 0x5a, 0x85, 0x59, 0x87, 0x18, 0x0e, 0x7e, 0x6e, 0xd0, 0x05, 0xf3, 0xdb, 0x75, 0xbe,
0x7a, 0x0e, 0xd9, 0xc6, 0xcf, 0x77, 0x29, 0x45, 0xfb, 0xdb, 0x12, 0x2c, 0x24, 0x0d, 0x47, 0x24,
0xab, 0xf7, 0xa1, 0xe6, 0x49, 0xdf, 0x20, 0x8c, 0x65, 0x35, 0x19, 0xfa, 0x65, 0x7d, 0x88, 0x1e,
0x37, 0x41, 0x3f, 0x2e, 0x84, 0x3d, 0xae, 0x16, 0x88, 0x79, 0x15, 0xf0, 0xa1, 0x75, 0x61, 0x3e,
0x62, 0x1e, 0x0b, 0x3a, 0x28, 0x20, 0x42, 0x39, 0x09, 0x22, 0x38, 0x30, 0xbd, 0x81, 0x9f, 0xd9,
0x7d, 0xfc, 0x9d, 0x80, 0x96, 0xab, 0x50, 0x77, 0xb1, 0x37, 0xb2, 0x7d, 0x3f, 0x32, 0xfa, 0x9a,
0xae, 0x92, 0xb4, 0xff, 0x9a, 0x82, 0xb9, 0xf4, 0xcc, 0xde, 0xc9, 0x60, 0x16, 0x9d, 0x78, 0x17,
0xa6, 0xc7, 0xa7, 0x9c, 0xd1, 0xd7, 0xe4, 0x31, 0x50, 0x4e, 0x25, 0x28, 0xd1, 0x49, 0x21, 0x8e,
0x06, 0x3a, 0xfe, 0x3e, 0x19, 0x8d, 0x4c, 0xc7, 0x92, 0x80, 0xb2, 0x28, 0xd2, 0xd9, 0x32, 0xbd,
0x01, 0xdd, 0x5a, 0x94, 0xcc, 0xbe, 0xa9, 0x97, 0xa4, 0x81, 0xbe, 0xed, 0x30, 0xc8, 0x83, 0x6d,
0x9c, 0x9a, 0x0e, 0x82, 0xb4, 0x61, 0x7b, 0xe8, 0x0a, 0x4c, 0x62, 0xe7, 0x99, 0x3c, 0x8d, 0x63,
0xc4, 0x59, 0x1e, 0x3f, 0x3a, 0xab, 0x46, 0x57, 0x61, 0x7a, 0x44, 0x42, 0x27, 0x90, 0x21, 0x7f,
0x33, 0x09, 0xbc, 0xea, 0xa2, 0x16, 0x5d, 0x87, 0x19, 0x8b, 0xad, 0x81, 0x8c, 0xeb, 0xe7, 0x62,
0xd8, 0x84, 0xd1, 0x75, 0x59, 0x8f, 0x3e, 0x8a, 0xe2, 0x88, 0x5a, 0x2a, 0x12, 0x48, 0x4d, 0x6a,
0x6e, 0x30, 0xf1, 0x38, 0x19, 0x4c, 0x00, 0x13, 0x71, 0xbd, 0x50, 0xc4, 0x78, 0xd0, 0x63, 0x19,
0xaa, 0x43, 0x32, 0xe0, 0x76, 0x50, 0xe7, 0xd7, 0x0f, 0x43, 0x32, 0x60, 0x66, 0xb0, 0x40, 0x83,
0x27, 0xcb, 0x76, 0xda, 0xb3, 0x6c, 0x7b, 0xf1, 0x02, 0x3d, 0x13, 0xd9, 0x87, 0x41, 0x9c, 0x3e,
0x6e, 0x37, 0x58, 0x55, 0x8d, 0x51, 0x76, 0x9c, 0x3e, 0x3b, 0xb2, 0x83, 0xe0, 0xb8, 0xdd, 0x64,
0x74, 0xfa, 0x49, 0x63, 0x5e, 0x9e, 0x68, 0xcd, 0xa5, 0x62, 0xde, 0xbc, 0xfd, 0xf9, 0x06, 0xa0,
0x2a, 0xff, 0x50, 0x82, 0xc5, 0x75, 0x16, 0xf2, 0x29, 0x9e, 0xe0, 0x34, 0xa8, 0xc0, 0xed, 0x08,
0x7e, 0x49, 0xa7, 0xf0, 0xe9, 0xc1, 0x0a, 0x3e, 0xf4, 0x09, 0x34, 0xa5, 0x4c, 0xd1, 0xb2, 0xf2,
0x2a, 0xe0, 0xa6, 0xe1, 0xab, 0x45, 0xed, 0x23, 0x58, 0xca, 0xe8, 0x2c, 0xc2, 0xb3, 0x4b, 0x30,
0x1b, 0x7b, 0x84, 0x48, 0xe5, 0x7a, 0x44, 0xdb, 0xb2, 0xb4, 0x7b, 0x70, 0xb6, 0x17, 0x98, 0x5e,
0x90, 0x19, 0xf0, 0x09, 0xda, 0x32, 0xec, 0x26, 0xd9, 0x56, 0xc0, 0x2b, 0x3d, 0x58, 0xe8, 0x05,
0xc4, 0x7d, 0x0d, 0xa1, 0x74, 0xa7, 0xd3, 0x61, 0x93, 0x30, 0x10, 0x31, 0x99, 0x2c, 0x6a, 0x4b,
0x1c, 0x69, 0xca, 0xf6, 0xf6, 0x21, 0x2c, 0x72, 0xa0, 0xe7, 0x75, 0x06, 0xb1, 0x2c, 0x61, 0xa6,
0xac, 0xdc, 0x0d, 0x38, 0x13, 0xbb, 0xf2, 0x38, 0x3d, 0xbc, 0x99, 0x4c, 0x0f, 0x97, 0xb2, 0x6b,
0x9c, 0xc8, 0x0e, 0xff, 0xa2, 0xac, 0x38, 0xcc, 0x82, 0xe4, 0x70, 0x2d, 0x99, 0x1c, 0x9e, 0x2f,
0x10, 0x99, 0xc8, 0x0d, 0xb3, 0x16, 0x59, 0xc9, 0xb1, 0x48, 0x3d, 0x93, 0x41, 0x4e, 0xa6, 0xf2,
0xec, 0x94, 0x6e, 0xbf, 0x95, 0x04, 0x72, 0x8b, 0x27, 0x90, 0x51, 0xd7, 0x11, 0xf8, 0x76, 0x3b,
0x95, 0x40, 0xb6, 0x8b, 0xd4, 0x8c, 0xf2, 0xc7, 0x3f, 0x9d, 0x84, 0x5a, 0x54, 0x97, 0x99, 0xd8,
0xec, 0x24, 0x95, 0x73, 0x26, 0x49, 0x3d, 0xbf, 0x2a, 0xaf, 0x73, 0x7e, 0x4d, 0xbe, 0xea, 0xfc,
0x3a, 0x07, 0x35, 0xf6, 0x61, 0x78, 0xf8, 0x50, 0x9c, 0x47, 0x55, 0x46, 0xd0, 0xf1, 0x61, 0x6c,
0x50, 0xd3, 0x27, 0x31, 0xa8, 0x54, 0xa6, 0x3a, 0x93, 0xce, 0x54, 0xef, 0x44, 0x27, 0x0c, 0x3f,
0x8b, 0x56, 0xb2, 0xe2, 0x72, 0xcf, 0x96, 0xcd, 0xe4, 0xd9, 0xc2, 0x8f, 0xa7, 0xcb, 0x39, 0x8d,
0xdf, 0xd8, 0x3c, 0xf5, 0x09, 0xcf, 0x53, 0x55, 0xab, 0x12, 0x8e, 0x70, 0x0d, 0x20, 0xda, 0xf3,
0x32, 0x59, 0x45, 0xd9, 0xa1, 0xe9, 0x0a, 0x97, 0xb6, 0x0f, 0x8b, 0x89, 0xf9, 0x8f, 0x11, 0xe2,
0x93, 0x79, 0xb1, 0x02, 0x78, 0xf8, 0x5f, 0xd4, 0xf8, 0xa9, 0x00, 0x64, 0xbd, 0x93, 0x01, 0x3d,
0x4e, 0x66, 0x8f, 0x37, 0x93, 0x98, 0xc7, 0xe9, 0x0c, 0x29, 0x03, 0x79, 0xb0, 0xe3, 0xde, 0xf4,
0x44, 0x35, 0xcf, 0x56, 0x6b, 0x82, 0xd2, 0x0d, 0x68, 0x90, 0x75, 0x68, 0x3b, 0xb6, 0x7f, 0xc4,
0xeb, 0xa7, 0x59, 0x3d, 0x48, 0x52, 0x97, 0x5d, 0xc2, 0xe3, 0x17, 0x76, 0x60, 0xf4, 0x89, 0x85,
0x99, 0x99, 0x4e, 0xe9, 0x55, 0x4a, 0x58, 0x27, 0x16, 0x8e, 0xb7, 0x4e, 0xf5, 0x54, 0x5b, 0xa7,
0x96, 0xda, 0x3a, 0x8b, 0x30, 0xed, 0x61, 0xd3, 0x27, 0x8e, 0x48, 0x19, 0x44, 0x89, 0xce, 0xff,
0x08, 0xfb, 0x3e, 0xed, 0x40, 0x84, 0x36, 0xa2, 0xa8, 0x04, 0x60, 0xb3, 0x45, 0x01, 0xd8, 0x18,
0x14, 0x37, 0x15, 0x80, 0x35, 0x8a, 0x02, 0xb0, 0x93, 0x80, 0xb8, 0x4a, 0x78, 0xd9, 0x1c, 0x1b,
0x5e, 0xaa, 0x81, 0xda, 0x5c, 0x22, 0x50, 0xfb, 0x3e, 0x77, 0xdb, 0x3f, 0x97, 0x60, 0x29, 0xb3,
0x41, 0xc4, 0x7e, 0xbb, 0x9d, 0x82, 0x81, 0xdb, 0x45, 0x33, 0x14, 0xa1, 0xc0, 0xf7, 0x13, 0x28,
0xf0, 0x8d, 0x42, 0xfe, 0xef, 0x1c, 0x04, 0xfe, 0x43, 0xb8, 0xb8, 0xef, 0x5a, 0xa9, 0xf0, 0x49,
0x24, 0x7f, 0x27, 0xdf, 0xef, 0x77, 0x64, 0xa4, 0x5b, 0x3e, 0x61, 0x5e, 0xc9, 0xd9, 0x35, 0x0d,
0x56, 0x8b, 0x7b, 0x17, 0x61, 0xc8, 0xef, 0xc3, 0xdc, 0xe6, 0x0b, 0xdc, 0xef, 0x1d, 0x3b, 0xfd,
0x53, 0x68, 0xd4, 0x82, 0x4a, 0x7f, 0x64, 0x09, 0x78, 0x85, 0x7e, 0xaa, 0x91, 0x55, 0x25, 0x19,
0x59, 0x19, 0xd0, 0x8a, 0x7b, 0x10, 0x4b, 0xb8, 0x48, 0x97, 0xd0, 0xa2, 0xcc, 0x54, 0xf8, 0xac,
0x2e, 0x4a, 0x82, 0x8e, 0x3d, 0x8f, 0x0d, 0x95, 0xd3, 0xb1, 0xe7, 0x25, 0x77, 0x7b, 0x25, 0xb9,
0xdb, 0xb5, 0xbf, 0x2a, 0x41, 0x9d, 0xf6, 0xf0, 0xad, 0xf4, 0x17, 0xf9, 0x45, 0x25, 0xce, 0x2f,
0xa2, 0x34, 0x65, 0x52, 0x4d, 0x53, 0x62, 0xcd, 0xa7, 0x18, 0x39, 0xab, 0xf9, 0x74, 0x44, 0xc7,
0x9e, 0xa7, 0xad, 0xc2, 0x2c, 0xd7, 0x4d, 0x8c, 0xbc, 0x05, 0x95, 0xd0, 0x1b, 0x4a, 0xeb, 0x09,
0xbd, 0xa1, 0xf6, 0x67, 0x25, 0x68, 0x74, 0x83, 0xc0, 0xec, 0x1f, 0x9d, 0x62, 0x00, 0x91, 0x72,
0x65, 0x55, 0xb9, 0xec, 0x20, 0x62, 0x75, 0x27, 0x0b, 0xd4, 0x9d, 0x4a, 0xa8, 0xab, 0x41, 0x53,
0xea, 0x52, 0xa8, 0xf0, 0x36, 0xa0, 0x5d, 0xe2, 0x05, 0x0f, 0x89, 0xf7, 0xdc, 0xf4, 0xac, 0xd3,
0xe5, 0x30, 0x08, 0x26, 0xc5, 0xc3, 0xaa, 0xca, 0xb5, 0x29, 0x9d, 0x7d, 0x6b, 0x6f, 0xc3, 0x99,
0x84, 0xbc, 0xc2, 0x8e, 0xef, 0x42, 0x9d, 0x39, 0x70, 0x11, 0xe7, 0x5e, 0x53, 0x71, 0xde, 0x71,
0x5e, 0x5e, 0xeb, 0xc2, 0x3c, 0x3d, 0xbb, 0x19, 0x3d, 0xda, 0x78, 0x3f, 0x4c, 0x45, 0x83, 0x0b,
0xc9, 0xf6, 0xa9, 0x48, 0xf0, 0xef, 0x4a, 0x30, 0xc5, 0xe8, 0x99, 0xf3, 0xf4, 0x1c, 0xd4, 0x3c,
0xec, 0x12, 0x23, 0x30, 0x07, 0xd1, 0x5b, 0x35, 0x4a, 0xd8, 0x33, 0x07, 0x3e, 0x7b, 0x6a, 0x47,
0x2b, 0x2d, 0x7b, 0x80, 0xfd, 0x40, 0x3e, 0x58, 0xab, 0x53, 0xda, 0x06, 0x27, 0xd1, 0x29, 0xf1,
0xed, 0x3f, 0xe0, 0x61, 0xde, 0xa4, 0xce, 0xbe, 0xd1, 0x15, 0xfe, 0x0c, 0x64, 0x0c, 0x28, 0xc7,
0xde, 0x86, 0x74, 0xa0, 0x9a, 0xc2, 0xe1, 0xa2, 0xb2, 0xf6, 0x11, 0x20, 0x75, 0xcc, 0x62, 0x52,
0xaf, 0xc2, 0x34, 0x9b, 0x12, 0x19, 0xa7, 0x34, 0x93, 0x83, 0xd6, 0x45, 0xad, 0xf6, 0x05, 0x20,
0x3e, 0x8b, 0x89, 0xd8, 0xe4, 0xc4, 0x33, 0x3e, 0x26, 0x44, 0xf9, 0xfb, 0x12, 0x9c, 0x49, 0x88,
0x8e, 0x1e, 0x04, 0x24, 0x64, 0xa7, 0x15, 0x13, 0x72, 0xef, 0x25, 0x3c, 0xf9, 0xd5, 0x94, 0x02,
0xbf, 0x21, 0x2f, 0xfe, 0xcb, 0x12, 0x40, 0x37, 0x0c, 0x8e, 0x04, 0x20, 0xa5, 0xce, 0x7a, 0x29,
0x39, 0xeb, 0xb4, 0xce, 0x35, 0x7d, 0xff, 0x39, 0xf1, 0x64, 0x32, 0x10, 0x95, 0x19, 0x98, 0x14,
0x06, 0x47, 0x12, 0x04, 0xa7, 0xdf, 0xe8, 0x0a, 0x34, 0xf9, 0x93, 0x47, 0xc3, 0xb4, 0x2c, 0x0f,
0xfb, 0xbe, 0x40, 0xc3, 0x1b, 0x9c, 0xda, 0xe5, 0x44, 0xca, 0x66, 0x5b, 0xd8, 0x09, 0xec, 0xe0,
0xd8, 0x08, 0xc8, 0xd7, 0xd8, 0x11, 0x61, 0x7e, 0x43, 0x52, 0xf7, 0x28, 0x91, 0xb2, 0x79, 0x78,
0x60, 0xfb, 0x81, 0x27, 0xd9, 0x24, 0x3a, 0x2b, 0xa8, 0x8c, 0x4d, 0xfb, 0x79, 0x09, 0x5a, 0xbb,
0xe1, 0x70, 0xc8, 0x67, 0xf6, 0xd4, 0x6b, 0xfb, 0xb6, 0x18, 0x47, 0x39, 0x65, 0x9d, 0xf1, 0x14,
0x89, 0xc1, 0x7d, 0x7b, 0xf8, 0xe1, 0x36, 0xcc, 0x2b, 0x8a, 0x0a, 0x4b, 0x49, 0xc4, 0x6c, 0xa5,
0x64, 0xcc, 0xa6, 0xdd, 0x07, 0xc4, 0x33, 0xee, 0xd7, 0x1b, 0x9c, 0x76, 0x16, 0xce, 0x24, 0xda,
0x8b, 0x63, 0xf2, 0x06, 0x34, 0xc4, 0x7d, 0xbf, 0x30, 0x82, 0x65, 0xa8, 0x52, 0x77, 0xd7, 0xb7,
0x2d, 0x79, 0xfb, 0x31, 0xe3, 0x12, 0x6b, 0xdd, 0xb6, 0x3c, 0x6d, 0x1b, 0x1a, 0x3a, 0x17, 0x2f,
0x78, 0x3f, 0x86, 0xa6, 0x78, 0x1d, 0x60, 0x24, 0xde, 0xcf, 0xc4, 0x50, 0x7d, 0x42, 0xb6, 0xde,
0x70, 0xd4, 0xa2, 0xf6, 0x53, 0xe8, 0xf0, 0x63, 0x3c, 0x21, 0x55, 0x0e, 0xed, 0x63, 0x90, 0x4f,
0x72, 0x8b, 0x84, 0x27, 0x9b, 0x35, 0x3c, 0xb5, 0xa8, 0x5d, 0x80, 0x73, 0xb9, 0xc2, 0xc5, 0xb8,
0x5d, 0x68, 0xc5, 0x15, 0x96, 0x2d, 0x2f, 0x7d, 0xd8, 0x65, 0x4e, 0x49, 0xb9, 0xcc, 0x59, 0x8c,
0x62, 0xb2, 0xb2, 0x3c, 0x4f, 0x58, 0xe4, 0x15, 0x87, 0xd0, 0x95, 0xa2, 0x10, 0x7a, 0x32, 0x11,
0x42, 0x6b, 0x9f, 0x45, 0xb3, 0x27, 0xf2, 0x97, 0x0f, 0x58, 0x7a, 0xc5, 0xfb, 0x96, 0x6e, 0x6b,
0x39, 0x67, 0x70, 0x9c, 0x43, 0x57, 0x98, 0xb5, 0xeb, 0xd0, 0x48, 0x3a, 0x30, 0xc5, 0x2d, 0x95,
0x32, 0x6e, 0xa9, 0x99, 0xf2, 0x48, 0xb7, 0x52, 0x71, 0x66, 0x66, 0x46, 0x53, 0x51, 0xe6, 0xfb,
0x09, 0xdf, 0x74, 0x29, 0xbe, 0x87, 0xf9, 0x0d, 0xb9, 0xa5, 0x05, 0xe1, 0xa3, 0x1f, 0xfa, 0xb4,
0xbd, 0x18, 0xa2, 0x76, 0x19, 0xea, 0xfb, 0x45, 0x8f, 0x65, 0x27, 0xe5, 0xc5, 0xe6, 0xdb, 0x30,
0xdf, 0x0b, 0x88, 0x67, 0x0e, 0xf0, 0x16, 0x73, 0x20, 0x87, 0x36, 0xbf, 0xb8, 0x0b, 0xc3, 0xe8,
0x68, 0x63, 0xdf, 0xda, 0x7f, 0x94, 0x60, 0xee, 0xa1, 0x3d, 0xc4, 0xfe, 0xb1, 0x1f, 0xe0, 0xd1,
0x3e, 0x4b, 0x72, 0xce, 0x43, 0x8d, 0x8e, 0xcb, 0x0f, 0xcc, 0x91, 0x2b, 0x2f, 0x3e, 0x23, 0x02,
0x5d, 0x2e, 0x9f, 0x8b, 0x96, 0x80, 0x88, 0x9a, 0x60, 0x66, 0x7a, 0xa5, 0x49, 0x9f, 0x20, 0xa1,
0xf7, 0x00, 0x42, 0x1f, 0x5b, 0xe2, 0xb2, 0xb3, 0x92, 0x3a, 0x95, 0xf7, 0xd5, 0x2b, 0x29, 0xca,
0xc7, 0x6f, 0x3e, 0xdf, 0x87, 0xba, 0xed, 0x10, 0x0b, 0xb3, 0x2b, 0x29, 0x4b, 0x80, 0x25, 0xf9,
0xad, 0x80, 0x33, 0xee, 0xfb, 0xd8, 0xd2, 0x7e, 0x4f, 0x9c, 0x42, 0x72, 0xf2, 0xc4, 0x9a, 0x6f,
0xc2, 0x3c, 0xf7, 0x2d, 0x87, 0xd1, 0xa0, 0xa5, 0xcd, 0xc5, 0x69, 0x46, 0x6a, 0x42, 0xf4, 0x96,
0x2d, 0x02, 0x06, 0xd9, 0x42, 0xbb, 0x07, 0x67, 0x13, 0xb9, 0xc5, 0x29, 0xa2, 0x7d, 0xed, 0x51,
0x0a, 0x1a, 0x88, 0x0d, 0x52, 0x64, 0xe0, 0xd2, 0x1e, 0x0b, 0x32, 0x70, 0x9f, 0x67, 0xe0, 0xbe,
0xa6, 0xc3, 0x72, 0x02, 0xb1, 0x48, 0x28, 0xf2, 0x7e, 0x2a, 0xfa, 0xb9, 0x50, 0x20, 0x2c, 0x15,
0x06, 0xfd, 0x6f, 0x09, 0x16, 0xf2, 0x18, 0x5e, 0x13, 0x1b, 0xfb, 0x49, 0xc1, 0x13, 0x94, 0xdb,
0x63, 0xb5, 0xf9, 0xad, 0xa0, 0x88, 0x8f, 0xa1, 0x93, 0x37, 0x7b, 0xd9, 0xa5, 0xa8, 0x9c, 0x60,
0x29, 0xfe, 0xaf, 0xac, 0xa0, 0xbd, 0xdd, 0x20, 0xf0, 0xec, 0x83, 0x90, 0x1a, 0xef, 0x77, 0x85,
0xcd, 0x7c, 0x12, 0xe1, 0x0e, 0x7c, 0xfe, 0xae, 0x65, 0x5b, 0xc5, 0xbd, 0xe6, 0x62, 0x0f, 0x3b,
0x49, 0xec, 0x81, 0xe3, 0xb8, 0x37, 0xc7, 0x8a, 0x79, 0x63, 0xa1, 0xba, 0x97, 0x25, 0x68, 0x26,
0xd7, 0x01, 0x7d, 0x04, 0x60, 0x46, 0x9a, 0x0b, 0x93, 0x3f, 0x3f, 0x6e, 0x74, 0xba, 0xc2, 0x8f,
0x2e, 0x43, 0xa5, 0xef, 0x86, 0x62, 0x45, 0xe2, 0x0b, 0xbd, 0x75, 0x37, 0xe4, 0x0e, 0x80, 0xd6,
0xd2, 0x7c, 0x82, 0x3f, 0xcc, 0xc8, 0x78, 0xae, 0xa7, 0x8c, 0xcc, 0x59, 0x05, 0x0f, 0x7a, 0x00,
0xcd, 0xe7, 0x9e, 0x1d, 0x98, 0x07, 0x43, 0x6c, 0x0c, 0xcd, 0x63, 0xec, 0x09, 0xcf, 0x55, 0xec,
0x65, 0x1a, 0x92, 0xff, 0x09, 0x65, 0xd7, 0x42, 0xa8, 0xca, 0xfe, 0x5f, 0xe1, 0x91, 0x1f, 0xc3,
0x52, 0x48, 0xd9, 0x0c, 0xf6, 0x38, 0xc4, 0x31, 0x1d, 0x62, 0xf8, 0x98, 0x9e, 0x92, 0xf2, 0x2d,
0x68, 0xbe, 0xb7, 0x5c, 0x60, 0x8d, 0xd6, 0x89, 0x87, 0xb7, 0x4d, 0x87, 0xf4, 0x78, 0x0b, 0x6d,
0x04, 0x75, 0x65, 0x38, 0xaf, 0xe8, 0xf9, 0x13, 0x98, 0x97, 0x57, 0xa5, 0x3e, 0x0e, 0x84, 0x5f,
0x1f, 0xd7, 0xe7, 0x9c, 0x60, 0xef, 0xe1, 0x80, 0x79, 0xf7, 0x1b, 0xe7, 0xa1, 0x2a, 0xff, 0xa8,
0x83, 0x66, 0xa0, 0xb2, 0xb7, 0xbe, 0xdb, 0x9a, 0xa0, 0x1f, 0xfb, 0x1b, 0xbb, 0xad, 0xd2, 0x8d,
0x11, 0xb4, 0xd2, 0x7f, 0x52, 0x41, 0x4b, 0x70, 0x66, 0x57, 0xdf, 0xd9, 0xed, 0x3e, 0xea, 0xee,
0x6d, 0xed, 0x6c, 0x1b, 0xbb, 0xfa, 0xd6, 0xe7, 0xdd, 0xbd, 0xcd, 0xd6, 0x04, 0xba, 0x04, 0x17,
0xd4, 0x8a, 0xdf, 0xdd, 0xe9, 0xed, 0x19, 0x7b, 0x3b, 0xc6, 0xfa, 0xce, 0xf6, 0x5e, 0x77, 0x6b,
0x7b, 0x53, 0x6f, 0x95, 0xd0, 0x05, 0x58, 0x56, 0x59, 0x3e, 0xdd, 0xda, 0xd8, 0xd2, 0x37, 0xd7,
0xe9, 0x77, 0xf7, 0x49, 0xab, 0x7c, 0xe3, 0x1e, 0xcc, 0xa5, 0xde, 0x77, 0xa1, 0x79, 0x68, 0xf4,
0xba, 0xdb, 0x1b, 0x9f, 0xee, 0x7c, 0x61, 0xe8, 0x9b, 0xdd, 0x8d, 0x2f, 0x5b, 0x13, 0x68, 0x01,
0x5a, 0x92, 0xb4, 0xbd, 0xb3, 0xc7, 0xa9, 0xa5, 0x1b, 0x5f, 0xa7, 0x4c, 0x12, 0xa3, 0xb3, 0x30,
0x1f, 0xf5, 0x6d, 0xac, 0xeb, 0x9b, 0xdd, 0xbd, 0xcd, 0x8d, 0xd6, 0x44, 0x92, 0xac, 0xef, 0x6f,
0x6f, 0x6f, 0x6d, 0x3f, 0x6a, 0x95, 0xa8, 0xd4, 0x98, 0xbc, 0xf9, 0xc5, 0x16, 0x65, 0x2e, 0x27,
0x99, 0xf7, 0xb7, 0x1f, 0x6f, 0xef, 0xfc, 0x64, 0xbb, 0x55, 0x59, 0xfb, 0xf7, 0x06, 0x34, 0x65,
0x8c, 0x82, 0x3d, 0x76, 0x7f, 0x7f, 0x1f, 0x66, 0xe4, 0x5f, 0xb6, 0x62, 0x67, 0x95, 0xfc, 0x7f,
0x59, 0xa7, 0x9d, 0xad, 0x10, 0x61, 0xe0, 0x04, 0xda, 0x65, 0x61, 0x99, 0xf2, 0x96, 0xee, 0x82,
0x1a, 0x0d, 0x65, 0x1e, 0xeb, 0x75, 0x56, 0x8a, 0xaa, 0x23, 0x89, 0x3d, 0x1a, 0x70, 0xa9, 0x8f,
0xb3, 0xd1, 0x8a, 0x1a, 0x26, 0x64, 0x1f, 0x7d, 0x77, 0x2e, 0x16, 0xd6, 0x47, 0x42, 0xbf, 0x84,
0x56, 0xfa, 0x59, 0x36, 0x8a, 0xf1, 0xb2, 0x82, 0x27, 0xdf, 0x9d, 0x4b, 0x63, 0x38, 0x54, 0xd1,
0x99, 0x07, 0xcc, 0xab, 0x63, 0x1e, 0x94, 0xa6, 0x45, 0x17, 0x3d, 0x39, 0xe5, 0x53, 0x91, 0x7c,
0x03, 0x87, 0xd4, 0x67, 0xc3, 0x39, 0x6f, 0x21, 0x95, 0xa9, 0xc8, 0x7f, 0x3c, 0xa7, 0x4d, 0xa0,
0xcf, 0x61, 0x2e, 0x75, 0x75, 0x8b, 0xe2, 0x56, 0xf9, 0x17, 0xd1, 0x9d, 0xd5, 0x62, 0x86, 0xe4,
0xba, 0xa9, 0x17, 0xb3, 0x89, 0x75, 0xcb, 0xb9, 0xed, 0x4d, 0xac, 0x5b, 0xee, 0x8d, 0x2e, 0x33,
0xaf, 0xc4, 0xf5, 0xab, 0x62, 0x5e, 0x79, 0x77, 0xbd, 0x9d, 0x95, 0xa2, 0x6a, 0x75, 0xf8, 0xa9,
0xab, 0x57, 0x65, 0xf8, 0xf9, 0x37, 0xba, 0x9d, 0xd5, 0x62, 0x86, 0xf4, 0x5a, 0xc5, 0xf7, 0x40,
0xa9, 0xb5, 0xca, 0x5c, 0x3b, 0xa6, 0xd6, 0x2a, 0x7b, 0x81, 0x24, 0xd6, 0x2a, 0x75, 0x6d, 0x73,
0xb1, 0x18, 0xa5, 0xce, 0xac, 0x55, 0x3e, 0x8c, 0xad, 0x4d, 0xa0, 0x6f, 0xa0, 0x5d, 0x84, 0x00,
0xa3, 0x38, 0x46, 0x78, 0x05, 0x44, 0xdd, 0xb9, 0x7e, 0x02, 0xce, 0xa8, 0xcb, 0x2e, 0x54, 0x25,
0xdc, 0x8b, 0x62, 0x87, 0x92, 0xc2, 0x98, 0x3b, 0xcb, 0x39, 0x35, 0x91, 0x88, 0xf7, 0x61, 0x92,
0x52, 0xd1, 0x42, 0x82, 0x49, 0x36, 0x3d, 0x9b, 0xa2, 0x46, 0xcd, 0x3e, 0x84, 0x69, 0x8e, 0x5d,
0xa2, 0x38, 0x53, 0x4b, 0x00, 0xab, 0x9d, 0xa5, 0x0c, 0x3d, 0x6a, 0xfc, 0x19, 0xff, 0xe7, 0xa8,
0x00, 0x21, 0xd1, 0xb9, 0xc4, 0x9f, 0x8c, 0x92, 0x50, 0x67, 0xe7, 0x7c, 0x7e, 0xa5, 0x6a, 0x22,
0xa9, 0xf0, 0x63, 0xa5, 0x28, 0x3e, 0xcc, 0x98, 0x48, 0x7e, 0xbc, 0xa9, 0x4d, 0x20, 0x83, 0xe3,
0x79, 0x29, 0xc1, 0x5a, 0xbe, 0x6d, 0x25, 0x84, 0x5f, 0x1e, 0xcb, 0x13, 0x75, 0x70, 0x00, 0x67,
0x72, 0x90, 0x00, 0x74, 0x39, 0xb5, 0xf8, 0x79, 0x20, 0x44, 0xe7, 0xad, 0xf1, 0x4c, 0xea, 0x12,
0x09, 0xf3, 0x5e, 0xcc, 0xa4, 0xc7, 0xe9, 0x25, 0x4a, 0x1b, 0xf3, 0xda, 0x1f, 0x57, 0x60, 0x96,
0xe3, 0x35, 0xe2, 0x4c, 0x7b, 0x04, 0x10, 0x43, 0x9c, 0xa8, 0x93, 0x18, 0x66, 0x02, 0xeb, 0xed,
0x9c, 0xcb, 0xad, 0x53, 0x17, 0x5f, 0x01, 0x10, 0x95, 0xc5, 0xcf, 0x62, 0xa0, 0xca, 0xe2, 0xe7,
0x60, 0x8e, 0xda, 0x04, 0xda, 0x80, 0x5a, 0x04, 0x59, 0x21, 0x05, 0xe9, 0x4a, 0xe1, 0x6d, 0x9d,
0x4e, 0x5e, 0x95, 0xaa, 0x91, 0x02, 0x43, 0x29, 0x1a, 0x65, 0xc1, 0x2d, 0x45, 0xa3, 0x3c, 0xe4,
0x2a, 0x1e, 0x1d, 0x4f, 0x75, 0xd3, 0xa3, 0x4b, 0xa0, 0x07, 0xe9, 0xd1, 0x25, 0xb3, 0x63, 0x6d,
0xe2, 0xd3, 0xf3, 0xbf, 0xf8, 0xd5, 0x4a, 0xe9, 0x3f, 0x7f, 0xb5, 0x32, 0xf1, 0x47, 0x2f, 0x57,
0x4a, 0xbf, 0x78, 0xb9, 0x52, 0xfa, 0xb7, 0x97, 0x2b, 0xa5, 0xff, 0x7e, 0xb9, 0x52, 0xfa, 0xd9,
0xff, 0xac, 0x4c, 0x1c, 0x4c, 0xb3, 0xbf, 0x52, 0xbf, 0xf7, 0xeb, 0x00, 0x00, 0x00, 0xff, 0xff,
0xa6, 0x04, 0x77, 0x58, 0xfe, 0x3e, 0x00, 0x00,
0x60, 0x91, 0x4b, 0x10, 0x04, 0x41, 0x90, 0x3f, 0x20, 0x48, 0xf6, 0xb2, 0x40, 0x4e, 0x41, 0x72,
0xcb, 0x2a, 0x87, 0x1c, 0x02, 0xe4, 0x6f, 0x58, 0xd4, 0x57, 0x77, 0xf5, 0xd7, 0x88, 0x94, 0xbd,
0x6b, 0x9d, 0xa6, 0xeb, 0xd5, 0xab, 0x57, 0xaf, 0xaa, 0x5e, 0xbd, 0x7a, 0xef, 0x57, 0x35, 0x50,
0x33, 0x5d, 0xfb, 0x96, 0xeb, 0x91, 0x80, 0xa0, 0x19, 0x2f, 0x74, 0x02, 0x7b, 0x84, 0x3b, 0x37,
0x07, 0x76, 0x70, 0x14, 0x1e, 0xdc, 0xea, 0x93, 0xd1, 0x3b, 0x03, 0x32, 0x20, 0xef, 0xb0, 0xfa,
0x83, 0xf0, 0x90, 0x95, 0x58, 0x81, 0x7d, 0xf1, 0x76, 0xda, 0x0d, 0x68, 0x7e, 0x8e, 0x3d, 0xdf,
0x26, 0x8e, 0x8e, 0xbf, 0x09, 0xb1, 0x1f, 0xa0, 0x36, 0xcc, 0x3c, 0xe3, 0x94, 0x76, 0x69, 0xb5,
0x74, 0xad, 0xa6, 0xcb, 0xa2, 0xf6, 0xf3, 0x12, 0xcc, 0x45, 0xcc, 0xbe, 0x4b, 0x1c, 0x1f, 0x17,
0x73, 0xa3, 0x4b, 0x30, 0x2b, 0x74, 0x32, 0x1c, 0x73, 0x84, 0xdb, 0x65, 0x56, 0x5d, 0x17, 0xb4,
0x6d, 0x73, 0x84, 0xd1, 0xdb, 0x30, 0x27, 0x59, 0xa4, 0x90, 0x0a, 0xe3, 0x6a, 0x0a, 0xb2, 0xe8,
0x0d, 0xdd, 0x82, 0x33, 0x92, 0xd1, 0x74, 0xed, 0x88, 0x79, 0x92, 0x31, 0xcf, 0x8b, 0xaa, 0xae,
0x6b, 0x0b, 0x7e, 0xed, 0xa7, 0x50, 0xdb, 0xd8, 0xee, 0xad, 0x13, 0xe7, 0xd0, 0x1e, 0x50, 0x15,
0x7d, 0xec, 0xd1, 0x36, 0xed, 0xd2, 0x6a, 0x85, 0xaa, 0x28, 0x8a, 0xa8, 0x03, 0x55, 0x1f, 0x9b,
0x5e, 0xff, 0x08, 0xfb, 0xed, 0x32, 0xab, 0x8a, 0xca, 0xb4, 0x15, 0x71, 0x03, 0x9b, 0x38, 0x7e,
0xbb, 0xc2, 0x5b, 0x89, 0xa2, 0xf6, 0x97, 0x25, 0xa8, 0xef, 0x12, 0x2f, 0x78, 0x6a, 0xba, 0xae,
0xed, 0x0c, 0xd0, 0x4d, 0xa8, 0xb2, 0xb9, 0xec, 0x93, 0x21, 0x9b, 0x83, 0xe6, 0xda, 0xfc, 0x2d,
0xa1, 0xd2, 0xad, 0x5d, 0x51, 0xa1, 0x47, 0x2c, 0xe8, 0x0a, 0x34, 0xfb, 0xc4, 0x09, 0x4c, 0xdb,
0xc1, 0x9e, 0xe1, 0x12, 0x2f, 0x60, 0x33, 0x33, 0xa5, 0x37, 0x22, 0x2a, 0x15, 0x8e, 0xce, 0x41,
0xed, 0x88, 0xf8, 0x01, 0xe7, 0xa8, 0x30, 0x8e, 0x2a, 0x25, 0xb0, 0xca, 0x25, 0x98, 0x61, 0x95,
0xb6, 0x2b, 0xe6, 0x60, 0x9a, 0x16, 0xb7, 0x5c, 0xed, 0x97, 0x25, 0x98, 0x7a, 0x4a, 0x42, 0x27,
0x48, 0x75, 0x63, 0x06, 0x47, 0x62, 0x7d, 0x94, 0x6e, 0xcc, 0xe0, 0x28, 0xee, 0x86, 0x72, 0xf0,
0x25, 0xe2, 0xdd, 0xd0, 0xca, 0x0e, 0x54, 0x3d, 0x6c, 0x5a, 0xc4, 0x19, 0x1e, 0x33, 0x15, 0xaa,
0x7a, 0x54, 0xa6, 0x6b, 0xe7, 0xe3, 0xa1, 0xed, 0x84, 0x2f, 0x0c, 0x0f, 0x0f, 0xcd, 0x03, 0x3c,
0x64, 0xaa, 0x54, 0xf5, 0xa6, 0x20, 0xeb, 0x9c, 0x8a, 0x3e, 0x84, 0xba, 0xeb, 0x11, 0xd7, 0x1c,
0x98, 0x74, 0xfa, 0xda, 0x53, 0x6c, 0x86, 0x96, 0xa3, 0x19, 0x62, 0xda, 0xee, 0xc6, 0x0c, 0xba,
0xca, 0xad, 0x7d, 0x05, 0x73, 0xd4, 0x52, 0x7c, 0xd7, 0xec, 0xe3, 0x1d, 0x36, 0xff, 0xd4, 0xae,
0x98, 0xc6, 0x0e, 0x0e, 0x9e, 0x13, 0xef, 0x6b, 0x36, 0xac, 0xaa, 0x5e, 0xa7, 0xb4, 0x6d, 0x4e,
0x42, 0xcb, 0x50, 0xe5, 0x83, 0xb2, 0x2d, 0x36, 0xa6, 0xaa, 0xce, 0xa6, 0x6b, 0xd7, 0xb6, 0xa2,
0x2a, 0xdb, 0xed, 0x8b, 0x21, 0xcd, 0xf0, 0xa9, 0xeb, 0x6b, 0x1a, 0xc0, 0x96, 0x13, 0xdc, 0xf9,
0xd1, 0xe7, 0xe6, 0x30, 0xc4, 0x68, 0x01, 0xa6, 0x9e, 0xd1, 0x0f, 0x26, 0xbf, 0xa2, 0xf3, 0x82,
0xf6, 0x27, 0x15, 0x38, 0xf7, 0x84, 0x8e, 0xae, 0x67, 0x3a, 0xd6, 0x01, 0x79, 0xd1, 0xc3, 0xfd,
0xd0, 0xb3, 0x83, 0xe3, 0x75, 0xe2, 0x04, 0xf8, 0x45, 0x80, 0x36, 0x61, 0xde, 0x91, 0xfa, 0x1a,
0xd2, 0x7e, 0xa8, 0x84, 0xfa, 0x5a, 0x3b, 0x1a, 0x72, 0x6a, 0x44, 0x7a, 0xcb, 0x49, 0x12, 0x7c,
0xf4, 0x20, 0x9e, 0x5c, 0x29, 0xa4, 0xcc, 0x84, 0x2c, 0x46, 0x42, 0x7a, 0x9b, 0x4c, 0x0f, 0x21,
0x42, 0x4e, 0xba, 0x14, 0xf0, 0x1e, 0xd0, 0x8d, 0x66, 0x98, 0xbe, 0x11, 0xfa, 0xd8, 0x63, 0x23,
0xad, 0xaf, 0x9d, 0x89, 0x1a, 0xc7, 0xe3, 0xd4, 0x6b, 0x5e, 0xe8, 0x74, 0xfd, 0x7d, 0x1f, 0x7b,
0x6c, 0x3b, 0x8a, 0xe5, 0x35, 0x3c, 0x42, 0x82, 0x43, 0x5f, 0x2e, 0xa9, 0x24, 0xeb, 0x8c, 0x8a,
0xde, 0x81, 0x33, 0x7e, 0xe8, 0xba, 0x43, 0x3c, 0xc2, 0x4e, 0x60, 0x0e, 0x8d, 0x81, 0x47, 0x42,
0xd7, 0x6f, 0x4f, 0xad, 0x56, 0xae, 0x55, 0x74, 0xa4, 0x56, 0x3d, 0x62, 0x35, 0x68, 0x05, 0xc0,
0xf5, 0xec, 0x67, 0xf6, 0x10, 0x0f, 0xb0, 0xd5, 0x9e, 0x66, 0x42, 0x15, 0x0a, 0xba, 0x0d, 0x0b,
0x3e, 0xee, 0xf7, 0xc9, 0xc8, 0x35, 0x5c, 0x8f, 0x1c, 0xda, 0x43, 0xcc, 0x0d, 0x72, 0x86, 0x19,
0x24, 0x12, 0x75, 0xbb, 0xbc, 0x8a, 0x9a, 0xa6, 0xf6, 0xb3, 0x32, 0x9c, 0x65, 0x13, 0xb0, 0x4b,
0x2c, 0xb1, 0x16, 0x62, 0xbb, 0x5f, 0x86, 0x46, 0x9f, 0x29, 0x64, 0xb8, 0xa6, 0x87, 0x9d, 0x40,
0xd8, 0xfd, 0x2c, 0x27, 0xee, 0x32, 0x1a, 0xda, 0x81, 0x96, 0x2f, 0x96, 0xce, 0xe8, 0xf3, 0xb5,
0x13, 0x33, 0xfc, 0x56, 0x34, 0x49, 0x63, 0xd6, 0x59, 0x9f, 0xf3, 0x33, 0x0b, 0x3f, 0xe3, 0x1f,
0xfb, 0xfd, 0x60, 0xc8, 0xdd, 0x45, 0x7d, 0xed, 0x07, 0x49, 0x39, 0x69, 0x35, 0x6f, 0xf5, 0x38,
0xf7, 0xa6, 0x13, 0x78, 0xc7, 0xba, 0x6c, 0xdb, 0xb9, 0x07, 0xb3, 0x6a, 0x05, 0x6a, 0x41, 0xe5,
0x6b, 0x7c, 0x2c, 0x86, 0x40, 0x3f, 0x63, 0xbb, 0xe4, 0x9b, 0x95, 0x17, 0xee, 0x95, 0x7f, 0xa7,
0xa4, 0x79, 0x80, 0xe2, 0x5e, 0x9e, 0xe2, 0xc0, 0xb4, 0xcc, 0xc0, 0x44, 0x08, 0x26, 0x99, 0xfb,
0xe5, 0x22, 0xd8, 0x37, 0x95, 0x1a, 0x8a, 0xad, 0x51, 0xd3, 0xe9, 0x27, 0x3a, 0x0f, 0xb5, 0xc8,
0x08, 0x85, 0x0f, 0x8e, 0x09, 0xd4, 0x17, 0x9a, 0x41, 0x80, 0x47, 0x6e, 0xc0, 0x0c, 0xa2, 0xa1,
0xcb, 0xa2, 0xf6, 0xcf, 0x93, 0xd0, 0xca, 0xac, 0xc0, 0x5d, 0xa8, 0x8e, 0x44, 0xf7, 0xc2, 0xf6,
0xcf, 0xc5, 0x0e, 0x31, 0xa3, 0xa1, 0x1e, 0x31, 0x53, 0x7f, 0x43, 0x37, 0xa3, 0x72, 0x5c, 0x44,
0x65, 0xba, 0xac, 0x43, 0x32, 0x30, 0x2c, 0xdb, 0xc3, 0xfd, 0x80, 0x78, 0xc7, 0x42, 0xcb, 0xd9,
0x21, 0x19, 0x6c, 0x48, 0x1a, 0x7a, 0x17, 0xc0, 0x72, 0x7c, 0xba, 0xa2, 0x87, 0xf6, 0x80, 0xe9,
0x5a, 0x5f, 0x43, 0x51, 0xdf, 0xd1, 0x91, 0xa0, 0xd7, 0x2c, 0xc7, 0x17, 0xca, 0x7e, 0x00, 0x0d,
0xea, 0x62, 0x8d, 0x11, 0xf7, 0xe6, 0xdc, 0x8a, 0xeb, 0x6b, 0x0b, 0x8a, 0xc6, 0x91, 0xab, 0xd7,
0x67, 0xdd, 0xb8, 0xe0, 0xa3, 0x8f, 0x61, 0x9a, 0xb9, 0x38, 0xbf, 0x3d, 0xcd, 0xda, 0x5c, 0xc9,
0x19, 0xa5, 0x58, 0xed, 0x27, 0x8c, 0x8f, 0x2f, 0xb6, 0x68, 0x84, 0x9e, 0x40, 0xdd, 0x74, 0x1c,
0x12, 0x98, 0x7c, 0x83, 0xcf, 0x30, 0x19, 0x37, 0x8a, 0x65, 0x74, 0x63, 0x66, 0x2e, 0x48, 0x6d,
0x8e, 0x7e, 0x04, 0x53, 0xcc, 0x03, 0xb4, 0xab, 0x6c, 0xd4, 0x2b, 0xe3, 0xcd, 0x4f, 0xe7, 0xcc,
0x9d, 0x0f, 0xa0, 0xae, 0xa8, 0x76, 0x1a, 0x73, 0xeb, 0xdc, 0x87, 0x56, 0x5a, 0xa3, 0x53, 0x99,
0xeb, 0x16, 0x2c, 0xe8, 0xa1, 0x13, 0x2b, 0x26, 0xe3, 0x8f, 0x77, 0x61, 0x5a, 0xac, 0x1f, 0xb7,
0x9d, 0xe5, 0xc2, 0x19, 0xd1, 0x05, 0xa3, 0xf6, 0x31, 0x9c, 0x4d, 0x89, 0x12, 0xd1, 0xc9, 0x5b,
0xd0, 0x74, 0x89, 0x65, 0xf8, 0x9c, 0x6c, 0xd8, 0x96, 0x74, 0x06, 0x6e, 0xc4, 0xbb, 0x65, 0xd1,
0xe6, 0xbd, 0x80, 0xb8, 0x59, 0x55, 0x4e, 0xd6, 0xbc, 0x0d, 0x8b, 0xe9, 0xe6, 0xbc, 0x7b, 0xed,
0x01, 0x2c, 0xe9, 0x78, 0x44, 0x9e, 0xe1, 0xd7, 0x15, 0xdd, 0x81, 0x76, 0x56, 0x80, 0x10, 0xfe,
0x25, 0x2c, 0xc5, 0xd4, 0x5e, 0x60, 0x06, 0xa1, 0x7f, 0x2a, 0xe1, 0x22, 0x74, 0x3b, 0x20, 0x3e,
0x96, 0x87, 0xa4, 0x28, 0x6a, 0xd7, 0x55, 0xd1, 0xe2, 0x50, 0xe5, 0x3d, 0xa0, 0x26, 0x94, 0x6d,
0x57, 0x88, 0x2b, 0xdb, 0xae, 0xf6, 0x00, 0x6a, 0xd1, 0x71, 0x86, 0xd6, 0xe2, 0x98, 0xa9, 0xfc,
0x8a, 0x33, 0x2f, 0x8a, 0xa6, 0x1e, 0x67, 0xfc, 0xb8, 0xe8, 0x69, 0x0d, 0x20, 0xf2, 0x40, 0xf2,
0x0c, 0x45, 0x59, 0x79, 0xba, 0xc2, 0xa5, 0xfd, 0x4d, 0xc2, 0x1d, 0x29, 0x2a, 0x5b, 0x91, 0xca,
0x56, 0xc2, 0x3d, 0x95, 0x4f, 0xe3, 0x9e, 0x6e, 0xc1, 0x94, 0x1f, 0x98, 0x01, 0x77, 0x90, 0x4d,
0x65, 0x70, 0xc9, 0x2e, 0xb1, 0xce, 0xd9, 0xd0, 0x05, 0x80, 0xbe, 0x87, 0xcd, 0x00, 0x5b, 0x86,
0xc9, 0x3d, 0x67, 0x45, 0xaf, 0x09, 0x4a, 0x37, 0x40, 0xf7, 0x60, 0x46, 0xc6, 0x30, 0x53, 0x4c,
0x8d, 0xd5, 0x1c, 0x81, 0x89, 0xd9, 0xd7, 0x65, 0x83, 0x78, 0xb7, 0x4f, 0x8f, 0xdf, 0xed, 0xa2,
0x1d, 0x67, 0x56, 0x1c, 0xd6, 0x4c, 0xa1, 0xc3, 0xe2, 0x2d, 0x4e, 0xe2, 0xb0, 0xaa, 0x85, 0x0e,
0x4b, 0xc8, 0x18, 0xeb, 0xb0, 0xbe, 0x4f, 0xd7, 0xf3, 0x6f, 0x25, 0x68, 0x67, 0xf7, 0x8e, 0xf0,
0x19, 0xef, 0xc2, 0xb4, 0xcf, 0x28, 0x63, 0xfc, 0x8f, 0x68, 0x22, 0x18, 0xd1, 0x03, 0x98, 0xb4,
0x9d, 0x43, 0xc2, 0x72, 0x08, 0xf5, 0xe4, 0x2f, 0xea, 0xe3, 0xd6, 0x96, 0x73, 0x48, 0xf8, 0x94,
0xb0, 0x86, 0x9d, 0xbb, 0x50, 0x8b, 0x48, 0xa7, 0x1a, 0xc9, 0x43, 0x58, 0x48, 0x19, 0x1f, 0x8f,
0x5e, 0x23, 0x53, 0x2d, 0x9d, 0xc8, 0x54, 0xb5, 0xff, 0x2f, 0xa9, 0x1b, 0xe7, 0xa1, 0x3d, 0x0c,
0xb0, 0x97, 0xd9, 0x38, 0xef, 0x49, 0xa1, 0x7c, 0xd7, 0x5c, 0x28, 0x12, 0xca, 0x03, 0x4b, 0xb1,
0x09, 0x7a, 0xd0, 0x64, 0xe6, 0x63, 0xf8, 0x78, 0xc8, 0x4e, 0x69, 0x11, 0x1f, 0xfd, 0x30, 0xa7,
0x35, 0xef, 0x97, 0xdb, 0x5e, 0x4f, 0xb0, 0xf3, 0x69, 0x6a, 0x0c, 0x55, 0x5a, 0xe7, 0x13, 0x40,
0x59, 0xa6, 0x53, 0x4d, 0xdc, 0x67, 0xd4, 0xed, 0xd0, 0x6c, 0x2a, 0xe7, 0xf8, 0x39, 0x64, 0x6a,
0x8c, 0x59, 0x7e, 0xae, 0xa7, 0x2e, 0x18, 0xb5, 0xbf, 0xae, 0x00, 0xc4, 0x95, 0x6f, 0xac, 0xbf,
0xb9, 0x1b, 0xed, 0x7e, 0x1e, 0xe2, 0x5c, 0xcc, 0x91, 0x97, 0xbb, 0xef, 0x1f, 0x26, 0xf7, 0x3d,
0x0f, 0x76, 0xde, 0xca, 0x6b, 0xfd, 0xc6, 0xee, 0xf8, 0x75, 0x58, 0x4c, 0x2f, 0xb7, 0xd8, 0xee,
0xd7, 0x61, 0xca, 0x0e, 0xf0, 0x88, 0x63, 0x03, 0x6a, 0x8e, 0xa4, 0xf0, 0x72, 0x0e, 0xed, 0x12,
0xd4, 0xb6, 0x46, 0xe6, 0x00, 0xf7, 0x5c, 0xdc, 0xa7, 0x7d, 0xd9, 0xb4, 0x20, 0xfa, 0xe7, 0x05,
0x6d, 0x0d, 0xaa, 0x8f, 0xf1, 0x31, 0xdf, 0x83, 0x27, 0xd4, 0x4f, 0xfb, 0xf3, 0x32, 0x2c, 0x31,
0xb7, 0xbd, 0x2e, 0x33, 0x73, 0x1d, 0xfb, 0x24, 0xf4, 0xfa, 0xd8, 0x67, 0x4b, 0xea, 0x86, 0x86,
0x8b, 0x3d, 0x9b, 0x58, 0x22, 0x15, 0xad, 0xf5, 0xdd, 0x70, 0x97, 0x11, 0x68, 0xf6, 0x4e, 0xab,
0xbf, 0x09, 0x89, 0xb0, 0xad, 0x8a, 0x5e, 0xed, 0xbb, 0xe1, 0x8f, 0x69, 0x59, 0xb6, 0xf5, 0x8f,
0x4c, 0x0f, 0xfb, 0xcc, 0x86, 0x78, 0xdb, 0x1e, 0x23, 0xa0, 0x77, 0xe1, 0xec, 0x08, 0x8f, 0x88,
0x77, 0x6c, 0x0c, 0xed, 0x91, 0x1d, 0x18, 0xb6, 0x63, 0x1c, 0x1c, 0x07, 0xd8, 0x17, 0x86, 0x83,
0x78, 0xe5, 0x13, 0x5a, 0xb7, 0xe5, 0x7c, 0x4a, 0x6b, 0x90, 0x06, 0x0d, 0x42, 0x46, 0x86, 0xdf,
0x27, 0x1e, 0x36, 0x4c, 0xeb, 0x2b, 0x76, 0x6e, 0x55, 0xf4, 0x3a, 0x21, 0xa3, 0x1e, 0xa5, 0x75,
0xad, 0xaf, 0xd0, 0x45, 0xa8, 0xf7, 0xdd, 0xd0, 0xc7, 0x81, 0x41, 0x7f, 0xd8, 0xf9, 0x54, 0xd3,
0x81, 0x93, 0xd6, 0xdd, 0xd0, 0x57, 0x18, 0x46, 0x74, 0xda, 0x67, 0x54, 0x86, 0xa7, 0x74, 0x9a,
0x4d, 0x68, 0x24, 0x92, 0x5b, 0x9a, 0xc2, 0xb0, 0x2c, 0x56, 0xa4, 0x30, 0xf4, 0x9b, 0xd2, 0x3c,
0x32, 0x94, 0x33, 0xc9, 0xbe, 0x29, 0x2d, 0x38, 0x76, 0x65, 0xfe, 0xc2, 0xbe, 0xe9, 0x94, 0x0f,
0xf1, 0x33, 0x01, 0x4e, 0xd4, 0x74, 0x5e, 0xd0, 0x2c, 0x80, 0x75, 0xd3, 0x35, 0x0f, 0xec, 0xa1,
0x1d, 0x1c, 0xa3, 0xeb, 0xd0, 0x32, 0x2d, 0xcb, 0xe8, 0x4b, 0x8a, 0x8d, 0x25, 0x52, 0x34, 0x67,
0x5a, 0xd6, 0xba, 0x42, 0x46, 0x3f, 0x80, 0x79, 0xcb, 0x23, 0x6e, 0x92, 0x97, 0x43, 0x47, 0x2d,
0x5a, 0xa1, 0x32, 0x6b, 0xff, 0x34, 0x09, 0x17, 0x92, 0x0b, 0x9b, 0x86, 0x0b, 0xee, 0xc2, 0x6c,
0xaa, 0xd7, 0x64, 0x9e, 0x1e, 0x2b, 0xa9, 0x27, 0x18, 0x53, 0x09, 0x75, 0x39, 0x93, 0x50, 0xe7,
0xe2, 0x10, 0x95, 0xef, 0x02, 0x87, 0x98, 0xfc, 0x36, 0x38, 0xc4, 0xd4, 0x89, 0x70, 0x88, 0xab,
0x0c, 0x16, 0x94, 0x8d, 0x58, 0x36, 0xc8, 0xcd, 0xa8, 0x11, 0xf1, 0x38, 0x12, 0x3e, 0x4c, 0xe1,
0x15, 0x33, 0xa7, 0xc1, 0x2b, 0xaa, 0x85, 0x78, 0x05, 0xb5, 0x08, 0xd7, 0x35, 0xbd, 0x11, 0xf1,
0x24, 0x20, 0xd1, 0xae, 0x31, 0x15, 0xe6, 0x24, 0x5d, 0x80, 0x11, 0x85, 0xd0, 0x05, 0x14, 0x41,
0x17, 0x68, 0x15, 0x66, 0x1d, 0x62, 0x38, 0xf8, 0xb9, 0x41, 0x17, 0xcc, 0x6f, 0xd7, 0xf9, 0xea,
0x39, 0x64, 0x1b, 0x3f, 0xdf, 0xa5, 0x14, 0xed, 0x6f, 0x4b, 0xb0, 0x90, 0x34, 0x1c, 0x91, 0xac,
0xde, 0x87, 0x9a, 0x27, 0x7d, 0x83, 0x30, 0x96, 0xd5, 0x64, 0xe8, 0x97, 0xf5, 0x21, 0x7a, 0xdc,
0x04, 0xfd, 0xb8, 0x10, 0xf6, 0xb8, 0x5a, 0x20, 0xe6, 0x55, 0xc0, 0x87, 0xd6, 0x85, 0xf9, 0x88,
0x79, 0x2c, 0xe8, 0xa0, 0x80, 0x08, 0xe5, 0x24, 0x88, 0xe0, 0xc0, 0xf4, 0x06, 0x7e, 0x66, 0xf7,
0xf1, 0x77, 0x02, 0x5a, 0xae, 0x42, 0xdd, 0xc5, 0xde, 0xc8, 0xf6, 0xfd, 0xc8, 0xe8, 0x6b, 0xba,
0x4a, 0xd2, 0xfe, 0x6b, 0x0a, 0xe6, 0xd2, 0x33, 0x7b, 0x27, 0x83, 0x59, 0x74, 0xe2, 0x5d, 0x98,
0x1e, 0x9f, 0x72, 0x46, 0x5f, 0x93, 0xc7, 0x40, 0x39, 0x95, 0xa0, 0x44, 0x27, 0x85, 0x38, 0x1a,
0xe8, 0xf8, 0xfb, 0x64, 0x34, 0x32, 0x1d, 0x4b, 0x02, 0xca, 0xa2, 0x48, 0x67, 0xcb, 0xf4, 0x06,
0x74, 0x6b, 0x51, 0x32, 0xfb, 0xa6, 0x5e, 0x92, 0x06, 0xfa, 0xb6, 0xc3, 0x20, 0x0f, 0xb6, 0x71,
0x6a, 0x3a, 0x08, 0xd2, 0x86, 0xed, 0xa1, 0x2b, 0x30, 0x89, 0x9d, 0x67, 0xf2, 0x34, 0x8e, 0x11,
0x67, 0x79, 0xfc, 0xe8, 0xac, 0x1a, 0x5d, 0x85, 0xe9, 0x11, 0x09, 0x9d, 0x40, 0x86, 0xfc, 0xcd,
0x24, 0xf0, 0xaa, 0x8b, 0x5a, 0x74, 0x1d, 0x66, 0x2c, 0xb6, 0x06, 0x32, 0xae, 0x9f, 0x8b, 0x61,
0x13, 0x46, 0xd7, 0x65, 0x3d, 0xfa, 0x28, 0x8a, 0x23, 0x6a, 0xa9, 0x48, 0x20, 0x35, 0xa9, 0xb9,
0xc1, 0xc4, 0xe3, 0x64, 0x30, 0x01, 0x4c, 0xc4, 0xf5, 0x42, 0x11, 0xe3, 0x41, 0x8f, 0x65, 0xa8,
0x0e, 0xc9, 0x80, 0xdb, 0x41, 0x9d, 0x5f, 0x3f, 0x0c, 0xc9, 0x80, 0x99, 0xc1, 0x02, 0x0d, 0x9e,
0x2c, 0xdb, 0x69, 0xcf, 0xb2, 0xed, 0xc5, 0x0b, 0xf4, 0x4c, 0x64, 0x1f, 0x06, 0x71, 0xfa, 0xb8,
0xdd, 0x60, 0x55, 0x35, 0x46, 0xd9, 0x71, 0xfa, 0xec, 0xc8, 0x0e, 0x82, 0xe3, 0x76, 0x93, 0xd1,
0xe9, 0x27, 0x8d, 0x79, 0x79, 0xa2, 0x35, 0x97, 0x8a, 0x79, 0xf3, 0xf6, 0xe7, 0x1b, 0x80, 0xaa,
0xfc, 0x43, 0x09, 0x16, 0xd7, 0x59, 0xc8, 0xa7, 0x78, 0x82, 0xd3, 0xa0, 0x02, 0xb7, 0x23, 0xf8,
0x25, 0x9d, 0xc2, 0xa7, 0x07, 0x2b, 0xf8, 0xd0, 0x27, 0xd0, 0x94, 0x32, 0x45, 0xcb, 0xca, 0xab,
0x80, 0x9b, 0x86, 0xaf, 0x16, 0xb5, 0x8f, 0x60, 0x29, 0xa3, 0xb3, 0x08, 0xcf, 0x2e, 0xc1, 0x6c,
0xec, 0x11, 0x22, 0x95, 0xeb, 0x11, 0x6d, 0xcb, 0xd2, 0xee, 0xc1, 0xd9, 0x5e, 0x60, 0x7a, 0x41,
0x66, 0xc0, 0x27, 0x68, 0xcb, 0xb0, 0x9b, 0x64, 0x5b, 0x01, 0xaf, 0xf4, 0x60, 0xa1, 0x17, 0x10,
0xf7, 0x35, 0x84, 0xd2, 0x9d, 0x4e, 0x87, 0x4d, 0xc2, 0x40, 0xc4, 0x64, 0xb2, 0xa8, 0x2d, 0x71,
0xa4, 0x29, 0xdb, 0xdb, 0x87, 0xb0, 0xc8, 0x81, 0x9e, 0xd7, 0x19, 0xc4, 0xb2, 0x84, 0x99, 0xb2,
0x72, 0x37, 0xe0, 0x4c, 0xec, 0xca, 0xe3, 0xf4, 0xf0, 0x66, 0x32, 0x3d, 0x5c, 0xca, 0xae, 0x71,
0x22, 0x3b, 0xfc, 0x8b, 0xb2, 0xe2, 0x30, 0x0b, 0x92, 0xc3, 0xb5, 0x64, 0x72, 0x78, 0xbe, 0x40,
0x64, 0x22, 0x37, 0xcc, 0x5a, 0x64, 0x25, 0xc7, 0x22, 0xf5, 0x4c, 0x06, 0x39, 0x99, 0xca, 0xb3,
0x53, 0xba, 0xfd, 0x56, 0x12, 0xc8, 0x2d, 0x9e, 0x40, 0x46, 0x5d, 0x47, 0xe0, 0xdb, 0xed, 0x54,
0x02, 0xd9, 0x2e, 0x52, 0x33, 0xca, 0x1f, 0xff, 0x74, 0x12, 0x6a, 0x51, 0x5d, 0x66, 0x62, 0xb3,
0x93, 0x54, 0xce, 0x99, 0x24, 0xf5, 0xfc, 0xaa, 0xbc, 0xce, 0xf9, 0x35, 0xf9, 0xaa, 0xf3, 0xeb,
0x1c, 0xd4, 0xd8, 0x87, 0xe1, 0xe1, 0x43, 0x71, 0x1e, 0x55, 0x19, 0x41, 0xc7, 0x87, 0xb1, 0x41,
0x4d, 0x9f, 0xc4, 0xa0, 0x52, 0x99, 0xea, 0x4c, 0x3a, 0x53, 0xbd, 0x13, 0x9d, 0x30, 0xfc, 0x2c,
0x5a, 0xc9, 0x8a, 0xcb, 0x3d, 0x5b, 0x36, 0x93, 0x67, 0x0b, 0x3f, 0x9e, 0x2e, 0xe7, 0x34, 0x7e,
0x63, 0xf3, 0xd4, 0x27, 0x3c, 0x4f, 0x55, 0xad, 0x4a, 0x38, 0xc2, 0x35, 0x80, 0x68, 0xcf, 0xcb,
0x64, 0x15, 0x65, 0x87, 0xa6, 0x2b, 0x5c, 0xda, 0x3e, 0x2c, 0x26, 0xe6, 0x3f, 0x46, 0x88, 0x4f,
0xe6, 0xc5, 0x0a, 0xe0, 0xe1, 0x7f, 0x55, 0xe3, 0xa7, 0x02, 0x90, 0xf5, 0x4e, 0x06, 0xf4, 0x38,
0x99, 0x3d, 0xde, 0x4c, 0x62, 0x1e, 0xa7, 0x33, 0xa4, 0x0c, 0xe4, 0xc1, 0x8e, 0x7b, 0xd3, 0x13,
0xd5, 0x3c, 0x5b, 0xad, 0x09, 0x4a, 0x37, 0xa0, 0x41, 0xd6, 0xa1, 0xed, 0xd8, 0xfe, 0x11, 0xaf,
0x9f, 0x66, 0xf5, 0x20, 0x49, 0x5d, 0x76, 0x09, 0x8f, 0x5f, 0xd8, 0x81, 0xd1, 0x27, 0x16, 0x66,
0x66, 0x3a, 0xa5, 0x57, 0x29, 0x61, 0x9d, 0x58, 0x38, 0xde, 0x3a, 0xd5, 0x53, 0x6d, 0x9d, 0x5a,
0x6a, 0xeb, 0x2c, 0xc2, 0xb4, 0x87, 0x4d, 0x9f, 0x38, 0x22, 0x65, 0x10, 0x25, 0x3a, 0xff, 0x23,
0xec, 0xfb, 0xb4, 0x03, 0x11, 0xda, 0x88, 0xa2, 0x12, 0x80, 0xcd, 0x16, 0x05, 0x60, 0x63, 0x50,
0xdc, 0x54, 0x00, 0xd6, 0x28, 0x0a, 0xc0, 0x4e, 0x02, 0xe2, 0x2a, 0xe1, 0x65, 0x73, 0x6c, 0x78,
0xa9, 0x06, 0x6a, 0x73, 0x89, 0x40, 0xed, 0xfb, 0xdc, 0x6d, 0xff, 0x52, 0x82, 0xa5, 0xcc, 0x06,
0x11, 0xfb, 0xed, 0x76, 0x0a, 0x06, 0x6e, 0x17, 0xcd, 0x50, 0x84, 0x02, 0xdf, 0x4f, 0xa0, 0xc0,
0x37, 0x0a, 0xf9, 0xbf, 0x73, 0x10, 0xf8, 0x0f, 0xe1, 0xe2, 0xbe, 0x6b, 0xa5, 0xc2, 0x27, 0x91,
0xfc, 0x9d, 0x7c, 0xbf, 0xdf, 0x91, 0x91, 0x6e, 0xf9, 0x84, 0x79, 0x25, 0x67, 0xd7, 0x34, 0x58,
0x2d, 0xee, 0x5d, 0x84, 0x21, 0xbf, 0x0f, 0x73, 0x9b, 0x2f, 0x70, 0xbf, 0x77, 0xec, 0xf4, 0x4f,
0xa1, 0x51, 0x0b, 0x2a, 0xfd, 0x91, 0x25, 0xe0, 0x15, 0xfa, 0xa9, 0x46, 0x56, 0x95, 0x64, 0x64,
0x65, 0x40, 0x2b, 0xee, 0x41, 0x2c, 0xe1, 0x22, 0x5d, 0x42, 0x8b, 0x32, 0x53, 0xe1, 0xb3, 0xba,
0x28, 0x09, 0x3a, 0xf6, 0x3c, 0x36, 0x54, 0x4e, 0xc7, 0x9e, 0x97, 0xdc, 0xed, 0x95, 0xe4, 0x6e,
0xd7, 0xfe, 0xaa, 0x04, 0x75, 0xda, 0xc3, 0xb7, 0xd2, 0x5f, 0xe4, 0x17, 0x95, 0x38, 0xbf, 0x88,
0xd2, 0x94, 0x49, 0x35, 0x4d, 0x89, 0x35, 0x9f, 0x62, 0xe4, 0xac, 0xe6, 0xd3, 0x11, 0x1d, 0x7b,
0x9e, 0xb6, 0x0a, 0xb3, 0x5c, 0x37, 0x31, 0xf2, 0x16, 0x54, 0x42, 0x6f, 0x28, 0xad, 0x27, 0xf4,
0x86, 0xda, 0x9f, 0x95, 0xa0, 0xd1, 0x0d, 0x02, 0xb3, 0x7f, 0x74, 0x8a, 0x01, 0x44, 0xca, 0x95,
0x55, 0xe5, 0xb2, 0x83, 0x88, 0xd5, 0x9d, 0x2c, 0x50, 0x77, 0x2a, 0xa1, 0xae, 0x06, 0x4d, 0xa9,
0x4b, 0xa1, 0xc2, 0xdb, 0x80, 0x76, 0x89, 0x17, 0x3c, 0x24, 0xde, 0x73, 0xd3, 0xb3, 0x4e, 0x97,
0xc3, 0x20, 0x98, 0x14, 0x0f, 0xab, 0x2a, 0xd7, 0xa6, 0x74, 0xf6, 0xad, 0xbd, 0x0d, 0x67, 0x12,
0xf2, 0x0a, 0x3b, 0xbe, 0x0b, 0x75, 0xe6, 0xc0, 0x45, 0x9c, 0x7b, 0x4d, 0xc5, 0x79, 0xc7, 0x79,
0x79, 0xad, 0x0b, 0xf3, 0xf4, 0xec, 0x66, 0xf4, 0x68, 0xe3, 0xfd, 0x30, 0x15, 0x0d, 0x2e, 0x24,
0xdb, 0xa7, 0x22, 0xc1, 0xbf, 0x2b, 0xc1, 0x14, 0xa3, 0x67, 0xce, 0xd3, 0x73, 0x50, 0xf3, 0xb0,
0x4b, 0x8c, 0xc0, 0x1c, 0x44, 0x6f, 0xd5, 0x28, 0x61, 0xcf, 0x1c, 0xf8, 0xec, 0xa9, 0x1d, 0xad,
0xb4, 0xec, 0x01, 0xf6, 0x03, 0xf9, 0x60, 0xad, 0x4e, 0x69, 0x1b, 0x9c, 0x44, 0xa7, 0xc4, 0xb7,
0xff, 0x80, 0x87, 0x79, 0x93, 0x3a, 0xfb, 0x46, 0x57, 0xf8, 0x33, 0x90, 0x31, 0xa0, 0x1c, 0x7b,
0x1b, 0xd2, 0x81, 0x6a, 0x0a, 0x87, 0x8b, 0xca, 0xda, 0x47, 0x80, 0xd4, 0x31, 0x8b, 0x49, 0xbd,
0x0a, 0xd3, 0x6c, 0x4a, 0x64, 0x9c, 0xd2, 0x4c, 0x0e, 0x5a, 0x17, 0xb5, 0xda, 0x17, 0x80, 0xf8,
0x2c, 0x26, 0x62, 0x93, 0x13, 0xcf, 0xf8, 0x98, 0x10, 0xe5, 0xef, 0x4b, 0x70, 0x26, 0x21, 0x3a,
0x7a, 0x10, 0x90, 0x90, 0x9d, 0x56, 0x4c, 0xc8, 0xbd, 0x97, 0xf0, 0xe4, 0x57, 0x53, 0x0a, 0xfc,
0x86, 0xbc, 0xf8, 0x2f, 0x4b, 0x00, 0xdd, 0x30, 0x38, 0x12, 0x80, 0x94, 0x3a, 0xeb, 0xa5, 0xe4,
0xac, 0xd3, 0x3a, 0xd7, 0xf4, 0xfd, 0xe7, 0xc4, 0x93, 0xc9, 0x40, 0x54, 0x66, 0x60, 0x52, 0x18,
0x1c, 0x49, 0x10, 0x9c, 0x7e, 0xa3, 0x2b, 0xd0, 0xe4, 0x4f, 0x1e, 0x0d, 0xd3, 0xb2, 0x3c, 0xec,
0xfb, 0x02, 0x0d, 0x6f, 0x70, 0x6a, 0x97, 0x13, 0x29, 0x9b, 0x6d, 0x61, 0x27, 0xb0, 0x83, 0x63,
0x23, 0x20, 0x5f, 0x63, 0x47, 0x84, 0xf9, 0x0d, 0x49, 0xdd, 0xa3, 0x44, 0xca, 0xe6, 0xe1, 0x81,
0xed, 0x07, 0x9e, 0x64, 0x93, 0xe8, 0xac, 0xa0, 0x32, 0x36, 0xed, 0xe7, 0x25, 0x68, 0xed, 0x86,
0xc3, 0x21, 0x9f, 0xd9, 0x53, 0xaf, 0xed, 0xdb, 0x62, 0x1c, 0xe5, 0x94, 0x75, 0xc6, 0x53, 0x24,
0x06, 0xf7, 0xed, 0xe1, 0x87, 0xdb, 0x30, 0xaf, 0x28, 0x2a, 0x2c, 0x25, 0x11, 0xb3, 0x95, 0x92,
0x31, 0x9b, 0x76, 0x1f, 0x10, 0xcf, 0xb8, 0x5f, 0x6f, 0x70, 0xda, 0x59, 0x38, 0x93, 0x68, 0x2f,
0x8e, 0xc9, 0x1b, 0xd0, 0x10, 0xf7, 0xfd, 0xc2, 0x08, 0x96, 0xa1, 0x4a, 0xdd, 0x5d, 0xdf, 0xb6,
0xe4, 0xed, 0xc7, 0x8c, 0x4b, 0xac, 0x75, 0xdb, 0xf2, 0xb4, 0x6d, 0x68, 0xe8, 0x5c, 0xbc, 0xe0,
0xfd, 0x18, 0x9a, 0xe2, 0x75, 0x80, 0x91, 0x78, 0x3f, 0x13, 0x43, 0xf5, 0x09, 0xd9, 0x7a, 0xc3,
0x51, 0x8b, 0xda, 0x4f, 0xa1, 0xc3, 0x8f, 0xf1, 0x84, 0x54, 0x39, 0xb4, 0x8f, 0x41, 0x3e, 0xc9,
0x2d, 0x12, 0x9e, 0x6c, 0xd6, 0xf0, 0xd4, 0xa2, 0x76, 0x01, 0xce, 0xe5, 0x0a, 0x17, 0xe3, 0x76,
0xa1, 0x15, 0x57, 0x58, 0xb6, 0xbc, 0xf4, 0x61, 0x97, 0x39, 0x25, 0xe5, 0x32, 0x67, 0x31, 0x8a,
0xc9, 0xca, 0xf2, 0x3c, 0x61, 0x91, 0x57, 0x1c, 0x42, 0x57, 0x8a, 0x42, 0xe8, 0xc9, 0x44, 0x08,
0xad, 0x7d, 0x16, 0xcd, 0x9e, 0xc8, 0x5f, 0x3e, 0x60, 0xe9, 0x15, 0xef, 0x5b, 0xba, 0xad, 0xe5,
0x9c, 0xc1, 0x71, 0x0e, 0x5d, 0x61, 0xd6, 0xae, 0x43, 0x23, 0xe9, 0xc0, 0x14, 0xb7, 0x54, 0xca,
0xb8, 0xa5, 0x66, 0xca, 0x23, 0xdd, 0x4a, 0xc5, 0x99, 0x99, 0x19, 0x4d, 0x45, 0x99, 0xef, 0x27,
0x7c, 0xd3, 0xa5, 0xf8, 0x1e, 0xe6, 0x37, 0xe4, 0x96, 0x16, 0x84, 0x8f, 0x7e, 0xe8, 0xd3, 0xf6,
0x62, 0x88, 0xda, 0x65, 0xa8, 0xef, 0x17, 0x3d, 0x96, 0x9d, 0x94, 0x17, 0x9b, 0x6f, 0xc3, 0x7c,
0x2f, 0x20, 0x9e, 0x39, 0xc0, 0x5b, 0xcc, 0x81, 0x1c, 0xda, 0xfc, 0xe2, 0x2e, 0x0c, 0xa3, 0xa3,
0x8d, 0x7d, 0x6b, 0xff, 0x51, 0x82, 0xb9, 0x87, 0xf6, 0x10, 0xfb, 0xc7, 0x7e, 0x80, 0x47, 0xfb,
0x2c, 0xc9, 0x39, 0x0f, 0x35, 0x3a, 0x2e, 0x3f, 0x30, 0x47, 0xae, 0xbc, 0xf8, 0x8c, 0x08, 0x74,
0xb9, 0x7c, 0x2e, 0x5a, 0x02, 0x22, 0x6a, 0x82, 0x99, 0xe9, 0x95, 0x26, 0x7d, 0x82, 0x84, 0xde,
0x03, 0x08, 0x7d, 0x6c, 0x89, 0xcb, 0xce, 0x4a, 0xea, 0x54, 0xde, 0x57, 0xaf, 0xa4, 0x28, 0x1f,
0xbf, 0xf9, 0x7c, 0x1f, 0xea, 0xb6, 0x43, 0x2c, 0xcc, 0xae, 0xa4, 0x2c, 0x01, 0x96, 0xe4, 0xb7,
0x02, 0xce, 0xb8, 0xef, 0x63, 0x4b, 0xfb, 0x3d, 0x71, 0x0a, 0xc9, 0xc9, 0x13, 0x6b, 0xbe, 0x09,
0xf3, 0xdc, 0xb7, 0x1c, 0x46, 0x83, 0x96, 0x36, 0x17, 0xa7, 0x19, 0xa9, 0x09, 0xd1, 0x5b, 0xb6,
0x08, 0x18, 0x64, 0x0b, 0xed, 0x1e, 0x9c, 0x4d, 0xe4, 0x16, 0xa7, 0x88, 0xf6, 0xb5, 0x47, 0x29,
0x68, 0x20, 0x36, 0x48, 0x91, 0x81, 0x4b, 0x7b, 0x2c, 0xc8, 0xc0, 0x7d, 0x9e, 0x81, 0xfb, 0x9a,
0x0e, 0xcb, 0x09, 0xc4, 0x22, 0xa1, 0xc8, 0xfb, 0xa9, 0xe8, 0xe7, 0x42, 0x81, 0xb0, 0x54, 0x18,
0xf4, 0xbf, 0x25, 0x58, 0xc8, 0x63, 0x78, 0x4d, 0x6c, 0xec, 0x27, 0x05, 0x4f, 0x50, 0x6e, 0x8f,
0xd5, 0xe6, 0xb7, 0x82, 0x22, 0x3e, 0x86, 0x4e, 0xde, 0xec, 0x65, 0x97, 0xa2, 0x72, 0x82, 0xa5,
0xf8, 0xbf, 0xb2, 0x82, 0xf6, 0x76, 0x83, 0xc0, 0xb3, 0x0f, 0x42, 0x6a, 0xbc, 0xdf, 0x15, 0x36,
0xf3, 0x49, 0x84, 0x3b, 0xf0, 0xf9, 0xbb, 0x96, 0x6d, 0x15, 0xf7, 0x9a, 0x8b, 0x3d, 0xec, 0x24,
0xb1, 0x07, 0x8e, 0xe3, 0xde, 0x1c, 0x2b, 0xe6, 0x8d, 0x85, 0xea, 0x5e, 0x96, 0xa0, 0x99, 0x5c,
0x07, 0xf4, 0x11, 0x80, 0x19, 0x69, 0x2e, 0x4c, 0xfe, 0xfc, 0xb8, 0xd1, 0xe9, 0x0a, 0x3f, 0xba,
0x0c, 0x95, 0xbe, 0x1b, 0x8a, 0x15, 0x89, 0x2f, 0xf4, 0xd6, 0xdd, 0x90, 0x3b, 0x00, 0x5a, 0x4b,
0xf3, 0x09, 0xfe, 0x30, 0x23, 0xe3, 0xb9, 0x9e, 0x32, 0x32, 0x67, 0x15, 0x3c, 0xe8, 0x01, 0x34,
0x9f, 0x7b, 0x76, 0x60, 0x1e, 0x0c, 0xb1, 0x31, 0x34, 0x8f, 0xb1, 0x27, 0x3c, 0x57, 0xb1, 0x97,
0x69, 0x48, 0xfe, 0x27, 0x94, 0x5d, 0x0b, 0xa1, 0x2a, 0xfb, 0x7f, 0x85, 0x47, 0x7e, 0x0c, 0x4b,
0x21, 0x65, 0x33, 0xd8, 0xe3, 0x10, 0xc7, 0x74, 0x88, 0xe1, 0x63, 0x7a, 0x4a, 0xca, 0xb7, 0xa0,
0xf9, 0xde, 0x72, 0x81, 0x35, 0x5a, 0x27, 0x1e, 0xde, 0x36, 0x1d, 0xd2, 0xe3, 0x2d, 0xb4, 0x11,
0xd4, 0x95, 0xe1, 0xbc, 0xa2, 0xe7, 0x4f, 0x60, 0x5e, 0x5e, 0x95, 0xfa, 0x38, 0x10, 0x7e, 0x7d,
0x5c, 0x9f, 0x73, 0x82, 0xbd, 0x87, 0x03, 0xe6, 0xdd, 0xb5, 0xfb, 0xb0, 0xac, 0x63, 0xe2, 0x62,
0x27, 0x5a, 0xa2, 0x27, 0x64, 0x70, 0x0a, 0x67, 0x7a, 0x1e, 0x3a, 0x79, 0xed, 0xf9, 0x2e, 0xbe,
0x71, 0x1e, 0xaa, 0xf2, 0x6f, 0x40, 0x68, 0x06, 0x2a, 0x7b, 0xeb, 0xbb, 0xad, 0x09, 0xfa, 0xb1,
0xbf, 0xb1, 0xdb, 0x2a, 0xdd, 0x18, 0x41, 0x2b, 0xfd, 0x17, 0x18, 0xb4, 0x04, 0x67, 0x76, 0xf5,
0x9d, 0xdd, 0xee, 0xa3, 0xee, 0xde, 0xd6, 0xce, 0xb6, 0xb1, 0xab, 0x6f, 0x7d, 0xde, 0xdd, 0xdb,
0x6c, 0x4d, 0xa0, 0x4b, 0x70, 0x41, 0xad, 0xf8, 0xdd, 0x9d, 0xde, 0x9e, 0xb1, 0xb7, 0x63, 0xac,
0xef, 0x6c, 0xef, 0x75, 0xb7, 0xb6, 0x37, 0xf5, 0x56, 0x09, 0x5d, 0x80, 0x65, 0x95, 0xe5, 0xd3,
0xad, 0x8d, 0x2d, 0x7d, 0x73, 0x9d, 0x7e, 0x77, 0x9f, 0xb4, 0xca, 0x37, 0xee, 0xc1, 0x5c, 0xea,
0xf5, 0x18, 0x9a, 0x87, 0x46, 0xaf, 0xbb, 0xbd, 0xf1, 0xe9, 0xce, 0x17, 0x86, 0xbe, 0xd9, 0xdd,
0xf8, 0xb2, 0x35, 0x81, 0x16, 0xa0, 0x25, 0x49, 0xdb, 0x3b, 0x7b, 0x9c, 0x5a, 0xba, 0xf1, 0x75,
0xca, 0xe0, 0x31, 0x3a, 0x0b, 0xf3, 0x51, 0xdf, 0xc6, 0xba, 0xbe, 0xd9, 0xdd, 0xdb, 0xdc, 0x68,
0x4d, 0x24, 0xc9, 0xfa, 0xfe, 0xf6, 0xf6, 0xd6, 0xf6, 0xa3, 0x56, 0x89, 0x4a, 0x8d, 0xc9, 0x9b,
0x5f, 0x6c, 0x51, 0xe6, 0x72, 0x92, 0x79, 0x7f, 0xfb, 0xf1, 0xf6, 0xce, 0x4f, 0xb6, 0x5b, 0x95,
0xb5, 0x7f, 0x6c, 0x42, 0x53, 0x46, 0x40, 0xd8, 0x63, 0xaf, 0x03, 0xee, 0xc3, 0x8c, 0xfc, 0x43,
0x58, 0xec, 0x0a, 0x93, 0xff, 0x5e, 0xeb, 0xb4, 0xb3, 0x15, 0x22, 0xc8, 0x9c, 0x40, 0xbb, 0x2c,
0xe8, 0x53, 0x5e, 0xea, 0x5d, 0x50, 0x63, 0xad, 0xcc, 0x53, 0xc0, 0xce, 0x4a, 0x51, 0x75, 0x24,
0xb1, 0x47, 0xc3, 0x39, 0xf5, 0xe9, 0x37, 0x5a, 0x51, 0x83, 0x90, 0xec, 0x93, 0xf2, 0xce, 0xc5,
0xc2, 0xfa, 0x48, 0xe8, 0x97, 0xd0, 0x4a, 0x3f, 0xfa, 0x46, 0x31, 0x1a, 0x57, 0xf0, 0xa0, 0xbc,
0x73, 0x69, 0x0c, 0x87, 0x2a, 0x3a, 0xf3, 0x3c, 0x7a, 0x75, 0xcc, 0x73, 0xd5, 0xb4, 0xe8, 0xa2,
0x07, 0xad, 0x7c, 0x2a, 0x92, 0x2f, 0xec, 0x90, 0xfa, 0x28, 0x39, 0xe7, 0xa5, 0xa5, 0x32, 0x15,
0xf9, 0x4f, 0xf3, 0xb4, 0x09, 0xf4, 0x39, 0xcc, 0xa5, 0x2e, 0x86, 0x51, 0xdc, 0x2a, 0xff, 0x9a,
0xbb, 0xb3, 0x5a, 0xcc, 0x90, 0x5c, 0x37, 0xf5, 0xda, 0x37, 0xb1, 0x6e, 0x39, 0x77, 0xc9, 0x89,
0x75, 0xcb, 0xbd, 0x2f, 0x66, 0xe6, 0x95, 0xb8, 0xdc, 0x55, 0xcc, 0x2b, 0xef, 0x26, 0xb9, 0xb3,
0x52, 0x54, 0xad, 0x0e, 0x3f, 0x75, 0xb1, 0xab, 0x0c, 0x3f, 0xff, 0xbe, 0xb8, 0xb3, 0x5a, 0xcc,
0x90, 0x5e, 0xab, 0xf8, 0x96, 0x29, 0xb5, 0x56, 0x99, 0x4b, 0xcd, 0xd4, 0x5a, 0x65, 0xaf, 0xa7,
0xc4, 0x5a, 0xa5, 0x2e, 0x85, 0x2e, 0x16, 0x63, 0xe0, 0x99, 0xb5, 0xca, 0x07, 0xc9, 0xb5, 0x09,
0xf4, 0x0d, 0xb4, 0x8b, 0xf0, 0x65, 0x14, 0x47, 0x20, 0xaf, 0x00, 0xc0, 0x3b, 0xd7, 0x4f, 0xc0,
0x19, 0x75, 0x69, 0xd0, 0xf4, 0x3e, 0xed, 0xcf, 0x91, 0xa6, 0xcc, 0x6c, 0xc1, 0x61, 0xd1, 0xb9,
0x3c, 0x96, 0x27, 0xea, 0xa0, 0x0b, 0x55, 0x89, 0x56, 0xa3, 0xd8, 0x63, 0xa5, 0x20, 0xf2, 0xce,
0x72, 0x4e, 0x4d, 0x24, 0xe2, 0x7d, 0x98, 0xa4, 0x54, 0xb4, 0x90, 0x60, 0x92, 0x4d, 0xcf, 0xa6,
0xa8, 0x51, 0xb3, 0x0f, 0x61, 0x9a, 0x43, 0xaf, 0x28, 0x4e, 0x34, 0x13, 0xb8, 0x70, 0x67, 0x29,
0x43, 0x8f, 0x1a, 0x7f, 0xc6, 0xff, 0xf8, 0x2a, 0x30, 0x54, 0x74, 0x2e, 0xf1, 0x1f, 0xa9, 0x24,
0x52, 0xdb, 0x39, 0x9f, 0x5f, 0xa9, 0xda, 0x60, 0x2a, 0x7a, 0x5a, 0x29, 0x0a, 0x6f, 0x33, 0x36,
0x98, 0x1f, 0x2e, 0xf3, 0x85, 0xcb, 0x86, 0xd3, 0xca, 0xc2, 0x15, 0x66, 0x2a, 0xca, 0xc2, 0x15,
0xc7, 0xe3, 0xda, 0x04, 0x3a, 0x80, 0x33, 0x39, 0x40, 0x06, 0xba, 0x9c, 0xb2, 0xae, 0x3c, 0x0c,
0xa5, 0xf3, 0xd6, 0x78, 0x26, 0x75, 0x89, 0xc4, 0xfe, 0x59, 0xcc, 0x64, 0xf7, 0xe9, 0x25, 0x4a,
0xef, 0x96, 0xb5, 0x3f, 0xae, 0xc0, 0x2c, 0x87, 0x9b, 0xc4, 0xa1, 0xf9, 0x08, 0x20, 0x46, 0x68,
0x51, 0x27, 0x31, 0xcc, 0x04, 0x54, 0xdd, 0x39, 0x97, 0x5b, 0xa7, 0x2e, 0xbe, 0x82, 0x7f, 0x2a,
0x8b, 0x9f, 0x85, 0x70, 0x95, 0xc5, 0xcf, 0x81, 0x4c, 0xb5, 0x09, 0xb4, 0x01, 0xb5, 0x08, 0x71,
0x43, 0x0a, 0x50, 0x97, 0x82, 0x0b, 0x3b, 0x9d, 0xbc, 0x2a, 0x55, 0x23, 0x05, 0x45, 0x53, 0x34,
0xca, 0x62, 0x73, 0x8a, 0x46, 0x79, 0xc0, 0x5b, 0x3c, 0x3a, 0x9e, 0xa9, 0xa7, 0x47, 0x97, 0x00,
0x3f, 0xd2, 0xa3, 0x4b, 0x26, 0xf7, 0xda, 0xc4, 0xa7, 0xe7, 0x7f, 0xf1, 0xab, 0x95, 0xd2, 0x7f,
0xfe, 0x6a, 0x65, 0xe2, 0x8f, 0x5e, 0xae, 0x94, 0x7e, 0xf1, 0x72, 0xa5, 0xf4, 0xef, 0x2f, 0x57,
0x4a, 0xff, 0xfd, 0x72, 0xa5, 0xf4, 0xb3, 0xff, 0x59, 0x99, 0x38, 0x98, 0x66, 0xff, 0x04, 0x7f,
0xef, 0xd7, 0x01, 0x00, 0x00, 0xff, 0xff, 0x9a, 0x71, 0xce, 0x4a, 0xbd, 0x3f, 0x00, 0x00,
}

View File

@ -63,6 +63,10 @@ service RuntimeService {
rpc ContainerStatus(ContainerStatusRequest) returns (ContainerStatusResponse) {}
// UpdateContainerResources updates ContainerConfig of the container.
rpc UpdateContainerResources(UpdateContainerResourcesRequest) returns (UpdateContainerResourcesResponse) {}
// ReopenContainerLog asks runtime to reopen the stdout/stderr log file
// for the container. This is often called after the log file has been
// rotated.
rpc ReopenContainerLog(ReopenContainerLogRequest) returns (ReopenContainerLogResponse) {}
// ExecSync runs a command in a container synchronously.
rpc ExecSync(ExecSyncRequest) returns (ExecSyncResponse) {}
@ -1153,3 +1157,11 @@ message MemoryUsage {
// The amount of working set memory in bytes.
UInt64Value working_set_bytes = 2;
}
message ReopenContainerLogRequest {
// ID of the container for which to reopen the log.
string container_id = 1;
}
message ReopenContainerLogResponse{
}

View File

@ -15,6 +15,7 @@ go_library(
"docker_container.go",
"docker_image.go",
"docker_legacy_service.go",
"docker_logs.go",
"docker_sandbox.go",
"docker_service.go",
"docker_streaming.go",

View File

@ -0,0 +1,30 @@
/*
Copyright 2018 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package dockershim
import (
"fmt"
"golang.org/x/net/context"
runtimeapi "k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime"
)
// ReopenContainerLog reopens the container log file.
func (ds *dockerService) ReopenContainerLog(_ context.Context, _ *runtimeapi.ReopenContainerLogRequest) (*runtimeapi.ReopenContainerLogResponse, error) {
return nil, fmt.Errorf("docker does not support reopening container log files")
}

View File

@ -140,6 +140,15 @@ func (in instrumentedRuntimeService) UpdateContainerResources(containerID string
return err
}
func (in instrumentedRuntimeService) ReopenContainerLog(containerID string) error {
const operation = "reopen_container_log"
defer recordOperation(operation, time.Now())
err := in.service.ReopenContainerLog(containerID)
recordError(operation, err)
return err
}
func (in instrumentedRuntimeService) ExecSync(containerID string, cmd []string, timeout time.Duration) ([]byte, []byte, error) {
const operation = "exec_sync"
defer recordOperation(operation, time.Now())

View File

@ -283,3 +283,13 @@ func (f *RemoteRuntime) UpdateContainerResources(ctx context.Context, req *kubea
return &kubeapi.UpdateContainerResourcesResponse{}, nil
}
// ReopenContainerLog reopens the container log file.
func (f *RemoteRuntime) ReopenContainerLog(ctx context.Context, req *kubeapi.ReopenContainerLogRequest) (*kubeapi.ReopenContainerLogResponse, error) {
err := f.RuntimeService.ReopenContainerLog(req.ContainerId)
if err != nil {
return nil, err
}
return &kubeapi.ReopenContainerLogResponse{}, nil
}

View File

@ -476,3 +476,15 @@ func (r *RemoteRuntimeService) ListContainerStats(filter *runtimeapi.ContainerSt
return resp.GetStats(), nil
}
func (r *RemoteRuntimeService) ReopenContainerLog(containerID string) error {
ctx, cancel := getContextWithTimeout(r.timeout)
defer cancel()
_, err := r.runtimeClient.ReopenContainerLog(ctx, &runtimeapi.ReopenContainerLogRequest{ContainerId: containerID})
if err != nil {
glog.Errorf("ReopenContainerLog %q from runtime service failed: %v", containerID, err)
return err
}
return nil
}