1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-09 17:44:59 +09:00

state: add aggregatedOptionsByRelation

This commit is contained in:
Roman Khafizianov 2021-08-12 22:52:04 +04:00
parent 585c07010d
commit 60ff1c5831
No known key found for this signature in database
GPG key ID: F07A7D55A2684852
10 changed files with 564 additions and 252 deletions

View file

@ -6,6 +6,7 @@ import (
"github.com/anytypeio/go-anytype-middleware/util/slice"
"strings"
"sync"
"time"
"github.com/anytypeio/go-anytype-middleware/pkg/lib/localstore/objectstore"
@ -368,6 +369,8 @@ func (d *dataviewCollectionImpl) DeleteRelationOption(ctx *state.Context, allowM
}
log.Debugf("DeleteRelationOption updated %s", objId)
}
// todo: remove after source refactoring
time.Sleep(time.Second*1)
if showEvent {
err = d.Apply(s)

View file

@ -181,6 +181,18 @@ func (sb *smartBlock) Init(ctx *InitContext) (err error) {
}
ctx.State.SetParent(sb.Doc.(*state.State))
}
for _, rel := range ctx.State.ExtraRelations() {
if rel.Format != model.RelationFormat_tag && rel.Format != model.RelationFormat_status {
continue
}
opts, err := sb.Anytype().ObjectStore().GetAggregatedOptions(rel.Key, rel.Format, ctx.State.ObjectType())
if err != nil {
log.Errorf("GetAggregatedOptions error: %s", err.Error())
} else {
ctx.State.SetAggregatedRelationsOptions(rel.Key, opts)
}
}
if len(ctx.ObjectTypeUrls) > 0 && len(sb.ObjectTypes()) == 0 {
err = sb.setObjectTypes(ctx.State, ctx.ObjectTypeUrls)
@ -842,6 +854,15 @@ func (sb *smartBlock) addExtraRelations(s *state.State, relations []*model.Relat
rel.Creator = sb.Anytype().ProfileID()
}
if rel.Format == model.RelationFormat_tag || rel.Format == model.RelationFormat_status {
opts, err := sb.Anytype().ObjectStore().GetAggregatedOptions(rel.Key, rel.Format, s.ObjectType())
if err != nil {
log.With("thread", sb.Id()).Errorf("failed to get getAggregatedOptions: %s", err.Error())
} else {
s.SetAggregatedRelationsOptions(rel.Key, opts)
}
}
if relEx, exists := existsMap[rel.Key]; exists {
c := pbtypes.CopyRelation(rel)
if !pbtypes.RelationEqualOmitDictionary(relEx, rel) {
@ -958,7 +979,16 @@ mainLoop:
st := sb.NewStateCtx(ctx)
st.SetExtraRelations(append(extraRelations, newRelations...))
for _, rel := range newRelations {
if rel.Format == model.RelationFormat_tag || rel.Format == model.RelationFormat_status {
opts, err := sb.Anytype().ObjectStore().GetAggregatedOptions(rel.Key, rel.Format, st.ObjectType())
if err != nil {
log.With("thread", sb.Id()).Errorf("failed to get getAggregatedOptions: %s", err.Error())
} else {
st.SetAggregatedRelationsOptions(rel.Key, opts)
}
}
}
if err = sb.Apply(st); err != nil {
return
}

View file

@ -533,12 +533,15 @@ func diffRelationsIntoUpdates(prev model.Relation, new model.Relation) ([]*pb.Ch
})
}
if !pbtypes.RelationSelectDictEqual(prev.SelectDict, new.SelectDict) {
// todo: CRDT SelectDict patches
updates = append(updates, &pb.ChangeRelationUpdate{
Key: prev.Key,
Value: &pb.ChangeRelationUpdateValueOfSelectDict{SelectDict: &pb.ChangeRelationUpdateDict{Dict: new.SelectDict}},
})
if new.Format == model.RelationFormat_tag || new.Format == model.RelationFormat_status {
newDict := pbtypes.RelationOptionsFilterScope(new.SelectDict, model.RelationOption_local)
if !pbtypes.RelationSelectDictEqual(pbtypes.RelationOptionsFilterScope(prev.SelectDict, model.RelationOption_local), newDict) {
// todo: CRDT SelectDict patches
updates = append(updates, &pb.ChangeRelationUpdate{
Key: prev.Key,
Value: &pb.ChangeRelationUpdateValueOfSelectDict{SelectDict: &pb.ChangeRelationUpdateDict{Dict: newDict}},
})
}
}
return updates, nil

View file

@ -69,18 +69,20 @@ func NewDoc(rootId string, blocks map[string]simple.Block) Doc {
}
type State struct {
ctx *Context
parent *State
blocks map[string]simple.Block
rootId string
newIds []string
changeId string
changes []*pb.ChangeContent
fileKeys []pb.ChangeFileKeys
details *types.Struct
localDetails *types.Struct
extraRelations []*model.Relation
objectTypes []string
ctx *Context
parent *State
blocks map[string]simple.Block
rootId string
newIds []string
changeId string
changes []*pb.ChangeContent
fileKeys []pb.ChangeFileKeys
details *types.Struct
localDetails *types.Struct
extraRelations []*model.Relation
aggregatedOptionsByRelation map[string][]*model.RelationOption
objectTypes []string
changesStructureIgnoreIds []string
@ -492,6 +494,14 @@ func (s *State) apply(fast, one, withLayouts bool) (msgs []simple.EventMessage,
action.Relations = &undo.Relations{Before: pbtypes.CopyRelations(prev), After: pbtypes.CopyRelations(s.extraRelations)}
s.parent.extraRelations = s.extraRelations
if len(added)+len(updated) > 0 {
aggregetedOptions := s.AggregatedOptionsByRelation()
if aggregetedOptions != nil {
for _, rel := range append(added, updated...) {
if m, exists := aggregetedOptions[rel.Key]; exists {
rel.SelectDict = pbtypes.MergeOptionsPreserveScope(rel.SelectDict, m)
}
}
}
msgs = append(msgs, simple.EventMessage{
Msg: &pb.EventMessage{
Value: &pb.EventMessageValueOfObjectRelationsAmend{
@ -552,6 +562,12 @@ func (s *State) apply(fast, one, withLayouts bool) (msgs []simple.EventMessage,
s.parent.localDetails = s.localDetails
}
}
if s.parent != nil && s.aggregatedOptionsByRelation != nil {
// todo: when we will have an external subscription for the aggregatedOptionsByRelation we should send events here for all relations
s.parent.aggregatedOptionsByRelation = s.aggregatedOptionsByRelation
}
log.Infof("middle: state apply: %d affected; %d for remove; %d copied; %d changes; for a %v", len(affectedIds), len(toRemove), len(s.blocks), len(s.changes), time.Since(st))
return
}
@ -569,6 +585,9 @@ func (s *State) intermediateApply() {
if s.localDetails != nil {
s.parent.localDetails = s.localDetails
}
if s.aggregatedOptionsByRelation != nil {
s.parent.aggregatedOptionsByRelation = s.aggregatedOptionsByRelation
}
if s.extraRelations != nil {
s.parent.extraRelations = s.extraRelations
}
@ -830,6 +849,16 @@ func (s *State) SetExtraRelations(relations []*model.Relation) *State {
return s
}
func (s *State) SetAggregatedRelationsOptions(relationKey string, options []*model.RelationOption) *State {
s.aggregatedOptionsByRelation = s.AggregatedOptionsByRelation()
if s.aggregatedOptionsByRelation == nil {
s.aggregatedOptionsByRelation = make(map[string][]*model.RelationOption)
}
s.aggregatedOptionsByRelation[relationKey] = pbtypes.CopyRelationOptions(options)
return s
}
// removeNotExistingRelationOptionsValues may modify relation provided by pointer and set the Detail on the state
func (s *State) removeNotExistingRelationOptionsValues(rel *model.Relation) (changed bool) {
if rel.Format != model.RelationFormat_tag && rel.Format != model.RelationFormat_status {
@ -943,6 +972,14 @@ func (s *State) LocalDetails() *types.Struct {
return s.localDetails
}
func (s *State) AggregatedOptionsByRelation() map[string][]*model.RelationOption {
if s.aggregatedOptionsByRelation == nil && s.parent != nil {
return s.parent.AggregatedOptionsByRelation()
}
return s.aggregatedOptionsByRelation
}
func (s *State) CombinedDetails() *types.Struct {
persisted := s.Details()
local := s.LocalDetails()
@ -1183,15 +1220,20 @@ func (s *State) Copy() *State {
objTypes := make([]string, len(s.ObjectTypes()))
copy(objTypes, s.ObjectTypes())
agOptsCopy := make(map[string][]*model.RelationOption, len(s.AggregatedOptionsByRelation()))
for k, v := range s.AggregatedOptionsByRelation() {
agOptsCopy[k] = pbtypes.CopyRelationOptions(v)
}
copy := &State{
ctx: s.ctx,
blocks: blocks,
rootId: s.rootId,
details: pbtypes.CopyStruct(s.Details()),
localDetails: pbtypes.CopyStruct(s.LocalDetails()),
extraRelations: pbtypes.CopyRelations(s.ExtraRelations()),
objectTypes: objTypes,
noObjectType: s.noObjectType,
ctx: s.ctx,
blocks: blocks,
rootId: s.rootId,
details: pbtypes.CopyStruct(s.Details()),
localDetails: pbtypes.CopyStruct(s.LocalDetails()),
extraRelations: pbtypes.CopyRelations(s.ExtraRelations()),
aggregatedOptionsByRelation: agOptsCopy,
objectTypes: objTypes,
noObjectType: s.noObjectType,
}
return copy
}

View file

@ -4,12 +4,8 @@
## Table of Contents
- [pb/protos/service/service.proto](#pb/protos/service/service.proto)
- [ClientCommands](#anytype.ClientCommands)
- [pb/protos/changes.proto](#pb/protos/changes.proto)
- [Change](#anytype.Change)
- [Change.BlockCreate](#anytype.Change.BlockCreate)
@ -32,10 +28,6 @@
- [Change.Snapshot](#anytype.Change.Snapshot)
- [Change.Snapshot.LogHeadsEntry](#anytype.Change.Snapshot.LogHeadsEntry)
- [pb/protos/commands.proto](#pb/protos/commands.proto)
- [Empty](#anytype.Empty)
- [Rpc](#anytype.Rpc)
@ -716,9 +708,6 @@
- [Rpc.Wallet.Create.Response.Error.Code](#anytype.Rpc.Wallet.Create.Response.Error.Code)
- [Rpc.Wallet.Recover.Response.Error.Code](#anytype.Rpc.Wallet.Recover.Response.Error.Code)
- [pb/protos/events.proto](#pb/protos/events.proto)
- [Event](#anytype.Event)
- [Event.Account](#anytype.Event.Account)
@ -852,9 +841,6 @@
- [Model.Process.State](#anytype.Model.Process.State)
- [Model.Process.Type](#anytype.Model.Process.Type)
- [pkg/lib/pb/model/protos/localstore.proto](#pkg/lib/pb/model/protos/localstore.proto)
- [ObjectDetails](#anytype.model.ObjectDetails)
- [ObjectInfo](#anytype.model.ObjectInfo)
@ -865,10 +851,6 @@
- [ObjectLinksInfo](#anytype.model.ObjectLinksInfo)
- [ObjectStoreChecksums](#anytype.model.ObjectStoreChecksums)
- [pkg/lib/pb/model/protos/models.proto](#pkg/lib/pb/model/protos/models.proto)
- [Account](#anytype.model.Account)
- [Account.Avatar](#anytype.model.Account.Avatar)
@ -899,6 +881,7 @@
- [Range](#anytype.model.Range)
- [Relation](#anytype.model.Relation)
- [Relation.Option](#anytype.model.Relation.Option)
- [RelationOptions](#anytype.model.RelationOptions)
- [RelationWithValue](#anytype.model.RelationWithValue)
- [Relations](#anytype.model.Relations)
- [Restrictions](#anytype.model.Restrictions)
@ -930,9 +913,6 @@
- [Restrictions.ObjectRestriction](#anytype.model.Restrictions.ObjectRestriction)
- [SmartBlockType](#anytype.model.SmartBlockType)
- [Scalar Value Types](#scalar-value-types)
@ -13893,6 +13873,21 @@ scope from which this relation have been aggregated |
<a name="anytype.model.RelationOptions"></a>
### RelationOptions
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| options | [Relation.Option](#anytype.model.Relation.Option) | repeated | |
<a name="anytype.model.RelationWithValue"></a>
### RelationWithValue

View file

@ -494,6 +494,12 @@ func (m *dsObjectStore) getAggregatedOptionsForFormat(format model.RelationForma
if _, exists := ex[optionId]; exists {
continue
}
objId, err := localstore.CarveKeyParts(key, -1, 0)
if err != nil {
return nil, err
}
fmt.Printf("ag opt by format: %s/%s found in %s\n", relKey, optionId, objId)
ex[optionId] = struct{}{}
options = append(options, relationOption{
relationKey: relKey,
@ -1670,7 +1676,7 @@ func (m *dsObjectStore) updateSetRelations(txn ds.Txn, setId string, setOf strin
if relBefore == nil {
updatedOptions = append(updatedOptions, relAfter.SelectDict...)
} else {
added, updated, _ := pbtypes.RelationSelectDictDiff(relBefore.SelectDict, relAfter.SelectDict)
added, updated, _ := pbtypes.RelationSelectDictDiffOmitScope(relBefore.SelectDict, relAfter.SelectDict)
updatedOptions = append(updatedOptions, append(added, updated...)...)
}
}
@ -1761,7 +1767,7 @@ func (m *dsObjectStore) updateObjectRelations(txn ds.Txn, objTypesBefore []strin
if relBefore == nil {
updatedOptions = append(updatedOptions, relAfter.SelectDict...)
} else {
added, updated, _ := pbtypes.RelationSelectDictDiff(relBefore.SelectDict, relAfter.SelectDict)
added, updated, _ := pbtypes.RelationSelectDictDiffOmitScope(relBefore.SelectDict, relAfter.SelectDict)
updatedOptions = append(updatedOptions, append(added, updated...)...)
}
}

View file

@ -3353,6 +3353,50 @@ func (m *Relations) GetRelations() []*Relation {
return nil
}
type RelationOptions struct {
Options []*RelationOption `protobuf:"bytes,1,rep,name=options,proto3" json:"options,omitempty"`
}
func (m *RelationOptions) Reset() { *m = RelationOptions{} }
func (m *RelationOptions) String() string { return proto.CompactTextString(m) }
func (*RelationOptions) ProtoMessage() {}
func (*RelationOptions) Descriptor() ([]byte, []int) {
return fileDescriptor_98a910b73321e591, []int{12}
}
func (m *RelationOptions) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *RelationOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_RelationOptions.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *RelationOptions) XXX_Merge(src proto.Message) {
xxx_messageInfo_RelationOptions.Merge(m, src)
}
func (m *RelationOptions) XXX_Size() int {
return m.Size()
}
func (m *RelationOptions) XXX_DiscardUnknown() {
xxx_messageInfo_RelationOptions.DiscardUnknown(m)
}
var xxx_messageInfo_RelationOptions proto.InternalMessageInfo
func (m *RelationOptions) GetOptions() []*RelationOption {
if m != nil {
return m.Options
}
return nil
}
func init() {
proto.RegisterEnum("anytype.model.SmartBlockType", SmartBlockType_name, SmartBlockType_value)
proto.RegisterEnum("anytype.model.RelationFormat", RelationFormat_name, RelationFormat_value)
@ -3412,6 +3456,7 @@ func init() {
proto.RegisterType((*Relation)(nil), "anytype.model.Relation")
proto.RegisterType((*RelationOption)(nil), "anytype.model.Relation.Option")
proto.RegisterType((*Relations)(nil), "anytype.model.Relations")
proto.RegisterType((*RelationOptions)(nil), "anytype.model.RelationOptions")
}
func init() {
@ -3419,208 +3464,210 @@ func init() {
}
var fileDescriptor_98a910b73321e591 = []byte{
// 3216 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x3a, 0x4d, 0x6f, 0x24, 0xc7,
0x75, 0xec, 0x99, 0x9e, 0xaf, 0x47, 0x72, 0xb6, 0x58, 0x4b, 0x51, 0x93, 0x91, 0xc4, 0x30, 0x1d,
0x7d, 0x6c, 0x56, 0x9b, 0xe1, 0x2e, 0xb9, 0x2b, 0x45, 0x4a, 0x14, 0x89, 0x1f, 0xbb, 0x22, 0xb1,
0x1f, 0x5c, 0xf5, 0x70, 0x19, 0x44, 0x08, 0x02, 0xd5, 0x74, 0x17, 0x67, 0x5a, 0xec, 0xe9, 0x1a,
0x55, 0xd7, 0x70, 0x97, 0x42, 0x0e, 0x52, 0x84, 0x00, 0x09, 0x90, 0x83, 0x94, 0x40, 0xf0, 0xd5,
0xbe, 0x1b, 0xf0, 0xc9, 0xb0, 0x0f, 0x3e, 0x1b, 0x36, 0x7c, 0xb0, 0x2e, 0x06, 0xac, 0x9b, 0x21,
0xfd, 0x03, 0x9f, 0x6d, 0xc0, 0x78, 0x55, 0xdd, 0x3d, 0x3d, 0x43, 0x2e, 0x77, 0x56, 0xf6, 0xad,
0xdf, 0xab, 0xf7, 0x5e, 0xbd, 0x57, 0xf5, 0xbe, 0xea, 0xcd, 0xc0, 0x8b, 0x83, 0xa3, 0xee, 0x6a,
0x18, 0x74, 0x56, 0x07, 0x9d, 0xd5, 0xbe, 0xf0, 0x79, 0xb8, 0x3a, 0x90, 0x42, 0x89, 0xd8, 0x00,
0x71, 0x4b, 0x43, 0x74, 0x9e, 0x45, 0x27, 0xea, 0x64, 0xc0, 0x5b, 0x1a, 0xdb, 0x7c, 0xbe, 0x2b,
0x44, 0x37, 0xe4, 0x86, 0xb4, 0x33, 0x3c, 0x5c, 0x8d, 0x95, 0x1c, 0x7a, 0xca, 0x10, 0x3b, 0x5f,
0x14, 0x60, 0xa9, 0xdd, 0x67, 0x52, 0x6d, 0x86, 0xc2, 0x3b, 0x6a, 0x47, 0x6c, 0x10, 0xf7, 0x84,
0xda, 0x64, 0x31, 0xa7, 0x57, 0xa0, 0xdc, 0x41, 0x64, 0xdc, 0xb0, 0x56, 0x8a, 0x97, 0x66, 0xd7,
0x16, 0x5b, 0x63, 0x82, 0x5b, 0x9a, 0xc3, 0x4d, 0x68, 0xe8, 0x35, 0xa8, 0xf8, 0x5c, 0xb1, 0x20,
0x8c, 0x1b, 0x85, 0x15, 0xeb, 0xd2, 0xec, 0xda, 0xb3, 0x2d, 0xb3, 0x71, 0x2b, 0xdd, 0xb8, 0xd5,
0xd6, 0x1b, 0xbb, 0x29, 0x1d, 0x5d, 0x87, 0xea, 0x61, 0x10, 0xf2, 0xdb, 0xfc, 0x24, 0x6e, 0x14,
0xcf, 0xe7, 0xc9, 0x08, 0xe9, 0xdb, 0x50, 0xe7, 0x8f, 0x94, 0x64, 0x2e, 0x0f, 0x99, 0x0a, 0x44,
0x14, 0x37, 0x6c, 0xad, 0xdd, 0xb3, 0x13, 0xda, 0xa5, 0xeb, 0xee, 0x04, 0x39, 0x5d, 0x81, 0x59,
0xd1, 0xf9, 0x90, 0x7b, 0x6a, 0xff, 0x64, 0xc0, 0xe3, 0x46, 0x69, 0xa5, 0x78, 0xa9, 0xe6, 0xe6,
0x51, 0xce, 0x4f, 0x5e, 0x82, 0x92, 0x36, 0x8e, 0xd6, 0xa1, 0x10, 0xf8, 0x0d, 0x6b, 0xc5, 0xba,
0x54, 0x73, 0x0b, 0x81, 0x4f, 0x57, 0xa1, 0x7c, 0x18, 0xf0, 0xd0, 0x7f, 0xa2, 0x8d, 0x09, 0x19,
0xbd, 0x09, 0x73, 0x92, 0xc7, 0x4a, 0x06, 0x9e, 0xd1, 0xd5, 0x98, 0xf9, 0x37, 0x67, 0x9d, 0x64,
0xcb, 0xcd, 0x11, 0xba, 0x63, 0x6c, 0xa8, 0xb3, 0xd7, 0x0b, 0x42, 0x5f, 0xf2, 0x68, 0xd7, 0x37,
0x16, 0xd7, 0xdc, 0x3c, 0x8a, 0x5e, 0x82, 0x0b, 0x1d, 0xe6, 0x1d, 0x75, 0xa5, 0x18, 0x46, 0xfe,
0x96, 0x08, 0x85, 0x6c, 0x94, 0xb4, 0xda, 0x93, 0x68, 0x7a, 0x15, 0x4a, 0x2c, 0x0c, 0xba, 0x51,
0xa3, 0xbc, 0x62, 0x5d, 0xaa, 0xaf, 0x35, 0xcf, 0xd4, 0x65, 0x03, 0x29, 0x5c, 0x43, 0x48, 0x77,
0x01, 0x62, 0x74, 0x11, 0x7d, 0xd3, 0x8d, 0x59, 0x6d, 0xc2, 0x2b, 0x67, 0xb2, 0x6d, 0x89, 0x48,
0xf1, 0x48, 0xb5, 0xda, 0x19, 0xf9, 0xce, 0x8c, 0x9b, 0x63, 0xa6, 0xaf, 0x83, 0xad, 0xf8, 0x23,
0xd5, 0xa8, 0x9f, 0x73, 0x0e, 0xa9, 0x90, 0x7d, 0xfe, 0x48, 0xed, 0xcc, 0xb8, 0x9a, 0x01, 0x19,
0xd1, 0x05, 0x1a, 0x17, 0xa6, 0x60, 0xbc, 0x15, 0x84, 0x1c, 0x19, 0x91, 0x81, 0xbe, 0x05, 0xe5,
0x90, 0x9d, 0x88, 0xa1, 0x6a, 0x10, 0xcd, 0xfa, 0xb7, 0xe7, 0xb2, 0xde, 0xd1, 0xa4, 0x3b, 0x33,
0x6e, 0xc2, 0x44, 0xaf, 0x43, 0xd1, 0x0f, 0x8e, 0x1b, 0x0b, 0x9a, 0x77, 0xe5, 0x5c, 0xde, 0xed,
0xe0, 0x78, 0x67, 0xc6, 0x45, 0x72, 0xba, 0x05, 0xd5, 0x8e, 0x10, 0x47, 0x7d, 0x26, 0x8f, 0x1a,
0x54, 0xb3, 0xbe, 0x74, 0x2e, 0xeb, 0x66, 0x42, 0xbc, 0x33, 0xe3, 0x66, 0x8c, 0x68, 0x72, 0xe0,
0x89, 0xa8, 0x71, 0x71, 0x0a, 0x93, 0x77, 0x3d, 0x11, 0xa1, 0xc9, 0xc8, 0x80, 0x8c, 0x61, 0x10,
0x1d, 0x35, 0x16, 0xa7, 0x60, 0xbc, 0x13, 0x44, 0xb8, 0xab, 0x66, 0x40, 0xb5, 0x7d, 0xa6, 0xd8,
0x71, 0xc0, 0x1f, 0x36, 0x9e, 0x99, 0x42, 0xed, 0xed, 0x84, 0x18, 0xd5, 0x4e, 0x19, 0x51, 0x88,
0x4c, 0x82, 0xad, 0xb1, 0x34, 0x85, 0x90, 0x34, 0x32, 0x51, 0x48, 0xca, 0x48, 0xff, 0x1d, 0x16,
0x0e, 0x39, 0x53, 0x43, 0xc9, 0xfd, 0x51, 0xa0, 0x3f, 0xab, 0xa5, 0xb5, 0xce, 0xbf, 0xfb, 0x49,
0xae, 0x9d, 0x19, 0xf7, 0xb4, 0xa8, 0xe6, 0xc7, 0x30, 0x97, 0x0f, 0x37, 0x4a, 0xc1, 0x96, 0x9c,
0x99, 0x50, 0xaf, 0xba, 0xfa, 0x1b, 0x71, 0xdc, 0x0f, 0x94, 0x0e, 0xf5, 0xaa, 0xab, 0xbf, 0xe9,
0x12, 0x94, 0x25, 0xef, 0x8b, 0x63, 0xae, 0x23, 0xb9, 0xea, 0x26, 0x10, 0xd2, 0xfa, 0x92, 0x75,
0x1b, 0xb6, 0xa1, 0xc5, 0x6f, 0xa4, 0xf5, 0xa5, 0x18, 0xec, 0x45, 0x3a, 0x12, 0xab, 0x6e, 0x02,
0x35, 0x7f, 0xf6, 0x1c, 0x54, 0x12, 0x75, 0x9b, 0xff, 0x01, 0x65, 0xe3, 0x72, 0xf4, 0x6d, 0x28,
0xc5, 0xea, 0x24, 0xe4, 0x5a, 0x85, 0xfa, 0xda, 0xdf, 0x4d, 0xe1, 0xa6, 0xad, 0x36, 0x32, 0xb8,
0x86, 0xcf, 0xb9, 0x06, 0x25, 0x0d, 0xd3, 0x0a, 0x14, 0x5d, 0xf1, 0x90, 0xcc, 0x50, 0x80, 0xf2,
0x96, 0x08, 0x87, 0xfd, 0x88, 0x58, 0x88, 0xdc, 0x0e, 0x8e, 0x49, 0x01, 0x91, 0x3b, 0x9c, 0xf9,
0x5c, 0x92, 0x62, 0xf3, 0x6b, 0x0b, 0x6c, 0x74, 0x00, 0xfa, 0x22, 0xcc, 0x2b, 0x26, 0xbb, 0xdc,
0x54, 0x81, 0xdd, 0x34, 0xe5, 0x8d, 0x23, 0xe9, 0x5b, 0xa9, 0x8a, 0x05, 0xad, 0xe2, 0x2b, 0x4f,
0x74, 0xac, 0x31, 0x05, 0x73, 0xc9, 0xb3, 0x38, 0x55, 0xf2, 0x74, 0xfe, 0x31, 0xb5, 0xa8, 0x0a,
0xf6, 0x7d, 0xd6, 0xe5, 0x64, 0x86, 0xce, 0x41, 0x35, 0x75, 0x3a, 0x62, 0xd1, 0x79, 0xa8, 0x6d,
0xb3, 0xb8, 0xd7, 0x11, 0x4c, 0xfa, 0xa4, 0x40, 0x67, 0xa1, 0xb2, 0x21, 0xbd, 0x5e, 0x70, 0xcc,
0x49, 0xb1, 0xf9, 0x81, 0x36, 0x98, 0xfe, 0xd3, 0xf8, 0xb1, 0xbe, 0xfc, 0xa4, 0x08, 0x1e, 0x3f,
0xd3, 0xe7, 0x72, 0x1a, 0xdc, 0x09, 0x22, 0xd4, 0xa0, 0x0a, 0xf6, 0xb6, 0x50, 0x31, 0xb1, 0x9a,
0xbf, 0xb4, 0xa0, 0x9a, 0x06, 0x2e, 0x25, 0x50, 0x1c, 0xca, 0x30, 0x39, 0x37, 0xfc, 0xa4, 0x8b,
0x50, 0x52, 0x81, 0x4a, 0x4e, 0xab, 0xe6, 0x1a, 0x00, 0x33, 0xb9, 0xcf, 0x63, 0x4f, 0x06, 0x03,
0x1d, 0x20, 0x45, 0xbd, 0x96, 0x47, 0xd1, 0xe7, 0xa1, 0x16, 0xf4, 0x59, 0x97, 0xef, 0xb0, 0xb8,
0xa7, 0xfd, 0xa9, 0xe6, 0x8e, 0x10, 0xc8, 0x7f, 0xc8, 0x8e, 0x31, 0xcc, 0xf5, 0xba, 0xc9, 0xf1,
0x79, 0x14, 0x5d, 0x07, 0x1b, 0x0d, 0x4c, 0xd2, 0xfb, 0x5f, 0x4f, 0x18, 0x8c, 0xd7, 0x72, 0x5f,
0x72, 0x3c, 0xc0, 0x16, 0x56, 0x3b, 0x57, 0x13, 0x37, 0x9b, 0x60, 0x63, 0x0a, 0x41, 0x3f, 0x8e,
0x58, 0x9f, 0x27, 0x76, 0xe8, 0xef, 0xe6, 0x45, 0x58, 0x38, 0x15, 0x55, 0xcd, 0xaf, 0x4b, 0x60,
0x63, 0x82, 0x46, 0x0e, 0x9d, 0xd1, 0x13, 0x0e, 0x9d, 0xac, 0x9f, 0xca, 0x51, 0x50, 0xca, 0xb8,
0xa3, 0xbc, 0x05, 0x25, 0x3c, 0xd3, 0xd4, 0x4f, 0xa6, 0x60, 0xbf, 0x8b, 0xe4, 0xae, 0xe1, 0xa2,
0x0d, 0xa8, 0x78, 0x3d, 0xee, 0x1d, 0x71, 0x3f, 0x09, 0xc7, 0x14, 0xc4, 0x2b, 0xf1, 0x72, 0xa5,
0xd1, 0x00, 0xcd, 0x9b, 0x50, 0xd2, 0xfc, 0xe8, 0x2b, 0x66, 0x5f, 0xd3, 0xef, 0xbc, 0x3c, 0xdd,
0xbe, 0xc9, 0xb6, 0xcd, 0x2f, 0x0b, 0x60, 0x23, 0x4c, 0x2f, 0x43, 0x49, 0xb2, 0xa8, 0x6b, 0x0e,
0xf1, 0x74, 0xdb, 0xe4, 0xe2, 0x9a, 0x6b, 0x48, 0xe8, 0xdb, 0xc9, 0x65, 0x99, 0x83, 0x7a, 0x75,
0xba, 0x1d, 0x73, 0x17, 0x87, 0x26, 0x0d, 0x98, 0x64, 0xfd, 0xc4, 0x93, 0x0c, 0xe0, 0xfc, 0x8f,
0x05, 0x36, 0x12, 0xd1, 0x05, 0x98, 0x6f, 0x2b, 0x19, 0x1c, 0x71, 0xd5, 0x93, 0x62, 0xd8, 0xed,
0x99, 0x10, 0xba, 0xcd, 0x4f, 0x4c, 0xcc, 0x58, 0x98, 0x0e, 0x76, 0x15, 0x0b, 0x03, 0x8f, 0x14,
0xd0, 0xb5, 0x37, 0x45, 0xe8, 0x93, 0x22, 0xbd, 0x00, 0xb3, 0x0f, 0x22, 0x9f, 0xcb, 0xd8, 0x13,
0x92, 0xfb, 0xc4, 0x4e, 0xfc, 0xff, 0x88, 0x94, 0x30, 0xe6, 0x50, 0x11, 0xdd, 0x4b, 0x90, 0x32,
0xbd, 0x08, 0x17, 0x36, 0xc7, 0x1b, 0x0c, 0x52, 0xc1, 0x40, 0xbc, 0xcb, 0x23, 0x74, 0x14, 0x52,
0x75, 0x7e, 0x64, 0xa5, 0x41, 0x34, 0x0f, 0xb5, 0xfb, 0x4c, 0xb2, 0xae, 0x64, 0x03, 0x54, 0x64,
0x16, 0x2a, 0x26, 0x13, 0x5d, 0x23, 0xd6, 0x08, 0x58, 0x33, 0x81, 0x6c, 0x80, 0x75, 0x52, 0x1c,
0x01, 0xd7, 0x89, 0x4d, 0x6b, 0x50, 0x7a, 0x6f, 0x28, 0x14, 0x27, 0x25, 0x54, 0x69, 0x4b, 0xf8,
0x9c, 0x94, 0x11, 0xb9, 0x8f, 0xc1, 0x45, 0x2a, 0x68, 0xdc, 0x16, 0x5e, 0x76, 0x47, 0x3c, 0x22,
0x55, 0x34, 0x0e, 0xcf, 0x8b, 0xfb, 0xa4, 0x86, 0x2b, 0xf7, 0x86, 0xfd, 0x0e, 0x47, 0x7b, 0x00,
0x57, 0xf6, 0x45, 0xb7, 0x1b, 0x72, 0x32, 0x8b, 0xc6, 0x6e, 0x8f, 0xe2, 0x8f, 0xcc, 0x35, 0x7f,
0x53, 0x00, 0x1b, 0x7b, 0x08, 0xf4, 0xed, 0x1e, 0x46, 0x59, 0xe2, 0xdb, 0xf8, 0x9d, 0x45, 0x48,
0x61, 0x14, 0x21, 0xf4, 0xcd, 0xe4, 0x16, 0x8b, 0x53, 0xe4, 0x18, 0x14, 0x9c, 0xbf, 0x40, 0x0a,
0x76, 0x3f, 0xe8, 0xf3, 0x24, 0xd2, 0xf5, 0x37, 0xe2, 0xe2, 0xe0, 0x63, 0xae, 0xdd, 0xb4, 0xe8,
0xea, 0x6f, 0xf4, 0x6a, 0xe6, 0xfb, 0xdc, 0xdf, 0x50, 0x3a, 0xb2, 0x8b, 0x6e, 0x0a, 0x9a, 0x68,
0x63, 0x8a, 0x37, 0x2a, 0x53, 0x44, 0x9b, 0xde, 0xbe, 0x8d, 0xe4, 0xae, 0xe1, 0x72, 0xae, 0x26,
0xae, 0x52, 0x05, 0xfb, 0x9e, 0x48, 0x53, 0x1c, 0x92, 0x11, 0x0b, 0x4f, 0x76, 0x17, 0x53, 0x0f,
0x29, 0xe0, 0xe7, 0x41, 0xe0, 0x73, 0x41, 0x8a, 0xce, 0x6b, 0x78, 0xa1, 0x4c, 0x71, 0xc4, 0xdd,
0xec, 0x0f, 0xd4, 0x09, 0x99, 0xc1, 0xbb, 0x7d, 0x30, 0x08, 0x05, 0xf3, 0x83, 0xa8, 0x4b, 0x2c,
0x93, 0x25, 0xa3, 0x84, 0xef, 0xa6, 0x94, 0x02, 0xcb, 0xcd, 0x1c, 0xc0, 0xa8, 0x31, 0x6c, 0x7e,
0x6f, 0x7e, 0x94, 0xcb, 0xb1, 0x56, 0xc6, 0x62, 0x28, 0xbd, 0x34, 0xf3, 0x24, 0x10, 0x7d, 0x07,
0x4a, 0xb8, 0x8e, 0xfd, 0x36, 0x86, 0xe4, 0xe5, 0xa9, 0xda, 0x91, 0xd6, 0x41, 0xc0, 0x1f, 0xba,
0x86, 0x91, 0xde, 0x80, 0x9a, 0x9c, 0xf6, 0xa9, 0x30, 0xa2, 0xa4, 0xcb, 0x00, 0xcc, 0x53, 0xc1,
0x31, 0x47, 0x59, 0x49, 0x70, 0xe5, 0x30, 0xcd, 0x3f, 0x16, 0xc0, 0xc6, 0x8f, 0x53, 0x4f, 0x84,
0xad, 0xb1, 0x88, 0x5e, 0x9d, 0x5e, 0xe1, 0x09, 0xa7, 0xd0, 0x4e, 0x56, 0xcc, 0x39, 0xd9, 0x3b,
0x50, 0x8a, 0x85, 0x54, 0xa9, 0x11, 0x53, 0x1e, 0x45, 0x5b, 0x48, 0xe5, 0x1a, 0x46, 0x7a, 0x0b,
0x2a, 0x87, 0x41, 0xa8, 0xb8, 0x34, 0xaf, 0x9e, 0xd9, 0xb5, 0x2b, 0xd3, 0xc9, 0xb8, 0xa5, 0x99,
0xdc, 0x94, 0x99, 0xde, 0xc9, 0x1f, 0x69, 0x59, 0x4b, 0x6a, 0x4d, 0x27, 0xe9, 0x8c, 0x93, 0x76,
0xae, 0x27, 0xfe, 0x87, 0x51, 0xcc, 0x3a, 0x61, 0xe2, 0x80, 0x77, 0x82, 0x58, 0x99, 0xb4, 0xf0,
0x2e, 0x0b, 0x43, 0x2e, 0x4f, 0x4c, 0xeb, 0x72, 0x9b, 0x45, 0x1d, 0x16, 0x91, 0x62, 0xf3, 0xa7,
0x45, 0xa8, 0xa6, 0xd2, 0xb0, 0xf8, 0x1e, 0xf1, 0x93, 0xb4, 0xf8, 0x1e, 0xf1, 0x13, 0x5d, 0x44,
0xe3, 0x83, 0x20, 0x0e, 0x3a, 0x49, 0x15, 0xaa, 0xba, 0x23, 0x04, 0x26, 0xcd, 0x87, 0x81, 0xaf,
0x7a, 0xfa, 0x7c, 0x4b, 0xae, 0x01, 0xf0, 0x09, 0xe5, 0x33, 0xc5, 0x77, 0x23, 0x2f, 0x1c, 0xfa,
0x7c, 0x1f, 0x83, 0xd2, 0x34, 0x6e, 0x93, 0x68, 0xfa, 0xaf, 0x00, 0x2a, 0xe8, 0xf3, 0x5b, 0x42,
0xf6, 0x99, 0x4a, 0x0a, 0xed, 0x1b, 0x4f, 0x77, 0x02, 0xad, 0xfd, 0x4c, 0x80, 0x9b, 0x13, 0x86,
0xa2, 0x71, 0xb7, 0x44, 0x74, 0xe5, 0x3b, 0x89, 0xde, 0xce, 0x04, 0xb8, 0x39, 0x61, 0xce, 0xbf,
0x01, 0x8c, 0x56, 0xe8, 0x12, 0xd0, 0xbb, 0x22, 0x52, 0xbd, 0x8d, 0x4e, 0x47, 0x6e, 0xf2, 0x43,
0x21, 0xf9, 0x36, 0xc3, 0x40, 0x7e, 0x06, 0x16, 0x32, 0xfc, 0xc6, 0xa1, 0xe2, 0x12, 0xd1, 0x3a,
0x13, 0xb4, 0x7b, 0x42, 0x2a, 0x93, 0x9d, 0xf5, 0xe7, 0x83, 0x36, 0x29, 0x62, 0x5f, 0xb9, 0xdb,
0xde, 0x23, 0xb6, 0x73, 0x09, 0x60, 0x64, 0x12, 0x66, 0x5b, 0xf3, 0x75, 0x6d, 0xcd, 0x94, 0x1c,
0x03, 0xad, 0x5d, 0x27, 0x56, 0xf3, 0xbf, 0x2d, 0xb0, 0xd1, 0x2d, 0xb1, 0x97, 0x49, 0x75, 0xbe,
0x9d, 0x5d, 0x5f, 0x1e, 0xf5, 0xdd, 0x82, 0x09, 0x65, 0xe7, 0x82, 0xc9, 0xf9, 0xab, 0xc4, 0xc1,
0x2a, 0x50, 0xdc, 0x88, 0xbd, 0xa4, 0x85, 0xe3, 0xb1, 0x47, 0xac, 0xe6, 0xff, 0xdb, 0x50, 0x36,
0xde, 0x4d, 0xdf, 0x83, 0xaa, 0x18, 0x70, 0xc9, 0x94, 0x90, 0x49, 0xaf, 0x78, 0xe3, 0x69, 0xa2,
0xa3, 0xb5, 0x97, 0x30, 0xbb, 0x99, 0x98, 0x49, 0xfb, 0x0a, 0xa7, 0xed, 0xbb, 0x0c, 0x24, 0x0d,
0x84, 0xfb, 0x12, 0xf9, 0xd4, 0x49, 0xd2, 0x9b, 0x9c, 0xc2, 0xd3, 0x7d, 0xa8, 0x79, 0x22, 0xf2,
0x83, 0xac, 0x6f, 0xac, 0xaf, 0xbd, 0xf6, 0x54, 0x1a, 0x6e, 0xa5, 0xdc, 0xee, 0x48, 0x10, 0xbd,
0x02, 0xa5, 0x63, 0x16, 0x0e, 0x4d, 0xfd, 0x99, 0x5d, 0x5b, 0x3a, 0xd5, 0x93, 0x1f, 0xe0, 0xaa,
0x6b, 0x88, 0x9c, 0xe7, 0xa0, 0x9a, 0xda, 0xa9, 0x8f, 0x33, 0xf2, 0xc9, 0x0c, 0x2d, 0x43, 0x61,
0x4f, 0x12, 0xcb, 0xf9, 0xb9, 0x05, 0xb5, 0x6c, 0x8f, 0x5c, 0x39, 0xc1, 0x0a, 0xf0, 0xd1, 0x90,
0x85, 0xc4, 0xd2, 0x45, 0x58, 0x28, 0x03, 0x69, 0x47, 0x7a, 0x57, 0x72, 0xa6, 0xf0, 0x2d, 0xa2,
0x63, 0x9e, 0xc7, 0x31, 0xb1, 0x29, 0x85, 0x7a, 0x82, 0xde, 0x93, 0x86, 0xb4, 0x84, 0x35, 0x1a,
0x57, 0x53, 0x44, 0xd9, 0xa4, 0x88, 0x23, 0x6e, 0x9a, 0x8d, 0x7b, 0x42, 0x69, 0xa0, 0x8a, 0xba,
0xec, 0x46, 0xa4, 0x86, 0x7b, 0xde, 0x13, 0x6a, 0x37, 0x22, 0x30, 0x2a, 0x52, 0xb3, 0xe9, 0xf6,
0x1a, 0x9a, 0xc3, 0x85, 0x8d, 0x30, 0xdc, 0x8d, 0xc8, 0x7c, 0xb2, 0x60, 0xa0, 0x7a, 0xf3, 0xf9,
0xf3, 0x52, 0x8b, 0x73, 0x00, 0xd5, 0xfb, 0x22, 0x9e, 0x34, 0xb2, 0x02, 0xc5, 0x7d, 0x31, 0x30,
0x0d, 0xd5, 0xa6, 0x50, 0x4a, 0xf4, 0x4d, 0x43, 0x75, 0x87, 0x1f, 0x2a, 0x52, 0xc4, 0xbd, 0xdc,
0xa0, 0xdb, 0x53, 0xa6, 0x85, 0xd9, 0x8d, 0x22, 0x2e, 0x49, 0x09, 0x55, 0x77, 0xf9, 0x20, 0x64,
0x1e, 0x27, 0x65, 0xe7, 0x75, 0x54, 0x27, 0xe8, 0x46, 0x58, 0x4a, 0xf5, 0x87, 0x66, 0x9d, 0x41,
0xd3, 0x35, 0xb8, 0xc5, 0x23, 0x3c, 0x29, 0x8b, 0xd6, 0x01, 0xcc, 0x78, 0x46, 0x0b, 0x2c, 0x6c,
0xd6, 0xa0, 0xe2, 0x99, 0x2b, 0x77, 0xee, 0xc3, 0xbc, 0xf6, 0x81, 0xbb, 0x5c, 0xb1, 0xbd, 0x28,
0x3c, 0xf9, 0xb3, 0x07, 0x58, 0xce, 0xab, 0x50, 0xd2, 0x0d, 0x2b, 0x96, 0xa4, 0x43, 0x29, 0xfa,
0x5a, 0x56, 0xc9, 0xd5, 0xdf, 0x28, 0x5d, 0x09, 0x2d, 0xa9, 0xe4, 0x16, 0x94, 0x70, 0x7e, 0x65,
0x41, 0x65, 0xc3, 0xf3, 0xc4, 0x30, 0x52, 0xa7, 0x76, 0x3e, 0xab, 0x6f, 0xba, 0x01, 0x65, 0x76,
0xcc, 0x14, 0x93, 0x49, 0xa7, 0xff, 0xc2, 0x84, 0x3f, 0x27, 0xb2, 0x5a, 0x1b, 0x9a, 0xc8, 0x4d,
0x88, 0x9b, 0x1c, 0xca, 0x06, 0x43, 0xdf, 0x80, 0x92, 0x7e, 0x1a, 0x25, 0xad, 0xf6, 0x54, 0x63,
0x21, 0xc3, 0x41, 0x97, 0xd2, 0xb7, 0x80, 0x56, 0x08, 0xf1, 0x1a, 0xdc, 0xac, 0xa6, 0x3a, 0x39,
0x7f, 0xb0, 0x60, 0x36, 0xf7, 0x5c, 0xfa, 0x0b, 0x3e, 0xf1, 0x9a, 0x50, 0xd5, 0x4a, 0x3c, 0x90,
0x61, 0xd2, 0xf7, 0x65, 0x30, 0x36, 0x1e, 0xc9, 0x6b, 0x0e, 0x57, 0x4d, 0x32, 0xc8, 0x61, 0xbe,
0xd3, 0xf3, 0xce, 0x59, 0x4b, 0x52, 0xe0, 0x2c, 0x54, 0x1e, 0x44, 0x47, 0x91, 0x78, 0x18, 0x99,
0x34, 0xa8, 0x5f, 0xd5, 0x63, 0x6d, 0x5e, 0xd5, 0x3c, 0xeb, 0x48, 0xd1, 0xf9, 0xcc, 0x9e, 0x98,
0x91, 0xdc, 0x84, 0xb2, 0x99, 0x92, 0xea, 0xf7, 0x51, 0x7d, 0xed, 0xef, 0x4f, 0xb5, 0x51, 0x23,
0xe2, 0xd6, 0x9e, 0xa6, 0xcc, 0xa1, 0xdc, 0x84, 0x99, 0xde, 0xc9, 0x0d, 0x99, 0x4c, 0x57, 0x77,
0xf5, 0x3c, 0x41, 0x69, 0x16, 0x1b, 0x9b, 0x8e, 0x66, 0x12, 0x9a, 0xff, 0x65, 0xc1, 0xe2, 0x59,
0x24, 0xd8, 0x2f, 0x77, 0xc6, 0x86, 0x19, 0x29, 0x48, 0xdb, 0x13, 0x33, 0xd9, 0x82, 0xb6, 0x66,
0xf5, 0x29, 0x95, 0x18, 0x9f, 0xd0, 0x3a, 0x9f, 0x5a, 0xb0, 0x70, 0xca, 0xe6, 0x5c, 0x7e, 0x00,
0x28, 0x6f, 0xf3, 0x90, 0x2b, 0x6e, 0xc6, 0x16, 0xd9, 0x43, 0xda, 0xb4, 0x35, 0xda, 0x51, 0x63,
0xf3, 0xd8, 0xd9, 0x36, 0xd3, 0x71, 0x62, 0x63, 0xa0, 0xe3, 0xad, 0x6d, 0xf5, 0x30, 0x00, 0x49,
0x89, 0x12, 0x98, 0x33, 0x83, 0x9f, 0x04, 0x53, 0xc6, 0xbc, 0xb5, 0xcf, 0xfb, 0x83, 0x90, 0x29,
0x4e, 0x2a, 0x8e, 0x0b, 0x17, 0xcf, 0x50, 0x54, 0x6f, 0x7d, 0x90, 0xa8, 0x51, 0x07, 0xd8, 0x3e,
0x48, 0x37, 0x27, 0x16, 0xe6, 0xda, 0xed, 0x83, 0x2d, 0x9d, 0x6d, 0x8d, 0xf6, 0x26, 0x2d, 0x6f,
0x1f, 0x60, 0x47, 0x1a, 0x93, 0xa2, 0xf3, 0xfb, 0x22, 0xc0, 0x5e, 0x36, 0x1b, 0x3f, 0x23, 0x06,
0xce, 0x8e, 0xeb, 0x5c, 0x83, 0x58, 0x9c, 0xba, 0xe7, 0xfe, 0x87, 0x6c, 0x54, 0x6b, 0x6b, 0xe7,
0x9e, 0x1c, 0xb7, 0x8e, 0xf4, 0x48, 0x06, 0x60, 0xd9, 0x94, 0x16, 0xdb, 0x3d, 0x4f, 0x44, 0x37,
0xfb, 0xe2, 0xc3, 0x20, 0x89, 0x99, 0x11, 0x62, 0x32, 0x20, 0xcb, 0xa7, 0x03, 0x72, 0x09, 0xca,
0xbd, 0xc0, 0xf7, 0x79, 0xa4, 0x3b, 0xae, 0xaa, 0x9b, 0x40, 0x18, 0xa8, 0x92, 0x33, 0x5f, 0x44,
0xe1, 0x49, 0x03, 0xf4, 0x4a, 0x06, 0xd3, 0x75, 0x28, 0x29, 0xfd, 0x0b, 0x42, 0x55, 0xfb, 0xcf,
0x64, 0xee, 0x1a, 0xfd, 0xa8, 0xa2, 0xe3, 0xd0, 0xd0, 0x62, 0x74, 0x07, 0x71, 0x32, 0xa4, 0xf2,
0x1b, 0x35, 0x2d, 0x32, 0x87, 0x71, 0x3e, 0xb3, 0xb2, 0x81, 0x60, 0x0d, 0x4a, 0x1d, 0x16, 0x07,
0x9e, 0x79, 0x29, 0x0f, 0xa4, 0x38, 0x34, 0x6f, 0xb2, 0x2a, 0xd8, 0x4a, 0xf8, 0x82, 0x14, 0xb0,
0xe6, 0xc4, 0x1c, 0xab, 0x4b, 0x1d, 0x60, 0xf4, 0xfb, 0x05, 0xb1, 0xd1, 0x2d, 0xd2, 0x53, 0x35,
0x0f, 0x65, 0xcd, 0x5a, 0x46, 0xc7, 0xf3, 0xb3, 0x79, 0x59, 0x05, 0x77, 0xd0, 0x69, 0x87, 0x54,
0x91, 0x03, 0x43, 0xaa, 0xc3, 0x62, 0x4e, 0x16, 0x9d, 0x2f, 0x47, 0x5a, 0x5c, 0xcd, 0xd2, 0xf8,
0x34, 0xf7, 0xf1, 0xb8, 0x44, 0x7f, 0x13, 0x16, 0x24, 0xff, 0x68, 0x18, 0x8c, 0x8d, 0x73, 0x9f,
0xe0, 0x18, 0xa7, 0x39, 0x9c, 0x63, 0x58, 0x48, 0x81, 0x7f, 0x09, 0x54, 0x4f, 0xb7, 0x26, 0x74,
0x3d, 0x37, 0x6f, 0xb6, 0x92, 0xa2, 0xf6, 0x18, 0x91, 0xa3, 0xf9, 0x72, 0xd6, 0xf6, 0x14, 0xa6,
0x69, 0x7b, 0xfe, 0xb7, 0x72, 0xee, 0x63, 0xe3, 0x06, 0x94, 0x0f, 0x4d, 0xbf, 0x6e, 0xfa, 0xd4,
0x17, 0x1e, 0xb3, 0x7f, 0xd2, 0x93, 0x27, 0xc4, 0x67, 0x3e, 0xf2, 0xde, 0x84, 0x39, 0x9f, 0x1f,
0xb2, 0x61, 0xa8, 0x0e, 0xa6, 0xe8, 0xca, 0xc6, 0x68, 0xe9, 0xa6, 0x7e, 0x3a, 0xb0, 0xb6, 0x79,
0x47, 0x97, 0xb4, 0x2a, 0xce, 0x63, 0x54, 0xd1, 0x19, 0xcd, 0x50, 0xba, 0x39, 0xae, 0x5c, 0x20,
0x94, 0xcf, 0x0a, 0x04, 0xec, 0x29, 0x92, 0x10, 0xc9, 0x60, 0xd3, 0xc4, 0x9a, 0xef, 0x54, 0xbc,
0xfe, 0x99, 0xa6, 0xea, 0x9e, 0xc2, 0x63, 0xc5, 0xec, 0x0f, 0x43, 0x15, 0x34, 0xaa, 0x9a, 0xc0,
0x00, 0x93, 0x3f, 0xc9, 0xd5, 0x4e, 0xfd, 0x24, 0x47, 0xff, 0x19, 0x20, 0xe6, 0x21, 0xf7, 0xd4,
0x76, 0xe0, 0xa9, 0xc6, 0x9c, 0xf6, 0x9c, 0xe5, 0xc7, 0xd9, 0xb6, 0xa7, 0x83, 0xda, 0xcd, 0x71,
0xa0, 0xfe, 0x7d, 0xf6, 0x68, 0x0b, 0xbb, 0x89, 0xc6, 0xbc, 0xee, 0x57, 0x32, 0x78, 0x32, 0x3d,
0xd4, 0x4f, 0xa7, 0x87, 0x75, 0x28, 0xc5, 0x9e, 0x18, 0x70, 0xfd, 0x8b, 0xca, 0xe3, 0xef, 0xb7,
0xd5, 0x46, 0x22, 0xd7, 0xd0, 0xea, 0x31, 0x24, 0x26, 0x56, 0x21, 0xf5, 0x6f, 0x29, 0x35, 0x37,
0x05, 0x9b, 0x3f, 0xb4, 0xa0, 0x6c, 0x74, 0x3c, 0xab, 0x4b, 0xd2, 0xd3, 0xd4, 0x42, 0x6e, 0x9a,
0x9a, 0x4d, 0x2d, 0x8b, 0xb9, 0xa9, 0x25, 0x7d, 0x33, 0xd5, 0xc9, 0xe4, 0xca, 0x17, 0xcf, 0x3f,
0x8c, 0x31, 0xd5, 0x9c, 0x2b, 0x50, 0xd2, 0x30, 0x66, 0x80, 0x50, 0x78, 0x2c, 0x34, 0x6f, 0x34,
0x39, 0xaa, 0x0b, 0x90, 0xba, 0x34, 0x29, 0x38, 0xef, 0xa7, 0xd4, 0x90, 0x36, 0x00, 0xa6, 0x79,
0xc0, 0xdd, 0x88, 0x45, 0x17, 0x81, 0xc4, 0x5c, 0xed, 0x1d, 0xee, 0xf7, 0x78, 0x9b, 0xf5, 0xb9,
0x4e, 0x41, 0x05, 0xda, 0x80, 0x45, 0x43, 0x1b, 0x8f, 0xaf, 0xe8, 0x12, 0x17, 0x06, 0x1d, 0xc9,
0xe4, 0x09, 0xb1, 0x9d, 0x75, 0xfd, 0x26, 0x4d, 0xbd, 0x6f, 0x36, 0xfb, 0x0d, 0xd9, 0x24, 0x3d,
0x9f, 0x4b, 0xcc, 0x8a, 0x66, 0x0e, 0xc0, 0x4c, 0x33, 0x48, 0x0a, 0xce, 0x66, 0xae, 0x7e, 0x8e,
0xd7, 0x1a, 0x6b, 0xda, 0x5a, 0x73, 0xf9, 0xd7, 0x05, 0xa8, 0x8f, 0xa7, 0x68, 0x6c, 0xb4, 0x37,
0xd1, 0x61, 0x3d, 0x39, 0xec, 0x77, 0xe2, 0x5c, 0x83, 0x44, 0x70, 0xe9, 0xbe, 0x49, 0xc0, 0x1a,
0xb1, 0x80, 0x4b, 0x3b, 0xa2, 0xcf, 0xc9, 0x4a, 0xfe, 0x47, 0x87, 0xab, 0xe9, 0xcf, 0x13, 0x3a,
0x8d, 0xbe, 0x83, 0xf9, 0xb9, 0xcd, 0x15, 0xd9, 0xc0, 0xc2, 0xdd, 0xde, 0x1f, 0x65, 0x4b, 0xf2,
0x01, 0xad, 0x25, 0x23, 0xb6, 0x4f, 0x0a, 0x74, 0x3e, 0x57, 0xc3, 0xbf, 0x5f, 0xa0, 0x8b, 0x70,
0x61, 0x73, 0x18, 0xf9, 0x21, 0xf7, 0x33, 0xec, 0x0f, 0x34, 0x56, 0x4f, 0x32, 0x95, 0x7e, 0x2d,
0x68, 0x21, 0x9f, 0xe3, 0x21, 0x5f, 0xcc, 0x61, 0xb3, 0xb2, 0xfe, 0xc5, 0xe4, 0x4a, 0x26, 0xe9,
0xff, 0xf2, 0xf2, 0x33, 0xfa, 0x4f, 0x6c, 0xc4, 0xee, 0x46, 0x3e, 0x7f, 0x94, 0xc3, 0x7e, 0x6a,
0xd3, 0x25, 0x58, 0x48, 0x68, 0x73, 0xca, 0xff, 0xa7, 0x4d, 0x2f, 0x42, 0x7d, 0xc3, 0x9c, 0x70,
0x72, 0x2a, 0xe4, 0x33, 0xfb, 0xf2, 0x8f, 0x2d, 0xa8, 0x8f, 0x67, 0x3a, 0x3c, 0x8e, 0x50, 0x44,
0x5d, 0xf4, 0x62, 0x33, 0x22, 0x8c, 0x7b, 0x42, 0x2a, 0x0d, 0x6a, 0x17, 0x8b, 0xf4, 0x40, 0xd6,
0xb4, 0x40, 0xb1, 0x62, 0x6a, 0x18, 0x9b, 0x89, 0x82, 0x62, 0x5d, 0x32, 0x8b, 0x67, 0xec, 0xa3,
0xd2, 0x76, 0x56, 0xc1, 0x4a, 0x28, 0xd1, 0x4b, 0xe7, 0xbb, 0x65, 0x24, 0x1d, 0xca, 0xd0, 0x54,
0x32, 0xde, 0x67, 0x41, 0x48, 0xaa, 0xf8, 0x39, 0xe8, 0x61, 0xb3, 0x53, 0x33, 0x58, 0xf1, 0x61,
0x60, 0xe6, 0xbd, 0x89, 0xeb, 0xfa, 0xa8, 0x47, 0xe6, 0x07, 0x84, 0x6f, 0x5e, 0xfe, 0xc5, 0x37,
0xcb, 0xd6, 0x57, 0xdf, 0x2c, 0x5b, 0xbf, 0xfb, 0x66, 0xd9, 0xfa, 0xfc, 0xdb, 0xe5, 0x99, 0xaf,
0xbe, 0x5d, 0x9e, 0xf9, 0xed, 0xb7, 0xcb, 0x33, 0xef, 0x93, 0xc9, 0xbf, 0x5b, 0x74, 0xca, 0x3a,
0x01, 0xaf, 0xff, 0x29, 0x00, 0x00, 0xff, 0xff, 0x31, 0xf9, 0xcb, 0xbb, 0x89, 0x21, 0x00, 0x00,
// 3237 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0xcd, 0x6f, 0x24, 0xc7,
0x75, 0x67, 0xcf, 0xf4, 0x7c, 0x3d, 0x92, 0xb3, 0xc5, 0x5a, 0x8a, 0x9a, 0x8c, 0x24, 0x86, 0xe9,
0xe8, 0x63, 0xb3, 0xda, 0x0c, 0x77, 0xc9, 0x5d, 0x29, 0x52, 0xa2, 0x48, 0xfc, 0xd8, 0x15, 0x89,
0xfd, 0xe0, 0xaa, 0x87, 0xcb, 0x20, 0x42, 0x10, 0xa8, 0xa6, 0xbb, 0x38, 0xd3, 0x62, 0x4f, 0xd7,
0xa8, 0xba, 0x86, 0xbb, 0x14, 0x72, 0x90, 0x22, 0x04, 0x48, 0x80, 0x1c, 0xa4, 0x04, 0x82, 0xaf,
0xf6, 0xdd, 0x80, 0x4f, 0x86, 0x7d, 0xf0, 0xd9, 0xb0, 0xe1, 0x83, 0x75, 0x31, 0x60, 0xdd, 0x0c,
0xe9, 0x3f, 0xf0, 0xd9, 0x06, 0x8c, 0x57, 0xd5, 0xdd, 0xd3, 0x33, 0xe4, 0x72, 0x67, 0x65, 0xdf,
0xfa, 0xbd, 0x7a, 0xef, 0xd5, 0xab, 0xaa, 0xf7, 0x5e, 0xfd, 0xea, 0xcd, 0xc0, 0x8b, 0x83, 0xa3,
0xee, 0x6a, 0x18, 0x74, 0x56, 0x07, 0x9d, 0xd5, 0xbe, 0xf0, 0x79, 0xb8, 0x3a, 0x90, 0x42, 0x89,
0xd8, 0x10, 0x71, 0x4b, 0x53, 0x74, 0x9e, 0x45, 0x27, 0xea, 0x64, 0xc0, 0x5b, 0x9a, 0xdb, 0x7c,
0xbe, 0x2b, 0x44, 0x37, 0xe4, 0x46, 0xb4, 0x33, 0x3c, 0x5c, 0x8d, 0x95, 0x1c, 0x7a, 0xca, 0x08,
0x3b, 0x5f, 0x14, 0x60, 0xa9, 0xdd, 0x67, 0x52, 0x6d, 0x86, 0xc2, 0x3b, 0x6a, 0x47, 0x6c, 0x10,
0xf7, 0x84, 0xda, 0x64, 0x31, 0xa7, 0x57, 0xa0, 0xdc, 0x41, 0x66, 0xdc, 0xb0, 0x56, 0x8a, 0x97,
0x66, 0xd7, 0x16, 0x5b, 0x63, 0x86, 0x5b, 0x5a, 0xc3, 0x4d, 0x64, 0xe8, 0x35, 0xa8, 0xf8, 0x5c,
0xb1, 0x20, 0x8c, 0x1b, 0x85, 0x15, 0xeb, 0xd2, 0xec, 0xda, 0xb3, 0x2d, 0x33, 0x71, 0x2b, 0x9d,
0xb8, 0xd5, 0xd6, 0x13, 0xbb, 0xa9, 0x1c, 0x5d, 0x87, 0xea, 0x61, 0x10, 0xf2, 0xdb, 0xfc, 0x24,
0x6e, 0x14, 0xcf, 0xd7, 0xc9, 0x04, 0xe9, 0xdb, 0x50, 0xe7, 0x8f, 0x94, 0x64, 0x2e, 0x0f, 0x99,
0x0a, 0x44, 0x14, 0x37, 0x6c, 0xed, 0xdd, 0xb3, 0x13, 0xde, 0xa5, 0xe3, 0xee, 0x84, 0x38, 0x5d,
0x81, 0x59, 0xd1, 0xf9, 0x90, 0x7b, 0x6a, 0xff, 0x64, 0xc0, 0xe3, 0x46, 0x69, 0xa5, 0x78, 0xa9,
0xe6, 0xe6, 0x59, 0xce, 0x4f, 0x5e, 0x82, 0x92, 0x5e, 0x1c, 0xad, 0x43, 0x21, 0xf0, 0x1b, 0xd6,
0x8a, 0x75, 0xa9, 0xe6, 0x16, 0x02, 0x9f, 0xae, 0x42, 0xf9, 0x30, 0xe0, 0xa1, 0xff, 0xc4, 0x35,
0x26, 0x62, 0xf4, 0x26, 0xcc, 0x49, 0x1e, 0x2b, 0x19, 0x78, 0xc6, 0x57, 0xb3, 0xcc, 0xbf, 0x39,
0x6b, 0x27, 0x5b, 0x6e, 0x4e, 0xd0, 0x1d, 0x53, 0x43, 0x9f, 0xbd, 0x5e, 0x10, 0xfa, 0x92, 0x47,
0xbb, 0xbe, 0x59, 0x71, 0xcd, 0xcd, 0xb3, 0xe8, 0x25, 0xb8, 0xd0, 0x61, 0xde, 0x51, 0x57, 0x8a,
0x61, 0xe4, 0x6f, 0x89, 0x50, 0xc8, 0x46, 0x49, 0xbb, 0x3d, 0xc9, 0xa6, 0x57, 0xa1, 0xc4, 0xc2,
0xa0, 0x1b, 0x35, 0xca, 0x2b, 0xd6, 0xa5, 0xfa, 0x5a, 0xf3, 0x4c, 0x5f, 0x36, 0x50, 0xc2, 0x35,
0x82, 0x74, 0x17, 0x20, 0xc6, 0x10, 0xd1, 0x27, 0xdd, 0x98, 0xd5, 0x4b, 0x78, 0xe5, 0x4c, 0xb5,
0x2d, 0x11, 0x29, 0x1e, 0xa9, 0x56, 0x3b, 0x13, 0xdf, 0x99, 0x71, 0x73, 0xca, 0xf4, 0x75, 0xb0,
0x15, 0x7f, 0xa4, 0x1a, 0xf5, 0x73, 0xf6, 0x21, 0x35, 0xb2, 0xcf, 0x1f, 0xa9, 0x9d, 0x19, 0x57,
0x2b, 0xa0, 0x22, 0x86, 0x40, 0xe3, 0xc2, 0x14, 0x8a, 0xb7, 0x82, 0x90, 0xa3, 0x22, 0x2a, 0xd0,
0xb7, 0xa0, 0x1c, 0xb2, 0x13, 0x31, 0x54, 0x0d, 0xa2, 0x55, 0xff, 0xf6, 0x5c, 0xd5, 0x3b, 0x5a,
0x74, 0x67, 0xc6, 0x4d, 0x94, 0xe8, 0x75, 0x28, 0xfa, 0xc1, 0x71, 0x63, 0x41, 0xeb, 0xae, 0x9c,
0xab, 0xbb, 0x1d, 0x1c, 0xef, 0xcc, 0xb8, 0x28, 0x4e, 0xb7, 0xa0, 0xda, 0x11, 0xe2, 0xa8, 0xcf,
0xe4, 0x51, 0x83, 0x6a, 0xd5, 0x97, 0xce, 0x55, 0xdd, 0x4c, 0x84, 0x77, 0x66, 0xdc, 0x4c, 0x11,
0x97, 0x1c, 0x78, 0x22, 0x6a, 0x5c, 0x9c, 0x62, 0xc9, 0xbb, 0x9e, 0x88, 0x70, 0xc9, 0xa8, 0x80,
0x8a, 0x61, 0x10, 0x1d, 0x35, 0x16, 0xa7, 0x50, 0xbc, 0x13, 0x44, 0x38, 0xab, 0x56, 0x40, 0xb7,
0x7d, 0xa6, 0xd8, 0x71, 0xc0, 0x1f, 0x36, 0x9e, 0x99, 0xc2, 0xed, 0xed, 0x44, 0x18, 0xdd, 0x4e,
0x15, 0xd1, 0x88, 0x4c, 0x92, 0xad, 0xb1, 0x34, 0x85, 0x91, 0x34, 0x33, 0xd1, 0x48, 0xaa, 0x48,
0xff, 0x1d, 0x16, 0x0e, 0x39, 0x53, 0x43, 0xc9, 0xfd, 0x51, 0xa2, 0x3f, 0xab, 0xad, 0xb5, 0xce,
0x3f, 0xfb, 0x49, 0xad, 0x9d, 0x19, 0xf7, 0xb4, 0xa9, 0xe6, 0xc7, 0x30, 0x97, 0x4f, 0x37, 0x4a,
0xc1, 0x96, 0x9c, 0x99, 0x54, 0xaf, 0xba, 0xfa, 0x1b, 0x79, 0xdc, 0x0f, 0x94, 0x4e, 0xf5, 0xaa,
0xab, 0xbf, 0xe9, 0x12, 0x94, 0x25, 0xef, 0x8b, 0x63, 0xae, 0x33, 0xb9, 0xea, 0x26, 0x14, 0xca,
0xfa, 0x92, 0x75, 0x1b, 0xb6, 0x91, 0xc5, 0x6f, 0x94, 0xf5, 0xa5, 0x18, 0xec, 0x45, 0x3a, 0x13,
0xab, 0x6e, 0x42, 0x35, 0x7f, 0xf6, 0x1c, 0x54, 0x12, 0x77, 0x9b, 0xff, 0x01, 0x65, 0x13, 0x72,
0xf4, 0x6d, 0x28, 0xc5, 0xea, 0x24, 0xe4, 0xda, 0x85, 0xfa, 0xda, 0xdf, 0x4d, 0x11, 0xa6, 0xad,
0x36, 0x2a, 0xb8, 0x46, 0xcf, 0xb9, 0x06, 0x25, 0x4d, 0xd3, 0x0a, 0x14, 0x5d, 0xf1, 0x90, 0xcc,
0x50, 0x80, 0xf2, 0x96, 0x08, 0x87, 0xfd, 0x88, 0x58, 0xc8, 0xdc, 0x0e, 0x8e, 0x49, 0x01, 0x99,
0x3b, 0x9c, 0xf9, 0x5c, 0x92, 0x62, 0xf3, 0x6b, 0x0b, 0x6c, 0x0c, 0x00, 0xfa, 0x22, 0xcc, 0x2b,
0x26, 0xbb, 0xdc, 0xdc, 0x02, 0xbb, 0x69, 0xc9, 0x1b, 0x67, 0xd2, 0xb7, 0x52, 0x17, 0x0b, 0xda,
0xc5, 0x57, 0x9e, 0x18, 0x58, 0x63, 0x0e, 0xe6, 0x8a, 0x67, 0x71, 0xaa, 0xe2, 0xe9, 0xfc, 0x63,
0xba, 0xa2, 0x2a, 0xd8, 0xf7, 0x59, 0x97, 0x93, 0x19, 0x3a, 0x07, 0xd5, 0x34, 0xe8, 0x88, 0x45,
0xe7, 0xa1, 0xb6, 0xcd, 0xe2, 0x5e, 0x47, 0x30, 0xe9, 0x93, 0x02, 0x9d, 0x85, 0xca, 0x86, 0xf4,
0x7a, 0xc1, 0x31, 0x27, 0xc5, 0xe6, 0x07, 0x7a, 0xc1, 0xf4, 0x9f, 0xc6, 0xb7, 0xf5, 0xe5, 0x27,
0x65, 0xf0, 0xf8, 0x9e, 0x3e, 0x97, 0xf3, 0xe0, 0x4e, 0x10, 0xa1, 0x07, 0x55, 0xb0, 0xb7, 0x85,
0x8a, 0x89, 0xd5, 0xfc, 0xa5, 0x05, 0xd5, 0x34, 0x71, 0x29, 0x81, 0xe2, 0x50, 0x86, 0xc9, 0xbe,
0xe1, 0x27, 0x5d, 0x84, 0x92, 0x0a, 0x54, 0xb2, 0x5b, 0x35, 0xd7, 0x10, 0x58, 0xc9, 0x7d, 0x1e,
0x7b, 0x32, 0x18, 0xe8, 0x04, 0x29, 0xea, 0xb1, 0x3c, 0x8b, 0x3e, 0x0f, 0xb5, 0xa0, 0xcf, 0xba,
0x7c, 0x87, 0xc5, 0x3d, 0x1d, 0x4f, 0x35, 0x77, 0xc4, 0x40, 0xfd, 0x43, 0x76, 0x8c, 0x69, 0xae,
0xc7, 0x4d, 0x8d, 0xcf, 0xb3, 0xe8, 0x3a, 0xd8, 0xb8, 0xc0, 0xa4, 0xbc, 0xff, 0xf5, 0xc4, 0x82,
0xf1, 0x58, 0xee, 0x4b, 0x8e, 0x1b, 0xd8, 0xc2, 0xdb, 0xce, 0xd5, 0xc2, 0xcd, 0x26, 0xd8, 0x58,
0x42, 0x30, 0x8e, 0x23, 0xd6, 0xe7, 0xc9, 0x3a, 0xf4, 0x77, 0xf3, 0x22, 0x2c, 0x9c, 0xca, 0xaa,
0xe6, 0xd7, 0x25, 0xb0, 0xb1, 0x40, 0xa3, 0x86, 0xae, 0xe8, 0x89, 0x86, 0x2e, 0xd6, 0x4f, 0x15,
0x28, 0x68, 0x65, 0x3c, 0x50, 0xde, 0x82, 0x12, 0xee, 0x69, 0x1a, 0x27, 0x53, 0xa8, 0xdf, 0x45,
0x71, 0xd7, 0x68, 0xd1, 0x06, 0x54, 0xbc, 0x1e, 0xf7, 0x8e, 0xb8, 0x9f, 0xa4, 0x63, 0x4a, 0xe2,
0x91, 0x78, 0xb9, 0xab, 0xd1, 0x10, 0xcd, 0x9b, 0x50, 0xd2, 0xfa, 0x18, 0x2b, 0x66, 0x5e, 0x83,
0x77, 0x5e, 0x9e, 0x6e, 0xde, 0x64, 0xda, 0xe6, 0x97, 0x05, 0xb0, 0x91, 0xa6, 0x97, 0xa1, 0x24,
0x59, 0xd4, 0x35, 0x9b, 0x78, 0x1a, 0x36, 0xb9, 0x38, 0xe6, 0x1a, 0x11, 0xfa, 0x76, 0x72, 0x58,
0x66, 0xa3, 0x5e, 0x9d, 0x6e, 0xc6, 0xdc, 0xc1, 0xe1, 0x92, 0x06, 0x4c, 0xb2, 0x7e, 0x12, 0x49,
0x86, 0x70, 0xfe, 0xc7, 0x02, 0x1b, 0x85, 0xe8, 0x02, 0xcc, 0xb7, 0x95, 0x0c, 0x8e, 0xb8, 0xea,
0x49, 0x31, 0xec, 0xf6, 0x4c, 0x0a, 0xdd, 0xe6, 0x27, 0x26, 0x67, 0x2c, 0x2c, 0x07, 0xbb, 0x8a,
0x85, 0x81, 0x47, 0x0a, 0x18, 0xda, 0x9b, 0x22, 0xf4, 0x49, 0x91, 0x5e, 0x80, 0xd9, 0x07, 0x91,
0xcf, 0x65, 0xec, 0x09, 0xc9, 0x7d, 0x62, 0x27, 0xf1, 0x7f, 0x44, 0x4a, 0x98, 0x73, 0xe8, 0x88,
0xc6, 0x12, 0xa4, 0x4c, 0x2f, 0xc2, 0x85, 0xcd, 0x71, 0x80, 0x41, 0x2a, 0x98, 0x88, 0x77, 0x79,
0x84, 0x81, 0x42, 0xaa, 0xce, 0x8f, 0xac, 0x34, 0x89, 0xe6, 0xa1, 0x76, 0x9f, 0x49, 0xd6, 0x95,
0x6c, 0x80, 0x8e, 0xcc, 0x42, 0xc5, 0x54, 0xa2, 0x6b, 0xc4, 0x1a, 0x11, 0x6b, 0x26, 0x91, 0x0d,
0xb1, 0x4e, 0x8a, 0x23, 0xe2, 0x3a, 0xb1, 0x69, 0x0d, 0x4a, 0xef, 0x0d, 0x85, 0xe2, 0xa4, 0x84,
0x2e, 0x6d, 0x09, 0x9f, 0x93, 0x32, 0x32, 0xf7, 0x31, 0xb9, 0x48, 0x05, 0x17, 0xb7, 0x85, 0x87,
0xdd, 0x11, 0x8f, 0x48, 0x15, 0x17, 0x87, 0xfb, 0xc5, 0x7d, 0x52, 0xc3, 0x91, 0x7b, 0xc3, 0x7e,
0x87, 0xe3, 0x7a, 0x00, 0x47, 0xf6, 0x45, 0xb7, 0x1b, 0x72, 0x32, 0x8b, 0x8b, 0xdd, 0x1e, 0xe5,
0x1f, 0x99, 0x6b, 0xfe, 0xa6, 0x00, 0x36, 0x62, 0x08, 0x8c, 0xed, 0x1e, 0x66, 0x59, 0x12, 0xdb,
0xf8, 0x9d, 0x65, 0x48, 0x61, 0x94, 0x21, 0xf4, 0xcd, 0xe4, 0x14, 0x8b, 0x53, 0xd4, 0x18, 0x34,
0x9c, 0x3f, 0x40, 0x0a, 0x76, 0x3f, 0xe8, 0xf3, 0x24, 0xd3, 0xf5, 0x37, 0xf2, 0xe2, 0xe0, 0x63,
0xae, 0xc3, 0xb4, 0xe8, 0xea, 0x6f, 0x8c, 0x6a, 0xe6, 0xfb, 0xdc, 0xdf, 0x50, 0x3a, 0xb3, 0x8b,
0x6e, 0x4a, 0x9a, 0x6c, 0x63, 0x8a, 0x37, 0x2a, 0x53, 0x64, 0x9b, 0x9e, 0xbe, 0x8d, 0xe2, 0xae,
0xd1, 0x72, 0xae, 0x26, 0xa1, 0x52, 0x05, 0xfb, 0x9e, 0x48, 0x4b, 0x1c, 0x8a, 0x11, 0x0b, 0x77,
0x76, 0x17, 0x4b, 0x0f, 0x29, 0xe0, 0xe7, 0x41, 0xe0, 0x73, 0x41, 0x8a, 0xce, 0x6b, 0x78, 0xa0,
0x4c, 0x71, 0xe4, 0xdd, 0xec, 0x0f, 0xd4, 0x09, 0x99, 0xc1, 0xb3, 0x7d, 0x30, 0x08, 0x05, 0xf3,
0x83, 0xa8, 0x4b, 0x2c, 0x53, 0x25, 0xa3, 0x44, 0xef, 0xa6, 0x94, 0x02, 0xaf, 0x9b, 0x39, 0x80,
0x11, 0x30, 0x6c, 0x7e, 0x6f, 0x7e, 0x54, 0xcb, 0xf1, 0xae, 0x8c, 0xc5, 0x50, 0x7a, 0x69, 0xe5,
0x49, 0x28, 0xfa, 0x0e, 0x94, 0x70, 0x1c, 0xf1, 0x36, 0xa6, 0xe4, 0xe5, 0xa9, 0xe0, 0x48, 0xeb,
0x20, 0xe0, 0x0f, 0x5d, 0xa3, 0x48, 0x6f, 0x40, 0x4d, 0x4e, 0xfb, 0x54, 0x18, 0x49, 0xd2, 0x65,
0x00, 0xe6, 0xa9, 0xe0, 0x98, 0xa3, 0xad, 0x24, 0xb9, 0x72, 0x9c, 0xe6, 0x1f, 0x0b, 0x60, 0xe3,
0xc7, 0xa9, 0x27, 0xc2, 0xd6, 0x58, 0x46, 0xaf, 0x4e, 0xef, 0xf0, 0x44, 0x50, 0xe8, 0x20, 0x2b,
0xe6, 0x82, 0xec, 0x1d, 0x28, 0xc5, 0x42, 0xaa, 0x74, 0x11, 0x53, 0x6e, 0x45, 0x5b, 0x48, 0xe5,
0x1a, 0x45, 0x7a, 0x0b, 0x2a, 0x87, 0x41, 0xa8, 0xb8, 0x34, 0xaf, 0x9e, 0xd9, 0xb5, 0x2b, 0xd3,
0xd9, 0xb8, 0xa5, 0x95, 0xdc, 0x54, 0x99, 0xde, 0xc9, 0x6f, 0x69, 0x59, 0x5b, 0x6a, 0x4d, 0x67,
0xe9, 0x8c, 0x9d, 0x76, 0xae, 0x27, 0xf1, 0x87, 0x59, 0xcc, 0x3a, 0x61, 0x12, 0x80, 0x77, 0x82,
0x58, 0x99, 0xb2, 0xf0, 0x2e, 0x0b, 0x43, 0x2e, 0x4f, 0x0c, 0x74, 0xb9, 0xcd, 0xa2, 0x0e, 0x8b,
0x48, 0xb1, 0xf9, 0xd3, 0x22, 0x54, 0x53, 0x6b, 0x78, 0xf9, 0x1e, 0xf1, 0x93, 0xf4, 0xf2, 0x3d,
0xe2, 0x27, 0xfa, 0x12, 0x8d, 0x0f, 0x82, 0x38, 0xe8, 0x24, 0xb7, 0x50, 0xd5, 0x1d, 0x31, 0xb0,
0x68, 0x3e, 0x0c, 0x7c, 0xd5, 0xd3, 0xfb, 0x5b, 0x72, 0x0d, 0x81, 0x4f, 0x28, 0x9f, 0x29, 0xbe,
0x1b, 0x79, 0xe1, 0xd0, 0xe7, 0xfb, 0x98, 0x94, 0x06, 0xb8, 0x4d, 0xb2, 0xe9, 0xbf, 0x02, 0xa8,
0xa0, 0xcf, 0x6f, 0x09, 0xd9, 0x67, 0x2a, 0xb9, 0x68, 0xdf, 0x78, 0xba, 0x1d, 0x68, 0xed, 0x67,
0x06, 0xdc, 0x9c, 0x31, 0x34, 0x8d, 0xb3, 0x25, 0xa6, 0x2b, 0xdf, 0xc9, 0xf4, 0x76, 0x66, 0xc0,
0xcd, 0x19, 0x73, 0xfe, 0x0d, 0x60, 0x34, 0x42, 0x97, 0x80, 0xde, 0x15, 0x91, 0xea, 0x6d, 0x74,
0x3a, 0x72, 0x93, 0x1f, 0x0a, 0xc9, 0xb7, 0x19, 0x26, 0xf2, 0x33, 0xb0, 0x90, 0xf1, 0x37, 0x0e,
0x15, 0x97, 0xc8, 0xd6, 0x95, 0xa0, 0xdd, 0x13, 0x52, 0x99, 0xea, 0xac, 0x3f, 0x1f, 0xb4, 0x49,
0x11, 0x71, 0xe5, 0x6e, 0x7b, 0x8f, 0xd8, 0xce, 0x25, 0x80, 0xd1, 0x92, 0xb0, 0xda, 0x9a, 0xaf,
0x6b, 0x6b, 0xe6, 0xca, 0x31, 0xd4, 0xda, 0x75, 0x62, 0x35, 0xff, 0xdb, 0x02, 0x1b, 0xc3, 0x12,
0xb1, 0x4c, 0xea, 0xf3, 0xed, 0xec, 0xf8, 0xf2, 0xac, 0xef, 0x96, 0x4c, 0x68, 0x3b, 0x97, 0x4c,
0xce, 0x5f, 0x25, 0x01, 0x56, 0x81, 0xe2, 0x46, 0xec, 0x25, 0x10, 0x8e, 0xc7, 0x1e, 0xb1, 0x9a,
0xff, 0x6f, 0x43, 0xd9, 0x44, 0x37, 0x7d, 0x0f, 0xaa, 0x62, 0xc0, 0x25, 0x53, 0x42, 0x26, 0x58,
0xf1, 0xc6, 0xd3, 0x64, 0x47, 0x6b, 0x2f, 0x51, 0x76, 0x33, 0x33, 0x93, 0xeb, 0x2b, 0x9c, 0x5e,
0xdf, 0x65, 0x20, 0x69, 0x22, 0xdc, 0x97, 0xa8, 0xa7, 0x4e, 0x12, 0x6c, 0x72, 0x8a, 0x4f, 0xf7,
0xa1, 0xe6, 0x89, 0xc8, 0x0f, 0x32, 0xdc, 0x58, 0x5f, 0x7b, 0xed, 0xa9, 0x3c, 0xdc, 0x4a, 0xb5,
0xdd, 0x91, 0x21, 0x7a, 0x05, 0x4a, 0xc7, 0x2c, 0x1c, 0x9a, 0xfb, 0x67, 0x76, 0x6d, 0xe9, 0x14,
0x26, 0x3f, 0xc0, 0x51, 0xd7, 0x08, 0x39, 0xcf, 0x41, 0x35, 0x5d, 0xa7, 0xde, 0xce, 0xc8, 0x27,
0x33, 0xb4, 0x0c, 0x85, 0x3d, 0x49, 0x2c, 0xe7, 0xe7, 0x16, 0xd4, 0xb2, 0x39, 0x72, 0xd7, 0x09,
0xde, 0x00, 0x1f, 0x0d, 0x59, 0x48, 0x2c, 0x7d, 0x09, 0x0b, 0x65, 0x28, 0x1d, 0x48, 0xef, 0x4a,
0xce, 0x14, 0xbe, 0x45, 0x74, 0xce, 0xf3, 0x38, 0x26, 0x36, 0xa5, 0x50, 0x4f, 0xd8, 0x7b, 0xd2,
0x88, 0x96, 0xf0, 0x8e, 0xc6, 0xd1, 0x94, 0x51, 0x36, 0x25, 0xe2, 0x88, 0x1b, 0xb0, 0x71, 0x4f,
0x28, 0x4d, 0x54, 0xd1, 0x97, 0xdd, 0x88, 0xd4, 0x70, 0xce, 0x7b, 0x42, 0xed, 0x46, 0x04, 0x46,
0x97, 0xd4, 0x6c, 0x3a, 0xbd, 0xa6, 0xe6, 0x70, 0x60, 0x23, 0x0c, 0x77, 0x23, 0x32, 0x9f, 0x0c,
0x18, 0xaa, 0xde, 0x7c, 0xfe, 0xbc, 0xd2, 0xe2, 0x1c, 0x40, 0xf5, 0xbe, 0x88, 0x27, 0x17, 0x59,
0x81, 0xe2, 0xbe, 0x18, 0x18, 0x40, 0xb5, 0x29, 0x94, 0x12, 0x7d, 0x03, 0xa8, 0xee, 0xf0, 0x43,
0x45, 0x8a, 0x38, 0x97, 0x1b, 0x74, 0x7b, 0xca, 0x40, 0x98, 0xdd, 0x28, 0xe2, 0x92, 0x94, 0xd0,
0x75, 0x97, 0x0f, 0x42, 0xe6, 0x71, 0x52, 0x76, 0x5e, 0x47, 0x77, 0x82, 0x6e, 0x84, 0x57, 0xa9,
0xfe, 0xd0, 0xaa, 0x33, 0xb8, 0x74, 0x4d, 0x6e, 0xf1, 0x08, 0x77, 0xca, 0xa2, 0x75, 0x00, 0xd3,
0x9e, 0xd1, 0x06, 0x0b, 0x9b, 0x35, 0xa8, 0x78, 0xe6, 0xc8, 0x9d, 0xfb, 0x30, 0xaf, 0x63, 0xe0,
0x2e, 0x57, 0x6c, 0x2f, 0x0a, 0x4f, 0xfe, 0xec, 0x06, 0x96, 0xf3, 0x2a, 0x94, 0x34, 0x60, 0xc5,
0x2b, 0xe9, 0x50, 0x8a, 0xbe, 0xb6, 0x55, 0x72, 0xf5, 0x37, 0x5a, 0x57, 0x42, 0x5b, 0x2a, 0xb9,
0x05, 0x25, 0x9c, 0x5f, 0x59, 0x50, 0xd9, 0xf0, 0x3c, 0x31, 0x8c, 0xd4, 0xa9, 0x99, 0xcf, 0xc2,
0x4d, 0x37, 0xa0, 0xcc, 0x8e, 0x99, 0x62, 0x32, 0x41, 0xfa, 0x2f, 0x4c, 0xc4, 0x73, 0x62, 0xab,
0xb5, 0xa1, 0x85, 0xdc, 0x44, 0xb8, 0xc9, 0xa1, 0x6c, 0x38, 0xf4, 0x0d, 0x28, 0xe9, 0xa7, 0x51,
0x02, 0xb5, 0xa7, 0x6a, 0x0b, 0x19, 0x0d, 0xba, 0x94, 0xbe, 0x05, 0xb4, 0x43, 0xc8, 0xd7, 0xe4,
0x66, 0x35, 0xf5, 0xc9, 0xf9, 0x83, 0x05, 0xb3, 0xb9, 0xe7, 0xd2, 0x5f, 0xf0, 0x89, 0xd7, 0x84,
0xaa, 0x76, 0xe2, 0x81, 0x0c, 0x13, 0xdc, 0x97, 0xd1, 0x08, 0x3c, 0x92, 0xd7, 0x1c, 0x8e, 0x9a,
0x62, 0x90, 0xe3, 0x7c, 0xa7, 0xe7, 0x9d, 0xb3, 0x96, 0x94, 0xc0, 0x59, 0xa8, 0x3c, 0x88, 0x8e,
0x22, 0xf1, 0x30, 0x32, 0x65, 0x50, 0xbf, 0xaa, 0xc7, 0x60, 0x5e, 0xd5, 0x3c, 0xeb, 0x48, 0xd1,
0xf9, 0xcc, 0x9e, 0xe8, 0x91, 0xdc, 0x84, 0xb2, 0xe9, 0x92, 0xea, 0xf7, 0x51, 0x7d, 0xed, 0xef,
0x4f, 0xc1, 0xa8, 0x91, 0x70, 0x6b, 0x4f, 0x4b, 0xe6, 0x58, 0x6e, 0xa2, 0x4c, 0xef, 0xe4, 0x9a,
0x4c, 0x06, 0xd5, 0x5d, 0x3d, 0xcf, 0x50, 0x5a, 0xc5, 0xc6, 0xba, 0xa3, 0x99, 0x85, 0xe6, 0x7f,
0x59, 0xb0, 0x78, 0x96, 0x08, 0xe2, 0xe5, 0xce, 0x58, 0x33, 0x23, 0x25, 0x69, 0x7b, 0xa2, 0x27,
0x5b, 0xd0, 0xab, 0x59, 0x7d, 0x4a, 0x27, 0xc6, 0x3b, 0xb4, 0xce, 0xa7, 0x16, 0x2c, 0x9c, 0x5a,
0x73, 0xae, 0x3e, 0x00, 0x94, 0xb7, 0x79, 0xc8, 0x15, 0x37, 0x6d, 0x8b, 0xec, 0x21, 0x6d, 0x60,
0x8d, 0x0e, 0xd4, 0xd8, 0x3c, 0x76, 0xb6, 0x4d, 0x77, 0x9c, 0xd8, 0x98, 0xe8, 0x78, 0x6a, 0x5b,
0x3d, 0x4c, 0x40, 0x52, 0xa2, 0x04, 0xe6, 0x4c, 0xe3, 0x27, 0xe1, 0x94, 0xb1, 0x6e, 0xed, 0xf3,
0xfe, 0x20, 0x64, 0x8a, 0x93, 0x8a, 0xe3, 0xc2, 0xc5, 0x33, 0x1c, 0xd5, 0x53, 0x1f, 0x24, 0x6e,
0xd4, 0x01, 0xb6, 0x0f, 0xd2, 0xc9, 0x89, 0x85, 0xb5, 0x76, 0xfb, 0x60, 0x4b, 0x57, 0x5b, 0xe3,
0xbd, 0x29, 0xcb, 0xdb, 0x07, 0x88, 0x48, 0x63, 0x52, 0x74, 0x7e, 0x5f, 0x04, 0xd8, 0xcb, 0x7a,
0xe3, 0x67, 0xe4, 0xc0, 0xd9, 0x79, 0x9d, 0x03, 0x88, 0xc5, 0xa9, 0x31, 0xf7, 0x3f, 0x64, 0xad,
0x5a, 0x5b, 0x07, 0xf7, 0x64, 0xbb, 0x75, 0xe4, 0x47, 0xd2, 0x00, 0xcb, 0xba, 0xb4, 0x08, 0xf7,
0x3c, 0x11, 0xdd, 0xec, 0x8b, 0x0f, 0x83, 0x24, 0x67, 0x46, 0x8c, 0xc9, 0x84, 0x2c, 0x9f, 0x4e,
0xc8, 0x25, 0x28, 0xf7, 0x02, 0xdf, 0xe7, 0x91, 0x46, 0x5c, 0x55, 0x37, 0xa1, 0x30, 0x51, 0x25,
0x67, 0xbe, 0x88, 0xc2, 0x93, 0x06, 0xe8, 0x91, 0x8c, 0xa6, 0xeb, 0x50, 0x52, 0xfa, 0x17, 0x84,
0xaa, 0x8e, 0x9f, 0xc9, 0xda, 0x35, 0xfa, 0x51, 0x45, 0xe7, 0xa1, 0x91, 0xc5, 0xec, 0x0e, 0xe2,
0xa4, 0x49, 0xe5, 0x37, 0x6a, 0xda, 0x64, 0x8e, 0xe3, 0x7c, 0x66, 0x65, 0x0d, 0xc1, 0x1a, 0x94,
0x3a, 0x2c, 0x0e, 0x3c, 0xf3, 0x52, 0x1e, 0x48, 0x71, 0x68, 0xde, 0x64, 0x55, 0xb0, 0x95, 0xf0,
0x05, 0x29, 0xe0, 0x9d, 0x13, 0x73, 0xbc, 0x5d, 0xea, 0x00, 0xa3, 0xdf, 0x2f, 0x88, 0x8d, 0x61,
0x91, 0xee, 0xaa, 0x79, 0x28, 0x6b, 0xd5, 0x32, 0x06, 0x9e, 0x9f, 0xf5, 0xcb, 0x2a, 0x38, 0x83,
0x2e, 0x3b, 0xa4, 0x8a, 0x1a, 0x98, 0x52, 0x1d, 0x16, 0x73, 0xb2, 0xe8, 0x7c, 0x39, 0xf2, 0xe2,
0x6a, 0x56, 0xc6, 0xa7, 0x39, 0x8f, 0xc7, 0x15, 0xfa, 0x9b, 0xb0, 0x20, 0xf9, 0x47, 0xc3, 0x60,
0xac, 0x9d, 0xfb, 0x84, 0xc0, 0x38, 0xad, 0xe1, 0x1c, 0xc3, 0x42, 0x4a, 0xfc, 0x4b, 0xa0, 0x7a,
0x1a, 0x9a, 0xd0, 0xf5, 0x5c, 0xbf, 0xd9, 0x4a, 0x2e, 0xb5, 0xc7, 0x98, 0x1c, 0xf5, 0x97, 0x33,
0xd8, 0x53, 0x98, 0x06, 0xf6, 0xfc, 0x6f, 0xe5, 0xdc, 0xc7, 0xc6, 0x0d, 0x28, 0x1f, 0x1a, 0xbc,
0x6e, 0x70, 0xea, 0x0b, 0x8f, 0x99, 0x3f, 0xc1, 0xe4, 0x89, 0xf0, 0x99, 0x8f, 0xbc, 0x37, 0x61,
0xce, 0xe7, 0x87, 0x6c, 0x18, 0xaa, 0x83, 0x29, 0x50, 0xd9, 0x98, 0x2c, 0xdd, 0xd4, 0x4f, 0x07,
0xd6, 0x36, 0xef, 0xe8, 0x92, 0x76, 0xc5, 0x79, 0x8c, 0x2b, 0xba, 0xa2, 0x19, 0x49, 0x37, 0xa7,
0x95, 0x4b, 0x84, 0xf2, 0x59, 0x89, 0x80, 0x98, 0x22, 0x49, 0x91, 0x8c, 0x36, 0x20, 0xd6, 0x7c,
0xa7, 0xe6, 0xf5, 0xcf, 0x34, 0x55, 0xf7, 0x14, 0x1f, 0x6f, 0xcc, 0xfe, 0x30, 0x54, 0x41, 0xa3,
0xaa, 0x05, 0x0c, 0x31, 0xf9, 0x93, 0x5c, 0xed, 0xd4, 0x4f, 0x72, 0xf4, 0x9f, 0x01, 0x62, 0x1e,
0x72, 0x4f, 0x6d, 0x07, 0x9e, 0x6a, 0xcc, 0xe9, 0xc8, 0x59, 0x7e, 0xdc, 0xda, 0xf6, 0x74, 0x52,
0xbb, 0x39, 0x0d, 0xf4, 0xbf, 0xcf, 0x1e, 0x6d, 0x21, 0x9a, 0x68, 0xcc, 0x6b, 0xbc, 0x92, 0xd1,
0x93, 0xe5, 0xa1, 0x7e, 0xba, 0x3c, 0xac, 0x43, 0x29, 0xf6, 0xc4, 0x80, 0xeb, 0x5f, 0x54, 0x1e,
0x7f, 0xbe, 0xad, 0x36, 0x0a, 0xb9, 0x46, 0x56, 0xb7, 0x21, 0xb1, 0xb0, 0x0a, 0xa9, 0x7f, 0x4b,
0xa9, 0xb9, 0x29, 0xd9, 0xfc, 0xa1, 0x05, 0x65, 0xe3, 0xe3, 0x59, 0x28, 0x49, 0x77, 0x53, 0x0b,
0xb9, 0x6e, 0x6a, 0xd6, 0xb5, 0x2c, 0xe6, 0xba, 0x96, 0xf4, 0xcd, 0xd4, 0x27, 0x53, 0x2b, 0x5f,
0x3c, 0x7f, 0x33, 0xc6, 0x5c, 0x73, 0xae, 0x40, 0x49, 0xd3, 0x58, 0x01, 0x42, 0xe1, 0xb1, 0xd0,
0xbc, 0xd1, 0xe4, 0xe8, 0x5e, 0x80, 0x34, 0xa4, 0x49, 0xc1, 0x79, 0x3f, 0x95, 0x86, 0x14, 0x00,
0x18, 0xf0, 0x80, 0xb3, 0x11, 0x8b, 0x2e, 0x02, 0x89, 0xb9, 0xda, 0x3b, 0xdc, 0xef, 0xf1, 0x36,
0xeb, 0x73, 0x5d, 0x82, 0x0a, 0xb4, 0x01, 0x8b, 0x46, 0x36, 0x1e, 0x1f, 0xd1, 0x57, 0x5c, 0x18,
0x74, 0x24, 0x93, 0x27, 0xc4, 0x76, 0xd6, 0xf5, 0x9b, 0x34, 0x8d, 0xbe, 0xd9, 0xec, 0x37, 0x64,
0x53, 0xf4, 0x7c, 0x2e, 0xb1, 0x2a, 0x9a, 0x3e, 0x00, 0x33, 0x60, 0x90, 0x14, 0x9c, 0xcd, 0xdc,
0xfd, 0x39, 0x7e, 0xd7, 0x58, 0xd3, 0xde, 0x35, 0xce, 0x6d, 0xb8, 0x90, 0xb2, 0xcd, 0x0e, 0xe1,
0xf5, 0x53, 0x11, 0x83, 0xbc, 0x9d, 0x27, 0x05, 0x58, 0x2a, 0x7e, 0xf9, 0xd7, 0x05, 0xa8, 0x8f,
0xd7, 0x7b, 0x44, 0xed, 0x9b, 0x18, 0xfd, 0x9e, 0x1c, 0xf6, 0x3b, 0x71, 0x0e, 0x6d, 0x11, 0x1c,
0xba, 0x6f, 0xaa, 0xb9, 0x66, 0x2c, 0xe0, 0xd0, 0x8e, 0xe8, 0x73, 0xb2, 0x92, 0xff, 0x05, 0xe3,
0x6a, 0xfa, 0x5b, 0x87, 0xae, 0xc9, 0xef, 0x60, 0xb1, 0x6f, 0x73, 0x45, 0x36, 0x10, 0x05, 0xb4,
0xf7, 0x47, 0xa5, 0x97, 0x7c, 0x40, 0x6b, 0x49, 0xbf, 0xee, 0x93, 0x02, 0x9d, 0xcf, 0x01, 0x82,
0xef, 0x17, 0xe8, 0x22, 0x5c, 0xd8, 0x1c, 0x46, 0x7e, 0xc8, 0xfd, 0x8c, 0xfb, 0x03, 0xcd, 0xd5,
0x6d, 0x51, 0xa5, 0x9f, 0x1e, 0xda, 0xc8, 0xe7, 0x78, 0x62, 0x17, 0x73, 0xdc, 0x0c, 0x23, 0x7c,
0x31, 0x39, 0x92, 0x59, 0xfa, 0xbf, 0xbc, 0xfd, 0x4c, 0xfe, 0x13, 0x1b, 0xb9, 0xbb, 0x91, 0xcf,
0x1f, 0xe5, 0xb8, 0x9f, 0xda, 0x74, 0x09, 0x16, 0x12, 0xd9, 0x9c, 0xf3, 0xff, 0x69, 0xd3, 0x8b,
0x50, 0xdf, 0x30, 0xdb, 0x9c, 0xec, 0x0a, 0xf9, 0xcc, 0xbe, 0xfc, 0x63, 0x0b, 0xea, 0xe3, 0x65,
0x13, 0xb7, 0x23, 0x14, 0x51, 0x17, 0x53, 0xc2, 0xf4, 0x1b, 0xe3, 0x9e, 0x90, 0x4a, 0x93, 0x3a,
0x5e, 0x23, 0xdd, 0xdd, 0x35, 0x78, 0x2a, 0x56, 0x4c, 0x0d, 0x63, 0xd3, 0x9e, 0x50, 0xac, 0x4b,
0x66, 0x71, 0x8f, 0x7d, 0x74, 0xda, 0xce, 0xae, 0xc3, 0x12, 0x5a, 0xf4, 0xd2, 0x66, 0x71, 0x19,
0x45, 0x87, 0x32, 0x34, 0xd7, 0x22, 0xef, 0xb3, 0x20, 0x24, 0x55, 0xfc, 0x1c, 0xf4, 0x10, 0x39,
0xd5, 0x0c, 0x57, 0x7c, 0x18, 0x98, 0xe6, 0x71, 0x92, 0x07, 0x3e, 0xfa, 0x91, 0x05, 0x15, 0xe1,
0x9b, 0x97, 0x7f, 0xf1, 0xcd, 0xb2, 0xf5, 0xd5, 0x37, 0xcb, 0xd6, 0xef, 0xbe, 0x59, 0xb6, 0x3e,
0xff, 0x76, 0x79, 0xe6, 0xab, 0x6f, 0x97, 0x67, 0x7e, 0xfb, 0xed, 0xf2, 0xcc, 0xfb, 0x64, 0xf2,
0xbf, 0x1b, 0x9d, 0xb2, 0xae, 0xe6, 0xeb, 0x7f, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x95, 0xe6, 0xf1,
0x8e, 0xd6, 0x21, 0x00, 0x00,
}
func (m *SmartBlockSnapshotBase) Marshal() (dAtA []byte, err error) {
@ -5733,6 +5780,43 @@ func (m *Relations) MarshalToSizedBuffer(dAtA []byte) (int, error) {
return len(dAtA) - i, nil
}
func (m *RelationOptions) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *RelationOptions) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *RelationOptions) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.Options) > 0 {
for iNdEx := len(m.Options) - 1; iNdEx >= 0; iNdEx-- {
{
size, err := m.Options[iNdEx].MarshalToSizedBuffer(dAtA[:i])
if err != nil {
return 0, err
}
i -= size
i = encodeVarintModels(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0xa
}
}
return len(dAtA) - i, nil
}
func encodeVarintModels(dAtA []byte, offset int, v uint64) int {
offset -= sovModels(v)
base := offset
@ -6688,6 +6772,21 @@ func (m *Relations) Size() (n int) {
return n
}
func (m *RelationOptions) Size() (n int) {
if m == nil {
return 0
}
var l int
_ = l
if len(m.Options) > 0 {
for _, e := range m.Options {
l = e.Size()
n += 1 + l + sovModels(uint64(l))
}
}
return n
}
func sovModels(x uint64) (n int) {
return (math_bits.Len64(x|1) + 6) / 7
}
@ -12331,6 +12430,90 @@ func (m *Relations) Unmarshal(dAtA []byte) error {
}
return nil
}
func (m *RelationOptions) Unmarshal(dAtA []byte) error {
l := len(dAtA)
iNdEx := 0
for iNdEx < l {
preIndex := iNdEx
var wire uint64
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowModels
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
wire |= uint64(b&0x7F) << shift
if b < 0x80 {
break
}
}
fieldNum := int32(wire >> 3)
wireType := int(wire & 0x7)
if wireType == 4 {
return fmt.Errorf("proto: RelationOptions: wiretype end group for non-group")
}
if fieldNum <= 0 {
return fmt.Errorf("proto: RelationOptions: illegal tag %d (wire type %d)", fieldNum, wire)
}
switch fieldNum {
case 1:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Options", wireType)
}
var msglen int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowModels
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
msglen |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
if msglen < 0 {
return ErrInvalidLengthModels
}
postIndex := iNdEx + msglen
if postIndex < 0 {
return ErrInvalidLengthModels
}
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Options = append(m.Options, &RelationOption{})
if err := m.Options[len(m.Options)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
return err
}
iNdEx = postIndex
default:
iNdEx = preIndex
skippy, err := skipModels(dAtA[iNdEx:])
if err != nil {
return err
}
if (skippy < 0) || (iNdEx+skippy) < 0 {
return ErrInvalidLengthModels
}
if (iNdEx + skippy) > l {
return io.ErrUnexpectedEOF
}
iNdEx += skippy
}
}
if iNdEx > l {
return io.ErrUnexpectedEOF
}
return nil
}
func skipModels(dAtA []byte) (n int, err error) {
l := len(dAtA)
iNdEx := 0

View file

@ -521,3 +521,7 @@ message Relations {
repeated Relation relations = 1;
}
message RelationOptions {
repeated Relation.Option options = 1;
}

View file

@ -266,6 +266,28 @@ func RelationSelectDictEqual(dict1, dict2 []*model.RelationOption) bool {
}
func RelationSelectDictDiff(dict1, dict2 []*model.RelationOption) (added []*model.RelationOption, updated []*model.RelationOption, removed []string) {
for i := 0; i < len(dict2); i++ {
if opt := GetOption(dict1, dict2[i].Id); opt == nil {
added = append(added, dict2[i])
continue
} else {
if !OptionEqual(opt, dict2[i]) {
updated = append(updated, dict2[i])
continue
}
}
}
for i := 0; i < len(dict1); i++ {
if r := GetOption(dict2, dict1[i].Id); r == nil {
removed = append(removed, dict1[i].Id)
continue
}
}
return
}
func RelationSelectDictDiffOmitScope(dict1, dict2 []*model.RelationOption) (added []*model.RelationOption, updated []*model.RelationOption, removed []string) {
for i := 0; i < len(dict2); i++ {
if opt := GetOption(dict1, dict2[i].Id); opt == nil {
added = append(added, dict2[i])
@ -473,3 +495,19 @@ func SortedRange(s *types.Struct, f func(k string, v *types.Value)) {
f(k, s.Fields[k])
}
}
// RelationOptionsFilterScope returns only options with provided scope reusing underlying pb values pointers
func RelationOptionsFilterScope(options []*model.RelationOption, scope model.RelationOptionScope) []*model.RelationOption {
if len(options) == 0 {
return nil
}
res := make([]*model.RelationOption, 0, len(options))
for i := range options {
if options[i].Scope == scope {
res = append(res, options[i])
}
}
return res
}

View file

@ -81,6 +81,14 @@ func CopyRelation(in *model.Relation) (out *model.Relation) {
return out
}
func CopyRelationOptions(in []*model.RelationOption) (out []*model.RelationOption) {
out = make([]*model.RelationOption, len(in))
for i := range in {
out[i] = &*in[i]
}
return
}
func CopyLayout(in *model.Layout) (out *model.Layout) {
return &model.Layout{Id: in.Id, Name: in.Name, RequiredRelations: CopyRelations(in.RequiredRelations)}
}