VOL-1598 Update openolt.proto for multicast support
Change-Id: I84a07712070a82a53eba452cb103c32a33b73386
diff --git a/VERSION b/VERSION
index 4a36342..fd2a018 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.0.0
+3.1.0
diff --git a/go/openolt/openolt.pb.go b/go/openolt/openolt.pb.go
index 378ede0..5bc0537 100644
--- a/go/openolt/openolt.pb.go
+++ b/go/openolt/openolt.pb.go
@@ -168,6 +168,62 @@
return fileDescriptor_c072e7aa0dfd74d5, []int{15, 0, 0, 1}
}
+type GroupMember_InterfaceType int32
+
+const (
+ GroupMember_PON GroupMember_InterfaceType = 0
+ GroupMember_EPON_1G_PATH GroupMember_InterfaceType = 1
+ GroupMember_EPON_10G_PATH GroupMember_InterfaceType = 2
+)
+
+var GroupMember_InterfaceType_name = map[int32]string{
+ 0: "PON",
+ 1: "EPON_1G_PATH",
+ 2: "EPON_10G_PATH",
+}
+
+var GroupMember_InterfaceType_value = map[string]int32{
+ "PON": 0,
+ "EPON_1G_PATH": 1,
+ "EPON_10G_PATH": 2,
+}
+
+func (x GroupMember_InterfaceType) String() string {
+ return proto.EnumName(GroupMember_InterfaceType_name, int32(x))
+}
+
+func (GroupMember_InterfaceType) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_c072e7aa0dfd74d5, []int{36, 0}
+}
+
+type Group_GroupMembersCommand int32
+
+const (
+ Group_ADD_MEMBERS Group_GroupMembersCommand = 0
+ Group_REMOVE_MEMBERS Group_GroupMembersCommand = 1
+ Group_SET_MEMBERS Group_GroupMembersCommand = 2
+)
+
+var Group_GroupMembersCommand_name = map[int32]string{
+ 0: "ADD_MEMBERS",
+ 1: "REMOVE_MEMBERS",
+ 2: "SET_MEMBERS",
+}
+
+var Group_GroupMembersCommand_value = map[string]int32{
+ "ADD_MEMBERS": 0,
+ "REMOVE_MEMBERS": 1,
+ "SET_MEMBERS": 2,
+}
+
+func (x Group_GroupMembersCommand) String() string {
+ return proto.EnumName(Group_GroupMembersCommand_name, int32(x))
+}
+
+func (Group_GroupMembersCommand) EnumDescriptor() ([]byte, []int) {
+ return fileDescriptor_c072e7aa0dfd74d5, []int{37, 0}
+}
+
type Indication struct {
// Types that are valid to be assigned to Data:
// *Indication_OltInd
@@ -1773,6 +1829,12 @@
AddOuterTag bool `protobuf:"varint,1,opt,name=add_outer_tag,json=addOuterTag,proto3" json:"add_outer_tag,omitempty"`
RemoveOuterTag bool `protobuf:"varint,2,opt,name=remove_outer_tag,json=removeOuterTag,proto3" json:"remove_outer_tag,omitempty"`
TrapToHost bool `protobuf:"varint,3,opt,name=trap_to_host,json=trapToHost,proto3" json:"trap_to_host,omitempty"`
+ RemarkOuterPbits bool `protobuf:"varint,4,opt,name=remark_outer_pbits,json=remarkOuterPbits,proto3" json:"remark_outer_pbits,omitempty"`
+ RemarkInnerPbits bool `protobuf:"varint,5,opt,name=remark_inner_pbits,json=remarkInnerPbits,proto3" json:"remark_inner_pbits,omitempty"`
+ AddInnerTag bool `protobuf:"varint,6,opt,name=add_inner_tag,json=addInnerTag,proto3" json:"add_inner_tag,omitempty"`
+ RemoveInnerTag bool `protobuf:"varint,7,opt,name=remove_inner_tag,json=removeInnerTag,proto3" json:"remove_inner_tag,omitempty"`
+ TranslateInnerTag bool `protobuf:"varint,8,opt,name=translate_inner_tag,json=translateInnerTag,proto3" json:"translate_inner_tag,omitempty"`
+ TranslateOuterTag bool `protobuf:"varint,9,opt,name=translate_outer_tag,json=translateOuterTag,proto3" json:"translate_outer_tag,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -1824,6 +1886,48 @@
return false
}
+func (m *ActionCmd) GetRemarkOuterPbits() bool {
+ if m != nil {
+ return m.RemarkOuterPbits
+ }
+ return false
+}
+
+func (m *ActionCmd) GetRemarkInnerPbits() bool {
+ if m != nil {
+ return m.RemarkInnerPbits
+ }
+ return false
+}
+
+func (m *ActionCmd) GetAddInnerTag() bool {
+ if m != nil {
+ return m.AddInnerTag
+ }
+ return false
+}
+
+func (m *ActionCmd) GetRemoveInnerTag() bool {
+ if m != nil {
+ return m.RemoveInnerTag
+ }
+ return false
+}
+
+func (m *ActionCmd) GetTranslateInnerTag() bool {
+ if m != nil {
+ return m.TranslateInnerTag
+ }
+ return false
+}
+
+func (m *ActionCmd) GetTranslateOuterTag() bool {
+ if m != nil {
+ return m.TranslateOuterTag
+ }
+ return false
+}
+
type Action struct {
Cmd *ActionCmd `protobuf:"bytes,1,opt,name=cmd,proto3" json:"cmd,omitempty"`
OVid uint32 `protobuf:"fixed32,2,opt,name=o_vid,json=oVid,proto3" json:"o_vid,omitempty"`
@@ -1925,6 +2029,7 @@
Priority int32 `protobuf:"fixed32,9,opt,name=priority,proto3" json:"priority,omitempty"`
Cookie uint64 `protobuf:"fixed64,12,opt,name=cookie,proto3" json:"cookie,omitempty"`
PortNo uint32 `protobuf:"fixed32,13,opt,name=port_no,json=portNo,proto3" json:"port_no,omitempty"`
+ GroupId uint32 `protobuf:"fixed32,14,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@@ -2046,6 +2151,13 @@
return 0
}
+func (m *Flow) GetGroupId() uint32 {
+ if m != nil {
+ return m.GroupId
+ }
+ return 0
+}
+
type SerialNumber struct {
VendorId []byte `protobuf:"bytes,1,opt,name=vendor_id,json=vendorId,proto3" json:"vendor_id,omitempty"`
VendorSpecific []byte `protobuf:"bytes,2,opt,name=vendor_specific,json=vendorSpecific,proto3" json:"vendor_specific,omitempty"`
@@ -3110,6 +3222,132 @@
return 0
}
+type GroupMember struct {
+ InterfaceId uint32 `protobuf:"varint,1,opt,name=interface_id,json=interfaceId,proto3" json:"interface_id,omitempty"`
+ InterfaceType GroupMember_InterfaceType `protobuf:"varint,2,opt,name=interface_type,json=interfaceType,proto3,enum=openolt.GroupMember_InterfaceType" json:"interface_type,omitempty"`
+ GemPortId uint32 `protobuf:"varint,3,opt,name=gem_port_id,json=gemPortId,proto3" json:"gem_port_id,omitempty"`
+ Priority uint32 `protobuf:"varint,4,opt,name=priority,proto3" json:"priority,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *GroupMember) Reset() { *m = GroupMember{} }
+func (m *GroupMember) String() string { return proto.CompactTextString(m) }
+func (*GroupMember) ProtoMessage() {}
+func (*GroupMember) Descriptor() ([]byte, []int) {
+ return fileDescriptor_c072e7aa0dfd74d5, []int{36}
+}
+
+func (m *GroupMember) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GroupMember.Unmarshal(m, b)
+}
+func (m *GroupMember) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GroupMember.Marshal(b, m, deterministic)
+}
+func (m *GroupMember) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GroupMember.Merge(m, src)
+}
+func (m *GroupMember) XXX_Size() int {
+ return xxx_messageInfo_GroupMember.Size(m)
+}
+func (m *GroupMember) XXX_DiscardUnknown() {
+ xxx_messageInfo_GroupMember.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GroupMember proto.InternalMessageInfo
+
+func (m *GroupMember) GetInterfaceId() uint32 {
+ if m != nil {
+ return m.InterfaceId
+ }
+ return 0
+}
+
+func (m *GroupMember) GetInterfaceType() GroupMember_InterfaceType {
+ if m != nil {
+ return m.InterfaceType
+ }
+ return GroupMember_PON
+}
+
+func (m *GroupMember) GetGemPortId() uint32 {
+ if m != nil {
+ return m.GemPortId
+ }
+ return 0
+}
+
+func (m *GroupMember) GetPriority() uint32 {
+ if m != nil {
+ return m.Priority
+ }
+ return 0
+}
+
+type Group struct {
+ GroupId uint32 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"`
+ Command Group_GroupMembersCommand `protobuf:"varint,2,opt,name=command,proto3,enum=openolt.Group_GroupMembersCommand" json:"command,omitempty"`
+ Members []*GroupMember `protobuf:"bytes,3,rep,name=members,proto3" json:"members,omitempty"`
+ Action *Action `protobuf:"bytes,4,opt,name=action,proto3" json:"action,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *Group) Reset() { *m = Group{} }
+func (m *Group) String() string { return proto.CompactTextString(m) }
+func (*Group) ProtoMessage() {}
+func (*Group) Descriptor() ([]byte, []int) {
+ return fileDescriptor_c072e7aa0dfd74d5, []int{37}
+}
+
+func (m *Group) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Group.Unmarshal(m, b)
+}
+func (m *Group) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Group.Marshal(b, m, deterministic)
+}
+func (m *Group) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Group.Merge(m, src)
+}
+func (m *Group) XXX_Size() int {
+ return xxx_messageInfo_Group.Size(m)
+}
+func (m *Group) XXX_DiscardUnknown() {
+ xxx_messageInfo_Group.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Group proto.InternalMessageInfo
+
+func (m *Group) GetGroupId() uint32 {
+ if m != nil {
+ return m.GroupId
+ }
+ return 0
+}
+
+func (m *Group) GetCommand() Group_GroupMembersCommand {
+ if m != nil {
+ return m.Command
+ }
+ return Group_ADD_MEMBERS
+}
+
+func (m *Group) GetMembers() []*GroupMember {
+ if m != nil {
+ return m.Members
+ }
+ return nil
+}
+
+func (m *Group) GetAction() *Action {
+ if m != nil {
+ return m.Action
+ }
+ return nil
+}
+
type Empty struct {
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
@@ -3120,7 +3358,7 @@
func (m *Empty) String() string { return proto.CompactTextString(m) }
func (*Empty) ProtoMessage() {}
func (*Empty) Descriptor() ([]byte, []int) {
- return fileDescriptor_c072e7aa0dfd74d5, []int{36}
+ return fileDescriptor_c072e7aa0dfd74d5, []int{38}
}
func (m *Empty) XXX_Unmarshal(b []byte) error {
@@ -3144,6 +3382,8 @@
func init() {
proto.RegisterEnum("openolt.DeviceInfo_DeviceResourceRanges_Pool_PoolType", DeviceInfo_DeviceResourceRanges_Pool_PoolType_name, DeviceInfo_DeviceResourceRanges_Pool_PoolType_value)
proto.RegisterEnum("openolt.DeviceInfo_DeviceResourceRanges_Pool_SharingType", DeviceInfo_DeviceResourceRanges_Pool_SharingType_name, DeviceInfo_DeviceResourceRanges_Pool_SharingType_value)
+ proto.RegisterEnum("openolt.GroupMember_InterfaceType", GroupMember_InterfaceType_name, GroupMember_InterfaceType_value)
+ proto.RegisterEnum("openolt.Group_GroupMembersCommand", Group_GroupMembersCommand_name, Group_GroupMembersCommand_value)
proto.RegisterType((*Indication)(nil), "openolt.Indication")
proto.RegisterType((*AlarmIndication)(nil), "openolt.AlarmIndication")
proto.RegisterType((*OltIndication)(nil), "openolt.OltIndication")
@@ -3182,210 +3422,233 @@
proto.RegisterType((*OnuLossOfKeySyncFailureIndication)(nil), "openolt.OnuLossOfKeySyncFailureIndication")
proto.RegisterType((*OnuItuPonStatsIndication)(nil), "openolt.OnuItuPonStatsIndication")
proto.RegisterType((*OnuProcessingErrorIndication)(nil), "openolt.OnuProcessingErrorIndication")
+ proto.RegisterType((*GroupMember)(nil), "openolt.GroupMember")
+ proto.RegisterType((*Group)(nil), "openolt.Group")
proto.RegisterType((*Empty)(nil), "openolt.Empty")
}
func init() { proto.RegisterFile("voltha_protos/openolt.proto", fileDescriptor_c072e7aa0dfd74d5) }
var fileDescriptor_c072e7aa0dfd74d5 = []byte{
- // 3146 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xcb, 0x72, 0x24, 0x47,
- 0xd5, 0x9e, 0x96, 0x5a, 0x5d, 0xdd, 0xa7, 0x2f, 0xd2, 0x94, 0x46, 0x77, 0x79, 0x46, 0xae, 0x7f,
- 0x7e, 0x7b, 0x7e, 0xff, 0xe1, 0x91, 0x3d, 0xe3, 0x00, 0x6c, 0x08, 0xb0, 0x6e, 0x63, 0x35, 0x96,
- 0xa6, 0x45, 0x49, 0xe3, 0x01, 0x13, 0x8e, 0x72, 0xa9, 0x2a, 0xbb, 0x95, 0xa1, 0xea, 0xca, 0x72,
- 0x65, 0xb6, 0x2e, 0xc1, 0xce, 0xc0, 0x0b, 0xe0, 0x60, 0x01, 0x11, 0xac, 0x78, 0x09, 0x22, 0x58,
- 0x7a, 0x4b, 0xb0, 0xe1, 0x15, 0xd8, 0xf0, 0x0e, 0x2c, 0x88, 0x3c, 0x99, 0x75, 0xeb, 0x6e, 0x69,
- 0x46, 0xc3, 0x10, 0x6c, 0x14, 0x95, 0xe7, 0x7c, 0xe7, 0x3b, 0x79, 0x32, 0x4f, 0x9e, 0xbc, 0xb4,
- 0x60, 0xe5, 0x8c, 0x05, 0xe2, 0xc4, 0x75, 0xa2, 0x98, 0x09, 0xc6, 0xd7, 0x59, 0x44, 0x42, 0x16,
- 0x88, 0x87, 0xd8, 0x34, 0x0d, 0xdd, 0x5c, 0x5e, 0xed, 0x31, 0xd6, 0x0b, 0xc8, 0xba, 0x1b, 0xd1,
- 0x75, 0x37, 0x0c, 0x99, 0x70, 0x05, 0x65, 0x21, 0x57, 0xb0, 0xe5, 0xb5, 0x22, 0x87, 0x20, 0xde,
- 0x89, 0xfc, 0xee, 0xd2, 0x80, 0x28, 0x84, 0xf5, 0x97, 0x32, 0x40, 0x3b, 0xf4, 0xa9, 0x87, 0x76,
- 0xe6, 0xfb, 0x60, 0xb0, 0x40, 0x38, 0x34, 0xf4, 0x17, 0x4b, 0x6b, 0xa5, 0x07, 0xf5, 0x47, 0xf3,
- 0x0f, 0x13, 0xc7, 0x9d, 0x40, 0x64, 0xc0, 0xdd, 0x5b, 0x76, 0x85, 0xa1, 0xc0, 0xfc, 0x00, 0xaa,
- 0x34, 0x14, 0x5d, 0xb4, 0x99, 0x40, 0x9b, 0x85, 0xd4, 0xa6, 0x1d, 0x8a, 0x6e, 0xc1, 0xc8, 0xa0,
- 0x4a, 0x62, 0x6e, 0x40, 0x13, 0xad, 0x58, 0x44, 0x62, 0x34, 0x9d, 0x44, 0xd3, 0x95, 0x82, 0x69,
- 0x27, 0x22, 0x71, 0xc1, 0xbc, 0x4e, 0x33, 0xa9, 0xf9, 0x43, 0x68, 0xb0, 0x70, 0xe0, 0xf8, 0x94,
- 0x7b, 0xc8, 0x50, 0x46, 0x86, 0xe5, 0xac, 0xc3, 0xe1, 0x60, 0x9b, 0x72, 0xaf, 0x40, 0x00, 0x2c,
- 0x15, 0x62, 0xac, 0xe1, 0x00, 0x4d, 0xa7, 0x86, 0x63, 0x0d, 0x07, 0x43, 0xb1, 0xa2, 0x40, 0xc6,
- 0xca, 0xfa, 0x1e, 0x45, 0x9b, 0xca, 0x50, 0xac, 0x9d, 0xbe, 0x47, 0x8b, 0xb1, 0x32, 0x25, 0x31,
- 0x3f, 0x00, 0x23, 0x3a, 0x55, 0x83, 0x6a, 0xa0, 0xd1, 0x52, 0x6a, 0x74, 0xe0, 0x7a, 0xa7, 0x64,
- 0x68, 0x5c, 0xa3, 0x53, 0x1c, 0xd7, 0xef, 0x01, 0x44, 0x2c, 0x16, 0x0e, 0x17, 0xae, 0xe0, 0x8b,
- 0xd5, 0x21, 0x6f, 0x07, 0x2c, 0x16, 0x87, 0x72, 0xb2, 0xb9, 0xa0, 0x1e, 0xdf, 0xbd, 0x65, 0xd7,
- 0x22, 0x2d, 0xe1, 0xd2, 0xb2, 0x1b, 0xb0, 0x73, 0x6d, 0x59, 0x1b, 0xb2, 0x7c, 0x12, 0xb0, 0xf3,
- 0xa2, 0x65, 0x57, 0x4b, 0xb8, 0xf9, 0x5d, 0xa8, 0xb9, 0x81, 0x1b, 0xf7, 0xb1, 0xaf, 0x80, 0x86,
- 0x8b, 0xa9, 0xe1, 0x86, 0xd4, 0x14, 0xba, 0x5a, 0x75, 0xb5, 0x68, 0xb3, 0x02, 0x65, 0xdf, 0x15,
- 0xae, 0xf5, 0x8f, 0x2a, 0x4c, 0x0f, 0xe1, 0xe4, 0x38, 0x07, 0x8c, 0x8f, 0xcd, 0xa9, 0x3d, 0xc6,
- 0x8b, 0xb1, 0x07, 0x28, 0x30, 0xb7, 0xa1, 0xe5, 0x5f, 0xd2, 0xb0, 0xe7, 0xf4, 0x5c, 0x1e, 0xe5,
- 0x32, 0x6b, 0x35, 0xb5, 0xdc, 0x96, 0xea, 0x4f, 0x5c, 0x1e, 0x15, 0xec, 0x1b, 0x7e, 0x4e, 0x2c,
- 0x73, 0x4c, 0x4e, 0x70, 0x16, 0xd1, 0x70, 0x8e, 0x75, 0xc2, 0xc1, 0x68, 0x50, 0x75, 0x96, 0x49,
- 0xcd, 0xe7, 0x70, 0x47, 0x52, 0x70, 0xe1, 0xc6, 0x62, 0x10, 0x39, 0x5d, 0x97, 0x06, 0xb9, 0x5c,
- 0xbb, 0x9f, 0x67, 0x3a, 0x54, 0x98, 0x27, 0x2e, 0x0d, 0x06, 0x31, 0x29, 0x50, 0xde, 0x66, 0x05,
- 0xb5, 0x24, 0xfe, 0x1c, 0xe6, 0x91, 0x98, 0xf6, 0x42, 0x37, 0x70, 0x7c, 0xd2, 0x8b, 0x5d, 0x9f,
- 0xe4, 0x72, 0xf1, 0x7f, 0x0a, 0xd4, 0x88, 0xda, 0x56, 0xa0, 0x02, 0xf3, 0x2c, 0x1b, 0xd5, 0x9a,
- 0x3f, 0x87, 0x05, 0x5c, 0x18, 0x31, 0xed, 0x0a, 0x87, 0x75, 0x9d, 0x73, 0x1a, 0xfa, 0xec, 0x3c,
- 0x97, 0xb4, 0x05, 0xf2, 0x6d, 0x09, 0xeb, 0x74, 0x9f, 0x23, 0x68, 0x84, 0x7c, 0x58, 0x6b, 0x1e,
- 0x81, 0x8c, 0xc6, 0x09, 0x18, 0xe7, 0x4e, 0xba, 0x16, 0x54, 0x5a, 0xbf, 0x9d, 0xa7, 0xdd, 0x63,
- 0x9c, 0x77, 0xba, 0x72, 0x51, 0x6c, 0x9d, 0xb8, 0x61, 0x48, 0x82, 0x02, 0x75, 0x8b, 0x69, 0x84,
- 0x5e, 0x22, 0xc9, 0x38, 0x63, 0x28, 0x3c, 0x1b, 0xe7, 0xea, 0x98, 0x71, 0x56, 0x98, 0x2b, 0xc7,
- 0x39, 0x53, 0x4b, 0xe2, 0x8e, 0x2a, 0x12, 0x82, 0x9e, 0xab, 0x9e, 0xaa, 0xd5, 0xf0, 0xff, 0x79,
- 0xc2, 0xa3, 0xd8, 0x0d, 0x79, 0x9f, 0x72, 0x4e, 0x59, 0xd8, 0x0e, 0x05, 0x89, 0xbb, 0x24, 0x26,
- 0xa1, 0x47, 0x9e, 0xbb, 0x71, 0x48, 0xc3, 0x9e, 0xae, 0x1a, 0x47, 0xf4, 0x1c, 0x7b, 0xfa, 0xa5,
- 0x1a, 0x5c, 0xd7, 0x13, 0xf4, 0x0c, 0xfd, 0x66, 0x9d, 0x85, 0xd1, 0x51, 0xd8, 0x48, 0x61, 0xe3,
- 0xfa, 0x2b, 0x63, 0x2e, 0x22, 0x94, 0x87, 0x45, 0xe9, 0x21, 0x8a, 0x99, 0x47, 0x38, 0x97, 0xab,
- 0x80, 0xc4, 0x31, 0x53, 0x55, 0xb2, 0x8e, 0x2e, 0xfe, 0x37, 0xef, 0xe2, 0x20, 0xc5, 0xed, 0x48,
- 0x58, 0xc1, 0xc1, 0x1c, 0x1b, 0xa7, 0x37, 0x09, 0x2c, 0x65, 0x73, 0xd8, 0x75, 0xf8, 0x65, 0xe8,
- 0x65, 0x51, 0x34, 0xd0, 0xc5, 0x3b, 0xa3, 0x73, 0xf9, 0x29, 0xb9, 0x3c, 0xbc, 0x0c, 0xbd, 0xab,
- 0x02, 0x51, 0xa0, 0x04, 0x21, 0xdd, 0x3c, 0x83, 0x39, 0x2c, 0xb0, 0x62, 0xe0, 0x44, 0x2c, 0x54,
- 0xe5, 0x08, 0x5d, 0x34, 0xd1, 0xc5, 0x9b, 0x85, 0x72, 0x2b, 0x06, 0x07, 0x2c, 0xc4, 0x2a, 0x34,
- 0x32, 0xa5, 0x45, 0x5d, 0x5a, 0x6b, 0x1e, 0x42, 0xb3, 0xb0, 0x27, 0x99, 0x6f, 0x00, 0xe0, 0x76,
- 0x22, 0x1d, 0x11, 0xac, 0x35, 0x35, 0xbb, 0x26, 0x25, 0xd2, 0x94, 0x58, 0xbb, 0xd0, 0x2a, 0xee,
- 0x47, 0xe6, 0x02, 0x18, 0x6a, 0xeb, 0x52, 0x95, 0xc9, 0xb0, 0x2b, 0xb8, 0x3d, 0xf9, 0x43, 0x4c,
- 0x13, 0xc3, 0x4c, 0x27, 0x70, 0x7b, 0x64, 0x73, 0xb9, 0x9a, 0xec, 0x23, 0x68, 0x72, 0x12, 0x53,
- 0x37, 0x70, 0xc2, 0x41, 0xff, 0x98, 0xc4, 0xba, 0x96, 0xcd, 0xa5, 0xe1, 0x1f, 0xa2, 0xf6, 0x29,
- 0x2a, 0xed, 0x06, 0xcf, 0xb5, 0xac, 0x3f, 0x97, 0xa0, 0x59, 0xd8, 0x8c, 0xae, 0x76, 0x33, 0x07,
- 0x15, 0x1c, 0x6d, 0x55, 0x2b, 0x0d, 0x7b, 0x4a, 0x8e, 0xdc, 0x70, 0x28, 0x93, 0x43, 0xa1, 0x98,
- 0xf7, 0xa0, 0xee, 0xfa, 0x7d, 0x1a, 0x6a, 0xfd, 0x14, 0xea, 0x01, 0x45, 0x0a, 0x30, 0xd2, 0xfb,
- 0xf2, 0xcb, 0xf7, 0xfe, 0x4b, 0x30, 0x47, 0xb7, 0x71, 0xd3, 0x84, 0xb2, 0xb8, 0x8c, 0x92, 0x09,
- 0xc2, 0xef, 0x7c, 0x54, 0x13, 0xd7, 0xcc, 0xc4, 0x70, 0xf7, 0x2d, 0x1b, 0x5a, 0xc5, 0x7d, 0xf7,
- 0xc6, 0xe3, 0x33, 0x03, 0x93, 0xd1, 0xa9, 0x40, 0xe6, 0x86, 0x2d, 0x3f, 0xad, 0x6f, 0x4b, 0x30,
- 0x33, 0xbc, 0x2f, 0x9b, 0x2b, 0x50, 0x43, 0x5a, 0xec, 0xb9, 0x1a, 0x25, 0x3c, 0xf6, 0x1c, 0x0d,
- 0xf5, 0x7e, 0x24, 0x8f, 0x7a, 0xa4, 0x8f, 0xdb, 0x78, 0xea, 0xb7, 0xa6, 0x25, 0x6d, 0x5f, 0xda,
- 0xe1, 0x46, 0x4d, 0xd5, 0xd6, 0x64, 0xd8, 0x15, 0xd9, 0x54, 0x0a, 0x34, 0x0a, 0x19, 0x56, 0x6c,
- 0xc3, 0xae, 0xc8, 0xe6, 0x53, 0x66, 0xce, 0x43, 0xc5, 0x63, 0xec, 0x94, 0x12, 0x2c, 0xb9, 0x15,
- 0x5b, 0xb7, 0x92, 0x28, 0xca, 0x59, 0x14, 0xf7, 0xa1, 0xa6, 0x8a, 0x99, 0xeb, 0x5d, 0xdd, 0x41,
- 0xeb, 0x07, 0x50, 0xdb, 0x25, 0x6e, 0x2c, 0x8e, 0x89, 0x2b, 0xcc, 0x75, 0x98, 0x3d, 0x49, 0x1a,
- 0xaa, 0x14, 0x8b, 0x41, 0x4c, 0xb4, 0x85, 0x99, 0xaa, 0x0e, 0x13, 0x8d, 0xf5, 0xcb, 0x12, 0x4c,
- 0x76, 0xc2, 0xc1, 0x8d, 0xc7, 0x7c, 0x24, 0xa7, 0x26, 0x5f, 0x3a, 0xa7, 0x30, 0x52, 0xaa, 0xb2,
- 0xd0, 0xb0, 0xe5, 0xa7, 0xf5, 0x29, 0x18, 0x32, 0x07, 0xf6, 0x79, 0xef, 0x35, 0x4c, 0xfe, 0xaf,
- 0x4b, 0x50, 0x93, 0x45, 0x15, 0xe7, 0xff, 0xc6, 0x7c, 0xb9, 0x79, 0x2b, 0x17, 0xe6, 0xad, 0x98,
- 0x08, 0x53, 0xc3, 0x89, 0x30, 0xda, 0x8f, 0x0f, 0xa1, 0xf1, 0x2c, 0x0a, 0x68, 0x78, 0xfa, 0xa2,
- 0x9e, 0x68, 0xd3, 0x89, 0xcc, 0xf4, 0x37, 0x35, 0x80, 0x6d, 0x72, 0x46, 0x3d, 0xd2, 0x0e, 0xbb,
- 0x98, 0x32, 0x67, 0x24, 0xf4, 0x59, 0xac, 0x17, 0x9c, 0x6e, 0x99, 0x77, 0x60, 0xaa, 0xcf, 0x7c,
- 0x12, 0xe8, 0xf2, 0xa6, 0x1a, 0xe6, 0xff, 0xc1, 0xcc, 0x89, 0x1b, 0xfb, 0xe7, 0x6e, 0x4c, 0x9c,
- 0x33, 0x12, 0xcb, 0x3d, 0x51, 0xaf, 0xba, 0xe9, 0x44, 0xfe, 0x99, 0x12, 0x4b, 0x68, 0x97, 0xc6,
- 0xfd, 0x02, 0xb4, 0xac, 0xa0, 0x89, 0x3c, 0x81, 0xae, 0x40, 0xcd, 0xc7, 0x1e, 0xc9, 0xfe, 0xcf,
- 0xa8, 0xd5, 0xa3, 0x04, 0x6d, 0xdf, 0x7c, 0x0f, 0xee, 0x68, 0x65, 0x31, 0x29, 0x6e, 0x23, 0xce,
- 0x54, 0xba, 0x7c, 0x46, 0x48, 0x3a, 0xb9, 0xa1, 0xc8, 0xc1, 0xe3, 0xb8, 0x5f, 0x19, 0x76, 0x35,
- 0x62, 0xa1, 0x3c, 0x13, 0x73, 0xf3, 0x2e, 0x80, 0xbc, 0xe7, 0x84, 0x2c, 0x60, 0xbd, 0xcb, 0xa4,
- 0xa0, 0x65, 0x12, 0x73, 0x4d, 0x9d, 0x08, 0xa8, 0xaf, 0x4e, 0x75, 0x7a, 0x81, 0x01, 0x4e, 0x20,
- 0x1e, 0xd2, 0xcc, 0x55, 0x00, 0x8d, 0x20, 0xfa, 0x6c, 0x63, 0xd8, 0x55, 0xd4, 0xef, 0x84, 0xbe,
- 0x79, 0x1f, 0x5a, 0x6e, 0x10, 0x30, 0x2f, 0x63, 0xa8, 0x22, 0xa2, 0x81, 0xd2, 0x84, 0x63, 0x0d,
- 0x1a, 0x29, 0x8a, 0xe8, 0x73, 0x87, 0x61, 0x83, 0xc6, 0x48, 0x9e, 0x07, 0x30, 0x93, 0xa5, 0x84,
- 0x66, 0x02, 0x44, 0xb5, 0xd2, 0xc4, 0x50, 0x5c, 0xf7, 0xa1, 0x95, 0x43, 0x12, 0x7d, 0x0c, 0x30,
- 0xec, 0x46, 0x8a, 0x93, 0x7c, 0x16, 0x34, 0x75, 0x31, 0xd1, 0x64, 0x4d, 0x04, 0xd5, 0x55, 0x49,
- 0x51, 0x4c, 0x77, 0xa1, 0x9e, 0x60, 0x24, 0x4d, 0x4b, 0xe5, 0xa1, 0x42, 0x48, 0x8e, 0x8f, 0xa1,
- 0x12, 0xbb, 0x61, 0x8f, 0xf0, 0xc5, 0xe9, 0xb5, 0xc9, 0x07, 0xf5, 0x47, 0x0f, 0xb2, 0xf3, 0x76,
- 0x9a, 0x50, 0xfa, 0xd3, 0x26, 0x9c, 0x0d, 0x62, 0x8f, 0xd8, 0x88, 0xb7, 0xb5, 0xdd, 0xf2, 0x6f,
- 0xcb, 0x70, 0x67, 0x1c, 0xc0, 0x5c, 0x4a, 0xae, 0x89, 0x3e, 0x5f, 0x2c, 0xad, 0x4d, 0x3e, 0x30,
- 0xf4, 0x5d, 0xd0, 0x1f, 0x9e, 0xb1, 0x89, 0x91, 0x19, 0xdb, 0x82, 0xa9, 0x88, 0xb1, 0x80, 0x2f,
- 0x4e, 0x62, 0xa7, 0xde, 0x7d, 0xd9, 0x4e, 0x3d, 0x3c, 0x60, 0x2c, 0xb0, 0x95, 0xed, 0xf2, 0x3f,
- 0x27, 0xa0, 0x2c, 0xdb, 0xe6, 0x8f, 0x73, 0xdb, 0x4f, 0xeb, 0xd1, 0x77, 0x6e, 0x44, 0x86, 0x7f,
- 0x64, 0xc9, 0xd7, 0xdb, 0xd6, 0x21, 0x18, 0xfc, 0xc4, 0x8d, 0x69, 0xd8, 0xc3, 0x6e, 0xb7, 0x1e,
- 0x7d, 0x78, 0x33, 0xba, 0x43, 0x65, 0x8c, 0x8c, 0x09, 0x93, 0x5c, 0x98, 0x6a, 0x02, 0xd5, 0x9e,
- 0xa0, 0x1a, 0x72, 0x9d, 0x13, 0x7d, 0xf1, 0x30, 0x6c, 0xf9, 0x69, 0x6d, 0x40, 0x35, 0xe9, 0x8e,
- 0x09, 0x50, 0xe9, 0x3c, 0x7d, 0xe6, 0xb4, 0xb7, 0x67, 0x6e, 0x99, 0x0d, 0xa8, 0x6e, 0xec, 0xed,
- 0x75, 0xb6, 0x64, 0xab, 0x64, 0xb6, 0x00, 0x3e, 0xd9, 0xd9, 0x3f, 0xe8, 0xd8, 0x47, 0xb2, 0x3d,
- 0x61, 0xd6, 0xc1, 0x78, 0xb2, 0xd7, 0x79, 0x2e, 0x1b, 0x93, 0xd6, 0x09, 0xd4, 0x73, 0x5d, 0x30,
- 0xe7, 0xc1, 0xdc, 0xde, 0xd9, 0x6e, 0x6f, 0x6d, 0x1c, 0xed, 0x6c, 0x3b, 0x07, 0x3b, 0xb6, 0xd3,
- 0x7e, 0x7a, 0xf4, 0x64, 0xe6, 0x96, 0x79, 0x0f, 0x56, 0x0e, 0x77, 0x37, 0xec, 0x9d, 0x6d, 0x67,
- 0xf3, 0x67, 0xce, 0xc6, 0xde, 0x1e, 0xca, 0xf1, 0xe3, 0x68, 0x67, 0x6b, 0x77, 0xa6, 0x64, 0xae,
- 0xc1, 0xea, 0x18, 0xc0, 0xe1, 0xc6, 0xfe, 0x8e, 0x42, 0x4c, 0x58, 0xbf, 0x9a, 0x04, 0xd8, 0x0a,
- 0x5c, 0xce, 0x69, 0x97, 0x92, 0x18, 0xeb, 0xa7, 0x23, 0xa2, 0xb4, 0x9a, 0x4d, 0xb1, 0xa3, 0x88,
- 0xfa, 0xe6, 0x2c, 0x4c, 0x31, 0xe7, 0x2c, 0xad, 0xaa, 0x65, 0xf6, 0x19, 0xc5, 0x5a, 0x4b, 0x15,
- 0x56, 0x0f, 0x08, 0x4d, 0xb0, 0x14, 0xb1, 0x6a, 0x48, 0xca, 0x54, 0x62, 0x17, 0xc0, 0x60, 0x4e,
- 0x74, 0x4c, 0x05, 0xd7, 0x45, 0xb6, 0xc2, 0x0e, 0x64, 0x0b, 0xeb, 0xa7, 0x56, 0xe8, 0x1d, 0x95,
- 0x2a, 0xc5, 0x12, 0x54, 0x89, 0x38, 0x51, 0xfb, 0xba, 0x5a, 0xea, 0x06, 0x11, 0x27, 0xc9, 0xb6,
- 0xee, 0x73, 0xe1, 0xf4, 0x5d, 0x0f, 0x97, 0x78, 0xc3, 0xae, 0xf8, 0x5c, 0xec, 0xbb, 0x9e, 0x54,
- 0xf0, 0xd8, 0x43, 0x45, 0x4d, 0x29, 0x78, 0xec, 0x49, 0x85, 0x4c, 0xf2, 0x48, 0xbd, 0xb6, 0xe8,
- 0xb5, 0x6c, 0xd0, 0xe8, 0x00, 0x5f, 0x6c, 0xe6, 0x40, 0x5a, 0x3b, 0x34, 0xd2, 0x8b, 0x77, 0xca,
- 0xe7, 0xa2, 0x1d, 0x49, 0xb1, 0xa4, 0xa2, 0x91, 0xae, 0x63, 0x53, 0x3c, 0xf6, 0xda, 0x91, 0x24,
- 0x92, 0x62, 0xb9, 0xba, 0xf5, 0x3a, 0x96, 0x1e, 0x65, 0x81, 0x93, 0x2a, 0x49, 0x84, 0x2a, 0xb5,
- 0x80, 0x65, 0x2f, 0x51, 0xb5, 0x06, 0x8d, 0xe8, 0x54, 0x38, 0xc2, 0xed, 0xa9, 0x78, 0xa6, 0xd5,
- 0x52, 0x8a, 0x4e, 0xc5, 0x91, 0x8b, 0x33, 0x6c, 0xfd, 0x02, 0x6a, 0xf2, 0xc2, 0xc1, 0xc2, 0xad,
- 0x3e, 0x56, 0x0c, 0xd7, 0xf7, 0x1d, 0x36, 0x10, 0x24, 0x96, 0x46, 0x38, 0x17, 0x55, 0xbb, 0xee,
- 0xfa, 0x7e, 0x47, 0xca, 0x8e, 0xdc, 0x9e, 0xac, 0x52, 0x31, 0xe9, 0xb3, 0x33, 0x92, 0x83, 0x4d,
- 0x20, 0xac, 0xa5, 0xe4, 0x29, 0x72, 0x0d, 0x1a, 0x22, 0x76, 0x23, 0x47, 0x30, 0xe7, 0x84, 0x71,
- 0x95, 0xbd, 0x55, 0x1b, 0xa4, 0xec, 0x88, 0xed, 0x32, 0x2e, 0xac, 0x3f, 0x95, 0xa0, 0xa2, 0xbc,
- 0x9b, 0xf7, 0x61, 0xd2, 0xeb, 0x27, 0xef, 0x01, 0x66, 0xf6, 0xc4, 0x90, 0xf4, 0xcd, 0x96, 0xea,
- 0xf1, 0xe9, 0x90, 0x9b, 0xe2, 0xc9, 0xc2, 0x14, 0x67, 0x39, 0x55, 0x1e, 0xca, 0x29, 0x95, 0x27,
- 0x53, 0xc5, 0x3c, 0x19, 0x9f, 0x0e, 0x59, 0xb2, 0x19, 0xb9, 0x64, 0xb3, 0xfe, 0x30, 0x09, 0xe5,
- 0x27, 0x01, 0x3b, 0xc7, 0xea, 0xef, 0xc9, 0xfb, 0x94, 0x93, 0xdf, 0x8e, 0xa7, 0xed, 0x86, 0x92,
- 0xb6, 0xc7, 0x1d, 0x0f, 0xa6, 0x93, 0xe3, 0xc1, 0x1c, 0x54, 0x06, 0x21, 0x95, 0xe2, 0xba, 0x12,
- 0x0f, 0x42, 0x7a, 0xdd, 0x31, 0x70, 0x05, 0xb0, 0x36, 0xab, 0xc9, 0x54, 0x5b, 0x6b, 0x55, 0x0a,
- 0x30, 0x3b, 0x97, 0xa0, 0x9a, 0xec, 0x30, 0x98, 0x6b, 0xd3, 0xb6, 0xa1, 0x77, 0x17, 0xf3, 0x2d,
- 0x98, 0x0e, 0x89, 0x38, 0x67, 0xf1, 0x69, 0xda, 0xcb, 0x29, 0x44, 0x34, 0xb5, 0xb8, 0x3d, 0xee,
- 0x78, 0x5a, 0x41, 0x48, 0xee, 0x54, 0xf2, 0x18, 0xc0, 0x4b, 0x97, 0xac, 0xbe, 0xe3, 0xcf, 0xa6,
- 0x73, 0x95, 0xad, 0x66, 0x3b, 0x07, 0x33, 0xdf, 0x86, 0x8a, 0x8b, 0xb3, 0xa8, 0xef, 0xee, 0xd3,
- 0x43, 0x93, 0x6b, 0x6b, 0xb5, 0xb9, 0x0c, 0xd5, 0x28, 0xa6, 0x2c, 0xa6, 0xe2, 0x12, 0x57, 0xd1,
- 0xb4, 0x9d, 0xb6, 0x73, 0xc7, 0xdc, 0x46, 0xe1, 0x98, 0x9b, 0x3b, 0x5f, 0x35, 0xf3, 0xe7, 0x2b,
- 0xeb, 0x08, 0x1a, 0xc3, 0x27, 0x04, 0x75, 0xcc, 0x49, 0x66, 0xa8, 0x61, 0x57, 0x95, 0xa0, 0xed,
- 0x9b, 0x6f, 0xc3, 0xb4, 0x56, 0xf2, 0x88, 0x78, 0xb4, 0x4b, 0x3d, 0x7d, 0x7c, 0x6a, 0x29, 0xf1,
- 0xa1, 0x96, 0x5a, 0x7f, 0x2d, 0x43, 0xab, 0xf8, 0xd0, 0x76, 0xf5, 0x39, 0x6c, 0x09, 0xaa, 0xf1,
- 0x85, 0x73, 0x7c, 0x29, 0x08, 0x47, 0xb6, 0x8a, 0x6d, 0xc4, 0x17, 0x9b, 0xb2, 0x29, 0x87, 0x39,
- 0xbe, 0x70, 0x22, 0x3c, 0xc8, 0xa9, 0xa4, 0xad, 0xd8, 0xb5, 0xf8, 0x42, 0x9d, 0xec, 0x38, 0x2e,
- 0xb1, 0x0b, 0x67, 0xe0, 0xb9, 0x72, 0x55, 0x6b, 0x50, 0x19, 0x41, 0xad, 0xf8, 0xe2, 0x99, 0x14,
- 0x17, 0x91, 0xfd, 0x02, 0x72, 0x2a, 0x41, 0xee, 0x8f, 0x22, 0x8f, 0x0b, 0xc8, 0x4a, 0x82, 0xdc,
- 0x1c, 0x45, 0xaa, 0x17, 0x86, 0x04, 0x69, 0x24, 0x48, 0x7c, 0x31, 0x48, 0x90, 0x4b, 0x50, 0x15,
- 0x49, 0x84, 0x55, 0x15, 0xa1, 0xc8, 0x22, 0x14, 0x59, 0x84, 0x35, 0x15, 0xa1, 0xc8, 0x47, 0x28,
- 0x86, 0x23, 0x04, 0xe5, 0x43, 0x8c, 0x44, 0x28, 0x86, 0x23, 0xac, 0x27, 0xc8, 0xfd, 0x51, 0x64,
- 0x31, 0xc2, 0x46, 0x82, 0xdc, 0x1c, 0x45, 0x16, 0x23, 0x6c, 0x26, 0xc8, 0x42, 0x84, 0x16, 0x34,
- 0xe3, 0x0b, 0xc7, 0x8b, 0x3d, 0x85, 0xe6, 0x58, 0x5f, 0x2b, 0x76, 0x3d, 0xbe, 0xd8, 0x8a, 0x3d,
- 0x44, 0x62, 0xa8, 0xc7, 0x34, 0x4a, 0x00, 0xd3, 0x2a, 0xd4, 0x63, 0x1a, 0x69, 0xf5, 0x2a, 0xd4,
- 0x04, 0xed, 0x13, 0x2e, 0xdc, 0x7e, 0x84, 0x27, 0x5d, 0xc3, 0xce, 0x04, 0xf2, 0x3a, 0xdf, 0x2a,
- 0xbe, 0xbf, 0xe6, 0x17, 0x7f, 0xa9, 0xb0, 0xf8, 0x5f, 0x3d, 0xa1, 0x5e, 0x7d, 0xa2, 0xae, 0xef,
- 0xfd, 0xc7, 0xd0, 0x2c, 0x3c, 0xd8, 0x5e, 0xbd, 0x18, 0xe6, 0xa1, 0x22, 0x2f, 0xec, 0x03, 0xae,
- 0x4f, 0x73, 0xba, 0x65, 0x7d, 0x01, 0xb3, 0x63, 0x1e, 0x6e, 0x6f, 0x7c, 0xcd, 0xca, 0xe8, 0x27,
- 0x0b, 0xf4, 0x7f, 0x9c, 0x00, 0x73, 0xf4, 0x4d, 0xf7, 0x55, 0x9e, 0x4c, 0x02, 0xc6, 0x9d, 0x82,
- 0x8b, 0x5a, 0xc0, 0xf8, 0x21, 0x0a, 0x94, 0xfa, 0x38, 0x51, 0x97, 0x13, 0xf5, 0xb1, 0x56, 0x3f,
- 0x80, 0x99, 0x80, 0x45, 0x9e, 0xd3, 0xa7, 0x3c, 0xe5, 0x50, 0xb7, 0x90, 0x96, 0x94, 0xef, 0x53,
- 0x9e, 0x10, 0xbd, 0x0f, 0x73, 0x1a, 0xa9, 0x13, 0x2e, 0x81, 0x57, 0xd4, 0xcd, 0x47, 0xc1, 0x55,
- 0xe2, 0x69, 0x93, 0x7b, 0x50, 0x0f, 0x58, 0x97, 0x26, 0x40, 0x43, 0x6d, 0xf0, 0x52, 0xa4, 0x01,
- 0x6f, 0x42, 0x23, 0x60, 0x6e, 0x3f, 0x45, 0x54, 0x11, 0x51, 0x47, 0x99, 0x82, 0x58, 0x04, 0x56,
- 0xae, 0x79, 0xae, 0x7e, 0x6d, 0x93, 0xf1, 0xbb, 0x12, 0x2c, 0x5f, 0xfd, 0x76, 0xfd, 0xba, 0xdc,
- 0x98, 0x8f, 0x61, 0x9e, 0x86, 0xf2, 0xfa, 0x49, 0x9c, 0x63, 0x2a, 0xf4, 0x38, 0xc6, 0xae, 0x20,
- 0xfa, 0x14, 0x30, 0xab, 0xb5, 0x9b, 0x54, 0xe0, 0x40, 0xda, 0xae, 0x20, 0xd6, 0x37, 0xaa, 0x6f,
- 0x57, 0x3c, 0x7d, 0xbf, 0xb6, 0xbe, 0xdd, 0x81, 0x29, 0x7c, 0x84, 0x4f, 0x0e, 0x24, 0xd8, 0x90,
- 0xec, 0x21, 0x39, 0x77, 0xc8, 0x57, 0xc9, 0x91, 0xa4, 0x12, 0x92, 0xf3, 0x9d, 0xaf, 0x7c, 0xeb,
- 0x04, 0xee, 0x5e, 0xff, 0x70, 0xfe, 0xda, 0xe6, 0xe6, 0xf7, 0x25, 0x95, 0x03, 0x57, 0x3c, 0xa5,
- 0xff, 0x77, 0x27, 0xe7, 0xeb, 0x12, 0x58, 0x2f, 0x7e, 0x96, 0xff, 0xcf, 0x4e, 0x92, 0xf5, 0x15,
- 0xce, 0xc5, 0x35, 0xcf, 0xf7, 0x37, 0xf6, 0x7f, 0x0f, 0xea, 0xf8, 0xc6, 0x1e, 0x13, 0x97, 0xeb,
- 0x47, 0x15, 0xc3, 0x06, 0x29, 0xb2, 0x51, 0x62, 0x9d, 0xc2, 0x9b, 0x2f, 0x7c, 0x6b, 0x7f, 0x6d,
- 0x19, 0x40, 0x61, 0xf1, 0xaa, 0x57, 0xf7, 0x57, 0xa9, 0x97, 0xb1, 0x4f, 0x93, 0x2d, 0x51, 0x05,
- 0x56, 0x8b, 0x7d, 0xaa, 0xb6, 0x44, 0xeb, 0x29, 0xac, 0x5e, 0xf7, 0x33, 0xc5, 0x4d, 0xdd, 0x59,
- 0x06, 0x4c, 0xed, 0xf4, 0x23, 0x71, 0xf9, 0xe8, 0xdb, 0x26, 0x18, 0x1d, 0x75, 0xb8, 0x34, 0xb7,
- 0x01, 0xb6, 0x29, 0x77, 0x8f, 0x03, 0xd2, 0x09, 0x84, 0xd9, 0x4a, 0x0f, 0x9d, 0x88, 0x5c, 0x1e,
- 0x6a, 0x5b, 0xf3, 0x5f, 0xff, 0xed, 0xef, 0xdf, 0x4c, 0xcc, 0x58, 0xf5, 0xf5, 0xb3, 0xf7, 0xd7,
- 0xb5, 0xdd, 0x47, 0xa5, 0x77, 0xcc, 0x27, 0x50, 0xb7, 0x09, 0x09, 0x5f, 0x96, 0x66, 0x01, 0x69,
- 0x6e, 0x5b, 0x0d, 0x49, 0x93, 0x18, 0x4a, 0x9e, 0x1d, 0xa8, 0xeb, 0xd4, 0x21, 0x9d, 0x70, 0x60,
- 0x36, 0xf2, 0xbf, 0x74, 0x8c, 0xb0, 0x2c, 0x22, 0x8b, 0x69, 0x35, 0x25, 0xcb, 0x8e, 0x72, 0x1e,
- 0x0e, 0x24, 0xcd, 0x2e, 0x34, 0xb7, 0x89, 0xfb, 0xd2, 0x44, 0x4b, 0x48, 0x34, 0x6b, 0xb5, 0x72,
- 0x51, 0x69, 0xa6, 0x2d, 0xa8, 0x6d, 0x93, 0x80, 0xdc, 0xb8, 0x3b, 0xa9, 0x91, 0x24, 0x69, 0x03,
- 0xe8, 0x87, 0xd6, 0xce, 0x40, 0x98, 0x33, 0x85, 0x5f, 0xbe, 0xf7, 0x79, 0xef, 0xfa, 0xfe, 0x64,
- 0x96, 0x92, 0xaa, 0x03, 0x8d, 0xf4, 0x95, 0x55, 0x92, 0x99, 0x85, 0x5f, 0xb4, 0x50, 0x3c, 0x42,
- 0xb7, 0x82, 0x74, 0x73, 0xd6, 0x0c, 0xd2, 0xe5, 0xac, 0x25, 0xe1, 0x4f, 0x61, 0x3a, 0xff, 0x5e,
- 0x2a, 0x39, 0xb3, 0xe7, 0xe4, 0xbc, 0x66, 0x84, 0xf6, 0x2e, 0xd2, 0x2e, 0x5a, 0xb3, 0x92, 0x76,
- 0x88, 0x43, 0x32, 0x7f, 0x0c, 0x86, 0x3c, 0xb2, 0x6d, 0xf8, 0xbe, 0xd9, 0x2c, 0xfc, 0x88, 0x7e,
- 0x7d, 0x56, 0x69, 0x1b, 0x95, 0x55, 0x20, 0x5b, 0x36, 0xde, 0x97, 0x5f, 0x44, 0x52, 0x18, 0xb4,
- 0xcc, 0x4c, 0xf2, 0x1c, 0x42, 0x2b, 0x7d, 0xac, 0xdf, 0x3a, 0x21, 0xde, 0xe9, 0x48, 0x82, 0x66,
- 0xc3, 0x98, 0x02, 0xad, 0x37, 0x90, 0x70, 0xc1, 0x32, 0x25, 0x61, 0xd1, 0x5e, 0x92, 0xee, 0x43,
- 0x5d, 0xe5, 0xdc, 0x01, 0x0b, 0xdb, 0xdd, 0xdc, 0x44, 0xa4, 0xbf, 0x1e, 0x8c, 0x74, 0x71, 0x19,
- 0x19, 0xef, 0x58, 0xd3, 0x59, 0xc2, 0xa2, 0xb1, 0x9e, 0x58, 0x9d, 0x79, 0x2f, 0xcf, 0x57, 0x98,
- 0xd8, 0xbc, 0xb5, 0x24, 0xb4, 0xa1, 0xf9, 0x09, 0x11, 0xb9, 0xf7, 0xec, 0xe1, 0x98, 0x67, 0xc7,
- 0x3c, 0xb9, 0x59, 0xab, 0x48, 0x39, 0x6f, 0xdd, 0x96, 0x94, 0x05, 0x7b, 0xc9, 0xf9, 0x23, 0xa8,
- 0xd8, 0xe4, 0x98, 0xb1, 0x17, 0xaf, 0xf0, 0x39, 0xe4, 0x99, 0xb6, 0x40, 0xad, 0x70, 0x69, 0x23,
- 0x09, 0x9e, 0xc1, 0xed, 0x2d, 0x16, 0x04, 0xc4, 0xcb, 0x5f, 0x0d, 0x5f, 0xc4, 0xb5, 0x86, 0x5c,
- 0xcb, 0xd6, 0x9c, 0xe4, 0x1a, 0x31, 0x97, 0xb4, 0x31, 0x2c, 0x6c, 0xc5, 0xc4, 0x15, 0xe4, 0x28,
- 0x76, 0xbb, 0x5d, 0xea, 0x1d, 0x7a, 0x27, 0xc4, 0x1f, 0x04, 0x24, 0xe6, 0xe6, 0xbd, 0x87, 0x85,
- 0x7f, 0xde, 0x19, 0x01, 0x8c, 0x78, 0x7b, 0x0b, 0xbd, 0xad, 0x59, 0x2b, 0xe8, 0x6d, 0x3c, 0xab,
- 0xf6, 0xa9, 0x32, 0xec, 0x75, 0xfb, 0xbc, 0x82, 0x55, 0xfa, 0xec, 0xc2, 0x6c, 0xa1, 0x47, 0x3f,
- 0x19, 0x90, 0x01, 0xe1, 0xe6, 0xca, 0x58, 0x7f, 0x4a, 0x39, 0xe2, 0xcb, 0x42, 0x5f, 0xab, 0xd6,
- 0xc2, 0x48, 0x7c, 0xca, 0x40, 0xfb, 0x29, 0xf4, 0xe2, 0xdf, 0xf6, 0x33, 0x86, 0x4d, 0xfa, 0xf9,
- 0x3e, 0xcc, 0xa8, 0x65, 0x90, 0xdb, 0xd5, 0xae, 0x4e, 0xd3, 0x0c, 0x64, 0xdd, 0x7a, 0xaf, 0xb4,
- 0xf9, 0x05, 0xac, 0xb0, 0xb8, 0x87, 0x5a, 0x8f, 0xc5, 0xfe, 0x43, 0xf5, 0x2f, 0x5b, 0x09, 0x7a,
- 0xb3, 0xf9, 0x19, 0xb6, 0xe5, 0x3e, 0xd7, 0xd9, 0x3b, 0xfa, 0x7c, 0xbd, 0x47, 0xc5, 0xc9, 0xe0,
- 0xf8, 0xa1, 0xc7, 0xfa, 0xeb, 0x89, 0xc9, 0xba, 0x32, 0x79, 0x57, 0xff, 0x97, 0xd7, 0xd9, 0xe3,
- 0xf5, 0x1e, 0x4b, 0xfe, 0x5f, 0xec, 0xa0, 0x74, 0x5c, 0x41, 0xf9, 0xe3, 0x7f, 0x05, 0x00, 0x00,
- 0xff, 0xff, 0xec, 0x43, 0x3c, 0x8e, 0x51, 0x26, 0x00, 0x00,
+ // 3481 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x4f, 0x73, 0x1c, 0x49,
+ 0x56, 0x77, 0xab, 0xff, 0x54, 0xf7, 0xeb, 0x3f, 0x6a, 0xa7, 0x2c, 0x5b, 0x7f, 0xbc, 0xb6, 0xa6,
+ 0x30, 0x3b, 0x66, 0x60, 0xa5, 0x19, 0xcf, 0x06, 0xb0, 0xc3, 0x02, 0x23, 0xab, 0xdb, 0x56, 0x33,
+ 0x96, 0x5b, 0x94, 0xda, 0x33, 0xb0, 0xc4, 0x44, 0x6d, 0xa9, 0x2a, 0xbb, 0x95, 0xa1, 0xea, 0xca,
+ 0x9a, 0xaa, 0x6c, 0xc9, 0xba, 0x2e, 0x2c, 0x1f, 0x80, 0x0d, 0x0e, 0x70, 0x84, 0x2f, 0xb1, 0x11,
+ 0x7b, 0xe4, 0x4a, 0x70, 0xe1, 0x2b, 0x70, 0xe1, 0x0b, 0x70, 0xe2, 0x40, 0xe4, 0xcb, 0xac, 0x7f,
+ 0xdd, 0x2d, 0xd9, 0x1a, 0x4c, 0x70, 0x51, 0x74, 0xbe, 0xf7, 0x7b, 0xbf, 0xcc, 0x97, 0xf9, 0xf2,
+ 0xe5, 0xab, 0x4c, 0xc1, 0xf6, 0x05, 0xf7, 0xc5, 0x99, 0x63, 0x87, 0x11, 0x17, 0x3c, 0xde, 0xe3,
+ 0x21, 0x0d, 0xb8, 0x2f, 0x76, 0xb1, 0x49, 0x0c, 0xdd, 0xdc, 0x7a, 0x38, 0xe1, 0x7c, 0xe2, 0xd3,
+ 0x3d, 0x27, 0x64, 0x7b, 0x4e, 0x10, 0x70, 0xe1, 0x08, 0xc6, 0x83, 0x58, 0xc1, 0xb6, 0x76, 0x8a,
+ 0x1c, 0x82, 0xba, 0x67, 0xf2, 0xf7, 0x98, 0xf9, 0x54, 0x21, 0xcc, 0x7f, 0xad, 0x00, 0x0c, 0x02,
+ 0x8f, 0xb9, 0x68, 0x47, 0x3e, 0x03, 0x83, 0xfb, 0xc2, 0x66, 0x81, 0xb7, 0x51, 0xda, 0x29, 0x3d,
+ 0x6d, 0x3e, 0xbb, 0xbf, 0x9b, 0x74, 0x3c, 0xf4, 0x45, 0x06, 0x3c, 0xbc, 0x63, 0xd5, 0x38, 0x0a,
+ 0xc8, 0x8f, 0xa1, 0xce, 0x02, 0x31, 0x46, 0x9b, 0x15, 0xb4, 0x79, 0x90, 0xda, 0x0c, 0x02, 0x31,
+ 0x2e, 0x18, 0x19, 0x4c, 0x49, 0xc8, 0x3e, 0xb4, 0xd1, 0x8a, 0x87, 0x34, 0x42, 0xd3, 0x32, 0x9a,
+ 0x6e, 0x17, 0x4c, 0x87, 0x21, 0x8d, 0x0a, 0xe6, 0x4d, 0x96, 0x49, 0xc9, 0x9f, 0x40, 0x8b, 0x07,
+ 0x33, 0xdb, 0x63, 0xb1, 0x8b, 0x0c, 0x15, 0x64, 0xd8, 0xca, 0x06, 0x1c, 0xcc, 0x7a, 0x2c, 0x76,
+ 0x0b, 0x04, 0xc0, 0x53, 0x21, 0xfa, 0x1a, 0xcc, 0xd0, 0xb4, 0x3a, 0xef, 0x6b, 0x30, 0x9b, 0xf3,
+ 0x15, 0x05, 0xd2, 0x57, 0x3e, 0x75, 0x19, 0xda, 0xd4, 0xe6, 0x7c, 0x1d, 0x4e, 0x5d, 0x56, 0xf4,
+ 0x95, 0x2b, 0x09, 0xf9, 0x31, 0x18, 0xe1, 0xb9, 0x9a, 0x54, 0x03, 0x8d, 0x36, 0x53, 0xa3, 0x63,
+ 0xc7, 0x3d, 0xa7, 0x73, 0xf3, 0x1a, 0x9e, 0xe3, 0xbc, 0xfe, 0x21, 0x40, 0xc8, 0x23, 0x61, 0xc7,
+ 0xc2, 0x11, 0xf1, 0x46, 0x7d, 0xae, 0xb7, 0x63, 0x1e, 0x89, 0x13, 0xb9, 0xd8, 0xb1, 0x60, 0x6e,
+ 0x7c, 0x78, 0xc7, 0x6a, 0x84, 0x5a, 0x12, 0x4b, 0xcb, 0xb1, 0xcf, 0x2f, 0xb5, 0x65, 0x63, 0xce,
+ 0xf2, 0x85, 0xcf, 0x2f, 0x8b, 0x96, 0x63, 0x2d, 0x89, 0xc9, 0x1f, 0x40, 0xc3, 0xf1, 0x9d, 0x68,
+ 0x8a, 0x63, 0x05, 0x34, 0xdc, 0x48, 0x0d, 0xf7, 0xa5, 0xa6, 0x30, 0xd4, 0xba, 0xa3, 0x45, 0xcf,
+ 0x6b, 0x50, 0xf1, 0x1c, 0xe1, 0x98, 0xff, 0x59, 0x87, 0xd5, 0x39, 0x9c, 0x9c, 0x67, 0x9f, 0xc7,
+ 0x4b, 0x63, 0xea, 0x15, 0x8f, 0x8b, 0xbe, 0xfb, 0x28, 0x20, 0x3d, 0xe8, 0x78, 0x57, 0x2c, 0x98,
+ 0xd8, 0x13, 0x27, 0x0e, 0x73, 0x91, 0xf5, 0x30, 0xb5, 0xec, 0x49, 0xf5, 0x4b, 0x27, 0x0e, 0x0b,
+ 0xf6, 0x2d, 0x2f, 0x27, 0x96, 0x31, 0x26, 0x17, 0x38, 0xf3, 0x68, 0x3e, 0xc6, 0x86, 0xc1, 0x6c,
+ 0xd1, 0xa9, 0x26, 0xcf, 0xa4, 0xe4, 0x1b, 0xb8, 0x27, 0x29, 0x62, 0xe1, 0x44, 0x62, 0x16, 0xda,
+ 0x63, 0x87, 0xf9, 0xb9, 0x58, 0x7b, 0x92, 0x67, 0x3a, 0x51, 0x98, 0x17, 0x0e, 0xf3, 0x67, 0x11,
+ 0x2d, 0x50, 0xde, 0xe5, 0x05, 0xb5, 0x24, 0xfe, 0x19, 0xdc, 0x47, 0x62, 0x36, 0x09, 0x1c, 0xdf,
+ 0xf6, 0xe8, 0x24, 0x72, 0x3c, 0x9a, 0x8b, 0xc5, 0xdf, 0x2a, 0x50, 0x23, 0xaa, 0xa7, 0x40, 0x05,
+ 0xe6, 0x35, 0xbe, 0xa8, 0x25, 0x7f, 0x05, 0x0f, 0x70, 0x63, 0x44, 0x6c, 0x2c, 0x6c, 0x3e, 0xb6,
+ 0x2f, 0x59, 0xe0, 0xf1, 0xcb, 0x5c, 0xd0, 0x16, 0xc8, 0x7b, 0x12, 0x36, 0x1c, 0x7f, 0x83, 0xa0,
+ 0x05, 0xf2, 0x79, 0x2d, 0x19, 0x81, 0xf4, 0xc6, 0xf6, 0x79, 0x1c, 0xdb, 0xe9, 0x5e, 0x50, 0x61,
+ 0xfd, 0x71, 0x9e, 0xf6, 0x15, 0x8f, 0xe3, 0xe1, 0x58, 0x6e, 0x8a, 0x83, 0x33, 0x27, 0x08, 0xa8,
+ 0x5f, 0xa0, 0xee, 0x70, 0x8d, 0xd0, 0x5b, 0x24, 0x99, 0x67, 0x74, 0x25, 0xce, 0xe6, 0xb9, 0xbe,
+ 0x64, 0x9e, 0x15, 0xe6, 0xda, 0x79, 0xce, 0xd4, 0x92, 0x78, 0xa8, 0x92, 0x84, 0x60, 0x97, 0x6a,
+ 0xa4, 0x6a, 0x37, 0xfc, 0x6e, 0x9e, 0x70, 0x14, 0x39, 0x41, 0x3c, 0x65, 0x71, 0xcc, 0x78, 0x30,
+ 0x08, 0x04, 0x8d, 0xc6, 0x34, 0xa2, 0x81, 0x4b, 0xbf, 0x71, 0xa2, 0x80, 0x05, 0x13, 0x9d, 0x35,
+ 0x46, 0xec, 0x12, 0x47, 0xfa, 0x73, 0x35, 0xb9, 0x8e, 0x2b, 0xd8, 0x05, 0xf6, 0x9b, 0x0d, 0x16,
+ 0x16, 0x67, 0x61, 0x3f, 0x85, 0x2d, 0x1b, 0xaf, 0xf4, 0xb9, 0x88, 0x50, 0x3d, 0x6c, 0xc8, 0x1e,
+ 0xc2, 0x88, 0xbb, 0x34, 0x8e, 0xe5, 0x2e, 0xa0, 0x51, 0xc4, 0x55, 0x96, 0x6c, 0x62, 0x17, 0xbf,
+ 0x9d, 0xef, 0xe2, 0x38, 0xc5, 0xf5, 0x25, 0xac, 0xd0, 0xc1, 0x3a, 0x5f, 0xa6, 0x27, 0x14, 0x36,
+ 0xb3, 0x35, 0x1c, 0xdb, 0xf1, 0x55, 0xe0, 0x66, 0x5e, 0xb4, 0xb0, 0x8b, 0x4f, 0x16, 0xd7, 0xf2,
+ 0x2b, 0x7a, 0x75, 0x72, 0x15, 0xb8, 0xd7, 0x39, 0xa2, 0x40, 0x09, 0x42, 0x76, 0xf3, 0x06, 0xd6,
+ 0x31, 0xc1, 0x8a, 0x99, 0x1d, 0xf2, 0x40, 0xa5, 0x23, 0xec, 0xa2, 0x8d, 0x5d, 0x7c, 0x54, 0x48,
+ 0xb7, 0x62, 0x76, 0xcc, 0x03, 0xcc, 0x42, 0x0b, 0x4b, 0x5a, 0xd4, 0xa5, 0xb9, 0x66, 0x17, 0xda,
+ 0x85, 0x33, 0x89, 0xfc, 0x00, 0x00, 0x8f, 0x13, 0xd9, 0x11, 0xc5, 0x5c, 0xd3, 0xb0, 0x1a, 0x52,
+ 0x22, 0x4d, 0xa9, 0x79, 0x08, 0x9d, 0xe2, 0x79, 0x44, 0x1e, 0x80, 0xa1, 0x8e, 0x2e, 0x95, 0x99,
+ 0x0c, 0xab, 0x86, 0xc7, 0x93, 0x37, 0xc7, 0xb4, 0x32, 0xcf, 0x74, 0x06, 0x77, 0x17, 0x0e, 0x97,
+ 0xeb, 0xc9, 0xbe, 0x80, 0x76, 0x4c, 0x23, 0xe6, 0xf8, 0x76, 0x30, 0x9b, 0x9e, 0xd2, 0x48, 0xe7,
+ 0xb2, 0xf5, 0xd4, 0xfd, 0x13, 0xd4, 0xbe, 0x46, 0xa5, 0xd5, 0x8a, 0x73, 0x2d, 0xf3, 0x37, 0x25,
+ 0x68, 0x17, 0x0e, 0xa3, 0xeb, 0xbb, 0x59, 0x87, 0x1a, 0xce, 0xb6, 0xca, 0x95, 0x86, 0x55, 0x95,
+ 0x33, 0x37, 0xef, 0x4a, 0x79, 0xce, 0x15, 0xf2, 0x18, 0x9a, 0x8e, 0x37, 0x65, 0x81, 0xd6, 0x57,
+ 0x51, 0x0f, 0x28, 0x52, 0x80, 0x85, 0xd1, 0x57, 0xde, 0x7f, 0xf4, 0x3f, 0x07, 0xb2, 0x78, 0x8c,
+ 0x13, 0x02, 0x15, 0x71, 0x15, 0x26, 0x0b, 0x84, 0xbf, 0xf3, 0x5e, 0xad, 0xdc, 0xb0, 0x12, 0xf3,
+ 0xc3, 0x37, 0x2d, 0xe8, 0x14, 0xcf, 0xdd, 0x5b, 0xcf, 0x4f, 0x17, 0xca, 0xe1, 0xb9, 0x40, 0xe6,
+ 0x96, 0x25, 0x7f, 0x9a, 0xff, 0x52, 0x82, 0xee, 0xfc, 0xb9, 0x4c, 0xb6, 0xa1, 0x81, 0xb4, 0x38,
+ 0x72, 0x35, 0x4b, 0x58, 0xf6, 0x8c, 0xe6, 0x46, 0xbf, 0x10, 0x47, 0x13, 0x3a, 0xc5, 0x63, 0x3c,
+ 0xed, 0xb7, 0xa1, 0x25, 0x03, 0x4f, 0xda, 0xe1, 0x41, 0xcd, 0xd4, 0xd1, 0x64, 0x58, 0x35, 0xd9,
+ 0x54, 0x0a, 0x34, 0x0a, 0x38, 0x66, 0x6c, 0xc3, 0xaa, 0xc9, 0xe6, 0x6b, 0x4e, 0xee, 0x43, 0xcd,
+ 0xe5, 0xfc, 0x9c, 0x51, 0x4c, 0xb9, 0x35, 0x4b, 0xb7, 0x12, 0x2f, 0x2a, 0x99, 0x17, 0x4f, 0xa0,
+ 0xa1, 0x92, 0x99, 0xe3, 0x5e, 0x3f, 0x40, 0xf3, 0xa7, 0xd0, 0x38, 0xa4, 0x4e, 0x24, 0x4e, 0xa9,
+ 0x23, 0xc8, 0x1e, 0xac, 0x9d, 0x25, 0x0d, 0x95, 0x8a, 0xc5, 0x2c, 0xa2, 0xda, 0x82, 0xa4, 0xaa,
+ 0x93, 0x44, 0x63, 0xfe, 0x75, 0x09, 0xca, 0xc3, 0x60, 0x76, 0xeb, 0x39, 0x5f, 0x88, 0xa9, 0xf2,
+ 0x7b, 0xc7, 0x14, 0x7a, 0xca, 0x54, 0x14, 0x1a, 0x96, 0xfc, 0x69, 0x7e, 0x05, 0x86, 0x8c, 0x81,
+ 0xa3, 0x78, 0xf2, 0x01, 0x16, 0xff, 0x97, 0x25, 0x68, 0xc8, 0xa4, 0x8a, 0xeb, 0x7f, 0x6b, 0xbe,
+ 0xdc, 0xba, 0x55, 0x0a, 0xeb, 0x56, 0x0c, 0x84, 0xea, 0x7c, 0x20, 0x2c, 0x8e, 0xe3, 0x27, 0xd0,
+ 0x7a, 0x13, 0xfa, 0x2c, 0x38, 0x7f, 0xd7, 0x48, 0xb4, 0xe9, 0x4a, 0x66, 0xfa, 0x77, 0x0d, 0x80,
+ 0x1e, 0xbd, 0x60, 0x2e, 0x1d, 0x04, 0x63, 0x0c, 0x99, 0x0b, 0x1a, 0x78, 0x3c, 0xd2, 0x1b, 0x4e,
+ 0xb7, 0xc8, 0x3d, 0xa8, 0x4e, 0xb9, 0x47, 0x7d, 0x9d, 0xde, 0x54, 0x83, 0xfc, 0x0e, 0x74, 0xcf,
+ 0x9c, 0xc8, 0xbb, 0x74, 0x22, 0x6a, 0x5f, 0xd0, 0x48, 0x9e, 0x89, 0x7a, 0xd7, 0xad, 0x26, 0xf2,
+ 0xaf, 0x95, 0x58, 0x42, 0xc7, 0x2c, 0x9a, 0x16, 0xa0, 0x15, 0x05, 0x4d, 0xe4, 0x09, 0x74, 0x1b,
+ 0x1a, 0x1e, 0x8e, 0x48, 0x8e, 0xbf, 0xab, 0x76, 0x8f, 0x12, 0x0c, 0x3c, 0xf2, 0x29, 0xdc, 0xd3,
+ 0xca, 0x62, 0x50, 0xdc, 0x45, 0x1c, 0x51, 0xba, 0x7c, 0x44, 0x48, 0x3a, 0x79, 0xa0, 0xc8, 0xc9,
+ 0x8b, 0xf1, 0xbc, 0x32, 0xac, 0x7a, 0xc8, 0x03, 0x59, 0x13, 0xc7, 0xe4, 0x11, 0x80, 0xfc, 0xce,
+ 0x09, 0xb8, 0xcf, 0x27, 0x57, 0x49, 0x42, 0xcb, 0x24, 0x64, 0x47, 0x55, 0x04, 0xcc, 0x53, 0x55,
+ 0x9d, 0xde, 0x60, 0x80, 0x0b, 0x88, 0x45, 0x1a, 0x79, 0x08, 0xa0, 0x11, 0x54, 0xd7, 0x36, 0x86,
+ 0x55, 0x47, 0x7d, 0x3f, 0xf0, 0xc8, 0x13, 0xe8, 0x38, 0xbe, 0xcf, 0xdd, 0x8c, 0xa1, 0x8e, 0x88,
+ 0x16, 0x4a, 0x13, 0x8e, 0x1d, 0x68, 0xa5, 0x28, 0xaa, 0xeb, 0x0e, 0xc3, 0x02, 0x8d, 0x91, 0x3c,
+ 0x4f, 0xa1, 0x9b, 0x85, 0x84, 0x66, 0x02, 0x44, 0x75, 0xd2, 0xc0, 0x50, 0x5c, 0x4f, 0xa0, 0x93,
+ 0x43, 0x52, 0x5d, 0x06, 0x18, 0x56, 0x2b, 0xc5, 0x49, 0x3e, 0x13, 0xda, 0x3a, 0x99, 0x68, 0xb2,
+ 0x36, 0x82, 0x9a, 0x2a, 0xa5, 0x28, 0xa6, 0x47, 0xd0, 0x4c, 0x30, 0x92, 0xa6, 0xa3, 0xe2, 0x50,
+ 0x21, 0x24, 0xc7, 0x97, 0x50, 0x8b, 0x9c, 0x60, 0x42, 0xe3, 0x8d, 0xd5, 0x9d, 0xf2, 0xd3, 0xe6,
+ 0xb3, 0xa7, 0x59, 0xbd, 0x9d, 0x06, 0x94, 0xfe, 0x69, 0xd1, 0x98, 0xcf, 0x22, 0x97, 0x5a, 0x88,
+ 0xb7, 0xb4, 0xdd, 0xd6, 0xdf, 0x57, 0xe0, 0xde, 0x32, 0x00, 0xd9, 0x4c, 0x3e, 0x13, 0xbd, 0x78,
+ 0xa3, 0xb4, 0x53, 0x7e, 0x6a, 0xe8, 0x6f, 0x41, 0x6f, 0x7e, 0xc5, 0x56, 0x16, 0x56, 0xec, 0x00,
+ 0xaa, 0x21, 0xe7, 0x7e, 0xbc, 0x51, 0xc6, 0x41, 0xfd, 0xe8, 0x7d, 0x07, 0xb5, 0x7b, 0xcc, 0xb9,
+ 0x6f, 0x29, 0xdb, 0xad, 0xff, 0x5e, 0x81, 0x8a, 0x6c, 0x93, 0x3f, 0xcb, 0x1d, 0x3f, 0x9d, 0x67,
+ 0xbf, 0x7f, 0x2b, 0x32, 0xfc, 0x23, 0x53, 0xbe, 0x3e, 0xb6, 0x4e, 0xc0, 0x88, 0xcf, 0x9c, 0x88,
+ 0x05, 0x13, 0x1c, 0x76, 0xe7, 0xd9, 0x4f, 0x6e, 0x47, 0x77, 0xa2, 0x8c, 0x91, 0x31, 0x61, 0x92,
+ 0x1b, 0x53, 0x2d, 0xa0, 0x3a, 0x13, 0x54, 0x43, 0xee, 0x73, 0xaa, 0x3f, 0x3c, 0x0c, 0x4b, 0xfe,
+ 0x34, 0xf7, 0xa1, 0x9e, 0x0c, 0x87, 0x00, 0xd4, 0x86, 0xaf, 0xdf, 0xd8, 0x83, 0x5e, 0xf7, 0x0e,
+ 0x69, 0x41, 0x7d, 0xff, 0xd5, 0xab, 0xe1, 0x81, 0x6c, 0x95, 0x48, 0x07, 0xe0, 0x65, 0xff, 0xe8,
+ 0x78, 0x68, 0x8d, 0x64, 0x7b, 0x85, 0x34, 0xc1, 0x78, 0xf1, 0x6a, 0xf8, 0x8d, 0x6c, 0x94, 0xcd,
+ 0x33, 0x68, 0xe6, 0x86, 0x40, 0xee, 0x03, 0xe9, 0xf5, 0x7b, 0x83, 0x83, 0xfd, 0x51, 0xbf, 0x67,
+ 0x1f, 0xf7, 0x2d, 0x7b, 0xf0, 0x7a, 0xf4, 0xa2, 0x7b, 0x87, 0x3c, 0x86, 0xed, 0x93, 0xc3, 0x7d,
+ 0xab, 0xdf, 0xb3, 0x9f, 0xff, 0xa5, 0xbd, 0xff, 0xea, 0x15, 0xca, 0xf1, 0xc7, 0xa8, 0x7f, 0x70,
+ 0xd8, 0x2d, 0x91, 0x1d, 0x78, 0xb8, 0x04, 0x70, 0xb2, 0x7f, 0xd4, 0x57, 0x88, 0x15, 0xf3, 0x6f,
+ 0xca, 0x00, 0x07, 0xbe, 0x13, 0xc7, 0x6c, 0xcc, 0x68, 0x84, 0xf9, 0xd3, 0x16, 0x61, 0x9a, 0xcd,
+ 0xaa, 0x7c, 0x14, 0x32, 0x8f, 0xac, 0x41, 0x95, 0xdb, 0x17, 0x69, 0x56, 0xad, 0xf0, 0xaf, 0x19,
+ 0xe6, 0x5a, 0xa6, 0xb0, 0x7a, 0x42, 0x58, 0x82, 0x65, 0x88, 0x55, 0x53, 0x52, 0x61, 0x12, 0xfb,
+ 0x00, 0x0c, 0x6e, 0x87, 0xa7, 0x4c, 0xc4, 0x3a, 0xc9, 0xd6, 0xf8, 0xb1, 0x6c, 0x61, 0xfe, 0xd4,
+ 0x0a, 0x7d, 0xa2, 0x32, 0xa5, 0xd8, 0x84, 0x3a, 0x15, 0x67, 0xea, 0x5c, 0x57, 0x5b, 0xdd, 0xa0,
+ 0xe2, 0x2c, 0x39, 0xd6, 0xbd, 0x58, 0xd8, 0x53, 0xc7, 0xc5, 0x2d, 0xde, 0xb2, 0x6a, 0x5e, 0x2c,
+ 0x8e, 0x1c, 0x57, 0x2a, 0xe2, 0xc8, 0x45, 0x45, 0x43, 0x29, 0xe2, 0xc8, 0x95, 0x0a, 0x19, 0xe4,
+ 0xa1, 0xba, 0x6d, 0xd1, 0x7b, 0xd9, 0x60, 0xe1, 0x31, 0xde, 0xd8, 0xac, 0x83, 0xb4, 0xb6, 0x59,
+ 0xa8, 0x37, 0x6f, 0xd5, 0x8b, 0xc5, 0x20, 0x94, 0x62, 0x49, 0xc5, 0x42, 0x9d, 0xc7, 0xaa, 0x71,
+ 0xe4, 0x0e, 0x42, 0x49, 0x24, 0xc5, 0x72, 0x77, 0xeb, 0x7d, 0x2c, 0x7b, 0x94, 0x09, 0x4e, 0xaa,
+ 0x24, 0x11, 0xaa, 0xd4, 0x06, 0x96, 0xa3, 0x44, 0xd5, 0x0e, 0xb4, 0xc2, 0x73, 0x61, 0x0b, 0x67,
+ 0xa2, 0xfc, 0x59, 0x55, 0x5b, 0x29, 0x3c, 0x17, 0x23, 0x07, 0x57, 0xd8, 0xfc, 0x65, 0x19, 0x1a,
+ 0xf2, 0x8b, 0x83, 0x07, 0x07, 0x53, 0x4c, 0x19, 0x8e, 0xe7, 0xd9, 0x7c, 0x26, 0x68, 0x24, 0xad,
+ 0x70, 0x31, 0xea, 0x56, 0xd3, 0xf1, 0xbc, 0xa1, 0x94, 0x8d, 0x9c, 0x89, 0x4c, 0x53, 0x11, 0x9d,
+ 0xf2, 0x0b, 0x9a, 0x83, 0xad, 0x20, 0xac, 0xa3, 0xe4, 0x29, 0x72, 0x07, 0x5a, 0x22, 0x72, 0x42,
+ 0x5b, 0x70, 0xfb, 0x8c, 0xc7, 0x2a, 0x7c, 0xeb, 0x16, 0x48, 0xd9, 0x88, 0x1f, 0xf2, 0x58, 0x90,
+ 0xdf, 0x03, 0x12, 0xd1, 0xa9, 0x13, 0x9d, 0x6b, 0x2e, 0xb5, 0x1e, 0x15, 0xc4, 0x75, 0x95, 0x06,
+ 0xd9, 0xd4, 0xca, 0x64, 0x68, 0x16, 0x04, 0x29, 0xba, 0x9a, 0x47, 0x0f, 0xa4, 0x42, 0xa1, 0xb5,
+ 0x2f, 0x0a, 0x2a, 0x07, 0x59, 0x4b, 0x7d, 0x41, 0x54, 0xd1, 0x97, 0x0c, 0x66, 0xe4, 0x7d, 0x49,
+ 0x91, 0xbb, 0xb0, 0x26, 0xe4, 0x67, 0xa1, 0xef, 0x88, 0x3c, 0xb8, 0x8e, 0xe0, 0xbb, 0xa9, 0x6a,
+ 0x39, 0x3e, 0x9b, 0xa8, 0xc6, 0x1c, 0x3e, 0x99, 0x2b, 0xf3, 0xd7, 0x25, 0xa8, 0xa9, 0x75, 0x20,
+ 0x4f, 0xa0, 0xec, 0x4e, 0x93, 0xab, 0x11, 0x92, 0xdd, 0xb6, 0x24, 0xab, 0x64, 0x49, 0xf5, 0xf2,
+ 0x9d, 0x91, 0x8b, 0xf6, 0x72, 0x21, 0xda, 0xb3, 0xed, 0x55, 0x99, 0xdb, 0x5e, 0x6a, 0xcb, 0x54,
+ 0x8b, 0x5b, 0x66, 0xf9, 0xce, 0xc8, 0xf6, 0x9d, 0x91, 0xdb, 0x77, 0xe6, 0xaf, 0xcb, 0x50, 0x79,
+ 0xe1, 0xf3, 0x4b, 0x3c, 0x08, 0x5d, 0xf9, 0x69, 0x69, 0xe7, 0x2b, 0x93, 0x55, 0xab, 0xa5, 0xa4,
+ 0x83, 0x65, 0x95, 0xd2, 0x6a, 0x52, 0x29, 0xad, 0x43, 0x6d, 0x16, 0x30, 0x29, 0x6e, 0x2a, 0xf1,
+ 0x2c, 0x60, 0x37, 0x55, 0xc4, 0xdb, 0x80, 0xc7, 0x94, 0x8a, 0x6b, 0x55, 0x65, 0xd4, 0xa5, 0x00,
+ 0x37, 0xea, 0x26, 0xd4, 0x93, 0xc3, 0x16, 0xb7, 0xdd, 0xaa, 0x65, 0xe8, 0x83, 0x96, 0xfc, 0x10,
+ 0x56, 0x03, 0x2a, 0x2e, 0x39, 0x46, 0x91, 0x1a, 0x65, 0x15, 0x11, 0x6d, 0x2d, 0x1e, 0x2c, 0xab,
+ 0xd4, 0x6b, 0x08, 0xc9, 0x15, 0x68, 0x9f, 0x03, 0xb8, 0x69, 0xf6, 0xd2, 0xd7, 0x1d, 0x6b, 0xe9,
+ 0x5a, 0x65, 0x89, 0xcd, 0xca, 0xc1, 0xc8, 0xc7, 0x50, 0x73, 0x70, 0x15, 0xf5, 0x35, 0xc6, 0xea,
+ 0xdc, 0xe2, 0x5a, 0x5a, 0x4d, 0xb6, 0xa0, 0x1e, 0x46, 0x8c, 0x47, 0x4c, 0x5c, 0x61, 0xc8, 0xac,
+ 0x5a, 0x69, 0x3b, 0x57, 0xf1, 0xb7, 0x0a, 0x15, 0x7f, 0xae, 0xd4, 0x6c, 0x17, 0x4a, 0xcd, 0x4d,
+ 0xa8, 0x4f, 0x22, 0x3e, 0x0b, 0xa5, 0x1f, 0x3a, 0x3f, 0x60, 0x7b, 0xe0, 0x99, 0x23, 0x68, 0xcd,
+ 0xd7, 0x51, 0xaa, 0x18, 0x4c, 0x16, 0xaf, 0x65, 0xd5, 0x95, 0x60, 0xe0, 0x91, 0x8f, 0x61, 0x55,
+ 0x2b, 0xe3, 0x90, 0xba, 0x6c, 0xcc, 0x5c, 0x5d, 0x64, 0x76, 0x94, 0xf8, 0x44, 0x4b, 0xcd, 0x7f,
+ 0xab, 0x40, 0xa7, 0x78, 0x1d, 0x79, 0x7d, 0xb5, 0xba, 0x09, 0xf5, 0xe8, 0xad, 0x7d, 0x7a, 0x25,
+ 0x68, 0x8c, 0x6c, 0x35, 0xcb, 0x88, 0xde, 0x3e, 0x97, 0x4d, 0xb9, 0x02, 0xd1, 0x5b, 0x3b, 0xc4,
+ 0x72, 0x57, 0xc5, 0x73, 0xcd, 0x6a, 0x44, 0x6f, 0x55, 0xfd, 0x1b, 0xe3, 0xde, 0x7d, 0x6b, 0xcf,
+ 0x5c, 0x47, 0xe6, 0x3e, 0x0d, 0xaa, 0x20, 0xa8, 0x13, 0xbd, 0x7d, 0x23, 0xc5, 0x45, 0xe4, 0xb4,
+ 0x80, 0xac, 0x26, 0xc8, 0xa3, 0x45, 0xe4, 0x69, 0x01, 0x59, 0x4b, 0x90, 0xcf, 0x17, 0x91, 0xea,
+ 0x1e, 0x26, 0x41, 0x1a, 0x09, 0x12, 0xef, 0x55, 0x12, 0xe4, 0x26, 0xd4, 0x45, 0xe2, 0x61, 0x5d,
+ 0x79, 0x28, 0x32, 0x0f, 0x45, 0xe6, 0x61, 0x43, 0x79, 0x28, 0xf2, 0x1e, 0x8a, 0x79, 0x0f, 0x41,
+ 0xf5, 0x21, 0x16, 0x3c, 0x14, 0xf3, 0x1e, 0x36, 0x13, 0xe4, 0xd1, 0x22, 0xb2, 0xe8, 0x61, 0x2b,
+ 0x41, 0x3e, 0x5f, 0x44, 0x16, 0x3d, 0x6c, 0x27, 0xc8, 0x82, 0x87, 0x26, 0xb4, 0xa3, 0xb7, 0xb6,
+ 0x1b, 0xb9, 0x0a, 0x1d, 0x63, 0x94, 0xd5, 0xac, 0x66, 0xf4, 0xf6, 0x20, 0x72, 0x11, 0x89, 0xae,
+ 0x9e, 0xb2, 0x30, 0x01, 0xac, 0x2a, 0x57, 0x4f, 0x59, 0xa8, 0xd5, 0x0f, 0xa1, 0x21, 0xd8, 0x94,
+ 0xc6, 0xc2, 0x99, 0x86, 0xf8, 0x3d, 0x60, 0x58, 0x99, 0xc0, 0xfc, 0x4d, 0x09, 0x3a, 0xc5, 0x5b,
+ 0xea, 0x7c, 0x5e, 0x28, 0x15, 0xf2, 0xc2, 0xf7, 0x0f, 0xa8, 0xef, 0xbf, 0x50, 0x37, 0x8f, 0xfe,
+ 0x4b, 0x68, 0x17, 0xae, 0xb5, 0xaf, 0xdf, 0x0c, 0xf7, 0xa1, 0x16, 0x0b, 0x47, 0xcc, 0x62, 0x5d,
+ 0xf3, 0xea, 0x96, 0xf9, 0x2d, 0xac, 0x2d, 0xb9, 0xde, 0xbe, 0xf5, 0xc7, 0x68, 0x46, 0x5f, 0x2e,
+ 0xd0, 0xff, 0xf3, 0x0a, 0x90, 0xc5, 0x9b, 0xef, 0xef, 0x73, 0xb1, 0xe4, 0xf3, 0xd8, 0x2e, 0x74,
+ 0xd1, 0xf0, 0x79, 0x7c, 0x82, 0x02, 0xa5, 0x3e, 0x4d, 0xd4, 0x95, 0x44, 0x7d, 0xaa, 0xd5, 0x4f,
+ 0xa1, 0xeb, 0xf3, 0xd0, 0xb5, 0xa7, 0x2c, 0x4e, 0x39, 0xd4, 0xb7, 0x5a, 0x47, 0xca, 0x8f, 0x58,
+ 0x9c, 0x10, 0x7d, 0x06, 0xeb, 0x1a, 0xa9, 0x03, 0x2e, 0x81, 0xd7, 0xd4, 0xf7, 0xa1, 0x82, 0xab,
+ 0xc0, 0xd3, 0x26, 0x8f, 0xa1, 0xe9, 0xf3, 0x31, 0x4b, 0x80, 0x86, 0x2a, 0x83, 0xa4, 0x48, 0x03,
+ 0x3e, 0x82, 0x96, 0xcf, 0x9d, 0x69, 0x8a, 0xa8, 0x23, 0xa2, 0x89, 0x32, 0x05, 0x31, 0x29, 0x6c,
+ 0xdf, 0x70, 0xa9, 0xff, 0xc1, 0x16, 0xe3, 0x1f, 0x4a, 0xb0, 0x75, 0xfd, 0x0d, 0xff, 0x87, 0xea,
+ 0x86, 0x7c, 0x0e, 0xf7, 0x59, 0x20, 0x3f, 0xd2, 0xa9, 0x7d, 0xca, 0x84, 0x9e, 0xc7, 0xc8, 0x11,
+ 0x54, 0x17, 0x08, 0x6b, 0x5a, 0xfb, 0x9c, 0x09, 0x9c, 0x48, 0xcb, 0x11, 0xd4, 0xfc, 0x95, 0x1a,
+ 0xdb, 0x35, 0x0f, 0x04, 0x1f, 0x6c, 0x6c, 0xf7, 0xa0, 0x8a, 0x4f, 0x15, 0x49, 0xad, 0x82, 0x0d,
+ 0xc9, 0x1e, 0xd0, 0x4b, 0x9b, 0x7e, 0x97, 0x54, 0x2b, 0xb5, 0x80, 0x5e, 0xf6, 0xbf, 0xf3, 0xcc,
+ 0x33, 0x78, 0x74, 0xf3, 0xf3, 0xc2, 0x07, 0x5b, 0x9b, 0x7f, 0x2c, 0xa9, 0x18, 0xb8, 0xe6, 0xc1,
+ 0xe1, 0xff, 0x77, 0x71, 0x7e, 0x51, 0x02, 0xf3, 0xdd, 0x8f, 0x17, 0xff, 0xb7, 0x8b, 0x64, 0x7e,
+ 0x87, 0x6b, 0x71, 0xc3, 0x23, 0xc7, 0xad, 0xfb, 0x7f, 0x0c, 0x4d, 0x7c, 0x89, 0x88, 0xa8, 0x13,
+ 0xeb, 0xab, 0x27, 0xc3, 0x02, 0x29, 0xb2, 0x50, 0x62, 0x9e, 0xc3, 0x47, 0xef, 0x7c, 0x91, 0xf8,
+ 0x60, 0x11, 0xc0, 0x60, 0xe3, 0xba, 0xb7, 0x89, 0xef, 0x93, 0x2f, 0x23, 0x8f, 0x25, 0x47, 0xa2,
+ 0x72, 0xac, 0x11, 0x79, 0x4c, 0x1d, 0x89, 0xe6, 0x6b, 0x78, 0x78, 0xd3, 0x63, 0xce, 0x6d, 0xbb,
+ 0x33, 0xff, 0xab, 0x04, 0xcd, 0x97, 0xb2, 0xee, 0x3b, 0xa2, 0x58, 0xeb, 0x7d, 0x04, 0x2d, 0x96,
+ 0xdc, 0x07, 0x27, 0x24, 0x6d, 0x7c, 0x50, 0x57, 0xb2, 0x81, 0x47, 0x06, 0xd0, 0xc9, 0x20, 0x58,
+ 0x68, 0xab, 0x4b, 0x0d, 0x33, 0xad, 0x5b, 0x73, 0x84, 0xbb, 0xe9, 0xed, 0x32, 0xde, 0x5e, 0xb4,
+ 0x59, 0xbe, 0x49, 0x1e, 0x41, 0x73, 0x42, 0xa7, 0x76, 0x52, 0x4f, 0x97, 0xb1, 0x33, 0x59, 0x4f,
+ 0x1f, 0xab, 0x7a, 0x3a, 0x5f, 0xf1, 0x56, 0x50, 0x99, 0xb6, 0xcd, 0x3f, 0x86, 0x76, 0x81, 0x9b,
+ 0x18, 0x50, 0x3e, 0x1e, 0xbe, 0xee, 0xde, 0x21, 0x5d, 0x68, 0xf5, 0x8f, 0x87, 0xaf, 0xed, 0xcf,
+ 0x5e, 0xda, 0xc7, 0xfb, 0xa3, 0xc3, 0x6e, 0x89, 0xdc, 0x85, 0xb6, 0x92, 0x7c, 0xaa, 0x45, 0x2b,
+ 0xe6, 0xdf, 0xae, 0x40, 0x15, 0xc7, 0x59, 0xa8, 0x84, 0x95, 0xbb, 0x49, 0x25, 0x4c, 0x7e, 0x0a,
+ 0x86, 0xcb, 0xa7, 0x53, 0x47, 0xbf, 0x2c, 0x2f, 0xf8, 0x98, 0xf7, 0x34, 0x3e, 0x50, 0x48, 0x2b,
+ 0x31, 0x21, 0xbb, 0x60, 0x4c, 0x95, 0x4a, 0x5f, 0x49, 0xdd, 0x5b, 0x36, 0x43, 0x56, 0x02, 0xca,
+ 0x7d, 0x08, 0x54, 0x6e, 0xfc, 0x10, 0x30, 0xbf, 0x82, 0xb5, 0x25, 0x1d, 0x93, 0x55, 0x68, 0xee,
+ 0xf7, 0x7a, 0xf6, 0x51, 0xff, 0xe8, 0x79, 0xdf, 0x3a, 0xe9, 0xde, 0x21, 0x04, 0x3a, 0x56, 0xff,
+ 0x68, 0xf8, 0x75, 0x3f, 0x95, 0x95, 0x24, 0xe8, 0xa4, 0x3f, 0x4a, 0x05, 0x2b, 0xa6, 0x01, 0xd5,
+ 0xfe, 0x34, 0x14, 0x57, 0xcf, 0xfe, 0xa9, 0x03, 0xc6, 0x50, 0x75, 0x48, 0x7a, 0x00, 0x3d, 0x16,
+ 0x3b, 0xa7, 0x3e, 0x1d, 0xfa, 0x82, 0x74, 0xd2, 0x81, 0x20, 0x72, 0x6b, 0xae, 0x6d, 0xde, 0xff,
+ 0xc5, 0xbf, 0xff, 0xc7, 0xaf, 0x56, 0xba, 0x66, 0x73, 0xef, 0xe2, 0xb3, 0x3d, 0x6d, 0xf7, 0x45,
+ 0xe9, 0x13, 0xf2, 0x02, 0x9a, 0x16, 0xa5, 0xc1, 0xfb, 0xd2, 0x3c, 0x40, 0x9a, 0xbb, 0x66, 0x4b,
+ 0xd2, 0x24, 0x86, 0x92, 0xa7, 0x0f, 0x4d, 0x9d, 0x3c, 0xe8, 0x30, 0x98, 0x91, 0x56, 0xfe, 0x45,
+ 0x70, 0x81, 0x65, 0x03, 0x59, 0x88, 0xd9, 0x96, 0x2c, 0x7d, 0xd5, 0x79, 0x30, 0x93, 0x34, 0x87,
+ 0xd0, 0xee, 0x51, 0xe7, 0xbd, 0x89, 0x36, 0x91, 0x68, 0xcd, 0xec, 0xe4, 0xbc, 0xd2, 0x4c, 0x07,
+ 0xd0, 0xe8, 0x51, 0x9f, 0xde, 0x7a, 0x38, 0xa9, 0x91, 0x24, 0x19, 0x00, 0xe8, 0x07, 0x89, 0xe1,
+ 0x4c, 0x90, 0x6e, 0xe1, 0x3f, 0x44, 0x8e, 0xe2, 0xc9, 0xcd, 0xe3, 0xc9, 0x2c, 0x25, 0xd5, 0x10,
+ 0x5a, 0xe9, 0x6b, 0x84, 0x24, 0x23, 0x85, 0x97, 0x5f, 0x14, 0x2f, 0xd0, 0x6d, 0x23, 0xdd, 0xba,
+ 0xd9, 0x45, 0xba, 0x9c, 0xb5, 0x24, 0xfc, 0x0b, 0x58, 0xcd, 0xbf, 0x2b, 0x48, 0xce, 0xec, 0xd9,
+ 0x25, 0xaf, 0x59, 0xa0, 0x7d, 0x84, 0xb4, 0x1b, 0xe6, 0x9a, 0xa4, 0x9d, 0xe3, 0x90, 0xcc, 0x5f,
+ 0x82, 0x21, 0x8b, 0xf6, 0x7d, 0xcf, 0x23, 0xed, 0xc2, 0x3f, 0x9b, 0xdc, 0x1c, 0x55, 0xda, 0x46,
+ 0x45, 0x15, 0xc8, 0x96, 0x85, 0x57, 0x31, 0xef, 0x22, 0x29, 0x4c, 0x5a, 0x66, 0x26, 0x79, 0x4e,
+ 0xa0, 0x93, 0x3e, 0x6a, 0x1d, 0x9c, 0x51, 0xf7, 0x7c, 0x21, 0x40, 0xb3, 0x69, 0x4c, 0x81, 0xe6,
+ 0x0f, 0x90, 0xf0, 0x81, 0x49, 0x24, 0x61, 0xd1, 0x5e, 0x92, 0x1e, 0x41, 0x53, 0xc5, 0xdc, 0x31,
+ 0x0f, 0x06, 0xe3, 0xdc, 0x42, 0xa4, 0xb9, 0x6a, 0x61, 0x88, 0x5b, 0xc8, 0x78, 0xcf, 0x5c, 0xcd,
+ 0x02, 0x16, 0x8d, 0xf5, 0xc2, 0xea, 0xc8, 0x7b, 0x7f, 0xbe, 0xc2, 0xc2, 0xe6, 0xad, 0x25, 0xa1,
+ 0x05, 0xed, 0x97, 0x54, 0xe4, 0xde, 0x7d, 0xe6, 0x7d, 0x5e, 0x5b, 0x72, 0x35, 0x6d, 0x3e, 0x44,
+ 0xca, 0xfb, 0xe6, 0x5d, 0x49, 0x59, 0xb0, 0x97, 0x9c, 0x7f, 0x0a, 0x35, 0x8b, 0x9e, 0x72, 0xfe,
+ 0xee, 0x1d, 0xbe, 0x8e, 0x3c, 0xab, 0x26, 0xa8, 0x1d, 0x2e, 0x6d, 0x24, 0xc1, 0x1b, 0xb8, 0x7b,
+ 0xc0, 0x7d, 0x9f, 0xba, 0xf9, 0xcb, 0x81, 0x77, 0x71, 0xed, 0x20, 0xd7, 0x96, 0xb9, 0x2e, 0xb9,
+ 0x16, 0xcc, 0x25, 0x6d, 0x04, 0x0f, 0x0e, 0x22, 0xea, 0x08, 0x3a, 0x8a, 0x9c, 0xf1, 0x98, 0xb9,
+ 0x27, 0xee, 0x19, 0xf5, 0x66, 0xbe, 0x4c, 0xb5, 0x8f, 0x77, 0x0b, 0xff, 0xe4, 0xb6, 0x00, 0x58,
+ 0xe8, 0xed, 0x87, 0xd8, 0xdb, 0x8e, 0xb9, 0x8d, 0xbd, 0x2d, 0x67, 0xd5, 0x7d, 0xaa, 0x08, 0xfb,
+ 0xd0, 0x7d, 0x5e, 0xc3, 0x2a, 0xfb, 0x1c, 0xc3, 0x5a, 0x61, 0x44, 0x7f, 0x3e, 0xa3, 0x33, 0x1a,
+ 0x93, 0xed, 0xa5, 0xfd, 0x29, 0xe5, 0x42, 0x5f, 0x26, 0xf6, 0xf5, 0xd0, 0x7c, 0xb0, 0xe0, 0x9f,
+ 0x32, 0xd0, 0xfd, 0x14, 0x46, 0xf1, 0xbf, 0xee, 0x67, 0x09, 0x9b, 0xec, 0xe7, 0x8f, 0xa0, 0xab,
+ 0xb6, 0x41, 0xae, 0xae, 0xb9, 0x3e, 0x4c, 0x33, 0x90, 0x79, 0xe7, 0xd3, 0x12, 0xf9, 0x16, 0xd6,
+ 0x8f, 0x69, 0x34, 0xe6, 0xd1, 0x14, 0x8f, 0xc8, 0x61, 0x48, 0xa3, 0x79, 0x06, 0x54, 0x2c, 0x8c,
+ 0xec, 0x09, 0x8e, 0xec, 0x91, 0xb9, 0x29, 0x47, 0xb6, 0x94, 0xe2, 0x8b, 0xd2, 0x27, 0xcf, 0xbf,
+ 0x85, 0x6d, 0x1e, 0x4d, 0xd0, 0xd4, 0xe5, 0x91, 0xb7, 0xab, 0xfe, 0x73, 0x32, 0xa1, 0x7a, 0xde,
+ 0xfe, 0x1a, 0xdb, 0xf2, 0x18, 0x1d, 0xbe, 0x1a, 0xfd, 0x6c, 0x6f, 0xc2, 0xc4, 0xd9, 0xec, 0x74,
+ 0xd7, 0xe5, 0xd3, 0xbd, 0xc4, 0x64, 0x4f, 0x99, 0xfc, 0x48, 0xff, 0xb3, 0xe5, 0xc5, 0xe7, 0x7b,
+ 0x13, 0x9e, 0xfc, 0xdb, 0xe6, 0x71, 0xe9, 0xb4, 0x86, 0xf2, 0xcf, 0xff, 0x27, 0x00, 0x00, 0xff,
+ 0xff, 0xf2, 0x03, 0xdf, 0xca, 0xd8, 0x29, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -3421,6 +3684,7 @@
CreateTrafficQueues(ctx context.Context, in *tech_profile.TrafficQueues, opts ...grpc.CallOption) (*Empty, error)
RemoveTrafficQueues(ctx context.Context, in *tech_profile.TrafficQueues, opts ...grpc.CallOption) (*Empty, error)
EnableIndication(ctx context.Context, in *Empty, opts ...grpc.CallOption) (Openolt_EnableIndicationClient, error)
+ PerformGroupOperation(ctx context.Context, in *Group, opts ...grpc.CallOption) (*Empty, error)
}
type openoltClient struct {
@@ -3643,6 +3907,15 @@
return m, nil
}
+func (c *openoltClient) PerformGroupOperation(ctx context.Context, in *Group, opts ...grpc.CallOption) (*Empty, error) {
+ out := new(Empty)
+ err := c.cc.Invoke(ctx, "/openolt.Openolt/PerformGroupOperation", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// OpenoltServer is the server API for Openolt service.
type OpenoltServer interface {
DisableOlt(context.Context, *Empty) (*Empty, error)
@@ -3666,6 +3939,7 @@
CreateTrafficQueues(context.Context, *tech_profile.TrafficQueues) (*Empty, error)
RemoveTrafficQueues(context.Context, *tech_profile.TrafficQueues) (*Empty, error)
EnableIndication(*Empty, Openolt_EnableIndicationServer) error
+ PerformGroupOperation(context.Context, *Group) (*Empty, error)
}
func RegisterOpenoltServer(s *grpc.Server, srv OpenoltServer) {
@@ -4053,6 +4327,24 @@
return x.ServerStream.SendMsg(m)
}
+func _Openolt_PerformGroupOperation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(Group)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(OpenoltServer).PerformGroupOperation(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/openolt.Openolt/PerformGroupOperation",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(OpenoltServer).PerformGroupOperation(ctx, req.(*Group))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _Openolt_serviceDesc = grpc.ServiceDesc{
ServiceName: "openolt.Openolt",
HandlerType: (*OpenoltServer)(nil),
@@ -4137,6 +4429,10 @@
MethodName: "RemoveTrafficQueues",
Handler: _Openolt_RemoveTrafficQueues_Handler,
},
+ {
+ MethodName: "PerformGroupOperation",
+ Handler: _Openolt_PerformGroupOperation_Handler,
+ },
},
Streams: []grpc.StreamDesc{
{
diff --git a/protos/voltha_protos/openolt.proto b/protos/voltha_protos/openolt.proto
index 7e51b8e..f480335 100644
--- a/protos/voltha_protos/openolt.proto
+++ b/protos/voltha_protos/openolt.proto
@@ -165,6 +165,13 @@
}
rpc EnableIndication(Empty) returns (stream Indication) {}
+
+ rpc PerformGroupOperation(Group) returns (Empty) {
+ option (google.api.http) = {
+ post: "/v1/PerformGroupOperation"
+ body: "*"
+ };
+ }
}
message Indication {
@@ -355,6 +362,12 @@
bool add_outer_tag = 1;
bool remove_outer_tag = 2;
bool trap_to_host = 3;
+ bool remark_outer_pbits = 4;
+ bool remark_inner_pbits = 5;
+ bool add_inner_tag = 6;
+ bool remove_inner_tag = 7;
+ bool translate_inner_tag = 8;
+ bool translate_outer_tag = 9;
}
message Action {
@@ -381,6 +394,7 @@
sfixed32 priority = 9;
fixed64 cookie = 12; // must be provided for any flow with trap_to_host action. Returned in PacketIndication
fixed32 port_no = 13; // must be provided for any flow with trap_to_host action. Returned in PacketIndication
+ fixed32 group_id = 14;
}
message SerialNumber {
@@ -502,4 +516,33 @@
fixed32 onu_id = 2;
}
+message GroupMember {
+ enum InterfaceType {
+ PON = 0;
+ EPON_1G_PATH = 1;
+ EPON_10G_PATH = 2;
+ }
+ uint32 interface_id = 1;
+ InterfaceType interface_type = 2;
+ uint32 gem_port_id = 3;
+ uint32 priority = 4; // Priority (and also the ID) of the default fixed queue for the multicast traffic.
+ // This queue is attached to the default PON port scheduler.
+}
+
+message Group {
+ enum GroupMembersCommand {
+ ADD_MEMBERS = 0;
+ REMOVE_MEMBERS = 1;
+ SET_MEMBERS = 2;
+ }
+
+ uint32 group_id = 1;
+ GroupMembersCommand command = 2;
+ repeated GroupMember members = 3;
+ Action action = 4;
+}
+
+
+
message Empty {}
+
diff --git a/voltha.pb b/voltha.pb
index 7bf9e84..f8c08bf 100644
--- a/voltha.pb
+++ b/voltha.pb
Binary files differ