From 33b09de779e28c259f4474ed711e51eef88a5f56 Mon Sep 17 00:00:00 2001 From: zhuangqh Date: Mon, 4 Mar 2019 14:03:36 +0800 Subject: [PATCH 1/2] feature: cri support update container runtime spec annotations Signed-off-by: zhuangqh --- cri/apis/v1alpha2/api.pb.go | 823 +++++++++++++-------- cri/apis/v1alpha2/api.proto | 4 + cri/v1alpha2/cri.go | 5 +- docs/kubernetes/pouch_cri_api_changelog.md | 64 +- 4 files changed, 516 insertions(+), 380 deletions(-) diff --git a/cri/apis/v1alpha2/api.pb.go b/cri/apis/v1alpha2/api.pb.go index 969120a88..81b55e8ca 100644 --- a/cri/apis/v1alpha2/api.pb.go +++ b/cri/apis/v1alpha2/api.pb.go @@ -2785,6 +2785,10 @@ type UpdateContainerResourcesRequest struct { ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"` // Resource configuration specific to Linux containers. Linux *LinuxContainerResources `protobuf:"bytes,2,opt,name=linux" json:"linux,omitempty"` + // Annotations contains arbitrary metadata for the container. + // Note: spec_annotations is the metadata for container runtime, such as runc. Not + // the 'annotations' for Kubernetes objects. + SpecAnnotations map[string]string `protobuf:"bytes,3,rep,name=spec_annotations,json=specAnnotations" json:"spec_annotations,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *UpdateContainerResourcesRequest) Reset() { *m = UpdateContainerResourcesRequest{} } @@ -2807,6 +2811,13 @@ func (m *UpdateContainerResourcesRequest) GetLinux() *LinuxContainerResources { return nil } +func (m *UpdateContainerResourcesRequest) GetSpecAnnotations() map[string]string { + if m != nil { + return m.SpecAnnotations + } + return nil +} + type UpdateContainerResourcesResponse struct { } @@ -8372,6 +8383,23 @@ func (m *UpdateContainerResourcesRequest) MarshalTo(dAtA []byte) (int, error) { } i += n48 } + if len(m.SpecAnnotations) > 0 { + for k := range m.SpecAnnotations { + dAtA[i] = 0x1a + i++ + v := m.SpecAnnotations[k] + mapSize := 1 + len(k) + sovApi(uint64(len(k))) + 1 + len(v) + sovApi(uint64(len(v))) + i = encodeVarintApi(dAtA, i, uint64(mapSize)) + dAtA[i] = 0xa + i++ + i = encodeVarintApi(dAtA, i, uint64(len(k))) + i += copy(dAtA[i:], k) + dAtA[i] = 0x12 + i++ + i = encodeVarintApi(dAtA, i, uint64(len(v))) + i += copy(dAtA[i:], v) + } + } return i, nil } @@ -11411,6 +11439,14 @@ func (m *UpdateContainerResourcesRequest) Size() (n int) { l = m.Linux.Size() n += 1 + l + sovApi(uint64(l)) } + if len(m.SpecAnnotations) > 0 { + for k, v := range m.SpecAnnotations { + _ = k + _ = v + mapEntrySize := 1 + len(k) + sovApi(uint64(len(k))) + 1 + len(v) + sovApi(uint64(len(v))) + n += mapEntrySize + 1 + sovApi(uint64(mapEntrySize)) + } + } return n } @@ -13072,9 +13108,20 @@ func (this *UpdateContainerResourcesRequest) String() string { if this == nil { return "nil" } + keysForSpecAnnotations := make([]string, 0, len(this.SpecAnnotations)) + for k := range this.SpecAnnotations { + keysForSpecAnnotations = append(keysForSpecAnnotations, k) + } + github_com_gogo_protobuf_sortkeys.Strings(keysForSpecAnnotations) + mapStringForSpecAnnotations := "map[string]string{" + for _, k := range keysForSpecAnnotations { + mapStringForSpecAnnotations += fmt.Sprintf("%v: %v,", k, this.SpecAnnotations[k]) + } + mapStringForSpecAnnotations += "}" s := strings.Join([]string{`&UpdateContainerResourcesRequest{`, `ContainerId:` + fmt.Sprintf("%v", this.ContainerId) + `,`, `Linux:` + strings.Replace(fmt.Sprintf("%v", this.Linux), "LinuxContainerResources", "LinuxContainerResources", 1) + `,`, + `SpecAnnotations:` + mapStringForSpecAnnotations + `,`, `}`, }, "") return s @@ -24201,6 +24248,124 @@ func (m *UpdateContainerResourcesRequest) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field SpecAnnotations", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthApi + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.SpecAnnotations == nil { + m.SpecAnnotations = make(map[string]string) + } + var mapkey string + var mapvalue string + for iNdEx < postIndex { + entryPreIndex := 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) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey > l { + return io.ErrUnexpectedEOF + } + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var stringLenmapvalue uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowApi + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapvalue |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapvalue := int(stringLenmapvalue) + if intStringLenmapvalue < 0 { + return ErrInvalidLengthApi + } + postStringIndexmapvalue := iNdEx + intStringLenmapvalue + if postStringIndexmapvalue > l { + return io.ErrUnexpectedEOF + } + mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue]) + iNdEx = postStringIndexmapvalue + } else { + iNdEx = entryPreIndex + skippy, err := skipApi(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthApi + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + m.SpecAnnotations[mapkey] = mapvalue + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipApi(dAtA[iNdEx:]) @@ -30022,336 +30187,338 @@ var ( func init() { proto.RegisterFile("api.proto", fileDescriptorApi) } var fileDescriptorApi = []byte{ - // 5292 bytes of a gzipped FileDescriptorProto + // 5327 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7c, 0x4b, 0x73, 0x1b, 0x57, 0x76, 0x30, 0xf1, 0x20, 0x09, 0x1c, 0x10, 0x24, 0x78, 0x49, 0x89, 0x10, 0x64, 0xbd, 0x5a, 0x6f, 0xd9, 0xa2, 0x2c, 0x7a, 0x46, 0xb6, 0x1e, 0x23, 0x9b, 0x22, 0x29, 0x09, 0xdf, 0x48, 0x20, 0xbe, 0x06, 0x69, 0xd9, 0x63, 0x57, 0xf5, 0x34, 0xd1, 0x97, 0x60, 0x5b, 0x40, 0x77, 0xbb, 0x6f, 0x43, - 0x14, 0x93, 0xaa, 0x94, 0xab, 0x52, 0x99, 0x45, 0x56, 0x59, 0x67, 0x39, 0xb3, 0xc8, 0x22, 0x9b, - 0x54, 0xaa, 0xb2, 0xca, 0x2a, 0xa9, 0xa9, 0xd4, 0x6c, 0xa6, 0x2a, 0xab, 0x54, 0x1e, 0x9b, 0xd8, - 0xc9, 0x6a, 0x16, 0xa9, 0xfc, 0x83, 0xa4, 0xee, 0xab, 0xd1, 0x4f, 0x3c, 0x68, 0x79, 0xec, 0xac, - 0x88, 0x7b, 0xfa, 0x9c, 0x73, 0xcf, 0x3d, 0xf7, 0xf4, 0xb9, 0xe7, 0x71, 0x9b, 0x50, 0xd4, 0x1d, - 0x73, 0xd5, 0x71, 0x6d, 0xcf, 0x46, 0x15, 0xb7, 0x6f, 0x79, 0x66, 0x0f, 0xaf, 0xbe, 0xba, 0xad, - 0x77, 0x9d, 0x03, 0x7d, 0xad, 0x76, 0xb3, 0x63, 0x7a, 0x07, 0xfd, 0xbd, 0xd5, 0xb6, 0xdd, 0xbb, - 0xd5, 0xb1, 0x3b, 0xf6, 0x2d, 0x86, 0xb8, 0xd7, 0xdf, 0x67, 0x23, 0x36, 0x60, 0xbf, 0x38, 0x03, - 0xe5, 0x06, 0xcc, 0x7f, 0x8c, 0x5d, 0x62, 0xda, 0x96, 0x8a, 0xbf, 0xec, 0x63, 0xe2, 0xa1, 0x2a, - 0xcc, 0xbe, 0xe2, 0x90, 0x6a, 0xe6, 0x7c, 0xe6, 0x5a, 0x51, 0x95, 0x43, 0xe5, 0x2f, 0x32, 0xb0, - 0xe0, 0x23, 0x13, 0xc7, 0xb6, 0x08, 0x4e, 0xc7, 0x46, 0x17, 0x60, 0x4e, 0x08, 0xa7, 0x59, 0x7a, - 0x0f, 0x57, 0xb3, 0xec, 0x71, 0x49, 0xc0, 0x1a, 0x7a, 0x0f, 0xa3, 0xab, 0xb0, 0x20, 0x51, 0x24, - 0x93, 0x1c, 0xc3, 0x9a, 0x17, 0x60, 0x31, 0x1b, 0x5a, 0x85, 0x25, 0x89, 0xa8, 0x3b, 0xa6, 0x8f, - 0x9c, 0x67, 0xc8, 0x8b, 0xe2, 0xd1, 0xba, 0x63, 0x0a, 0x7c, 0xe5, 0x33, 0x28, 0x6e, 0x36, 0x5a, - 0x1b, 0xb6, 0xb5, 0x6f, 0x76, 0xa8, 0x88, 0x04, 0xbb, 0x94, 0xa6, 0x9a, 0x39, 0x9f, 0xa3, 0x22, - 0x8a, 0x21, 0xaa, 0x41, 0x81, 0x60, 0xdd, 0x6d, 0x1f, 0x60, 0x52, 0xcd, 0xb2, 0x47, 0xfe, 0x98, - 0x52, 0xd9, 0x8e, 0x67, 0xda, 0x16, 0xa9, 0xe6, 0x38, 0x95, 0x18, 0x2a, 0xbf, 0xcc, 0x40, 0xa9, - 0x69, 0xbb, 0xde, 0x73, 0xdd, 0x71, 0x4c, 0xab, 0x83, 0xee, 0x40, 0x81, 0xe9, 0xb2, 0x6d, 0x77, - 0x99, 0x0e, 0xe6, 0xd7, 0x6a, 0xab, 0xd1, 0x6d, 0x59, 0x6d, 0x0a, 0x0c, 0xd5, 0xc7, 0x45, 0x97, - 0x61, 0xbe, 0x6d, 0x5b, 0x9e, 0x6e, 0x5a, 0xd8, 0xd5, 0x1c, 0xdb, 0xf5, 0x98, 0x8a, 0xa6, 0xd5, - 0xb2, 0x0f, 0xa5, 0xb3, 0xa0, 0xd3, 0x50, 0x3c, 0xb0, 0x89, 0xc7, 0x31, 0x72, 0x0c, 0xa3, 0x40, - 0x01, 0xec, 0xe1, 0x0a, 0xcc, 0xb2, 0x87, 0xa6, 0x23, 0x94, 0x31, 0x43, 0x87, 0x75, 0x47, 0xf9, - 0x5d, 0x06, 0xa6, 0x9f, 0xdb, 0x7d, 0xcb, 0x8b, 0x4c, 0xa3, 0x7b, 0x07, 0x62, 0xa3, 0x02, 0xd3, - 0xe8, 0xde, 0xc1, 0x60, 0x1a, 0x8a, 0xc1, 0xf7, 0x8a, 0x4f, 0x43, 0x1f, 0xd6, 0xa0, 0xe0, 0x62, - 0xdd, 0xb0, 0xad, 0xee, 0x11, 0x13, 0xa1, 0xa0, 0xfa, 0x63, 0xba, 0x89, 0x04, 0x77, 0x4d, 0xab, - 0xff, 0x5a, 0x73, 0x71, 0x57, 0xdf, 0xc3, 0x5d, 0x26, 0x4a, 0x41, 0x9d, 0x17, 0x60, 0x95, 0x43, - 0xd1, 0x26, 0x94, 0x1c, 0xd7, 0x76, 0xf4, 0x8e, 0x4e, 0xf5, 0x58, 0x9d, 0x66, 0xaa, 0x52, 0xe2, - 0xaa, 0x62, 0x62, 0x37, 0x07, 0x98, 0x6a, 0x90, 0x0c, 0x21, 0xc8, 0x33, 0x73, 0x32, 0x98, 0x88, - 0xec, 0xb7, 0xf2, 0xd7, 0x19, 0x58, 0xa0, 0x06, 0x45, 0x1c, 0xbd, 0x8d, 0xb7, 0xd9, 0x36, 0xa1, - 0xbb, 0x30, 0x6b, 0x61, 0xef, 0xd0, 0x76, 0x5f, 0x8a, 0x4d, 0x39, 0x17, 0x9f, 0xc9, 0xa7, 0x79, - 0x6e, 0x1b, 0x58, 0x95, 0xf8, 0xe8, 0x36, 0xe4, 0x1c, 0xd3, 0x60, 0x4a, 0x18, 0x83, 0x8c, 0xe2, - 0x52, 0x12, 0xd3, 0x69, 0x33, 0xdd, 0x8c, 0x43, 0x62, 0x3a, 0x6d, 0x45, 0x01, 0xa8, 0x5b, 0xde, - 0x9d, 0x1f, 0x7d, 0xac, 0x77, 0xfb, 0x18, 0x2d, 0xc3, 0xf4, 0x2b, 0xfa, 0x83, 0x09, 0x9b, 0x53, - 0xf9, 0x40, 0xf9, 0x3a, 0x07, 0xa7, 0x9f, 0x51, 0x1d, 0xb6, 0x74, 0xcb, 0xd8, 0xb3, 0x5f, 0xb7, - 0x70, 0xbb, 0xef, 0x9a, 0xde, 0xd1, 0x86, 0x6d, 0x79, 0xf8, 0xb5, 0x87, 0x1a, 0xb0, 0x68, 0x49, - 0xce, 0x9a, 0x34, 0x57, 0xca, 0xa1, 0xb4, 0x76, 0x61, 0x88, 0x10, 0x5c, 0x45, 0x6a, 0xc5, 0x0a, - 0x03, 0x08, 0x7a, 0x3a, 0xd8, 0x4b, 0xc9, 0x2d, 0xcb, 0xb8, 0x25, 0x2c, 0xa9, 0xb5, 0xc5, 0x24, - 0x13, 0xbc, 0xe4, 0x66, 0x4b, 0x4e, 0x0f, 0x80, 0xbe, 0xe9, 0x9a, 0x4e, 0xb4, 0x3e, 0xc1, 0x2e, - 0x53, 0x4c, 0x69, 0xed, 0xad, 0x38, 0x97, 0x81, 0x0a, 0xd4, 0xa2, 0xdb, 0xb7, 0xd6, 0xc9, 0x2e, - 0xc1, 0x2e, 0x73, 0x0c, 0xc2, 0xbe, 0x34, 0xd7, 0xb6, 0xbd, 0x7d, 0x22, 0x6d, 0x4a, 0x82, 0x55, - 0x06, 0x45, 0xb7, 0x60, 0x89, 0xf4, 0x1d, 0xa7, 0x8b, 0x7b, 0xd8, 0xf2, 0xf4, 0xae, 0xd6, 0x71, - 0xed, 0xbe, 0x43, 0xaa, 0xd3, 0xe7, 0x73, 0xd7, 0x72, 0x2a, 0x0a, 0x3e, 0x7a, 0xc2, 0x9e, 0xa0, - 0xb3, 0x00, 0x8e, 0x6b, 0xbe, 0x32, 0xbb, 0xb8, 0x83, 0x8d, 0xea, 0x0c, 0x63, 0x1a, 0x80, 0xa0, - 0x77, 0x61, 0x99, 0xe0, 0x76, 0xdb, 0xee, 0x39, 0x9a, 0xe3, 0xda, 0xfb, 0x66, 0x17, 0xf3, 0x37, - 0x62, 0x96, 0x99, 0x1b, 0x12, 0xcf, 0x9a, 0xfc, 0x11, 0x7b, 0x37, 0x1e, 0x32, 0x3f, 0x47, 0x57, - 0xca, 0x26, 0xaf, 0x16, 0xc6, 0x58, 0x2a, 0xb0, 0xa5, 0x32, 0x91, 0x94, 0x5f, 0x66, 0xe1, 0x04, - 0xd3, 0x64, 0xd3, 0x36, 0xc4, 0x36, 0x0b, 0xc7, 0x75, 0x11, 0xca, 0x6d, 0xc6, 0x53, 0x73, 0x74, - 0x17, 0x5b, 0x9e, 0x78, 0x71, 0xe7, 0x38, 0xb0, 0xc9, 0x60, 0xe8, 0x13, 0xa8, 0x10, 0x61, 0x15, - 0x5a, 0x9b, 0x9b, 0x85, 0xd8, 0xb3, 0x9b, 0x71, 0x11, 0x86, 0xd8, 0x92, 0xba, 0x40, 0x62, 0xc6, - 0x35, 0x4b, 0x8e, 0x48, 0xdb, 0xeb, 0x72, 0x0f, 0x58, 0x5a, 0xfb, 0x51, 0x0a, 0xc3, 0xa8, 0xe0, - 0xab, 0x2d, 0x4e, 0xb6, 0x65, 0x79, 0xee, 0x91, 0x2a, 0x99, 0xd4, 0xee, 0xc1, 0x5c, 0xf0, 0x01, - 0xaa, 0x40, 0xee, 0x25, 0x3e, 0x12, 0x8b, 0xa2, 0x3f, 0x07, 0x2f, 0x01, 0xf7, 0x3f, 0x7c, 0x70, - 0x2f, 0xfb, 0x41, 0x46, 0x71, 0x01, 0x0d, 0x66, 0x79, 0x8e, 0x3d, 0xdd, 0xd0, 0x3d, 0xdd, 0xf7, - 0x05, 0x99, 0x81, 0x2f, 0xa0, 0x5c, 0xfb, 0xe2, 0xe5, 0x2d, 0xaa, 0xf4, 0x27, 0x7a, 0x0b, 0x8a, - 0xbe, 0xa1, 0x8b, 0xf3, 0x65, 0x00, 0xa0, 0x7e, 0x5e, 0xf7, 0x3c, 0xdc, 0x73, 0x3c, 0x66, 0x62, - 0x65, 0x55, 0x0e, 0x95, 0xff, 0xca, 0x43, 0x25, 0xb6, 0x27, 0x1f, 0x41, 0xa1, 0x27, 0xa6, 0x17, - 0x2f, 0xda, 0xa5, 0x04, 0x67, 0x1f, 0x13, 0x55, 0xf5, 0xa9, 0xa8, 0x2f, 0xa5, 0x7e, 0x35, 0x70, - 0x26, 0xfa, 0x63, 0xba, 0xe3, 0x5d, 0xbb, 0xa3, 0x19, 0xa6, 0x8b, 0xdb, 0x9e, 0xed, 0x1e, 0x09, - 0x71, 0xe7, 0xba, 0x76, 0x67, 0x53, 0xc2, 0xd0, 0x3d, 0x00, 0xc3, 0x22, 0x74, 0xb3, 0xf7, 0xcd, - 0x0e, 0x13, 0xba, 0xb4, 0x76, 0x3a, 0x2e, 0x84, 0x7f, 0x00, 0xaa, 0x45, 0xc3, 0x22, 0x42, 0xfc, - 0x47, 0x50, 0xa6, 0xe7, 0x88, 0xd6, 0xe3, 0x67, 0x17, 0x7f, 0x53, 0x4a, 0x6b, 0x67, 0x92, 0xd6, - 0xe0, 0x9f, 0x70, 0xea, 0x9c, 0x33, 0x18, 0x10, 0xf4, 0x18, 0x66, 0x98, 0x43, 0x27, 0xd5, 0x19, - 0x46, 0xbc, 0x3a, 0x4c, 0x01, 0xc2, 0x22, 0x9e, 0x31, 0x02, 0x6e, 0x10, 0x82, 0x1a, 0xed, 0x42, - 0x49, 0xb7, 0x2c, 0xdb, 0xd3, 0xb9, 0xa3, 0x99, 0x65, 0xcc, 0xde, 0x1b, 0x83, 0xd9, 0xfa, 0x80, - 0x8a, 0x73, 0x0c, 0xf2, 0x41, 0x3f, 0x81, 0x69, 0xe6, 0x89, 0xc4, 0x8b, 0x78, 0x75, 0x4c, 0xa3, - 0x55, 0x39, 0x55, 0xed, 0x2e, 0x94, 0x02, 0xc2, 0x4e, 0x62, 0xa4, 0xb5, 0x87, 0x50, 0x89, 0x8a, - 0x36, 0x91, 0x91, 0xff, 0x21, 0x2c, 0xab, 0x7d, 0x6b, 0x20, 0x98, 0x8c, 0xc8, 0xee, 0xc1, 0x8c, - 0xd8, 0x6c, 0x6e, 0x71, 0xca, 0x68, 0x1d, 0xa9, 0x82, 0x22, 0x18, 0x62, 0x1d, 0xe8, 0x96, 0xd1, - 0xc5, 0xae, 0x98, 0x57, 0x86, 0x58, 0x4f, 0x39, 0x54, 0xf9, 0x09, 0x9c, 0x88, 0x4c, 0x2e, 0x22, - 0xbc, 0x4b, 0x30, 0xef, 0xd8, 0x86, 0x46, 0x38, 0x58, 0x33, 0x0d, 0xe9, 0x86, 0x1c, 0x1f, 0xb7, - 0x6e, 0x50, 0xf2, 0x96, 0x67, 0x3b, 0x71, 0xe1, 0xc7, 0x23, 0xaf, 0xc2, 0xc9, 0x28, 0x39, 0x9f, - 0x5e, 0xf9, 0x10, 0x56, 0x54, 0xdc, 0xb3, 0x5f, 0xe1, 0xe3, 0xb2, 0xae, 0x41, 0x35, 0xce, 0x40, - 0x30, 0xff, 0x14, 0x56, 0x06, 0xd0, 0x96, 0xa7, 0x7b, 0x7d, 0x32, 0x11, 0x73, 0x11, 0xfe, 0xee, - 0xd9, 0x84, 0x6f, 0x67, 0x41, 0x95, 0x43, 0xe5, 0x7a, 0x90, 0x75, 0x83, 0x47, 0x16, 0x7c, 0x06, - 0x34, 0x0f, 0x59, 0xd3, 0x11, 0xec, 0xb2, 0xa6, 0xa3, 0x3c, 0x85, 0xa2, 0x7f, 0x34, 0xa3, 0xfb, - 0x83, 0xb8, 0x33, 0x3b, 0xee, 0x41, 0xee, 0x87, 0xa6, 0x3b, 0xb1, 0xa3, 0x44, 0x4c, 0x79, 0x1f, - 0xc0, 0x77, 0x79, 0x32, 0x42, 0x38, 0x3d, 0x84, 0xb1, 0x1a, 0x40, 0x57, 0xfe, 0x35, 0xe4, 0x08, - 0x03, 0x8b, 0x30, 0xfc, 0x45, 0x18, 0x21, 0xc7, 0x98, 0x3d, 0x96, 0x63, 0x7c, 0x1f, 0xa6, 0x89, - 0xa7, 0x7b, 0x58, 0x44, 0x51, 0x17, 0x86, 0x91, 0x53, 0x21, 0xb0, 0xca, 0xf1, 0xd1, 0x19, 0x80, - 0xb6, 0x8b, 0x75, 0x0f, 0x1b, 0x9a, 0xce, 0xbd, 0x78, 0x4e, 0x2d, 0x0a, 0xc8, 0xba, 0x87, 0x36, - 0x06, 0x91, 0xe0, 0x34, 0x13, 0xec, 0xfa, 0x30, 0xce, 0xa1, 0xad, 0x1a, 0xc4, 0x84, 0xbe, 0x57, - 0x99, 0x19, 0xd3, 0xab, 0x08, 0x06, 0x9c, 0x2a, 0xe0, 0x33, 0x67, 0x47, 0xfb, 0x4c, 0x4e, 0x3a, - 0x8e, 0xcf, 0x2c, 0x8c, 0xf6, 0x99, 0x82, 0xd9, 0x50, 0x9f, 0xf9, 0x7d, 0x3a, 0xbd, 0x7f, 0xc9, - 0x40, 0x35, 0xfe, 0x0e, 0x0a, 0xdf, 0x73, 0x0f, 0x66, 0x08, 0x83, 0x8c, 0xe3, 0xf9, 0x04, 0xad, - 0xa0, 0x40, 0x4f, 0x21, 0x6f, 0x5a, 0xfb, 0x36, 0x4b, 0xec, 0x12, 0x63, 0x97, 0xb4, 0x59, 0x57, - 0xeb, 0xd6, 0xbe, 0xcd, 0x95, 0xc4, 0x38, 0xd4, 0xde, 0x87, 0xa2, 0x0f, 0x9a, 0x68, 0x6d, 0xdb, - 0xb0, 0x1c, 0x31, 0x59, 0x1e, 0xec, 0xfb, 0x96, 0x9e, 0x99, 0xcc, 0xd2, 0x95, 0xaf, 0xb2, 0xc1, - 0x37, 0xf1, 0xb1, 0xd9, 0xf5, 0xb0, 0x1b, 0x7b, 0x13, 0x1f, 0x48, 0xee, 0xfc, 0x35, 0xbc, 0x32, - 0x92, 0x3b, 0x8f, 0x49, 0xc5, 0xcb, 0xf4, 0x39, 0xcc, 0x33, 0x5b, 0xd3, 0x08, 0xee, 0xb2, 0x80, - 0x43, 0x04, 0x7f, 0x3f, 0x1e, 0xc6, 0x86, 0x4b, 0xc2, 0x2d, 0xb6, 0x25, 0xe8, 0xb8, 0x06, 0xcb, - 0xdd, 0x20, 0xac, 0xf6, 0x11, 0xa0, 0x38, 0xd2, 0x44, 0x3a, 0x6d, 0x51, 0x17, 0x47, 0xb3, 0xdf, - 0x84, 0x53, 0x72, 0x9f, 0x89, 0x31, 0x8e, 0xad, 0x70, 0x81, 0x55, 0x41, 0xa1, 0xfc, 0x3a, 0x07, - 0x30, 0x78, 0xf8, 0x7f, 0xc8, 0xb7, 0x7d, 0xe4, 0xfb, 0x15, 0x1e, 0xc8, 0x5d, 0x1b, 0xc6, 0x38, - 0xd1, 0xa3, 0x6c, 0x87, 0x3d, 0x0a, 0x0f, 0xe9, 0x6e, 0x0e, 0x65, 0xf3, 0x83, 0xf5, 0x25, 0xcf, - 0xe0, 0x64, 0xd4, 0x36, 0x84, 0x23, 0x59, 0x83, 0x69, 0xd3, 0xc3, 0x3d, 0x5e, 0x01, 0x4a, 0xcc, - 0xce, 0x02, 0x44, 0x1c, 0x55, 0xb9, 0x00, 0xc5, 0x7a, 0x4f, 0xef, 0xe0, 0x96, 0x83, 0xdb, 0x74, - 0x52, 0x93, 0x0e, 0x84, 0x20, 0x7c, 0xa0, 0xac, 0x41, 0xe1, 0xa7, 0xf8, 0x88, 0xbf, 0xd4, 0x63, - 0x0a, 0xaa, 0xfc, 0x43, 0x01, 0x56, 0xd8, 0x59, 0xb1, 0x21, 0xeb, 0x2f, 0x2a, 0x26, 0x76, 0xdf, - 0x6d, 0x63, 0xc2, 0x76, 0xdb, 0xe9, 0x6b, 0x0e, 0x76, 0x4d, 0xdb, 0x10, 0xa5, 0x80, 0x62, 0xdb, - 0xe9, 0x37, 0x19, 0x00, 0x9d, 0x06, 0x3a, 0xd0, 0xbe, 0xec, 0xdb, 0xc2, 0x10, 0x73, 0x6a, 0xa1, - 0xed, 0xf4, 0xff, 0x3f, 0x1d, 0x4b, 0x5a, 0x72, 0xa0, 0xbb, 0x98, 0x30, 0x3b, 0xe3, 0xb4, 0x2d, - 0x06, 0x40, 0xb7, 0xe1, 0x44, 0x0f, 0xf7, 0x6c, 0xf7, 0x48, 0xeb, 0x9a, 0x3d, 0xd3, 0xd3, 0x4c, - 0x4b, 0xdb, 0x3b, 0xf2, 0x30, 0x11, 0x36, 0x85, 0xf8, 0xc3, 0x67, 0xf4, 0x59, 0xdd, 0x7a, 0x44, - 0x9f, 0x20, 0x05, 0xca, 0xb6, 0xdd, 0xd3, 0x48, 0xdb, 0x76, 0xb1, 0xa6, 0x1b, 0x5f, 0xb0, 0xe3, - 0x33, 0xa7, 0x96, 0x6c, 0xbb, 0xd7, 0xa2, 0xb0, 0x75, 0xe3, 0x0b, 0x74, 0x0e, 0x4a, 0x6d, 0xa7, - 0x4f, 0xb0, 0xa7, 0xd1, 0x3f, 0xec, 0x74, 0x2c, 0xaa, 0xc0, 0x41, 0x1b, 0x4e, 0x9f, 0x04, 0x10, - 0x7a, 0x54, 0xff, 0xb3, 0x41, 0x84, 0xe7, 0xb8, 0x47, 0xd0, 0x0b, 0x00, 0xc3, 0x24, 0x2f, 0xc5, - 0xaa, 0x0c, 0xb6, 0x3f, 0x1f, 0xa4, 0x1c, 0xaf, 0x71, 0x95, 0xad, 0x6e, 0x9a, 0xe4, 0x25, 0x53, - 0x00, 0x37, 0xc5, 0xa2, 0x21, 0xc7, 0xe8, 0x02, 0xcc, 0xed, 0x75, 0x5f, 0x9a, 0xb6, 0x76, 0x88, - 0xcd, 0xce, 0x81, 0x57, 0xc5, 0x2c, 0xbd, 0x2b, 0x31, 0xd8, 0x0b, 0x06, 0x42, 0x0d, 0x58, 0x0a, - 0xa2, 0x68, 0x06, 0x7e, 0x65, 0xb6, 0x71, 0x75, 0x9f, 0x09, 0x71, 0x36, 0x2e, 0x04, 0x27, 0xdb, - 0x64, 0x58, 0xea, 0x62, 0x80, 0x13, 0x07, 0xa1, 0x16, 0x9c, 0xe0, 0xfc, 0x38, 0x23, 0xcd, 0xc5, - 0xba, 0xa1, 0xed, 0x39, 0xa4, 0xda, 0x61, 0x1c, 0xcf, 0xc7, 0x39, 0xee, 0x1c, 0xb8, 0xb6, 0xe7, - 0x75, 0xb1, 0xe0, 0x89, 0x18, 0xb9, 0x18, 0x60, 0xdd, 0x78, 0xe4, 0xd0, 0x33, 0xff, 0x64, 0x88, - 0xe9, 0xa1, 0x6b, 0x7a, 0x98, 0x71, 0x3d, 0x18, 0x93, 0xeb, 0x52, 0x80, 0xeb, 0x0b, 0x4a, 0x9d, - 0xc4, 0x96, 0xc9, 0x5a, 0xdf, 0x76, 0x48, 0xd5, 0x3c, 0x06, 0x5b, 0x2a, 0x2c, 0x25, 0x46, 0x2f, - 0x60, 0x25, 0x41, 0x5a, 0xc6, 0xf7, 0x8b, 0x31, 0xf9, 0x2e, 0x47, 0xc5, 0x65, 0x8c, 0x2f, 0x42, - 0xf9, 0x25, 0x76, 0x2d, 0xdc, 0xd5, 0xb8, 0xa9, 0x56, 0x5f, 0x32, 0x6b, 0x9c, 0xe3, 0xc0, 0xe7, - 0x0c, 0x86, 0x6e, 0x82, 0x30, 0x64, 0xcd, 0xc5, 0x04, 0xbb, 0xaf, 0x78, 0xa9, 0xb1, 0xcb, 0x30, - 0x17, 0xf9, 0x13, 0x75, 0xf0, 0x00, 0xd5, 0x41, 0x00, 0x35, 0x72, 0xc8, 0xd2, 0x5b, 0x4c, 0x48, - 0xb5, 0x37, 0x46, 0x01, 0xa7, 0xc2, 0xc9, 0x5a, 0x3e, 0x15, 0x5a, 0x83, 0xd9, 0x3e, 0x7b, 0xb3, - 0x48, 0xd5, 0x62, 0xeb, 0xac, 0xc6, 0x19, 0xec, 0x32, 0x04, 0x55, 0x22, 0xd6, 0x1e, 0xc0, 0x7c, - 0xd8, 0x7c, 0x27, 0xf2, 0x76, 0xf7, 0x60, 0x2e, 0x64, 0x7c, 0x08, 0xf2, 0x81, 0xf2, 0x2e, 0xfb, - 0x8d, 0x4e, 0xc2, 0x0c, 0xc7, 0x61, 0xe4, 0x65, 0x55, 0x8c, 0x94, 0x0f, 0x60, 0x3e, 0xac, 0xf4, - 0x44, 0x6a, 0x04, 0x79, 0x57, 0x06, 0x12, 0x79, 0x95, 0xfd, 0x56, 0x36, 0x61, 0x86, 0x2f, 0x23, - 0xb1, 0xfa, 0x82, 0x20, 0x7f, 0xa0, 0xbb, 0x86, 0x70, 0x4e, 0xec, 0x37, 0x85, 0x11, 0x7b, 0xdf, - 0x13, 0x2e, 0x89, 0xfd, 0x56, 0x74, 0x28, 0x87, 0xea, 0x87, 0x14, 0x89, 0x15, 0x0a, 0x05, 0x33, - 0xfa, 0x9b, 0x4d, 0x6f, 0x77, 0xe5, 0xca, 0xd9, 0x6f, 0x0a, 0xf3, 0x8e, 0x1c, 0x59, 0xc7, 0x61, - 0xbf, 0xa9, 0x8a, 0xba, 0xf8, 0x95, 0xa8, 0x3b, 0x17, 0x55, 0x3e, 0x50, 0x0c, 0x80, 0x0d, 0xdd, - 0xd1, 0xf7, 0xcc, 0xae, 0xe9, 0x1d, 0xa1, 0xeb, 0x50, 0xd1, 0x0d, 0x43, 0x6b, 0x4b, 0x88, 0x89, - 0x65, 0x37, 0x60, 0x41, 0x37, 0x8c, 0x8d, 0x00, 0x18, 0xbd, 0x0d, 0x8b, 0x86, 0x6b, 0x3b, 0x61, - 0x5c, 0xde, 0x1e, 0xa8, 0xd0, 0x07, 0x41, 0x64, 0xe5, 0x3f, 0xa7, 0xe1, 0x4c, 0xd8, 0x35, 0x45, - 0x6b, 0xb4, 0x1f, 0xc1, 0x5c, 0x64, 0xd6, 0x14, 0xf3, 0x1a, 0x48, 0xab, 0x86, 0x28, 0x22, 0x35, - 0xcb, 0x6c, 0xac, 0x66, 0x99, 0x58, 0x05, 0xce, 0xbd, 0xd1, 0x2a, 0x70, 0xfe, 0x8d, 0x54, 0x81, - 0xa7, 0x27, 0xab, 0x02, 0x5f, 0x61, 0xb5, 0x0b, 0x49, 0xcd, 0x6c, 0x8d, 0x9f, 0x2f, 0x65, 0x1f, - 0xc7, 0x92, 0x6d, 0xa4, 0x48, 0xb5, 0x78, 0x76, 0x92, 0x6a, 0x71, 0x21, 0xb5, 0x5a, 0x4c, 0xad, - 0xc6, 0x71, 0x74, 0xb7, 0x67, 0xbb, 0xb2, 0x1c, 0x5c, 0x2d, 0x32, 0x11, 0x16, 0x24, 0x5c, 0x94, - 0x82, 0x53, 0x0b, 0xc7, 0x90, 0x5a, 0x38, 0x3e, 0x0f, 0x73, 0x96, 0xad, 0x59, 0xf8, 0x50, 0xa3, - 0x7b, 0x49, 0xaa, 0x25, 0xbe, 0xb1, 0x96, 0xdd, 0xc0, 0x87, 0x4d, 0x0a, 0x89, 0x95, 0x96, 0xe7, - 0x26, 0x2b, 0x2d, 0xd3, 0x13, 0xb0, 0xa7, 0x93, 0x97, 0xd8, 0x60, 0xa2, 0x90, 0x6a, 0x99, 0x19, - 0x71, 0x89, 0xc3, 0xa8, 0x0c, 0x04, 0x5d, 0x06, 0x5f, 0x49, 0x02, 0x69, 0x9e, 0x21, 0x95, 0x25, - 0x94, 0xa1, 0x29, 0x7f, 0x9b, 0x81, 0xe5, 0xb0, 0x99, 0x8b, 0x82, 0xe2, 0x13, 0x28, 0xba, 0xf2, - 0x2c, 0x16, 0xa6, 0x7d, 0x7d, 0xec, 0xc3, 0x5b, 0x1d, 0xd0, 0xa2, 0x9f, 0xa5, 0xd6, 0xb1, 0x6f, - 0x8d, 0xe2, 0x37, 0xaa, 0x92, 0xad, 0xd4, 0xe1, 0xdc, 0x0b, 0xd3, 0x32, 0xec, 0x43, 0x92, 0xfa, - 0x96, 0x26, 0xd8, 0x5a, 0x26, 0xc1, 0xd6, 0x94, 0xbf, 0xcb, 0xc0, 0xc9, 0x28, 0x2f, 0xa1, 0x8a, - 0x7a, 0x5c, 0x15, 0x6f, 0x27, 0x84, 0x10, 0x11, 0xe2, 0x44, 0x65, 0x7c, 0x9e, 0xaa, 0x8c, 0xdb, - 0xa3, 0x39, 0x8e, 0x54, 0xc7, 0x5f, 0x66, 0xe0, 0x54, 0xaa, 0x18, 0x91, 0x38, 0x32, 0x13, 0x8d, - 0x23, 0x45, 0x0c, 0xda, 0xb6, 0xfb, 0x96, 0x17, 0x88, 0x41, 0x37, 0x58, 0xaf, 0x91, 0x07, 0x7b, - 0x5a, 0x4f, 0x7f, 0x6d, 0xf6, 0xfa, 0x3d, 0xe1, 0xf1, 0x29, 0xbb, 0xe7, 0x1c, 0x72, 0x8c, 0x28, - 0x54, 0x59, 0x87, 0x45, 0x5f, 0xca, 0xa1, 0x95, 0xff, 0x40, 0x25, 0x3f, 0x1b, 0xae, 0xe4, 0x5b, - 0x30, 0x23, 0x4e, 0xb9, 0x37, 0xd1, 0x0c, 0x3d, 0x0f, 0x25, 0x07, 0xbb, 0x3d, 0x93, 0x10, 0xdf, - 0xd1, 0x16, 0xd5, 0x20, 0x48, 0xf9, 0xd5, 0x2c, 0x2c, 0x44, 0xad, 0xe3, 0xc3, 0x58, 0xe3, 0xe0, - 0x62, 0xc2, 0x11, 0x10, 0x5d, 0x68, 0x20, 0x85, 0xbc, 0x2d, 0x33, 0x90, 0x6c, 0x5a, 0xf5, 0xce, - 0xcf, 0x56, 0x44, 0x7a, 0x42, 0x35, 0xd2, 0xb6, 0x7b, 0x3d, 0xdd, 0x32, 0x64, 0x0f, 0x5b, 0x0c, - 0xa9, 0xfe, 0x74, 0xb7, 0x43, 0xd5, 0x4e, 0xc1, 0xec, 0x37, 0xdd, 0xbc, 0x43, 0xdb, 0x7d, 0x69, - 0x5a, 0xac, 0x01, 0xc1, 0x9c, 0x75, 0x51, 0x05, 0x01, 0xda, 0x34, 0x5d, 0xb4, 0x0a, 0x79, 0x6c, - 0xbd, 0x92, 0x39, 0x62, 0x42, 0x93, 0x5b, 0xe6, 0x42, 0x2a, 0xc3, 0x43, 0xb7, 0x60, 0xa6, 0x47, - 0xcd, 0x42, 0x16, 0xbd, 0x56, 0x52, 0x7a, 0xbd, 0xaa, 0x40, 0xa3, 0x31, 0x14, 0x8f, 0x1a, 0x65, - 0x65, 0x2b, 0x21, 0x86, 0x12, 0x31, 0xa2, 0x44, 0x44, 0x5b, 0x7e, 0x06, 0x5c, 0x4c, 0x4b, 0x5d, - 0x23, 0x5b, 0x91, 0x98, 0x06, 0xef, 0x84, 0xd3, 0x60, 0x60, 0xbc, 0xd6, 0x46, 0xf3, 0x1a, 0xde, - 0x8b, 0x38, 0x05, 0x85, 0xae, 0xdd, 0xe1, 0x66, 0x54, 0xe2, 0xd7, 0x23, 0xba, 0x76, 0x87, 0x59, - 0xd1, 0x32, 0x4c, 0x13, 0xcf, 0x30, 0x2d, 0xe6, 0xd4, 0x0b, 0x2a, 0x1f, 0xd0, 0x97, 0x8f, 0xfd, - 0xd0, 0x6c, 0xab, 0x8d, 0xab, 0x65, 0xf6, 0xa8, 0xc8, 0x20, 0xdb, 0x56, 0x9b, 0xe5, 0x98, 0x9e, - 0x77, 0x54, 0x9d, 0x67, 0x70, 0xfa, 0x13, 0x3d, 0x90, 0x75, 0xc9, 0x85, 0xb4, 0x62, 0x4f, 0x92, - 0xdb, 0x96, 0x65, 0xc9, 0x47, 0x30, 0x7b, 0xc8, 0x1d, 0x41, 0xb5, 0xc2, 0xe8, 0xaf, 0x8d, 0x76, - 0x2f, 0x82, 0x83, 0x24, 0xa4, 0x87, 0x8c, 0x85, 0x3d, 0x7a, 0x86, 0xd9, 0xd4, 0xc9, 0xb0, 0xc6, - 0x7c, 0x4e, 0x2d, 0x59, 0xd8, 0x6b, 0x0a, 0x10, 0x55, 0x03, 0xcb, 0xee, 0x34, 0xd3, 0x60, 0x59, - 0x58, 0x51, 0x9d, 0x65, 0xe3, 0xba, 0xf1, 0x7d, 0x56, 0x0b, 0x7e, 0x9d, 0x81, 0x93, 0x1b, 0xac, - 0x92, 0x12, 0xf0, 0x82, 0x93, 0x14, 0xff, 0xef, 0xfa, 0x7d, 0x99, 0xd4, 0x4a, 0x7d, 0x54, 0x6b, - 0xb2, 0x2d, 0x53, 0x87, 0x79, 0xc9, 0x5c, 0xb0, 0xc8, 0x8d, 0xdd, 0xda, 0x29, 0x93, 0xe0, 0x50, - 0x79, 0x00, 0x2b, 0xb1, 0x55, 0x88, 0xaa, 0xc7, 0x05, 0x98, 0x1b, 0x78, 0x3b, 0x7f, 0x11, 0x25, - 0x1f, 0x56, 0x37, 0x94, 0x7b, 0x70, 0xa2, 0xe5, 0xe9, 0xae, 0x17, 0x53, 0xc1, 0x18, 0xb4, 0xac, - 0x69, 0x13, 0xa6, 0x15, 0x7d, 0x95, 0x16, 0x2c, 0xb7, 0x3c, 0xdb, 0x39, 0x06, 0x53, 0xea, 0xb3, - 0xe8, 0xfa, 0xed, 0xbe, 0x3c, 0x5d, 0xe4, 0x50, 0x59, 0xe1, 0x2d, 0xa6, 0xf8, 0x6c, 0xf7, 0xe1, - 0x24, 0xef, 0xf0, 0x1c, 0x67, 0x11, 0xa7, 0x64, 0x7f, 0x29, 0xce, 0xf7, 0x39, 0x2c, 0x0d, 0x0e, - 0xd5, 0x41, 0xf5, 0xf6, 0x4e, 0xb8, 0x7a, 0x7b, 0x7e, 0xc8, 0xae, 0x87, 0x8a, 0xb7, 0xbf, 0xca, - 0x06, 0x4e, 0x85, 0x94, 0xda, 0xed, 0xfd, 0x70, 0xed, 0xf6, 0xf2, 0x28, 0xde, 0xa1, 0xd2, 0x6d, - 0xdc, 0x6a, 0x73, 0x09, 0x56, 0xfb, 0x59, 0xac, 0xc0, 0x9b, 0x4f, 0xab, 0x90, 0x47, 0xa4, 0xfd, - 0xbd, 0xd4, 0x77, 0x55, 0x5e, 0xdf, 0xf5, 0xa7, 0xf6, 0x1b, 0x72, 0x77, 0x23, 0xf5, 0xdd, 0x0b, - 0x23, 0xe5, 0xf5, 0xcb, 0xbb, 0x7f, 0x93, 0x87, 0xa2, 0xff, 0x2c, 0xa6, 0xf3, 0xb8, 0xda, 0xb2, - 0x09, 0x6a, 0x0b, 0x9e, 0xdf, 0xb9, 0x6f, 0x75, 0x7e, 0xe7, 0xc7, 0x3e, 0xbf, 0x4f, 0x43, 0x91, - 0xfd, 0xd0, 0x5c, 0xbc, 0x2f, 0xce, 0xe3, 0x02, 0x03, 0xa8, 0x78, 0x7f, 0x60, 0x86, 0x33, 0x13, - 0x99, 0x61, 0xa4, 0xa2, 0x3c, 0x1b, 0xad, 0x28, 0x7f, 0xe8, 0x9f, 0xa7, 0xfc, 0x08, 0xbe, 0x3a, - 0x84, 0x6f, 0xe2, 0x49, 0xda, 0x08, 0x9f, 0xa4, 0xfc, 0x54, 0x7e, 0x67, 0x18, 0x97, 0x1f, 0x6c, - 0x3d, 0x79, 0x97, 0xd7, 0x93, 0x83, 0xb6, 0x28, 0x3c, 0xeb, 0x7d, 0x00, 0xdf, 0x89, 0xc8, 0xa2, - 0xf2, 0xe9, 0x21, 0x6b, 0x54, 0x03, 0xe8, 0x94, 0x6d, 0x68, 0x6b, 0x06, 0x4d, 0xe7, 0xf1, 0xfc, - 0x63, 0x4a, 0xc7, 0xf9, 0xaf, 0x0a, 0x01, 0xff, 0x92, 0xd2, 0xa5, 0xfd, 0x30, 0xd6, 0xc9, 0x98, - 0xd0, 0x8a, 0xef, 0x84, 0x1b, 0x19, 0xc7, 0xb4, 0xba, 0x58, 0x1f, 0x83, 0xc5, 0x3d, 0xba, 0x2b, - 0x1e, 0xf3, 0x3a, 0x73, 0x51, 0x40, 0xd6, 0x59, 0x5e, 0xb1, 0x6f, 0x5a, 0x26, 0x39, 0xe0, 0xcf, - 0x67, 0x78, 0x5e, 0x21, 0x41, 0xeb, 0xec, 0x92, 0x24, 0x7e, 0x6d, 0x7a, 0x5a, 0xdb, 0x36, 0x30, - 0xb3, 0xe9, 0x69, 0xb5, 0x40, 0x01, 0x1b, 0xb6, 0x81, 0x07, 0x6f, 0x5e, 0xe1, 0x78, 0x6f, 0x5e, - 0x31, 0xf2, 0xe6, 0x9d, 0x84, 0x19, 0x17, 0xeb, 0xc4, 0xb6, 0x44, 0x72, 0x2f, 0x46, 0x74, 0x6b, - 0x7a, 0x98, 0x10, 0x3a, 0x93, 0x08, 0xf6, 0xc4, 0x30, 0x10, 0xa4, 0xce, 0x8d, 0x0c, 0x52, 0x87, - 0x74, 0x7f, 0x23, 0x41, 0x6a, 0x79, 0x64, 0x90, 0x3a, 0x4e, 0xf3, 0x37, 0x10, 0xa6, 0xcf, 0x8f, - 0x17, 0xa6, 0x07, 0xa3, 0xda, 0x85, 0x70, 0x54, 0xfb, 0x14, 0x66, 0x5f, 0xd9, 0xdd, 0x7e, 0x0f, - 0x13, 0x51, 0xc9, 0x5f, 0x1d, 0x2d, 0xdd, 0xc7, 0x9c, 0x40, 0xdc, 0x16, 0x13, 0xe4, 0xe1, 0xc2, - 0x02, 0xfe, 0x16, 0x85, 0x85, 0x60, 0xf0, 0xb9, 0x1f, 0x0a, 0x3e, 0xfd, 0x84, 0xa6, 0x33, 0x5e, - 0x42, 0xf3, 0x3d, 0xba, 0xa2, 0xda, 0x0e, 0xcc, 0x05, 0xf5, 0x94, 0x40, 0xbb, 0x1a, 0xa4, 0x4d, - 0x4c, 0x9d, 0x38, 0x83, 0xa0, 0x83, 0x2b, 0xc0, 0x0c, 0x07, 0x2a, 0xff, 0x94, 0x81, 0x95, 0x98, - 0x53, 0x12, 0xce, 0xee, 0x6e, 0xa4, 0x0b, 0x7f, 0x61, 0xe4, 0x9e, 0xfa, 0x4d, 0xf8, 0x27, 0xa1, - 0x26, 0xfc, 0x7b, 0xa3, 0x09, 0xdf, 0x78, 0x0f, 0xfe, 0x4f, 0x32, 0x70, 0x6e, 0xd7, 0x31, 0x22, - 0xf1, 0xb1, 0x30, 0x93, 0xf1, 0xdd, 0xee, 0x87, 0x32, 0xcf, 0xca, 0x4e, 0x6a, 0x8a, 0x9c, 0x4e, - 0x51, 0xe0, 0x7c, 0xba, 0x18, 0x22, 0xe0, 0xfc, 0x39, 0x2c, 0x6c, 0xbd, 0xc6, 0xed, 0xd6, 0x91, - 0xd5, 0x9e, 0x40, 0xb4, 0x0a, 0xe4, 0xda, 0x3d, 0x43, 0x54, 0xa8, 0xe9, 0xcf, 0x60, 0x0c, 0x9d, - 0x0b, 0xc7, 0xd0, 0x1a, 0x54, 0x06, 0x33, 0x88, 0xed, 0x3d, 0x49, 0xb7, 0xd7, 0xa0, 0xc8, 0x94, - 0xf9, 0x9c, 0x2a, 0x46, 0x02, 0x8e, 0x5d, 0x7e, 0x63, 0x8c, 0xc3, 0xb1, 0xeb, 0x86, 0x7d, 0x6d, - 0x2e, 0xec, 0x6b, 0x95, 0x3f, 0xcf, 0x40, 0x89, 0xce, 0xf0, 0xad, 0xe4, 0x17, 0x69, 0x6e, 0x6e, - 0x90, 0xe6, 0xfa, 0xd9, 0x72, 0x3e, 0x98, 0x2d, 0x0f, 0x24, 0x9f, 0x66, 0xe0, 0xb8, 0xe4, 0x33, - 0x3e, 0x1c, 0xbb, 0xae, 0x72, 0x1e, 0xe6, 0xb8, 0x6c, 0x62, 0xe5, 0x15, 0xc8, 0xf5, 0xdd, 0xae, - 0xb4, 0xa3, 0xbe, 0xdb, 0x55, 0xfe, 0x34, 0x03, 0xe5, 0x75, 0xcf, 0xd3, 0xdb, 0x07, 0x13, 0x2c, - 0xc0, 0x17, 0x2e, 0x1b, 0x14, 0x2e, 0xbe, 0x88, 0x81, 0xb8, 0xf9, 0x14, 0x71, 0xa7, 0x43, 0xe2, - 0x2a, 0x30, 0x2f, 0x65, 0x49, 0x15, 0xb8, 0x01, 0xa8, 0x69, 0xbb, 0xde, 0x63, 0xdb, 0x3d, 0xd4, - 0x5d, 0x63, 0xb2, 0xfc, 0x15, 0x41, 0x5e, 0x7c, 0x76, 0x90, 0xbb, 0x36, 0xad, 0xb2, 0xdf, 0xca, - 0x55, 0x58, 0x0a, 0xf1, 0x4b, 0x9d, 0xf8, 0x23, 0x28, 0xb1, 0x53, 0x53, 0x24, 0x32, 0xb7, 0x83, - 0xfd, 0xf1, 0xb1, 0xce, 0x58, 0xe5, 0xff, 0xc1, 0x22, 0x8d, 0xae, 0x18, 0xdc, 0x7f, 0x15, 0x7f, - 0x1c, 0x89, 0xf2, 0xcf, 0xa4, 0x30, 0x8a, 0x44, 0xf8, 0xbf, 0xcd, 0xc2, 0x34, 0x83, 0xc7, 0x22, - 0x9e, 0xd3, 0xf4, 0x1c, 0x71, 0x6c, 0xcd, 0xd3, 0x3b, 0xfe, 0x47, 0x1e, 0x14, 0xb0, 0xa3, 0x77, - 0x58, 0xed, 0x82, 0x3d, 0x34, 0xcc, 0x0e, 0x26, 0x9e, 0xfc, 0xd2, 0xa3, 0x44, 0x61, 0x9b, 0x1c, - 0xc4, 0xba, 0x57, 0xe6, 0x1f, 0xf0, 0xa8, 0x3d, 0xaf, 0xb2, 0xdf, 0x68, 0x95, 0xdf, 0x31, 0x1e, - 0xa7, 0x9d, 0xc1, 0x6e, 0x20, 0xd7, 0xa0, 0x10, 0xe9, 0x60, 0xf8, 0x63, 0xf4, 0x30, 0x7a, 0x62, - 0x5e, 0x4a, 0x59, 0x71, 0xf2, 0x39, 0xf9, 0x1d, 0x1d, 0x0c, 0x5b, 0x80, 0x82, 0x7b, 0x23, 0xac, - 0xe0, 0x16, 0xcc, 0xb0, 0xad, 0x93, 0x11, 0xef, 0x4a, 0x8a, 0xa8, 0xaa, 0x40, 0x53, 0x74, 0x40, - 0x7c, 0xdb, 0x43, 0x51, 0xee, 0xe4, 0xb6, 0x32, 0x24, 0xea, 0xfd, 0xfb, 0x0c, 0x2c, 0x85, 0xe6, - 0x10, 0xb2, 0xde, 0x0c, 0x4f, 0x92, 0x2a, 0xaa, 0x98, 0x60, 0x23, 0x74, 0x50, 0xdd, 0x4a, 0x13, - 0xe9, 0x3b, 0x3a, 0xa4, 0x7e, 0x9b, 0x01, 0x58, 0xef, 0x7b, 0x07, 0xa2, 0x56, 0x1c, 0xb4, 0x97, - 0x4c, 0xc4, 0x5e, 0x6a, 0x50, 0x70, 0x74, 0x42, 0x0e, 0x6d, 0x57, 0xe6, 0xa9, 0xfe, 0x98, 0x55, - 0x75, 0xfb, 0xde, 0x81, 0x6c, 0x8e, 0xd2, 0xdf, 0xe8, 0x32, 0xcc, 0xf3, 0xcf, 0x9d, 0x34, 0xdd, - 0x30, 0x5c, 0x4c, 0x88, 0xe8, 0x92, 0x96, 0x39, 0x74, 0x9d, 0x03, 0x29, 0x9a, 0x69, 0x60, 0xcb, - 0x33, 0xbd, 0x23, 0xcd, 0xb3, 0x5f, 0x62, 0x4b, 0xe4, 0x9b, 0x65, 0x09, 0xdd, 0xa1, 0x40, 0xde, - 0x2e, 0xea, 0x98, 0xc4, 0x73, 0x25, 0x9a, 0xec, 0xc8, 0x09, 0x28, 0x43, 0xa3, 0x9b, 0x52, 0x69, - 0xf6, 0xbb, 0x5d, 0xae, 0xe2, 0xe3, 0x6f, 0xfb, 0xbb, 0x62, 0x41, 0xd9, 0xb4, 0x37, 0x6d, 0xa0, - 0x34, 0xb1, 0xdc, 0x37, 0x58, 0x58, 0x7b, 0x17, 0x16, 0x03, 0x6b, 0x10, 0x66, 0x15, 0x4a, 0x0c, - 0x32, 0xe1, 0xc4, 0x40, 0x79, 0x02, 0x88, 0xd7, 0x92, 0xbe, 0xe5, 0xba, 0x95, 0x13, 0xb0, 0x14, - 0x62, 0x24, 0xe2, 0x83, 0x1b, 0x50, 0x16, 0xd7, 0x53, 0x85, 0xa1, 0x9c, 0x82, 0x02, 0xf5, 0xf3, - 0x6d, 0xd3, 0x90, 0x9d, 0xf3, 0x59, 0xc7, 0x36, 0x36, 0x4c, 0xc3, 0x55, 0x5e, 0x40, 0x59, 0xe5, - 0xf3, 0x08, 0xdc, 0xc7, 0x30, 0x2f, 0x2e, 0xb3, 0x6a, 0xa1, 0xdb, 0xe4, 0x49, 0x5f, 0x2b, 0x05, - 0x27, 0x51, 0xcb, 0x56, 0x70, 0xa8, 0x18, 0x50, 0xe3, 0x81, 0x4c, 0x88, 0xbd, 0x5c, 0xec, 0x63, - 0x90, 0x17, 0xcb, 0x47, 0xce, 0x12, 0xa6, 0x2f, 0xbb, 0xc1, 0xa1, 0x72, 0x06, 0x4e, 0x27, 0xce, - 0x22, 0x34, 0xe1, 0x40, 0x65, 0xf0, 0xc0, 0x30, 0xe5, 0x15, 0x02, 0x76, 0x35, 0x20, 0x13, 0xb8, - 0x1a, 0x70, 0xd2, 0x0f, 0x5d, 0xb3, 0xf2, 0x68, 0x65, 0x71, 0xe9, 0x20, 0x85, 0xcb, 0xa5, 0xa5, - 0x70, 0xf9, 0x50, 0x0a, 0xa7, 0xb4, 0x7c, 0x7d, 0x8a, 0xd4, 0xfa, 0x11, 0x2b, 0x01, 0xf0, 0xb9, - 0xa5, 0x43, 0x54, 0x86, 0xad, 0x92, 0xa3, 0xaa, 0x01, 0x2a, 0xe5, 0x3a, 0x94, 0xc3, 0xae, 0x31, - 0xe0, 0xe7, 0x32, 0x31, 0x3f, 0x37, 0x1f, 0x71, 0x71, 0xef, 0x47, 0xe2, 0xf2, 0x74, 0x1d, 0x47, - 0xa2, 0xf2, 0x87, 0x21, 0x67, 0x77, 0x23, 0xa1, 0xab, 0xff, 0x1d, 0xf9, 0xb9, 0x65, 0x71, 0x1e, - 0x3c, 0x26, 0x94, 0x5e, 0x2c, 0x5a, 0xb9, 0x08, 0xa5, 0xdd, 0xb4, 0x4f, 0xe1, 0xf2, 0xf2, 0xda, - 0xdc, 0x1d, 0x58, 0x7e, 0x6c, 0x76, 0x31, 0x39, 0x22, 0x1e, 0xee, 0xd5, 0x99, 0x53, 0xda, 0x37, - 0xb1, 0x8b, 0xce, 0x02, 0xb0, 0xb4, 0xd4, 0xb1, 0x4d, 0xff, 0x0b, 0xa9, 0x00, 0x44, 0xf9, 0x5d, - 0x06, 0x16, 0x06, 0x84, 0xbb, 0x2c, 0x1d, 0x7f, 0x0b, 0x8a, 0x74, 0xbd, 0xc4, 0xd3, 0x7b, 0x8e, - 0xec, 0x70, 0xfa, 0x00, 0x74, 0x1f, 0xa6, 0xf7, 0x89, 0x2c, 0x03, 0x26, 0xb6, 0x54, 0x92, 0x04, - 0x51, 0xf3, 0xfb, 0xa4, 0x6e, 0xa0, 0x07, 0x00, 0x7d, 0x82, 0x0d, 0xd1, 0xd5, 0xcc, 0xa5, 0xc5, - 0x30, 0xbb, 0xc1, 0x1b, 0x0f, 0x94, 0x80, 0xdf, 0xb8, 0x7b, 0x08, 0x25, 0xd3, 0xb2, 0x0d, 0xcc, - 0xba, 0xd0, 0x86, 0xa8, 0x14, 0x8e, 0x20, 0x07, 0x4e, 0xb1, 0x4b, 0xb0, 0xa1, 0x60, 0x71, 0x16, - 0x4a, 0xfd, 0x0a, 0x43, 0x69, 0xc0, 0x22, 0x77, 0x5a, 0xfb, 0xbe, 0xe0, 0xd2, 0x62, 0x2f, 0x0c, - 0x5b, 0x1d, 0xd3, 0x96, 0x5a, 0x31, 0x45, 0xc0, 0x25, 0x49, 0x95, 0x7b, 0x70, 0x22, 0x94, 0xb7, - 0x4d, 0x90, 0x48, 0x29, 0xcd, 0x48, 0xf1, 0x6b, 0x60, 0xce, 0xa2, 0xb4, 0x24, 0xad, 0x79, 0x54, - 0x69, 0x89, 0xf0, 0xd2, 0x12, 0x51, 0x3e, 0x83, 0x53, 0xa1, 0x2a, 0x5d, 0x48, 0xa2, 0x87, 0x91, - 0x78, 0xf2, 0xca, 0x28, 0xae, 0x91, 0xc0, 0xf2, 0xbf, 0x33, 0xb0, 0x9c, 0x84, 0x70, 0xcc, 0x2a, - 0xf2, 0xcf, 0x53, 0x6e, 0x57, 0xdf, 0x1d, 0x4f, 0xac, 0xdf, 0x4b, 0x05, 0x7e, 0x07, 0x6a, 0x49, - 0xfa, 0x8c, 0xef, 0x52, 0x6e, 0x92, 0x5d, 0xfa, 0x45, 0x2e, 0xd0, 0x4d, 0x59, 0xf7, 0x3c, 0xd7, - 0xdc, 0xeb, 0x53, 0x93, 0x7f, 0xe3, 0x15, 0xca, 0xba, 0x5f, 0x6b, 0xe3, 0xaa, 0xbd, 0x3d, 0x84, - 0x7c, 0x20, 0x47, 0x62, 0xbd, 0xed, 0x93, 0x70, 0xbd, 0x8d, 0xf7, 0x49, 0xee, 0x8c, 0xc7, 0xef, - 0x07, 0x5b, 0xd4, 0xfe, 0x45, 0x16, 0xe6, 0xc3, 0x5b, 0x84, 0xb6, 0x00, 0x74, 0x5f, 0x72, 0xf1, - 0xa2, 0x5c, 0x1e, 0x6b, 0x99, 0x6a, 0x80, 0x10, 0xbd, 0x03, 0xb9, 0xb6, 0xd3, 0x17, 0xbb, 0x96, - 0x50, 0x4d, 0xdb, 0x70, 0xfa, 0xdc, 0xa3, 0x50, 0x34, 0x9a, 0xe9, 0x89, 0x8b, 0x9c, 0xa9, 0x5e, - 0x92, 0x5f, 0xea, 0xe4, 0x34, 0x02, 0x19, 0x3d, 0x85, 0xf9, 0x43, 0xd7, 0xf4, 0xf4, 0xbd, 0x2e, - 0xd6, 0xba, 0xfa, 0x11, 0x76, 0x85, 0x97, 0x1c, 0xc3, 0x91, 0x95, 0x25, 0xe1, 0x33, 0x4a, 0xa7, - 0xfc, 0x11, 0x14, 0xa4, 0x44, 0x23, 0x4e, 0x84, 0x1d, 0x58, 0xe9, 0x53, 0x34, 0x8d, 0xdd, 0x84, - 0xb6, 0x74, 0xcb, 0xd6, 0x08, 0xa6, 0xc7, 0xb8, 0xfc, 0x46, 0x6b, 0x84, 0x8b, 0x5e, 0x66, 0xd4, - 0x1b, 0xb6, 0x8b, 0x1b, 0xba, 0x65, 0xb7, 0x38, 0xa9, 0xf2, 0x0a, 0x4a, 0x81, 0x05, 0x8e, 0x10, - 0xa1, 0x0e, 0x8b, 0xf2, 0x72, 0x06, 0xc1, 0x9e, 0x38, 0x5e, 0xc6, 0x9a, 0x7c, 0x41, 0xd0, 0xb5, - 0xb0, 0xc7, 0x2f, 0xd4, 0x3c, 0x84, 0x53, 0x2a, 0xb6, 0x1d, 0x6c, 0xf9, 0xfb, 0xf9, 0xcc, 0xee, - 0x4c, 0xe0, 0xc1, 0xdf, 0x82, 0x5a, 0x12, 0xbd, 0x88, 0xcc, 0xee, 0xc1, 0x89, 0xa6, 0xde, 0x27, - 0xf8, 0x98, 0x0d, 0xe5, 0x28, 0xad, 0xe0, 0xfa, 0x00, 0x56, 0x76, 0x2d, 0xe7, 0xb8, 0x7c, 0x6b, - 0x50, 0x8d, 0x53, 0x0b, 0xce, 0x77, 0x64, 0xa8, 0x2d, 0x92, 0x60, 0xc1, 0xf5, 0x1c, 0x94, 0x78, - 0x86, 0xad, 0x05, 0xb2, 0x30, 0xe0, 0xa0, 0x86, 0xde, 0xc3, 0xca, 0x49, 0x58, 0x0e, 0xd3, 0x09, - 0x7e, 0x0f, 0x45, 0x53, 0xfc, 0xb8, 0x9f, 0x2b, 0x9e, 0x82, 0x95, 0x18, 0x3d, 0x67, 0x7d, 0xe3, - 0x0a, 0x14, 0xe4, 0xbf, 0x91, 0x40, 0xb3, 0x90, 0xdb, 0xd9, 0x68, 0x56, 0xa6, 0xe8, 0x8f, 0xdd, - 0xcd, 0x66, 0x25, 0x83, 0x0a, 0x90, 0x6f, 0x6d, 0xec, 0x34, 0x2b, 0xd9, 0x1b, 0x3d, 0xa8, 0x44, - 0xff, 0x87, 0x02, 0x5a, 0x81, 0xa5, 0xa6, 0xba, 0xdd, 0x5c, 0x7f, 0xb2, 0xbe, 0x53, 0xdf, 0x6e, - 0x68, 0x4d, 0xb5, 0xfe, 0xf1, 0xfa, 0xce, 0x56, 0x65, 0x0a, 0x5d, 0x80, 0x33, 0xc1, 0x07, 0x4f, - 0xb7, 0x5b, 0x3b, 0xda, 0xce, 0xb6, 0xb6, 0xb1, 0xdd, 0xd8, 0x59, 0xaf, 0x37, 0xb6, 0xd4, 0x4a, - 0x06, 0x9d, 0x81, 0x53, 0x41, 0x94, 0x47, 0xf5, 0xcd, 0xba, 0xba, 0xb5, 0x41, 0x7f, 0xaf, 0x3f, - 0xab, 0x64, 0x6f, 0xdc, 0x86, 0x72, 0xe8, 0xdf, 0x1b, 0x50, 0x91, 0x9a, 0xdb, 0x9b, 0x95, 0x29, - 0x54, 0x86, 0x62, 0x90, 0x4f, 0x01, 0xf2, 0x8d, 0xed, 0xcd, 0xad, 0x4a, 0xf6, 0xc6, 0x3d, 0x58, - 0x88, 0x7c, 0xef, 0x82, 0x16, 0xa1, 0xdc, 0x5a, 0x6f, 0x6c, 0x3e, 0xda, 0xfe, 0x44, 0x53, 0xb7, - 0xd6, 0x37, 0x3f, 0xad, 0x4c, 0xa1, 0x65, 0xa8, 0x48, 0x50, 0x63, 0x7b, 0x87, 0x43, 0x33, 0x37, - 0xbe, 0xca, 0x44, 0xfc, 0x17, 0x46, 0x27, 0x60, 0xd1, 0x9f, 0x47, 0xdb, 0x50, 0xb7, 0xd6, 0x77, - 0xb6, 0xe8, 0xf4, 0x21, 0xb0, 0xba, 0xdb, 0x68, 0xd4, 0x1b, 0x4f, 0x2a, 0x19, 0xca, 0x76, 0x00, - 0xde, 0xfa, 0xa4, 0x4e, 0x91, 0xb3, 0x61, 0xe4, 0xdd, 0xc6, 0x4f, 0x1b, 0xdb, 0x2f, 0x1a, 0x95, - 0x1c, 0x5a, 0x82, 0x85, 0x01, 0xb8, 0xb9, 0xbe, 0xdb, 0xda, 0xaa, 0xe4, 0xd7, 0xfe, 0x67, 0x09, - 0xe6, 0x65, 0x64, 0x8d, 0x5d, 0x76, 0xb1, 0xac, 0x09, 0xb3, 0xf2, 0x9f, 0x95, 0x24, 0x1c, 0x89, - 0xe1, 0x7f, 0xb1, 0x52, 0xbb, 0x30, 0x04, 0x43, 0x98, 0xd1, 0x14, 0xda, 0x63, 0x09, 0x47, 0xe0, - 0xab, 0xa4, 0x2b, 0x89, 0xe1, 0x7d, 0xcc, 0xce, 0x6a, 0x57, 0x47, 0xe2, 0xf9, 0x73, 0x60, 0x9a, - 0x53, 0x04, 0x3f, 0xbb, 0x45, 0x57, 0x93, 0x92, 0x81, 0x84, 0xef, 0x7a, 0x6b, 0xd7, 0x46, 0x23, - 0xfa, 0xd3, 0xbc, 0x84, 0x4a, 0xf4, 0x13, 0x5c, 0x94, 0x50, 0x41, 0x4f, 0xf9, 0xce, 0xb7, 0x76, - 0x63, 0x1c, 0xd4, 0xe0, 0x64, 0xb1, 0x8f, 0x55, 0xaf, 0x8f, 0xf3, 0xf5, 0x5f, 0xea, 0x64, 0x69, - 0x1f, 0x0a, 0x72, 0x05, 0x86, 0xbf, 0x38, 0x42, 0x89, 0x5f, 0x86, 0x26, 0x7c, 0xaf, 0x96, 0xa4, - 0xc0, 0xe4, 0x8f, 0x97, 0x94, 0x29, 0x74, 0x00, 0x0b, 0x91, 0x3b, 0x3e, 0x28, 0x81, 0x3c, 0xf9, - 0x32, 0x53, 0xed, 0xfa, 0x18, 0x98, 0x61, 0x8b, 0x08, 0xde, 0xe9, 0x49, 0xb6, 0x88, 0x84, 0x1b, - 0x43, 0xc9, 0x16, 0x91, 0x78, 0x3d, 0x88, 0x19, 0x77, 0xe8, 0x2e, 0x4f, 0x92, 0x71, 0x27, 0xdd, - 0x20, 0xaa, 0x5d, 0x1d, 0x89, 0x17, 0x54, 0x5a, 0xe4, 0x66, 0x4f, 0x92, 0xd2, 0x92, 0x6f, 0x0e, - 0xd5, 0xae, 0x8f, 0x81, 0x19, 0xb5, 0x82, 0xc1, 0x3d, 0x81, 0x34, 0x2b, 0x88, 0xdd, 0x6a, 0x49, - 0xb3, 0x82, 0xf8, 0x95, 0x03, 0x61, 0x05, 0x91, 0xfe, 0xfe, 0xb5, 0x31, 0x3a, 0x6a, 0xe9, 0x56, - 0x90, 0xdc, 0x7b, 0x53, 0xa6, 0xd0, 0x1f, 0x67, 0xa0, 0x9a, 0xd6, 0xad, 0x42, 0x09, 0x01, 0xf5, - 0x88, 0x06, 0x5b, 0x6d, 0x6d, 0x12, 0x12, 0x5f, 0x8a, 0x2f, 0x01, 0xc5, 0x03, 0x0d, 0xf4, 0x76, - 0xd2, 0xce, 0xa4, 0x84, 0x33, 0xb5, 0x77, 0xc6, 0x43, 0x0e, 0xee, 0x64, 0x38, 0x02, 0x49, 0xda, - 0xc9, 0xc4, 0xf8, 0x26, 0x69, 0x27, 0x53, 0x82, 0x19, 0xe6, 0xa3, 0xa2, 0x01, 0x49, 0x92, 0x8f, - 0x4a, 0x09, 0x79, 0x92, 0x7c, 0x54, 0x6a, 0x7c, 0x33, 0x85, 0x5a, 0x50, 0x90, 0x3d, 0x3f, 0x94, - 0x70, 0xf2, 0x44, 0x3a, 0x8e, 0x35, 0x65, 0x18, 0x8a, 0xcf, 0xf4, 0x09, 0xe4, 0x29, 0x14, 0x9d, - 0x49, 0xc6, 0x96, 0xcc, 0xce, 0xa6, 0x3d, 0xf6, 0x19, 0x3d, 0x87, 0x19, 0xde, 0xe4, 0x42, 0x09, - 0xe5, 0xab, 0x50, 0x2b, 0xae, 0x76, 0x3e, 0x1d, 0xc1, 0x67, 0xf7, 0x39, 0xff, 0xdf, 0x5c, 0xa2, - 0x7f, 0x85, 0x2e, 0x25, 0xff, 0x63, 0x93, 0x70, 0xbb, 0xac, 0x76, 0x79, 0x04, 0x56, 0xd0, 0x3c, - 0x22, 0xa9, 0xd3, 0xd5, 0x91, 0xf9, 0x6f, 0xba, 0x79, 0x24, 0x67, 0xd8, 0xdc, 0xf0, 0xe3, 0x19, - 0x78, 0x92, 0xe1, 0xa7, 0xd6, 0x3d, 0x92, 0x0c, 0x3f, 0x3d, 0xa9, 0x57, 0xa6, 0x90, 0x07, 0x4b, - 0x09, 0xf5, 0x56, 0xf4, 0x4e, 0xda, 0x8b, 0x9b, 0x54, 0xfc, 0xad, 0xdd, 0x1c, 0x13, 0x3b, 0xb8, - 0xf9, 0xc2, 0x91, 0x9d, 0x4b, 0x2f, 0x42, 0xa6, 0x6e, 0x7e, 0xcc, 0x6d, 0x1d, 0xc0, 0x42, 0x24, - 0x76, 0x46, 0x69, 0x87, 0x52, 0xfc, 0x3c, 0xbe, 0x3e, 0x06, 0xa6, 0x9c, 0x69, 0xed, 0xdf, 0x72, - 0x30, 0xc7, 0xab, 0xf6, 0x22, 0xfe, 0xfb, 0x14, 0x60, 0xd0, 0x30, 0x43, 0x17, 0x93, 0xb5, 0x1f, - 0x6a, 0x75, 0xd6, 0x2e, 0x0d, 0x47, 0x0a, 0x9a, 0x74, 0xa0, 0xf9, 0x84, 0x2e, 0x8d, 0xe8, 0x4d, - 0xa5, 0x9a, 0x74, 0x42, 0x07, 0x4b, 0x99, 0x42, 0x1f, 0x43, 0xd1, 0xef, 0x72, 0xa0, 0xa4, 0x2e, - 0x49, 0xa4, 0x8d, 0x53, 0xbb, 0x38, 0x14, 0x27, 0x28, 0x75, 0xa0, 0x85, 0x91, 0x24, 0x75, 0xbc, - 0x55, 0x92, 0x24, 0x75, 0x52, 0x1f, 0x64, 0xa0, 0x13, 0x5e, 0xe8, 0x4c, 0xd5, 0x49, 0xa8, 0xce, - 0x9c, 0xaa, 0x93, 0x70, 0xb5, 0x54, 0x99, 0x5a, 0x73, 0xa0, 0xcc, 0xb3, 0x3a, 0xb9, 0xbb, 0x1a, - 0xcc, 0x05, 0x93, 0x3d, 0x94, 0x2a, 0x67, 0x28, 0x89, 0xac, 0x5d, 0x19, 0x85, 0x26, 0x67, 0x7c, - 0x74, 0xe5, 0x37, 0x5f, 0x9f, 0xcd, 0xfc, 0xf3, 0xd7, 0x67, 0xa7, 0xbe, 0xfa, 0xe6, 0x6c, 0xe6, - 0x37, 0xdf, 0x9c, 0xcd, 0xfc, 0xe3, 0x37, 0x67, 0x33, 0xff, 0xfe, 0xcd, 0xd9, 0xcc, 0x9f, 0xfd, - 0xc7, 0xd9, 0xa9, 0x9f, 0x15, 0x24, 0xf9, 0xde, 0x0c, 0xfb, 0xef, 0x81, 0xef, 0xfd, 0x6f, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x2a, 0x8b, 0xb5, 0x66, 0x03, 0x52, 0x00, 0x00, + 0x14, 0x93, 0xaa, 0x94, 0xab, 0x52, 0x35, 0x8b, 0xac, 0xb2, 0xce, 0x72, 0x66, 0x91, 0x45, 0x36, + 0xa9, 0x54, 0x65, 0x95, 0x6c, 0x92, 0x9a, 0x4a, 0xcd, 0x66, 0xaa, 0xb2, 0x4a, 0xe5, 0xb1, 0x89, + 0x9d, 0xac, 0x66, 0x91, 0xca, 0x3f, 0x48, 0xea, 0xbe, 0x1a, 0xfd, 0xc4, 0x83, 0x96, 0xc7, 0xce, + 0x8a, 0xb8, 0xa7, 0xcf, 0x39, 0xf7, 0xdc, 0x73, 0x4f, 0x9f, 0x7b, 0x1e, 0xb7, 0x09, 0x45, 0xdd, + 0x31, 0x57, 0x1d, 0xd7, 0xf6, 0x6c, 0x54, 0x71, 0xfb, 0x96, 0x67, 0xf6, 0xf0, 0xea, 0xab, 0xdb, + 0x7a, 0xd7, 0x39, 0xd0, 0xd7, 0x6a, 0x37, 0x3b, 0xa6, 0x77, 0xd0, 0xdf, 0x5b, 0x6d, 0xdb, 0xbd, + 0x5b, 0x1d, 0xbb, 0x63, 0xdf, 0x62, 0x88, 0x7b, 0xfd, 0x7d, 0x36, 0x62, 0x03, 0xf6, 0x8b, 0x33, + 0x50, 0x6e, 0xc0, 0xfc, 0xc7, 0xd8, 0x25, 0xa6, 0x6d, 0xa9, 0xf8, 0xcb, 0x3e, 0x26, 0x1e, 0xaa, + 0xc2, 0xec, 0x2b, 0x0e, 0xa9, 0x66, 0xce, 0x67, 0xae, 0x15, 0x55, 0x39, 0x54, 0xfe, 0x3c, 0x03, + 0x0b, 0x3e, 0x32, 0x71, 0x6c, 0x8b, 0xe0, 0x74, 0x6c, 0x74, 0x01, 0xe6, 0x84, 0x70, 0x9a, 0xa5, + 0xf7, 0x70, 0x35, 0xcb, 0x1e, 0x97, 0x04, 0xac, 0xa1, 0xf7, 0x30, 0xba, 0x0a, 0x0b, 0x12, 0x45, + 0x32, 0xc9, 0x31, 0xac, 0x79, 0x01, 0x16, 0xb3, 0xa1, 0x55, 0x58, 0x92, 0x88, 0xba, 0x63, 0xfa, + 0xc8, 0x79, 0x86, 0xbc, 0x28, 0x1e, 0xad, 0x3b, 0xa6, 0xc0, 0x57, 0x3e, 0x83, 0xe2, 0x66, 0xa3, + 0xb5, 0x61, 0x5b, 0xfb, 0x66, 0x87, 0x8a, 0x48, 0xb0, 0x4b, 0x69, 0xaa, 0x99, 0xf3, 0x39, 0x2a, + 0xa2, 0x18, 0xa2, 0x1a, 0x14, 0x08, 0xd6, 0xdd, 0xf6, 0x01, 0x26, 0xd5, 0x2c, 0x7b, 0xe4, 0x8f, + 0x29, 0x95, 0xed, 0x78, 0xa6, 0x6d, 0x91, 0x6a, 0x8e, 0x53, 0x89, 0xa1, 0xf2, 0xcb, 0x0c, 0x94, + 0x9a, 0xb6, 0xeb, 0x3d, 0xd7, 0x1d, 0xc7, 0xb4, 0x3a, 0xe8, 0x0e, 0x14, 0x98, 0x2e, 0xdb, 0x76, + 0x97, 0xe9, 0x60, 0x7e, 0xad, 0xb6, 0x1a, 0xdd, 0x96, 0xd5, 0xa6, 0xc0, 0x50, 0x7d, 0x5c, 0x74, + 0x19, 0xe6, 0xdb, 0xb6, 0xe5, 0xe9, 0xa6, 0x85, 0x5d, 0xcd, 0xb1, 0x5d, 0x8f, 0xa9, 0x68, 0x5a, + 0x2d, 0xfb, 0x50, 0x3a, 0x0b, 0x3a, 0x0d, 0xc5, 0x03, 0x9b, 0x78, 0x1c, 0x23, 0xc7, 0x30, 0x0a, + 0x14, 0xc0, 0x1e, 0xae, 0xc0, 0x2c, 0x7b, 0x68, 0x3a, 0x42, 0x19, 0x33, 0x74, 0x58, 0x77, 0x94, + 0xdf, 0x65, 0x60, 0xfa, 0xb9, 0xdd, 0xb7, 0xbc, 0xc8, 0x34, 0xba, 0x77, 0x20, 0x36, 0x2a, 0x30, + 0x8d, 0xee, 0x1d, 0x0c, 0xa6, 0xa1, 0x18, 0x7c, 0xaf, 0xf8, 0x34, 0xf4, 0x61, 0x0d, 0x0a, 0x2e, + 0xd6, 0x0d, 0xdb, 0xea, 0x1e, 0x31, 0x11, 0x0a, 0xaa, 0x3f, 0xa6, 0x9b, 0x48, 0x70, 0xd7, 0xb4, + 0xfa, 0xaf, 0x35, 0x17, 0x77, 0xf5, 0x3d, 0xdc, 0x65, 0xa2, 0x14, 0xd4, 0x79, 0x01, 0x56, 0x39, + 0x14, 0x6d, 0x42, 0xc9, 0x71, 0x6d, 0x47, 0xef, 0xe8, 0x54, 0x8f, 0xd5, 0x69, 0xa6, 0x2a, 0x25, + 0xae, 0x2a, 0x26, 0x76, 0x73, 0x80, 0xa9, 0x06, 0xc9, 0x10, 0x82, 0x3c, 0x33, 0x27, 0x83, 0x89, + 0xc8, 0x7e, 0x2b, 0x7f, 0x95, 0x81, 0x05, 0x6a, 0x50, 0xc4, 0xd1, 0xdb, 0x78, 0x9b, 0x6d, 0x13, + 0xba, 0x0b, 0xb3, 0x16, 0xf6, 0x0e, 0x6d, 0xf7, 0xa5, 0xd8, 0x94, 0x73, 0xf1, 0x99, 0x7c, 0x9a, + 0xe7, 0xb6, 0x81, 0x55, 0x89, 0x8f, 0x6e, 0x43, 0xce, 0x31, 0x0d, 0xa6, 0x84, 0x31, 0xc8, 0x28, + 0x2e, 0x25, 0x31, 0x9d, 0x36, 0xd3, 0xcd, 0x38, 0x24, 0xa6, 0xd3, 0x56, 0x14, 0x80, 0xba, 0xe5, + 0xdd, 0xf9, 0xd1, 0xc7, 0x7a, 0xb7, 0x8f, 0xd1, 0x32, 0x4c, 0xbf, 0xa2, 0x3f, 0x98, 0xb0, 0x39, + 0x95, 0x0f, 0x94, 0xaf, 0x73, 0x70, 0xfa, 0x19, 0xd5, 0x61, 0x4b, 0xb7, 0x8c, 0x3d, 0xfb, 0x75, + 0x0b, 0xb7, 0xfb, 0xae, 0xe9, 0x1d, 0x6d, 0xd8, 0x96, 0x87, 0x5f, 0x7b, 0xa8, 0x01, 0x8b, 0x96, + 0xe4, 0xac, 0x49, 0x73, 0xa5, 0x1c, 0x4a, 0x6b, 0x17, 0x86, 0x08, 0xc1, 0x55, 0xa4, 0x56, 0xac, + 0x30, 0x80, 0xa0, 0xa7, 0x83, 0xbd, 0x94, 0xdc, 0xb2, 0x8c, 0x5b, 0xc2, 0x92, 0x5a, 0x5b, 0x4c, + 0x32, 0xc1, 0x4b, 0x6e, 0xb6, 0xe4, 0xf4, 0x00, 0xe8, 0x9b, 0xae, 0xe9, 0x44, 0xeb, 0x13, 0xec, + 0x32, 0xc5, 0x94, 0xd6, 0xde, 0x8a, 0x73, 0x19, 0xa8, 0x40, 0x2d, 0xba, 0x7d, 0x6b, 0x9d, 0xec, + 0x12, 0xec, 0x32, 0xc7, 0x20, 0xec, 0x4b, 0x73, 0x6d, 0xdb, 0xdb, 0x27, 0xd2, 0xa6, 0x24, 0x58, + 0x65, 0x50, 0x74, 0x0b, 0x96, 0x48, 0xdf, 0x71, 0xba, 0xb8, 0x87, 0x2d, 0x4f, 0xef, 0x6a, 0x1d, + 0xd7, 0xee, 0x3b, 0xa4, 0x3a, 0x7d, 0x3e, 0x77, 0x2d, 0xa7, 0xa2, 0xe0, 0xa3, 0x27, 0xec, 0x09, + 0x3a, 0x0b, 0xe0, 0xb8, 0xe6, 0x2b, 0xb3, 0x8b, 0x3b, 0xd8, 0xa8, 0xce, 0x30, 0xa6, 0x01, 0x08, + 0x7a, 0x17, 0x96, 0x09, 0x6e, 0xb7, 0xed, 0x9e, 0xa3, 0x39, 0xae, 0xbd, 0x6f, 0x76, 0x31, 0x7f, + 0x23, 0x66, 0x99, 0xb9, 0x21, 0xf1, 0xac, 0xc9, 0x1f, 0xb1, 0x77, 0xe3, 0x21, 0xf3, 0x73, 0x74, + 0xa5, 0x6c, 0xf2, 0x6a, 0x61, 0x8c, 0xa5, 0x02, 0x5b, 0x2a, 0x13, 0x49, 0xf9, 0x65, 0x16, 0x4e, + 0x30, 0x4d, 0x36, 0x6d, 0x43, 0x6c, 0xb3, 0x70, 0x5c, 0x17, 0xa1, 0xdc, 0x66, 0x3c, 0x35, 0x47, + 0x77, 0xb1, 0xe5, 0x89, 0x17, 0x77, 0x8e, 0x03, 0x9b, 0x0c, 0x86, 0x3e, 0x81, 0x0a, 0x11, 0x56, + 0xa1, 0xb5, 0xb9, 0x59, 0x88, 0x3d, 0xbb, 0x19, 0x17, 0x61, 0x88, 0x2d, 0xa9, 0x0b, 0x24, 0x66, + 0x5c, 0xb3, 0xe4, 0x88, 0xb4, 0xbd, 0x2e, 0xf7, 0x80, 0xa5, 0xb5, 0x1f, 0xa5, 0x30, 0x8c, 0x0a, + 0xbe, 0xda, 0xe2, 0x64, 0x5b, 0x96, 0xe7, 0x1e, 0xa9, 0x92, 0x49, 0xed, 0x1e, 0xcc, 0x05, 0x1f, + 0xa0, 0x0a, 0xe4, 0x5e, 0xe2, 0x23, 0xb1, 0x28, 0xfa, 0x73, 0xf0, 0x12, 0x70, 0xff, 0xc3, 0x07, + 0xf7, 0xb2, 0x1f, 0x64, 0x14, 0x17, 0xd0, 0x60, 0x96, 0xe7, 0xd8, 0xd3, 0x0d, 0xdd, 0xd3, 0x7d, + 0x5f, 0x90, 0x19, 0xf8, 0x02, 0xca, 0xb5, 0x2f, 0x5e, 0xde, 0xa2, 0x4a, 0x7f, 0xa2, 0xb7, 0xa0, + 0xe8, 0x1b, 0xba, 0x38, 0x5f, 0x06, 0x00, 0xea, 0xe7, 0x75, 0xcf, 0xc3, 0x3d, 0xc7, 0x63, 0x26, + 0x56, 0x56, 0xe5, 0x50, 0xf9, 0xaf, 0x3c, 0x54, 0x62, 0x7b, 0xf2, 0x11, 0x14, 0x7a, 0x62, 0x7a, + 0xf1, 0xa2, 0x5d, 0x4a, 0x70, 0xf6, 0x31, 0x51, 0x55, 0x9f, 0x8a, 0xfa, 0x52, 0xea, 0x57, 0x03, + 0x67, 0xa2, 0x3f, 0xa6, 0x3b, 0xde, 0xb5, 0x3b, 0x9a, 0x61, 0xba, 0xb8, 0xed, 0xd9, 0xee, 0x91, + 0x10, 0x77, 0xae, 0x6b, 0x77, 0x36, 0x25, 0x0c, 0xdd, 0x03, 0x30, 0x2c, 0x42, 0x37, 0x7b, 0xdf, + 0xec, 0x30, 0xa1, 0x4b, 0x6b, 0xa7, 0xe3, 0x42, 0xf8, 0x07, 0xa0, 0x5a, 0x34, 0x2c, 0x22, 0xc4, + 0x7f, 0x04, 0x65, 0x7a, 0x8e, 0x68, 0x3d, 0x7e, 0x76, 0xf1, 0x37, 0xa5, 0xb4, 0x76, 0x26, 0x69, + 0x0d, 0xfe, 0x09, 0xa7, 0xce, 0x39, 0x83, 0x01, 0x41, 0x8f, 0x61, 0x86, 0x39, 0x74, 0x52, 0x9d, + 0x61, 0xc4, 0xab, 0xc3, 0x14, 0x20, 0x2c, 0xe2, 0x19, 0x23, 0xe0, 0x06, 0x21, 0xa8, 0xd1, 0x2e, + 0x94, 0x74, 0xcb, 0xb2, 0x3d, 0x9d, 0x3b, 0x9a, 0x59, 0xc6, 0xec, 0xbd, 0x31, 0x98, 0xad, 0x0f, + 0xa8, 0x38, 0xc7, 0x20, 0x1f, 0xf4, 0x13, 0x98, 0x66, 0x9e, 0x48, 0xbc, 0x88, 0x57, 0xc7, 0x34, + 0x5a, 0x95, 0x53, 0xd5, 0xee, 0x42, 0x29, 0x20, 0xec, 0x24, 0x46, 0x5a, 0x7b, 0x08, 0x95, 0xa8, + 0x68, 0x13, 0x19, 0xf9, 0x1f, 0xc2, 0xb2, 0xda, 0xb7, 0x06, 0x82, 0xc9, 0x88, 0xec, 0x1e, 0xcc, + 0x88, 0xcd, 0xe6, 0x16, 0xa7, 0x8c, 0xd6, 0x91, 0x2a, 0x28, 0x82, 0x21, 0xd6, 0x81, 0x6e, 0x19, + 0x5d, 0xec, 0x8a, 0x79, 0x65, 0x88, 0xf5, 0x94, 0x43, 0x95, 0x9f, 0xc0, 0x89, 0xc8, 0xe4, 0x22, + 0xc2, 0xbb, 0x04, 0xf3, 0x8e, 0x6d, 0x68, 0x84, 0x83, 0x35, 0xd3, 0x90, 0x6e, 0xc8, 0xf1, 0x71, + 0xeb, 0x06, 0x25, 0x6f, 0x79, 0xb6, 0x13, 0x17, 0x7e, 0x3c, 0xf2, 0x2a, 0x9c, 0x8c, 0x92, 0xf3, + 0xe9, 0x95, 0x0f, 0x61, 0x45, 0xc5, 0x3d, 0xfb, 0x15, 0x3e, 0x2e, 0xeb, 0x1a, 0x54, 0xe3, 0x0c, + 0x04, 0xf3, 0x4f, 0x61, 0x65, 0x00, 0x6d, 0x79, 0xba, 0xd7, 0x27, 0x13, 0x31, 0x17, 0xe1, 0xef, + 0x9e, 0x4d, 0xf8, 0x76, 0x16, 0x54, 0x39, 0x54, 0xae, 0x07, 0x59, 0x37, 0x78, 0x64, 0xc1, 0x67, + 0x40, 0xf3, 0x90, 0x35, 0x1d, 0xc1, 0x2e, 0x6b, 0x3a, 0xca, 0x53, 0x28, 0xfa, 0x47, 0x33, 0xba, + 0x3f, 0x88, 0x3b, 0xb3, 0xe3, 0x1e, 0xe4, 0x7e, 0x68, 0xba, 0x13, 0x3b, 0x4a, 0xc4, 0x94, 0xf7, + 0x01, 0x7c, 0x97, 0x27, 0x23, 0x84, 0xd3, 0x43, 0x18, 0xab, 0x01, 0x74, 0xe5, 0x5f, 0x43, 0x8e, + 0x30, 0xb0, 0x08, 0xc3, 0x5f, 0x84, 0x11, 0x72, 0x8c, 0xd9, 0x63, 0x39, 0xc6, 0xf7, 0x61, 0x9a, + 0x78, 0xba, 0x87, 0x45, 0x14, 0x75, 0x61, 0x18, 0x39, 0x15, 0x02, 0xab, 0x1c, 0x1f, 0x9d, 0x01, + 0x68, 0xbb, 0x58, 0xf7, 0xb0, 0xa1, 0xe9, 0xdc, 0x8b, 0xe7, 0xd4, 0xa2, 0x80, 0xac, 0x7b, 0x68, + 0x63, 0x10, 0x09, 0x4e, 0x33, 0xc1, 0xae, 0x0f, 0xe3, 0x1c, 0xda, 0xaa, 0x41, 0x4c, 0xe8, 0x7b, + 0x95, 0x99, 0x31, 0xbd, 0x8a, 0x60, 0xc0, 0xa9, 0x02, 0x3e, 0x73, 0x76, 0xb4, 0xcf, 0xe4, 0xa4, + 0xe3, 0xf8, 0xcc, 0xc2, 0x68, 0x9f, 0x29, 0x98, 0x0d, 0xf5, 0x99, 0xdf, 0xa7, 0xd3, 0xfb, 0x97, + 0x0c, 0x54, 0xe3, 0xef, 0xa0, 0xf0, 0x3d, 0xf7, 0x60, 0x86, 0x30, 0xc8, 0x38, 0x9e, 0x4f, 0xd0, + 0x0a, 0x0a, 0xf4, 0x14, 0xf2, 0xa6, 0xb5, 0x6f, 0xb3, 0xc4, 0x2e, 0x31, 0x76, 0x49, 0x9b, 0x75, + 0xb5, 0x6e, 0xed, 0xdb, 0x5c, 0x49, 0x8c, 0x43, 0xed, 0x7d, 0x28, 0xfa, 0xa0, 0x89, 0xd6, 0xb6, + 0x0d, 0xcb, 0x11, 0x93, 0xe5, 0xc1, 0xbe, 0x6f, 0xe9, 0x99, 0xc9, 0x2c, 0x5d, 0xf9, 0x2a, 0x1b, + 0x7c, 0x13, 0x1f, 0x9b, 0x5d, 0x0f, 0xbb, 0xb1, 0x37, 0xf1, 0x81, 0xe4, 0xce, 0x5f, 0xc3, 0x2b, + 0x23, 0xb9, 0xf3, 0x98, 0x54, 0xbc, 0x4c, 0x9f, 0xc3, 0x3c, 0xb3, 0x35, 0x8d, 0xe0, 0x2e, 0x0b, + 0x38, 0x44, 0xf0, 0xf7, 0xe3, 0x61, 0x6c, 0xb8, 0x24, 0xdc, 0x62, 0x5b, 0x82, 0x8e, 0x6b, 0xb0, + 0xdc, 0x0d, 0xc2, 0x6a, 0x1f, 0x01, 0x8a, 0x23, 0x4d, 0xa4, 0xd3, 0x16, 0x75, 0x71, 0x34, 0xfb, + 0x4d, 0x38, 0x25, 0xf7, 0x99, 0x18, 0xe3, 0xd8, 0x0a, 0x17, 0x58, 0x15, 0x14, 0xca, 0xaf, 0x73, + 0x00, 0x83, 0x87, 0xff, 0x87, 0x7c, 0xdb, 0x47, 0xbe, 0x5f, 0xe1, 0x81, 0xdc, 0xb5, 0x61, 0x8c, + 0x13, 0x3d, 0xca, 0x76, 0xd8, 0xa3, 0xf0, 0x90, 0xee, 0xe6, 0x50, 0x36, 0x3f, 0x58, 0x5f, 0xf2, + 0x0c, 0x4e, 0x46, 0x6d, 0x43, 0x38, 0x92, 0x35, 0x98, 0x36, 0x3d, 0xdc, 0xe3, 0x15, 0xa0, 0xc4, + 0xec, 0x2c, 0x40, 0xc4, 0x51, 0x95, 0x0b, 0x50, 0xac, 0xf7, 0xf4, 0x0e, 0x6e, 0x39, 0xb8, 0x4d, + 0x27, 0x35, 0xe9, 0x40, 0x08, 0xc2, 0x07, 0xca, 0x1a, 0x14, 0x7e, 0x8a, 0x8f, 0xf8, 0x4b, 0x3d, + 0xa6, 0xa0, 0xca, 0x3f, 0x14, 0x60, 0x85, 0x9d, 0x15, 0x1b, 0xb2, 0xfe, 0xa2, 0x62, 0x62, 0xf7, + 0xdd, 0x36, 0x26, 0x6c, 0xb7, 0x9d, 0xbe, 0xe6, 0x60, 0xd7, 0xb4, 0x0d, 0x51, 0x0a, 0x28, 0xb6, + 0x9d, 0x7e, 0x93, 0x01, 0xd0, 0x69, 0xa0, 0x03, 0xed, 0xcb, 0xbe, 0x2d, 0x0c, 0x31, 0xa7, 0x16, + 0xda, 0x4e, 0xff, 0xff, 0xd3, 0xb1, 0xa4, 0x25, 0x07, 0xba, 0x8b, 0x09, 0xb3, 0x33, 0x4e, 0xdb, + 0x62, 0x00, 0x74, 0x1b, 0x4e, 0xf4, 0x70, 0xcf, 0x76, 0x8f, 0xb4, 0xae, 0xd9, 0x33, 0x3d, 0xcd, + 0xb4, 0xb4, 0xbd, 0x23, 0x0f, 0x13, 0x61, 0x53, 0x88, 0x3f, 0x7c, 0x46, 0x9f, 0xd5, 0xad, 0x47, + 0xf4, 0x09, 0x52, 0xa0, 0x6c, 0xdb, 0x3d, 0x8d, 0xb4, 0x6d, 0x17, 0x6b, 0xba, 0xf1, 0x05, 0x3b, + 0x3e, 0x73, 0x6a, 0xc9, 0xb6, 0x7b, 0x2d, 0x0a, 0x5b, 0x37, 0xbe, 0x40, 0xe7, 0xa0, 0xd4, 0x76, + 0xfa, 0x04, 0x7b, 0x1a, 0xfd, 0xc3, 0x4e, 0xc7, 0xa2, 0x0a, 0x1c, 0xb4, 0xe1, 0xf4, 0x49, 0x00, + 0xa1, 0x47, 0xf5, 0x3f, 0x1b, 0x44, 0x78, 0x8e, 0x7b, 0x04, 0xbd, 0x00, 0x30, 0x4c, 0xf2, 0x52, + 0xac, 0xca, 0x60, 0xfb, 0xf3, 0x41, 0xca, 0xf1, 0x1a, 0x57, 0xd9, 0xea, 0xa6, 0x49, 0x5e, 0x32, + 0x05, 0x70, 0x53, 0x2c, 0x1a, 0x72, 0x8c, 0x2e, 0xc0, 0xdc, 0x5e, 0xf7, 0xa5, 0x69, 0x6b, 0x87, + 0xd8, 0xec, 0x1c, 0x78, 0x55, 0xcc, 0xd2, 0xbb, 0x12, 0x83, 0xbd, 0x60, 0x20, 0xd4, 0x80, 0xa5, + 0x20, 0x8a, 0x66, 0xe0, 0x57, 0x66, 0x1b, 0x57, 0xf7, 0x99, 0x10, 0x67, 0xe3, 0x42, 0x70, 0xb2, + 0x4d, 0x86, 0xa5, 0x2e, 0x06, 0x38, 0x71, 0x10, 0x6a, 0xc1, 0x09, 0xce, 0x8f, 0x33, 0xd2, 0x5c, + 0xac, 0x1b, 0xda, 0x9e, 0x43, 0xaa, 0x1d, 0xc6, 0xf1, 0x7c, 0x9c, 0xe3, 0xce, 0x81, 0x6b, 0x7b, + 0x5e, 0x17, 0x0b, 0x9e, 0x88, 0x91, 0x8b, 0x01, 0xd6, 0x8d, 0x47, 0x0e, 0x3d, 0xf3, 0x4f, 0x86, + 0x98, 0x1e, 0xba, 0xa6, 0x87, 0x19, 0xd7, 0x83, 0x31, 0xb9, 0x2e, 0x05, 0xb8, 0xbe, 0xa0, 0xd4, + 0x49, 0x6c, 0x99, 0xac, 0xf5, 0x6d, 0x87, 0x54, 0xcd, 0x63, 0xb0, 0xa5, 0xc2, 0x52, 0x62, 0xf4, + 0x02, 0x56, 0x12, 0xa4, 0x65, 0x7c, 0xbf, 0x18, 0x93, 0xef, 0x72, 0x54, 0x5c, 0xc6, 0xf8, 0x22, + 0x94, 0x5f, 0x62, 0xd7, 0xc2, 0x5d, 0x8d, 0x9b, 0x6a, 0xf5, 0x25, 0xb3, 0xc6, 0x39, 0x0e, 0x7c, + 0xce, 0x60, 0xe8, 0x26, 0x08, 0x43, 0xd6, 0x5c, 0x4c, 0xb0, 0xfb, 0x8a, 0x97, 0x1a, 0xbb, 0x0c, + 0x73, 0x91, 0x3f, 0x51, 0x07, 0x0f, 0x50, 0x1d, 0x04, 0x50, 0x23, 0x87, 0x2c, 0xbd, 0xc5, 0x84, + 0x54, 0x7b, 0x63, 0x14, 0x70, 0x2a, 0x9c, 0xac, 0xe5, 0x53, 0xa1, 0x35, 0x98, 0xed, 0xb3, 0x37, + 0x8b, 0x54, 0x2d, 0xb6, 0xce, 0x6a, 0x9c, 0xc1, 0x2e, 0x43, 0x50, 0x25, 0x62, 0xed, 0x01, 0xcc, + 0x87, 0xcd, 0x77, 0x22, 0x6f, 0x77, 0x0f, 0xe6, 0x42, 0xc6, 0x87, 0x20, 0x1f, 0x28, 0xef, 0xb2, + 0xdf, 0xe8, 0x24, 0xcc, 0x70, 0x1c, 0x46, 0x5e, 0x56, 0xc5, 0x48, 0xf9, 0x00, 0xe6, 0xc3, 0x4a, + 0x4f, 0xa4, 0x46, 0x90, 0x77, 0x65, 0x20, 0x91, 0x57, 0xd9, 0x6f, 0x65, 0x13, 0x66, 0xf8, 0x32, + 0x12, 0xab, 0x2f, 0x08, 0xf2, 0x07, 0xba, 0x6b, 0x08, 0xe7, 0xc4, 0x7e, 0x53, 0x18, 0xb1, 0xf7, + 0x3d, 0xe1, 0x92, 0xd8, 0x6f, 0x45, 0x87, 0x72, 0xa8, 0x7e, 0x48, 0x91, 0x58, 0xa1, 0x50, 0x30, + 0xa3, 0xbf, 0xd9, 0xf4, 0x76, 0x57, 0xae, 0x9c, 0xfd, 0xa6, 0x30, 0xef, 0xc8, 0x91, 0x75, 0x1c, + 0xf6, 0x9b, 0xaa, 0xa8, 0x8b, 0x5f, 0x89, 0xba, 0x73, 0x51, 0xe5, 0x03, 0xc5, 0x00, 0xd8, 0xd0, + 0x1d, 0x7d, 0xcf, 0xec, 0x9a, 0xde, 0x11, 0xba, 0x0e, 0x15, 0xdd, 0x30, 0xb4, 0xb6, 0x84, 0x98, + 0x58, 0x76, 0x03, 0x16, 0x74, 0xc3, 0xd8, 0x08, 0x80, 0xd1, 0xdb, 0xb0, 0x68, 0xb8, 0xb6, 0x13, + 0xc6, 0xe5, 0xed, 0x81, 0x0a, 0x7d, 0x10, 0x44, 0x56, 0xfe, 0x73, 0x1a, 0xce, 0x84, 0x5d, 0x53, + 0xb4, 0x46, 0xfb, 0x11, 0xcc, 0x45, 0x66, 0x4d, 0x31, 0xaf, 0x81, 0xb4, 0x6a, 0x88, 0x22, 0x52, + 0xb3, 0xcc, 0xc6, 0x6a, 0x96, 0x89, 0x55, 0xe0, 0xdc, 0x1b, 0xad, 0x02, 0xe7, 0xdf, 0x48, 0x15, + 0x78, 0x7a, 0xb2, 0x2a, 0xf0, 0x15, 0x56, 0xbb, 0x90, 0xd4, 0xcc, 0xd6, 0xf8, 0xf9, 0x52, 0xf6, + 0x71, 0x2c, 0xd9, 0x46, 0x8a, 0x54, 0x8b, 0x67, 0x27, 0xa9, 0x16, 0x17, 0x52, 0xab, 0xc5, 0xd4, + 0x6a, 0x1c, 0x47, 0x77, 0x7b, 0xb6, 0x2b, 0xcb, 0xc1, 0xd5, 0x22, 0x13, 0x61, 0x41, 0xc2, 0x45, + 0x29, 0x38, 0xb5, 0x70, 0x0c, 0xa9, 0x85, 0xe3, 0xf3, 0x30, 0x67, 0xd9, 0x9a, 0x85, 0x0f, 0x35, + 0xba, 0x97, 0xa4, 0x5a, 0xe2, 0x1b, 0x6b, 0xd9, 0x0d, 0x7c, 0xd8, 0xa4, 0x90, 0x58, 0x69, 0x79, + 0x6e, 0xb2, 0xd2, 0x32, 0x3d, 0x01, 0x7b, 0x3a, 0x79, 0x89, 0x0d, 0x26, 0x0a, 0xa9, 0x96, 0x99, + 0x11, 0x97, 0x38, 0x8c, 0xca, 0x40, 0xd0, 0x65, 0xf0, 0x95, 0x24, 0x90, 0xe6, 0x19, 0x52, 0x59, + 0x42, 0x19, 0x9a, 0xf2, 0x37, 0x19, 0x58, 0x0e, 0x9b, 0xb9, 0x28, 0x28, 0x3e, 0x81, 0xa2, 0x2b, + 0xcf, 0x62, 0x61, 0xda, 0xd7, 0xc7, 0x3e, 0xbc, 0xd5, 0x01, 0x2d, 0xfa, 0x59, 0x6a, 0x1d, 0xfb, + 0xd6, 0x28, 0x7e, 0xa3, 0x2a, 0xd9, 0x4a, 0x1d, 0xce, 0xbd, 0x30, 0x2d, 0xc3, 0x3e, 0x24, 0xa9, + 0x6f, 0x69, 0x82, 0xad, 0x65, 0x12, 0x6c, 0x4d, 0xf9, 0xbb, 0x0c, 0x9c, 0x8c, 0xf2, 0x12, 0xaa, + 0xa8, 0xc7, 0x55, 0xf1, 0x76, 0x42, 0x08, 0x11, 0x21, 0x4e, 0x54, 0xc6, 0xe7, 0xa9, 0xca, 0xb8, + 0x3d, 0x9a, 0xe3, 0x48, 0x75, 0xfc, 0x45, 0x06, 0x4e, 0xa5, 0x8a, 0x11, 0x89, 0x23, 0x33, 0xd1, + 0x38, 0x52, 0xc4, 0xa0, 0x6d, 0xbb, 0x6f, 0x79, 0x81, 0x18, 0x74, 0x83, 0xf5, 0x1a, 0x79, 0xb0, + 0xa7, 0xf5, 0xf4, 0xd7, 0x66, 0xaf, 0xdf, 0x13, 0x1e, 0x9f, 0xb2, 0x7b, 0xce, 0x21, 0xc7, 0x88, + 0x42, 0x95, 0x75, 0x58, 0xf4, 0xa5, 0x1c, 0x5a, 0xf9, 0x0f, 0x54, 0xf2, 0xb3, 0xe1, 0x4a, 0xbe, + 0x05, 0x33, 0xe2, 0x94, 0x7b, 0x13, 0xcd, 0xd0, 0xf3, 0x50, 0x72, 0xb0, 0xdb, 0x33, 0x09, 0xf1, + 0x1d, 0x6d, 0x51, 0x0d, 0x82, 0x94, 0x5f, 0xcd, 0xc2, 0x42, 0xd4, 0x3a, 0x3e, 0x8c, 0x35, 0x0e, + 0x2e, 0x26, 0x1c, 0x01, 0xd1, 0x85, 0x06, 0x52, 0xc8, 0xdb, 0x32, 0x03, 0xc9, 0xa6, 0x55, 0xef, + 0xfc, 0x6c, 0x45, 0xa4, 0x27, 0x54, 0x23, 0x6d, 0xbb, 0xd7, 0xd3, 0x2d, 0x43, 0xf6, 0xb0, 0xc5, + 0x90, 0xea, 0x4f, 0x77, 0x3b, 0x54, 0xed, 0x14, 0xcc, 0x7e, 0xd3, 0xcd, 0x3b, 0xb4, 0xdd, 0x97, + 0xa6, 0xc5, 0x1a, 0x10, 0xcc, 0x59, 0x17, 0x55, 0x10, 0xa0, 0x4d, 0xd3, 0x45, 0xab, 0x90, 0xc7, + 0xd6, 0x2b, 0x99, 0x23, 0x26, 0x34, 0xb9, 0x65, 0x2e, 0xa4, 0x32, 0x3c, 0x74, 0x0b, 0x66, 0x7a, + 0xd4, 0x2c, 0x64, 0xd1, 0x6b, 0x25, 0xa5, 0xd7, 0xab, 0x0a, 0x34, 0x1a, 0x43, 0xf1, 0xa8, 0x51, + 0x56, 0xb6, 0x12, 0x62, 0x28, 0x11, 0x23, 0x4a, 0x44, 0xb4, 0xe5, 0x67, 0xc0, 0xc5, 0xb4, 0xd4, + 0x35, 0xb2, 0x15, 0x89, 0x69, 0xf0, 0x4e, 0x38, 0x0d, 0x06, 0xc6, 0x6b, 0x6d, 0x34, 0xaf, 0xe1, + 0xbd, 0x88, 0x53, 0x50, 0xe8, 0xda, 0x1d, 0x6e, 0x46, 0x25, 0x7e, 0x3d, 0xa2, 0x6b, 0x77, 0x98, + 0x15, 0x2d, 0xc3, 0x34, 0xf1, 0x0c, 0xd3, 0x62, 0x4e, 0xbd, 0xa0, 0xf2, 0x01, 0x7d, 0xf9, 0xd8, + 0x0f, 0xcd, 0xb6, 0xda, 0xb8, 0x5a, 0x66, 0x8f, 0x8a, 0x0c, 0xb2, 0x6d, 0xb5, 0x59, 0x8e, 0xe9, + 0x79, 0x47, 0xd5, 0x79, 0x06, 0xa7, 0x3f, 0xd1, 0x03, 0x59, 0x97, 0x5c, 0x48, 0x2b, 0xf6, 0x24, + 0xb9, 0x6d, 0x59, 0x96, 0x7c, 0x04, 0xb3, 0x87, 0xdc, 0x11, 0x54, 0x2b, 0x8c, 0xfe, 0xda, 0x68, + 0xf7, 0x22, 0x38, 0x48, 0x42, 0x7a, 0xc8, 0x58, 0xd8, 0xa3, 0x67, 0x98, 0x4d, 0x9d, 0x0c, 0x6b, + 0xcc, 0xe7, 0xd4, 0x92, 0x85, 0xbd, 0xa6, 0x00, 0x51, 0x35, 0xb0, 0xec, 0x4e, 0x33, 0x0d, 0x96, + 0x85, 0x15, 0xd5, 0x59, 0x36, 0xae, 0x1b, 0xdf, 0x67, 0xb5, 0xe0, 0xd7, 0x19, 0x38, 0xb9, 0xc1, + 0x2a, 0x29, 0x01, 0x2f, 0x38, 0x49, 0xf1, 0xff, 0xae, 0xdf, 0x97, 0x49, 0xad, 0xd4, 0x47, 0xb5, + 0x26, 0xdb, 0x32, 0x75, 0x98, 0x97, 0xcc, 0x05, 0x8b, 0xdc, 0xd8, 0xad, 0x9d, 0x32, 0x09, 0x0e, + 0x95, 0x07, 0xb0, 0x12, 0x5b, 0x85, 0xa8, 0x7a, 0x5c, 0x80, 0xb9, 0x81, 0xb7, 0xf3, 0x17, 0x51, + 0xf2, 0x61, 0x75, 0x43, 0xb9, 0x07, 0x27, 0x5a, 0x9e, 0xee, 0x7a, 0x31, 0x15, 0x8c, 0x41, 0xcb, + 0x9a, 0x36, 0x61, 0x5a, 0xd1, 0x57, 0x69, 0xc1, 0x72, 0xcb, 0xb3, 0x9d, 0x63, 0x30, 0xa5, 0x3e, + 0x8b, 0xae, 0xdf, 0xee, 0xcb, 0xd3, 0x45, 0x0e, 0x95, 0x15, 0xde, 0x62, 0x8a, 0xcf, 0x76, 0x1f, + 0x4e, 0xf2, 0x0e, 0xcf, 0x71, 0x16, 0x71, 0x4a, 0xf6, 0x97, 0xe2, 0x7c, 0x9f, 0xc3, 0xd2, 0xe0, + 0x50, 0x1d, 0x54, 0x6f, 0xef, 0x84, 0xab, 0xb7, 0xe7, 0x87, 0xec, 0x7a, 0xa8, 0x78, 0xfb, 0xab, + 0x6c, 0xe0, 0x54, 0x48, 0xa9, 0xdd, 0xde, 0x0f, 0xd7, 0x6e, 0x2f, 0x8f, 0xe2, 0x1d, 0x2a, 0xdd, + 0xc6, 0xad, 0x36, 0x97, 0x60, 0xb5, 0x9f, 0xc5, 0x0a, 0xbc, 0xf9, 0xb4, 0x0a, 0x79, 0x44, 0xda, + 0xdf, 0x4b, 0x7d, 0x57, 0xe5, 0xf5, 0x5d, 0x7f, 0x6a, 0xbf, 0x21, 0x77, 0x37, 0x52, 0xdf, 0xbd, + 0x30, 0x52, 0x5e, 0xbf, 0xbc, 0xfb, 0xd7, 0x79, 0x28, 0xfa, 0xcf, 0x62, 0x3a, 0x8f, 0xab, 0x2d, + 0x9b, 0xa0, 0xb6, 0xe0, 0xf9, 0x9d, 0xfb, 0x56, 0xe7, 0x77, 0x7e, 0xec, 0xf3, 0xfb, 0x34, 0x14, + 0xd9, 0x0f, 0xcd, 0xc5, 0xfb, 0xe2, 0x3c, 0x2e, 0x30, 0x80, 0x8a, 0xf7, 0x07, 0x66, 0x38, 0x33, + 0x91, 0x19, 0x46, 0x2a, 0xca, 0xb3, 0xd1, 0x8a, 0xf2, 0x87, 0xfe, 0x79, 0xca, 0x8f, 0xe0, 0xab, + 0x43, 0xf8, 0x26, 0x9e, 0xa4, 0x8d, 0xf0, 0x49, 0xca, 0x4f, 0xe5, 0x77, 0x86, 0x71, 0xf9, 0xc1, + 0xd6, 0x93, 0x77, 0x79, 0x3d, 0x39, 0x68, 0x8b, 0xc2, 0xb3, 0xde, 0x07, 0xf0, 0x9d, 0x88, 0x2c, + 0x2a, 0x9f, 0x1e, 0xb2, 0x46, 0x35, 0x80, 0x4e, 0xd9, 0x86, 0xb6, 0x66, 0xd0, 0x74, 0x1e, 0xcf, + 0x3f, 0xa6, 0x74, 0x9c, 0xff, 0xb2, 0x10, 0xf0, 0x2f, 0x29, 0x5d, 0xda, 0x0f, 0x63, 0x9d, 0x8c, + 0x09, 0xad, 0xf8, 0x4e, 0xb8, 0x91, 0x71, 0x4c, 0xab, 0x8b, 0xf5, 0x31, 0x58, 0xdc, 0xa3, 0xbb, + 0xe2, 0x31, 0xaf, 0x33, 0x17, 0x05, 0x64, 0x9d, 0xe5, 0x15, 0xfb, 0xa6, 0x65, 0x92, 0x03, 0xfe, + 0x7c, 0x86, 0xe7, 0x15, 0x12, 0xb4, 0xce, 0x2e, 0x49, 0xe2, 0xd7, 0xa6, 0xa7, 0xb5, 0x6d, 0x03, + 0x33, 0x9b, 0x9e, 0x56, 0x0b, 0x14, 0xb0, 0x61, 0x1b, 0x78, 0xf0, 0xe6, 0x15, 0x8e, 0xf7, 0xe6, + 0x15, 0x23, 0x6f, 0xde, 0x49, 0x98, 0x71, 0xb1, 0x4e, 0x6c, 0x4b, 0x24, 0xf7, 0x62, 0x44, 0xb7, + 0xa6, 0x87, 0x09, 0xa1, 0x33, 0x89, 0x60, 0x4f, 0x0c, 0x03, 0x41, 0xea, 0xdc, 0xc8, 0x20, 0x75, + 0x48, 0xf7, 0x37, 0x12, 0xa4, 0x96, 0x47, 0x06, 0xa9, 0xe3, 0x34, 0x7f, 0x03, 0x61, 0xfa, 0xfc, + 0x78, 0x61, 0x7a, 0x30, 0xaa, 0x5d, 0x08, 0x47, 0xb5, 0x4f, 0x61, 0xf6, 0x95, 0xdd, 0xed, 0xf7, + 0x30, 0x11, 0x95, 0xfc, 0xd5, 0xd1, 0xd2, 0x7d, 0xcc, 0x09, 0xc4, 0x6d, 0x31, 0x41, 0x1e, 0x2e, + 0x2c, 0xe0, 0x6f, 0x51, 0x58, 0x08, 0x06, 0x9f, 0xfb, 0xa1, 0xe0, 0xd3, 0x4f, 0x68, 0x3a, 0xe3, + 0x25, 0x34, 0xdf, 0xa3, 0x2b, 0xaa, 0xed, 0xc0, 0x5c, 0x50, 0x4f, 0x09, 0xb4, 0xab, 0x41, 0xda, + 0xc4, 0xd4, 0x89, 0x33, 0x08, 0x3a, 0xb8, 0x02, 0xcc, 0x70, 0xa0, 0xf2, 0x4f, 0x19, 0x58, 0x89, + 0x39, 0x25, 0xe1, 0xec, 0xee, 0x46, 0xba, 0xf0, 0x17, 0x46, 0xee, 0xa9, 0xdf, 0x84, 0x7f, 0x12, + 0x6a, 0xc2, 0xbf, 0x37, 0x9a, 0xf0, 0x8d, 0xf7, 0xe0, 0xff, 0x36, 0x0b, 0xe7, 0x76, 0x1d, 0x23, + 0x12, 0x1f, 0x0b, 0x33, 0x19, 0xdf, 0xed, 0x7e, 0x28, 0xf3, 0xac, 0xec, 0xa4, 0xa6, 0x28, 0x52, + 0xad, 0x2f, 0xa1, 0x42, 0x1c, 0xdc, 0xd6, 0x82, 0x2f, 0x30, 0xef, 0xac, 0x3f, 0x4e, 0x68, 0x14, + 0x0c, 0x17, 0x78, 0x95, 0xba, 0xaa, 0xd8, 0x4b, 0xbd, 0x40, 0xc2, 0xd0, 0xda, 0x23, 0x58, 0x4e, + 0x42, 0x9c, 0x48, 0x7d, 0x0a, 0x9c, 0x4f, 0x17, 0x46, 0xc4, 0xc9, 0x3f, 0x87, 0x85, 0xad, 0xd7, + 0xb8, 0xdd, 0x3a, 0xb2, 0xda, 0x13, 0x68, 0xb4, 0x02, 0xb9, 0x76, 0xcf, 0x10, 0x85, 0x75, 0xfa, + 0x33, 0x18, 0xfa, 0xe7, 0xc2, 0xa1, 0xbf, 0x06, 0x95, 0xc1, 0x0c, 0xc2, 0x2a, 0x4f, 0x52, 0xab, + 0x34, 0x28, 0x32, 0x65, 0x3e, 0xa7, 0x8a, 0x91, 0x80, 0x63, 0x97, 0x5f, 0x74, 0xe3, 0x70, 0xec, + 0xba, 0xe1, 0x23, 0x22, 0x17, 0x3e, 0x22, 0x94, 0x3f, 0xcb, 0x40, 0x89, 0xce, 0xf0, 0xad, 0xe4, + 0x17, 0xd9, 0x79, 0x6e, 0x90, 0x9d, 0xfb, 0x49, 0x7e, 0x3e, 0x98, 0xe4, 0x0f, 0x24, 0x9f, 0x66, + 0xe0, 0xb8, 0xe4, 0x33, 0x3e, 0x1c, 0xbb, 0xae, 0x72, 0x1e, 0xe6, 0xb8, 0x6c, 0x62, 0xe5, 0x15, + 0xc8, 0xf5, 0xdd, 0xae, 0xdc, 0xbf, 0xbe, 0xdb, 0x55, 0xfe, 0x24, 0x03, 0xe5, 0x75, 0xcf, 0xd3, + 0xdb, 0x07, 0x13, 0x2c, 0xc0, 0x17, 0x2e, 0x1b, 0x14, 0x2e, 0xbe, 0x88, 0x81, 0xb8, 0xf9, 0x14, + 0x71, 0xa7, 0x43, 0xe2, 0x2a, 0x30, 0x2f, 0x65, 0x49, 0x15, 0xb8, 0x01, 0xa8, 0x69, 0xbb, 0xde, + 0x63, 0xdb, 0x3d, 0xd4, 0x5d, 0x63, 0xb2, 0xb4, 0x1b, 0x41, 0x5e, 0x7c, 0x2d, 0x91, 0xbb, 0x36, + 0xad, 0xb2, 0xdf, 0xca, 0x55, 0x58, 0x0a, 0xf1, 0x4b, 0x9d, 0xf8, 0x23, 0x28, 0xb1, 0xc3, 0x5e, + 0xe4, 0x5f, 0xb7, 0x83, 0x6d, 0xfd, 0xb1, 0x42, 0x03, 0xe5, 0xff, 0xc1, 0x22, 0x0d, 0x0a, 0x19, + 0xdc, 0xf7, 0x20, 0x3f, 0x8e, 0x24, 0x27, 0x67, 0x52, 0x18, 0x45, 0x12, 0x93, 0xdf, 0x66, 0x61, + 0x9a, 0xc1, 0x63, 0x81, 0xda, 0x69, 0x7a, 0xfc, 0x39, 0xb6, 0xe6, 0xe9, 0x1d, 0xff, 0xdb, 0x14, + 0x0a, 0xd8, 0xd1, 0x3b, 0xac, 0xe4, 0xc2, 0x1e, 0x1a, 0x66, 0x07, 0x13, 0x4f, 0x7e, 0xa0, 0x52, + 0xa2, 0xb0, 0x4d, 0x0e, 0x62, 0x4d, 0x37, 0xf3, 0x0f, 0x78, 0xb2, 0x91, 0x57, 0xd9, 0x6f, 0xb4, + 0xca, 0xaf, 0x46, 0x8f, 0xd3, 0x85, 0x61, 0x17, 0xa7, 0x6b, 0x50, 0x88, 0x34, 0x5e, 0xfc, 0x31, + 0x7a, 0x18, 0x3d, 0xe8, 0x2f, 0xa5, 0xac, 0x38, 0xf9, 0x78, 0xff, 0x8e, 0xce, 0xb3, 0x2d, 0x40, + 0xc1, 0xbd, 0x11, 0x56, 0x70, 0x0b, 0x66, 0xd8, 0xd6, 0xc9, 0x40, 0x7d, 0x25, 0x45, 0x54, 0x55, + 0xa0, 0x29, 0x3a, 0x20, 0xbe, 0xed, 0xa1, 0xe0, 0x7c, 0x72, 0x5b, 0x19, 0x12, 0xac, 0xff, 0x7d, + 0x06, 0x96, 0x42, 0x73, 0x08, 0x59, 0x6f, 0x86, 0x27, 0x49, 0x15, 0x55, 0x4c, 0xb0, 0x11, 0x3a, + 0x5f, 0x6f, 0xa5, 0x89, 0xf4, 0x1d, 0x9d, 0xad, 0xbf, 0xcd, 0x00, 0xac, 0xf7, 0xbd, 0x03, 0x51, + 0xe2, 0x0e, 0xda, 0x4b, 0x26, 0x62, 0x2f, 0x35, 0x28, 0x38, 0x3a, 0x21, 0x87, 0xb6, 0x2b, 0xd3, + 0x6b, 0x7f, 0xcc, 0x8a, 0xd1, 0x7d, 0xef, 0x40, 0xf6, 0x74, 0xe9, 0x6f, 0x74, 0x19, 0xe6, 0xf9, + 0x57, 0x5a, 0x9a, 0x6e, 0x18, 0x2e, 0x26, 0x44, 0x34, 0x77, 0xcb, 0x1c, 0xba, 0xce, 0x81, 0x14, + 0xcd, 0x34, 0xb0, 0xe5, 0x99, 0xde, 0x91, 0xe6, 0xd9, 0x2f, 0xb1, 0x25, 0xd2, 0xe4, 0xb2, 0x84, + 0xee, 0x50, 0x20, 0xef, 0x72, 0x75, 0x4c, 0xe2, 0xb9, 0x12, 0x4d, 0x36, 0x12, 0x05, 0x94, 0xa1, + 0xd1, 0x4d, 0xa9, 0x34, 0xfb, 0xdd, 0x2e, 0x57, 0xf1, 0xf1, 0xb7, 0xfd, 0x5d, 0xb1, 0xa0, 0x6c, + 0xda, 0x9b, 0x36, 0x50, 0x9a, 0x58, 0xee, 0x1b, 0xac, 0x07, 0xbe, 0x0b, 0x8b, 0x81, 0x35, 0x08, + 0xb3, 0x0a, 0xe5, 0x33, 0x99, 0x70, 0x3e, 0xa3, 0x3c, 0x01, 0xc4, 0x4b, 0x60, 0xdf, 0x72, 0xdd, + 0xca, 0x09, 0x58, 0x0a, 0x31, 0x12, 0xf1, 0xc1, 0x0d, 0x28, 0x8b, 0x5b, 0xb5, 0xc2, 0x50, 0x4e, + 0x41, 0x81, 0xfa, 0xf9, 0xb6, 0x69, 0xc8, 0x86, 0xff, 0xac, 0x63, 0x1b, 0x1b, 0xa6, 0xe1, 0x2a, + 0x2f, 0xa0, 0xac, 0xf2, 0x79, 0x04, 0xee, 0x63, 0x98, 0x17, 0x77, 0x70, 0xb5, 0xd0, 0x25, 0xf8, + 0xa4, 0x8f, 0xac, 0x82, 0x93, 0xa8, 0x65, 0x2b, 0x38, 0x54, 0x0c, 0xa8, 0xf1, 0x40, 0x26, 0xc4, + 0x5e, 0x2e, 0xf6, 0x31, 0xc8, 0xfb, 0xf0, 0x23, 0x67, 0x09, 0xd3, 0x97, 0xdd, 0xe0, 0x50, 0x39, + 0x03, 0xa7, 0x13, 0x67, 0x11, 0x9a, 0x70, 0xa0, 0x32, 0x78, 0x60, 0x98, 0xf2, 0xe6, 0x03, 0xbb, + 0xd1, 0x90, 0x09, 0xdc, 0x68, 0x38, 0xe9, 0x47, 0xdc, 0x59, 0x79, 0xb4, 0xb2, 0x70, 0x7a, 0x90, + 0x79, 0xe6, 0xd2, 0x32, 0xcf, 0x7c, 0x28, 0xf3, 0x54, 0x5a, 0xbe, 0x3e, 0x45, 0x45, 0xe0, 0x11, + 0xab, 0x5c, 0xf0, 0xb9, 0xa5, 0x43, 0x54, 0x86, 0xad, 0x92, 0xa3, 0xaa, 0x01, 0x2a, 0xe5, 0x3a, + 0x94, 0xc3, 0xae, 0x31, 0xe0, 0xe7, 0x32, 0x31, 0x3f, 0x37, 0x1f, 0x71, 0x71, 0xef, 0x47, 0xd2, + 0x89, 0x74, 0x1d, 0x47, 0x92, 0x89, 0x87, 0x21, 0x67, 0x77, 0x23, 0xe1, 0x32, 0xc2, 0x77, 0xe4, + 0xe7, 0x96, 0xc5, 0x79, 0xf0, 0x98, 0x50, 0x7a, 0xb1, 0x68, 0xe5, 0x22, 0x94, 0x76, 0xd3, 0xbe, + 0xe0, 0xcb, 0xcb, 0xdb, 0x7e, 0x77, 0x60, 0xf9, 0xb1, 0xd9, 0xc5, 0xe4, 0x88, 0x78, 0xb8, 0x57, + 0x67, 0x4e, 0x69, 0xdf, 0xc4, 0x2e, 0x3a, 0x0b, 0xc0, 0xb2, 0x69, 0xc7, 0x36, 0xfd, 0x0f, 0xbb, + 0x02, 0x10, 0xe5, 0x77, 0x19, 0x58, 0x18, 0x10, 0xee, 0xb2, 0x2a, 0xc2, 0x5b, 0x50, 0xa4, 0xeb, + 0x25, 0x9e, 0xde, 0x73, 0x64, 0x63, 0xd6, 0x07, 0xa0, 0xfb, 0x30, 0xbd, 0x4f, 0x64, 0xf5, 0x32, + 0xb1, 0x13, 0x94, 0x24, 0x88, 0x9a, 0xdf, 0x27, 0x75, 0x03, 0x3d, 0x00, 0xe8, 0x13, 0x6c, 0x88, + 0x66, 0x6c, 0x2e, 0x2d, 0x86, 0xd9, 0x0d, 0x5e, 0xd4, 0xa0, 0x04, 0xfc, 0xa2, 0xe0, 0x43, 0x28, + 0x99, 0x96, 0x6d, 0x60, 0xd6, 0x3c, 0x37, 0x44, 0x81, 0x73, 0x04, 0x39, 0x70, 0x8a, 0x5d, 0x82, + 0x0d, 0x05, 0x8b, 0xb3, 0x50, 0xea, 0x57, 0x18, 0x4a, 0x03, 0x16, 0xb9, 0xd3, 0xda, 0xf7, 0x05, + 0x97, 0x16, 0x7b, 0x61, 0xd8, 0xea, 0x98, 0xb6, 0xd4, 0x8a, 0x29, 0x02, 0x2e, 0x49, 0xaa, 0xdc, + 0x83, 0x13, 0xa1, 0x74, 0x73, 0x82, 0xfc, 0x4f, 0x69, 0x46, 0x6a, 0x76, 0x03, 0x73, 0x16, 0x15, + 0x31, 0x69, 0xcd, 0xa3, 0x2a, 0x62, 0x84, 0x57, 0xc4, 0x88, 0xf2, 0x19, 0x9c, 0x0a, 0x15, 0x17, + 0x43, 0x12, 0x3d, 0x8c, 0xc4, 0x93, 0x57, 0x46, 0x71, 0x8d, 0x04, 0x96, 0xff, 0x9d, 0x81, 0xe5, + 0x24, 0x84, 0x63, 0x16, 0xbf, 0x7f, 0x9e, 0x72, 0x29, 0xfc, 0xee, 0x78, 0x62, 0xfd, 0x5e, 0x1a, + 0x07, 0x3b, 0x50, 0x4b, 0xd2, 0x67, 0x7c, 0x97, 0x72, 0x93, 0xec, 0xd2, 0x2f, 0x72, 0x81, 0x26, + 0xd0, 0xba, 0xe7, 0xb9, 0xe6, 0x5e, 0x9f, 0x9a, 0xfc, 0x1b, 0x2f, 0xac, 0xd6, 0xfd, 0x12, 0x21, + 0x57, 0xed, 0xed, 0x21, 0xe4, 0x03, 0x39, 0x12, 0xcb, 0x84, 0x9f, 0x84, 0xcb, 0x84, 0xbc, 0xbd, + 0x73, 0x67, 0x3c, 0x7e, 0x3f, 0xd8, 0x5a, 0xfc, 0x2f, 0xb2, 0x30, 0x1f, 0xde, 0x22, 0xb4, 0x05, + 0xa0, 0xfb, 0x92, 0x8b, 0x17, 0xe5, 0xf2, 0x58, 0xcb, 0x54, 0x03, 0x84, 0xe8, 0x1d, 0xc8, 0xb5, + 0x9d, 0xbe, 0xd8, 0xb5, 0x84, 0x22, 0xe0, 0x86, 0xd3, 0xe7, 0x1e, 0x85, 0xa2, 0xd1, 0x4c, 0x4f, + 0xdc, 0x3f, 0x4d, 0xf5, 0x92, 0xfc, 0x2e, 0x2a, 0xa7, 0x11, 0xc8, 0xe8, 0x29, 0xcc, 0x1f, 0xba, + 0xa6, 0xa7, 0xef, 0x75, 0xb1, 0xd6, 0xd5, 0x8f, 0xb0, 0x2b, 0xbc, 0xe4, 0x18, 0x8e, 0xac, 0x2c, + 0x09, 0x9f, 0x51, 0x3a, 0xe5, 0x8f, 0xa0, 0x20, 0x25, 0x1a, 0x71, 0x22, 0xec, 0xc0, 0x4a, 0x9f, + 0xa2, 0x69, 0xec, 0x02, 0xb7, 0xa5, 0x5b, 0xb6, 0x46, 0x30, 0x3d, 0xc6, 0xe5, 0xa7, 0x65, 0x23, + 0x5c, 0xf4, 0x32, 0xa3, 0xde, 0xb0, 0x5d, 0xdc, 0xd0, 0x2d, 0xbb, 0xc5, 0x49, 0x95, 0x57, 0x50, + 0x0a, 0x2c, 0x70, 0x84, 0x08, 0x75, 0x58, 0x94, 0x77, 0x4a, 0x08, 0xf6, 0xc4, 0xf1, 0x32, 0xd6, + 0xe4, 0x0b, 0x82, 0xae, 0x85, 0x3d, 0x7e, 0x0f, 0xe8, 0x21, 0x9c, 0x52, 0xb1, 0xed, 0x60, 0xcb, + 0xdf, 0xcf, 0x67, 0x76, 0x67, 0x02, 0x0f, 0xfe, 0x16, 0xd4, 0x92, 0xe8, 0x45, 0x64, 0x76, 0x0f, + 0x4e, 0x34, 0xf5, 0x3e, 0xc1, 0xc7, 0xec, 0x83, 0x47, 0x69, 0x05, 0xd7, 0x07, 0xb0, 0xb2, 0x6b, + 0x39, 0xc7, 0xe5, 0x5b, 0x83, 0x6a, 0x9c, 0x5a, 0x70, 0xbe, 0x23, 0x43, 0x6d, 0x91, 0x04, 0x0b, + 0xae, 0xe7, 0xa0, 0xc4, 0x33, 0x6c, 0x2d, 0x90, 0x85, 0x01, 0x07, 0x35, 0xf4, 0x1e, 0x56, 0x4e, + 0xc2, 0x72, 0x98, 0x4e, 0xf0, 0x7b, 0x28, 0x7a, 0xf9, 0xc7, 0xfd, 0xca, 0xf2, 0x14, 0xac, 0xc4, + 0xe8, 0x39, 0xeb, 0x1b, 0x57, 0xa0, 0x20, 0xff, 0xfb, 0x05, 0x9a, 0x85, 0xdc, 0xce, 0x46, 0xb3, + 0x32, 0x45, 0x7f, 0xec, 0x6e, 0x36, 0x2b, 0x19, 0x54, 0x80, 0x7c, 0x6b, 0x63, 0xa7, 0x59, 0xc9, + 0xde, 0xe8, 0x41, 0x25, 0xfa, 0xaf, 0x1f, 0xd0, 0x0a, 0x2c, 0x35, 0xd5, 0xed, 0xe6, 0xfa, 0x93, + 0xf5, 0x9d, 0xfa, 0x76, 0x43, 0x6b, 0xaa, 0xf5, 0x8f, 0xd7, 0x77, 0xb6, 0x2a, 0x53, 0xe8, 0x02, + 0x9c, 0x09, 0x3e, 0x78, 0xba, 0xdd, 0xda, 0xd1, 0x76, 0xb6, 0xb5, 0x8d, 0xed, 0xc6, 0xce, 0x7a, + 0xbd, 0xb1, 0xa5, 0x56, 0x32, 0xe8, 0x0c, 0x9c, 0x0a, 0xa2, 0x3c, 0xaa, 0x6f, 0xd6, 0xd5, 0xad, + 0x0d, 0xfa, 0x7b, 0xfd, 0x59, 0x25, 0x7b, 0xe3, 0x36, 0x94, 0x43, 0xff, 0x95, 0x81, 0x8a, 0xd4, + 0xdc, 0xde, 0xac, 0x4c, 0xa1, 0x32, 0x14, 0x83, 0x7c, 0x0a, 0x90, 0x6f, 0x6c, 0x6f, 0x6e, 0x55, + 0xb2, 0x37, 0xee, 0xc1, 0x42, 0xe4, 0x33, 0x1d, 0xb4, 0x08, 0xe5, 0xd6, 0x7a, 0x63, 0xf3, 0xd1, + 0xf6, 0x27, 0x9a, 0xba, 0xb5, 0xbe, 0xf9, 0x69, 0x65, 0x0a, 0x2d, 0x43, 0x45, 0x82, 0x1a, 0xdb, + 0x3b, 0x1c, 0x9a, 0xb9, 0xf1, 0x55, 0x26, 0xe2, 0xbf, 0x30, 0x3a, 0x01, 0x8b, 0xfe, 0x3c, 0xda, + 0x86, 0xba, 0xb5, 0xbe, 0xb3, 0x45, 0xa7, 0x0f, 0x81, 0xd5, 0xdd, 0x46, 0xa3, 0xde, 0x78, 0x52, + 0xc9, 0x50, 0xb6, 0x03, 0xf0, 0xd6, 0x27, 0x75, 0x8a, 0x9c, 0x0d, 0x23, 0xef, 0x36, 0x7e, 0xda, + 0xd8, 0x7e, 0xd1, 0xa8, 0xe4, 0xd0, 0x12, 0x2c, 0x0c, 0xc0, 0xcd, 0xf5, 0xdd, 0xd6, 0x56, 0x25, + 0xbf, 0xf6, 0x3f, 0x4b, 0x30, 0x2f, 0x23, 0x6b, 0xec, 0xb2, 0xfb, 0x70, 0x4d, 0x98, 0x95, 0xff, + 0x63, 0x25, 0xe1, 0x48, 0x0c, 0xff, 0x67, 0x98, 0xda, 0x85, 0x21, 0x18, 0xc2, 0x8c, 0xa6, 0xd0, + 0x1e, 0x4b, 0x38, 0x02, 0x1f, 0x53, 0x5d, 0x49, 0x0c, 0xef, 0x63, 0x76, 0x56, 0xbb, 0x3a, 0x12, + 0xcf, 0x9f, 0x03, 0xd3, 0x9c, 0x22, 0xf8, 0xb5, 0x30, 0xba, 0x9a, 0x94, 0x0c, 0x24, 0x7c, 0x8e, + 0x5c, 0xbb, 0x36, 0x1a, 0xd1, 0x9f, 0xe6, 0x25, 0x54, 0xa2, 0x5f, 0x0e, 0xa3, 0x84, 0xc2, 0x7f, + 0xca, 0xe7, 0xc9, 0xb5, 0x1b, 0xe3, 0xa0, 0x06, 0x27, 0x8b, 0x7d, 0x63, 0x7b, 0x7d, 0x9c, 0x8f, + 0x16, 0x53, 0x27, 0x4b, 0xfb, 0xbe, 0x91, 0x2b, 0x30, 0xfc, 0xa1, 0x14, 0x4a, 0xfc, 0xa0, 0x35, + 0xe1, 0x33, 0xbb, 0x24, 0x05, 0x26, 0x7f, 0x73, 0xa5, 0x4c, 0xa1, 0x03, 0x58, 0x88, 0x5c, 0x4d, + 0x42, 0x09, 0xe4, 0xc9, 0x77, 0xb0, 0x6a, 0xd7, 0xc7, 0xc0, 0x0c, 0x5b, 0x44, 0xf0, 0x2a, 0x52, + 0xb2, 0x45, 0x24, 0x5c, 0x74, 0x4a, 0xb6, 0x88, 0xc4, 0x5b, 0x4d, 0xcc, 0xb8, 0x43, 0x57, 0x90, + 0x92, 0x8c, 0x3b, 0xe9, 0xe2, 0x53, 0xed, 0xea, 0x48, 0xbc, 0xa0, 0xd2, 0x22, 0x17, 0x92, 0x92, + 0x94, 0x96, 0x7c, 0xe1, 0xa9, 0x76, 0x7d, 0x0c, 0xcc, 0xa8, 0x15, 0x0c, 0xae, 0x37, 0xa4, 0x59, + 0x41, 0xec, 0x32, 0x4e, 0x9a, 0x15, 0xc4, 0x6f, 0x4a, 0x08, 0x2b, 0x88, 0x5c, 0x4b, 0xb8, 0x36, + 0x46, 0x23, 0x30, 0xdd, 0x0a, 0x92, 0x5b, 0x86, 0xca, 0x14, 0xfa, 0xe3, 0x0c, 0x54, 0xd3, 0xba, + 0x55, 0xe8, 0xf6, 0xc4, 0x6d, 0xb6, 0xda, 0xda, 0x24, 0x24, 0xbe, 0x14, 0x5f, 0x02, 0x8a, 0x07, + 0x1a, 0xe8, 0xed, 0xa4, 0x9d, 0x49, 0x09, 0x67, 0x6a, 0xef, 0x8c, 0x87, 0x1c, 0xdc, 0xc9, 0x70, + 0x04, 0x92, 0xb4, 0x93, 0x89, 0xf1, 0x4d, 0xd2, 0x4e, 0xa6, 0x04, 0x33, 0xcc, 0x47, 0x45, 0x03, + 0x92, 0x24, 0x1f, 0x95, 0x12, 0xf2, 0x24, 0xf9, 0xa8, 0xd4, 0xf8, 0x66, 0x0a, 0xb5, 0xa0, 0x20, + 0x7b, 0x7e, 0x28, 0xe1, 0xe4, 0x89, 0x74, 0x1c, 0x6b, 0xca, 0x30, 0x14, 0x9f, 0xe9, 0x13, 0xc8, + 0x53, 0x28, 0x3a, 0x93, 0x8c, 0x2d, 0x99, 0x9d, 0x4d, 0x7b, 0xec, 0x33, 0x7a, 0x0e, 0x33, 0xbc, + 0xc9, 0x85, 0x12, 0xca, 0x57, 0xa1, 0x56, 0x5c, 0xed, 0x7c, 0x3a, 0x82, 0xcf, 0xee, 0x73, 0xfe, + 0x2f, 0xc5, 0x44, 0xff, 0x0a, 0x5d, 0x4a, 0xfe, 0x7f, 0x2c, 0xe1, 0x76, 0x59, 0xed, 0xf2, 0x08, + 0xac, 0xa0, 0x79, 0x44, 0x52, 0xa7, 0xab, 0x23, 0xf3, 0xdf, 0x74, 0xf3, 0x48, 0xce, 0xb0, 0xb9, + 0xe1, 0xc7, 0x33, 0xf0, 0x24, 0xc3, 0x4f, 0xad, 0x7b, 0x24, 0x19, 0x7e, 0x7a, 0x52, 0xaf, 0x4c, + 0x21, 0x0f, 0x96, 0x12, 0xea, 0xad, 0xe8, 0x9d, 0xb4, 0x17, 0x37, 0xa9, 0xf8, 0x5b, 0xbb, 0x39, + 0x26, 0x76, 0x70, 0xf3, 0x85, 0x23, 0x3b, 0x97, 0x5e, 0x84, 0x4c, 0xdd, 0xfc, 0x98, 0xdb, 0x3a, + 0x80, 0x85, 0x48, 0xec, 0x8c, 0xd2, 0x0e, 0xa5, 0xf8, 0x79, 0x7c, 0x7d, 0x0c, 0x4c, 0x39, 0xd3, + 0xda, 0xbf, 0xe5, 0x60, 0x8e, 0x57, 0xed, 0x45, 0xfc, 0xf7, 0x29, 0xc0, 0xa0, 0x61, 0x86, 0x2e, + 0x26, 0x6b, 0x3f, 0xd4, 0xea, 0xac, 0x5d, 0x1a, 0x8e, 0x14, 0x34, 0xe9, 0x40, 0xf3, 0x09, 0x5d, + 0x1a, 0xd1, 0x9b, 0x4a, 0x35, 0xe9, 0x84, 0x0e, 0x96, 0x32, 0x85, 0x3e, 0x86, 0xa2, 0xdf, 0xe5, + 0x40, 0x49, 0x5d, 0x92, 0x48, 0x1b, 0xa7, 0x76, 0x71, 0x28, 0x4e, 0x50, 0xea, 0x40, 0x0b, 0x23, + 0x49, 0xea, 0x78, 0xab, 0x24, 0x49, 0xea, 0xa4, 0x3e, 0xc8, 0x40, 0x27, 0xbc, 0xd0, 0x99, 0xaa, + 0x93, 0x50, 0x9d, 0x39, 0x55, 0x27, 0xe1, 0x6a, 0xa9, 0x32, 0xb5, 0xe6, 0x40, 0x99, 0x67, 0x75, + 0x72, 0x77, 0x35, 0x98, 0x0b, 0x26, 0x7b, 0x28, 0x55, 0xce, 0x50, 0x12, 0x59, 0xbb, 0x32, 0x0a, + 0x4d, 0xce, 0xf8, 0xe8, 0xca, 0x6f, 0xbe, 0x3e, 0x9b, 0xf9, 0xe7, 0xaf, 0xcf, 0x4e, 0x7d, 0xf5, + 0xcd, 0xd9, 0xcc, 0x6f, 0xbe, 0x39, 0x9b, 0xf9, 0xc7, 0x6f, 0xce, 0x66, 0xfe, 0xfd, 0x9b, 0xb3, + 0x99, 0x3f, 0xfd, 0x8f, 0xb3, 0x53, 0x3f, 0x2b, 0x48, 0xf2, 0xbd, 0x19, 0xf6, 0x4f, 0x0f, 0xdf, + 0xfb, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfa, 0x34, 0x80, 0x48, 0xba, 0x52, 0x00, 0x00, } diff --git a/cri/apis/v1alpha2/api.proto b/cri/apis/v1alpha2/api.proto index db9a4412d..3433adcf9 100644 --- a/cri/apis/v1alpha2/api.proto +++ b/cri/apis/v1alpha2/api.proto @@ -974,6 +974,10 @@ message UpdateContainerResourcesRequest { string container_id = 1; // Resource configuration specific to Linux containers. LinuxContainerResources linux = 2; + // Annotations contains arbitrary metadata for the container. + // Note: spec_annotations is the metadata for container runtime, such as runc. Not + // the 'annotations' for Kubernetes objects. + map spec_annotations = 3; } message UpdateContainerResourcesResponse {} diff --git a/cri/v1alpha2/cri.go b/cri/v1alpha2/cri.go index 082794649..5474279c4 100644 --- a/cri/v1alpha2/cri.go +++ b/cri/v1alpha2/cri.go @@ -1064,8 +1064,9 @@ func (c *CriManager) UpdateContainerResources(ctx context.Context, r *runtime.Up resources := r.GetLinux() updateConfig := &apitypes.UpdateConfig{ - Resources: parseResourcesFromCRI(resources), - DiskQuota: resources.GetDiskQuota(), + Resources: parseResourcesFromCRI(resources), + DiskQuota: resources.GetDiskQuota(), + SpecAnnotation: r.GetSpecAnnotations(), } err = c.ContainerMgr.Update(ctx, containerID, updateConfig) if err != nil { diff --git a/docs/kubernetes/pouch_cri_api_changelog.md b/docs/kubernetes/pouch_cri_api_changelog.md index f229ea060..295ddc788 100644 --- a/docs/kubernetes/pouch_cri_api_changelog.md +++ b/docs/kubernetes/pouch_cri_api_changelog.md @@ -42,64 +42,28 @@ Kubernetes Version: V1.10.0+ ### What To Solve? 1. Support the ability to update the container quotadir. +2. Support more container resource fields define in OCI spec. +3. Support the ability to update container runtime spec annotations. ### Modification + Add the `DiskQuota` field in `LinuxContainerResources`, referring to the definition of Resources in [moby](https://github.com/moby/moby/blob/master/api/types/container/host_config.go) for better compatibility. The new fields are as follows: - -``` -type LinuxContainerResources struct { - ...... - //***New Fields***// - // DiskQuota constrains the disk. Default: none (not specified) - DiskQuota map[string]string `protobuf:"bytes,100,req,name=disk_quota,json=diskQuota,proto3" json:"disk_quota,omitempty"` - // Block IO weight (relative weight vs. other containers) - BlkioWeight uint16 `protobuf:"bytes,101,opt,name=blkio_weight,json=blkioWeight,proto3" json:"blkio_weight,omitempty"` - BlkioWeightDevice []*WeightDevice `protobuf:"bytes,102,req,name=blkio_weight_device,json=blkioWeightDevice,proto3" json:"blkio_weight_device,omitempty"` - BlkioDeviceReadBps []*ThrottleDevice `protobuf:"bytes,103,req,name=blkio_device_read_bps,json=blkioDeviceReadBps,proto3" json:"blkio_device_read_bps,omitempty"` - BlkioDeviceWriteBps []*ThrottleDevice `protobuf:"bytes,104,req,name=blkio_device_write_bps,json=blkioDeviceWriteBps,proto3" json:"blkio_device_write_bps,omitempty"` - BlkioDeviceReadIOps []*ThrottleDevice `protobuf:"bytes,105,req,name=blkio_device_read_IOps,json=blkioDeviceReadIOps,proto3" json:"blkio_device_read_IOps,omitempty"` - BlkioDeviceWriteIOps []*ThrottleDevice `protobuf:"bytes,106,req,name=blkio_device_write_IOps,json=blkioDeviceWriteIOps,proto3" json:"blkio_device_write_IOps,omitempty"` - // Kernel memory limit (in bytes) - KernelMemory int64 `protobuf:"bytes,107,opt,name=kernel_memory,json=kernelMemory,proto3" json:"kernel_memory,omitempty"` - // Memory soft limit (in bytes) - MemoryReservation int64 `protobuf:"bytes,108,opt,name=memory_reservation,json=memoryReservation,proto3" json:"memory_reservation,omitempty"` - // Tuning container memory swappiness behaviour - MemorySwappiness int64 `protobuf:"bytes,109,opt,name=memory_swappiness,json=memorySwappiness,proto3" json:"memory_swappiness,omitempty"` - // List of ulimits to be set in the container - Ulimits []*Ulimit `protobuf:"bytes,110,opt,name=ulimits,json=ulimits,proto3" json:"ulimits,omitempty"` -} - -// WeightDevice is a structure that holds device:weight pair -type WeightDevice struct { - // Path of weightdevice. - Path string `protobuf:"bytes,1,opt,name=path,json=path,proto3" json:"path,omitempty"` - // Weight of weightdevice. - Weight uint16 `protobuf:"bytes,2,opt,name=weight,json=weight,proto3" json:"weight,omitempty"` -} - -// ThrottleDevice is a structure that holds device:rate_per_second pair -type ThrottleDevice struct { - // Path of throttledevice. - Path string `protobuf:"bytes,1,opt,name=path,json=path,proto3" json:"path,omitempty"` - // Rate of throttledevice. - Rate uint64 `protobuf:"bytes,1,opt,name=rate,json=rate,proto3" json:"rate,omitempty"` -} - -// Ulimit is a human friendly version of Rlimit. -type Ulimit struct { - // Name of ulimit. - Name string `protobuf:"bytes,1,opt,name=name,json=name,proto3" json:"name,omitempty"` - // Hard of ulimit. - Hard int64 `protobuf:"bytes,2,opt,name=hard,json=hard,proto3" json:"hard,omitempty"` - // Soft of Ulimit. - Soft int64 `protobuf:"bytes,3,opt,name=soft,json=soft,proto3" json:"soft,omitempty"` -} -``` ++ Add some fields from [OCI spec](https://github.com/opencontainers/runtime-spec/blob/master/specs-go/config.go) The changes need to be made in the proto file are as follows: ``` +message UpdateContainerResourcesRequest { + // ID of the container to update. + string container_id = 1; + // Resource configuration specific to Linux containers. + LinuxContainerResources linux = 2; + // Annotations contains arbitrary metadata for the container. + // Note: spec_annotations is the metadata for container runtime, such as runc. Not + // the 'annotations' for Kubernetes objects. + map spec_annotations = 3; +} + message LinuxContainerResources { ...... //***New Fields***// From 92cb56bd7e2e9ec89b87219335e071be692f6151 Mon Sep 17 00:00:00 2001 From: zhuangqh Date: Mon, 4 Mar 2019 14:18:36 +0800 Subject: [PATCH 2/2] update cri changelog Signed-off-by: zhuangqh --- docs/kubernetes/pouch_cri_api_changelog.md | 39 ++++++++++------------ 1 file changed, 18 insertions(+), 21 deletions(-) diff --git a/docs/kubernetes/pouch_cri_api_changelog.md b/docs/kubernetes/pouch_cri_api_changelog.md index 295ddc788..47b6fa1f3 100644 --- a/docs/kubernetes/pouch_cri_api_changelog.md +++ b/docs/kubernetes/pouch_cri_api_changelog.md @@ -9,6 +9,7 @@ * [CreateContainer](#createcontainer "CreateContainer()") * [RemoveVolume](#removevolume "RemoveVolume()") * [StartPodSandbox](#startpodsandbox "StartPodSandbox()") + * [PauseContainer/UnpauseContainer](#pausecontainer--unpausecontainer ) * [Pull Request](#pull-request) ## Overview @@ -17,24 +18,6 @@ Because the CRI interface of Kubernetes cannot meet the customized development o Kubernetes Version: V1.10.0+ -## Requirements - -1. Support the ability to update the container diskquota. - - Scenario: - - Limits the directory size within the container. -2. Support the ability to acquire the volumes of the Image. - - Scenario: - - In the Upgrade process, the volumes and mountpoints of the old container need to be read. At the same time, the volumes in the new image also need to be read. If the mount point is the same, the volumes in the new image cover the volumes in the old container. -3. Support to the ability to acquire the volumes of the Container. - - Scenario: - - In the Upgrade process, the volumes of the new container needs to remain consistent with that of the old container, so the volumes of the old container needs to be read. -4. Support to the ability to acquire the envs of the Container. - - Scenario: - - In the Upgrade process, the env of the new container needs to remain consistent with that of the old container, so the envs of the old container needs to be read. -5. Support to the ability to start the PodSandbox specified and setup the network. - - Scenario: - - It will fail to get IP after PodSandbox restarts because of the external factors such as shutdown the host. - # The Changes Of CRI API ## UpdateContainerResources @@ -122,6 +105,10 @@ message Ulimit { + Pass the quotaID generated when the container is created for disk reuse. + Support to the ability to acquire the envs of the Container. +### Scenario + +In the container inplace upgrade process, we read the attributes from the old one, and attach it to the new one. + ### Modification + The `ContainerStatus` struct is used only in `ContainerStatusResponse` in CRI, so the volumes of the container can be obtained by directly adding `volume` field to the `ContainerStatus` struct. @@ -172,6 +159,10 @@ message Volume { + Support the ability to acquire the volumes of the Image. +### Scenario: + +In the container inplace upgrade process, the volumes of the new container needs to remain consistent with that of the old container, so the volumes of the old container needs to be read. + ### Modification + Add `volumes` field in the Image struct. @@ -202,8 +193,7 @@ message Image { ### What To Solve? -+ Support the ability to set DiskQuota. -+ Add missing fields. ++ Support the ability to set DiskQuota, NetPriority. ### Modification @@ -281,6 +271,10 @@ message Mount { + StartPodSandbox restarts a sandbox pod which was stopped by accident and setup the network with network plugin. +### Scenario: + +It will fail to get IP after PodSandbox restarts because of the external factors such as shutdown the host. It is a solution to avoid container reallocating. + ### Modification + Provides an interface for starting PodSandbox specified. @@ -310,7 +304,10 @@ message StartPodSandboxResponse {} + PauseContainer pause a container. + UnpauseContainer unpause a container. -+ Scenario: Under serverless situation, we may pre-allocate a batch of container which were ready to serve, waiting online. Using pause container to balance the resource cost and application start-up time. + +### Scenario + +Under serverless situation, we may pre-allocate a batch of container which were ready to serve, waiting online. Using pause container to balance the resource cost and application start-up time. ### Modification