*: sync to etcd master, vendor

This commit is contained in:
Gyu-Ho Lee 2016-07-02 11:50:15 -07:00
parent a005ddde99
commit c0f2ba03bb
11 changed files with 353 additions and 226 deletions

10
glide.lock generated
View File

@ -1,5 +1,5 @@
hash: 6ac0ebb0f8853fa18c2be5b1b550eb3f96b4ea1deb3a0d4ff5390af768e16a22
updated: 2016-06-30T21:13:02.498119547-07:00
updated: 2016-07-02T11:48:51.461608243-07:00
imports:
- name: bitbucket.org/zombiezen/gopdf
version: 1c63dc69751bc45441c2ce1f56b631c55294b4d5
@ -12,7 +12,7 @@ imports:
- name: github.com/cloudfoundry-incubator/candiedyaml
version: 99c3df83b51532e3615f851d8c2dbb638f5313bf
- name: github.com/coreos/etcd
version: 581f847e06a97dade895301d18714c50e70165cf
version: 7cc4596ebd796f82843c2b43cc9777ab52c80604
subpackages:
- client
- clientv3
@ -83,7 +83,7 @@ imports:
subpackages:
- process
- name: github.com/hashicorp/consul
version: 56eb3bbe352c098914910c95affe123341684e3c
version: 5425fda872c3e62c6a8a31cab22af20cbcbcbcbf
subpackages:
- api
- name: github.com/hashicorp/go-cleanhttp
@ -136,7 +136,7 @@ imports:
- internal/timeseries
- context/ctxhttp
- name: golang.org/x/oauth2
version: 65a8d08c6292395d47053be10b3c5e91960def76
version: df5b72659a3b1789a345ea643bb7c28442681652
subpackages:
- google
- jwt
@ -164,7 +164,7 @@ imports:
- internal/remote_api
- internal/socket
- name: google.golang.org/cloud
version: f1ae21c8f86d456623bddb78ff91d38a3010b35f
version: ebfe3819c9ab4acaf086ae57e4cbd7dee683baf0
subpackages:
- storage
- compute/metadata

13
test
View File

@ -1,24 +1,25 @@
#!/usr/bin/env bash
TEST="./agent ./analyze ./control ./remotestorage ./upload"
FMT="./agent/*.go ./analyze/*.go ./control/*.go ./remotestorage/*.go ./upload/*.go"
IGNORE_PKGS="(vendor)"
TESTS=`find . -name \*_test.go | while read a; do dirname $a; done | sort | uniq | egrep -v "$IGNORE_PKGS"`
echo "Running tests...";
go test -v -cover -cpu 1,2,4 $TEST;
go test -v -cover -cpu 1,2,4 -race $TEST;
go test -v -cover -cpu 1,2,4 $TESTS;
go test -v -cover -cpu 1,2,4 -race $TESTS;
echo "Checking gofmt..."
fmtRes=$(gofmt -l -s $FMT)
fmtRes=$(gofmt -l -s $TESTS 2>&1 >/dev/null)
if [ -n "${fmtRes}" ]; then
echo -e "gofmt checking failed:\n${fmtRes}"
exit 255
fi
echo "Checking govet..."
vetRes=$(go vet $TEST)
vetRes=$(go vet $TESTS 2>&1 >/dev/null)
if [ -n "${vetRes}" ]; then
echo -e "govet checking failed:\n${vetRes}"
exit 255
fi
echo "Success";

View File

