From 0a84d51b7814582d80fda271657c0d422ec7400d Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Wed, 30 May 2018 19:23:06 -0400 Subject: [PATCH] server,ui: Add debugging for quiesced ranges I suspect that #26257 is caused by the unquiescedReplicas map introduced in #24956 getting out of sync with the per-replica quiescent flag. Add debug pages to help us see if that's happening. Release note: None --- pkg/server/problem_ranges.go | 5 + pkg/server/serverpb/status.pb.go | 696 +++++++++++------- pkg/server/serverpb/status.proto | 12 + pkg/server/status.go | 12 +- pkg/storage/replica.go | 15 +- pkg/storage/replica_test.go | 3 +- .../problemRanges/connectionsTable.tsx | 7 +- .../containers/problemRanges/index.tsx | 5 + .../reports/containers/range/rangeTable.tsx | 5 + 9 files changed, 486 insertions(+), 274 deletions(-) diff --git a/pkg/server/problem_ranges.go b/pkg/server/problem_ranges.go index e450c25b9861..961eb62c87f3 100644 --- a/pkg/server/problem_ranges.go +++ b/pkg/server/problem_ranges.go @@ -125,12 +125,17 @@ func (s *statusServer) ProblemRanges( problems.NoLeaseRangeIDs = append(problems.NoLeaseRangeIDs, info.State.Desc.RangeID) } + if info.Problems.QuiescentEqualsTicking { + problems.QuiescentEqualsTickingRangeIDs = + append(problems.QuiescentEqualsTickingRangeIDs, info.State.Desc.RangeID) + } } sort.Sort(roachpb.RangeIDSlice(problems.UnavailableRangeIDs)) sort.Sort(roachpb.RangeIDSlice(problems.RaftLeaderNotLeaseHolderRangeIDs)) sort.Sort(roachpb.RangeIDSlice(problems.NoRaftLeaderRangeIDs)) sort.Sort(roachpb.RangeIDSlice(problems.NoLeaseRangeIDs)) sort.Sort(roachpb.RangeIDSlice(problems.UnderreplicatedRangeIDs)) + sort.Sort(roachpb.RangeIDSlice(problems.QuiescentEqualsTickingRangeIDs)) response.ProblemsByNodeID[resp.nodeID] = problems case <-ctx.Done(): return nil, status.Errorf(codes.DeadlineExceeded, ctx.Err().Error()) diff --git a/pkg/server/serverpb/status.pb.go b/pkg/server/serverpb/status.pb.go index a56a7ab66ec2..2d1db601a5ce 100644 --- a/pkg/server/serverpb/status.pb.go +++ b/pkg/server/serverpb/status.pb.go @@ -250,6 +250,11 @@ type RangeProblems struct { NoRaftLeader bool `protobuf:"varint,3,opt,name=no_raft_leader,json=noRaftLeader,proto3" json:"no_raft_leader,omitempty"` Underreplicated bool `protobuf:"varint,4,opt,name=underreplicated,proto3" json:"underreplicated,omitempty"` NoLease bool `protobuf:"varint,5,opt,name=no_lease,json=noLease,proto3" json:"no_lease,omitempty"` + // Quiescent ranges do not tick by definition, but we track this in + // two different ways and suspect that they're getting out of sync. + // If the replica's quiescent flag doesn't agree with the store's + // list of replicas that are ticking, warn about it. + QuiescentEqualsTicking bool `protobuf:"varint,6,opt,name=quiescent_equals_ticking,json=quiescentEqualsTicking,proto3" json:"quiescent_equals_ticking,omitempty"` } func (m *RangeProblems) Reset() { *m = RangeProblems{} } @@ -305,6 +310,7 @@ type RangeInfo struct { CmdQGlobal CommandQueueMetrics `protobuf:"bytes,12,opt,name=cmd_q_global,json=cmdQGlobal" json:"cmd_q_global"` LeaseStatus cockroach_storage2.LeaseStatus `protobuf:"bytes,13,opt,name=lease_status,json=leaseStatus" json:"lease_status"` Quiescent bool `protobuf:"varint,14,opt,name=quiescent,proto3" json:"quiescent,omitempty"` + Ticking bool `protobuf:"varint,15,opt,name=ticking,proto3" json:"ticking,omitempty"` } func (m *RangeInfo) Reset() { *m = RangeInfo{} } @@ -747,6 +753,7 @@ type ProblemRangesResponse_NodeProblems struct { NoRaftLeaderRangeIDs []github_com_cockroachdb_cockroach_pkg_roachpb.RangeID `protobuf:"varint,4,rep,packed,name=no_raft_leader_range_ids,json=noRaftLeaderRangeIds,casttype=github.com/cockroachdb/cockroach/pkg/roachpb.RangeID" json:"no_raft_leader_range_ids,omitempty"` NoLeaseRangeIDs []github_com_cockroachdb_cockroach_pkg_roachpb.RangeID `protobuf:"varint,5,rep,packed,name=no_lease_range_ids,json=noLeaseRangeIds,casttype=github.com/cockroachdb/cockroach/pkg/roachpb.RangeID" json:"no_lease_range_ids,omitempty"` UnderreplicatedRangeIDs []github_com_cockroachdb_cockroach_pkg_roachpb.RangeID `protobuf:"varint,6,rep,packed,name=underreplicated_range_ids,json=underreplicatedRangeIds,casttype=github.com/cockroachdb/cockroach/pkg/roachpb.RangeID" json:"underreplicated_range_ids,omitempty"` + QuiescentEqualsTickingRangeIDs []github_com_cockroachdb_cockroach_pkg_roachpb.RangeID `protobuf:"varint,7,rep,packed,name=quiescent_equals_ticking_range_ids,json=quiescentEqualsTickingRangeIds,casttype=github.com/cockroachdb/cockroach/pkg/roachpb.RangeID" json:"quiescent_equals_ticking_range_ids,omitempty"` } func (m *ProblemRangesResponse_NodeProblems) Reset() { *m = ProblemRangesResponse_NodeProblems{} } @@ -2360,6 +2367,16 @@ func (m *RangeProblems) MarshalTo(dAtA []byte) (int, error) { } i++ } + if m.QuiescentEqualsTicking { + dAtA[i] = 0x30 + i++ + if m.QuiescentEqualsTicking { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i++ + } return i, nil } @@ -2578,6 +2595,16 @@ func (m *RangeInfo) MarshalTo(dAtA []byte) (int, error) { } i++ } + if m.Ticking { + dAtA[i] = 0x78 + i++ + if m.Ticking { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i++ + } return i, nil } @@ -3970,6 +3997,24 @@ func (m *ProblemRangesResponse_NodeProblems) MarshalTo(dAtA []byte) (int, error) i = encodeVarintStatus(dAtA, i, uint64(j36)) i += copy(dAtA[i:], dAtA37[:j36]) } + if len(m.QuiescentEqualsTickingRangeIDs) > 0 { + dAtA39 := make([]byte, len(m.QuiescentEqualsTickingRangeIDs)*10) + var j38 int + for _, num1 := range m.QuiescentEqualsTickingRangeIDs { + num := uint64(num1) + for num >= 1<<7 { + dAtA39[j38] = uint8(uint64(num)&0x7f | 0x80) + num >>= 7 + j38++ + } + dAtA39[j38] = uint8(num) + j38++ + } + dAtA[i] = 0x3a + i++ + i = encodeVarintStatus(dAtA, i, uint64(j38)) + i += copy(dAtA[i:], dAtA39[:j38]) + } return i, nil } @@ -4044,11 +4089,11 @@ func (m *RangeResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintStatus(dAtA, i, uint64((&v).Size())) - n38, err := (&v).MarshalTo(dAtA[i:]) + n40, err := (&v).MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n38 + i += n40 } } return i, nil @@ -4141,11 +4186,11 @@ func (m *CommandQueueResponse) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0xa i++ i = encodeVarintStatus(dAtA, i, uint64(m.Snapshot.Size())) - n39, err := m.Snapshot.MarshalTo(dAtA[i:]) + n41, err := m.Snapshot.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n39 + i += n41 return i, nil } @@ -4483,6 +4528,9 @@ func (m *RangeProblems) Size() (n int) { if m.NoLease { n += 2 } + if m.QuiescentEqualsTicking { + n += 2 + } return n } @@ -4568,6 +4616,9 @@ func (m *RangeInfo) Size() (n int) { if m.Quiescent { n += 2 } + if m.Ticking { + n += 2 + } return n } @@ -5153,6 +5204,13 @@ func (m *ProblemRangesResponse_NodeProblems) Size() (n int) { } n += 1 + sovStatus(uint64(l)) + l } + if len(m.QuiescentEqualsTickingRangeIDs) > 0 { + l = 0 + for _, e := range m.QuiescentEqualsTickingRangeIDs { + l += sovStatus(uint64(e)) + } + n += 1 + sovStatus(uint64(l)) + l + } return n } @@ -6911,6 +6969,26 @@ func (m *RangeProblems) Unmarshal(dAtA []byte) error { } } m.NoLease = bool(v != 0) + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field QuiescentEqualsTicking", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.QuiescentEqualsTicking = bool(v != 0) default: iNdEx = preIndex skippy, err := skipStatus(dAtA[iNdEx:]) @@ -7625,6 +7703,26 @@ func (m *RangeInfo) Unmarshal(dAtA []byte) error { } } m.Quiescent = bool(v != 0) + case 15: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Ticking", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.Ticking = bool(v != 0) default: iNdEx = preIndex skippy, err := skipStatus(dAtA[iNdEx:]) @@ -12209,6 +12307,68 @@ func (m *ProblemRangesResponse_NodeProblems) Unmarshal(dAtA []byte) error { } else { return fmt.Errorf("proto: wrong wireType = %d for field UnderreplicatedRangeIDs", wireType) } + case 7: + if wireType == 0 { + var v github_com_cockroachdb_cockroach_pkg_roachpb.RangeID + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (github_com_cockroachdb_cockroach_pkg_roachpb.RangeID(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.QuiescentEqualsTickingRangeIDs = append(m.QuiescentEqualsTickingRangeIDs, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthStatus + } + postIndex := iNdEx + packedLen + if postIndex > l { + return io.ErrUnexpectedEOF + } + for iNdEx < postIndex { + var v github_com_cockroachdb_cockroach_pkg_roachpb.RangeID + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStatus + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (github_com_cockroachdb_cockroach_pkg_roachpb.RangeID(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.QuiescentEqualsTickingRangeIDs = append(m.QuiescentEqualsTickingRangeIDs, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field QuiescentEqualsTickingRangeIDs", wireType) + } default: iNdEx = preIndex skippy, err := skipStatus(dAtA[iNdEx:]) @@ -13225,266 +13385,270 @@ var ( func init() { proto.RegisterFile("server/serverpb/status.proto", fileDescriptorStatus) } var fileDescriptorStatus = []byte{ - // 4161 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5b, 0xdd, 0x6f, 0x1b, 0x49, - 0x72, 0xf7, 0x48, 0x24, 0x45, 0x16, 0x29, 0x89, 0x6a, 0xc9, 0x36, 0x4d, 0xfb, 0x4c, 0xef, 0x78, - 0xd7, 0x96, 0xbd, 0x36, 0xb9, 0xab, 0xdb, 0x0d, 0x36, 0x4e, 0x36, 0xbb, 0x96, 0xe4, 0x0f, 0xad, - 0xbd, 0xb6, 0x76, 0x64, 0xef, 0x05, 0x9b, 0x60, 0x07, 0x43, 0x4e, 0x8b, 0x9a, 0xd3, 0x70, 0x86, - 0x9e, 0x1e, 0x2a, 0xe2, 0x2d, 0x7c, 0xd9, 0xdb, 0x20, 0xc0, 0x25, 0x41, 0x2e, 0x77, 0xf9, 0xc2, - 0x01, 0x41, 0x80, 0xe0, 0x5e, 0x12, 0x04, 0xc8, 0x07, 0x90, 0xa7, 0x3c, 0x05, 0xc8, 0x43, 0xb0, - 0x40, 0x1e, 0x12, 0xe4, 0xf2, 0x10, 0x24, 0x80, 0x36, 0x51, 0xf2, 0x90, 0xfc, 0x0b, 0xf7, 0x14, - 0x74, 0x75, 0xcf, 0xb0, 0x87, 0xa4, 0x49, 0xca, 0x5a, 0x2f, 0xee, 0xc1, 0xe6, 0x74, 0x75, 0x57, - 0xf5, 0xaf, 0xab, 0xbb, 0xab, 0xab, 0xaa, 0x5b, 0x70, 0x8e, 0xd1, 0x60, 0x8f, 0x06, 0x35, 0xf1, - 0xd3, 0xae, 0xd7, 0x58, 0x68, 0x85, 0x1d, 0x56, 0x6d, 0x07, 0x7e, 0xe8, 0x93, 0x33, 0x0d, 0xbf, - 0xb1, 0x1b, 0xf8, 0x56, 0x63, 0xa7, 0x2a, 0x1a, 0x54, 0xa3, 0x76, 0xe5, 0x62, 0xbd, 0xe3, 0xb8, - 0x76, 0xcd, 0xf1, 0xb6, 0x7d, 0xd1, 0xb8, 0xbc, 0xd8, 0xf4, 0x19, 0x73, 0xda, 0x35, 0xf1, 0x23, - 0x89, 0x04, 0xb9, 0xdb, 0xf5, 0x9a, 0x6d, 0x85, 0x96, 0xa4, 0x5d, 0x92, 0x7d, 0xda, 0x8e, 0xd5, - 0xf4, 0x7c, 0x16, 0x3a, 0x0d, 0xc6, 0x1b, 0xf4, 0x4a, 0xb2, 0x5d, 0x39, 0xc2, 0x86, 0x90, 0x12, - 0xc8, 0xca, 0x3a, 0x0b, 0xfd, 0xc0, 0x6a, 0xd2, 0x1a, 0xf5, 0x9a, 0x8e, 0x17, 0xfd, 0xb4, 0xeb, - 0xb5, 0xd6, 0x5e, 0xa3, 0x11, 0xf3, 0xcb, 0x36, 0x2e, 0xb5, 0x18, 0x35, 0x13, 0xfc, 0x95, 0xa8, - 0x4e, 0xfe, 0xd6, 0x2d, 0x46, 0xb1, 0x07, 0x1a, 0x01, 0xef, 0x84, 0x8e, 0x5b, 0x73, 0xfd, 0x26, - 0xff, 0x17, 0x09, 0x44, 0x5a, 0xc7, 0x0b, 0x28, 0xf3, 0xdd, 0x3d, 0x6a, 0x9b, 0x96, 0x6d, 0x07, - 0xb2, 0xee, 0x2c, 0x0d, 0x1b, 0x76, 0x2d, 0xb0, 0xb6, 0x43, 0xfc, 0xaf, 0x5d, 0xc7, 0x1f, 0x59, - 0xb9, 0xd4, 0xf4, 0x9b, 0x3e, 0x7e, 0xd6, 0xf8, 0x97, 0xa4, 0x9e, 0x6b, 0xfa, 0x7e, 0xd3, 0xa5, - 0x35, 0xab, 0xed, 0xd4, 0x2c, 0xcf, 0xf3, 0x43, 0x2b, 0x74, 0x7c, 0x2f, 0x46, 0x28, 0x6b, 0xb1, - 0x54, 0xef, 0x6c, 0xd7, 0x42, 0xa7, 0x45, 0x59, 0x68, 0xb5, 0xa4, 0x6a, 0xf5, 0x2a, 0x2c, 0xae, - 0xd1, 0x20, 0x74, 0xb6, 0x9d, 0x86, 0x15, 0x52, 0x66, 0xd0, 0x27, 0x1d, 0xca, 0x42, 0x72, 0x1a, - 0x66, 0x3c, 0xdf, 0xa6, 0xa6, 0x63, 0x97, 0xb4, 0x0b, 0xda, 0x72, 0xce, 0xc8, 0xf0, 0xe2, 0x86, - 0xad, 0xff, 0x53, 0x0a, 0x88, 0xc2, 0xb0, 0x4e, 0x43, 0xcb, 0x71, 0x19, 0xf9, 0x00, 0x52, 0x61, - 0xb7, 0x4d, 0xb1, 0xf1, 0xdc, 0xca, 0xdb, 0xd5, 0x67, 0x4e, 0x79, 0x75, 0x90, 0x59, 0x25, 0x3d, - 0xea, 0xb6, 0xa9, 0x81, 0xa2, 0xc8, 0x45, 0x98, 0xa5, 0x41, 0xe0, 0x07, 0x66, 0x8b, 0x32, 0x66, - 0x35, 0x69, 0x69, 0x0a, 0x81, 0x14, 0x90, 0xf8, 0xbe, 0xa0, 0x11, 0x02, 0x29, 0xbe, 0x26, 0x4a, - 0xd3, 0x17, 0xb4, 0xe5, 0x82, 0x81, 0xdf, 0xc4, 0x80, 0xcc, 0xb6, 0x43, 0x5d, 0x9b, 0x95, 0x52, - 0x17, 0xa6, 0x97, 0xf3, 0x2b, 0x6f, 0x1c, 0x0d, 0xcd, 0x6d, 0xe4, 0x5d, 0x4d, 0x7d, 0x7e, 0x50, - 0x39, 0x61, 0x48, 0x49, 0xe5, 0xbf, 0x99, 0x82, 0x8c, 0xa8, 0x20, 0xa7, 0x20, 0xe3, 0x30, 0xd6, - 0xa1, 0x41, 0xa4, 0x19, 0x51, 0x22, 0x25, 0x98, 0x61, 0x9d, 0xfa, 0x37, 0x69, 0x23, 0x94, 0x48, - 0xa3, 0x22, 0xf9, 0x1a, 0xc0, 0x9e, 0xe5, 0x3a, 0xb6, 0xb9, 0x1d, 0xf8, 0x2d, 0x84, 0x3a, 0x6d, - 0xe4, 0x90, 0x72, 0x3b, 0xf0, 0x5b, 0xa4, 0x02, 0x79, 0x51, 0xdd, 0xf1, 0x42, 0xc7, 0x2d, 0xa5, - 0xb0, 0x5e, 0x70, 0x3c, 0xe6, 0x14, 0x72, 0x0e, 0x72, 0x7c, 0x8d, 0x50, 0xc6, 0x28, 0x2b, 0xa5, - 0x2f, 0x4c, 0x2f, 0xe7, 0x8c, 0x1e, 0x81, 0xd4, 0x60, 0x91, 0x39, 0x4d, 0xcf, 0x0a, 0x3b, 0x01, - 0x35, 0x2d, 0xb7, 0xe9, 0x07, 0x4e, 0xb8, 0xd3, 0x2a, 0x65, 0x10, 0x03, 0x89, 0xab, 0x6e, 0x46, - 0x35, 0x1c, 0x4e, 0xbb, 0x53, 0x77, 0x9d, 0x86, 0xb9, 0x4b, 0xbb, 0xa5, 0x19, 0x6c, 0x97, 0x13, - 0x94, 0x7b, 0xb4, 0x4b, 0xce, 0x42, 0x6e, 0x97, 0x76, 0xcd, 0x0e, 0xea, 0x3c, 0x8b, 0xbd, 0x65, - 0x77, 0x69, 0xf7, 0x31, 0xea, 0xfb, 0x1a, 0x10, 0xba, 0x1f, 0x52, 0xcf, 0xa6, 0xb6, 0xd9, 0x6b, - 0x95, 0xc3, 0x56, 0xc5, 0xa8, 0xe6, 0x9e, 0x6c, 0xad, 0x5f, 0x84, 0xf9, 0xbe, 0xb9, 0x25, 0x19, - 0x98, 0x5a, 0xbb, 0x59, 0x3c, 0x41, 0xb2, 0x90, 0x7a, 0xf0, 0x70, 0xfd, 0x56, 0x51, 0xd3, 0x7d, - 0x58, 0x4a, 0xae, 0x40, 0xd6, 0xf6, 0x3d, 0x46, 0xc9, 0x37, 0xa0, 0xd0, 0x50, 0xe8, 0x25, 0x0d, - 0x27, 0xf3, 0xfa, 0x91, 0x26, 0x53, 0xce, 0x62, 0x42, 0x90, 0xfe, 0x0e, 0xcc, 0xc9, 0xea, 0x71, - 0xab, 0x9d, 0x2c, 0x41, 0x3a, 0xa0, 0x96, 0xdd, 0xc5, 0x19, 0xcd, 0x1a, 0xa2, 0xa0, 0xff, 0x9f, - 0x06, 0xf3, 0xb1, 0x04, 0x89, 0xf6, 0xa3, 0xa4, 0x88, 0xf4, 0xea, 0xcd, 0xc3, 0x83, 0x4a, 0xe6, - 0x01, 0x17, 0xb3, 0xfe, 0x93, 0x83, 0xca, 0xd7, 0x9b, 0x4e, 0xb8, 0xd3, 0xa9, 0x57, 0x1b, 0x7e, - 0xab, 0x16, 0x0f, 0xc0, 0xae, 0xf7, 0xbe, 0x6b, 0xed, 0xdd, 0x66, 0x4d, 0x9a, 0xb9, 0xaa, 0x60, - 0x8b, 0x51, 0xfc, 0x02, 0xcc, 0xc8, 0xe9, 0x46, 0x1c, 0xf9, 0x95, 0xf3, 0x8a, 0x12, 0xb8, 0x35, - 0xa9, 0x3e, 0x8e, 0xad, 0xc9, 0x4d, 0xdb, 0x0e, 0xe4, 0xa8, 0x23, 0x26, 0x72, 0x03, 0x00, 0xed, - 0xac, 0xc9, 0xed, 0x2c, 0xae, 0xbf, 0xfc, 0xca, 0x49, 0x45, 0x04, 0x56, 0x56, 0x37, 0xbc, 0x6d, - 0x5f, 0x72, 0xe6, 0x90, 0xc2, 0x09, 0xfa, 0x1c, 0x14, 0x38, 0x9a, 0x48, 0x55, 0xfa, 0x26, 0xcc, - 0xca, 0xb2, 0x1c, 0xf8, 0x3b, 0x90, 0xe6, 0x30, 0xa3, 0xf9, 0xb9, 0x38, 0x64, 0x7e, 0x84, 0xc9, - 0xe4, 0x6c, 0x5b, 0xf8, 0x29, 0x7b, 0x11, 0x7c, 0xfa, 0x25, 0xc8, 0xf3, 0xaa, 0xb1, 0x96, 0xe7, - 0xaf, 0x53, 0x90, 0x33, 0xac, 0xed, 0x90, 0xcb, 0xe0, 0x0b, 0x11, 0x02, 0xda, 0x76, 0x9d, 0x86, - 0x15, 0xb5, 0x4c, 0xad, 0xce, 0x1e, 0x1e, 0x54, 0x72, 0x86, 0xa0, 0x6e, 0xac, 0x1b, 0x39, 0xd9, - 0x60, 0xc3, 0x26, 0x3f, 0x03, 0xb0, 0x63, 0x05, 0x36, 0x5a, 0x6f, 0x2a, 0x95, 0xb8, 0x50, 0x15, - 0x26, 0xb6, 0x7a, 0xd7, 0x0a, 0x6c, 0x14, 0x1a, 0x8d, 0x7e, 0x27, 0x22, 0x70, 0xf3, 0xe2, 0x52, - 0xcb, 0x46, 0x9d, 0xa5, 0x0c, 0xfc, 0xe6, 0x6b, 0x42, 0x88, 0x49, 0x21, 0x3c, 0x51, 0xe0, 0xbb, - 0xdf, 0x6a, 0xb7, 0x5d, 0x87, 0xda, 0xa5, 0x34, 0x36, 0x8e, 0x8a, 0xe4, 0x11, 0x64, 0xdb, 0x81, - 0xdf, 0xc4, 0xe9, 0xcb, 0xa0, 0x8e, 0x56, 0x46, 0xac, 0xe1, 0x78, 0x84, 0xd5, 0x4d, 0xc9, 0x74, - 0xcb, 0x0b, 0x83, 0xae, 0x84, 0x16, 0x4b, 0x22, 0x97, 0x61, 0x9e, 0xa3, 0x31, 0xc3, 0xc0, 0xf2, - 0xd8, 0x36, 0x0d, 0x28, 0xc5, 0x9d, 0x9c, 0x32, 0xe6, 0x38, 0xf9, 0x51, 0x4c, 0x2d, 0xff, 0xb6, - 0x06, 0xd9, 0x48, 0x14, 0xc7, 0xde, 0xb2, 0xc2, 0xc6, 0x8e, 0x50, 0x98, 0x21, 0x0a, 0x7c, 0x94, - 0x1e, 0xdd, 0x17, 0x66, 0x2b, 0x65, 0xe0, 0x77, 0x6f, 0x94, 0xd3, 0xea, 0x28, 0x4f, 0x41, 0xa6, - 0x6d, 0x75, 0x18, 0xb5, 0x71, 0xf0, 0x59, 0x43, 0x96, 0xc8, 0x15, 0x28, 0xb6, 0xa9, 0x67, 0x3b, - 0x5e, 0xd3, 0x64, 0x9e, 0xd5, 0x66, 0x3b, 0x7e, 0x28, 0xd5, 0x30, 0x2f, 0xe9, 0x5b, 0x92, 0x5c, - 0xfe, 0x26, 0xcc, 0x26, 0x46, 0x46, 0x8a, 0x30, 0xcd, 0xed, 0x90, 0x40, 0xc4, 0x3f, 0xc9, 0x1a, - 0xa4, 0xf7, 0x2c, 0xb7, 0x13, 0x4d, 0xd4, 0xf5, 0x23, 0xa9, 0xcb, 0x10, 0xbc, 0x37, 0xa6, 0xde, - 0xd2, 0xf4, 0x1f, 0x6b, 0x30, 0x6b, 0x58, 0x5e, 0x93, 0x6e, 0x06, 0x7e, 0xdd, 0xa5, 0x2d, 0x46, - 0x2e, 0x40, 0xbe, 0xe3, 0x59, 0x7b, 0x96, 0xe3, 0x5a, 0x75, 0x57, 0x1c, 0x57, 0x59, 0x43, 0x25, - 0x91, 0x37, 0xe1, 0x34, 0xd7, 0x20, 0x0d, 0x4c, 0xcf, 0x0f, 0x4d, 0x71, 0xe8, 0xef, 0xf8, 0xae, - 0x4d, 0x03, 0x69, 0x04, 0x96, 0x44, 0xf5, 0x03, 0x3f, 0xbc, 0xcf, 0x2b, 0xef, 0x62, 0x1d, 0x79, - 0x19, 0xe6, 0x3c, 0xdf, 0xe4, 0x2b, 0xca, 0x14, 0xf5, 0xa8, 0xb8, 0xac, 0x51, 0xf0, 0x7c, 0x8e, - 0xf1, 0x3e, 0xd2, 0xc8, 0x32, 0xcc, 0x77, 0x3c, 0x9b, 0x06, 0x72, 0x65, 0x86, 0xb1, 0x22, 0xfb, - 0xc9, 0xe4, 0x0c, 0x64, 0x3d, 0x5f, 0x74, 0x8f, 0x9a, 0xcc, 0x1a, 0x33, 0x9e, 0x8f, 0x1d, 0xea, - 0xbb, 0x30, 0x8f, 0x83, 0xe2, 0xe3, 0x76, 0xd0, 0xd5, 0xe1, 0x66, 0xf9, 0x49, 0x87, 0x06, 0x0e, - 0x65, 0x66, 0x9b, 0x06, 0x26, 0xa3, 0x0d, 0xdf, 0x13, 0xbb, 0x42, 0x33, 0x8a, 0xb2, 0x66, 0x93, - 0x06, 0x5b, 0x48, 0x27, 0x57, 0x61, 0xe1, 0x57, 0x02, 0x27, 0x4c, 0x36, 0x9e, 0xc2, 0xc6, 0xf3, - 0xa2, 0x22, 0x6e, 0xab, 0xdf, 0x05, 0xd8, 0x0c, 0x68, 0x18, 0x76, 0xb7, 0xda, 0x96, 0xc7, 0xcf, - 0x06, 0x16, 0x5a, 0x41, 0x68, 0x46, 0x33, 0x96, 0x33, 0xb2, 0x48, 0xe0, 0x07, 0xc7, 0x69, 0x98, - 0xa1, 0x1e, 0x1e, 0x0b, 0xf2, 0x00, 0xcc, 0x50, 0x8f, 0x9f, 0x05, 0x37, 0x52, 0xff, 0xfb, 0x27, - 0x15, 0x4d, 0xff, 0x73, 0x0d, 0x16, 0xd7, 0xfc, 0x56, 0xcb, 0xf2, 0xec, 0x0f, 0x3a, 0xb4, 0x43, - 0xdf, 0xa7, 0x61, 0xc0, 0xb1, 0xbf, 0x02, 0x73, 0xd8, 0xa9, 0xd9, 0x10, 0x95, 0x0c, 0x05, 0x4f, - 0x1b, 0xb3, 0x48, 0x95, 0x1c, 0x8c, 0xbb, 0x03, 0xdc, 0xfa, 0xf6, 0x5a, 0x4d, 0x61, 0xab, 0x02, - 0x27, 0xc6, 0x8d, 0xae, 0xc2, 0x42, 0xcb, 0xda, 0x37, 0xfd, 0x3d, 0x1a, 0xb8, 0x56, 0x9b, 0x99, - 0x8c, 0x52, 0x4f, 0x1e, 0xb8, 0xf3, 0x2d, 0x6b, 0xff, 0xa1, 0xa4, 0x6f, 0x51, 0x8a, 0x63, 0x09, - 0x03, 0x4a, 0x4d, 0xe6, 0x7c, 0x4b, 0xec, 0xe5, 0xb4, 0x91, 0xe5, 0x84, 0x2d, 0xe7, 0x5b, 0x54, - 0xff, 0x97, 0x19, 0x6e, 0x6c, 0xbc, 0x26, 0xe5, 0x46, 0x90, 0xbc, 0x03, 0x29, 0xd6, 0xb6, 0x3c, - 0x04, 0x96, 0x5f, 0x79, 0x65, 0xc4, 0x7a, 0xec, 0xe9, 0x4a, 0xee, 0x58, 0x64, 0x24, 0x1b, 0x00, - 0xb8, 0x34, 0x54, 0xfb, 0xf3, 0xf2, 0x24, 0xcb, 0x3a, 0x32, 0x49, 0x41, 0x6c, 0xf8, 0xd6, 0x55, - 0xf3, 0x93, 0x5f, 0x59, 0x56, 0xa5, 0x08, 0x2f, 0xb4, 0xaa, 0x78, 0xa3, 0xd5, 0x78, 0x10, 0x91, - 0xd1, 0x15, 0x1b, 0xb9, 0x05, 0x73, 0xcc, 0xef, 0x04, 0x0d, 0x6a, 0x46, 0xc6, 0x36, 0x8d, 0xa7, - 0xd6, 0x9d, 0xc3, 0x83, 0x4a, 0x61, 0x0b, 0x6b, 0x8e, 0x77, 0x76, 0x15, 0x58, 0x4f, 0x88, 0x4d, - 0x9e, 0xc0, 0xbc, 0xec, 0x8e, 0x63, 0xc3, 0xfe, 0x32, 0xd8, 0xdf, 0xc6, 0xe1, 0x41, 0x65, 0x56, - 0xf4, 0xb7, 0xc5, 0x6b, 0xb0, 0xc3, 0x37, 0x8e, 0xd4, 0xa1, 0xe4, 0x33, 0x66, 0x99, 0x22, 0xc6, - 0x1e, 0x74, 0x1f, 0x67, 0x86, 0xb8, 0x8f, 0x6b, 0x30, 0x2b, 0x77, 0xb8, 0xc3, 0x81, 0x75, 0xd1, - 0xdf, 0xc9, 0xaf, 0x94, 0x14, 0xa5, 0x46, 0xdd, 0xe0, 0xde, 0x8b, 0xfc, 0x09, 0x64, 0xba, 0x2b, - 0x78, 0xc8, 0x7b, 0x68, 0xe0, 0xd1, 0xbe, 0x94, 0x72, 0x83, 0x93, 0x32, 0x30, 0xb5, 0x8a, 0x3d, - 0x52, 0xcc, 0xba, 0xb0, 0x4f, 0xb7, 0xc5, 0xec, 0xb2, 0x12, 0xa0, 0xa0, 0xab, 0xe3, 0x04, 0xf5, - 0x6c, 0x80, 0x3a, 0xbf, 0x8c, 0x3c, 0x82, 0x7c, 0xa3, 0x65, 0x9b, 0x4f, 0x4c, 0xd7, 0x6f, 0x58, - 0x6e, 0x29, 0x8f, 0xd2, 0xaa, 0xa3, 0x7c, 0xa7, 0xc1, 0x9d, 0x19, 0xad, 0xbd, 0x46, 0xcb, 0xfe, - 0xe0, 0x3e, 0x17, 0x43, 0x3e, 0x84, 0x82, 0x90, 0xda, 0x74, 0xfd, 0xba, 0xe5, 0x96, 0x0a, 0xc7, - 0x10, 0x0b, 0x5c, 0xec, 0x1d, 0x94, 0x43, 0xee, 0x40, 0x41, 0x8d, 0xae, 0x4a, 0xb3, 0x03, 0x5e, - 0x4e, 0xb4, 0xb4, 0x71, 0x16, 0x12, 0x5e, 0x44, 0xde, 0xed, 0x91, 0xb8, 0xa7, 0xfc, 0xa4, 0xe3, - 0x50, 0xd6, 0xa0, 0x5e, 0x58, 0x9a, 0x43, 0xb3, 0xd9, 0x23, 0xe8, 0xbf, 0x15, 0x1d, 0x07, 0xe3, - 0x1d, 0x3f, 0x0b, 0x72, 0x01, 0x6f, 0x69, 0x3a, 0x68, 0x69, 0xa6, 0x97, 0xa7, 0x57, 0xd7, 0x0f, - 0x0f, 0x2a, 0x59, 0xb1, 0x9d, 0xd6, 0xd9, 0x91, 0x57, 0xa9, 0x64, 0x34, 0xb2, 0x28, 0x76, 0xc3, - 0x66, 0xfa, 0x23, 0x98, 0x8b, 0xc0, 0x48, 0x57, 0x6a, 0x15, 0x32, 0x58, 0x1b, 0xf9, 0x52, 0x2f, - 0x8f, 0x9b, 0x7d, 0x65, 0x5f, 0x4b, 0x4e, 0x7d, 0x19, 0x66, 0xef, 0x60, 0xe8, 0x3c, 0xd6, 0x9f, - 0xfa, 0xe1, 0x14, 0xcc, 0xdf, 0x74, 0xf9, 0xfa, 0x08, 0xfd, 0x60, 0x3d, 0xe8, 0x1a, 0x1d, 0x8f, - 0x7c, 0x0c, 0xd9, 0x68, 0xd8, 0xc2, 0x0a, 0xaf, 0xae, 0x1d, 0x1e, 0x54, 0x66, 0x24, 0xf8, 0xe7, - 0x1e, 0xf4, 0x8c, 0x1c, 0x34, 0xb9, 0x0b, 0x19, 0xba, 0x47, 0xbd, 0x50, 0xe8, 0x34, 0xbf, 0xf2, - 0xda, 0x88, 0x11, 0xf6, 0x61, 0xab, 0xde, 0xe2, 0x8c, 0x86, 0xe4, 0x2f, 0xff, 0x12, 0xa4, 0x91, - 0x40, 0xde, 0x82, 0x14, 0x8f, 0x69, 0xa5, 0x6d, 0x2e, 0x57, 0x45, 0xc0, 0x5b, 0x8d, 0x02, 0xde, - 0xea, 0xa3, 0x28, 0xe0, 0x5d, 0xcd, 0x72, 0x45, 0x7d, 0xff, 0x8b, 0x8a, 0x66, 0x20, 0x07, 0x77, - 0xd9, 0x92, 0xa1, 0x65, 0x54, 0xd4, 0x57, 0xe0, 0x64, 0xdc, 0x3b, 0x8e, 0x21, 0x52, 0xe6, 0x99, - 0x7e, 0xfd, 0xc4, 0x43, 0xd3, 0xff, 0x56, 0x83, 0x53, 0xfd, 0x4c, 0xc3, 0x63, 0x83, 0xe9, 0x2f, - 0x33, 0x36, 0x58, 0x83, 0x19, 0x3b, 0xe8, 0x9a, 0x41, 0xc7, 0x93, 0xc7, 0xca, 0xd5, 0xc9, 0x55, - 0x6a, 0x64, 0x6c, 0xfc, 0xd5, 0xbf, 0xa7, 0x41, 0xb1, 0x87, 0xfd, 0xa7, 0x60, 0x6f, 0x7c, 0x04, - 0x0b, 0x0a, 0x1e, 0xa9, 0xc6, 0x5b, 0x90, 0x95, 0x43, 0x8d, 0x36, 0xc8, 0x51, 0xc6, 0x3a, 0x23, - 0xc6, 0xca, 0x74, 0x1d, 0x0a, 0xef, 0x6d, 0x3d, 0x7c, 0x10, 0x8b, 0x8d, 0x52, 0x08, 0x5a, 0x2f, - 0x85, 0xa0, 0xff, 0x48, 0x83, 0xfc, 0x7d, 0xbf, 0x39, 0x51, 0x80, 0xe8, 0xd2, 0x3d, 0xea, 0xca, - 0x15, 0x24, 0x0a, 0x3c, 0xc2, 0x16, 0x6e, 0x12, 0xae, 0x4c, 0xe1, 0x41, 0x0b, 0xc7, 0x89, 0xaf, - 0x46, 0xbe, 0x8a, 0xb8, 0xa3, 0x84, 0x95, 0x22, 0x88, 0xe0, 0x8e, 0x13, 0x56, 0x15, 0x61, 0xba, - 0x65, 0xed, 0xe3, 0x61, 0x9c, 0x33, 0xf8, 0x27, 0x5f, 0xa5, 0x6d, 0x2b, 0x0c, 0x69, 0xe0, 0xc9, - 0x90, 0x3e, 0x2a, 0xea, 0x0f, 0x81, 0xdc, 0xf7, 0x9b, 0xdc, 0x89, 0x76, 0x14, 0x23, 0xf2, 0xb3, - 0xdc, 0x0b, 0x43, 0x92, 0x54, 0xd2, 0x99, 0xfe, 0x60, 0xd1, 0xf5, 0x9b, 0x55, 0x35, 0xa8, 0x88, - 0xda, 0xeb, 0x55, 0x58, 0xbc, 0xef, 0x37, 0x6f, 0x3b, 0x2e, 0x65, 0xf7, 0x1d, 0x16, 0x8e, 0xb5, - 0x20, 0x9b, 0xb0, 0x94, 0x6c, 0x2f, 0x21, 0xbc, 0x05, 0xe9, 0x6d, 0x4e, 0x94, 0x00, 0xce, 0x0d, - 0x03, 0xc0, 0xb9, 0x54, 0xb7, 0x04, 0x19, 0xf4, 0xb7, 0x61, 0x4e, 0x4a, 0x1c, 0xab, 0x79, 0x02, - 0x29, 0xce, 0x23, 0x15, 0x8f, 0xdf, 0xdc, 0xf8, 0x6d, 0x85, 0x56, 0x63, 0x77, 0x7c, 0x1a, 0xeb, - 0x57, 0x61, 0x6e, 0x33, 0xf0, 0xb7, 0x27, 0xe9, 0x68, 0x55, 0xa6, 0xb6, 0xd2, 0x98, 0xda, 0xaa, - 0x8e, 0x74, 0xfe, 0x54, 0x89, 0xd5, 0x5e, 0x2e, 0x4b, 0x2f, 0x42, 0x0a, 0xb3, 0x1f, 0x59, 0x48, - 0xdd, 0xbd, 0x75, 0x73, 0xb3, 0x78, 0x42, 0xbf, 0x02, 0x73, 0xf2, 0x3c, 0x1c, 0x8b, 0xf5, 0x2f, - 0xf0, 0xd8, 0xda, 0x0e, 0x71, 0x9b, 0xf0, 0xed, 0xff, 0x42, 0x93, 0x0d, 0xef, 0x42, 0x1a, 0xb7, - 0xe1, 0x44, 0x5e, 0x6a, 0x9f, 0x6f, 0x89, 0x8c, 0xfa, 0x55, 0x7e, 0xb0, 0x49, 0xb8, 0xb7, 0xb8, - 0xb7, 0xa5, 0x5a, 0x5a, 0x2d, 0x69, 0x69, 0x3f, 0x9d, 0xe2, 0xc1, 0x8c, 0x6c, 0x2c, 0x0f, 0xf1, - 0x17, 0x7d, 0x08, 0xdd, 0x81, 0x0c, 0x3a, 0x81, 0xd1, 0x21, 0x74, 0x65, 0x8c, 0x23, 0xde, 0x1b, - 0x48, 0x74, 0xd6, 0x0a, 0x76, 0xee, 0x8a, 0x8b, 0xd4, 0xc7, 0x34, 0xca, 0x59, 0x9e, 0x44, 0x0e, - 0xd7, 0x76, 0x32, 0xff, 0xd1, 0x81, 0x22, 0xaf, 0x5d, 0xa7, 0xf5, 0x4e, 0x33, 0x5a, 0x0b, 0x09, - 0x13, 0xab, 0xbd, 0x10, 0x13, 0xfb, 0xaf, 0x53, 0xb0, 0xa0, 0xf4, 0x2b, 0xb7, 0xee, 0xf7, 0xb4, - 0x3e, 0x1f, 0xe4, 0xad, 0x31, 0x83, 0x4a, 0xb0, 0x8b, 0x6e, 0x64, 0xc6, 0xe2, 0xe7, 0xf9, 0x20, - 0x3f, 0xfb, 0xe2, 0x39, 0x81, 0x4a, 0x14, 0x5f, 0xda, 0x64, 0x95, 0x29, 0xe4, 0x15, 0x74, 0x6a, - 0xd6, 0x61, 0x5a, 0x64, 0x1d, 0xde, 0x4d, 0x66, 0x1d, 0xae, 0x4e, 0xd2, 0x91, 0x58, 0xb1, 0x6a, - 0xca, 0xe1, 0xd7, 0xa7, 0x20, 0x7f, 0xb3, 0x11, 0x3a, 0x7b, 0xf4, 0x83, 0x0e, 0x0d, 0xba, 0xe4, - 0x14, 0x4c, 0x45, 0x1b, 0x7a, 0x35, 0x73, 0x78, 0x50, 0x99, 0xda, 0x58, 0x37, 0xa6, 0x1c, 0x9b, - 0xf7, 0xcf, 0x9e, 0x44, 0xc7, 0x06, 0xff, 0x24, 0x37, 0xd0, 0xf5, 0x0f, 0x42, 0x99, 0xa0, 0x9b, - 0xcc, 0x93, 0x11, 0x2c, 0x3c, 0x86, 0x76, 0x98, 0x69, 0x3b, 0x2c, 0x0c, 0x9c, 0x7a, 0xa7, 0x97, - 0x56, 0x98, 0x75, 0xd8, 0x7a, 0x8f, 0x48, 0x56, 0x21, 0xdd, 0xde, 0x89, 0x32, 0x0a, 0x73, 0x2b, - 0xd7, 0x46, 0x1d, 0x9f, 0xbd, 0x31, 0x54, 0x37, 0x39, 0x8f, 0x21, 0x58, 0xf5, 0x57, 0x20, 0x8d, - 0x65, 0x32, 0x0b, 0xb9, 0x4d, 0xe3, 0xd6, 0xe6, 0x4d, 0x63, 0xe3, 0xc1, 0x9d, 0xe2, 0x09, 0x5e, - 0xbc, 0xf5, 0x8b, 0xb7, 0xd6, 0x1e, 0x3f, 0xe2, 0x45, 0x4d, 0x7f, 0x1d, 0x16, 0xf9, 0x99, 0xb0, - 0x45, 0x19, 0x73, 0x7c, 0x2f, 0x36, 0x72, 0x65, 0xc8, 0x76, 0x18, 0x0d, 0x3c, 0xab, 0x15, 0x99, - 0x82, 0xb8, 0xac, 0x7f, 0x37, 0x05, 0x33, 0xb2, 0xfd, 0x0b, 0xb5, 0x70, 0x2a, 0x86, 0xa9, 0x24, - 0x06, 0xae, 0xc8, 0x86, 0xeb, 0x50, 0x2f, 0x34, 0xa3, 0x8c, 0xab, 0x38, 0xbd, 0x67, 0x05, 0xf5, - 0xa6, 0xcc, 0xa8, 0x5e, 0x81, 0x22, 0xa6, 0xf7, 0x1a, 0x78, 0xd9, 0x62, 0xa2, 0x28, 0x71, 0x92, - 0xcf, 0x2b, 0xf4, 0x07, 0x5c, 0xe2, 0x16, 0xcc, 0x59, 0xa8, 0x4b, 0x53, 0xe6, 0x61, 0x30, 0x83, - 0x9f, 0x5f, 0xb9, 0x34, 0x99, 0xf2, 0xe5, 0x2a, 0x9e, 0xb5, 0x62, 0x92, 0x43, 0x59, 0x6f, 0xad, - 0x64, 0x8e, 0xbe, 0x56, 0x3e, 0x86, 0xdc, 0xee, 0x9e, 0x19, 0xee, 0x7b, 0x5c, 0xb9, 0x3c, 0x28, - 0x2e, 0xac, 0xae, 0xfe, 0xfb, 0xa4, 0x2a, 0x15, 0x77, 0x57, 0x1d, 0xc7, 0xae, 0x3e, 0x7e, 0xbc, - 0xc1, 0x4d, 0xd2, 0xcc, 0xbd, 0xbd, 0x47, 0xfb, 0x1e, 0x37, 0xaf, 0xbb, 0xf8, 0x81, 0xd9, 0x25, - 0xd7, 0x62, 0xa1, 0xa9, 0x8c, 0x9a, 0xc7, 0xd5, 0xa8, 0x1c, 0x5e, 0x31, 0xb8, 0x3b, 0x72, 0x08, - 0x42, 0xd9, 0x1d, 0xfa, 0x6f, 0x68, 0xb0, 0xa0, 0x2e, 0x1f, 0x71, 0x8c, 0xbc, 0xc8, 0x45, 0xf1, - 0xec, 0x60, 0xe0, 0xcf, 0x34, 0x58, 0x4a, 0x2e, 0x65, 0x69, 0x2b, 0xd7, 0x21, 0xcb, 0x24, 0x4d, - 0x1a, 0x4b, 0x7d, 0xc4, 0x9c, 0x4a, 0xf6, 0x28, 0xe2, 0x8f, 0x38, 0xc9, 0x7b, 0x7d, 0x06, 0x6e, - 0xd4, 0xa6, 0x1c, 0x50, 0x49, 0xd2, 0xc6, 0xe9, 0x4f, 0x80, 0xac, 0x59, 0x5e, 0x83, 0xba, 0xa8, - 0xdd, 0xb1, 0x9e, 0xcd, 0x25, 0xc8, 0xe2, 0xec, 0xf0, 0x1a, 0x1c, 0xf4, 0x6a, 0x9e, 0xcf, 0x28, - 0x32, 0xf3, 0x19, 0xc5, 0xca, 0xbe, 0x0d, 0x33, 0xdd, 0xb7, 0x69, 0xef, 0xc0, 0x62, 0xa2, 0x4b, - 0xa9, 0x9b, 0x32, 0x64, 0x1b, 0x48, 0xa6, 0xb6, 0x4c, 0xb2, 0xc6, 0x65, 0xee, 0x33, 0x23, 0xde, - 0xc8, 0x67, 0xc6, 0x82, 0xde, 0x85, 0x25, 0x21, 0x48, 0x0e, 0x70, 0x2c, 0xfa, 0x6b, 0x00, 0x52, - 0x89, 0x11, 0xfe, 0x82, 0xb8, 0x01, 0x90, 0x02, 0x36, 0xd6, 0x8d, 0x9c, 0x6c, 0x30, 0x66, 0x0c, - 0x1b, 0x70, 0xb2, 0xaf, 0xeb, 0xe7, 0x1e, 0xc5, 0x7f, 0x68, 0x50, 0xdc, 0x6a, 0x5b, 0x1e, 0x3f, - 0x18, 0x62, 0xa3, 0x77, 0xb1, 0x6f, 0x08, 0xab, 0xd0, 0x5b, 0xb7, 0xf1, 0x70, 0x0c, 0x35, 0xb5, - 0x2a, 0x46, 0xf3, 0xe6, 0x4f, 0x0e, 0x2a, 0xaf, 0x1f, 0xed, 0xf4, 0xbc, 0x47, 0xbb, 0x4a, 0x46, - 0xf6, 0x41, 0x2f, 0x23, 0x3b, 0x7d, 0x1c, 0x89, 0x32, 0x91, 0xab, 0xff, 0x9d, 0x06, 0x0b, 0xca, - 0xe8, 0xa4, 0x96, 0xb6, 0x20, 0x1f, 0xfa, 0xa1, 0xe5, 0x9a, 0x22, 0x73, 0x25, 0x02, 0xf1, 0x6b, - 0x43, 0x92, 0x37, 0xe2, 0x7a, 0xbd, 0x1a, 0xdd, 0xb2, 0x57, 0xdf, 0xff, 0x70, 0x6d, 0x0d, 0x45, - 0x45, 0x29, 0x21, 0x14, 0x83, 0x14, 0x52, 0x81, 0xbc, 0xf0, 0x80, 0x1a, 0x7e, 0xc7, 0x13, 0x57, - 0x13, 0x69, 0x03, 0x90, 0xb4, 0xc6, 0x29, 0xe4, 0x0d, 0x38, 0x65, 0xb5, 0xdb, 0x81, 0xbf, 0xef, - 0xb4, 0xac, 0x90, 0xf2, 0xb3, 0x6f, 0xd7, 0xac, 0x77, 0x43, 0xca, 0xe4, 0x65, 0xcd, 0x92, 0x52, - 0xbb, 0xee, 0xb0, 0xdd, 0x55, 0x5e, 0xa7, 0xff, 0x1c, 0x2c, 0xc9, 0xdc, 0x5b, 0x32, 0x11, 0x34, - 0xc9, 0x14, 0xe9, 0xff, 0x98, 0x83, 0x93, 0x7d, 0xdc, 0x83, 0x11, 0x7e, 0xf6, 0xcb, 0xb6, 0x4c, - 0xff, 0xa0, 0xc1, 0x62, 0x94, 0x1f, 0x34, 0xeb, 0xdd, 0x38, 0x61, 0x9b, 0x43, 0x73, 0x71, 0x7b, - 0x74, 0x3c, 0x32, 0x88, 0xb5, 0x1a, 0xe7, 0x1e, 0xbb, 0x22, 0x39, 0x2b, 0xbc, 0xb5, 0x87, 0x7c, - 0x06, 0x0e, 0x0f, 0x2a, 0xc5, 0xbe, 0xea, 0xf5, 0xcf, 0xbe, 0x78, 0x3e, 0xf8, 0xc5, 0x76, 0x5f, - 0x3f, 0xe5, 0xef, 0x64, 0xc4, 0x5d, 0x62, 0x7c, 0x19, 0x33, 0x90, 0xa2, 0xd5, 0x86, 0xa4, 0x68, - 0x7f, 0x4d, 0x83, 0x93, 0xca, 0xfd, 0x8c, 0xd9, 0x9f, 0x7a, 0x78, 0x78, 0x78, 0x50, 0x59, 0x7c, - 0xdc, 0x6b, 0x70, 0x6c, 0x17, 0x79, 0xb1, 0xd3, 0x2f, 0xcc, 0x66, 0xe4, 0x2f, 0x35, 0xb8, 0xa4, - 0x5c, 0xee, 0x0c, 0xdc, 0x0d, 0x29, 0xb0, 0xa6, 0x11, 0xd6, 0x2f, 0x1f, 0x1e, 0x54, 0x2e, 0xf4, - 0x6e, 0x7e, 0x92, 0xb7, 0x45, 0xc7, 0xc6, 0x78, 0x21, 0x18, 0x29, 0xd9, 0x66, 0xe4, 0xbb, 0x1a, - 0x94, 0x92, 0x17, 0x52, 0x0a, 0xc4, 0x14, 0x42, 0xdc, 0x3c, 0x3c, 0xa8, 0x2c, 0x3d, 0x50, 0xae, - 0xa7, 0x8e, 0x0d, 0x6b, 0xc9, 0x1b, 0x90, 0x66, 0x33, 0xb2, 0x0f, 0x24, 0xba, 0xca, 0x52, 0x30, - 0xa4, 0x11, 0xc3, 0xbd, 0xc3, 0x83, 0xca, 0xfc, 0x03, 0x71, 0xb1, 0x75, 0xec, 0xee, 0xe7, 0x3d, - 0x55, 0x90, 0xcd, 0xc8, 0xef, 0x68, 0x70, 0xa6, 0xef, 0x62, 0x4d, 0x41, 0x90, 0x41, 0x04, 0x5b, - 0x87, 0x07, 0x95, 0xd3, 0x8f, 0x93, 0x8d, 0x8e, 0x8d, 0xe4, 0x74, 0x67, 0x98, 0x40, 0x9b, 0x95, - 0x3f, 0xd3, 0x62, 0x13, 0x92, 0xdc, 0x80, 0x6a, 0x40, 0x92, 0x16, 0x01, 0xc9, 0x56, 0x32, 0x20, - 0x79, 0xfb, 0xc8, 0x3b, 0x5d, 0xdd, 0x6c, 0x4a, 0x8c, 0xf2, 0x5e, 0x2a, 0xab, 0x15, 0xb3, 0xfa, - 0x15, 0x28, 0x4c, 0x9a, 0xdb, 0xfc, 0xd3, 0xb4, 0x4c, 0x9c, 0x7f, 0x25, 0xcf, 0x1d, 0xd4, 0xf8, - 0x7f, 0xea, 0x05, 0xc4, 0xff, 0x7f, 0xaf, 0xc1, 0x52, 0x20, 0x07, 0x92, 0xb0, 0xa8, 0x22, 0x8c, - 0x7f, 0x67, 0x5c, 0xc6, 0xa3, 0x17, 0xed, 0x46, 0x42, 0x92, 0xa6, 0x74, 0x53, 0x9a, 0xd2, 0x85, - 0xfe, 0xfa, 0xe7, 0xb6, 0xa5, 0x0b, 0x41, 0x7f, 0x4f, 0xe5, 0x1f, 0x68, 0xc2, 0x98, 0xaa, 0xbe, - 0x4a, 0xd4, 0x2a, 0xf2, 0x55, 0xa2, 0xf2, 0x64, 0x4f, 0xa9, 0xde, 0x85, 0xb4, 0xe3, 0x6d, 0xfb, - 0x51, 0x36, 0xe3, 0x48, 0x89, 0x1f, 0x64, 0x2c, 0x7f, 0x02, 0xa7, 0x86, 0xab, 0x64, 0xc8, 0xe2, - 0xbe, 0x97, 0x5c, 0xdc, 0x6f, 0x4e, 0xac, 0x74, 0x75, 0xd0, 0xc9, 0x45, 0x9d, 0x2a, 0xa6, 0xf5, - 0xd7, 0x92, 0x77, 0xcc, 0x13, 0xac, 0x6d, 0x0f, 0x96, 0x92, 0x1c, 0x52, 0x67, 0x1f, 0x42, 0x36, - 0x7e, 0xca, 0x20, 0x5c, 0x9a, 0x37, 0xc6, 0x5c, 0xb5, 0xaa, 0x62, 0x58, 0xf4, 0xde, 0x21, 0xf6, - 0xf7, 0x65, 0x59, 0xbf, 0x0e, 0x64, 0xbd, 0xf7, 0x48, 0x71, 0x6c, 0xf2, 0x0f, 0x53, 0x9a, 0x7e, - 0x30, 0xc1, 0xcb, 0xbc, 0x3f, 0xd2, 0xa0, 0x80, 0x4d, 0xa3, 0x37, 0x79, 0x1f, 0x43, 0x36, 0xbe, - 0x6d, 0x15, 0x9b, 0x14, 0xf7, 0xd1, 0x71, 0xef, 0x59, 0x67, 0x98, 0xbc, 0x61, 0x7d, 0x15, 0x16, - 0xa8, 0xd7, 0x08, 0xba, 0x6d, 0x8c, 0x81, 0xe5, 0xd5, 0x1d, 0x7a, 0xae, 0x46, 0xb1, 0x57, 0x21, - 0x52, 0x24, 0xfa, 0x37, 0x60, 0x2e, 0x1a, 0x47, 0x9c, 0xce, 0xcf, 0xa0, 0xa4, 0x28, 0x78, 0xba, - 0x3c, 0x2a, 0x78, 0x52, 0xc6, 0x15, 0xc5, 0x3c, 0x82, 0x79, 0xe5, 0xaf, 0xce, 0x42, 0x46, 0x26, - 0x0e, 0x7f, 0xa8, 0x41, 0x41, 0x7d, 0x4a, 0x46, 0xaa, 0x93, 0x3d, 0x16, 0x8b, 0x74, 0x5b, 0xae, - 0x4d, 0xdc, 0x5e, 0x8c, 0x41, 0xbf, 0xfc, 0xd9, 0x8f, 0xff, 0xe7, 0xf7, 0xa6, 0x5e, 0x22, 0x95, - 0x9a, 0x1c, 0x7f, 0x4d, 0x7d, 0x69, 0x56, 0xfb, 0x44, 0xce, 0xd4, 0x53, 0x7e, 0x12, 0xcd, 0x44, - 0xf3, 0x32, 0x2a, 0x85, 0x95, 0x7c, 0x98, 0x56, 0xbe, 0x3a, 0x49, 0x53, 0x89, 0xe5, 0x3a, 0x62, - 0xb9, 0x4c, 0xca, 0x31, 0x16, 0x5b, 0xb4, 0xe8, 0xc1, 0xf8, 0x28, 0x47, 0x66, 0x6a, 0x3b, 0xd4, - 0x72, 0xc3, 0x1d, 0x12, 0x40, 0x1a, 0x1f, 0x72, 0x91, 0x51, 0x7a, 0x57, 0x9f, 0x7e, 0x95, 0x97, - 0xc7, 0x37, 0x94, 0x50, 0x4e, 0x21, 0x94, 0x22, 0x99, 0x8b, 0xa1, 0x60, 0xaa, 0x93, 0x74, 0x20, - 0x85, 0xf9, 0xeb, 0x4b, 0x63, 0x24, 0x45, 0x3d, 0x4e, 0xf2, 0x98, 0x4c, 0xbf, 0x80, 0x9d, 0x95, - 0x49, 0x29, 0xd9, 0x99, 0xa2, 0xfc, 0xa7, 0xe2, 0xe1, 0x18, 0xa6, 0x2a, 0xc9, 0xab, 0x93, 0x25, - 0x34, 0x05, 0x80, 0x6b, 0x47, 0xc9, 0x7e, 0xea, 0x27, 0x11, 0xc9, 0x3c, 0x99, 0x8d, 0x91, 0x70, - 0xf7, 0x8b, 0x7c, 0xaa, 0x41, 0x46, 0x9c, 0xcc, 0x64, 0xec, 0xc3, 0x80, 0x58, 0xd9, 0x57, 0x26, - 0x68, 0x29, 0xbb, 0x7d, 0x09, 0xbb, 0x3d, 0x4b, 0xce, 0x28, 0xdd, 0xf2, 0x06, 0x8a, 0x06, 0x18, - 0x64, 0xc4, 0xad, 0xf0, 0x48, 0x04, 0x89, 0x8b, 0xe3, 0xb2, 0x7a, 0x6d, 0x23, 0x5f, 0x63, 0x73, - 0x93, 0x2f, 0xb5, 0x3e, 0xd8, 0xa9, 0x7c, 0xb8, 0xdd, 0xeb, 0xf4, 0x07, 0x1a, 0xe4, 0xe2, 0x5b, - 0xb8, 0x91, 0x7a, 0xef, 0xbf, 0x7b, 0x1c, 0xa9, 0xf7, 0x81, 0x8b, 0x41, 0xfd, 0x0a, 0x62, 0xb9, - 0x48, 0x5e, 0x8a, 0xb1, 0x58, 0x51, 0x1b, 0x5c, 0x0b, 0x0a, 0xa6, 0x1f, 0x69, 0x30, 0x97, 0xbc, - 0xa5, 0x25, 0x13, 0xdd, 0x41, 0xab, 0x9e, 0x52, 0xf9, 0xf5, 0x23, 0x70, 0x48, 0x88, 0xaf, 0x22, - 0xc4, 0x57, 0xc8, 0xc5, 0x21, 0x10, 0x71, 0xb6, 0x6a, 0x9f, 0x44, 0x07, 0xd4, 0x53, 0xf2, 0x9b, - 0x1a, 0x14, 0xd4, 0x54, 0xcf, 0x48, 0x3b, 0x36, 0x24, 0xcb, 0x3a, 0xd2, 0x8e, 0x0d, 0x4b, 0x65, - 0xe9, 0x67, 0x10, 0xde, 0x22, 0x59, 0x88, 0xe1, 0xc5, 0xf9, 0xa9, 0x3f, 0x90, 0xa9, 0x38, 0x7c, - 0x01, 0xf2, 0xd5, 0x21, 0xaa, 0x20, 0xa2, 0x33, 0xe4, 0x74, 0x8c, 0x08, 0x5f, 0xb2, 0x98, 0x2a, - 0xae, 0xbc, 0x92, 0x79, 0x22, 0x23, 0x1f, 0x06, 0x0f, 0x24, 0xc5, 0xca, 0xd5, 0x49, 0x9b, 0x3f, - 0xdb, 0xd2, 0x63, 0x2b, 0x91, 0xdf, 0x54, 0x56, 0xd8, 0x1f, 0x6b, 0x30, 0x9b, 0xc8, 0x26, 0x91, - 0xda, 0xd8, 0xae, 0x92, 0x29, 0xaf, 0xf2, 0x6b, 0x93, 0x33, 0x3c, 0x73, 0x07, 0x48, 0x74, 0x52, - 0x5d, 0x0a, 0xbe, 0x4f, 0x35, 0xc8, 0xc5, 0x39, 0x9c, 0x91, 0xbb, 0xb2, 0x3f, 0x8f, 0x35, 0x72, - 0x57, 0x0e, 0xa4, 0x85, 0xf4, 0x12, 0x62, 0x22, 0x7a, 0xcf, 0x1a, 0xb2, 0xb6, 0xe5, 0xdd, 0xd0, - 0xae, 0x92, 0x6f, 0xe3, 0x89, 0xdd, 0xd8, 0x1d, 0x6d, 0x0f, 0x13, 0x37, 0xb9, 0xe5, 0x51, 0xa7, - 0x94, 0x7a, 0x9d, 0x3f, 0xc4, 0x30, 0x31, 0x14, 0xa4, 0xa8, 0xe0, 0x3b, 0x1a, 0xcc, 0xc8, 0xbb, - 0xda, 0x91, 0x87, 0x71, 0xf2, 0x3e, 0x77, 0x72, 0x08, 0x3a, 0x42, 0x38, 0xa7, 0x9c, 0xc4, 0x6d, - 0x21, 0xa9, 0x0f, 0x43, 0xf4, 0x02, 0x72, 0x14, 0x86, 0xe4, 0x25, 0xf1, 0x71, 0x30, 0xb4, 0x84, - 0x24, 0x05, 0xc3, 0xef, 0x73, 0x3b, 0xa3, 0x5c, 0xe0, 0x8f, 0xde, 0xd5, 0x83, 0x2f, 0x03, 0x46, - 0xef, 0xea, 0x21, 0x2f, 0x03, 0xf4, 0x8b, 0x88, 0xea, 0x6b, 0xe4, 0xac, 0xb2, 0xab, 0x9b, 0x78, - 0xf5, 0xdf, 0xe7, 0x2b, 0x49, 0xee, 0x91, 0xaa, 0x49, 0xbe, 0x14, 0x28, 0x5f, 0x1f, 0xdd, 0xb4, - 0xef, 0x9d, 0x84, 0x7e, 0x15, 0xa1, 0xbc, 0x4c, 0xf4, 0x11, 0x50, 0x6a, 0x9f, 0x70, 0xc2, 0x53, - 0xf2, 0x6d, 0x48, 0xdd, 0xf7, 0x9b, 0x6c, 0xa4, 0xdf, 0xa2, 0x3c, 0x17, 0x39, 0x2a, 0x94, 0x61, - 0xb6, 0xae, 0xa9, 0x6a, 0xe4, 0x77, 0x35, 0x7c, 0x34, 0xdd, 0x0b, 0xf1, 0x47, 0xda, 0x94, 0x61, - 0x09, 0xce, 0x91, 0x36, 0x65, 0x68, 0xf6, 0x40, 0x3f, 0x8f, 0xa8, 0x4a, 0xe4, 0x94, 0xba, 0x8a, - 0x79, 0x3b, 0x79, 0x33, 0xfb, 0x14, 0xd2, 0xe2, 0x00, 0xbd, 0x3c, 0x3e, 0x76, 0x1b, 0xef, 0x40, - 0x26, 0x8f, 0xcb, 0x67, 0xb8, 0x34, 0xea, 0x21, 0xc9, 0xc3, 0x1d, 0x35, 0xe2, 0x22, 0x93, 0x3e, - 0x43, 0x9c, 0xc8, 0xd9, 0x1f, 0x12, 0x11, 0x0e, 0x59, 0x31, 0xfd, 0xa0, 0x6a, 0x8d, 0x96, 0xfd, - 0x04, 0xc1, 0xfc, 0xa1, 0x06, 0x79, 0x25, 0xcc, 0x1b, 0x79, 0x3a, 0x0d, 0x86, 0x83, 0xc3, 0x66, - 0x2b, 0xf1, 0x77, 0x6e, 0x0a, 0x8f, 0x41, 0xdb, 0x7e, 0x10, 0xea, 0x97, 0x10, 0xdc, 0x05, 0x72, - 0xbe, 0xe7, 0xfd, 0xf7, 0x18, 0x92, 0xe6, 0x3f, 0x23, 0x02, 0xb1, 0x31, 0xc6, 0x57, 0x89, 0x39, - 0x47, 0x3a, 0xa3, 0xc9, 0xa8, 0x6e, 0xa8, 0xf9, 0xe5, 0x0d, 0x7a, 0x10, 0x56, 0xf5, 0xcf, 0xff, - 0xeb, 0xfc, 0x89, 0xcf, 0x0f, 0xcf, 0x6b, 0xff, 0x7c, 0x78, 0x5e, 0xfb, 0xb7, 0xc3, 0xf3, 0xda, - 0x7f, 0x1e, 0x9e, 0xd7, 0xbe, 0xff, 0xdf, 0xe7, 0x4f, 0x7c, 0x94, 0x8d, 0xa4, 0xd6, 0x33, 0x78, - 0x93, 0xf9, 0xf5, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0xcf, 0x9f, 0x48, 0xb4, 0x5a, 0x38, 0x00, - 0x00, + // 4231 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5b, 0x4d, 0x6c, 0x1b, 0x49, + 0x76, 0x76, 0x4b, 0xfc, 0x7d, 0xd4, 0x0f, 0x55, 0x92, 0x6d, 0x9a, 0xf6, 0x8a, 0xde, 0xf6, 0x8c, + 0x2d, 0x7b, 0x6c, 0x72, 0x46, 0x3b, 0x13, 0x38, 0x4e, 0x26, 0x33, 0xd6, 0x8f, 0x6d, 0x8d, 0x3d, + 0xb6, 0xdc, 0xb2, 0x67, 0x03, 0x27, 0x98, 0x46, 0x93, 0x5d, 0xa2, 0x7a, 0x45, 0x76, 0x53, 0x5d, + 0x4d, 0x45, 0xdc, 0x81, 0x37, 0x93, 0x09, 0x02, 0x6c, 0x12, 0xec, 0x66, 0x37, 0x7f, 0x58, 0x20, + 0x08, 0x10, 0xec, 0x21, 0x09, 0x16, 0xc8, 0x0f, 0x90, 0x53, 0x4e, 0x01, 0x72, 0x08, 0xe6, 0x96, + 0x00, 0xc9, 0x21, 0x48, 0x00, 0x4d, 0xa2, 0xe4, 0x90, 0x00, 0x39, 0xe6, 0xb4, 0xa7, 0xa0, 0x5e, + 0x55, 0x37, 0xab, 0x49, 0x9a, 0xa4, 0xac, 0xf1, 0x22, 0x07, 0x9b, 0x5d, 0xaf, 0xea, 0xbd, 0xfa, + 0xea, 0x55, 0xd5, 0xab, 0x57, 0xef, 0x95, 0xe0, 0x02, 0xa3, 0xfe, 0x3e, 0xf5, 0x2b, 0xe2, 0xa7, + 0x55, 0xad, 0xb0, 0xc0, 0x0a, 0xda, 0xac, 0xdc, 0xf2, 0xbd, 0xc0, 0x23, 0xe7, 0x6a, 0x5e, 0x6d, + 0xd7, 0xf7, 0xac, 0xda, 0x4e, 0x59, 0x34, 0x28, 0x87, 0xed, 0x8a, 0xf9, 0x6a, 0xdb, 0x69, 0xd8, + 0x15, 0xc7, 0xdd, 0xf6, 0x44, 0xe3, 0xe2, 0x7c, 0xdd, 0x63, 0xcc, 0x69, 0x55, 0xc4, 0x8f, 0x24, + 0x12, 0xe4, 0x6e, 0x55, 0x2b, 0xb6, 0x15, 0x58, 0x92, 0x76, 0x59, 0xf6, 0x69, 0x3b, 0x56, 0xdd, + 0xf5, 0x58, 0xe0, 0xd4, 0x18, 0x6f, 0xd0, 0x2d, 0xc9, 0x76, 0xc5, 0x10, 0x1b, 0x42, 0x8a, 0x21, + 0x2b, 0xea, 0x2c, 0xf0, 0x7c, 0xab, 0x4e, 0x2b, 0xd4, 0xad, 0x3b, 0x6e, 0xf8, 0xd3, 0xaa, 0x56, + 0x9a, 0xfb, 0xb5, 0x5a, 0xc4, 0x2f, 0xdb, 0x34, 0xa8, 0xc5, 0xa8, 0x19, 0xe3, 0x2f, 0x85, 0x75, + 0xf2, 0xb7, 0x6a, 0x31, 0x8a, 0x3d, 0xd0, 0x10, 0x78, 0x3b, 0x70, 0x1a, 0x95, 0x86, 0x57, 0xe7, + 0xff, 0x42, 0x81, 0x48, 0x6b, 0xbb, 0x3e, 0x65, 0x5e, 0x63, 0x9f, 0xda, 0xa6, 0x65, 0xdb, 0xbe, + 0xac, 0x3b, 0x4f, 0x83, 0x9a, 0x5d, 0xf1, 0xad, 0xed, 0x00, 0xff, 0x6b, 0x55, 0xf1, 0x47, 0x56, + 0x2e, 0xd4, 0xbd, 0xba, 0x87, 0x9f, 0x15, 0xfe, 0x25, 0xa9, 0x17, 0xea, 0x9e, 0x57, 0x6f, 0xd0, + 0x8a, 0xd5, 0x72, 0x2a, 0x96, 0xeb, 0x7a, 0x81, 0x15, 0x38, 0x9e, 0x1b, 0x21, 0x94, 0xb5, 0x58, + 0xaa, 0xb6, 0xb7, 0x2b, 0x81, 0xd3, 0xa4, 0x2c, 0xb0, 0x9a, 0x52, 0xb5, 0x7a, 0x19, 0xe6, 0x57, + 0xa9, 0x1f, 0x38, 0xdb, 0x4e, 0xcd, 0x0a, 0x28, 0x33, 0xe8, 0x5e, 0x9b, 0xb2, 0x80, 0x9c, 0x85, + 0xb4, 0xeb, 0xd9, 0xd4, 0x74, 0xec, 0x82, 0x76, 0x51, 0x5b, 0xca, 0x1a, 0x29, 0x5e, 0xdc, 0xb0, + 0xf5, 0xbf, 0x4f, 0x00, 0x51, 0x18, 0xd6, 0x68, 0x60, 0x39, 0x0d, 0x46, 0x1e, 0x43, 0x22, 0xe8, + 0xb4, 0x28, 0x36, 0x9e, 0x59, 0x7e, 0xb7, 0xfc, 0xc2, 0x29, 0x2f, 0xf7, 0x33, 0xab, 0xa4, 0x27, + 0x9d, 0x16, 0x35, 0x50, 0x14, 0xb9, 0x04, 0xd3, 0xd4, 0xf7, 0x3d, 0xdf, 0x6c, 0x52, 0xc6, 0xac, + 0x3a, 0x2d, 0x4c, 0x20, 0x90, 0x29, 0x24, 0x7e, 0x28, 0x68, 0x84, 0x40, 0x82, 0xaf, 0x89, 0xc2, + 0xe4, 0x45, 0x6d, 0x69, 0xca, 0xc0, 0x6f, 0x62, 0x40, 0x6a, 0xdb, 0xa1, 0x0d, 0x9b, 0x15, 0x12, + 0x17, 0x27, 0x97, 0x72, 0xcb, 0x6f, 0x1f, 0x0f, 0xcd, 0x1d, 0xe4, 0x5d, 0x49, 0x7c, 0x7e, 0x58, + 0x3a, 0x65, 0x48, 0x49, 0xc5, 0xbf, 0x9a, 0x80, 0x94, 0xa8, 0x20, 0x67, 0x20, 0xe5, 0x30, 0xd6, + 0xa6, 0x7e, 0xa8, 0x19, 0x51, 0x22, 0x05, 0x48, 0xb3, 0x76, 0xf5, 0x1b, 0xb4, 0x16, 0x48, 0xa4, + 0x61, 0x91, 0x7c, 0x05, 0x60, 0xdf, 0x6a, 0x38, 0xb6, 0xb9, 0xed, 0x7b, 0x4d, 0x84, 0x3a, 0x69, + 0x64, 0x91, 0x72, 0xc7, 0xf7, 0x9a, 0xa4, 0x04, 0x39, 0x51, 0xdd, 0x76, 0x03, 0xa7, 0x51, 0x48, + 0x60, 0xbd, 0xe0, 0x78, 0xca, 0x29, 0xe4, 0x02, 0x64, 0xf9, 0x1a, 0xa1, 0x8c, 0x51, 0x56, 0x48, + 0x5e, 0x9c, 0x5c, 0xca, 0x1a, 0x5d, 0x02, 0xa9, 0xc0, 0x3c, 0x73, 0xea, 0xae, 0x15, 0xb4, 0x7d, + 0x6a, 0x5a, 0x8d, 0xba, 0xe7, 0x3b, 0xc1, 0x4e, 0xb3, 0x90, 0x42, 0x0c, 0x24, 0xaa, 0xba, 0x1d, + 0xd6, 0x70, 0x38, 0xad, 0x76, 0xb5, 0xe1, 0xd4, 0xcc, 0x5d, 0xda, 0x29, 0xa4, 0xb1, 0x5d, 0x56, + 0x50, 0xee, 0xd3, 0x0e, 0x39, 0x0f, 0xd9, 0x5d, 0xda, 0x31, 0xdb, 0xa8, 0xf3, 0x0c, 0xf6, 0x96, + 0xd9, 0xa5, 0x9d, 0xa7, 0xa8, 0xef, 0xeb, 0x40, 0xe8, 0x41, 0x40, 0x5d, 0x9b, 0xda, 0x66, 0xb7, + 0x55, 0x16, 0x5b, 0xe5, 0xc3, 0x9a, 0xfb, 0xb2, 0xb5, 0x7e, 0x09, 0x66, 0x7b, 0xe6, 0x96, 0xa4, + 0x60, 0x62, 0xf5, 0x76, 0xfe, 0x14, 0xc9, 0x40, 0xe2, 0xe1, 0xa3, 0xb5, 0xf5, 0xbc, 0xa6, 0x7b, + 0xb0, 0x10, 0x5f, 0x81, 0xac, 0xe5, 0xb9, 0x8c, 0x92, 0xaf, 0xc3, 0x54, 0x4d, 0xa1, 0x17, 0x34, + 0x9c, 0xcc, 0x1b, 0xc7, 0x9a, 0x4c, 0x39, 0x8b, 0x31, 0x41, 0xfa, 0x7b, 0x30, 0x23, 0xab, 0x47, + 0xad, 0x76, 0xb2, 0x00, 0x49, 0x9f, 0x5a, 0x76, 0x07, 0x67, 0x34, 0x63, 0x88, 0x82, 0xfe, 0xdf, + 0x1a, 0xcc, 0x46, 0x12, 0x24, 0xda, 0x67, 0x71, 0x11, 0xc9, 0x95, 0xdb, 0x47, 0x87, 0xa5, 0xd4, + 0x43, 0x2e, 0x66, 0xed, 0xc7, 0x87, 0xa5, 0xaf, 0xd5, 0x9d, 0x60, 0xa7, 0x5d, 0x2d, 0xd7, 0xbc, + 0x66, 0x25, 0x1a, 0x80, 0x5d, 0xed, 0x7e, 0x57, 0x5a, 0xbb, 0xf5, 0x8a, 0x34, 0x73, 0x65, 0xc1, + 0x16, 0xa1, 0xf8, 0x39, 0x48, 0xcb, 0xe9, 0x46, 0x1c, 0xb9, 0xe5, 0x45, 0x45, 0x09, 0xdc, 0x9a, + 0x94, 0x9f, 0x46, 0xd6, 0xe4, 0xb6, 0x6d, 0xfb, 0x72, 0xd4, 0x21, 0x13, 0xb9, 0x05, 0x80, 0x76, + 0xd6, 0xe4, 0x76, 0x16, 0xd7, 0x5f, 0x6e, 0xf9, 0xb4, 0x22, 0x02, 0x2b, 0xcb, 0x1b, 0xee, 0xb6, + 0x27, 0x39, 0xb3, 0x48, 0xe1, 0x04, 0x7d, 0x06, 0xa6, 0x38, 0x9a, 0x50, 0x55, 0xfa, 0x26, 0x4c, + 0xcb, 0xb2, 0x1c, 0xf8, 0x7b, 0x90, 0xe4, 0x30, 0xc3, 0xf9, 0xb9, 0x34, 0x60, 0x7e, 0x84, 0xc9, + 0xe4, 0x6c, 0x5b, 0xf8, 0x29, 0x7b, 0x11, 0x7c, 0xfa, 0x65, 0xc8, 0xf1, 0xaa, 0x91, 0x96, 0xe7, + 0x2f, 0x13, 0x90, 0x35, 0xac, 0xed, 0x80, 0xcb, 0xe0, 0x0b, 0x11, 0x7c, 0xda, 0x6a, 0x38, 0x35, + 0x2b, 0x6c, 0x99, 0x58, 0x99, 0x3e, 0x3a, 0x2c, 0x65, 0x0d, 0x41, 0xdd, 0x58, 0x33, 0xb2, 0xb2, + 0xc1, 0x86, 0x4d, 0x7e, 0x0a, 0x60, 0xc7, 0xf2, 0x6d, 0xb4, 0xde, 0x54, 0x2a, 0x71, 0xae, 0x2c, + 0x4c, 0x6c, 0xf9, 0x9e, 0xe5, 0xdb, 0x28, 0x34, 0x1c, 0xfd, 0x4e, 0x48, 0xe0, 0xe6, 0xa5, 0x41, + 0x2d, 0x1b, 0x75, 0x96, 0x30, 0xf0, 0x9b, 0xaf, 0x09, 0x21, 0x26, 0x81, 0xf0, 0x44, 0x81, 0xef, + 0x7e, 0xab, 0xd5, 0x6a, 0x38, 0xd4, 0x2e, 0x24, 0xb1, 0x71, 0x58, 0x24, 0x4f, 0x20, 0xd3, 0xf2, + 0xbd, 0x3a, 0x4e, 0x5f, 0x0a, 0x75, 0xb4, 0x3c, 0x64, 0x0d, 0x47, 0x23, 0x2c, 0x6f, 0x4a, 0xa6, + 0x75, 0x37, 0xf0, 0x3b, 0x12, 0x5a, 0x24, 0x89, 0x5c, 0x81, 0x59, 0x8e, 0xc6, 0x0c, 0x7c, 0xcb, + 0x65, 0xdb, 0xd4, 0xa7, 0x14, 0x77, 0x72, 0xc2, 0x98, 0xe1, 0xe4, 0x27, 0x11, 0xb5, 0xf8, 0x1d, + 0x0d, 0x32, 0xa1, 0x28, 0x8e, 0xbd, 0x69, 0x05, 0xb5, 0x1d, 0xa1, 0x30, 0x43, 0x14, 0xf8, 0x28, + 0x5d, 0x7a, 0x20, 0xcc, 0x56, 0xc2, 0xc0, 0xef, 0xee, 0x28, 0x27, 0xd5, 0x51, 0x9e, 0x81, 0x54, + 0xcb, 0x6a, 0x33, 0x6a, 0xe3, 0xe0, 0x33, 0x86, 0x2c, 0x91, 0xab, 0x90, 0x6f, 0x51, 0xd7, 0x76, + 0xdc, 0xba, 0xc9, 0x5c, 0xab, 0xc5, 0x76, 0xbc, 0x40, 0xaa, 0x61, 0x56, 0xd2, 0xb7, 0x24, 0xb9, + 0xf8, 0x0d, 0x98, 0x8e, 0x8d, 0x8c, 0xe4, 0x61, 0x92, 0xdb, 0x21, 0x81, 0x88, 0x7f, 0x92, 0x55, + 0x48, 0xee, 0x5b, 0x8d, 0x76, 0x38, 0x51, 0x37, 0x8e, 0xa5, 0x2e, 0x43, 0xf0, 0xde, 0x9a, 0xb8, + 0xa9, 0xe9, 0xdf, 0x99, 0x80, 0x69, 0xc3, 0x72, 0xeb, 0x74, 0xd3, 0xf7, 0xaa, 0x0d, 0xda, 0x64, + 0xe4, 0x22, 0xe4, 0xda, 0xae, 0xb5, 0x6f, 0x39, 0x0d, 0xab, 0xda, 0x10, 0xc7, 0x55, 0xc6, 0x50, + 0x49, 0xe4, 0x1d, 0x38, 0xcb, 0x35, 0x48, 0x7d, 0xd3, 0xf5, 0x02, 0x53, 0x1c, 0xfa, 0x3b, 0x5e, + 0xc3, 0xa6, 0xbe, 0x34, 0x02, 0x0b, 0xa2, 0xfa, 0xa1, 0x17, 0x3c, 0xe0, 0x95, 0xf7, 0xb0, 0x8e, + 0xbc, 0x06, 0x33, 0xae, 0x67, 0xf2, 0x15, 0x65, 0x8a, 0x7a, 0x54, 0x5c, 0xc6, 0x98, 0x72, 0x3d, + 0x8e, 0xf1, 0x01, 0xd2, 0xc8, 0x12, 0xcc, 0xb6, 0x5d, 0x9b, 0xfa, 0x72, 0x65, 0x06, 0x91, 0x22, + 0x7b, 0xc9, 0xe4, 0x1c, 0x64, 0x5c, 0x4f, 0x74, 0x8f, 0x9a, 0xcc, 0x18, 0x69, 0xd7, 0xc3, 0x0e, + 0xc9, 0x4d, 0x28, 0xec, 0xb5, 0x1d, 0xca, 0x6a, 0xd4, 0x0d, 0x4c, 0xba, 0xd7, 0xb6, 0x1a, 0xcc, + 0x0c, 0x9c, 0xda, 0xae, 0xe3, 0xd6, 0xd1, 0xea, 0x67, 0x8c, 0x33, 0x51, 0xfd, 0x3a, 0x56, 0x3f, + 0x11, 0xb5, 0xfa, 0x2e, 0xcc, 0xa2, 0x3a, 0xb8, 0xc6, 0x1c, 0x74, 0x92, 0xb8, 0x41, 0xdf, 0x6b, + 0x53, 0xdf, 0xa1, 0xcc, 0x6c, 0x51, 0xdf, 0x64, 0xb4, 0xe6, 0xb9, 0x62, 0x3f, 0x69, 0x46, 0x5e, + 0xd6, 0x6c, 0x52, 0x7f, 0x0b, 0xe9, 0xe4, 0x1a, 0xcc, 0xfd, 0x92, 0xef, 0x04, 0xf1, 0xc6, 0x13, + 0xd8, 0x78, 0x56, 0x54, 0x44, 0x6d, 0xf5, 0x7b, 0x00, 0x9b, 0x3e, 0x0d, 0x82, 0xce, 0x56, 0xcb, + 0x72, 0xf9, 0xa9, 0xc2, 0x02, 0xcb, 0x0f, 0xcc, 0x70, 0xae, 0xb3, 0x46, 0x06, 0x09, 0xfc, 0xc8, + 0x39, 0x0b, 0x69, 0xea, 0xe2, 0x81, 0x22, 0x8f, 0xce, 0x14, 0x75, 0xf9, 0x29, 0x72, 0x2b, 0xf1, + 0x5f, 0x7f, 0x54, 0xd2, 0xf4, 0x1f, 0x69, 0x30, 0xbf, 0xea, 0x35, 0x9b, 0x96, 0x6b, 0x3f, 0x6e, + 0xd3, 0x36, 0xfd, 0x90, 0x06, 0x3e, 0xc7, 0xfe, 0x3a, 0xcc, 0x60, 0xa7, 0x66, 0x4d, 0x54, 0x32, + 0x14, 0x3c, 0x69, 0x4c, 0x23, 0x55, 0x72, 0x30, 0xee, 0x48, 0x70, 0xbb, 0xdd, 0x6d, 0x35, 0x81, + 0xad, 0xa6, 0x38, 0x31, 0x6a, 0x74, 0x0d, 0xe6, 0x9a, 0xd6, 0x81, 0xe9, 0xed, 0x53, 0xbf, 0x61, + 0xb5, 0x98, 0xc9, 0x28, 0x75, 0xe5, 0x51, 0x3d, 0xdb, 0xb4, 0x0e, 0x1e, 0x49, 0xfa, 0x16, 0xa5, + 0x38, 0x96, 0xc0, 0xa7, 0xd4, 0x64, 0xce, 0x37, 0x85, 0x15, 0x48, 0x1a, 0x19, 0x4e, 0xd8, 0x72, + 0xbe, 0x49, 0xf5, 0xff, 0x49, 0x73, 0x33, 0xe5, 0xd6, 0x29, 0x37, 0x9f, 0xe4, 0x3d, 0x48, 0xb0, + 0x96, 0xe5, 0x22, 0xb0, 0xdc, 0xf2, 0xeb, 0x43, 0x56, 0x72, 0x57, 0x57, 0x72, 0xaf, 0x23, 0x23, + 0xd9, 0x00, 0xc0, 0x45, 0xa5, 0x5a, 0xae, 0xd7, 0xc6, 0xd9, 0x10, 0xa1, 0x31, 0xf3, 0x23, 0x93, + 0xb9, 0xa6, 0x1a, 0xae, 0xdc, 0xf2, 0x92, 0x2a, 0x45, 0xf8, 0xaf, 0x65, 0xc5, 0x8f, 0x2d, 0x47, + 0x83, 0x08, 0xcd, 0xb5, 0x30, 0x01, 0x4d, 0x98, 0x61, 0x5e, 0xdb, 0xaf, 0x51, 0x33, 0x34, 0xd3, + 0x49, 0x3c, 0xef, 0xee, 0x1e, 0x1d, 0x96, 0xa6, 0xb6, 0xb0, 0xe6, 0x64, 0xa7, 0xde, 0x14, 0xeb, + 0x0a, 0xb1, 0xc9, 0x1e, 0xcc, 0xca, 0xee, 0x38, 0x36, 0xec, 0x2f, 0x85, 0xfd, 0x6d, 0x1c, 0x1d, + 0x96, 0xa6, 0x45, 0x7f, 0x5b, 0xbc, 0x06, 0x3b, 0x7c, 0xfb, 0x58, 0x1d, 0x4a, 0x3e, 0x63, 0x9a, + 0x29, 0x62, 0xec, 0x7e, 0xc7, 0x33, 0x3d, 0xc0, 0xf1, 0x5c, 0x85, 0x69, 0x69, 0x1b, 0x1c, 0x0e, + 0xac, 0x83, 0x9e, 0x52, 0x6e, 0xb9, 0xa0, 0x28, 0x35, 0xec, 0x06, 0x77, 0x6d, 0xe8, 0x89, 0x20, + 0xd3, 0x3d, 0xc1, 0x43, 0x3e, 0xc0, 0xa3, 0x01, 0x2d, 0x53, 0x21, 0xdb, 0x3f, 0x29, 0x7d, 0x53, + 0xab, 0x58, 0x32, 0xe5, 0x40, 0x10, 0x96, 0xed, 0x8e, 0x98, 0x5d, 0x56, 0x00, 0x14, 0x74, 0x6d, + 0x94, 0xa0, 0xae, 0x0d, 0x50, 0xe7, 0x97, 0x91, 0x27, 0x90, 0xab, 0x35, 0x6d, 0x73, 0xcf, 0x6c, + 0x78, 0x35, 0xab, 0x51, 0xc8, 0xa1, 0xb4, 0xf2, 0x30, 0xaf, 0xab, 0x7f, 0x67, 0x86, 0x6b, 0xaf, + 0xd6, 0xb4, 0x1f, 0x3f, 0xe0, 0x62, 0xc8, 0x47, 0x30, 0x25, 0xa4, 0xd6, 0x1b, 0x5e, 0xd5, 0x6a, + 0x14, 0xa6, 0x4e, 0x20, 0x16, 0xb8, 0xd8, 0xbb, 0x28, 0x87, 0xdc, 0x85, 0x29, 0xf5, 0x5e, 0x56, + 0x98, 0xee, 0xf3, 0x8f, 0xc2, 0xa5, 0x8d, 0xb3, 0x10, 0xf3, 0x3f, 0x72, 0x8d, 0x2e, 0x89, 0xfb, + 0xd8, 0x91, 0xd1, 0x2c, 0xcc, 0xa0, 0x15, 0xed, 0x12, 0xf8, 0xe9, 0x1e, 0x5a, 0xd8, 0x59, 0x61, + 0x8c, 0x65, 0x51, 0xff, 0x4d, 0x4d, 0x1e, 0x31, 0xa3, 0x9d, 0x49, 0x0b, 0xb2, 0x3e, 0x6f, 0x69, + 0x3a, 0x68, 0x83, 0x26, 0x97, 0x26, 0x57, 0xd6, 0x8e, 0x0e, 0x4b, 0x19, 0xb1, 0xd1, 0xd6, 0xd8, + 0xb1, 0xd7, 0xaf, 0x64, 0x34, 0x32, 0x28, 0x76, 0xc3, 0x66, 0xfa, 0x13, 0x98, 0x09, 0xc1, 0x48, + 0xf7, 0x6c, 0x05, 0x52, 0x58, 0x1b, 0xfa, 0x67, 0xaf, 0x8d, 0x5a, 0x17, 0xca, 0x8e, 0x97, 0x9c, + 0xfa, 0x12, 0x4c, 0xdf, 0xc5, 0xeb, 0xf8, 0x48, 0x1f, 0xed, 0x07, 0x13, 0x30, 0x7b, 0xbb, 0xc1, + 0x57, 0x4e, 0xe0, 0xf9, 0x6b, 0x7e, 0xc7, 0x68, 0xbb, 0xe4, 0x63, 0xc8, 0x84, 0xc3, 0x16, 0xf6, + 0x79, 0x65, 0xf5, 0xe8, 0xb0, 0x94, 0x96, 0xe0, 0x5f, 0x7a, 0xd0, 0x69, 0x39, 0x68, 0x72, 0x0f, + 0x52, 0x74, 0x9f, 0xba, 0x81, 0xd0, 0x69, 0x6e, 0xf9, 0xcd, 0x21, 0x23, 0xec, 0xc1, 0x56, 0x5e, + 0xe7, 0x8c, 0x86, 0xe4, 0x2f, 0xfe, 0x02, 0x24, 0x91, 0x40, 0x6e, 0x42, 0x82, 0xdf, 0x93, 0xa5, + 0xd5, 0x2e, 0x96, 0xc5, 0x25, 0xba, 0x1c, 0x5e, 0xa2, 0xcb, 0x4f, 0xc2, 0x4b, 0xf4, 0x4a, 0x86, + 0x2b, 0xea, 0x7b, 0x5f, 0x94, 0x34, 0x03, 0x39, 0xf8, 0x42, 0x89, 0x5f, 0x57, 0xc3, 0xa2, 0xbe, + 0x0c, 0xa7, 0xa3, 0xde, 0x71, 0x0c, 0xa1, 0x32, 0xcf, 0xf5, 0xea, 0x27, 0x1a, 0x9a, 0xfe, 0xd7, + 0x1a, 0x9c, 0xe9, 0x65, 0x1a, 0x7c, 0xdf, 0x98, 0xfc, 0x32, 0xef, 0x1b, 0xab, 0x90, 0xb6, 0xfd, + 0x8e, 0xe9, 0xb7, 0x5d, 0x79, 0xe0, 0x5c, 0x1b, 0x5f, 0xa5, 0x46, 0xca, 0xc6, 0x5f, 0xfd, 0xbb, + 0x1a, 0xe4, 0xbb, 0xd8, 0xff, 0x1f, 0xec, 0x8d, 0x67, 0x30, 0xa7, 0xe0, 0x91, 0x6a, 0x5c, 0x87, + 0x8c, 0x1c, 0x6a, 0xb8, 0x41, 0x8e, 0x33, 0xd6, 0xb4, 0x18, 0x2b, 0xd3, 0x75, 0x98, 0xfa, 0x60, + 0xeb, 0xd1, 0xc3, 0x48, 0x6c, 0x18, 0x96, 0xd0, 0xba, 0x61, 0x09, 0xfd, 0x87, 0x1a, 0xe4, 0x1e, + 0x78, 0xf5, 0xb1, 0x2e, 0x9d, 0x0d, 0xba, 0x4f, 0x1b, 0x72, 0x05, 0x89, 0x02, 0xbf, 0xb5, 0x0b, + 0x07, 0x0a, 0x57, 0xa6, 0xf0, 0xca, 0x85, 0x4b, 0xc5, 0x57, 0x23, 0x5f, 0x45, 0xdc, 0x85, 0xc2, + 0x4a, 0x71, 0x31, 0xe1, 0x2e, 0x15, 0x56, 0xe5, 0x61, 0xb2, 0x69, 0x1d, 0xe0, 0x31, 0x9d, 0x35, + 0xf8, 0x27, 0x5f, 0xa5, 0x2d, 0x2b, 0x08, 0xa8, 0xef, 0xca, 0x30, 0x41, 0x58, 0xd4, 0x1f, 0x01, + 0x79, 0xe0, 0xd5, 0xb9, 0x63, 0xee, 0x28, 0x46, 0xe4, 0xa7, 0xb9, 0x7f, 0x86, 0x24, 0xa9, 0xa4, + 0x73, 0xbd, 0x17, 0xd0, 0x86, 0x57, 0x2f, 0xab, 0x17, 0x95, 0xb0, 0xbd, 0x5e, 0x86, 0xf9, 0x07, + 0x5e, 0xfd, 0x8e, 0xd3, 0xa0, 0xec, 0x81, 0xc3, 0x82, 0x91, 0x16, 0x64, 0x13, 0x16, 0xe2, 0xed, + 0x25, 0x84, 0x9b, 0x90, 0xdc, 0xe6, 0x44, 0x09, 0xe0, 0xc2, 0x20, 0x00, 0x9c, 0x4b, 0x75, 0x58, + 0x90, 0x41, 0x7f, 0x17, 0x66, 0xa4, 0xc4, 0x91, 0x9a, 0x27, 0x90, 0xe0, 0x3c, 0x52, 0xf1, 0xf8, + 0xcd, 0x8d, 0xdf, 0x56, 0x60, 0xd5, 0x76, 0x47, 0x87, 0xc6, 0x7e, 0x19, 0x66, 0x36, 0x7d, 0x6f, + 0x7b, 0x9c, 0x8e, 0x56, 0x64, 0xb8, 0x2c, 0x89, 0xe1, 0xb2, 0xf2, 0x50, 0xb7, 0x50, 0x95, 0x58, + 0xee, 0xc6, 0xc7, 0xf4, 0x3c, 0x24, 0x30, 0xa2, 0x92, 0x81, 0xc4, 0xbd, 0xf5, 0xdb, 0x9b, 0xf9, + 0x53, 0xfa, 0x55, 0x98, 0x91, 0x27, 0xe5, 0x48, 0xac, 0x7f, 0x86, 0xc7, 0xd6, 0x76, 0x80, 0xdb, + 0x84, 0x6f, 0xff, 0x57, 0x1a, 0xc0, 0x78, 0x1f, 0x92, 0xb8, 0x0d, 0xc7, 0xf2, 0x5f, 0x7b, 0xbc, + 0x4e, 0x64, 0xd4, 0xaf, 0xf1, 0x83, 0x4d, 0xc2, 0x5d, 0xe7, 0x7e, 0x98, 0x6a, 0x69, 0xb5, 0xb8, + 0xa5, 0xfd, 0x74, 0x82, 0x5f, 0x73, 0x64, 0x63, 0x79, 0xbc, 0xbf, 0xea, 0x43, 0xe8, 0x2e, 0xa4, + 0xd0, 0x3d, 0x0c, 0x0f, 0xa1, 0xab, 0x23, 0x5c, 0xf4, 0xee, 0x40, 0xc2, 0xb3, 0x56, 0xb0, 0x73, + 0x27, 0x5d, 0x84, 0x53, 0x26, 0x51, 0xce, 0xd2, 0x38, 0x72, 0xb8, 0xb6, 0xe3, 0x31, 0x95, 0x36, + 0xe4, 0x79, 0xed, 0x1a, 0xad, 0xb6, 0xeb, 0xe1, 0x5a, 0x88, 0x99, 0x58, 0xed, 0x95, 0x98, 0xd8, + 0x7f, 0x9a, 0x80, 0x39, 0xa5, 0x5f, 0xb9, 0x75, 0xbf, 0xab, 0xf5, 0xf8, 0x20, 0x37, 0x47, 0x0c, + 0x2a, 0xc6, 0x2e, 0xba, 0x91, 0x51, 0x90, 0x9f, 0xe5, 0x83, 0xfc, 0xec, 0x8b, 0x97, 0x04, 0x2a, + 0x51, 0x7c, 0x69, 0x93, 0x55, 0xa4, 0x90, 0x53, 0xd0, 0xa9, 0x91, 0x8c, 0x49, 0x11, 0xc9, 0x78, + 0x3f, 0x1e, 0xc9, 0xb8, 0x36, 0x4e, 0x47, 0x62, 0xc5, 0xaa, 0x61, 0x8c, 0x5f, 0x9b, 0x80, 0xdc, + 0xed, 0x5a, 0xe0, 0xec, 0xd3, 0xc7, 0x6d, 0xea, 0x77, 0xc8, 0x19, 0x98, 0x08, 0x37, 0xf4, 0x4a, + 0xea, 0xe8, 0xb0, 0x34, 0xb1, 0xb1, 0x66, 0x4c, 0x38, 0x36, 0xef, 0x9f, 0xed, 0x85, 0xc7, 0x06, + 0xff, 0x24, 0xb7, 0xf0, 0x52, 0xe0, 0x07, 0x32, 0xe8, 0x37, 0x9e, 0x27, 0x23, 0x58, 0xf8, 0xed, + 0xda, 0x61, 0xa6, 0xed, 0xb0, 0xc0, 0x77, 0xaa, 0xed, 0x6e, 0xa8, 0x62, 0xda, 0x61, 0x6b, 0x5d, + 0x22, 0x59, 0x81, 0x64, 0x6b, 0x27, 0x8c, 0x52, 0xcc, 0x2c, 0x5f, 0x1f, 0x76, 0x7c, 0x76, 0xc7, + 0x50, 0xde, 0xe4, 0x3c, 0x86, 0x60, 0xd5, 0x5f, 0x87, 0x24, 0x96, 0xc9, 0x34, 0x64, 0x37, 0x8d, + 0xf5, 0xcd, 0xdb, 0xc6, 0xc6, 0xc3, 0xbb, 0xf9, 0x53, 0xbc, 0xb8, 0xfe, 0xf3, 0xeb, 0xab, 0x4f, + 0x9f, 0xf0, 0xa2, 0xa6, 0xbf, 0x05, 0xf3, 0xfc, 0x4c, 0xd8, 0xa2, 0x8c, 0x39, 0x9e, 0x1b, 0x19, + 0xb9, 0x22, 0x64, 0xda, 0x8c, 0xfa, 0xae, 0xd5, 0x0c, 0x4d, 0x41, 0x54, 0xd6, 0xbf, 0x9d, 0x80, + 0xb4, 0x6c, 0xff, 0x4a, 0x2d, 0x9c, 0x8a, 0x61, 0x22, 0x8e, 0x81, 0x2b, 0xb2, 0xd6, 0x70, 0xa8, + 0x1b, 0x98, 0x61, 0x14, 0x57, 0x9c, 0xde, 0xd3, 0x82, 0x7a, 0x5b, 0x46, 0x69, 0xaf, 0x42, 0x1e, + 0x43, 0x86, 0x35, 0x4c, 0xe0, 0x98, 0x28, 0x4a, 0x9c, 0xe4, 0xb3, 0x0a, 0xfd, 0x21, 0x97, 0xb8, + 0x05, 0x33, 0x16, 0xea, 0xd2, 0x94, 0x11, 0x1a, 0xcc, 0x0a, 0xe4, 0x96, 0x2f, 0x8f, 0xa7, 0x7c, + 0xb9, 0x8a, 0xa7, 0xad, 0x88, 0xe4, 0x50, 0xd6, 0x5d, 0x2b, 0xa9, 0xe3, 0xaf, 0x95, 0x8f, 0x21, + 0xbb, 0xbb, 0x6f, 0x06, 0x07, 0x2e, 0x57, 0x2e, 0xbf, 0x2e, 0x4f, 0xad, 0xac, 0xfc, 0xcb, 0xb8, + 0x2a, 0x15, 0xf9, 0xb0, 0xb6, 0x63, 0x97, 0x9f, 0x3e, 0xdd, 0xe0, 0x26, 0x29, 0x7d, 0x7f, 0xff, + 0xc9, 0x81, 0xcb, 0xcd, 0xeb, 0x2e, 0x7e, 0x60, 0xdc, 0xa9, 0x61, 0xb1, 0xc0, 0x54, 0x46, 0xcd, + 0x6f, 0xdc, 0xa8, 0x1c, 0x5e, 0xd1, 0xbf, 0x3b, 0xb2, 0x08, 0x42, 0xd9, 0x1d, 0xfa, 0xaf, 0x6b, + 0x30, 0xa7, 0x2e, 0x1f, 0x71, 0x8c, 0xbc, 0xca, 0x45, 0xf1, 0xe2, 0xcb, 0xc0, 0x9f, 0x6a, 0xb0, + 0x10, 0x5f, 0xca, 0xd2, 0x56, 0xae, 0x41, 0x86, 0x49, 0x9a, 0x34, 0x96, 0xfa, 0x90, 0x39, 0x95, + 0xec, 0x61, 0x2c, 0x20, 0xe4, 0x24, 0x1f, 0xf4, 0x18, 0xb8, 0x61, 0x9b, 0xb2, 0x4f, 0x25, 0x71, + 0x1b, 0xa7, 0xef, 0x01, 0x59, 0xb5, 0xdc, 0x1a, 0x6d, 0xa0, 0x76, 0x47, 0x7a, 0x36, 0x97, 0x21, + 0x83, 0xb3, 0xc3, 0x6b, 0x70, 0xd0, 0x2b, 0x39, 0x3e, 0xa3, 0xc8, 0xcc, 0x67, 0x14, 0x2b, 0x7b, + 0x36, 0xcc, 0x64, 0xcf, 0xa6, 0xbd, 0x0b, 0xf3, 0xb1, 0x2e, 0xa5, 0x6e, 0x8a, 0x90, 0xa9, 0x21, + 0x99, 0xda, 0x32, 0x70, 0x1b, 0x95, 0xb9, 0xcf, 0x8c, 0x78, 0x43, 0x9f, 0x19, 0x0b, 0x7a, 0x07, + 0x16, 0x84, 0x20, 0x39, 0xc0, 0x91, 0xe8, 0xaf, 0x03, 0x48, 0x25, 0x86, 0xf8, 0xa7, 0x44, 0x56, + 0x41, 0x0a, 0xd8, 0x58, 0x33, 0xb2, 0xb2, 0xc1, 0x88, 0x31, 0x6c, 0xc0, 0xe9, 0x9e, 0xae, 0x5f, + 0x7a, 0x14, 0xff, 0xaa, 0x41, 0x7e, 0xab, 0x65, 0xb9, 0xfc, 0x60, 0x88, 0x8c, 0xde, 0xa5, 0x9e, + 0x21, 0xac, 0x40, 0x77, 0xdd, 0x46, 0xc3, 0x31, 0xd4, 0xa0, 0xab, 0x18, 0xcd, 0x3b, 0x3f, 0x3e, + 0x2c, 0xbd, 0x75, 0xbc, 0xd3, 0xf3, 0x3e, 0xed, 0x28, 0xb1, 0xda, 0x87, 0xdd, 0x58, 0xed, 0xe4, + 0x49, 0x24, 0xca, 0x10, 0xaf, 0xfe, 0x37, 0x1a, 0xcc, 0x29, 0xa3, 0x93, 0x5a, 0xda, 0x82, 0x5c, + 0xe0, 0x05, 0x56, 0xc3, 0x14, 0x31, 0x2d, 0x71, 0x11, 0xbf, 0x3e, 0x20, 0xac, 0x23, 0x52, 0xf6, + 0xe5, 0x30, 0x73, 0x5f, 0xfe, 0xf0, 0xa3, 0xd5, 0x55, 0x14, 0x15, 0x06, 0x8b, 0x50, 0x0c, 0x52, + 0x48, 0x09, 0x72, 0xc2, 0x03, 0xaa, 0x79, 0x6d, 0x57, 0xa4, 0x3b, 0x92, 0x06, 0x20, 0x69, 0x95, + 0x53, 0xc8, 0xdb, 0x70, 0xc6, 0x6a, 0xb5, 0x7c, 0xef, 0xc0, 0x69, 0x5a, 0x01, 0xe5, 0x67, 0xdf, + 0xae, 0x59, 0xed, 0x04, 0x94, 0xc9, 0x04, 0xd0, 0x82, 0x52, 0xbb, 0xe6, 0xb0, 0xdd, 0x15, 0x5e, + 0xa7, 0xff, 0x0c, 0x2c, 0xc8, 0xa8, 0x5c, 0x3c, 0x10, 0x34, 0xce, 0x14, 0xe9, 0xff, 0x0b, 0x70, + 0xba, 0x87, 0xbb, 0xff, 0x86, 0x9f, 0xf9, 0xb2, 0x2d, 0xd3, 0xdf, 0x69, 0x30, 0x1f, 0x46, 0x0e, + 0xcd, 0x6a, 0x27, 0x0a, 0xe5, 0x66, 0xd1, 0x5c, 0xdc, 0x19, 0x7e, 0x1f, 0xe9, 0xc7, 0x5a, 0x8e, + 0xa2, 0x92, 0x1d, 0x11, 0xb6, 0x15, 0xde, 0xda, 0x23, 0x3e, 0x03, 0x47, 0x87, 0xa5, 0x7c, 0x4f, + 0xf5, 0xda, 0x67, 0x5f, 0xbc, 0x1c, 0xfc, 0x7c, 0xab, 0xa7, 0x9f, 0xe2, 0x8f, 0xd2, 0x22, 0x3f, + 0x19, 0x25, 0x78, 0xfa, 0x82, 0xb7, 0xda, 0x80, 0xe0, 0xed, 0xaf, 0x6a, 0x70, 0x5a, 0xc9, 0xf9, + 0x98, 0xbd, 0xa1, 0x87, 0x47, 0x47, 0x87, 0xa5, 0xf9, 0xa7, 0xdd, 0x06, 0x27, 0x76, 0x91, 0xe7, + 0xdb, 0xbd, 0xc2, 0x6c, 0x46, 0xfe, 0x5c, 0x83, 0xcb, 0x4a, 0xc2, 0xa8, 0x2f, 0xdf, 0xa4, 0xc0, + 0x9a, 0x44, 0x58, 0xbf, 0x78, 0x74, 0x58, 0xba, 0xd8, 0xcd, 0x26, 0xc5, 0x33, 0x50, 0x27, 0xc6, + 0x78, 0xd1, 0x1f, 0x2a, 0xd9, 0x66, 0xe4, 0xdb, 0x1a, 0x14, 0xe2, 0x49, 0x2e, 0x05, 0x62, 0x02, + 0x21, 0x6e, 0x1e, 0x1d, 0x96, 0x16, 0x1e, 0x2a, 0x29, 0xaf, 0x13, 0xc3, 0x5a, 0x70, 0xfb, 0xa4, + 0xd9, 0x8c, 0x1c, 0x00, 0x09, 0xd3, 0x63, 0x0a, 0x86, 0x24, 0x62, 0xb8, 0x7f, 0x74, 0x58, 0x9a, + 0x7d, 0x28, 0x92, 0x65, 0x27, 0xee, 0x7e, 0xd6, 0x55, 0x05, 0xd9, 0x8c, 0xfc, 0x96, 0x06, 0xe7, + 0x7a, 0x92, 0x75, 0x0a, 0x82, 0x14, 0x22, 0xd8, 0x3a, 0x3a, 0x2c, 0x9d, 0x7d, 0x1a, 0x6f, 0x74, + 0x62, 0x24, 0x67, 0xdb, 0x83, 0x04, 0xda, 0x8c, 0xfc, 0xb1, 0x06, 0xfa, 0x8b, 0x12, 0x82, 0x0a, + 0xb4, 0x34, 0x42, 0x7b, 0x76, 0x74, 0x58, 0x5a, 0x7c, 0x3c, 0x30, 0x3d, 0x78, 0x62, 0x84, 0x8b, + 0x7b, 0x43, 0xe4, 0xda, 0xac, 0xf8, 0x99, 0x16, 0xd9, 0xba, 0xb8, 0xa5, 0x50, 0x6f, 0x4e, 0x49, + 0x71, 0x73, 0xda, 0x8a, 0xdf, 0x9c, 0xde, 0x3d, 0xb6, 0x49, 0x52, 0xad, 0x82, 0x72, 0x99, 0xfa, + 0x20, 0x91, 0xd1, 0xf2, 0x19, 0xfd, 0x2a, 0x4c, 0x8d, 0x1b, 0x84, 0xfd, 0x93, 0xa4, 0x8c, 0xf0, + 0xff, 0x44, 0xde, 0x7a, 0xa8, 0x81, 0x8a, 0x89, 0x57, 0x10, 0xa8, 0xf8, 0x5b, 0x0d, 0x16, 0x7c, + 0x39, 0x90, 0x98, 0xe9, 0x17, 0xf1, 0x86, 0xf7, 0x46, 0x85, 0x66, 0xba, 0xd7, 0xf2, 0x50, 0x48, + 0xdc, 0xe6, 0x6f, 0x4a, 0x9b, 0x3f, 0xd7, 0x5b, 0xff, 0xd2, 0x46, 0x7f, 0xce, 0xef, 0xed, 0xa9, + 0xf8, 0x7d, 0x4d, 0x58, 0x7d, 0xd5, 0xa9, 0x0a, 0x5b, 0x85, 0x4e, 0x55, 0x58, 0x1e, 0xef, 0x1d, + 0xd9, 0xfb, 0x90, 0x74, 0xdc, 0x6d, 0x2f, 0x0c, 0xbb, 0x1c, 0x2b, 0x42, 0x85, 0x8c, 0xc5, 0x4f, + 0xe0, 0xcc, 0x60, 0x95, 0x0c, 0x58, 0xdc, 0xf7, 0xe3, 0x8b, 0xfb, 0x9d, 0xb1, 0x95, 0xae, 0x0e, + 0x3a, 0xbe, 0xa8, 0x13, 0xf9, 0xa4, 0xfe, 0x66, 0x3c, 0x4d, 0x3e, 0xc6, 0xda, 0x76, 0x61, 0x21, + 0xce, 0x21, 0x75, 0xf6, 0x11, 0x64, 0xa2, 0x77, 0x1c, 0xc2, 0xf7, 0x7a, 0x7b, 0x44, 0xb6, 0x58, + 0x15, 0xc3, 0xc2, 0xc7, 0x1e, 0xd1, 0xc5, 0x44, 0x96, 0xf5, 0x1b, 0x40, 0xd6, 0xba, 0x2f, 0x34, + 0x47, 0x46, 0x29, 0x31, 0xf6, 0xea, 0xf9, 0x63, 0x3c, 0x4b, 0xfc, 0x03, 0x0d, 0xa6, 0xb0, 0x69, + 0xf8, 0x20, 0xf1, 0x63, 0xc8, 0x44, 0x09, 0x63, 0xb1, 0x49, 0x71, 0x1f, 0x9d, 0x34, 0x55, 0x9c, + 0x66, 0x32, 0x49, 0xfc, 0x06, 0xcc, 0x51, 0xb7, 0xe6, 0x77, 0x5a, 0x78, 0x59, 0x97, 0xd9, 0x47, + 0x74, 0xb1, 0x8d, 0x7c, 0xb7, 0x42, 0xc4, 0x72, 0xf4, 0xaf, 0xc3, 0x4c, 0x38, 0x8e, 0x28, 0xef, + 0x90, 0x42, 0x49, 0xe1, 0x2d, 0xef, 0xca, 0xb0, 0x5b, 0x9e, 0x32, 0xae, 0xf0, 0x72, 0x26, 0x98, + 0x97, 0xff, 0xe2, 0x3c, 0xa4, 0x64, 0x84, 0xf3, 0x07, 0x1a, 0x4c, 0xa9, 0xef, 0xe8, 0x48, 0x79, + 0xbc, 0x97, 0x72, 0xa1, 0x6e, 0x8b, 0x95, 0xb1, 0xdb, 0x8b, 0x31, 0xe8, 0x57, 0x3e, 0xfb, 0xc7, + 0xff, 0xfc, 0x9d, 0x89, 0xaf, 0x92, 0x52, 0x45, 0x8e, 0xbf, 0xa2, 0x3e, 0xb3, 0xab, 0x7c, 0x22, + 0x67, 0xea, 0x39, 0x3f, 0x32, 0xd3, 0xe1, 0xbc, 0x0c, 0x8b, 0xb5, 0xc5, 0x5f, 0xe5, 0x15, 0xaf, + 0x8d, 0xd3, 0x54, 0x62, 0xb9, 0x81, 0x58, 0xae, 0x90, 0x62, 0x84, 0xc5, 0x16, 0x2d, 0xba, 0x30, + 0x9e, 0x65, 0x49, 0xba, 0xb2, 0x43, 0xad, 0x46, 0xb0, 0x43, 0x7c, 0x48, 0xe2, 0x2b, 0x36, 0x32, + 0x4c, 0xef, 0xea, 0xbb, 0xb7, 0xe2, 0xd2, 0xe8, 0x86, 0x12, 0xca, 0x19, 0x84, 0x92, 0x27, 0x33, + 0x11, 0x14, 0x8c, 0xc9, 0x92, 0x36, 0x24, 0x30, 0xd0, 0x7e, 0x79, 0x84, 0xa4, 0xb0, 0xc7, 0x71, + 0x5e, 0xd2, 0xe9, 0x17, 0xb1, 0xb3, 0x22, 0x29, 0xc4, 0x3b, 0x53, 0x94, 0xff, 0x5c, 0xbc, 0x9a, + 0xc3, 0x98, 0x2a, 0x79, 0x63, 0xbc, 0xc8, 0xab, 0x00, 0x70, 0xfd, 0x38, 0x61, 0x5a, 0xfd, 0x34, + 0x22, 0x99, 0x25, 0xd3, 0x11, 0x12, 0xee, 0x27, 0x92, 0x4f, 0x35, 0x48, 0x89, 0x93, 0x99, 0x8c, + 0x7c, 0xdb, 0x10, 0x29, 0xfb, 0xea, 0x18, 0x2d, 0x65, 0xb7, 0x5f, 0xc5, 0x6e, 0xcf, 0x93, 0x73, + 0x4a, 0xb7, 0xbc, 0x81, 0xa2, 0x01, 0x06, 0x29, 0x91, 0xbe, 0x1e, 0x8a, 0x20, 0x96, 0xe1, 0x2e, + 0xaa, 0xf9, 0x25, 0xf9, 0x14, 0x9d, 0x9b, 0x7c, 0xa9, 0xf5, 0xfe, 0x4e, 0xe5, 0xab, 0xf5, 0x6e, + 0xa7, 0xdf, 0xd7, 0x20, 0x1b, 0xa5, 0x0b, 0x87, 0xea, 0xbd, 0x37, 0x49, 0x3a, 0x54, 0xef, 0x7d, + 0x19, 0x4c, 0xfd, 0x2a, 0x62, 0xb9, 0x44, 0xbe, 0x1a, 0x61, 0xb1, 0xc2, 0x36, 0xb8, 0x16, 0x14, + 0x4c, 0x3f, 0xd4, 0x60, 0x26, 0x9e, 0x4e, 0x26, 0x63, 0x25, 0xcb, 0x55, 0x4f, 0xa9, 0xf8, 0xd6, + 0x31, 0x38, 0x24, 0xc4, 0x37, 0x10, 0xe2, 0xeb, 0xe4, 0xd2, 0x00, 0x88, 0x38, 0x5b, 0x95, 0x4f, + 0xc2, 0x03, 0xea, 0x39, 0xf9, 0x0d, 0x0d, 0xa6, 0xd4, 0x98, 0xd4, 0x50, 0x3b, 0x36, 0x20, 0x1c, + 0x3c, 0xd4, 0x8e, 0x0d, 0x8a, 0xb9, 0xe9, 0xe7, 0x10, 0xde, 0x3c, 0x99, 0x8b, 0xe0, 0x45, 0x81, + 0xb4, 0xdf, 0x93, 0x31, 0x43, 0x7c, 0xc4, 0xf2, 0x93, 0x43, 0x54, 0x42, 0x44, 0xe7, 0xc8, 0xd9, + 0x08, 0x11, 0x3e, 0xc6, 0x31, 0x55, 0x5c, 0x39, 0x25, 0x44, 0x46, 0x86, 0xbe, 0x8a, 0xee, 0x8b, + 0xde, 0x15, 0xcb, 0xe3, 0x36, 0x7f, 0xb1, 0xa5, 0xc7, 0x56, 0x22, 0x10, 0xab, 0xac, 0xb0, 0x3f, + 0xd4, 0x60, 0x3a, 0x16, 0xf6, 0x22, 0x95, 0x91, 0x5d, 0xc5, 0x63, 0x73, 0xc5, 0x37, 0xc7, 0x67, + 0x78, 0xe1, 0x0e, 0x90, 0xe8, 0xa4, 0xba, 0x14, 0x7c, 0x9f, 0x6a, 0x90, 0x8d, 0x82, 0x4d, 0x43, + 0x77, 0x65, 0x6f, 0xc0, 0x6d, 0xe8, 0xae, 0xec, 0x8b, 0x5f, 0xe9, 0x05, 0xc4, 0x44, 0xf4, 0xae, + 0x35, 0x64, 0x2d, 0xcb, 0xbd, 0xa5, 0x5d, 0x23, 0xdf, 0xc2, 0x13, 0xbb, 0xb6, 0x3b, 0xdc, 0x1e, + 0xc6, 0x52, 0xce, 0xc5, 0x61, 0xa7, 0x94, 0xfa, 0xee, 0x60, 0x80, 0x61, 0x62, 0x28, 0x48, 0x51, + 0xc1, 0xaf, 0x68, 0x90, 0x96, 0x49, 0xe5, 0xa1, 0x87, 0x71, 0x3c, 0xf1, 0x3c, 0x3e, 0x04, 0x1d, + 0x21, 0x5c, 0x50, 0x4e, 0xe2, 0x96, 0x90, 0xd4, 0x83, 0x21, 0x7c, 0xc4, 0x39, 0x0c, 0x43, 0x3c, + 0x9b, 0x7d, 0x12, 0x0c, 0x4d, 0x21, 0x49, 0xc1, 0xf0, 0xbb, 0xdc, 0xce, 0x28, 0x2f, 0x0d, 0x86, + 0xef, 0xea, 0xfe, 0x27, 0x0c, 0xc3, 0x77, 0xf5, 0x80, 0x27, 0x0c, 0xfa, 0x25, 0x44, 0xf5, 0x15, + 0x72, 0x5e, 0xd9, 0xd5, 0x75, 0x7c, 0xa3, 0xd0, 0xe3, 0x2b, 0x49, 0xee, 0xa1, 0xaa, 0x89, 0x3f, + 0x69, 0x28, 0xde, 0x18, 0xde, 0xb4, 0xe7, 0x41, 0x87, 0x7e, 0x0d, 0xa1, 0xbc, 0x46, 0xf4, 0x21, + 0x50, 0x2a, 0x9f, 0x70, 0xc2, 0x73, 0xf2, 0x2d, 0x48, 0x3c, 0xf0, 0xea, 0x6c, 0xa8, 0xdf, 0xa2, + 0xbc, 0x6b, 0x39, 0x2e, 0x94, 0x41, 0xb6, 0xae, 0xae, 0x6a, 0xe4, 0xb7, 0x35, 0x7c, 0x31, 0xde, + 0xbd, 0xe2, 0x0f, 0xb5, 0x29, 0x83, 0x22, 0xb1, 0x43, 0x6d, 0xca, 0xc0, 0xe8, 0x81, 0xbe, 0x88, + 0xa8, 0x0a, 0xe4, 0x8c, 0xba, 0x8a, 0x79, 0x3b, 0x99, 0x42, 0x7e, 0x0e, 0x49, 0x71, 0x80, 0x5e, + 0x19, 0x7d, 0x77, 0x1b, 0xed, 0x40, 0xc6, 0x8f, 0xcb, 0x17, 0xb8, 0x34, 0xea, 0x21, 0xc9, 0xaf, + 0x3b, 0xea, 0x8d, 0x8b, 0x8c, 0xfb, 0x92, 0x72, 0x2c, 0x67, 0x7f, 0xc0, 0x8d, 0x70, 0xc0, 0x8a, + 0xe9, 0x05, 0x55, 0xa9, 0x35, 0xed, 0x3d, 0x04, 0xf3, 0xfb, 0x1a, 0xe4, 0x94, 0x6b, 0xde, 0xd0, + 0xd3, 0xa9, 0xff, 0x3a, 0x38, 0x68, 0xb6, 0x62, 0x7f, 0xe4, 0xa7, 0xf0, 0x18, 0xb4, 0xe5, 0xf9, + 0x81, 0x7e, 0x19, 0xc1, 0x5d, 0x24, 0x8b, 0x5d, 0xef, 0xbf, 0xcb, 0x10, 0x37, 0xff, 0x29, 0x71, + 0x11, 0x1b, 0x61, 0x7c, 0x95, 0x3b, 0xe7, 0x50, 0x67, 0x34, 0x7e, 0xab, 0x1b, 0x68, 0x7e, 0x79, + 0x83, 0x2e, 0x84, 0x15, 0xfd, 0xf3, 0x7f, 0x5f, 0x3c, 0xf5, 0xf9, 0xd1, 0xa2, 0xf6, 0x0f, 0x47, + 0x8b, 0xda, 0x3f, 0x1f, 0x2d, 0x6a, 0xff, 0x76, 0xb4, 0xa8, 0x7d, 0xef, 0x3f, 0x16, 0x4f, 0x3d, + 0xcb, 0x84, 0x52, 0xab, 0x29, 0x4c, 0xb9, 0x7e, 0xed, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0xaa, + 0xa6, 0xc4, 0x36, 0x57, 0x39, 0x00, 0x00, } diff --git a/pkg/server/serverpb/status.proto b/pkg/server/serverpb/status.proto index 947332e433ea..45e2dde15d0d 100644 --- a/pkg/server/serverpb/status.proto +++ b/pkg/server/serverpb/status.proto @@ -134,6 +134,12 @@ message RangeProblems { bool no_raft_leader = 3; bool underreplicated = 4; bool no_lease = 5; + + // Quiescent ranges do not tick by definition, but we track this in + // two different ways and suspect that they're getting out of sync. + // If the replica's quiescent flag doesn't agree with the store's + // list of replicas that are ticking, warn about it. + bool quiescent_equals_ticking = 6; } message RangeStatistics { @@ -179,6 +185,7 @@ message RangeInfo { CommandQueueMetrics cmd_q_global = 12 [ (gogoproto.nullable) = false ]; storage.LeaseStatus lease_status = 13 [ (gogoproto.nullable) = false ]; bool quiescent = 14; + bool ticking = 15; } message RangesRequest { @@ -505,6 +512,11 @@ message ProblemRangesResponse { (gogoproto.casttype) = "github.com/cockroachdb/cockroach/pkg/roachpb.RangeID" ]; + repeated int64 quiescent_equals_ticking_range_ids = 7 [ + (gogoproto.customname) = "QuiescentEqualsTickingRangeIDs", + (gogoproto.casttype) = + "github.com/cockroachdb/cockroach/pkg/roachpb.RangeID" + ]; } reserved 1 to 7; // NodeID is the node that submitted all the requests. diff --git a/pkg/server/status.go b/pkg/server/status.go index aed80ff8b535..477ed7465f92 100644 --- a/pkg/server/status.go +++ b/pkg/server/status.go @@ -1094,16 +1094,18 @@ func (s *statusServer) Ranges( WritesPerSecond: rep.WritesPerSecond(), }, Problems: serverpb.RangeProblems{ - Unavailable: metrics.Unavailable, - LeaderNotLeaseHolder: metrics.Leader && metrics.LeaseValid && !metrics.Leaseholder, - NoRaftLeader: !storage.HasRaftLeader(raftStatus) && !metrics.Quiescent, - Underreplicated: metrics.Underreplicated, - NoLease: metrics.Leader && !metrics.LeaseValid && !metrics.Quiescent, + Unavailable: metrics.Unavailable, + LeaderNotLeaseHolder: metrics.Leader && metrics.LeaseValid && !metrics.Leaseholder, + NoRaftLeader: !storage.HasRaftLeader(raftStatus) && !metrics.Quiescent, + Underreplicated: metrics.Underreplicated, + NoLease: metrics.Leader && !metrics.LeaseValid && !metrics.Quiescent, + QuiescentEqualsTicking: metrics.Quiescent == metrics.Ticking, }, CmdQLocal: serverpb.CommandQueueMetrics(metrics.CmdQMetricsLocal), CmdQGlobal: serverpb.CommandQueueMetrics(metrics.CmdQMetricsGlobal), LeaseStatus: metrics.LeaseStatus, Quiescent: metrics.Quiescent, + Ticking: metrics.Ticking, } } diff --git a/pkg/storage/replica.go b/pkg/storage/replica.go index bc8414010512..9f6ca638a40c 100644 --- a/pkg/storage/replica.go +++ b/pkg/storage/replica.go @@ -6021,7 +6021,13 @@ type ReplicaMetrics struct { Leaseholder bool LeaseType roachpb.LeaseType LeaseStatus LeaseStatus - Quiescent bool + + // Quiescent indicates whether the replica believes itself to be quiesced. + Quiescent bool + // Ticking indicates whether the store is ticking the replica. It should be + // the opposite of Quiescent. + Ticking bool + // Is this the replica which collects per-range metrics? This is done either // on the leader or, if there is no leader, on the largest live replica ID. RangeCounter bool @@ -6050,6 +6056,10 @@ func (r *Replica) Metrics( r.cmdQMu.Unlock() r.mu.RUnlock() + r.store.unquiescedReplicas.Lock() + _, ticking := r.store.unquiescedReplicas.m[r.RangeID] + r.store.unquiescedReplicas.Unlock() + return calcReplicaMetrics( ctx, now, @@ -6060,6 +6070,7 @@ func (r *Replica) Metrics( leaseStatus, r.store.StoreID(), quiescent, + ticking, cmdQMetricsLocal, cmdQMetricsGlobal, ) @@ -6084,6 +6095,7 @@ func calcReplicaMetrics( leaseStatus LeaseStatus, storeID roachpb.StoreID, quiescent bool, + ticking bool, cmdQMetricsLocal CommandQueueMetrics, cmdQMetricsGlobal CommandQueueMetrics, ) ReplicaMetrics { @@ -6099,6 +6111,7 @@ func calcReplicaMetrics( m.Leaseholder = m.LeaseValid && leaseOwner m.Leader = isRaftLeader(raftStatus) m.Quiescent = quiescent + m.Ticking = ticking // We compute an estimated range count across the cluster by counting the // first live replica in each descriptor. Note that the first live replica is diff --git a/pkg/storage/replica_test.go b/pkg/storage/replica_test.go index ac57655be68d..2aafa3fc709d 100644 --- a/pkg/storage/replica_test.go +++ b/pkg/storage/replica_test.go @@ -8669,10 +8669,11 @@ func TestReplicaMetrics(t *testing.T) { // Alternate between quiescent and non-quiescent replicas to test the // quiescent metric. c.expected.Quiescent = i%2 == 0 + c.expected.Ticking = !c.expected.Quiescent metrics := calcReplicaMetrics( context.Background(), hlc.Timestamp{}, config.SystemConfig{}, c.liveness, &c.desc, c.raftStatus, LeaseStatus{}, - c.storeID, c.expected.Quiescent, CommandQueueMetrics{}, CommandQueueMetrics{}) + c.storeID, c.expected.Quiescent, c.expected.Ticking, CommandQueueMetrics{}, CommandQueueMetrics{}) if c.expected != metrics { t.Fatalf("unexpected metrics:\n%s", pretty.Diff(c.expected, metrics)) } diff --git a/pkg/ui/src/views/reports/containers/problemRanges/connectionsTable.tsx b/pkg/ui/src/views/reports/containers/problemRanges/connectionsTable.tsx index 6cb97b3a35f9..2a32e37e0fd7 100644 --- a/pkg/ui/src/views/reports/containers/problemRanges/connectionsTable.tsx +++ b/pkg/ui/src/views/reports/containers/problemRanges/connectionsTable.tsx @@ -38,6 +38,10 @@ const connectionTableColumns: ConnectionTableColumn[] = [ title: "Underreplicated (or slow)", extract: (problem) => problem.underreplicated_range_ids.length, }, + { + title: "Quiescent equals ticking", + extract: (problem) => problem.quiescent_equals_ticking_range_ids.length, + }, { title: "Total", extract: (problem) => { @@ -45,7 +49,8 @@ const connectionTableColumns: ConnectionTableColumn[] = [ problem.no_raft_leader_range_ids.length + problem.no_lease_range_ids.length + problem.raft_leader_not_lease_holder_range_ids.length + - problem.underreplicated_range_ids.length; + problem.underreplicated_range_ids.length + + problem.quiescent_equals_ticking_range_ids.length; }, }, { title: "Error", extract: (problem) => problem.error_message }, diff --git a/pkg/ui/src/views/reports/containers/problemRanges/index.tsx b/pkg/ui/src/views/reports/containers/problemRanges/index.tsx index 22306eb213a4..182b71006c4a 100644 --- a/pkg/ui/src/views/reports/containers/problemRanges/index.tsx +++ b/pkg/ui/src/views/reports/containers/problemRanges/index.tsx @@ -168,6 +168,11 @@ class ProblemRanges extends React.Component { problems={problems} extract={(problem) => problem.underreplicated_range_ids} /> + problem.quiescent_equals_ticking_range_ids} + /> ); } diff --git a/pkg/ui/src/views/reports/containers/range/rangeTable.tsx b/pkg/ui/src/views/reports/containers/range/rangeTable.tsx index f5d3fec0135b..0c2ae537d39a 100644 --- a/pkg/ui/src/views/reports/containers/range/rangeTable.tsx +++ b/pkg/ui/src/views/reports/containers/range/rangeTable.tsx @@ -41,6 +41,7 @@ const rangeTableDisplayList: RangeTableRow[] = [ { variable: "problems", display: "Problems", compareToLeader: true }, { variable: "raftState", display: "Raft State", compareToLeader: false }, { variable: "quiescent", display: "Quiescent", compareToLeader: true }, + { variable: "ticking", display: "Ticking", compareToLeader: true }, { variable: "leaseType", display: "Lease Type", compareToLeader: true }, { variable: "leaseState", display: "Lease State", compareToLeader: true }, { variable: "leaseHolder", display: "Lease Holder", compareToLeader: true }, @@ -204,6 +205,9 @@ export default class RangeTable extends React.Component { if (problems.unavailable) { results = _.concat(results, "Unavailable"); } + if (problems.quiescent_equals_ticking) { + results = _.concat(results, "Quiescent equals ticking"); + } if (awaitingGC) { results = _.concat(results, "Awaiting GC"); } @@ -449,6 +453,7 @@ export default class RangeTable extends React.Component { problems: this.contentProblems(info.problems, awaitingGC), raftState: raftState, quiescent: info.quiescent ? rangeTableQuiescent : rangeTableEmptyContent, + ticking: this.createContent(info.ticking.toString()), leaseState: leaseState, leaseHolder: this.createContent( Print.ReplicaID(rangeID, lease.replica),