@ -163,7 +163,7 @@ func (kv *kv) do(ctx context.Context, op Op) (OpResponse, error) {
}
case tDeleteRange:
var resp *pb.DeleteRangeResponse
r := &pb.DeleteRangeRequest{Key: op.key, RangeEnd: op.end}
r := &pb.DeleteRangeRequest{Key: op.key, RangeEnd: op.end, PreserveKVs: op.preserveKVs}
resp, err = kv.remote.DeleteRange(ctx, r)
if err == nil {
return OpResponse{del: (*DeleteResponse)(resp)}, nil

View File

@ -389,7 +389,7 @@ func (l *lessor) sendKeepAliveLoop(stream pb.Lease_LeaseKeepAliveClient) {
return
}
tosend := make([]LeaseID, 0)
var tosend []LeaseID
now := time.Now()
l.mu.Lock()

View File

@ -14,9 +14,7 @@
package clientv3
import (
pb "github.com/coreos/etcd/etcdserver/etcdserverpb"
)
import pb "github.com/coreos/etcd/etcdserver/etcdserverpb"
type opType int
@ -47,6 +45,9 @@ type Op struct {
// for range, watch
rev int64
// for delete
preserveKVs bool
// progressNotify is for progress updates.
progressNotify bool
@ -76,7 +77,8 @@ func (op Op) toRequestOp() *pb.RequestOp {
r := &pb.PutRequest{Key: op.key, Value: op.val, Lease: int64(op.leaseID)}
return &pb.RequestOp{Request: &pb.RequestOp_RequestPut{RequestPut: r}}
case tDeleteRange:
r := &pb.DeleteRangeRequest{Key: op.key, RangeEnd: op.end}
r := &pb.DeleteRangeRequest{Key: op.key, RangeEnd: op.end, PreserveKVs: op.preserveKVs}
return &pb.RequestOp{Request: &pb.RequestOp_RequestDeleteRange{RequestDeleteRange: r}}
default:
panic("Unknown Op")
@ -128,7 +130,9 @@ func OpPut(key, val string, opts ...OpOption) Op {
case ret.serializable:
panic("unexpected serializable in put")
case ret.countOnly:
panic("unexpected countOnly in delete")
panic("unexpected countOnly in put")
case ret.preserveKVs:
panic("unexpected preserveKVs in put")
}
return ret
}
@ -146,7 +150,9 @@ func opWatch(key string, opts ...OpOption) Op {
case ret.serializable:
panic("unexpected serializable in watch")
case ret.countOnly:
panic("unexpected countOnly in delete")
panic("unexpected countOnly in watch")
case ret.preserveKVs:
panic("unexpected preserveKVs in watch")
}
return ret
}
@ -258,6 +264,11 @@ func withTop(target SortTarget, order SortOrder) []OpOption {
return []OpOption{WithPrefix(), WithSort(target, order), WithLimit(1)}
}
// WithPreserveKVs preserves the deleted KVs for attaching in responses.
func WithPreserveKVs() OpOption {
return func(op *Op) { op.preserveKVs = true }
}
// WithProgressNotify makes watch server send periodic progress updates.
// Progress updates have zero events in WatchResponse.
func WithProgressNotify() OpOption {

View File

@ -326,6 +326,10 @@ type DeleteRangeRequest struct {
// If range_end is not given, the range is defined to contain only the key argument.
// If range_end is '\0', the range is all keys greater than or equal to the key argument.
RangeEnd []byte `protobuf:"bytes,2,opt,name=range_end,json=rangeEnd,proto3" json:"range_end,omitempty"`
// If preserveKVs is set, the deleted KVs will be preserved.
// The preserved KVs will be returned as response.
// It requires read permission to read the deleted KVs.
PreserveKVs bool `protobuf:"varint,3,opt,name=preserveKVs,proto3" json:"preserveKVs,omitempty"`
}
func (m *DeleteRangeRequest) Reset() { *m = DeleteRangeRequest{} }
@ -337,6 +341,8 @@ type DeleteRangeResponse struct {
Header *ResponseHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
// deleted is the number of keys deleted by the delete range request.
Deleted int64 `protobuf:"varint,2,opt,name=deleted,proto3" json:"deleted,omitempty"`
// if preserveKVs is set in the request, the deleted KVs will be returned.
KVs []*mvccpb.KeyValue `protobuf:"bytes,3,rep,name=KVs,json=kVs" json:"KVs,omitempty"`
}
func (m *DeleteRangeResponse) Reset() { *m = DeleteRangeResponse{} }
@ -351,6 +357,13 @@ func (m *DeleteRangeResponse) GetHeader() *ResponseHeader {
return nil
}
func (m *DeleteRangeResponse) GetKVs() []*mvccpb.KeyValue {
if m != nil {
return m.KVs
}
return nil
}
type RequestOp struct {
// request is a union of request types accepted by a transaction.
//
@ -3851,6 +3864,16 @@ func (m *DeleteRangeRequest) MarshalTo(data []byte) (int, error) {
i = encodeVarintRpc(data, i, uint64(len(m.RangeEnd)))
i += copy(data[i:], m.RangeEnd)
}
if m.PreserveKVs {
data[i] = 0x18
i++
if m.PreserveKVs {
data[i] = 1
} else {
data[i] = 0
}
i++
}
return i, nil
}
@ -3884,6 +3907,18 @@ func (m *DeleteRangeResponse) MarshalTo(data []byte) (int, error) {
i++
i = encodeVarintRpc(data, i, uint64(m.Deleted))
}
if len(m.KVs) > 0 {
for _, msg := range m.KVs {
data[i] = 0x1a
i++
i = encodeVarintRpc(data, i, uint64(msg.Size()))
n, err := msg.MarshalTo(data[i:])
if err != nil {
return 0, err
}
i += n
}
}
return i, nil
}
@ -6335,6 +6370,9 @@ func (m *DeleteRangeRequest) Size() (n int) {
if l > 0 {
n += 1 + l + sovRpc(uint64(l))
}
if m.PreserveKVs {
n += 2
}
return n
}
@ -6348,6 +6386,12 @@ func (m *DeleteRangeResponse) Size() (n int) {
if m.Deleted != 0 {
n += 1 + sovRpc(uint64(m.Deleted))
}
if len(m.KVs) > 0 {
for _, e := range m.KVs {
l = e.Size()
n += 1 + l + sovRpc(uint64(l))
}
}
return n
}
@ -8158,6 +8202,26 @@ func (m *DeleteRangeRequest) Unmarshal(data []byte) error {
m.RangeEnd = []byte{}
}
iNdEx = postIndex
case 3:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field PreserveKVs", wireType)
}
var v int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowRpc
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := data[iNdEx]
iNdEx++
v |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
m.PreserveKVs = bool(v != 0)
default:
iNdEx = preIndex
skippy, err := skipRpc(data[iNdEx:])
@ -8260,6 +8324,37 @@ func (m *DeleteRangeResponse) Unmarshal(data []byte) error {
break
}
}
case 3:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field KVs", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowRpc
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := data[iNdEx]
iNdEx++
msglen |= (int(b) & 0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthRpc
}
postIndex := iNdEx + msglen
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.KVs = append(m.KVs, &mvccpb.KeyValue{})
if err := m.KVs[len(m.KVs)-1].Unmarshal(data[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipRpc(data[iNdEx:])
@ -15185,203 +15280,205 @@ var (
)
var fileDescriptorRpc = []byte{
// 3167 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x5a, 0x4b, 0x73, 0x24, 0x47,
0x11, 0xde, 0x79, 0xe8, 0x31, 0x39, 0xa3, 0x59, 0x6d, 0x49, 0xbb, 0x1e, 0xf5, 0x6a, 0xb5, 0xda,
0xda, 0xa7, 0x5f, 0x1a, 0x2c, 0x1b, 0x0e, 0x40, 0x38, 0x62, 0xa4, 0x19, 0xaf, 0x65, 0xc9, 0xd2,
0xba, 0x35, 0x2b, 0x9b, 0x08, 0x02, 0x45, 0x6b, 0xa6, 0x56, 0x9a, 0xd0, 0xbc, 0xdc, 0xdd, 0xa3,
0x5d, 0x2d, 0x10, 0x01, 0x0e, 0x7c, 0x80, 0xab, 0x0f, 0x04, 0x70, 0xe4, 0x37, 0x70, 0xe3, 0x07,
0x10, 0x5c, 0x70, 0x04, 0x47, 0x2e, 0x04, 0xc1, 0x81, 0x03, 0x77, 0x82, 0x13, 0xd4, 0xb3, 0xbb,
0xba, 0xa7, 0x7a, 0x24, 0xd3, 0xf8, 0xb0, 0xab, 0xae, 0xac, 0xac, 0xcc, 0xac, 0xac, 0xca, 0xaf,
0x33, 0xb3, 0x07, 0x0a, 0xee, 0xb0, 0xb5, 0x36, 0x74, 0x07, 0xfe, 0x00, 0x95, 0x88, 0xdf, 0x6a,
0x7b, 0xc4, 0x3d, 0x23, 0xee, 0xf0, 0xc8, 0x5a, 0x3c, 0x1e, 0x1c, 0x0f, 0xf8, 0x44, 0x95, 0x3d,
0x09, 0x1e, 0x6b, 0x89, 0xf1, 0x54, 0x7b, 0x67, 0xad, 0x16, 0xff, 0x6f, 0x78, 0x54, 0x3d, 0x3d,
0x93, 0x53, 0x37, 0xf9, 0x94, 0x33, 0xf2, 0x4f, 0xf8, 0x7f, 0x74, 0x8a, 0xfd, 0x91, 0x93, 0xcb,
0xc7, 0x83, 0xc1, 0x71, 0x97, 0x54, 0x9d, 0x61, 0xa7, 0xea, 0xf4, 0xfb, 0x03, 0xdf, 0xf1, 0x3b,
0x83, 0xbe, 0x27, 0x66, 0xf1, 0xe7, 0x19, 0x28, 0xdb, 0xc4, 0x1b, 0x52, 0x0a, 0x79, 0x9f, 0x38,
0x6d, 0xe2, 0xa2, 0x5b, 0x00, 0xad, 0xee, 0xc8, 0xf3, 0x89, 0x7b, 0xd8, 0x69, 0x57, 0x32, 0xab,
0x99, 0x47, 0x79, 0xbb, 0x20, 0x29, 0x5b, 0x6d, 0x74, 0x13, 0x0a, 0x3d, 0xd2, 0x3b, 0x12, 0xb3,
0x59, 0x3e, 0x3b, 0x2b, 0x08, 0x74, 0xd2, 0x82, 0x59, 0x97, 0x9c, 0x75, 0x3c, 0xaa, 0xa1, 0x92,
0xa3, 0x73, 0x39, 0x3b, 0x18, 0xb3, 0x85, 0xae, 0xf3, 0xcc, 0x3f, 0xa4, 0x62, 0x7a, 0x95, 0xbc,
0x58, 0xc8, 0x08, 0x4d, 0x3a, 0xc6, 0x5f, 0xe6, 0xa0, 0x64, 0x3b, 0xfd, 0x63, 0x62, 0x93, 0x4f,
0x47, 0xc4, 0xf3, 0xd1, 0x3c, 0xe4, 0x4e, 0xc9, 0x39, 0x57, 0x5f, 0xb2, 0xd9, 0xa3, 0x58, 0x4f,
0x39, 0x0e, 0x49, 0x5f, 0x28, 0x2e, 0xb1, 0xf5, 0x94, 0xd0, 0xe8, 0xb7, 0xd1, 0x22, 0x4c, 0x75,
0x3b, 0xbd, 0x8e, 0x2f, 0xb5, 0x8a, 0x41, 0xc4, 0x9c, 0x7c, 0xcc, 0x9c, 0x4d, 0x00, 0x6f, 0xe0,
0xfa, 0x87, 0x03, 0x97, 0x6e, 0xba, 0x32, 0x45, 0x67, 0xcb, 0xeb, 0xf7, 0xd6, 0xf4, 0x83, 0x58,
0xd3, 0x0d, 0x5a, 0xdb, 0xa7, 0xcc, 0x7b, 0x8c, 0xd7, 0x2e, 0x78, 0xea, 0x11, 0xbd, 0x07, 0x45,
0x2e, 0xc4, 0x77, 0xdc, 0x63, 0xe2, 0x57, 0xa6, 0xb9, 0x94, 0xfb, 0x17, 0x48, 0x69, 0x72, 0x66,
0x9b, 0xab, 0x17, 0xcf, 0x08, 0x43, 0x89, 0xf2, 0x77, 0x9c, 0x6e, 0xe7, 0xa5, 0x73, 0xd4, 0x25,
0x95, 0x19, 0x2a, 0x68, 0xd6, 0x8e, 0xd0, 0xd8, 0xfe, 0xa9, 0x1b, 0xbc, 0xc3, 0x41, 0xbf, 0x7b,
0x5e, 0x99, 0xe5, 0x0c, 0xb3, 0x8c, 0xb0, 0x47, 0xc7, 0xfc, 0xd0, 0x06, 0xa3, 0xbe, 0x2f, 0x66,
0x0b, 0x7c, 0xb6, 0xc0, 0x29, 0x6c, 0x1a, 0xaf, 0x41, 0x21, 0xb0, 0x1f, 0xcd, 0x42, 0x7e, 0x77,
0x6f, 0xb7, 0x31, 0x7f, 0x05, 0x01, 0x4c, 0xd7, 0xf6, 0x37, 0x1b, 0xbb, 0xf5, 0xf9, 0x0c, 0x2a,
0xc2, 0x4c, 0xbd, 0x21, 0x06, 0x59, 0xbc, 0x01, 0x10, 0x5a, 0x8a, 0x66, 0x20, 0xb7, 0xdd, 0xf8,
0x1e, 0xe5, 0xa7, 0x3c, 0x07, 0x0d, 0x7b, 0x7f, 0x6b, 0x6f, 0x97, 0x2e, 0xa0, 0x8b, 0x37, 0xed,
0x46, 0xad, 0xd9, 0x98, 0xcf, 0x32, 0x8e, 0x0f, 0xf7, 0xea, 0xf3, 0x39, 0x54, 0x80, 0xa9, 0x83,
0xda, 0xce, 0xd3, 0xc6, 0x7c, 0x1e, 0x7f, 0x91, 0x81, 0x39, 0xb9, 0x77, 0x71, 0xbf, 0xd0, 0x3b,
0x30, 0x7d, 0xc2, 0xef, 0x18, 0x3f, 0xd6, 0xe2, 0xfa, 0x72, 0xcc, 0x51, 0x91, 0x7b, 0x68, 0x4b,
0x5e, 0xea, 0x9b, 0xdc, 0xe9, 0x99, 0x47, 0x4f, 0x3c, 0x47, 0x97, 0xcc, 0xaf, 0x89, 0xcb, 0xbf,
0xb6, 0x4d, 0xce, 0x0f, 0x9c, 0xee, 0x88, 0xd8, 0x6c, 0x12, 0x21, 0xc8, 0xf7, 0x06, 0x2e, 0xe1,
0xa7, 0x3f, 0x6b, 0xf3, 0x67, 0x76, 0x25, 0xb8, 0x03, 0xe4, 0xc9, 0x8b, 0x01, 0xfe, 0x00, 0xe0,
0xc9, 0xc8, 0x4f, 0xbe, 0x65, 0x74, 0xd5, 0x19, 0x93, 0x2b, 0x6f, 0x98, 0x18, 0xf0, 0xeb, 0x45,
0x1c, 0x8f, 0x04, 0xd7, 0x8b, 0x0d, 0xf0, 0x26, 0x14, 0xb9, 0xac, 0x34, 0xdb, 0xa3, 0x42, 0x50,
0x9d, 0x74, 0x89, 0x4f, 0x52, 0x5c, 0x7f, 0x4c, 0x60, 0x21, 0x22, 0x24, 0x95, 0xc3, 0x2b, 0x30,
0xd3, 0xe6, 0xc2, 0x84, 0x9e, 0x9c, 0xad, 0x86, 0xf8, 0x9f, 0x19, 0x28, 0x48, 0x0b, 0xf7, 0x86,
0xa8, 0x06, 0x73, 0xae, 0x18, 0x1c, 0x72, 0x43, 0xa4, 0x12, 0x2b, 0xf9, 0xfa, 0xbf, 0x7f, 0xc5,
0x2e, 0xc9, 0x25, 0x9c, 0x8c, 0xbe, 0x03, 0x45, 0x25, 0x62, 0x38, 0xf2, 0xb9, 0xba, 0xe2, 0x7a,
0x25, 0x2a, 0x20, 0x3c, 0x2e, 0xba, 0x1c, 0x24, 0x3b, 0x25, 0xa2, 0x26, 0x2c, 0xaa, 0xc5, 0xc2,
0x40, 0x69, 0x46, 0x8e, 0x4b, 0x59, 0x8d, 0x4a, 0x19, 0xf7, 0x31, 0x95, 0x86, 0xe4, 0x7a, 0x6d,
0x72, 0xa3, 0x00, 0x33, 0x92, 0x8a, 0xff, 0x95, 0x01, 0x50, 0x3e, 0xa2, 0xfb, 0xad, 0x43, 0xd9,
0x95, 0xa3, 0xc8, 0x86, 0x6f, 0x1a, 0x37, 0x2c, 0x5d, 0x7b, 0xc5, 0x9e, 0x53, 0x8b, 0xc4, 0x96,
0xdf, 0x85, 0x52, 0x20, 0x25, 0xdc, 0xf3, 0x92, 0x61, 0xcf, 0x81, 0x84, 0xa2, 0x5a, 0xc0, 0x76,
0xfd, 0x31, 0x5c, 0x0f, 0xd6, 0x1b, 0xb6, 0x7d, 0x67, 0xc2, 0xb6, 0x03, 0x81, 0x0b, 0x4a, 0x82,
0xbe, 0x71, 0x60, 0x60, 0x29, 0xc8, 0xf8, 0xd7, 0x39, 0x98, 0xd9, 0x1c, 0xf4, 0x86, 0x8e, 0xcb,
0xce, 0x68, 0x9a, 0xd2, 0x47, 0x5d, 0x9f, 0x6f, 0xb7, 0xbc, 0x7e, 0x37, 0xaa, 0x41, 0xb2, 0xa9,
0xbf, 0x36, 0x67, 0xb5, 0xe5, 0x12, 0xb6, 0x58, 0x62, 0x63, 0xf6, 0x12, 0x8b, 0x25, 0x32, 0xca,
0x25, 0x2a, 0x08, 0x72, 0x61, 0x10, 0x58, 0x30, 0x43, 0x17, 0x86, 0x78, 0x4e, 0xf7, 0xa2, 0x08,
0xe8, 0x55, 0xb8, 0xda, 0x72, 0x89, 0xc3, 0xfc, 0xa1, 0x30, 0x7f, 0x4a, 0xf2, 0x94, 0xc5, 0x84,
0xad, 0xb0, 0xff, 0x2e, 0x94, 0x7a, 0x83, 0x76, 0xc8, 0x37, 0x2d, 0xf9, 0x8a, 0x94, 0x1a, 0x30,
0xdd, 0x50, 0x48, 0xc0, 0xc0, 0xb8, 0x44, 0x67, 0xc5, 0x10, 0xbf, 0x05, 0x73, 0x91, 0xbd, 0x32,
0xcc, 0x6b, 0x7c, 0xf4, 0xb4, 0xb6, 0x23, 0x00, 0xf2, 0x31, 0xc7, 0x44, 0x9b, 0x02, 0x24, 0xc5,
0xd9, 0x9d, 0xc6, 0xfe, 0x3e, 0x85, 0xd3, 0xef, 0x06, 0x4b, 0x24, 0xa2, 0x6a, 0x40, 0x7a, 0x45,
0x03, 0xd2, 0x8c, 0x02, 0xd2, 0x6c, 0x08, 0xa4, 0xb9, 0x8d, 0x32, 0x94, 0x84, 0x43, 0x0e, 0x47,
0x7d, 0x6a, 0x18, 0xfe, 0x2d, 0xbd, 0x96, 0xcd, 0x17, 0x7d, 0x05, 0x15, 0x55, 0x98, 0x69, 0x09,
0xe1, 0xf4, 0x80, 0x18, 0x46, 0x5e, 0x37, 0xfa, 0xd8, 0x56, 0x5c, 0xe8, 0x2d, 0x98, 0xf1, 0x46,
0xad, 0x16, 0xf1, 0x14, 0xa8, 0xbe, 0x12, 0x87, 0x05, 0x19, 0xe1, 0xb6, 0xe2, 0x63, 0x4b, 0x9e,
0x39, 0x9d, 0xee, 0x88, 0x43, 0xec, 0xe4, 0x25, 0x92, 0x0f, 0xff, 0x2a, 0x03, 0x45, 0x6e, 0x65,
0x2a, 0x2c, 0x5a, 0x86, 0x02, 0xb7, 0x81, 0xb4, 0x25, 0x1a, 0xd1, 0xd7, 0x5a, 0x40, 0x40, 0xdf,
0xa2, 0x98, 0x28, 0xd7, 0x79, 0xd2, 0xb0, 0x8a, 0x59, 0x2c, 0xb5, 0x2c, 0x64, 0xc5, 0xdb, 0x70,
0x8d, 0x7b, 0xa5, 0xc5, 0x52, 0x21, 0xe5, 0x47, 0x3d, 0x59, 0xc8, 0xc4, 0x92, 0x05, 0x3a, 0x37,
0x3c, 0x39, 0xf7, 0x3a, 0x2d, 0xa7, 0x2b, 0xad, 0x08, 0xc6, 0xf4, 0x8d, 0x82, 0x74, 0x61, 0xa9,
0x5e, 0x06, 0x73, 0x50, 0x7c, 0xdf, 0xf1, 0x4e, 0xa4, 0x49, 0xf8, 0x13, 0x28, 0x89, 0x61, 0x2a,
0x1f, 0xd2, 0x97, 0xe3, 0x09, 0x95, 0xc2, 0x0d, 0x9f, 0xb3, 0xf9, 0x33, 0xbe, 0x06, 0x57, 0xf7,
0xfb, 0xce, 0xd0, 0x3b, 0x19, 0x28, 0x70, 0x65, 0xa9, 0xe0, 0x7c, 0x48, 0x4b, 0xa5, 0xf1, 0x21,
0x5c, 0x75, 0x49, 0xcf, 0xe9, 0xf4, 0x3b, 0xfd, 0xe3, 0xc3, 0xa3, 0x73, 0x9f, 0x78, 0x32, 0x53,
0x2c, 0x07, 0xe4, 0x0d, 0x46, 0x65, 0xa6, 0x1d, 0x75, 0x07, 0x47, 0x32, 0xc4, 0xf9, 0x33, 0xfe,
0x5d, 0x06, 0x4a, 0x1f, 0x3b, 0x7e, 0x4b, 0x79, 0x01, 0x6d, 0x41, 0x39, 0x08, 0x6c, 0x4e, 0x91,
0xb6, 0xc4, 0x10, 0x9e, 0xaf, 0xd9, 0x94, 0x81, 0xae, 0x10, 0x7e, 0xae, 0xa5, 0x13, 0xb8, 0x28,
0xa7, 0xdf, 0x22, 0xdd, 0x40, 0x54, 0x36, 0x59, 0x14, 0x67, 0xd4, 0x45, 0xe9, 0x84, 0x8d, 0xab,
0xe1, 0xdb, 0x4f, 0x84, 0xe5, 0x4f, 0xb3, 0x80, 0xc6, 0x6d, 0xf8, 0xaa, 0x89, 0xec, 0x7d, 0x28,
0x7b, 0x34, 0xda, 0xfd, 0xc3, 0x58, 0x1e, 0x3d, 0xc7, 0xa9, 0x01, 0x38, 0x51, 0x0f, 0xd3, 0x04,
0xfe, 0x98, 0x5e, 0x69, 0xef, 0x90, 0xe6, 0xf4, 0x9d, 0x67, 0xe7, 0x1c, 0x10, 0x67, 0xed, 0xb2,
0x22, 0xef, 0x72, 0x2a, 0x6a, 0xd0, 0xc8, 0xed, 0x74, 0x69, 0xce, 0xed, 0x51, 0x34, 0xcc, 0x51,
0x04, 0x7e, 0xfd, 0x22, 0xaf, 0xad, 0xbd, 0xc7, 0xf9, 0x9b, 0xe7, 0x43, 0x8a, 0x19, 0x72, 0x2d,
0xbe, 0x0f, 0x10, 0x92, 0x19, 0x38, 0xed, 0xee, 0x3d, 0x79, 0xda, 0xa4, 0xe0, 0x55, 0x82, 0xd9,
0xdd, 0xbd, 0x7a, 0x63, 0xa7, 0xc1, 0xe0, 0x0b, 0x57, 0x95, 0x0b, 0x74, 0x57, 0xa1, 0x25, 0x98,
0x7d, 0xce, 0xa8, 0xaa, 0x9e, 0xa0, 0x19, 0x05, 0x1f, 0x6f, 0xb5, 0xf1, 0x3f, 0x68, 0x92, 0x28,
0x0f, 0x3b, 0xd5, 0x8d, 0xd3, 0x55, 0x64, 0x23, 0x2a, 0x58, 0x3a, 0x23, 0x2e, 0x41, 0x5b, 0xa6,
0x87, 0x6a, 0xc8, 0xa2, 0x5a, 0x9c, 0x29, 0x9d, 0x12, 0xde, 0x0b, 0xc6, 0xf4, 0x6d, 0x32, 0xdf,
0x12, 0x51, 0x1d, 0x7b, 0x9d, 0xd8, 0x57, 0x25, 0x3d, 0x38, 0x8b, 0xfb, 0x30, 0x4d, 0xce, 0x48,
0xdf, 0xf7, 0x2a, 0x45, 0x0e, 0x41, 0x73, 0x2a, 0x47, 0x6d, 0x30, 0xaa, 0x2d, 0x27, 0xf1, 0x37,
0xe1, 0xda, 0x0e, 0x4b, 0x1b, 0x1f, 0xd3, 0xb3, 0xd6, 0x13, 0xd0, 0x66, 0x73, 0x47, 0x7a, 0x25,
0xe7, 0x37, 0x77, 0x50, 0x19, 0xb2, 0x5b, 0x75, 0xb9, 0x87, 0x6c, 0xa7, 0x8e, 0x3f, 0xcb, 0x00,
0xd2, 0xd7, 0xa5, 0x72, 0x53, 0x4c, 0xb8, 0x52, 0x9f, 0x0b, 0xd5, 0xd3, 0x4c, 0x97, 0xb8, 0xee,
0xc0, 0xe5, 0x0e, 0x29, 0xd8, 0x62, 0x80, 0xef, 0x49, 0x1b, 0xe8, 0x9e, 0x07, 0xa7, 0xc1, 0xd5,
0x16, 0xd2, 0x32, 0x81, 0xa9, 0xdb, 0xb0, 0x10, 0xe1, 0x4a, 0x05, 0x85, 0x0f, 0xe1, 0x3a, 0x17,
0xb6, 0x4d, 0xc8, 0xb0, 0xd6, 0xed, 0x9c, 0x25, 0x6a, 0x1d, 0xc2, 0x8d, 0x38, 0xe3, 0xd7, 0xeb,
0x23, 0x7c, 0x02, 0xd3, 0x1f, 0xf2, 0x8a, 0x57, 0xb3, 0x25, 0xcf, 0x79, 0x29, 0x9e, 0xf5, 0x9d,
0x9e, 0x28, 0x1e, 0x0a, 0x36, 0x7f, 0xe6, 0xef, 0x0e, 0x42, 0xdc, 0xa7, 0xf6, 0x8e, 0x78, 0x47,
0x15, 0xec, 0x60, 0x8c, 0x56, 0x58, 0xad, 0xdd, 0xa1, 0xd7, 0x83, 0xcf, 0xe6, 0xf9, 0xac, 0x46,
0xa1, 0x75, 0xdb, 0xbc, 0xd0, 0x54, 0x6b, 0xb7, 0xb5, 0xf7, 0x54, 0x20, 0x2f, 0x13, 0x95, 0x87,
0x9f, 0xc3, 0x35, 0x8d, 0x3f, 0x95, 0x1b, 0xde, 0x80, 0x69, 0x51, 0xd6, 0x4b, 0x88, 0x5c, 0x8c,
0xae, 0x12, 0x6a, 0x6c, 0xc9, 0x43, 0xf1, 0x61, 0x41, 0x52, 0x48, 0x6f, 0x60, 0x3a, 0x2b, 0xee,
0x1f, 0xbc, 0x03, 0x8b, 0x51, 0xb6, 0x54, 0x57, 0xa4, 0xa6, 0x94, 0x3e, 0x1d, 0xb6, 0x35, 0xc4,
0x8d, 0x1f, 0x8a, 0xee, 0xb0, 0x6c, 0xcc, 0x61, 0x81, 0x41, 0x4a, 0x44, 0x2a, 0x83, 0x16, 0x94,
0xfb, 0x77, 0x3a, 0x5e, 0xf0, 0x5e, 0x7d, 0x09, 0x48, 0x27, 0xa6, 0x3a, 0x94, 0x35, 0x98, 0x11,
0x0e, 0x57, 0xa9, 0x9b, 0xf9, 0x54, 0x14, 0x13, 0x33, 0xa8, 0x4e, 0x9e, 0xb9, 0xce, 0x71, 0x8f,
0x04, 0x98, 0xc3, 0x12, 0x16, 0x9d, 0x98, 0x6a, 0xc7, 0x7f, 0xa2, 0x2f, 0xeb, 0x5a, 0xd7, 0x71,
0x7b, 0xca, 0xf9, 0xef, 0xc2, 0xb4, 0xc8, 0x84, 0x64, 0xb5, 0xf0, 0x20, 0x2a, 0x46, 0xe7, 0x15,
0x83, 0x9a, 0xc8, 0x9b, 0xe4, 0x2a, 0x76, 0x58, 0xb2, 0x9b, 0x54, 0x8f, 0x75, 0x97, 0xea, 0xe8,
0x4d, 0x98, 0x72, 0xd8, 0x12, 0x1e, 0x8b, 0xe5, 0x78, 0x0e, 0xca, 0xa5, 0xf1, 0xb7, 0x96, 0xe0,
0xc2, 0xef, 0x40, 0x51, 0xd3, 0xc0, 0x52, 0xeb, 0xc7, 0x0d, 0xf9, 0xca, 0xaa, 0x6d, 0x36, 0xb7,
0x0e, 0x44, 0xc6, 0x5d, 0x06, 0xa8, 0x37, 0x82, 0x71, 0x96, 0xe6, 0x5c, 0x62, 0x95, 0x8c, 0x70,
0xdd, 0x9e, 0x4c, 0x92, 0x3d, 0xd9, 0x4b, 0xd9, 0xf3, 0x02, 0xe6, 0xe4, 0xf6, 0x53, 0xdd, 0x81,
0xb7, 0xa8, 0x87, 0x99, 0x18, 0x75, 0x05, 0x96, 0x0c, 0x6a, 0x55, 0x74, 0x0a, 0x46, 0x4c, 0x73,
0x95, 0x7d, 0xdf, 0xf1, 0x47, 0x9e, 0xba, 0x02, 0x7f, 0xcc, 0x40, 0x59, 0x51, 0xd2, 0xf6, 0x0a,
0x54, 0x41, 0x26, 0x30, 0x2f, 0x28, 0xc7, 0x6e, 0xc0, 0x74, 0xfb, 0x68, 0xbf, 0xf3, 0x52, 0xf5,
0x4c, 0xe4, 0x88, 0xd1, 0xbb, 0x42, 0x8f, 0xe8, 0x01, 0xca, 0x11, 0xcb, 0xf4, 0x59, 0x37, 0x70,
0xab, 0xdf, 0x26, 0x2f, 0xf8, 0x9b, 0x36, 0x6f, 0x87, 0x04, 0x9e, 0x9c, 0xcb, 0x5e, 0x21, 0xaf,
0xd6, 0xf4, 0xde, 0x21, 0xbd, 0xe4, 0xb5, 0x91, 0x7f, 0xd2, 0xe8, 0xb3, 0x36, 0x99, 0xda, 0xe1,
0x22, 0x20, 0x46, 0xac, 0x77, 0x3c, 0x9d, 0xda, 0x80, 0x05, 0x46, 0xa5, 0xf7, 0x9e, 0xa6, 0xee,
0x21, 0x62, 0x28, 0xd8, 0xce, 0xc4, 0x60, 0xdb, 0xf1, 0xbc, 0xe7, 0x03, 0xb7, 0x2d, 0xb7, 0x16,
0x8c, 0x71, 0x5d, 0x08, 0x7f, 0xea, 0x45, 0x80, 0xf9, 0xab, 0x4a, 0x79, 0x14, 0x4a, 0x79, 0x4c,
0xfc, 0x09, 0x52, 0xf0, 0xeb, 0x70, 0x5d, 0x71, 0xca, 0x8a, 0x7d, 0x02, 0xf3, 0x1e, 0xdc, 0x52,
0xcc, 0x9b, 0x27, 0x2c, 0xad, 0x7c, 0x22, 0x15, 0xfe, 0xaf, 0x76, 0x6e, 0x40, 0x25, 0xb0, 0x93,
0xe7, 0x20, 0x83, 0xae, 0x6e, 0xc0, 0xc8, 0x93, 0x77, 0x86, 0xca, 0x62, 0xcf, 0x8c, 0xe6, 0x52,
0x16, 0xf5, 0x12, 0x64, 0xcf, 0x78, 0x13, 0x96, 0x94, 0x0c, 0x99, 0x1d, 0x44, 0x85, 0x8c, 0x19,
0x64, 0x12, 0x22, 0x1d, 0xc6, 0x96, 0x4e, 0x76, 0xbb, 0xce, 0x19, 0x75, 0x2d, 0x97, 0x99, 0xd1,
0x64, 0x5e, 0x17, 0x37, 0x82, 0x19, 0xa6, 0x83, 0xb6, 0x24, 0x33, 0x01, 0x3a, 0x59, 0x1e, 0x04,
0x23, 0x8f, 0x1d, 0xc4, 0x98, 0xe8, 0xef, 0xc3, 0x4a, 0x60, 0x04, 0xf3, 0xdb, 0x13, 0x7a, 0x59,
0x3b, 0x9e, 0xa7, 0x95, 0x9c, 0xa6, 0x8d, 0x3f, 0x80, 0xfc, 0x90, 0x48, 0x4c, 0x29, 0xae, 0xa3,
0x35, 0xd1, 0xd1, 0x5f, 0xd3, 0x16, 0xf3, 0x79, 0xdc, 0x86, 0xdb, 0x4a, 0xba, 0xf0, 0xa8, 0x51,
0x7c, 0xdc, 0x28, 0x55, 0x8e, 0x08, 0xb7, 0x8e, 0x97, 0x23, 0x39, 0x71, 0xf6, 0x41, 0x63, 0xf1,
0x03, 0xe1, 0x48, 0x15, 0x5b, 0xa9, 0xde, 0x15, 0xdb, 0xc2, 0xa7, 0x41, 0x48, 0xa6, 0x12, 0x76,
0x04, 0x8b, 0xd1, 0x48, 0x4e, 0x05, 0x63, 0x34, 0xeb, 0xf5, 0xa9, 0x0b, 0x15, 0x88, 0x89, 0x81,
0x32, 0x38, 0x08, 0xf3, 0x54, 0x06, 0x3b, 0xa1, 0x30, 0x7e, 0x25, 0xd3, 0xda, 0xcb, 0x4e, 0x53,
0xe5, 0x33, 0x62, 0x80, 0x77, 0xe1, 0x46, 0x1c, 0x26, 0x52, 0x99, 0x7c, 0x20, 0x2e, 0xb0, 0x09,
0x49, 0x52, 0xc9, 0xfd, 0x28, 0x04, 0x03, 0x0d, 0x50, 0x52, 0x89, 0xb4, 0xc1, 0x32, 0xe1, 0xcb,
0xff, 0xe3, 0xbe, 0x06, 0x70, 0x93, 0x4a, 0x98, 0x17, 0x0a, 0x4b, 0x7f, 0xfc, 0x21, 0x46, 0xe4,
0x26, 0x62, 0x84, 0x0c, 0x92, 0x10, 0xc5, 0xbe, 0x86, 0x4b, 0x27, 0x75, 0x84, 0x00, 0x9a, 0x56,
0x07, 0x7b, 0x87, 0x04, 0x3a, 0xf8, 0x40, 0x5d, 0x6c, 0x1d, 0x76, 0x53, 0x1d, 0xc6, 0xc7, 0x21,
0x76, 0x8e, 0x21, 0x73, 0x2a, 0xc1, 0x9f, 0xc0, 0x6a, 0x32, 0x28, 0xa7, 0x91, 0xfc, 0x1a, 0x86,
0x42, 0x90, 0x50, 0x6a, 0x5f, 0xf0, 0x8a, 0x30, 0xb3, 0xbb, 0xb7, 0xff, 0xa4, 0xb6, 0x49, 0x53,
0xd9, 0xf5, 0xbf, 0xe4, 0x20, 0xbb, 0x7d, 0x80, 0x7e, 0x00, 0x53, 0xe2, 0x53, 0xc3, 0x84, 0x2f,
0x31, 0xd6, 0xa4, 0x8f, 0x16, 0x78, 0xf9, 0xb3, 0x3f, 0xff, 0xfd, 0x8b, 0xec, 0x0d, 0x7c, 0xad,
0x7a, 0xf6, 0xb6, 0xd3, 0x1d, 0x9e, 0x38, 0xd5, 0xd3, 0xb3, 0x2a, 0x7f, 0x27, 0x7c, 0x3b, 0xf3,
0x1a, 0x3a, 0x80, 0x1c, 0xfb, 0x10, 0x91, 0xf8, 0x99, 0xc6, 0x4a, 0xfe, 0x98, 0x81, 0x2d, 0x2e,
0x79, 0x11, 0x5f, 0xd5, 0x25, 0x0f, 0x47, 0x3e, 0x93, 0xdb, 0x84, 0xa2, 0xf6, 0x3d, 0x02, 0x5d,
0xf8, 0x01, 0xc7, 0xba, 0xf8, 0x5b, 0x07, 0xbe, 0xc2, 0xac, 0x6d, 0xbe, 0xe8, 0xc7, 0xad, 0x0d,
0xfb, 0xe7, 0x71, 0x6b, 0xb5, 0x9e, 0xb5, 0xd9, 0x5a, 0xff, 0x45, 0x9f, 0x59, 0x3b, 0x90, 0x5f,
0x48, 0x5a, 0x3e, 0xba, 0x6d, 0x68, 0xb8, 0xeb, 0xad, 0x65, 0x6b, 0x35, 0x99, 0x41, 0x6a, 0xba,
0xc3, 0x35, 0xdd, 0xc4, 0x37, 0x74, 0x4d, 0xad, 0x80, 0x8f, 0x2a, 0x5c, 0x3f, 0x81, 0x29, 0xde,
0x29, 0x43, 0x87, 0xea, 0xc1, 0x32, 0xb4, 0xf2, 0x12, 0xce, 0x37, 0xd2, 0x63, 0xc3, 0x4b, 0x5c,
0xdb, 0x02, 0x2e, 0x07, 0xda, 0x78, 0xb3, 0x8c, 0x6a, 0x79, 0x94, 0xf9, 0x46, 0x66, 0xfd, 0xdf,
0x59, 0x98, 0xe2, 0x2d, 0x15, 0x34, 0x04, 0x08, 0x7b, 0x4f, 0xf1, 0x7d, 0x8e, 0x75, 0xb3, 0xe2,
0xfb, 0x1c, 0x6f, 0x5b, 0xe1, 0xdb, 0x5c, 0xf3, 0x12, 0x5e, 0x0c, 0x34, 0xf3, 0x4f, 0xa9, 0xd5,
0x63, 0xc6, 0xc5, 0xdc, 0xfa, 0x1c, 0x8a, 0x5a, 0x0f, 0x09, 0x99, 0x24, 0x46, 0x9a, 0x50, 0xf1,
0x4b, 0x60, 0x68, 0x40, 0xe1, 0xbb, 0x5c, 0xe9, 0x2d, 0x5c, 0xd1, 0x9d, 0x2b, 0xf4, 0xba, 0x9c,
0x93, 0x29, 0xfe, 0x19, 0x2d, 0x89, 0xa2, 0x7d, 0x24, 0x74, 0xd7, 0x20, 0x3a, 0xde, 0x8e, 0xb2,
0xee, 0x4d, 0x66, 0x4a, 0x34, 0x41, 0xe8, 0x3f, 0xa5, 0x9c, 0x0e, 0xe3, 0x54, 0xbe, 0xff, 0x0f,
0xfb, 0xf2, 0x26, 0x7e, 0x6c, 0x81, 0x7c, 0x28, 0x04, 0xdd, 0x1c, 0xb4, 0x62, 0xaa, 0xf4, 0xc3,
0x34, 0xd8, 0xba, 0x9d, 0x38, 0x2f, 0x4d, 0x78, 0xc0, 0x4d, 0x58, 0xc5, 0x37, 0x03, 0x13, 0xe4,
0x8f, 0x3a, 0xaa, 0xa2, 0xa0, 0xad, 0x3a, 0xed, 0x36, 0x73, 0xc4, 0x4f, 0x68, 0x49, 0xaf, 0x37,
0x69, 0xd0, 0x1d, 0x63, 0x8f, 0x41, 0xef, 0xf3, 0x58, 0x78, 0x12, 0x8b, 0xd4, 0xff, 0x2a, 0xd7,
0x7f, 0x17, 0xaf, 0x24, 0xe9, 0x77, 0x39, 0x7f, 0xd4, 0x04, 0xd1, 0x96, 0x31, 0x9b, 0x10, 0xe9,
0xfa, 0x98, 0x4d, 0x88, 0x76, 0x75, 0x2e, 0x36, 0x61, 0xc4, 0xf9, 0x99, 0x09, 0x2f, 0x00, 0xc2,
0xae, 0x0d, 0x32, 0x3a, 0x57, 0x2b, 0x0c, 0xe2, 0x37, 0x7f, 0xbc, 0xe1, 0x83, 0x1f, 0x72, 0xdd,
0x77, 0xf0, 0x72, 0x92, 0xee, 0x2e, 0xe5, 0x66, 0x71, 0xfe, 0xfb, 0x3c, 0x14, 0x3f, 0x74, 0x3a,
0x7d, 0x9f, 0xf4, 0x59, 0x33, 0x1a, 0x1d, 0xc3, 0x14, 0x47, 0xfe, 0x78, 0xb8, 0xeb, 0xad, 0x94,
0x78, 0xb8, 0x47, 0xfa, 0x0c, 0xf8, 0x3e, 0x57, 0x7d, 0x1b, 0x5b, 0x81, 0xea, 0x5e, 0x28, 0xbf,
0xca, 0x7b, 0x04, 0x6c, 0xcb, 0xa7, 0x30, 0x2d, 0x7a, 0x02, 0x28, 0x26, 0x2d, 0xd2, 0x3b, 0xb0,
0x96, 0xcd, 0x93, 0x89, 0xb7, 0x4c, 0xd7, 0xe5, 0x71, 0x66, 0xa6, 0xec, 0x87, 0x00, 0x61, 0x13,
0x2a, 0xee, 0xdf, 0xb1, 0x9e, 0x95, 0xb5, 0x9a, 0xcc, 0x20, 0x15, 0xbf, 0xc6, 0x15, 0xdf, 0xc3,
0xb7, 0x8d, 0x8a, 0xdb, 0xc1, 0x02, 0xa6, 0xbc, 0x05, 0x79, 0xf6, 0x5d, 0x0d, 0xc5, 0xa0, 0x5f,
0xfb, 0xf4, 0x66, 0x59, 0xa6, 0x29, 0xa9, 0xea, 0x1e, 0x57, 0xb5, 0x82, 0x97, 0x8c, 0xaa, 0xd8,
0xf7, 0x35, 0xa6, 0x64, 0x04, 0xb3, 0xea, 0x73, 0x1a, 0xba, 0x15, 0xf3, 0x59, 0xf4, 0xd3, 0x9b,
0xb5, 0x92, 0x34, 0x2d, 0x15, 0x3e, 0xe2, 0x0a, 0x31, 0xbe, 0x65, 0x76, 0xaa, 0x64, 0xa7, 0x4a,
0x29, 0x80, 0xfc, 0x62, 0x1e, 0xf2, 0x2c, 0x07, 0x61, 0xd8, 0x1d, 0x96, 0x6e, 0x71, 0x0f, 0x8f,
0x35, 0x4c, 0xe2, 0x1e, 0x1e, 0xaf, 0xfa, 0x0c, 0xd8, 0xcd, 0x7f, 0x72, 0x46, 0x38, 0x17, 0xdb,
0xb1, 0x0f, 0x45, 0xad, 0xc0, 0x43, 0x06, 0x89, 0xd1, 0x76, 0x4c, 0x1c, 0xbb, 0x0d, 0xd5, 0x21,
0x5e, 0xe5, 0x4a, 0x2d, 0x7c, 0x3d, 0xaa, 0xb4, 0x2d, 0xd8, 0x98, 0xd6, 0x1f, 0x41, 0x49, 0xaf,
0x04, 0x91, 0x41, 0x68, 0xac, 0xdf, 0x13, 0xc7, 0x0a, 0x53, 0x21, 0x69, 0x08, 0x9a, 0xe0, 0x07,
0x76, 0x8a, 0x97, 0x69, 0xff, 0x14, 0x66, 0x64, 0x7d, 0x68, 0xda, 0x6f, 0xb4, 0x43, 0x64, 0xda,
0x6f, 0xac, 0xb8, 0x34, 0x24, 0x02, 0x5c, 0x2d, 0xcb, 0x83, 0x15, 0x40, 0x4b, 0x95, 0xb4, 0x8c,
0x48, 0x52, 0x19, 0xf6, 0x3c, 0x92, 0x54, 0x6a, 0x35, 0xc8, 0x44, 0x95, 0xc7, 0xc4, 0x97, 0x77,
0x59, 0x25, 0xf8, 0x28, 0x41, 0xa2, 0x8e, 0x86, 0x78, 0x12, 0x8b, 0xd4, 0x8a, 0xb9, 0xd6, 0x65,
0xfc, 0x8a, 0x41, 0xab, 0x84, 0x42, 0xf4, 0x63, 0x80, 0xb0, 0x98, 0x8d, 0xbf, 0x8e, 0x8d, 0x1d,
0xb1, 0xf8, 0xeb, 0xd8, 0x5c, 0x0f, 0x1b, 0x22, 0x38, 0x54, 0x2e, 0x7e, 0x54, 0xc3, 0xd4, 0xff,
0x32, 0x03, 0x68, 0xbc, 0xf8, 0x45, 0xaf, 0x9b, 0x55, 0x18, 0x9b, 0x6d, 0xd6, 0x1b, 0x97, 0x63,
0x4e, 0x44, 0xcf, 0xd0, 0xae, 0x16, 0x5f, 0x32, 0x7c, 0xce, 0x2c, 0xfb, 0x3c, 0x03, 0x73, 0x91,
0xf2, 0x19, 0x3d, 0x48, 0x38, 0xe7, 0x58, 0xc3, 0xce, 0x7a, 0x78, 0x21, 0x5f, 0x62, 0xc6, 0xa2,
0xdd, 0x0a, 0x95, 0xad, 0xfd, 0x9c, 0x26, 0x4d, 0xd1, 0x9a, 0x1b, 0x25, 0x28, 0x18, 0xeb, 0xfa,
0x59, 0x8f, 0x2e, 0x66, 0xbc, 0xc4, 0x69, 0x85, 0x09, 0x1c, 0x0d, 0x0b, 0x59, 0xaa, 0x9b, 0xc2,
0x22, 0xda, 0x34, 0x34, 0x85, 0x45, 0xac, 0xce, 0x4f, 0x0a, 0x0b, 0x56, 0xf5, 0x6a, 0x91, 0x28,
0x0b, 0xfa, 0x24, 0x95, 0x93, 0x23, 0x31, 0xd6, 0x0d, 0x98, 0xa8, 0x32, 0x8c, 0x44, 0x55, 0xce,
0xa3, 0x04, 0x89, 0x17, 0x44, 0x62, 0xbc, 0x1b, 0x90, 0x14, 0x89, 0x5c, 0xab, 0x16, 0x89, 0x61,
0xf5, 0x6d, 0x8a, 0xc4, 0xb1, 0x96, 0xa8, 0x29, 0x12, 0xc7, 0x0b, 0xf8, 0xa4, 0xb3, 0xe5, 0xca,
0x23, 0x91, 0xb8, 0x60, 0xa8, 0xd6, 0xd1, 0x1b, 0x09, 0x3e, 0x35, 0xb6, 0x5b, 0xad, 0x37, 0x2f,
0xc9, 0x3d, 0x39, 0x02, 0xc4, 0x69, 0xa8, 0x08, 0xf8, 0x4d, 0x06, 0x16, 0x4d, 0xe5, 0x3e, 0x4a,
0x50, 0x96, 0xd0, 0xab, 0xb5, 0xd6, 0x2e, 0xcb, 0x7e, 0x09, 0xbf, 0x05, 0x31, 0xb1, 0x51, 0xfa,
0xc3, 0xdf, 0x56, 0x32, 0x5f, 0xd2, 0x7f, 0x7f, 0xa5, 0xff, 0x8e, 0xa6, 0xf9, 0x6f, 0xbe, 0xdf,
0xfe, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9d, 0xf9, 0x46, 0x39, 0x7a, 0x2e, 0x00, 0x00,
// 3189 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x5a, 0xcd, 0x73, 0x23, 0x47,
0x15, 0xdf, 0x91, 0xfc, 0xa5, 0x27, 0x59, 0xeb, 0x6d, 0x7b, 0x37, 0xf6, 0xac, 0xd7, 0xeb, 0xed,
0xfd, 0xcc, 0x97, 0x45, 0x9c, 0xc0, 0x01, 0xa8, 0x54, 0xc9, 0x96, 0xb2, 0x31, 0x76, 0xec, 0xcd,
0x58, 0xeb, 0x84, 0x2a, 0x0a, 0xd7, 0x58, 0xea, 0xb5, 0x55, 0xd6, 0x57, 0x66, 0x46, 0xde, 0xf5,
0x02, 0x55, 0x90, 0x22, 0x87, 0x70, 0xcd, 0x81, 0x02, 0x8e, 0xfc, 0x0d, 0xdc, 0xf8, 0x03, 0x28,
0x2e, 0xa4, 0x8a, 0x23, 0x17, 0x8a, 0xe2, 0xc0, 0x81, 0x3b, 0xc5, 0x09, 0xfa, 0x73, 0xa6, 0x67,
0xd4, 0x23, 0x3b, 0x0c, 0x39, 0x24, 0xab, 0x7e, 0xfd, 0xfa, 0xfd, 0x5e, 0xbf, 0xee, 0xf7, 0xfa,
0xbd, 0x37, 0x86, 0x82, 0x37, 0x68, 0xae, 0x0d, 0xbc, 0x7e, 0xd0, 0x47, 0x25, 0x12, 0x34, 0x5b,
0x3e, 0xf1, 0xce, 0x88, 0x37, 0x38, 0xb2, 0x17, 0x8e, 0xfb, 0xc7, 0x7d, 0x3e, 0x51, 0x61, 0xbf,
0x04, 0x8f, 0xbd, 0xc4, 0x78, 0x2a, 0xdd, 0xb3, 0x66, 0x93, 0xff, 0x6f, 0x70, 0x54, 0x39, 0x3d,
0x93, 0x53, 0x37, 0xf9, 0x94, 0x3b, 0x0c, 0x4e, 0xf8, 0xff, 0xe8, 0x14, 0xfb, 0x47, 0x4e, 0x2e,
0x1f, 0xf7, 0xfb, 0xc7, 0x1d, 0x52, 0x71, 0x07, 0xed, 0x8a, 0xdb, 0xeb, 0xf5, 0x03, 0x37, 0x68,
0xf7, 0x7b, 0xbe, 0x98, 0xc5, 0x9f, 0x59, 0x50, 0x76, 0x88, 0x3f, 0xa0, 0x14, 0xf2, 0x3e, 0x71,
0x5b, 0xc4, 0x43, 0xb7, 0x00, 0x9a, 0x9d, 0xa1, 0x1f, 0x10, 0xef, 0xb0, 0xdd, 0x5a, 0xb4, 0x56,
0xad, 0x47, 0x13, 0x4e, 0x41, 0x52, 0xb6, 0x5a, 0xe8, 0x26, 0x14, 0xba, 0xa4, 0x7b, 0x24, 0x66,
0x73, 0x7c, 0x76, 0x46, 0x10, 0xe8, 0xa4, 0x0d, 0x33, 0x1e, 0x39, 0x6b, 0xfb, 0x14, 0x61, 0x31,
0x4f, 0xe7, 0xf2, 0x4e, 0x38, 0x66, 0x0b, 0x3d, 0xf7, 0x59, 0x70, 0x48, 0xc5, 0x74, 0x17, 0x27,
0xc4, 0x42, 0x46, 0x68, 0xd0, 0x31, 0xfe, 0x32, 0x0f, 0x25, 0xc7, 0xed, 0x1d, 0x13, 0x87, 0x7c,
0x32, 0x24, 0x7e, 0x80, 0xe6, 0x20, 0x7f, 0x4a, 0xce, 0x39, 0x7c, 0xc9, 0x61, 0x3f, 0xc5, 0x7a,
0xca, 0x71, 0x48, 0x7a, 0x02, 0xb8, 0xc4, 0xd6, 0x53, 0x42, 0xbd, 0xd7, 0x42, 0x0b, 0x30, 0xd9,
0x69, 0x77, 0xdb, 0x81, 0x44, 0x15, 0x83, 0x98, 0x3a, 0x13, 0x09, 0x75, 0x36, 0x01, 0xfc, 0xbe,
0x17, 0x1c, 0xf6, 0x3d, 0xba, 0xe9, 0xc5, 0x49, 0x3a, 0x5b, 0x5e, 0xbf, 0xb7, 0xa6, 0x1f, 0xc4,
0x9a, 0xae, 0xd0, 0xda, 0x3e, 0x65, 0xde, 0x63, 0xbc, 0x4e, 0xc1, 0x57, 0x3f, 0xd1, 0x7b, 0x50,
0xe4, 0x42, 0x02, 0xd7, 0x3b, 0x26, 0xc1, 0xe2, 0x14, 0x97, 0x72, 0xff, 0x02, 0x29, 0x0d, 0xce,
0xec, 0x70, 0x78, 0xf1, 0x1b, 0x61, 0x28, 0x51, 0xfe, 0xb6, 0xdb, 0x69, 0xbf, 0x74, 0x8f, 0x3a,
0x64, 0x71, 0x9a, 0x0a, 0x9a, 0x71, 0x62, 0x34, 0xb6, 0x7f, 0x6a, 0x06, 0xff, 0xb0, 0xdf, 0xeb,
0x9c, 0x2f, 0xce, 0x70, 0x86, 0x19, 0x46, 0xd8, 0xa3, 0x63, 0x7e, 0x68, 0xfd, 0x61, 0x2f, 0x10,
0xb3, 0x05, 0x3e, 0x5b, 0xe0, 0x14, 0x36, 0x8d, 0xd7, 0xa0, 0x10, 0xea, 0x8f, 0x66, 0x60, 0x62,
0x77, 0x6f, 0xb7, 0x3e, 0x77, 0x05, 0x01, 0x4c, 0x55, 0xf7, 0x37, 0xeb, 0xbb, 0xb5, 0x39, 0x0b,
0x15, 0x61, 0xba, 0x56, 0x17, 0x83, 0x1c, 0xde, 0x00, 0x88, 0x34, 0x45, 0xd3, 0x90, 0xdf, 0xae,
0x7f, 0x9f, 0xf2, 0x53, 0x9e, 0x83, 0xba, 0xb3, 0xbf, 0xb5, 0xb7, 0x4b, 0x17, 0xd0, 0xc5, 0x9b,
0x4e, 0xbd, 0xda, 0xa8, 0xcf, 0xe5, 0x18, 0xc7, 0x07, 0x7b, 0xb5, 0xb9, 0x3c, 0x2a, 0xc0, 0xe4,
0x41, 0x75, 0xe7, 0x69, 0x7d, 0x6e, 0x02, 0x7f, 0x61, 0xc1, 0xac, 0xdc, 0xbb, 0xb8, 0x5f, 0xe8,
0x1d, 0x98, 0x3a, 0xe1, 0x77, 0x8c, 0x1f, 0x6b, 0x71, 0x7d, 0x39, 0x61, 0xa8, 0xd8, 0x3d, 0x74,
0x24, 0x2f, 0xb5, 0x4d, 0xfe, 0xf4, 0xcc, 0xa7, 0x27, 0x9e, 0xa7, 0x4b, 0xe6, 0xd6, 0xc4, 0xe5,
0x5f, 0xdb, 0x26, 0xe7, 0x07, 0x6e, 0x67, 0x48, 0x1c, 0x36, 0x89, 0x10, 0x4c, 0x74, 0xfb, 0x1e,
0xe1, 0xa7, 0x3f, 0xe3, 0xf0, 0xdf, 0xec, 0x4a, 0x70, 0x03, 0xc8, 0x93, 0x17, 0x03, 0xfc, 0x3d,
0x80, 0x27, 0xc3, 0x20, 0xfd, 0x96, 0xd1, 0x55, 0x67, 0x4c, 0xae, 0xbc, 0x61, 0x62, 0xc0, 0xaf,
0x17, 0x71, 0x7d, 0x12, 0x5e, 0x2f, 0x36, 0xc0, 0x9b, 0x50, 0xe4, 0xb2, 0xb2, 0x6c, 0x0f, 0x13,
0x40, 0x35, 0xd2, 0x21, 0x01, 0xc9, 0x72, 0xfd, 0x57, 0xa1, 0x38, 0xf0, 0x08, 0x87, 0xda, 0x3e,
0xf0, 0xa5, 0x19, 0x74, 0x12, 0xfe, 0xdc, 0x82, 0xf9, 0x18, 0x4e, 0xa6, 0x33, 0x59, 0x84, 0xe9,
0x16, 0x17, 0x26, 0x54, 0xc9, 0x3b, 0x6a, 0xc8, 0x4e, 0x4b, 0x68, 0x90, 0x76, 0x5a, 0x54, 0x97,
0x7f, 0x5a, 0x50, 0x90, 0x1b, 0xdd, 0x1b, 0xa0, 0x2a, 0xcc, 0x7a, 0x62, 0x70, 0xc8, 0xf7, 0x23,
0x15, 0xb1, 0xd3, 0xbd, 0xe8, 0xfd, 0x2b, 0x4e, 0x49, 0x2e, 0xe1, 0x64, 0xf4, 0x1d, 0x28, 0x2a,
0x11, 0x83, 0x61, 0xc0, 0x55, 0x2a, 0xae, 0x2f, 0xc6, 0x05, 0x44, 0xa7, 0x4e, 0x97, 0x83, 0x64,
0xa7, 0x44, 0xd4, 0x80, 0x05, 0xb5, 0x58, 0x6c, 0x42, 0xaa, 0x91, 0xe7, 0x52, 0x56, 0xe3, 0x52,
0x46, 0x8f, 0x8a, 0x4a, 0x43, 0x72, 0xbd, 0x36, 0xb9, 0x51, 0x80, 0x69, 0x49, 0xc5, 0xff, 0xb2,
0x00, 0x94, 0x1d, 0xe9, 0x7e, 0x6b, 0x50, 0xf6, 0xe4, 0x28, 0xb6, 0xe1, 0x9b, 0xc6, 0x0d, 0x4b,
0xf3, 0x5f, 0x71, 0x66, 0xd5, 0x22, 0xb1, 0xe5, 0x77, 0xa1, 0x14, 0x4a, 0x89, 0xf6, 0xbc, 0x64,
0xd8, 0x73, 0x28, 0xa1, 0xa8, 0x16, 0xb0, 0x5d, 0x7f, 0x04, 0xd7, 0xc3, 0xf5, 0x86, 0x6d, 0xdf,
0x19, 0xb3, 0xed, 0x50, 0xe0, 0xbc, 0x92, 0xa0, 0x6f, 0x1c, 0x58, 0xcc, 0x15, 0x64, 0xfc, 0xeb,
0x3c, 0x4c, 0x6f, 0xf6, 0xbb, 0x03, 0xd7, 0x63, 0x67, 0x34, 0x45, 0xe9, 0xc3, 0x4e, 0xc0, 0xb7,
0x5b, 0x5e, 0xbf, 0x1b, 0x47, 0x90, 0x6c, 0xea, 0x5f, 0x87, 0xb3, 0x3a, 0x72, 0x09, 0x5b, 0x2c,
0x43, 0x6c, 0xee, 0x12, 0x8b, 0x65, 0x80, 0x95, 0x4b, 0x94, 0x2f, 0xe5, 0x23, 0x5f, 0xb2, 0x61,
0x9a, 0x2e, 0x8c, 0x9e, 0x05, 0xba, 0x17, 0x45, 0x40, 0xaf, 0xc2, 0xd5, 0xa6, 0x47, 0x5c, 0x66,
0x0f, 0xf5, 0x74, 0x4c, 0x4a, 0x9e, 0xb2, 0x98, 0x70, 0xd4, 0x13, 0x72, 0x17, 0x4a, 0xdd, 0x7e,
0x2b, 0xe2, 0x9b, 0x92, 0x7c, 0x45, 0x4a, 0x0d, 0x99, 0x6e, 0xa8, 0x80, 0xc2, 0x62, 0x7a, 0x89,
0xce, 0x8a, 0x21, 0x7e, 0x0b, 0x66, 0x63, 0x7b, 0x65, 0xa1, 0xb3, 0xfe, 0xe1, 0xd3, 0xea, 0x8e,
0x88, 0xb3, 0x8f, 0x79, 0x68, 0x75, 0x68, 0x9c, 0xa5, 0xe1, 0x7a, 0xa7, 0xbe, 0xbf, 0x4f, 0xa3,
0xf2, 0x77, 0xc3, 0x25, 0x32, 0x30, 0x6b, 0xf1, 0xf8, 0x8a, 0x16, 0x8f, 0x2d, 0x15, 0x8f, 0x73,
0x51, 0x3c, 0xce, 0x6f, 0x94, 0xa1, 0x24, 0x0c, 0x72, 0x38, 0xec, 0x51, 0xc5, 0xf0, 0x6f, 0xe9,
0xb5, 0x6c, 0xbc, 0xe8, 0xa9, 0x88, 0x53, 0x81, 0xe9, 0xa6, 0x10, 0x4e, 0x0f, 0x88, 0x39, 0xef,
0x75, 0xa3, 0x8d, 0x1d, 0xc5, 0x85, 0xde, 0x82, 0x69, 0x7f, 0xd8, 0x6c, 0x12, 0x5f, 0xc5, 0xe6,
0x57, 0x92, 0xa1, 0x43, 0x7a, 0xb8, 0xa3, 0xf8, 0xd8, 0x92, 0x67, 0x6e, 0xbb, 0x33, 0xe4, 0x91,
0x7a, 0xfc, 0x12, 0xc9, 0x87, 0x7f, 0x65, 0x41, 0x91, 0x6b, 0x99, 0x29, 0x5e, 0x2d, 0x43, 0x81,
0xeb, 0x40, 0x5a, 0x32, 0x62, 0xd1, 0xd7, 0x31, 0x24, 0xa0, 0x6f, 0xd1, 0xd0, 0x2a, 0xd7, 0xa9,
0xc8, 0xb5, 0x68, 0x16, 0x4b, 0x35, 0x8b, 0x58, 0xf1, 0x36, 0x5c, 0xe3, 0x56, 0x69, 0xb2, 0x8c,
0x4a, 0xd9, 0x51, 0xcf, 0x39, 0xac, 0x44, 0xce, 0x41, 0xe7, 0x06, 0x27, 0xe7, 0x7e, 0xbb, 0xe9,
0x76, 0xa4, 0x16, 0xe1, 0x98, 0x3e, 0x4c, 0x48, 0x17, 0x96, 0xe9, 0x4d, 0x99, 0x85, 0xe2, 0xfb,
0xae, 0x7f, 0x22, 0x55, 0xc2, 0x1f, 0x43, 0x49, 0x0c, 0x33, 0xd9, 0x90, 0xbe, 0xb1, 0x27, 0x54,
0x0a, 0x57, 0x7c, 0xd6, 0xe1, 0xbf, 0xf1, 0x35, 0xb8, 0xba, 0xdf, 0x73, 0x07, 0xfe, 0x49, 0x5f,
0x05, 0x57, 0x96, 0x51, 0xce, 0x45, 0xb4, 0x4c, 0x88, 0x0f, 0xe1, 0xaa, 0x47, 0xba, 0x6e, 0xbb,
0xd7, 0xee, 0x1d, 0x1f, 0x1e, 0x9d, 0x07, 0xc4, 0x97, 0x09, 0x67, 0x39, 0x24, 0x6f, 0x30, 0x2a,
0x53, 0xed, 0xa8, 0xd3, 0x3f, 0x92, 0x2e, 0xce, 0x7f, 0xe3, 0xdf, 0x59, 0x50, 0xfa, 0xc8, 0x0d,
0x9a, 0xca, 0x0a, 0x68, 0x0b, 0xca, 0xa1, 0x63, 0x73, 0x8a, 0xd4, 0x25, 0x11, 0xe1, 0xf9, 0x9a,
0x4d, 0xe9, 0xe8, 0x2a, 0xc2, 0xcf, 0x36, 0x75, 0x02, 0x17, 0xe5, 0xf6, 0x9a, 0xa4, 0x13, 0x8a,
0xca, 0xa5, 0x8b, 0xe2, 0x8c, 0xba, 0x28, 0x9d, 0xb0, 0x71, 0x35, 0x7a, 0xfd, 0x84, 0x5b, 0xfe,
0x2c, 0x07, 0x68, 0x54, 0x87, 0xaf, 0x9a, 0x10, 0xdc, 0x87, 0xb2, 0x4f, 0xbd, 0x3d, 0x38, 0x4c,
0xa4, 0xe3, 0xb3, 0x9c, 0x1a, 0x06, 0x27, 0x6a, 0x61, 0x5a, 0x07, 0x1c, 0xd3, 0x2b, 0xed, 0x1f,
0xd2, 0xd2, 0xa0, 0xfd, 0xec, 0x9c, 0x07, 0xc4, 0x19, 0xa7, 0xac, 0xc8, 0xbb, 0x9c, 0x8a, 0xea,
0xd4, 0x73, 0xdb, 0x1d, 0x9a, 0xba, 0xfb, 0x34, 0x1a, 0xe6, 0x69, 0x04, 0x7e, 0xfd, 0x22, 0xab,
0xad, 0xbd, 0xc7, 0xf9, 0x1b, 0xe7, 0x03, 0x1a, 0x33, 0xe4, 0x5a, 0x7c, 0x1f, 0x20, 0x22, 0xb3,
0xe0, 0xb4, 0xbb, 0xf7, 0xe4, 0x69, 0x83, 0x06, 0xaf, 0x12, 0xcc, 0xec, 0xee, 0xd5, 0xea, 0x3b,
0x75, 0x16, 0xbe, 0x70, 0x45, 0x99, 0x40, 0x37, 0x15, 0x5a, 0x82, 0x99, 0xe7, 0x8c, 0xaa, 0xca,
0x12, 0x9a, 0x75, 0xf0, 0xf1, 0x56, 0x0b, 0xff, 0x83, 0xe6, 0x9a, 0xf2, 0xb0, 0x33, 0xdd, 0x38,
0x1d, 0x22, 0x17, 0x83, 0x60, 0x29, 0x8f, 0xb8, 0x04, 0x2d, 0x99, 0x5e, 0xa9, 0x21, 0xf3, 0x6a,
0x71, 0xa6, 0x74, 0x4a, 0x58, 0x2f, 0x1c, 0xd3, 0xd7, 0x64, 0xae, 0x29, 0xbc, 0x3a, 0xf1, 0x9c,
0x38, 0x57, 0x25, 0x3d, 0x3c, 0x8b, 0xfb, 0x30, 0x45, 0xce, 0x48, 0x2f, 0xf0, 0x17, 0x8b, 0x3c,
0x04, 0xcd, 0xaa, 0xe4, 0xa9, 0xce, 0xa8, 0x8e, 0x9c, 0xc4, 0xdf, 0x84, 0x6b, 0x3b, 0x2c, 0xfb,
0x7c, 0x4c, 0xcf, 0x5a, 0xcf, 0x63, 0x1b, 0x8d, 0x1d, 0x69, 0x95, 0x7c, 0xd0, 0xd8, 0x41, 0x65,
0xc8, 0x6d, 0xd5, 0xe4, 0x1e, 0x72, 0xed, 0x1a, 0xfe, 0xd4, 0x02, 0xa4, 0xaf, 0xcb, 0x64, 0xa6,
0x84, 0x70, 0x05, 0x9f, 0x8f, 0xe0, 0x69, 0xc2, 0x4c, 0x3c, 0xaf, 0xef, 0x71, 0x83, 0x14, 0x1c,
0x31, 0xc0, 0xf7, 0xa4, 0x0e, 0x74, 0xcf, 0xfd, 0xd3, 0xf0, 0x6a, 0x0b, 0x69, 0x56, 0xa8, 0xea,
0x36, 0xcc, 0xc7, 0xb8, 0x32, 0x85, 0xc2, 0x87, 0x70, 0x9d, 0x0b, 0xdb, 0x26, 0x64, 0x50, 0xed,
0xb4, 0xcf, 0x52, 0x51, 0x07, 0x70, 0x23, 0xc9, 0xf8, 0xf5, 0xda, 0x08, 0x9f, 0xc0, 0xd4, 0x07,
0xbc, 0x70, 0xd6, 0x74, 0x99, 0xe0, 0xbc, 0x34, 0x9e, 0xf5, 0xdc, 0xae, 0xa8, 0x41, 0x0a, 0x0e,
0xff, 0xcd, 0xdf, 0x0e, 0x42, 0xbc, 0xa7, 0xce, 0x8e, 0x78, 0xa3, 0x0a, 0x4e, 0x38, 0x46, 0x2b,
0xac, 0x64, 0x6f, 0xd3, 0xeb, 0xc1, 0x67, 0x27, 0xf8, 0xac, 0x46, 0xa1, 0xe5, 0xdf, 0x9c, 0x40,
0xaa, 0xb6, 0x5a, 0xda, 0x3b, 0x15, 0xca, 0xb3, 0xe2, 0xf2, 0xf0, 0x73, 0xb8, 0xa6, 0xf1, 0x67,
0x32, 0xc3, 0x1b, 0x30, 0x25, 0xba, 0x03, 0x32, 0x44, 0x2e, 0xc4, 0x57, 0x09, 0x18, 0x47, 0xf2,
0xd0, 0xf8, 0x30, 0x2f, 0x29, 0xa4, 0xdb, 0x37, 0x9d, 0x15, 0xb7, 0x0f, 0xde, 0x81, 0x85, 0x38,
0x5b, 0xa6, 0x2b, 0x52, 0x55, 0xa0, 0x4f, 0x07, 0x2d, 0x2d, 0xe2, 0x26, 0x0f, 0x45, 0x37, 0x58,
0x2e, 0x61, 0xb0, 0x50, 0x21, 0x25, 0x22, 0x93, 0x42, 0xf3, 0xca, 0xfc, 0x3b, 0x6d, 0x3f, 0x7c,
0x57, 0x5f, 0x02, 0xd2, 0x89, 0x99, 0x0e, 0x65, 0x0d, 0xa6, 0x85, 0xc1, 0x55, 0xea, 0x66, 0x3e,
0x15, 0xc5, 0xc4, 0x14, 0xaa, 0x91, 0x67, 0x9e, 0x7b, 0xdc, 0x25, 0x61, 0xcc, 0x61, 0x09, 0x8b,
0x4e, 0xcc, 0xb4, 0xe3, 0x3f, 0xd1, 0xc7, 0xba, 0xda, 0x71, 0xbd, 0xae, 0x32, 0xfe, 0xbb, 0x30,
0x25, 0x32, 0x21, 0x59, 0x2d, 0x3c, 0x88, 0x8b, 0xd1, 0x79, 0xc5, 0xa0, 0x2a, 0xf2, 0x26, 0xb9,
0x8a, 0x1d, 0x96, 0x6c, 0x4a, 0xd5, 0x12, 0x4d, 0xaa, 0x1a, 0x7a, 0x13, 0x26, 0x5d, 0xb6, 0x84,
0xfb, 0x62, 0x39, 0x99, 0x83, 0x72, 0x69, 0xfc, 0xd5, 0x12, 0x5c, 0xf8, 0x1d, 0x28, 0x6a, 0x08,
0x2c, 0xb5, 0x7e, 0x5c, 0x97, 0x4f, 0x56, 0x75, 0xb3, 0xb1, 0x75, 0x20, 0x32, 0xee, 0x32, 0x40,
0xad, 0x1e, 0x8e, 0x73, 0x34, 0xe7, 0x12, 0xab, 0xa4, 0x87, 0xeb, 0xfa, 0x58, 0x69, 0xfa, 0xe4,
0x2e, 0xa5, 0xcf, 0x0b, 0x98, 0x95, 0xdb, 0xcf, 0x74, 0x07, 0xde, 0xa2, 0x16, 0x66, 0x62, 0xd4,
0x15, 0x58, 0x32, 0xc0, 0x2a, 0xef, 0x14, 0x8c, 0x98, 0xe6, 0x2a, 0xfb, 0x81, 0x1b, 0x0c, 0x7d,
0x75, 0x05, 0xfe, 0x68, 0x41, 0x59, 0x51, 0xb2, 0xf6, 0x13, 0x54, 0x41, 0x26, 0x62, 0x5e, 0x58,
0x8e, 0xdd, 0x80, 0xa9, 0xd6, 0xd1, 0x7e, 0xfb, 0xa5, 0x6a, 0xbd, 0xc8, 0x11, 0xa3, 0x77, 0x04,
0x8e, 0x68, 0x25, 0xca, 0x11, 0xcb, 0xf4, 0x59, 0x53, 0x71, 0xab, 0xd7, 0x22, 0x2f, 0xf8, 0x4b,
0x3b, 0xe1, 0x44, 0x04, 0x9e, 0x9c, 0xcb, 0x96, 0x23, 0xaf, 0xd6, 0xf4, 0x16, 0x24, 0xbd, 0xe4,
0xd5, 0x61, 0x70, 0x52, 0xef, 0xb1, 0x6e, 0x9b, 0xda, 0xe1, 0x02, 0x20, 0x46, 0xac, 0xb5, 0x7d,
0x9d, 0x5a, 0x87, 0x79, 0x46, 0xa5, 0xf7, 0x9e, 0xa6, 0xee, 0x51, 0xc4, 0x50, 0x61, 0xdb, 0x4a,
0x84, 0x6d, 0xd7, 0xf7, 0x9f, 0xf7, 0xbd, 0x96, 0xdc, 0x5a, 0x38, 0xc6, 0x35, 0x21, 0xfc, 0xa9,
0x1f, 0x0b, 0xcc, 0x5f, 0x55, 0xca, 0xa3, 0x48, 0xca, 0x63, 0x12, 0x8c, 0x91, 0x82, 0x5f, 0x87,
0xeb, 0x8a, 0x53, 0x56, 0xec, 0x63, 0x98, 0xf7, 0xe0, 0x96, 0x62, 0xde, 0x3c, 0x61, 0x69, 0xe5,
0x13, 0x09, 0xf8, 0xbf, 0xea, 0xb9, 0x01, 0x8b, 0xa1, 0x9e, 0x3c, 0x07, 0xe9, 0x77, 0x74, 0x05,
0x86, 0xbe, 0xbc, 0x33, 0x54, 0x16, 0xfb, 0xcd, 0x68, 0x1e, 0x65, 0x51, 0x8f, 0x20, 0xfb, 0x8d,
0x37, 0x61, 0x49, 0xc9, 0x90, 0xd9, 0x41, 0x5c, 0xc8, 0x88, 0x42, 0x26, 0x21, 0xd2, 0x60, 0x6c,
0xe9, 0x78, 0xb3, 0xeb, 0x9c, 0x71, 0xd3, 0x72, 0x99, 0x96, 0x26, 0xf3, 0xba, 0xb8, 0x11, 0x4c,
0x31, 0x3d, 0x68, 0x4b, 0x32, 0x13, 0xa0, 0x93, 0xe5, 0x41, 0x30, 0xf2, 0xc8, 0x41, 0x8c, 0x88,
0xfe, 0x01, 0xac, 0x84, 0x4a, 0x30, 0xbb, 0x3d, 0xa1, 0x97, 0xb5, 0xed, 0xfb, 0x5a, 0xc9, 0x69,
0xda, 0xf8, 0x03, 0x98, 0x18, 0x10, 0x19, 0x53, 0x8a, 0xeb, 0x68, 0x4d, 0x7c, 0x18, 0x58, 0xd3,
0x16, 0xf3, 0x79, 0xdc, 0x82, 0xdb, 0x4a, 0xba, 0xb0, 0xa8, 0x51, 0x7c, 0x52, 0x29, 0x55, 0x8e,
0x08, 0xb3, 0x8e, 0x96, 0x23, 0x79, 0x71, 0xf6, 0xaa, 0x1c, 0x61, 0x6f, 0x85, 0xee, 0x5b, 0x99,
0xde, 0x8a, 0x6d, 0x61, 0xd3, 0xd0, 0x25, 0x33, 0x09, 0x3b, 0x82, 0x85, 0xb8, 0x27, 0x67, 0x0a,
0x63, 0x34, 0xeb, 0x0d, 0xa8, 0x09, 0x55, 0x10, 0x13, 0x03, 0xa5, 0x70, 0xe8, 0xe6, 0x99, 0x14,
0x76, 0x23, 0x61, 0xfc, 0x4a, 0x66, 0xd5, 0x97, 0x9d, 0xa6, 0xca, 0x67, 0xc4, 0x00, 0xef, 0xc2,
0x8d, 0x64, 0x98, 0xc8, 0xa4, 0xf2, 0x81, 0xb8, 0xc0, 0xa6, 0x48, 0x92, 0x49, 0xee, 0x87, 0x51,
0x30, 0xd0, 0x02, 0x4a, 0x26, 0x91, 0x0e, 0xd8, 0xa6, 0xf8, 0xf2, 0xff, 0xb8, 0xaf, 0x61, 0xb8,
0xc9, 0x24, 0xcc, 0x8f, 0x84, 0x65, 0x3f, 0xfe, 0x28, 0x46, 0xe4, 0xc7, 0xc6, 0x08, 0xe9, 0x24,
0x51, 0x14, 0xfb, 0x1a, 0x2e, 0x9d, 0xc4, 0x88, 0x02, 0x68, 0x56, 0x0c, 0xf6, 0x86, 0x84, 0x18,
0x7c, 0xa0, 0x2e, 0xb6, 0x1e, 0x76, 0x33, 0x1d, 0xc6, 0x47, 0x51, 0xec, 0x1c, 0x89, 0xcc, 0x99,
0x04, 0x7f, 0x0c, 0xab, 0xe9, 0x41, 0x39, 0x8b, 0xe4, 0xd7, 0x30, 0x14, 0xc2, 0x84, 0x52, 0xfb,
0x10, 0x58, 0x84, 0xe9, 0xdd, 0xbd, 0xfd, 0x27, 0xd5, 0x4d, 0x9a, 0xca, 0xae, 0xff, 0x25, 0x0f,
0xb9, 0xed, 0x03, 0xf4, 0x43, 0x98, 0x14, 0x9f, 0x1a, 0xc6, 0x7c, 0x89, 0xb1, 0xc7, 0x7d, 0xb4,
0xc0, 0xcb, 0x9f, 0xfe, 0xf9, 0xef, 0x5f, 0xe4, 0x6e, 0xe0, 0x6b, 0x95, 0xb3, 0xb7, 0xdd, 0xce,
0xe0, 0xc4, 0xad, 0x9c, 0x9e, 0x55, 0xf8, 0x9b, 0xf0, 0x6d, 0xeb, 0x35, 0x74, 0x00, 0x79, 0xf6,
0x21, 0x22, 0xf5, 0x33, 0x8d, 0x9d, 0xfe, 0x31, 0x03, 0xdb, 0x5c, 0xf2, 0x02, 0xbe, 0xaa, 0x4b,
0x1e, 0x0c, 0x03, 0x26, 0xb7, 0x01, 0x45, 0xed, 0x7b, 0x04, 0xba, 0xf0, 0x03, 0x8e, 0x7d, 0xf1,
0xb7, 0x0e, 0x7c, 0x85, 0x69, 0xdb, 0x78, 0xd1, 0x4b, 0x6a, 0x1b, 0xf5, 0xcf, 0x93, 0xda, 0x6a,
0x3d, 0x6b, 0xb3, 0xb6, 0xc1, 0x8b, 0x1e, 0xd3, 0xb6, 0x2f, 0xbf, 0x90, 0x34, 0x03, 0x74, 0xdb,
0xd0, 0x70, 0xd7, 0x5b, 0xcb, 0xf6, 0x6a, 0x3a, 0x83, 0x44, 0xba, 0xc3, 0x91, 0x6e, 0xe2, 0x1b,
0x3a, 0x52, 0x33, 0xe4, 0xa3, 0x80, 0xeb, 0x27, 0x30, 0xc9, 0x3b, 0x65, 0xe8, 0x50, 0xfd, 0xb0,
0x0d, 0xad, 0xbc, 0x94, 0xf3, 0x8d, 0xf5, 0xd8, 0xf0, 0x12, 0x47, 0x9b, 0xc7, 0xe5, 0x10, 0x8d,
0x37, 0xcb, 0x28, 0xca, 0x23, 0xeb, 0x1b, 0xd6, 0xfa, 0xbf, 0x73, 0x30, 0xc9, 0x5b, 0x2a, 0x68,
0x00, 0x10, 0xf5, 0x9e, 0x92, 0xfb, 0x1c, 0xe9, 0x66, 0x25, 0xf7, 0x39, 0xda, 0xb6, 0xc2, 0xb7,
0x39, 0xf2, 0x12, 0x5e, 0x08, 0x91, 0xf9, 0x17, 0xd9, 0xca, 0x31, 0xe3, 0x62, 0x66, 0x7d, 0x0e,
0x45, 0xad, 0x87, 0x84, 0x4c, 0x12, 0x63, 0x4d, 0xa8, 0xe4, 0x25, 0x30, 0x34, 0xa0, 0xf0, 0x5d,
0x0e, 0x7a, 0x0b, 0x2f, 0xea, 0xc6, 0x15, 0xb8, 0x1e, 0xe7, 0x64, 0xc0, 0x3f, 0xa7, 0x25, 0x51,
0xbc, 0x8f, 0x84, 0xee, 0x1a, 0x44, 0x27, 0xdb, 0x51, 0xf6, 0xbd, 0xf1, 0x4c, 0xa9, 0x2a, 0x08,
0xfc, 0x53, 0xca, 0xe9, 0x32, 0x4e, 0x65, 0xfb, 0xff, 0xb0, 0x2f, 0x6f, 0xe2, 0x6f, 0x36, 0x50,
0x00, 0x85, 0xb0, 0x9b, 0x83, 0x56, 0x4c, 0x95, 0x7e, 0x94, 0x06, 0xdb, 0xb7, 0x53, 0xe7, 0xa5,
0x0a, 0x0f, 0xb8, 0x0a, 0xab, 0xf8, 0x66, 0xa8, 0x82, 0xfc, 0xdb, 0x90, 0x8a, 0x28, 0x68, 0x2b,
0x6e, 0xab, 0xc5, 0x0c, 0xf1, 0x53, 0x5a, 0xd2, 0xeb, 0x4d, 0x1a, 0x74, 0xc7, 0xd8, 0x63, 0xd0,
0xfb, 0x3c, 0x36, 0x1e, 0xc7, 0x22, 0xf1, 0x5f, 0xe5, 0xf8, 0x77, 0xf1, 0x4a, 0x1a, 0xbe, 0xc7,
0xf9, 0xe3, 0x2a, 0x88, 0xb6, 0x8c, 0x59, 0x85, 0x58, 0xd7, 0xc7, 0xac, 0x42, 0xbc, 0xab, 0x73,
0xb1, 0x0a, 0x43, 0xce, 0xcf, 0x54, 0x78, 0x01, 0x10, 0x75, 0x6d, 0x90, 0xd1, 0xb8, 0x5a, 0x61,
0x90, 0xbc, 0xf9, 0xa3, 0x0d, 0x1f, 0xfc, 0x90, 0x63, 0xdf, 0xc1, 0xcb, 0x69, 0xd8, 0x1d, 0xca,
0xcd, 0xfc, 0xfc, 0xf7, 0x13, 0x50, 0xfc, 0xc0, 0x6d, 0xf7, 0x02, 0xd2, 0x63, 0xcd, 0x68, 0x74,
0x0c, 0x93, 0x3c, 0xf2, 0x27, 0xdd, 0x5d, 0x6f, 0xa5, 0x24, 0xdd, 0x3d, 0xd6, 0x67, 0xc0, 0xf7,
0x39, 0xf4, 0x6d, 0x6c, 0x87, 0xd0, 0xdd, 0x48, 0x7e, 0x85, 0xf7, 0x08, 0xd8, 0x96, 0x4f, 0x61,
0x4a, 0xf4, 0x04, 0x50, 0x42, 0x5a, 0xac, 0x77, 0x60, 0x2f, 0x9b, 0x27, 0x53, 0x6f, 0x99, 0x8e,
0xe5, 0x73, 0x66, 0x06, 0xf6, 0x23, 0x80, 0xa8, 0x09, 0x95, 0xb4, 0xef, 0x48, 0xcf, 0xca, 0x5e,
0x4d, 0x67, 0x90, 0xc0, 0xaf, 0x71, 0xe0, 0x7b, 0xf8, 0xb6, 0x11, 0xb8, 0x15, 0x2e, 0x60, 0xe0,
0x4d, 0x98, 0x60, 0xdf, 0xd5, 0x50, 0x22, 0xf4, 0x6b, 0x9f, 0xde, 0x6c, 0xdb, 0x34, 0x25, 0xa1,
0xee, 0x71, 0xa8, 0x15, 0xbc, 0x64, 0x84, 0x62, 0xdf, 0xd7, 0x18, 0xc8, 0x10, 0x66, 0xd4, 0xe7,
0x34, 0x74, 0x2b, 0x61, 0xb3, 0xf8, 0xa7, 0x37, 0x7b, 0x25, 0x6d, 0x5a, 0x02, 0x3e, 0xe2, 0x80,
0x18, 0xdf, 0x32, 0x1b, 0x55, 0xb2, 0x53, 0x50, 0x1a, 0x40, 0x7e, 0x31, 0x07, 0x13, 0x2c, 0x07,
0x61, 0xb1, 0x3b, 0x2a, 0xdd, 0x92, 0x16, 0x1e, 0x69, 0x98, 0x24, 0x2d, 0x3c, 0x5a, 0xf5, 0x19,
0x62, 0x37, 0xff, 0xcb, 0x35, 0xc2, 0xb9, 0xd8, 0x8e, 0x03, 0x28, 0x6a, 0x05, 0x1e, 0x32, 0x48,
0x8c, 0xb7, 0x63, 0x92, 0xb1, 0xdb, 0x50, 0x1d, 0xe2, 0x55, 0x0e, 0x6a, 0xe3, 0xeb, 0x71, 0xd0,
0x96, 0x60, 0x63, 0xa8, 0x3f, 0x86, 0x92, 0x5e, 0x09, 0x22, 0x83, 0xd0, 0x44, 0xbf, 0x27, 0x19,
0x2b, 0x4c, 0x85, 0xa4, 0xc1, 0x69, 0xc2, 0xbf, 0xd3, 0x53, 0xbc, 0x0c, 0xfd, 0x13, 0x98, 0x96,
0xf5, 0xa1, 0x69, 0xbf, 0xf1, 0x0e, 0x91, 0x69, 0xbf, 0x89, 0xe2, 0xd2, 0x90, 0x08, 0x70, 0x58,
0x96, 0x07, 0xab, 0x00, 0x2d, 0x21, 0x69, 0x19, 0x91, 0x06, 0x19, 0xf5, 0x3c, 0xd2, 0x20, 0xb5,
0x1a, 0x64, 0x2c, 0xe4, 0x31, 0x09, 0xe4, 0x5d, 0x56, 0x09, 0x3e, 0x4a, 0x91, 0xa8, 0x47, 0x43,
0x3c, 0x8e, 0x45, 0xa2, 0x62, 0x8e, 0xba, 0x8c, 0x5f, 0x31, 0xa0, 0xca, 0x50, 0x88, 0x7e, 0x02,
0x10, 0x15, 0xb3, 0xc9, 0xe7, 0xd8, 0xd8, 0x11, 0x4b, 0x3e, 0xc7, 0xe6, 0x7a, 0xd8, 0xe0, 0xc1,
0x11, 0xb8, 0xf8, 0xa3, 0x1a, 0x06, 0xff, 0x4b, 0x0b, 0xd0, 0x68, 0xf1, 0x8b, 0x5e, 0x37, 0x43,
0x18, 0x9b, 0x6d, 0xf6, 0x1b, 0x97, 0x63, 0x4e, 0x8d, 0x9e, 0x91, 0x5e, 0x4d, 0xbe, 0x64, 0xf0,
0x9c, 0x69, 0xf6, 0x99, 0x05, 0xb3, 0xb1, 0xf2, 0x19, 0x3d, 0x48, 0x39, 0xe7, 0x44, 0xc3, 0xce,
0x7e, 0x78, 0x21, 0x5f, 0x6a, 0xc6, 0xa2, 0xdd, 0x0a, 0x95, 0xad, 0x7d, 0x4e, 0x93, 0xa6, 0x78,
0xcd, 0x8d, 0x52, 0x00, 0x46, 0xba, 0x7e, 0xf6, 0xa3, 0x8b, 0x19, 0x2f, 0x71, 0x5a, 0x51, 0x02,
0x47, 0xdd, 0x42, 0x96, 0xea, 0x26, 0xb7, 0x88, 0x37, 0x0d, 0x4d, 0x6e, 0x91, 0xa8, 0xf3, 0xd3,
0xdc, 0x82, 0x55, 0xbd, 0x9a, 0x27, 0xca, 0x82, 0x3e, 0x0d, 0x72, 0xbc, 0x27, 0x26, 0xba, 0x01,
0x63, 0x21, 0x23, 0x4f, 0x54, 0xe5, 0x3c, 0x4a, 0x91, 0x78, 0x81, 0x27, 0x26, 0xbb, 0x01, 0x69,
0x9e, 0xc8, 0x51, 0x35, 0x4f, 0x8c, 0xaa, 0x6f, 0x93, 0x27, 0x8e, 0xb4, 0x44, 0x4d, 0x9e, 0x38,
0x5a, 0xc0, 0xa7, 0x9d, 0x2d, 0x07, 0x8f, 0x79, 0xe2, 0xbc, 0xa1, 0x5a, 0x47, 0x6f, 0xa4, 0xd8,
0xd4, 0xd8, 0x6e, 0xb5, 0xdf, 0xbc, 0x24, 0xf7, 0x78, 0x0f, 0x10, 0xa7, 0xa1, 0x3c, 0xe0, 0x37,
0x16, 0x2c, 0x98, 0xca, 0x7d, 0x94, 0x02, 0x96, 0xd2, 0xab, 0xb5, 0xd7, 0x2e, 0xcb, 0x7e, 0x09,
0xbb, 0x85, 0x3e, 0xb1, 0x51, 0xfa, 0xc3, 0xdf, 0x56, 0xac, 0x2f, 0xe9, 0x7f, 0x7f, 0xa5, 0xff,
0x1d, 0x4d, 0xf1, 0x3f, 0x1d, 0x7f, 0xfb, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x38, 0xf6, 0x99,
0x0f, 0xc1, 0x2e, 0x00, 0x00,
}

View File

@ -25,6 +25,11 @@ type ServiceQuery struct {
// Service is the service to query.
Service string
// Near allows baking in the name of a node to automatically distance-
// sort from. The magic "_agent" value is supported, which sorts near
// the agent which initiated the request by default.
Near string
// Failover controls what we do if there are no healthy nodes in the
// local datacenter.
Failover QueryDatacenterOptions

View File

@ -86,18 +86,21 @@ func ConfigFromJSON(jsonKey []byte, scope ...string) (*oauth2.Config, error) {
// https://console.developers.google.com to download a JSON key file.
func JWTConfigFromJSON(jsonKey []byte, scope ...string) (*jwt.Config, error) {
var key struct {
Email string `json:"client_email"`
PrivateKey string `json:"private_key"`
Email string `json:"client_email"`
PrivateKey string `json:"private_key"`
PrivateKeyID string `json:"private_key_id"`
}
if err := json.Unmarshal(jsonKey, &key); err != nil {
return nil, err
}
return &jwt.Config{
Email: key.Email,
PrivateKey: []byte(key.PrivateKey),
Scopes: scope,
TokenURL: JWTTokenURL,
}, nil
config := &jwt.Config{
Email: key.Email,
PrivateKey: []byte(key.PrivateKey),
PrivateKeyID: key.PrivateKeyID,
Scopes: scope,
TokenURL: JWTTokenURL,
}
return config, nil
}
// ComputeTokenSource returns a token source that fetches access tokens

View File

@ -36,6 +36,7 @@ func JWTAccessTokenSourceFromJSON(jsonKey []byte, audience string) (oauth2.Token
email: cfg.Email,
audience: audience,
pk: pk,
pkID: cfg.PrivateKeyID,
}
tok, err := ts.Token()
if err != nil {
@ -47,6 +48,7 @@ func JWTAccessTokenSourceFromJSON(jsonKey []byte, audience string) (oauth2.Token
type jwtAccessTokenSource struct {
email, audience string
pk *rsa.PrivateKey
pkID string
}
func (ts *jwtAccessTokenSource) Token() (*oauth2.Token, error) {
@ -62,6 +64,7 @@ func (ts *jwtAccessTokenSource) Token() (*oauth2.Token, error) {
hdr := &jws.Header{
Algorithm: "RS256",
Typ: "JWT",
KeyID: string(ts.pkID),
}
msg, err := jws.Encode(hdr, cs, ts.pk)
if err != nil {

View File

@ -92,6 +92,9 @@ type Header struct {
// Represents the token type.
Typ string `json:"typ"`
// The optional hint of which key is being used.
KeyID string `json:"kid,omitempty"`
}
func (h *Header) encode() (string, error) {

View File

@ -46,6 +46,10 @@ type Config struct {
//
PrivateKey []byte
// PrivateKeyID contains an optional hint indicating which key is being
// used.
PrivateKeyID string
// Subject is the optional user to impersonate.
Subject string