vendor: Update everything
GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/4620
This commit is contained in:
30
vendor/github.com/gogo/protobuf/test/unrecognizedgroup/Makefile
generated
vendored
30
vendor/github.com/gogo/protobuf/test/unrecognizedgroup/Makefile
generated
vendored
@@ -1,30 +0,0 @@
|
||||
# Protocol Buffers for Go with Gadgets
|
||||
#
|
||||
# Copyright (c) 2013, The GoGo Authors. All rights reserved.
|
||||
# http://github.com/gogo/protobuf
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions are
|
||||
# met:
|
||||
#
|
||||
# * Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# * Redistributions in binary form must reproduce the above
|
||||
# copyright notice, this list of conditions and the following disclaimer
|
||||
# in the documentation and/or other materials provided with the
|
||||
# distribution.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
regenerate:
|
||||
(protoc --proto_path=../../../../../:../../protobuf/:. --gogo_out=. unrecognizedgroup.proto)
|
||||
128
vendor/github.com/gogo/protobuf/test/unrecognizedgroup/oldnew_test.go
generated
vendored
128
vendor/github.com/gogo/protobuf/test/unrecognizedgroup/oldnew_test.go
generated
vendored
@@ -1,128 +0,0 @@
|
||||
// Protocol Buffers for Go with Gadgets
|
||||
//
|
||||
// Copyright (c) 2013, The GoGo Authors. All rights reserved.
|
||||
// http://github.com/gogo/protobuf
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
package unrecognizedgroup
|
||||
|
||||
import (
|
||||
"github.com/gogo/protobuf/proto"
|
||||
math_rand "math/rand"
|
||||
"testing"
|
||||
time "time"
|
||||
)
|
||||
|
||||
func TestNewOld(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
newer := NewPopulatedNewNoGroup(popr, true)
|
||||
data1, err := proto.Marshal(newer)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
older := &OldWithGroup{}
|
||||
if err = proto.Unmarshal(data1, older); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
data2, err := proto.Marshal(older)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
bluer := &NewNoGroup{}
|
||||
if err := proto.Unmarshal(data2, bluer); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if err := newer.VerboseEqual(bluer); err != nil {
|
||||
t.Fatalf("%#v !VerboseProto %#v, since %v", newer, bluer, err)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOldNew(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
older := NewPopulatedOldWithGroup(popr, true)
|
||||
data1, err := proto.Marshal(older)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
newer := &NewNoGroup{}
|
||||
if err = proto.Unmarshal(data1, newer); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
data2, err := proto.Marshal(newer)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
bluer := &OldWithGroup{}
|
||||
if err := proto.Unmarshal(data2, bluer); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if err := older.VerboseEqual(bluer); err != nil {
|
||||
t.Fatalf("%#v !VerboseProto %#v, since %v", older, bluer, err)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOldNewOldNew(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
older := NewPopulatedOldWithGroup(popr, true)
|
||||
data1, err := proto.Marshal(older)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
newer := &NewNoGroup{}
|
||||
if err = proto.Unmarshal(data1, newer); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
data2, err := proto.Marshal(newer)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
bluer := &OldWithGroup{}
|
||||
if err = proto.Unmarshal(data2, bluer); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if err = older.VerboseEqual(bluer); err != nil {
|
||||
t.Fatalf("%#v !VerboseProto %#v, since %v", older, bluer, err)
|
||||
}
|
||||
|
||||
data3, err := proto.Marshal(bluer)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
purple := &NewNoGroup{}
|
||||
if err = proto.Unmarshal(data3, purple); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
data4, err := proto.Marshal(purple)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
magenta := &OldWithGroup{}
|
||||
if err := proto.Unmarshal(data4, magenta); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if err := older.VerboseEqual(magenta); err != nil {
|
||||
t.Fatalf("%#v !VerboseProto %#v, since %v", older, magenta, err)
|
||||
}
|
||||
}
|
||||
613
vendor/github.com/gogo/protobuf/test/unrecognizedgroup/unrecognizedgroup.pb.go
generated
vendored
613
vendor/github.com/gogo/protobuf/test/unrecognizedgroup/unrecognizedgroup.pb.go
generated
vendored
@@ -19,15 +19,16 @@ import fmt "fmt"
|
||||
import math "math"
|
||||
import _ "github.com/gogo/protobuf/gogoproto"
|
||||
|
||||
import github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor"
|
||||
import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto"
|
||||
import compress_gzip "compress/gzip"
|
||||
import descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor"
|
||||
import gzip "compress/gzip"
|
||||
import bytes "bytes"
|
||||
import io_ioutil "io/ioutil"
|
||||
import ioutil "io/ioutil"
|
||||
|
||||
import strings "strings"
|
||||
import reflect "reflect"
|
||||
|
||||
import binary "encoding/binary"
|
||||
|
||||
import io "io"
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
@@ -105,272 +106,278 @@ func init() {
|
||||
proto.RegisterType((*OldWithGroup_Group1)(nil), "unrecognizedgroup.OldWithGroup.Group1")
|
||||
proto.RegisterType((*OldWithGroup_Group2)(nil), "unrecognizedgroup.OldWithGroup.Group2")
|
||||
}
|
||||
func (this *NewNoGroup) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) {
|
||||
func (this *NewNoGroup) Description() (desc *descriptor.FileDescriptorSet) {
|
||||
return UnrecognizedgroupDescription()
|
||||
}
|
||||
func (this *A) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) {
|
||||
func (this *A) Description() (desc *descriptor.FileDescriptorSet) {
|
||||
return UnrecognizedgroupDescription()
|
||||
}
|
||||
func (this *OldWithGroup) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) {
|
||||
func (this *OldWithGroup) Description() (desc *descriptor.FileDescriptorSet) {
|
||||
return UnrecognizedgroupDescription()
|
||||
}
|
||||
func (this *OldWithGroup_Group1) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) {
|
||||
func (this *OldWithGroup_Group1) Description() (desc *descriptor.FileDescriptorSet) {
|
||||
return UnrecognizedgroupDescription()
|
||||
}
|
||||
func (this *OldWithGroup_Group2) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) {
|
||||
func (this *OldWithGroup_Group2) Description() (desc *descriptor.FileDescriptorSet) {
|
||||
return UnrecognizedgroupDescription()
|
||||
}
|
||||
func UnrecognizedgroupDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) {
|
||||
d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{}
|
||||
func UnrecognizedgroupDescription() (desc *descriptor.FileDescriptorSet) {
|
||||
d := &descriptor.FileDescriptorSet{}
|
||||
var gzipped = []byte{
|
||||
// 3773 bytes of a gzipped FileDescriptorSet
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5b, 0x6c, 0x23, 0xe7,
|
||||
0x75, 0xde, 0xe1, 0x4d, 0xe4, 0x21, 0x45, 0x8d, 0x46, 0xb2, 0x96, 0x2b, 0xc7, 0x5a, 0x2d, 0xe3,
|
||||
0x8b, 0x6c, 0x37, 0xda, 0x58, 0xeb, 0x5d, 0xaf, 0x67, 0x1b, 0x1b, 0x14, 0xc5, 0x55, 0xb8, 0x95,
|
||||
0x48, 0x66, 0x28, 0xc5, 0xeb, 0xf4, 0x61, 0x30, 0x1a, 0xfe, 0xa4, 0x66, 0x77, 0x38, 0x33, 0x99,
|
||||
0x19, 0xee, 0x5a, 0x7e, 0xda, 0xc2, 0xbd, 0x05, 0x45, 0xda, 0xf4, 0x02, 0x34, 0x71, 0x1d, 0x37,
|
||||
0x0e, 0xd0, 0x3a, 0x4d, 0x6f, 0x49, 0x2f, 0x69, 0xd0, 0xa7, 0xbe, 0xa4, 0x0d, 0xfa, 0x50, 0x34,
|
||||
0x0f, 0x05, 0xfa, 0xd0, 0x87, 0xac, 0x61, 0xa0, 0x37, 0xa7, 0x4d, 0x1b, 0x03, 0x2d, 0xb0, 0x2f,
|
||||
0xc1, 0x7f, 0x1b, 0xce, 0x90, 0x94, 0x86, 0x0a, 0xe0, 0xe4, 0x65, 0x57, 0xff, 0xf9, 0xcf, 0xf7,
|
||||
0xcd, 0x99, 0xf3, 0x9f, 0xff, 0x9c, 0xf3, 0xff, 0x43, 0xf8, 0xec, 0x15, 0x58, 0xed, 0xd9, 0x76,
|
||||
0xcf, 0x44, 0x17, 0x1d, 0xd7, 0xf6, 0xed, 0x83, 0x41, 0xf7, 0x62, 0x07, 0x79, 0xba, 0x6b, 0x38,
|
||||
0xbe, 0xed, 0xae, 0x13, 0x99, 0x34, 0x47, 0x35, 0xd6, 0xb9, 0x46, 0x79, 0x17, 0xe6, 0xaf, 0x1b,
|
||||
0x26, 0xda, 0x0a, 0x14, 0xdb, 0xc8, 0x97, 0xae, 0x42, 0xaa, 0x6b, 0x98, 0xa8, 0x24, 0xac, 0x26,
|
||||
0xd7, 0xf2, 0x1b, 0x8f, 0xae, 0x8f, 0x80, 0xd6, 0xa3, 0x88, 0x16, 0x16, 0x2b, 0x04, 0x51, 0x7e,
|
||||
0x37, 0x05, 0x0b, 0x13, 0x66, 0x25, 0x09, 0x52, 0x96, 0xd6, 0xc7, 0x8c, 0xc2, 0x5a, 0x4e, 0x21,
|
||||
0x7f, 0x4b, 0x25, 0x98, 0x71, 0x34, 0xfd, 0xb6, 0xd6, 0x43, 0xa5, 0x04, 0x11, 0xf3, 0xa1, 0xb4,
|
||||
0x02, 0xd0, 0x41, 0x0e, 0xb2, 0x3a, 0xc8, 0xd2, 0x8f, 0x4a, 0xc9, 0xd5, 0xe4, 0x5a, 0x4e, 0x09,
|
||||
0x49, 0xa4, 0xa7, 0x61, 0xde, 0x19, 0x1c, 0x98, 0x86, 0xae, 0x86, 0xd4, 0x60, 0x35, 0xb9, 0x96,
|
||||
0x56, 0x44, 0x3a, 0xb1, 0x35, 0x54, 0x7e, 0x02, 0xe6, 0xee, 0x22, 0xed, 0x76, 0x58, 0x35, 0x4f,
|
||||
0x54, 0x8b, 0x58, 0x1c, 0x52, 0xac, 0x42, 0xa1, 0x8f, 0x3c, 0x4f, 0xeb, 0x21, 0xd5, 0x3f, 0x72,
|
||||
0x50, 0x29, 0x45, 0xde, 0x7e, 0x75, 0xec, 0xed, 0x47, 0xdf, 0x3c, 0xcf, 0x50, 0x7b, 0x47, 0x0e,
|
||||
0x92, 0x2a, 0x90, 0x43, 0xd6, 0xa0, 0x4f, 0x19, 0xd2, 0xc7, 0xf8, 0xaf, 0x66, 0x0d, 0xfa, 0xa3,
|
||||
0x2c, 0x59, 0x0c, 0x63, 0x14, 0x33, 0x1e, 0x72, 0xef, 0x18, 0x3a, 0x2a, 0x65, 0x08, 0xc1, 0x13,
|
||||
0x63, 0x04, 0x6d, 0x3a, 0x3f, 0xca, 0xc1, 0x71, 0x52, 0x15, 0x72, 0xe8, 0x15, 0x1f, 0x59, 0x9e,
|
||||
0x61, 0x5b, 0xa5, 0x19, 0x42, 0xf2, 0xd8, 0x84, 0x55, 0x44, 0x66, 0x67, 0x94, 0x62, 0x88, 0x93,
|
||||
0xae, 0xc0, 0x8c, 0xed, 0xf8, 0x86, 0x6d, 0x79, 0xa5, 0xec, 0xaa, 0xb0, 0x96, 0xdf, 0xf8, 0xd0,
|
||||
0xc4, 0x40, 0x68, 0x52, 0x1d, 0x85, 0x2b, 0x4b, 0x75, 0x10, 0x3d, 0x7b, 0xe0, 0xea, 0x48, 0xd5,
|
||||
0xed, 0x0e, 0x52, 0x0d, 0xab, 0x6b, 0x97, 0x72, 0x84, 0xe0, 0xfc, 0xf8, 0x8b, 0x10, 0xc5, 0xaa,
|
||||
0xdd, 0x41, 0x75, 0xab, 0x6b, 0x2b, 0x45, 0x2f, 0x32, 0x96, 0x96, 0x20, 0xe3, 0x1d, 0x59, 0xbe,
|
||||
0xf6, 0x4a, 0xa9, 0x40, 0x22, 0x84, 0x8d, 0xca, 0xff, 0x97, 0x86, 0xb9, 0x69, 0x42, 0xec, 0x1a,
|
||||
0xa4, 0xbb, 0xf8, 0x2d, 0x4b, 0x89, 0xd3, 0xf8, 0x80, 0x62, 0xa2, 0x4e, 0xcc, 0xfc, 0x88, 0x4e,
|
||||
0xac, 0x40, 0xde, 0x42, 0x9e, 0x8f, 0x3a, 0x34, 0x22, 0x92, 0x53, 0xc6, 0x14, 0x50, 0xd0, 0x78,
|
||||
0x48, 0xa5, 0x7e, 0xa4, 0x90, 0xba, 0x09, 0x73, 0x81, 0x49, 0xaa, 0xab, 0x59, 0x3d, 0x1e, 0x9b,
|
||||
0x17, 0xe3, 0x2c, 0x59, 0xaf, 0x71, 0x9c, 0x82, 0x61, 0x4a, 0x11, 0x45, 0xc6, 0xd2, 0x16, 0x80,
|
||||
0x6d, 0x21, 0xbb, 0xab, 0x76, 0x90, 0x6e, 0x96, 0xb2, 0xc7, 0x78, 0xa9, 0x89, 0x55, 0xc6, 0xbc,
|
||||
0x64, 0x53, 0xa9, 0x6e, 0x4a, 0xcf, 0x0f, 0x43, 0x6d, 0xe6, 0x98, 0x48, 0xd9, 0xa5, 0x9b, 0x6c,
|
||||
0x2c, 0xda, 0xf6, 0xa1, 0xe8, 0x22, 0x1c, 0xf7, 0xa8, 0xc3, 0xde, 0x2c, 0x47, 0x8c, 0x58, 0x8f,
|
||||
0x7d, 0x33, 0x85, 0xc1, 0xe8, 0x8b, 0xcd, 0xba, 0xe1, 0xa1, 0xf4, 0x61, 0x08, 0x04, 0x2a, 0x09,
|
||||
0x2b, 0x20, 0x59, 0xa8, 0xc0, 0x85, 0x0d, 0xad, 0x8f, 0x96, 0xaf, 0x42, 0x31, 0xea, 0x1e, 0x69,
|
||||
0x11, 0xd2, 0x9e, 0xaf, 0xb9, 0x3e, 0x89, 0xc2, 0xb4, 0x42, 0x07, 0x92, 0x08, 0x49, 0x64, 0x75,
|
||||
0x48, 0x96, 0x4b, 0x2b, 0xf8, 0xcf, 0xe5, 0xe7, 0x60, 0x36, 0xf2, 0xf8, 0x69, 0x81, 0xe5, 0xcf,
|
||||
0x67, 0x60, 0x71, 0x52, 0xcc, 0x4d, 0x0c, 0xff, 0x25, 0xc8, 0x58, 0x83, 0xfe, 0x01, 0x72, 0x4b,
|
||||
0x49, 0xc2, 0xc0, 0x46, 0x52, 0x05, 0xd2, 0xa6, 0x76, 0x80, 0xcc, 0x52, 0x6a, 0x55, 0x58, 0x2b,
|
||||
0x6e, 0x3c, 0x3d, 0x55, 0x54, 0xaf, 0xef, 0x60, 0x88, 0x42, 0x91, 0xd2, 0x0b, 0x90, 0x62, 0x29,
|
||||
0x0e, 0x33, 0x3c, 0x35, 0x1d, 0x03, 0x8e, 0x45, 0x85, 0xe0, 0xa4, 0x87, 0x21, 0x87, 0xff, 0xa7,
|
||||
0xbe, 0xcd, 0x10, 0x9b, 0xb3, 0x58, 0x80, 0xfd, 0x2a, 0x2d, 0x43, 0x96, 0x84, 0x59, 0x07, 0xf1,
|
||||
0xd2, 0x10, 0x8c, 0xf1, 0xc2, 0x74, 0x50, 0x57, 0x1b, 0x98, 0xbe, 0x7a, 0x47, 0x33, 0x07, 0x88,
|
||||
0x04, 0x4c, 0x4e, 0x29, 0x30, 0xe1, 0x27, 0xb1, 0x4c, 0x3a, 0x0f, 0x79, 0x1a, 0x95, 0x86, 0xd5,
|
||||
0x41, 0xaf, 0x90, 0xec, 0x93, 0x56, 0x68, 0xa0, 0xd6, 0xb1, 0x04, 0x3f, 0xfe, 0x96, 0x67, 0x5b,
|
||||
0x7c, 0x69, 0xc9, 0x23, 0xb0, 0x80, 0x3c, 0xfe, 0xb9, 0xd1, 0xc4, 0xf7, 0xc8, 0xe4, 0xd7, 0x1b,
|
||||
0x8d, 0xc5, 0xf2, 0x37, 0x12, 0x90, 0x22, 0xfb, 0x6d, 0x0e, 0xf2, 0x7b, 0x2f, 0xb7, 0x6a, 0xea,
|
||||
0x56, 0x73, 0x7f, 0x73, 0xa7, 0x26, 0x0a, 0x52, 0x11, 0x80, 0x08, 0xae, 0xef, 0x34, 0x2b, 0x7b,
|
||||
0x62, 0x22, 0x18, 0xd7, 0x1b, 0x7b, 0x57, 0x9e, 0x15, 0x93, 0x01, 0x60, 0x9f, 0x0a, 0x52, 0x61,
|
||||
0x85, 0x4b, 0x1b, 0x62, 0x5a, 0x12, 0xa1, 0x40, 0x09, 0xea, 0x37, 0x6b, 0x5b, 0x57, 0x9e, 0x15,
|
||||
0x33, 0x51, 0xc9, 0xa5, 0x0d, 0x71, 0x46, 0x9a, 0x85, 0x1c, 0x91, 0x6c, 0x36, 0x9b, 0x3b, 0x62,
|
||||
0x36, 0xe0, 0x6c, 0xef, 0x29, 0xf5, 0xc6, 0xb6, 0x98, 0x0b, 0x38, 0xb7, 0x95, 0xe6, 0x7e, 0x4b,
|
||||
0x84, 0x80, 0x61, 0xb7, 0xd6, 0x6e, 0x57, 0xb6, 0x6b, 0x62, 0x3e, 0xd0, 0xd8, 0x7c, 0x79, 0xaf,
|
||||
0xd6, 0x16, 0x0b, 0x11, 0xb3, 0x2e, 0x6d, 0x88, 0xb3, 0xc1, 0x23, 0x6a, 0x8d, 0xfd, 0x5d, 0xb1,
|
||||
0x28, 0xcd, 0xc3, 0x2c, 0x7d, 0x04, 0x37, 0x62, 0x6e, 0x44, 0x74, 0xe5, 0x59, 0x51, 0x1c, 0x1a,
|
||||
0x42, 0x59, 0xe6, 0x23, 0x82, 0x2b, 0xcf, 0x8a, 0x52, 0xb9, 0x0a, 0x69, 0x12, 0x5d, 0x92, 0x04,
|
||||
0xc5, 0x9d, 0xca, 0x66, 0x6d, 0x47, 0x6d, 0xb6, 0xf6, 0xea, 0xcd, 0x46, 0x65, 0x47, 0x14, 0x86,
|
||||
0x32, 0xa5, 0xf6, 0x89, 0xfd, 0xba, 0x52, 0xdb, 0x12, 0x13, 0x61, 0x59, 0xab, 0x56, 0xd9, 0xab,
|
||||
0x6d, 0x89, 0xc9, 0xb2, 0x0e, 0x8b, 0x93, 0xf2, 0xcc, 0xc4, 0x9d, 0x11, 0x5a, 0xe2, 0xc4, 0x31,
|
||||
0x4b, 0x4c, 0xb8, 0xc6, 0x96, 0xf8, 0xcb, 0x02, 0x2c, 0x4c, 0xc8, 0xb5, 0x13, 0x1f, 0xf2, 0x22,
|
||||
0xa4, 0x69, 0x88, 0xd2, 0xea, 0xf3, 0xe4, 0xc4, 0xa4, 0x4d, 0x02, 0x76, 0xac, 0x02, 0x11, 0x5c,
|
||||
0xb8, 0x02, 0x27, 0x8f, 0xa9, 0xc0, 0x98, 0x62, 0xcc, 0xc8, 0xd7, 0x04, 0x28, 0x1d, 0xc7, 0x1d,
|
||||
0x93, 0x28, 0x12, 0x91, 0x44, 0x71, 0x6d, 0xd4, 0x80, 0x0b, 0xc7, 0xbf, 0xc3, 0x98, 0x15, 0x6f,
|
||||
0x0b, 0xb0, 0x34, 0xb9, 0x51, 0x99, 0x68, 0xc3, 0x0b, 0x90, 0xe9, 0x23, 0xff, 0xd0, 0xe6, 0xc5,
|
||||
0xfa, 0xf1, 0x09, 0x25, 0x00, 0x4f, 0x8f, 0xfa, 0x8a, 0xa1, 0xc2, 0x35, 0x24, 0x79, 0x5c, 0xb7,
|
||||
0x41, 0xad, 0x19, 0xb3, 0xf4, 0x33, 0x09, 0x78, 0x68, 0x22, 0xf9, 0x44, 0x43, 0x1f, 0x01, 0x30,
|
||||
0x2c, 0x67, 0xe0, 0xd3, 0x82, 0x4c, 0xf3, 0x53, 0x8e, 0x48, 0xc8, 0xde, 0xc7, 0xb9, 0x67, 0xe0,
|
||||
0x07, 0xf3, 0x49, 0x32, 0x0f, 0x54, 0x44, 0x14, 0xae, 0x0e, 0x0d, 0x4d, 0x11, 0x43, 0x57, 0x8e,
|
||||
0x79, 0xd3, 0xb1, 0x5a, 0xf7, 0x51, 0x10, 0x75, 0xd3, 0x40, 0x96, 0xaf, 0x7a, 0xbe, 0x8b, 0xb4,
|
||||
0xbe, 0x61, 0xf5, 0x48, 0x02, 0xce, 0xca, 0xe9, 0xae, 0x66, 0x7a, 0x48, 0x99, 0xa3, 0xd3, 0x6d,
|
||||
0x3e, 0x8b, 0x11, 0xa4, 0xca, 0xb8, 0x21, 0x44, 0x26, 0x82, 0xa0, 0xd3, 0x01, 0xa2, 0xfc, 0x4f,
|
||||
0x33, 0x90, 0x0f, 0xb5, 0x75, 0xd2, 0x05, 0x28, 0xdc, 0xd2, 0xee, 0x68, 0x2a, 0x6f, 0xd5, 0xa9,
|
||||
0x27, 0xf2, 0x58, 0xd6, 0x62, 0xed, 0xfa, 0x47, 0x61, 0x91, 0xa8, 0xd8, 0x03, 0x1f, 0xb9, 0xaa,
|
||||
0x6e, 0x6a, 0x9e, 0x47, 0x9c, 0x96, 0x25, 0xaa, 0x12, 0x9e, 0x6b, 0xe2, 0xa9, 0x2a, 0x9f, 0x91,
|
||||
0x2e, 0xc3, 0x02, 0x41, 0xf4, 0x07, 0xa6, 0x6f, 0x38, 0x26, 0x52, 0xf1, 0xe1, 0xc1, 0x23, 0x89,
|
||||
0x38, 0xb0, 0x6c, 0x1e, 0x6b, 0xec, 0x32, 0x05, 0x6c, 0x91, 0x27, 0x6d, 0xc1, 0x23, 0x04, 0xd6,
|
||||
0x43, 0x16, 0x72, 0x35, 0x1f, 0xa9, 0xe8, 0xd3, 0x03, 0xcd, 0xf4, 0x54, 0xcd, 0xea, 0xa8, 0x87,
|
||||
0x9a, 0x77, 0x58, 0x5a, 0xc4, 0x04, 0x9b, 0x89, 0x92, 0xa0, 0x9c, 0xc3, 0x8a, 0xdb, 0x4c, 0xaf,
|
||||
0x46, 0xd4, 0x2a, 0x56, 0xe7, 0xe3, 0x9a, 0x77, 0x28, 0xc9, 0xb0, 0x44, 0x58, 0x3c, 0xdf, 0x35,
|
||||
0xac, 0x9e, 0xaa, 0x1f, 0x22, 0xfd, 0xb6, 0x3a, 0xf0, 0xbb, 0x57, 0x4b, 0x0f, 0x87, 0x9f, 0x4f,
|
||||
0x2c, 0x6c, 0x13, 0x9d, 0x2a, 0x56, 0xd9, 0xf7, 0xbb, 0x57, 0xa5, 0x36, 0x14, 0xf0, 0x62, 0xf4,
|
||||
0x8d, 0x57, 0x91, 0xda, 0xb5, 0x5d, 0x52, 0x59, 0x8a, 0x13, 0x76, 0x76, 0xc8, 0x83, 0xeb, 0x4d,
|
||||
0x06, 0xd8, 0xb5, 0x3b, 0x48, 0x4e, 0xb7, 0x5b, 0xb5, 0xda, 0x96, 0x92, 0xe7, 0x2c, 0xd7, 0x6d,
|
||||
0x17, 0x07, 0x54, 0xcf, 0x0e, 0x1c, 0x9c, 0xa7, 0x01, 0xd5, 0xb3, 0xb9, 0x7b, 0x2f, 0xc3, 0x82,
|
||||
0xae, 0xd3, 0x77, 0x36, 0x74, 0x95, 0xb5, 0xf8, 0x5e, 0x49, 0x8c, 0x38, 0x4b, 0xd7, 0xb7, 0xa9,
|
||||
0x02, 0x8b, 0x71, 0x4f, 0x7a, 0x1e, 0x1e, 0x1a, 0x3a, 0x2b, 0x0c, 0x9c, 0x1f, 0x7b, 0xcb, 0x51,
|
||||
0xe8, 0x65, 0x58, 0x70, 0x8e, 0xc6, 0x81, 0x52, 0xe4, 0x89, 0xce, 0xd1, 0x28, 0xec, 0x31, 0x72,
|
||||
0x6c, 0x73, 0x91, 0xae, 0xf9, 0xa8, 0x53, 0x3a, 0x1b, 0xd6, 0x0e, 0x4d, 0x48, 0x17, 0x41, 0xd4,
|
||||
0x75, 0x15, 0x59, 0xda, 0x81, 0x89, 0x54, 0xcd, 0x45, 0x96, 0xe6, 0x95, 0xce, 0x87, 0x95, 0x8b,
|
||||
0xba, 0x5e, 0x23, 0xb3, 0x15, 0x32, 0x29, 0x3d, 0x05, 0xf3, 0xf6, 0xc1, 0x2d, 0x9d, 0x46, 0x96,
|
||||
0xea, 0xb8, 0xa8, 0x6b, 0xbc, 0x52, 0x7a, 0x94, 0xb8, 0x69, 0x0e, 0x4f, 0x90, 0xb8, 0x6a, 0x11,
|
||||
0xb1, 0xf4, 0x24, 0x88, 0xba, 0x77, 0xa8, 0xb9, 0x0e, 0x29, 0xed, 0x9e, 0xa3, 0xe9, 0xa8, 0xf4,
|
||||
0x18, 0x55, 0xa5, 0xf2, 0x06, 0x17, 0xe3, 0xc8, 0xf6, 0xee, 0x1a, 0x5d, 0x9f, 0x33, 0x3e, 0x41,
|
||||
0x23, 0x9b, 0xc8, 0x18, 0xdb, 0x1a, 0x88, 0xce, 0xa1, 0x13, 0x7d, 0xf0, 0x1a, 0x51, 0x2b, 0x3a,
|
||||
0x87, 0x4e, 0xf8, 0xb9, 0x37, 0x61, 0x71, 0x60, 0x19, 0x96, 0x8f, 0x5c, 0xc7, 0x45, 0xb8, 0xdd,
|
||||
0xa7, 0x7b, 0xb6, 0xf4, 0xaf, 0x33, 0xc7, 0x34, 0xec, 0xfb, 0x61, 0x6d, 0x1a, 0x2a, 0xca, 0xc2,
|
||||
0x60, 0x5c, 0x58, 0x96, 0xa1, 0x10, 0x8e, 0x20, 0x29, 0x07, 0x34, 0x86, 0x44, 0x01, 0x57, 0xe3,
|
||||
0x6a, 0x73, 0x0b, 0xd7, 0xd1, 0x4f, 0xd5, 0xc4, 0x04, 0xae, 0xe7, 0x3b, 0xf5, 0xbd, 0x9a, 0xaa,
|
||||
0xec, 0x37, 0xf6, 0xea, 0xbb, 0x35, 0x31, 0xf9, 0x54, 0x2e, 0xfb, 0x6f, 0x33, 0xe2, 0xbd, 0x7b,
|
||||
0xf7, 0xee, 0x25, 0xca, 0xdf, 0x4a, 0x40, 0x31, 0xda, 0x43, 0x4b, 0x3f, 0x0d, 0x67, 0xf9, 0x81,
|
||||
0xd7, 0x43, 0xbe, 0x7a, 0xd7, 0x70, 0x49, 0x50, 0xf7, 0x35, 0xda, 0x85, 0x06, 0xeb, 0xb1, 0xc8,
|
||||
0xb4, 0xda, 0xc8, 0x7f, 0xc9, 0x70, 0x71, 0xc8, 0xf6, 0x35, 0x5f, 0xda, 0x81, 0xf3, 0x96, 0xad,
|
||||
0x7a, 0xbe, 0x66, 0x75, 0x34, 0xb7, 0xa3, 0x0e, 0xaf, 0x1a, 0x54, 0x4d, 0xd7, 0x91, 0xe7, 0xd9,
|
||||
0xb4, 0x98, 0x04, 0x2c, 0x1f, 0xb2, 0xec, 0x36, 0x53, 0x1e, 0x66, 0xd9, 0x0a, 0x53, 0x1d, 0x89,
|
||||
0x9d, 0xe4, 0x71, 0xb1, 0xf3, 0x30, 0xe4, 0xfa, 0x9a, 0xa3, 0x22, 0xcb, 0x77, 0x8f, 0x48, 0xe7,
|
||||
0x97, 0x55, 0xb2, 0x7d, 0xcd, 0xa9, 0xe1, 0xf1, 0x07, 0xb7, 0x06, 0x61, 0x3f, 0xfe, 0x4b, 0x12,
|
||||
0x0a, 0xe1, 0xee, 0x0f, 0x37, 0xd3, 0x3a, 0xc9, 0xf4, 0x02, 0xc9, 0x05, 0x1f, 0x3e, 0xb1, 0x57,
|
||||
0x5c, 0xaf, 0xe2, 0x12, 0x20, 0x67, 0x68, 0x4f, 0xa6, 0x50, 0x24, 0x2e, 0xbf, 0x78, 0xf7, 0x23,
|
||||
0xda, 0xe9, 0x67, 0x15, 0x36, 0x92, 0xb6, 0x21, 0x73, 0xcb, 0x23, 0xdc, 0x19, 0xc2, 0xfd, 0xe8,
|
||||
0xc9, 0xdc, 0x37, 0xda, 0x84, 0x3c, 0x77, 0xa3, 0xad, 0x36, 0x9a, 0xca, 0x6e, 0x65, 0x47, 0x61,
|
||||
0x70, 0xe9, 0x1c, 0xa4, 0x4c, 0xed, 0xd5, 0xa3, 0x68, 0xb1, 0x20, 0xa2, 0x69, 0x1d, 0x7f, 0x0e,
|
||||
0x52, 0x77, 0x91, 0x76, 0x3b, 0x9a, 0xa2, 0x89, 0xe8, 0x03, 0x0c, 0xfd, 0x8b, 0x90, 0x26, 0xfe,
|
||||
0x92, 0x00, 0x98, 0xc7, 0xc4, 0x33, 0x52, 0x16, 0x52, 0xd5, 0xa6, 0x82, 0xc3, 0x5f, 0x84, 0x02,
|
||||
0x95, 0xaa, 0xad, 0x7a, 0xad, 0x5a, 0x13, 0x13, 0xe5, 0xcb, 0x90, 0xa1, 0x4e, 0xc0, 0x5b, 0x23,
|
||||
0x70, 0x83, 0x78, 0x86, 0x0d, 0x19, 0x87, 0xc0, 0x67, 0xf7, 0x77, 0x37, 0x6b, 0x8a, 0x98, 0x08,
|
||||
0x2f, 0xaf, 0x07, 0x85, 0x70, 0xe3, 0xf7, 0xe3, 0x89, 0xa9, 0xbf, 0x16, 0x20, 0x1f, 0x6a, 0xe4,
|
||||
0x70, 0x0b, 0xa1, 0x99, 0xa6, 0x7d, 0x57, 0xd5, 0x4c, 0x43, 0xf3, 0x58, 0x50, 0x00, 0x11, 0x55,
|
||||
0xb0, 0x64, 0xda, 0x45, 0xfb, 0xb1, 0x18, 0xff, 0xa6, 0x00, 0xe2, 0x68, 0x13, 0x38, 0x62, 0xa0,
|
||||
0xf0, 0x13, 0x35, 0xf0, 0x0d, 0x01, 0x8a, 0xd1, 0xce, 0x6f, 0xc4, 0xbc, 0x0b, 0x3f, 0x51, 0xf3,
|
||||
0xbe, 0x9b, 0x80, 0xd9, 0x48, 0xbf, 0x37, 0xad, 0x75, 0x9f, 0x86, 0x79, 0xa3, 0x83, 0xfa, 0x8e,
|
||||
0xed, 0x23, 0x4b, 0x3f, 0x52, 0x4d, 0x74, 0x07, 0x99, 0xa5, 0x32, 0x49, 0x14, 0x17, 0x4f, 0xee,
|
||||
0x28, 0xd7, 0xeb, 0x43, 0xdc, 0x0e, 0x86, 0xc9, 0x0b, 0xf5, 0xad, 0xda, 0x6e, 0xab, 0xb9, 0x57,
|
||||
0x6b, 0x54, 0x5f, 0x56, 0xf7, 0x1b, 0x3f, 0xd3, 0x68, 0xbe, 0xd4, 0x50, 0x44, 0x63, 0x44, 0xed,
|
||||
0x03, 0xdc, 0xea, 0x2d, 0x10, 0x47, 0x8d, 0x92, 0xce, 0xc2, 0x24, 0xb3, 0xc4, 0x33, 0xd2, 0x02,
|
||||
0xcc, 0x35, 0x9a, 0x6a, 0xbb, 0xbe, 0x55, 0x53, 0x6b, 0xd7, 0xaf, 0xd7, 0xaa, 0x7b, 0x6d, 0x7a,
|
||||
0xc4, 0x0e, 0xb4, 0xf7, 0xa2, 0x9b, 0xfa, 0xf5, 0x24, 0x2c, 0x4c, 0xb0, 0x44, 0xaa, 0xb0, 0xee,
|
||||
0x9e, 0x1e, 0x38, 0x3e, 0x32, 0x8d, 0xf5, 0xeb, 0xb8, 0x7f, 0x68, 0x69, 0xae, 0xcf, 0x0e, 0x03,
|
||||
0x4f, 0x02, 0xf6, 0x92, 0xe5, 0x1b, 0x5d, 0x03, 0xb9, 0xec, 0x46, 0x82, 0xb6, 0xfc, 0x73, 0x43,
|
||||
0x39, 0xbd, 0x94, 0xf8, 0x29, 0x90, 0x1c, 0xdb, 0x33, 0x7c, 0xe3, 0x0e, 0x52, 0x0d, 0x8b, 0x5f,
|
||||
0x5f, 0xe0, 0x23, 0x40, 0x4a, 0x11, 0xf9, 0x4c, 0xdd, 0xf2, 0x03, 0x6d, 0x0b, 0xf5, 0xb4, 0x11,
|
||||
0x6d, 0x9c, 0xc0, 0x93, 0x8a, 0xc8, 0x67, 0x02, 0xed, 0x0b, 0x50, 0xe8, 0xd8, 0x03, 0xdc, 0x50,
|
||||
0x51, 0x3d, 0x5c, 0x2f, 0x04, 0x25, 0x4f, 0x65, 0x81, 0x0a, 0xeb, 0x78, 0x87, 0xf7, 0x26, 0x05,
|
||||
0x25, 0x4f, 0x65, 0x54, 0xe5, 0x09, 0x98, 0xd3, 0x7a, 0x3d, 0x17, 0x93, 0x73, 0x22, 0xda, 0xc3,
|
||||
0x17, 0x03, 0x31, 0x51, 0x5c, 0xbe, 0x01, 0x59, 0xee, 0x07, 0x5c, 0x92, 0xb1, 0x27, 0x54, 0x87,
|
||||
0xde, 0x5e, 0x25, 0xd6, 0x72, 0x4a, 0xd6, 0xe2, 0x93, 0x17, 0xa0, 0x60, 0x78, 0xea, 0xf0, 0x1a,
|
||||
0x35, 0xb1, 0x9a, 0x58, 0xcb, 0x2a, 0x79, 0xc3, 0x0b, 0xee, 0xcd, 0xca, 0x6f, 0x27, 0xa0, 0x18,
|
||||
0xbd, 0x06, 0x96, 0xb6, 0x20, 0x6b, 0xda, 0xba, 0x46, 0x42, 0x8b, 0x7e, 0x83, 0x58, 0x8b, 0xb9,
|
||||
0x39, 0x5e, 0xdf, 0x61, 0xfa, 0x4a, 0x80, 0x5c, 0xfe, 0x07, 0x01, 0xb2, 0x5c, 0x2c, 0x2d, 0x41,
|
||||
0xca, 0xd1, 0xfc, 0x43, 0x42, 0x97, 0xde, 0x4c, 0x88, 0x82, 0x42, 0xc6, 0x58, 0xee, 0x39, 0x9a,
|
||||
0x45, 0x42, 0x80, 0xc9, 0xf1, 0x18, 0xaf, 0xab, 0x89, 0xb4, 0x0e, 0x39, 0x20, 0xd8, 0xfd, 0x3e,
|
||||
0xb2, 0x7c, 0x8f, 0xaf, 0x2b, 0x93, 0x57, 0x99, 0x58, 0x7a, 0x1a, 0xe6, 0x7d, 0x57, 0x33, 0xcc,
|
||||
0x88, 0x6e, 0x8a, 0xe8, 0x8a, 0x7c, 0x22, 0x50, 0x96, 0xe1, 0x1c, 0xe7, 0xed, 0x20, 0x5f, 0xd3,
|
||||
0x0f, 0x51, 0x67, 0x08, 0xca, 0x90, 0x3b, 0xc6, 0xb3, 0x4c, 0x61, 0x8b, 0xcd, 0x73, 0x6c, 0xf9,
|
||||
0x3b, 0x02, 0xcc, 0xf3, 0x23, 0x4d, 0x27, 0x70, 0xd6, 0x2e, 0x80, 0x66, 0x59, 0xb6, 0x1f, 0x76,
|
||||
0xd7, 0x78, 0x28, 0x8f, 0xe1, 0xd6, 0x2b, 0x01, 0x48, 0x09, 0x11, 0x2c, 0xf7, 0x01, 0x86, 0x33,
|
||||
0xc7, 0xba, 0xed, 0x3c, 0xe4, 0xd9, 0x1d, 0x3f, 0xf9, 0x50, 0x44, 0x0f, 0xc1, 0x40, 0x45, 0xf8,
|
||||
0xec, 0x23, 0x2d, 0x42, 0xfa, 0x00, 0xf5, 0x0c, 0x8b, 0xdd, 0x3c, 0xd2, 0x01, 0xbf, 0xcf, 0x4c,
|
||||
0x05, 0xf7, 0x99, 0x9b, 0x37, 0x61, 0x41, 0xb7, 0xfb, 0xa3, 0xe6, 0x6e, 0x8a, 0x23, 0x07, 0x71,
|
||||
0xef, 0xe3, 0xc2, 0xa7, 0x60, 0xd8, 0x62, 0x7e, 0x39, 0x91, 0xdc, 0x6e, 0x6d, 0x7e, 0x35, 0xb1,
|
||||
0xbc, 0x4d, 0x71, 0x2d, 0xfe, 0x9a, 0x0a, 0xea, 0x9a, 0x48, 0xc7, 0xa6, 0xc3, 0x0f, 0x1e, 0x87,
|
||||
0x8f, 0xf4, 0x0c, 0xff, 0x70, 0x70, 0xb0, 0xae, 0xdb, 0xfd, 0x8b, 0x3d, 0xbb, 0x67, 0x0f, 0x3f,
|
||||
0x8c, 0xe1, 0x11, 0x19, 0x90, 0xbf, 0xd8, 0xc7, 0xb1, 0x5c, 0x20, 0x5d, 0x8e, 0xfd, 0x92, 0x26,
|
||||
0x37, 0x60, 0x81, 0x29, 0xab, 0xe4, 0x76, 0x9e, 0x9e, 0x0e, 0xa4, 0x13, 0x6f, 0x68, 0x4a, 0x5f,
|
||||
0x7f, 0x97, 0xd4, 0x6a, 0x65, 0x9e, 0x41, 0xf1, 0x1c, 0x3d, 0x40, 0xc8, 0x0a, 0x3c, 0x14, 0xe1,
|
||||
0xa3, 0xfb, 0x12, 0xb9, 0x31, 0x8c, 0xdf, 0x62, 0x8c, 0x0b, 0x21, 0xc6, 0x36, 0x83, 0xca, 0x55,
|
||||
0x98, 0x3d, 0x0d, 0xd7, 0xdf, 0x32, 0xae, 0x02, 0x0a, 0x93, 0x6c, 0xc3, 0x1c, 0x21, 0xd1, 0x07,
|
||||
0x9e, 0x6f, 0xf7, 0x49, 0xd2, 0x3b, 0x99, 0xe6, 0xef, 0xde, 0xa5, 0x1b, 0xa5, 0x88, 0x61, 0xd5,
|
||||
0x00, 0x25, 0xcb, 0x40, 0x3e, 0x48, 0x74, 0x90, 0x6e, 0xc6, 0x30, 0x7c, 0x9b, 0x19, 0x12, 0xe8,
|
||||
0xcb, 0x9f, 0x84, 0x45, 0xfc, 0x37, 0xc9, 0x49, 0x61, 0x4b, 0xe2, 0xef, 0xa3, 0x4a, 0xdf, 0x79,
|
||||
0x8d, 0xee, 0xc5, 0x85, 0x80, 0x20, 0x64, 0x53, 0x68, 0x15, 0x7b, 0xc8, 0xf7, 0x91, 0xeb, 0xa9,
|
||||
0x9a, 0x39, 0xc9, 0xbc, 0xd0, 0x81, 0xbe, 0xf4, 0x85, 0xf7, 0xa2, 0xab, 0xb8, 0x4d, 0x91, 0x15,
|
||||
0xd3, 0x94, 0xf7, 0xe1, 0xec, 0x84, 0xa8, 0x98, 0x82, 0xf3, 0x75, 0xc6, 0xb9, 0x38, 0x16, 0x19,
|
||||
0x98, 0xb6, 0x05, 0x5c, 0x1e, 0xac, 0xe5, 0x14, 0x9c, 0xbf, 0xc3, 0x38, 0x25, 0x86, 0xe5, 0x4b,
|
||||
0x8a, 0x19, 0x6f, 0xc0, 0xfc, 0x1d, 0xe4, 0x1e, 0xd8, 0x1e, 0xbb, 0x44, 0x99, 0x82, 0xee, 0x0d,
|
||||
0x46, 0x37, 0xc7, 0x80, 0xe4, 0x56, 0x05, 0x73, 0x3d, 0x0f, 0xd9, 0xae, 0xa6, 0xa3, 0x29, 0x28,
|
||||
0xbe, 0xc8, 0x28, 0x66, 0xb0, 0x3e, 0x86, 0x56, 0xa0, 0xd0, 0xb3, 0x59, 0x59, 0x8a, 0x87, 0xbf,
|
||||
0xc9, 0xe0, 0x79, 0x8e, 0x61, 0x14, 0x8e, 0xed, 0x0c, 0x4c, 0x5c, 0xb3, 0xe2, 0x29, 0x7e, 0x97,
|
||||
0x53, 0x70, 0x0c, 0xa3, 0x38, 0x85, 0x5b, 0xbf, 0xc4, 0x29, 0xbc, 0x90, 0x3f, 0x5f, 0x84, 0xbc,
|
||||
0x6d, 0x99, 0x47, 0xb6, 0x35, 0x8d, 0x11, 0x6f, 0x31, 0x06, 0x60, 0x10, 0x4c, 0x70, 0x0d, 0x72,
|
||||
0xd3, 0x2e, 0xc4, 0xef, 0xbd, 0xc7, 0xb7, 0x07, 0x5f, 0x81, 0x6d, 0x98, 0xe3, 0x09, 0xca, 0xb0,
|
||||
0xad, 0x29, 0x28, 0x7e, 0x9f, 0x51, 0x14, 0x43, 0x30, 0xf6, 0x1a, 0x3e, 0xf2, 0xfc, 0x1e, 0x9a,
|
||||
0x86, 0xe4, 0x6d, 0xfe, 0x1a, 0x0c, 0xc2, 0x5c, 0x79, 0x80, 0x2c, 0xfd, 0x70, 0x3a, 0x86, 0xaf,
|
||||
0x70, 0x57, 0x72, 0x0c, 0xa6, 0xa8, 0xc2, 0x6c, 0x5f, 0x73, 0xbd, 0x43, 0xcd, 0x9c, 0x6a, 0x39,
|
||||
0xfe, 0x80, 0x71, 0x14, 0x02, 0x10, 0xf3, 0xc8, 0xc0, 0x3a, 0x0d, 0xcd, 0x57, 0xb9, 0x47, 0x42,
|
||||
0x30, 0xb6, 0xf5, 0x3c, 0x9f, 0x5c, 0x55, 0x9d, 0x86, 0xed, 0x0f, 0xf9, 0xd6, 0xa3, 0xd8, 0xdd,
|
||||
0x30, 0xe3, 0x35, 0xc8, 0x79, 0xc6, 0xab, 0x53, 0xd1, 0xfc, 0x11, 0x5f, 0x69, 0x02, 0xc0, 0xe0,
|
||||
0x97, 0xe1, 0xdc, 0xc4, 0x32, 0x31, 0x05, 0xd9, 0x1f, 0x33, 0xb2, 0xa5, 0x09, 0xa5, 0x82, 0xa5,
|
||||
0x84, 0xd3, 0x52, 0xfe, 0x09, 0x4f, 0x09, 0x68, 0x84, 0xab, 0x85, 0x0f, 0x0a, 0x9e, 0xd6, 0x3d,
|
||||
0x9d, 0xd7, 0xfe, 0x94, 0x7b, 0x8d, 0x62, 0x23, 0x5e, 0xdb, 0x83, 0x25, 0xc6, 0x78, 0xba, 0x75,
|
||||
0xfd, 0x1a, 0x4f, 0xac, 0x14, 0xbd, 0x1f, 0x5d, 0xdd, 0x9f, 0x85, 0xe5, 0xc0, 0x9d, 0xbc, 0x23,
|
||||
0xf5, 0xd4, 0xbe, 0xe6, 0x4c, 0xc1, 0xfc, 0x75, 0xc6, 0xcc, 0x33, 0x7e, 0xd0, 0xd2, 0x7a, 0xbb,
|
||||
0x9a, 0x83, 0xc9, 0x6f, 0x42, 0x89, 0x93, 0x0f, 0x2c, 0x17, 0xe9, 0x76, 0xcf, 0x32, 0x5e, 0x45,
|
||||
0x9d, 0x29, 0xa8, 0xff, 0x6c, 0x64, 0xa9, 0xf6, 0x43, 0x70, 0xcc, 0x5c, 0x07, 0x31, 0xe8, 0x55,
|
||||
0x54, 0xa3, 0xef, 0xd8, 0xae, 0x1f, 0xc3, 0xf8, 0xe7, 0x7c, 0xa5, 0x02, 0x5c, 0x9d, 0xc0, 0xe4,
|
||||
0x1a, 0x14, 0xc9, 0x70, 0xda, 0x90, 0xfc, 0x0b, 0x46, 0x34, 0x3b, 0x44, 0xb1, 0xc4, 0xa1, 0xdb,
|
||||
0x7d, 0x47, 0x73, 0xa7, 0xc9, 0x7f, 0x7f, 0xc9, 0x13, 0x07, 0x83, 0xb0, 0xc4, 0xe1, 0x1f, 0x39,
|
||||
0x08, 0x57, 0xfb, 0x29, 0x18, 0xbe, 0xc1, 0x13, 0x07, 0xc7, 0x30, 0x0a, 0xde, 0x30, 0x4c, 0x41,
|
||||
0xf1, 0x57, 0x9c, 0x82, 0x63, 0x30, 0xc5, 0x27, 0x86, 0x85, 0xd6, 0x45, 0x3d, 0xc3, 0xf3, 0x5d,
|
||||
0xda, 0x07, 0x9f, 0x4c, 0xf5, 0xcd, 0xf7, 0xa2, 0x4d, 0x98, 0x12, 0x82, 0xca, 0x37, 0x60, 0x6e,
|
||||
0xa4, 0xc5, 0x90, 0xe2, 0x7e, 0xdd, 0x50, 0xfa, 0xb9, 0xf7, 0x59, 0x32, 0x8a, 0x76, 0x18, 0xf2,
|
||||
0x0e, 0x5e, 0xf7, 0x68, 0x1f, 0x10, 0x4f, 0xf6, 0xda, 0xfb, 0xc1, 0xd2, 0x47, 0xda, 0x00, 0xf9,
|
||||
0x3a, 0xcc, 0x46, 0x7a, 0x80, 0x78, 0xaa, 0x9f, 0x67, 0x54, 0x85, 0x70, 0x0b, 0x20, 0x5f, 0x86,
|
||||
0x14, 0xae, 0xe7, 0xf1, 0xf0, 0x5f, 0x60, 0x70, 0xa2, 0x2e, 0x7f, 0x0c, 0xb2, 0xbc, 0x8e, 0xc7,
|
||||
0x43, 0x7f, 0x91, 0x41, 0x03, 0x08, 0x86, 0xf3, 0x1a, 0x1e, 0x0f, 0xff, 0x25, 0x0e, 0xe7, 0x10,
|
||||
0x0c, 0x9f, 0xde, 0x85, 0x7f, 0xf3, 0x2b, 0x29, 0x96, 0x87, 0xb9, 0xef, 0xae, 0xc1, 0x0c, 0x2b,
|
||||
0xde, 0xf1, 0xe8, 0xcf, 0xb0, 0x87, 0x73, 0x84, 0xfc, 0x1c, 0xa4, 0xa7, 0x74, 0xf8, 0x67, 0x19,
|
||||
0x94, 0xea, 0xcb, 0x55, 0xc8, 0x87, 0x0a, 0x76, 0x3c, 0xfc, 0x57, 0x19, 0x3c, 0x8c, 0xc2, 0xa6,
|
||||
0xb3, 0x82, 0x1d, 0x4f, 0xf0, 0x6b, 0xdc, 0x74, 0x86, 0xc0, 0x6e, 0xe3, 0xb5, 0x3a, 0x1e, 0xfd,
|
||||
0x39, 0xee, 0x75, 0x0e, 0x91, 0x5f, 0x84, 0x5c, 0x90, 0x7f, 0xe3, 0xf1, 0xbf, 0xce, 0xf0, 0x43,
|
||||
0x0c, 0xf6, 0x40, 0x28, 0xff, 0xc7, 0x53, 0xfc, 0x06, 0xf7, 0x40, 0x08, 0x85, 0xb7, 0xd1, 0x68,
|
||||
0x4d, 0x8f, 0x67, 0xfa, 0x4d, 0xbe, 0x8d, 0x46, 0x4a, 0x3a, 0x5e, 0x4d, 0x92, 0x06, 0xe3, 0x29,
|
||||
0x7e, 0x8b, 0xaf, 0x26, 0xd1, 0xc7, 0x66, 0x8c, 0x16, 0xc9, 0x78, 0x8e, 0xdf, 0xe6, 0x66, 0x8c,
|
||||
0xd4, 0x48, 0xb9, 0x05, 0xd2, 0x78, 0x81, 0x8c, 0xe7, 0xfb, 0x3c, 0xe3, 0x9b, 0x1f, 0xab, 0x8f,
|
||||
0xf2, 0x4b, 0xb0, 0x34, 0xb9, 0x38, 0xc6, 0xb3, 0x7e, 0xe1, 0xfd, 0x91, 0xe3, 0x4c, 0xb8, 0x36,
|
||||
0xca, 0x7b, 0xc3, 0x2c, 0x1b, 0x2e, 0x8c, 0xf1, 0xb4, 0xaf, 0xbf, 0x1f, 0x4d, 0xb4, 0xe1, 0xba,
|
||||
0x28, 0x57, 0x00, 0x86, 0x35, 0x29, 0x9e, 0xeb, 0x0d, 0xc6, 0x15, 0x02, 0xe1, 0xad, 0xc1, 0x4a,
|
||||
0x52, 0x3c, 0xfe, 0x8b, 0x7c, 0x6b, 0x30, 0x04, 0xde, 0x1a, 0xbc, 0x1a, 0xc5, 0xa3, 0xdf, 0xe4,
|
||||
0x5b, 0x83, 0x43, 0xe4, 0x6b, 0x90, 0xb5, 0x06, 0xa6, 0x89, 0x63, 0x4b, 0x3a, 0xf9, 0x07, 0x47,
|
||||
0xa5, 0x7f, 0x7f, 0xc0, 0xc0, 0x1c, 0x20, 0x5f, 0x86, 0x34, 0xea, 0x1f, 0xa0, 0x4e, 0x1c, 0xf2,
|
||||
0x3f, 0x1e, 0xf0, 0x7c, 0x82, 0xb5, 0xe5, 0x17, 0x01, 0xe8, 0x61, 0x9a, 0x7c, 0x25, 0x8a, 0xc1,
|
||||
0xfe, 0xe7, 0x03, 0xf6, 0x5b, 0x86, 0x21, 0x64, 0x48, 0x40, 0x7f, 0x19, 0x71, 0x32, 0xc1, 0x7b,
|
||||
0x51, 0x02, 0x72, 0x00, 0x7f, 0x1e, 0x66, 0x6e, 0x79, 0xb6, 0xe5, 0x6b, 0xbd, 0x38, 0xf4, 0xf7,
|
||||
0x18, 0x9a, 0xeb, 0x63, 0x87, 0xf5, 0x6d, 0x17, 0xf9, 0x5a, 0xcf, 0x8b, 0xc3, 0xfe, 0x17, 0xc3,
|
||||
0x06, 0x00, 0x0c, 0xd6, 0x35, 0xcf, 0x9f, 0xe6, 0xbd, 0xff, 0x9b, 0x83, 0x39, 0x00, 0x1b, 0x8d,
|
||||
0xff, 0xbe, 0x8d, 0x8e, 0xe2, 0xb0, 0xdf, 0xe7, 0x46, 0x33, 0x7d, 0xf9, 0x63, 0x90, 0xc3, 0x7f,
|
||||
0xd2, 0xdf, 0xf7, 0xc4, 0x80, 0xff, 0x87, 0x81, 0x87, 0x08, 0xfc, 0x64, 0xcf, 0xef, 0xf8, 0x46,
|
||||
0xbc, 0xb3, 0xff, 0x97, 0xad, 0x34, 0xd7, 0x97, 0x2b, 0x90, 0xf7, 0xfc, 0x4e, 0x67, 0xc0, 0x3a,
|
||||
0x9a, 0x18, 0xf8, 0x0f, 0x1e, 0x04, 0x87, 0xdc, 0x00, 0xb3, 0x79, 0x61, 0xf2, 0x65, 0x1d, 0x6c,
|
||||
0xdb, 0xdb, 0x36, 0xbd, 0xa6, 0x83, 0xef, 0xa5, 0xe0, 0x6c, 0x78, 0x4f, 0xf7, 0x5c, 0x7b, 0xe0,
|
||||
0xb0, 0xfb, 0xb5, 0xf9, 0xb1, 0x89, 0xe5, 0xd3, 0xdd, 0xd0, 0x95, 0x2d, 0x80, 0x06, 0xba, 0xdb,
|
||||
0xb0, 0xb7, 0x31, 0x58, 0x5a, 0x82, 0x0c, 0xb1, 0xf9, 0x19, 0xf2, 0x81, 0x29, 0xa9, 0xb0, 0x51,
|
||||
0x20, 0xbf, 0x44, 0x7e, 0x6e, 0x2b, 0x30, 0xf9, 0x25, 0xa9, 0x0c, 0x42, 0x85, 0xdc, 0xa0, 0xe7,
|
||||
0x37, 0x16, 0xd7, 0xc7, 0x8d, 0xac, 0x28, 0x42, 0x45, 0x2e, 0xfc, 0xf2, 0x5b, 0xe7, 0x85, 0xcf,
|
||||
0xbd, 0x75, 0x5e, 0xf8, 0xd2, 0x5b, 0xe7, 0x85, 0xf2, 0x93, 0x20, 0x54, 0x30, 0x5d, 0x85, 0x30,
|
||||
0xf0, 0xc7, 0xd0, 0xd1, 0x88, 0xea, 0xdf, 0x27, 0xa0, 0xd0, 0x34, 0x3b, 0x2f, 0x19, 0xfe, 0xe1,
|
||||
0xc9, 0xd6, 0xbd, 0x00, 0x19, 0xf2, 0xbc, 0x67, 0xc8, 0xad, 0x29, 0x6c, 0x3c, 0x3e, 0xc1, 0x94,
|
||||
0x30, 0xd1, 0x3a, 0xf9, 0xf7, 0x19, 0x85, 0xa1, 0x8e, 0x7d, 0x3b, 0xce, 0xbb, 0x41, 0xae, 0x57,
|
||||
0xa7, 0xe5, 0xdd, 0x60, 0xbc, 0x1b, 0xcb, 0x2d, 0xc8, 0x6c, 0x47, 0x9f, 0x70, 0x9c, 0x5f, 0x37,
|
||||
0xf8, 0xaf, 0xc4, 0xe8, 0xe8, 0x38, 0x8b, 0x96, 0xaf, 0x32, 0xc6, 0x8d, 0xa9, 0x18, 0x87, 0xc8,
|
||||
0x8d, 0xcd, 0xb5, 0x6f, 0xdf, 0x5f, 0x39, 0xf3, 0x8f, 0xf7, 0x57, 0xce, 0xfc, 0xf3, 0xfd, 0x95,
|
||||
0x33, 0xdf, 0xbd, 0xbf, 0x22, 0x7c, 0xff, 0xfe, 0x8a, 0xf0, 0xff, 0xf7, 0x57, 0x84, 0x7b, 0xef,
|
||||
0xac, 0x08, 0x5f, 0x79, 0x67, 0x45, 0xf8, 0xda, 0x3b, 0x2b, 0xc2, 0x37, 0xdf, 0x59, 0x11, 0x7e,
|
||||
0x18, 0x00, 0x00, 0xff, 0xff, 0xc9, 0xfc, 0x0d, 0xf9, 0xf6, 0x30, 0x00, 0x00,
|
||||
// 3866 bytes of a gzipped FileDescriptorSet
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0x5b, 0x70, 0x1b, 0xe7,
|
||||
0x75, 0xd6, 0xe2, 0x46, 0xe0, 0x00, 0x04, 0x97, 0x4b, 0x9a, 0x82, 0xe8, 0x98, 0x92, 0xe0, 0x8b,
|
||||
0x28, 0xbb, 0xa1, 0x62, 0xca, 0x92, 0x25, 0xa8, 0xb1, 0x0b, 0x82, 0x10, 0x03, 0x95, 0x24, 0x90,
|
||||
0x05, 0x19, 0x5f, 0x32, 0x9d, 0x9d, 0xe5, 0xe2, 0x07, 0xb8, 0xd2, 0x62, 0x77, 0xb3, 0xbb, 0x90,
|
||||
0x4c, 0x4d, 0x1f, 0xd4, 0x71, 0x6f, 0x99, 0x4e, 0xdb, 0xf4, 0x32, 0x93, 0xc4, 0x75, 0xdc, 0xb8,
|
||||
0x33, 0xad, 0xd3, 0xf4, 0x96, 0x34, 0x6d, 0x9a, 0xf6, 0xa9, 0x2f, 0x69, 0x33, 0x7d, 0xe8, 0x34,
|
||||
0x6f, 0x7d, 0xe8, 0x43, 0xe4, 0x7a, 0xa6, 0x37, 0xa7, 0x49, 0x5b, 0x3f, 0x64, 0x46, 0x2f, 0x9d,
|
||||
0xff, 0xb6, 0xd8, 0x05, 0x40, 0xee, 0x32, 0x33, 0xb6, 0x5f, 0x24, 0xee, 0xf9, 0xcf, 0xf7, 0xed,
|
||||
0xf9, 0xcf, 0x7f, 0xfe, 0x73, 0xce, 0xff, 0x2f, 0xe0, 0x07, 0x57, 0xe1, 0x4c, 0xcf, 0xb2, 0x7a,
|
||||
0x06, 0xba, 0x60, 0x3b, 0x96, 0x67, 0xed, 0x0d, 0xba, 0x17, 0x3a, 0xc8, 0xd5, 0x1c, 0xdd, 0xf6,
|
||||
0x2c, 0x67, 0x85, 0xc8, 0xa4, 0x19, 0xaa, 0xb1, 0xc2, 0x35, 0xca, 0x5b, 0x30, 0x7b, 0x5d, 0x37,
|
||||
0xd0, 0xba, 0xaf, 0xd8, 0x46, 0x9e, 0x74, 0x05, 0x52, 0x5d, 0xdd, 0x40, 0x25, 0xe1, 0x4c, 0x72,
|
||||
0x39, 0xbf, 0xfa, 0xd8, 0xca, 0x08, 0x68, 0x25, 0x8c, 0x68, 0x61, 0xb1, 0x4c, 0x10, 0xe5, 0x77,
|
||||
0x52, 0x30, 0x37, 0x61, 0x54, 0x92, 0x20, 0x65, 0xaa, 0x7d, 0xcc, 0x28, 0x2c, 0xe7, 0x64, 0xf2,
|
||||
0xb7, 0x54, 0x82, 0x29, 0x5b, 0xd5, 0x6e, 0xa9, 0x3d, 0x54, 0x4a, 0x10, 0x31, 0x7f, 0x94, 0x96,
|
||||
0x00, 0x3a, 0xc8, 0x46, 0x66, 0x07, 0x99, 0xda, 0x41, 0x29, 0x79, 0x26, 0xb9, 0x9c, 0x93, 0x03,
|
||||
0x12, 0xe9, 0x29, 0x98, 0xb5, 0x07, 0x7b, 0x86, 0xae, 0x29, 0x01, 0x35, 0x38, 0x93, 0x5c, 0x4e,
|
||||
0xcb, 0x22, 0x1d, 0x58, 0x1f, 0x2a, 0x9f, 0x83, 0x99, 0x3b, 0x48, 0xbd, 0x15, 0x54, 0xcd, 0x13,
|
||||
0xd5, 0x22, 0x16, 0x07, 0x14, 0x6b, 0x50, 0xe8, 0x23, 0xd7, 0x55, 0x7b, 0x48, 0xf1, 0x0e, 0x6c,
|
||||
0x54, 0x4a, 0x91, 0xd9, 0x9f, 0x19, 0x9b, 0xfd, 0xe8, 0xcc, 0xf3, 0x0c, 0xb5, 0x73, 0x60, 0x23,
|
||||
0xa9, 0x0a, 0x39, 0x64, 0x0e, 0xfa, 0x94, 0x21, 0x7d, 0x88, 0xff, 0xea, 0xe6, 0xa0, 0x3f, 0xca,
|
||||
0x92, 0xc5, 0x30, 0x46, 0x31, 0xe5, 0x22, 0xe7, 0xb6, 0xae, 0xa1, 0x52, 0x86, 0x10, 0x9c, 0x1b,
|
||||
0x23, 0x68, 0xd3, 0xf1, 0x51, 0x0e, 0x8e, 0x93, 0x6a, 0x90, 0x43, 0xaf, 0x78, 0xc8, 0x74, 0x75,
|
||||
0xcb, 0x2c, 0x4d, 0x11, 0x92, 0xc7, 0x27, 0xac, 0x22, 0x32, 0x3a, 0xa3, 0x14, 0x43, 0x9c, 0x74,
|
||||
0x19, 0xa6, 0x2c, 0xdb, 0xd3, 0x2d, 0xd3, 0x2d, 0x65, 0xcf, 0x08, 0xcb, 0xf9, 0xd5, 0x8f, 0x4c,
|
||||
0x0c, 0x84, 0x26, 0xd5, 0x91, 0xb9, 0xb2, 0xd4, 0x00, 0xd1, 0xb5, 0x06, 0x8e, 0x86, 0x14, 0xcd,
|
||||
0xea, 0x20, 0x45, 0x37, 0xbb, 0x56, 0x29, 0x47, 0x08, 0x4e, 0x8f, 0x4f, 0x84, 0x28, 0xd6, 0xac,
|
||||
0x0e, 0x6a, 0x98, 0x5d, 0x4b, 0x2e, 0xba, 0xa1, 0x67, 0x69, 0x01, 0x32, 0xee, 0x81, 0xe9, 0xa9,
|
||||
0xaf, 0x94, 0x0a, 0x24, 0x42, 0xd8, 0x53, 0xf9, 0xaf, 0x33, 0x30, 0x13, 0x27, 0xc4, 0xae, 0x41,
|
||||
0xba, 0x8b, 0x67, 0x59, 0x4a, 0x1c, 0xc7, 0x07, 0x14, 0x13, 0x76, 0x62, 0xe6, 0xc7, 0x74, 0x62,
|
||||
0x15, 0xf2, 0x26, 0x72, 0x3d, 0xd4, 0xa1, 0x11, 0x91, 0x8c, 0x19, 0x53, 0x40, 0x41, 0xe3, 0x21,
|
||||
0x95, 0xfa, 0xb1, 0x42, 0xea, 0x45, 0x98, 0xf1, 0x4d, 0x52, 0x1c, 0xd5, 0xec, 0xf1, 0xd8, 0xbc,
|
||||
0x10, 0x65, 0xc9, 0x4a, 0x9d, 0xe3, 0x64, 0x0c, 0x93, 0x8b, 0x28, 0xf4, 0x2c, 0xad, 0x03, 0x58,
|
||||
0x26, 0xb2, 0xba, 0x4a, 0x07, 0x69, 0x46, 0x29, 0x7b, 0x88, 0x97, 0x9a, 0x58, 0x65, 0xcc, 0x4b,
|
||||
0x16, 0x95, 0x6a, 0x86, 0x74, 0x75, 0x18, 0x6a, 0x53, 0x87, 0x44, 0xca, 0x16, 0xdd, 0x64, 0x63,
|
||||
0xd1, 0xb6, 0x0b, 0x45, 0x07, 0xe1, 0xb8, 0x47, 0x1d, 0x36, 0xb3, 0x1c, 0x31, 0x62, 0x25, 0x72,
|
||||
0x66, 0x32, 0x83, 0xd1, 0x89, 0x4d, 0x3b, 0xc1, 0x47, 0xe9, 0x51, 0xf0, 0x05, 0x0a, 0x09, 0x2b,
|
||||
0x20, 0x59, 0xa8, 0xc0, 0x85, 0xdb, 0x6a, 0x1f, 0x2d, 0xde, 0x85, 0x62, 0xd8, 0x3d, 0xd2, 0x3c,
|
||||
0xa4, 0x5d, 0x4f, 0x75, 0x3c, 0x12, 0x85, 0x69, 0x99, 0x3e, 0x48, 0x22, 0x24, 0x91, 0xd9, 0x21,
|
||||
0x59, 0x2e, 0x2d, 0xe3, 0x3f, 0xa5, 0x9f, 0x1a, 0x4e, 0x38, 0x49, 0x26, 0xfc, 0xc4, 0xf8, 0x8a,
|
||||
0x86, 0x98, 0x47, 0xe7, 0xbd, 0xf8, 0x2c, 0x4c, 0x87, 0x26, 0x10, 0xf7, 0xd5, 0xe5, 0x9f, 0x85,
|
||||
0x87, 0x26, 0x52, 0x4b, 0x2f, 0xc2, 0xfc, 0xc0, 0xd4, 0x4d, 0x0f, 0x39, 0xb6, 0x83, 0x70, 0xc4,
|
||||
0xd2, 0x57, 0x95, 0xfe, 0x6d, 0xea, 0x90, 0x98, 0xdb, 0x0d, 0x6a, 0x53, 0x16, 0x79, 0x6e, 0x30,
|
||||
0x2e, 0x7c, 0x32, 0x97, 0xfd, 0xf7, 0x29, 0xf1, 0xde, 0xbd, 0x7b, 0xf7, 0x12, 0xe5, 0x2f, 0x64,
|
||||
0x60, 0x7e, 0xd2, 0x9e, 0x99, 0xb8, 0x7d, 0x17, 0x20, 0x63, 0x0e, 0xfa, 0x7b, 0xc8, 0x21, 0x4e,
|
||||
0x4a, 0xcb, 0xec, 0x49, 0xaa, 0x42, 0xda, 0x50, 0xf7, 0x90, 0x51, 0x4a, 0x9d, 0x11, 0x96, 0x8b,
|
||||
0xab, 0x4f, 0xc5, 0xda, 0x95, 0x2b, 0x9b, 0x18, 0x22, 0x53, 0xa4, 0xf4, 0x1c, 0xa4, 0x58, 0x8a,
|
||||
0xc6, 0x0c, 0x4f, 0xc6, 0x63, 0xc0, 0x7b, 0x49, 0x26, 0x38, 0xe9, 0x61, 0xc8, 0xe1, 0xff, 0x69,
|
||||
0x6c, 0x64, 0x88, 0xcd, 0x59, 0x2c, 0xc0, 0x71, 0x21, 0x2d, 0x42, 0x96, 0x6c, 0x93, 0x0e, 0xe2,
|
||||
0xa5, 0xcd, 0x7f, 0xc6, 0x81, 0xd5, 0x41, 0x5d, 0x75, 0x60, 0x78, 0xca, 0x6d, 0xd5, 0x18, 0x20,
|
||||
0x12, 0xf0, 0x39, 0xb9, 0xc0, 0x84, 0x9f, 0xc2, 0x32, 0xe9, 0x34, 0xe4, 0xe9, 0xae, 0xd2, 0xcd,
|
||||
0x0e, 0x7a, 0x85, 0x64, 0xcf, 0xb4, 0x4c, 0x37, 0x5a, 0x03, 0x4b, 0xf0, 0xeb, 0x6f, 0xba, 0x96,
|
||||
0xc9, 0x43, 0x93, 0xbc, 0x02, 0x0b, 0xc8, 0xeb, 0x9f, 0x1d, 0x4d, 0xdc, 0x8f, 0x4c, 0x9e, 0xde,
|
||||
0x68, 0x4c, 0x95, 0xbf, 0x99, 0x80, 0x14, 0xc9, 0x17, 0x33, 0x90, 0xdf, 0x79, 0xa9, 0x55, 0x57,
|
||||
0xd6, 0x9b, 0xbb, 0x6b, 0x9b, 0x75, 0x51, 0x90, 0x8a, 0x00, 0x44, 0x70, 0x7d, 0xb3, 0x59, 0xdd,
|
||||
0x11, 0x13, 0xfe, 0x73, 0x63, 0x7b, 0xe7, 0xf2, 0x33, 0x62, 0xd2, 0x07, 0xec, 0x52, 0x41, 0x2a,
|
||||
0xa8, 0x70, 0x71, 0x55, 0x4c, 0x4b, 0x22, 0x14, 0x28, 0x41, 0xe3, 0xc5, 0xfa, 0xfa, 0xe5, 0x67,
|
||||
0xc4, 0x4c, 0x58, 0x72, 0x71, 0x55, 0x9c, 0x92, 0xa6, 0x21, 0x47, 0x24, 0x6b, 0xcd, 0xe6, 0xa6,
|
||||
0x98, 0xf5, 0x39, 0xdb, 0x3b, 0x72, 0x63, 0x7b, 0x43, 0xcc, 0xf9, 0x9c, 0x1b, 0x72, 0x73, 0xb7,
|
||||
0x25, 0x82, 0xcf, 0xb0, 0x55, 0x6f, 0xb7, 0xab, 0x1b, 0x75, 0x31, 0xef, 0x6b, 0xac, 0xbd, 0xb4,
|
||||
0x53, 0x6f, 0x8b, 0x85, 0x90, 0x59, 0x17, 0x57, 0xc5, 0x69, 0xff, 0x15, 0xf5, 0xed, 0xdd, 0x2d,
|
||||
0xb1, 0x28, 0xcd, 0xc2, 0x34, 0x7d, 0x05, 0x37, 0x62, 0x66, 0x44, 0x74, 0xf9, 0x19, 0x51, 0x1c,
|
||||
0x1a, 0x42, 0x59, 0x66, 0x43, 0x82, 0xcb, 0xcf, 0x88, 0x52, 0xb9, 0x06, 0x69, 0x12, 0x5d, 0x92,
|
||||
0x04, 0xc5, 0xcd, 0xea, 0x5a, 0x7d, 0x53, 0x69, 0xb6, 0x76, 0x1a, 0xcd, 0xed, 0xea, 0xa6, 0x28,
|
||||
0x0c, 0x65, 0x72, 0xfd, 0x93, 0xbb, 0x0d, 0xb9, 0xbe, 0x2e, 0x26, 0x82, 0xb2, 0x56, 0xbd, 0xba,
|
||||
0x53, 0x5f, 0x17, 0x93, 0x65, 0x0d, 0xe6, 0x27, 0xe5, 0xc9, 0x89, 0x3b, 0x23, 0xb0, 0xc4, 0x89,
|
||||
0x43, 0x96, 0x98, 0x70, 0x8d, 0x2d, 0xf1, 0xbf, 0x26, 0x60, 0x6e, 0x42, 0xad, 0x98, 0xf8, 0x92,
|
||||
0xe7, 0x21, 0x4d, 0x43, 0x94, 0x56, 0xcf, 0xf3, 0x13, 0x8b, 0x0e, 0x09, 0xd8, 0xb1, 0x0a, 0x4a,
|
||||
0x70, 0xc1, 0x0e, 0x22, 0x79, 0x48, 0x07, 0x81, 0x29, 0xc6, 0x72, 0xfa, 0xcf, 0x8c, 0xe5, 0x74,
|
||||
0x5a, 0xf6, 0x2e, 0xc7, 0x29, 0x7b, 0x44, 0x76, 0xbc, 0xdc, 0x9e, 0x9e, 0x90, 0xdb, 0xaf, 0xc1,
|
||||
0xec, 0x18, 0x51, 0xec, 0x1c, 0xfb, 0xaa, 0x00, 0xa5, 0xc3, 0x9c, 0x13, 0x91, 0xe9, 0x12, 0xa1,
|
||||
0x4c, 0x77, 0x6d, 0xd4, 0x83, 0x67, 0x0f, 0x5f, 0x84, 0xb1, 0xb5, 0x7e, 0x4b, 0x80, 0x85, 0xc9,
|
||||
0x9d, 0xe2, 0x44, 0x1b, 0x9e, 0x83, 0x4c, 0x1f, 0x79, 0xfb, 0x16, 0xef, 0x96, 0x9e, 0x98, 0x50,
|
||||
0x83, 0xf1, 0xf0, 0xe8, 0x62, 0x33, 0x54, 0xb0, 0x88, 0x27, 0x0f, 0x6b, 0xf7, 0xa8, 0x35, 0x63,
|
||||
0x96, 0x7e, 0x36, 0x01, 0x0f, 0x4d, 0x24, 0x9f, 0x68, 0xe8, 0x23, 0x00, 0xba, 0x69, 0x0f, 0x3c,
|
||||
0xda, 0x11, 0xd1, 0x04, 0x9b, 0x23, 0x12, 0x92, 0xbc, 0x70, 0xf2, 0x1c, 0x78, 0xfe, 0x78, 0x92,
|
||||
0x8c, 0x03, 0x15, 0x11, 0x85, 0x2b, 0x43, 0x43, 0x53, 0xc4, 0xd0, 0xa5, 0x43, 0x66, 0x3a, 0x16,
|
||||
0x98, 0x1f, 0x03, 0x51, 0x33, 0x74, 0x64, 0x7a, 0x8a, 0xeb, 0x39, 0x48, 0xed, 0xeb, 0x66, 0x8f,
|
||||
0x54, 0x90, 0x6c, 0x25, 0xdd, 0x55, 0x0d, 0x17, 0xc9, 0x33, 0x74, 0xb8, 0xcd, 0x47, 0x31, 0x82,
|
||||
0x04, 0x90, 0x13, 0x40, 0x64, 0x42, 0x08, 0x3a, 0xec, 0x23, 0xca, 0xdf, 0xc8, 0x42, 0x3e, 0xd0,
|
||||
0x57, 0x4b, 0x67, 0xa1, 0x70, 0x53, 0xbd, 0xad, 0x2a, 0xfc, 0xac, 0x44, 0x3d, 0x91, 0xc7, 0xb2,
|
||||
0x16, 0x3b, 0x2f, 0x7d, 0x0c, 0xe6, 0x89, 0x8a, 0x35, 0xf0, 0x90, 0xa3, 0x68, 0x86, 0xea, 0xba,
|
||||
0xc4, 0x69, 0x59, 0xa2, 0x2a, 0xe1, 0xb1, 0x26, 0x1e, 0xaa, 0xf1, 0x11, 0xe9, 0x12, 0xcc, 0x11,
|
||||
0x44, 0x7f, 0x60, 0x78, 0xba, 0x6d, 0x20, 0x05, 0x9f, 0xde, 0x5c, 0x52, 0x49, 0x7c, 0xcb, 0x66,
|
||||
0xb1, 0xc6, 0x16, 0x53, 0xc0, 0x16, 0xb9, 0xd2, 0x3a, 0x3c, 0x42, 0x60, 0x3d, 0x64, 0x22, 0x47,
|
||||
0xf5, 0x90, 0x82, 0x3e, 0x33, 0x50, 0x0d, 0x57, 0x51, 0xcd, 0x8e, 0xb2, 0xaf, 0xba, 0xfb, 0xa5,
|
||||
0x79, 0x4c, 0xb0, 0x96, 0x28, 0x09, 0xf2, 0x29, 0xac, 0xb8, 0xc1, 0xf4, 0xea, 0x44, 0xad, 0x6a,
|
||||
0x76, 0x3e, 0xa1, 0xba, 0xfb, 0x52, 0x05, 0x16, 0x08, 0x8b, 0xeb, 0x39, 0xba, 0xd9, 0x53, 0xb4,
|
||||
0x7d, 0xa4, 0xdd, 0x52, 0x06, 0x5e, 0xf7, 0x4a, 0xe9, 0xe1, 0xe0, 0xfb, 0x89, 0x85, 0x6d, 0xa2,
|
||||
0x53, 0xc3, 0x2a, 0xbb, 0x5e, 0xf7, 0x8a, 0xd4, 0x86, 0x02, 0x5e, 0x8c, 0xbe, 0x7e, 0x17, 0x29,
|
||||
0x5d, 0xcb, 0x21, 0xa5, 0xb1, 0x38, 0x21, 0x35, 0x05, 0x3c, 0xb8, 0xd2, 0x64, 0x80, 0x2d, 0xab,
|
||||
0x83, 0x2a, 0xe9, 0x76, 0xab, 0x5e, 0x5f, 0x97, 0xf3, 0x9c, 0xe5, 0xba, 0xe5, 0xe0, 0x80, 0xea,
|
||||
0x59, 0xbe, 0x83, 0xf3, 0x34, 0xa0, 0x7a, 0x16, 0x77, 0xef, 0x25, 0x98, 0xd3, 0x34, 0x3a, 0x67,
|
||||
0x5d, 0x53, 0xd8, 0x19, 0xcb, 0x2d, 0x89, 0x21, 0x67, 0x69, 0xda, 0x06, 0x55, 0x60, 0x31, 0xee,
|
||||
0x4a, 0x57, 0xe1, 0xa1, 0xa1, 0xb3, 0x82, 0xc0, 0xd9, 0xb1, 0x59, 0x8e, 0x42, 0x2f, 0xc1, 0x9c,
|
||||
0x7d, 0x30, 0x0e, 0x94, 0x42, 0x6f, 0xb4, 0x0f, 0x46, 0x61, 0xcf, 0xc2, 0xbc, 0xbd, 0x6f, 0x8f,
|
||||
0xe3, 0x9e, 0x0c, 0xe2, 0x24, 0x7b, 0xdf, 0x1e, 0x05, 0x3e, 0x4e, 0x0e, 0xdc, 0x0e, 0xd2, 0x54,
|
||||
0x0f, 0x75, 0x4a, 0x27, 0x83, 0xea, 0x81, 0x01, 0xe9, 0x02, 0x88, 0x9a, 0xa6, 0x20, 0x53, 0xdd,
|
||||
0x33, 0x90, 0xa2, 0x3a, 0xc8, 0x54, 0xdd, 0xd2, 0xe9, 0xa0, 0x72, 0x51, 0xd3, 0xea, 0x64, 0xb4,
|
||||
0x4a, 0x06, 0xa5, 0x27, 0x61, 0xd6, 0xda, 0xbb, 0xa9, 0xd1, 0x90, 0x54, 0x6c, 0x07, 0x75, 0xf5,
|
||||
0x57, 0x4a, 0x8f, 0x11, 0xff, 0xce, 0xe0, 0x01, 0x12, 0x90, 0x2d, 0x22, 0x96, 0xce, 0x83, 0xa8,
|
||||
0xb9, 0xfb, 0xaa, 0x63, 0x93, 0x9c, 0xec, 0xda, 0xaa, 0x86, 0x4a, 0x8f, 0x53, 0x55, 0x2a, 0xdf,
|
||||
0xe6, 0x62, 0xbc, 0x25, 0xdc, 0x3b, 0x7a, 0xd7, 0xe3, 0x8c, 0xe7, 0xe8, 0x96, 0x20, 0x32, 0xc6,
|
||||
0xb6, 0x0c, 0x22, 0x76, 0x45, 0xe8, 0xc5, 0xcb, 0x44, 0xad, 0x68, 0xef, 0xdb, 0xc1, 0xf7, 0x3e,
|
||||
0x0a, 0xd3, 0x58, 0x73, 0xf8, 0xd2, 0xf3, 0xb4, 0x21, 0xb3, 0xf7, 0x03, 0x6f, 0x7c, 0xdf, 0x7a,
|
||||
0xe3, 0x72, 0x05, 0x0a, 0xc1, 0xf8, 0x94, 0x72, 0x40, 0x23, 0x54, 0x14, 0x70, 0xb3, 0x52, 0x6b,
|
||||
0xae, 0xe3, 0x36, 0xe3, 0xe5, 0xba, 0x98, 0xc0, 0xed, 0xce, 0x66, 0x63, 0xa7, 0xae, 0xc8, 0xbb,
|
||||
0xdb, 0x3b, 0x8d, 0xad, 0xba, 0x98, 0x0c, 0xf6, 0xd5, 0xdf, 0x4e, 0x40, 0x31, 0x7c, 0x44, 0x92,
|
||||
0x7e, 0x12, 0x4e, 0xf2, 0xfb, 0x0c, 0x17, 0x79, 0xca, 0x1d, 0xdd, 0x21, 0x5b, 0xa6, 0xaf, 0xd2,
|
||||
0xf2, 0xe5, 0x2f, 0xda, 0x3c, 0xd3, 0x6a, 0x23, 0xef, 0x05, 0xdd, 0xc1, 0x1b, 0xa2, 0xaf, 0x7a,
|
||||
0xd2, 0x26, 0x9c, 0x36, 0x2d, 0xc5, 0xf5, 0x54, 0xb3, 0xa3, 0x3a, 0x1d, 0x65, 0x78, 0x93, 0xa4,
|
||||
0xa8, 0x9a, 0x86, 0x5c, 0xd7, 0xa2, 0xa5, 0xca, 0x67, 0xf9, 0x88, 0x69, 0xb5, 0x99, 0xf2, 0x30,
|
||||
0x87, 0x57, 0x99, 0xea, 0x48, 0x80, 0x25, 0x0f, 0x0b, 0xb0, 0x87, 0x21, 0xd7, 0x57, 0x6d, 0x05,
|
||||
0x99, 0x9e, 0x73, 0x40, 0x1a, 0xe3, 0xac, 0x9c, 0xed, 0xab, 0x76, 0x1d, 0x3f, 0x7f, 0x30, 0xe7,
|
||||
0x93, 0x7f, 0x49, 0x42, 0x21, 0xd8, 0x1c, 0xe3, 0xb3, 0x86, 0x46, 0xea, 0x88, 0x40, 0x32, 0xcd,
|
||||
0xa3, 0x47, 0xb6, 0xd2, 0x2b, 0x35, 0x5c, 0x60, 0x2a, 0x19, 0xda, 0xb2, 0xca, 0x14, 0x89, 0x8b,
|
||||
0x3b, 0xce, 0x2d, 0x88, 0xb6, 0x08, 0x59, 0x99, 0x3d, 0x49, 0x1b, 0x90, 0xb9, 0xe9, 0x12, 0xee,
|
||||
0x0c, 0xe1, 0x7e, 0xec, 0x68, 0xee, 0x1b, 0x6d, 0x42, 0x9e, 0xbb, 0xd1, 0x56, 0xb6, 0x9b, 0xf2,
|
||||
0x56, 0x75, 0x53, 0x66, 0x70, 0xe9, 0x14, 0xa4, 0x0c, 0xf5, 0xee, 0x41, 0xb8, 0x14, 0x11, 0x51,
|
||||
0x5c, 0xc7, 0x9f, 0x82, 0xd4, 0x1d, 0xa4, 0xde, 0x0a, 0x17, 0x00, 0x22, 0x7a, 0x1f, 0x43, 0xff,
|
||||
0x02, 0xa4, 0x89, 0xbf, 0x24, 0x00, 0xe6, 0x31, 0xf1, 0x84, 0x94, 0x85, 0x54, 0xad, 0x29, 0xe3,
|
||||
0xf0, 0x17, 0xa1, 0x40, 0xa5, 0x4a, 0xab, 0x51, 0xaf, 0xd5, 0xc5, 0x44, 0xf9, 0x12, 0x64, 0xa8,
|
||||
0x13, 0xf0, 0xd6, 0xf0, 0xdd, 0x20, 0x9e, 0x60, 0x8f, 0x8c, 0x43, 0xe0, 0xa3, 0xbb, 0x5b, 0x6b,
|
||||
0x75, 0x59, 0x4c, 0x04, 0x97, 0xd7, 0x85, 0x42, 0xb0, 0x2f, 0xfe, 0x60, 0x62, 0xea, 0x6f, 0x04,
|
||||
0xc8, 0x07, 0xfa, 0x5c, 0xdc, 0xa0, 0xa8, 0x86, 0x61, 0xdd, 0x51, 0x54, 0x43, 0x57, 0x5d, 0x16,
|
||||
0x14, 0x40, 0x44, 0x55, 0x2c, 0x89, 0xbb, 0x68, 0x1f, 0x88, 0xf1, 0x6f, 0x08, 0x20, 0x8e, 0xb6,
|
||||
0x98, 0x23, 0x06, 0x0a, 0x1f, 0xaa, 0x81, 0xaf, 0x0b, 0x50, 0x0c, 0xf7, 0x95, 0x23, 0xe6, 0x9d,
|
||||
0xfd, 0x50, 0xcd, 0xfb, 0x5e, 0x02, 0xa6, 0x43, 0xdd, 0x64, 0x5c, 0xeb, 0x3e, 0x03, 0xb3, 0x7a,
|
||||
0x07, 0xf5, 0x6d, 0xcb, 0x43, 0xa6, 0x76, 0xa0, 0x18, 0xe8, 0x36, 0x32, 0x4a, 0x65, 0x92, 0x28,
|
||||
0x2e, 0x1c, 0xdd, 0xaf, 0xae, 0x34, 0x86, 0xb8, 0x4d, 0x0c, 0xab, 0xcc, 0x35, 0xd6, 0xeb, 0x5b,
|
||||
0xad, 0xe6, 0x4e, 0x7d, 0xbb, 0xf6, 0x92, 0xb2, 0xbb, 0xfd, 0xd3, 0xdb, 0xcd, 0x17, 0xb6, 0x65,
|
||||
0x51, 0x1f, 0x51, 0x7b, 0x1f, 0xb7, 0x7a, 0x0b, 0xc4, 0x51, 0xa3, 0xa4, 0x93, 0x30, 0xc9, 0x2c,
|
||||
0xf1, 0x84, 0x34, 0x07, 0x33, 0xdb, 0x4d, 0xa5, 0xdd, 0x58, 0xaf, 0x2b, 0xf5, 0xeb, 0xd7, 0xeb,
|
||||
0xb5, 0x9d, 0x36, 0xbd, 0x81, 0xf0, 0xb5, 0x77, 0xc2, 0x9b, 0xfa, 0xb5, 0x24, 0xcc, 0x4d, 0xb0,
|
||||
0x44, 0xaa, 0xb2, 0xb3, 0x03, 0x3d, 0xce, 0x7c, 0x34, 0x8e, 0xf5, 0x2b, 0xb8, 0xe4, 0xb7, 0x54,
|
||||
0xc7, 0x63, 0x47, 0x8d, 0xf3, 0x80, 0xbd, 0x64, 0x7a, 0x7a, 0x57, 0x47, 0x0e, 0xbb, 0xb0, 0xa1,
|
||||
0x07, 0x8a, 0x99, 0xa1, 0x9c, 0xde, 0xd9, 0xfc, 0x04, 0x48, 0xb6, 0xe5, 0xea, 0x9e, 0x7e, 0x1b,
|
||||
0x29, 0xba, 0xc9, 0x6f, 0x77, 0xf0, 0x01, 0x23, 0x25, 0x8b, 0x7c, 0xa4, 0x61, 0x7a, 0xbe, 0xb6,
|
||||
0x89, 0x7a, 0xea, 0x88, 0x36, 0x4e, 0xe0, 0x49, 0x59, 0xe4, 0x23, 0xbe, 0xf6, 0x59, 0x28, 0x74,
|
||||
0xac, 0x01, 0xee, 0xba, 0xa8, 0x1e, 0xae, 0x17, 0x82, 0x9c, 0xa7, 0x32, 0x5f, 0x85, 0xf5, 0xd3,
|
||||
0xc3, 0x6b, 0xa5, 0x82, 0x9c, 0xa7, 0x32, 0xaa, 0x72, 0x0e, 0x66, 0xd4, 0x5e, 0xcf, 0xc1, 0xe4,
|
||||
0x9c, 0x88, 0x9e, 0x10, 0x8a, 0xbe, 0x98, 0x28, 0x2e, 0xde, 0x80, 0x2c, 0xf7, 0x03, 0x2e, 0xc9,
|
||||
0xd8, 0x13, 0x8a, 0x4d, 0x8f, 0xbd, 0x89, 0xe5, 0x9c, 0x9c, 0x35, 0xf9, 0xe0, 0x59, 0x28, 0xe8,
|
||||
0xae, 0x32, 0xbc, 0x25, 0x4f, 0x9c, 0x49, 0x2c, 0x67, 0xe5, 0xbc, 0xee, 0xfa, 0x37, 0x8c, 0xe5,
|
||||
0xb7, 0x12, 0x50, 0x0c, 0xdf, 0xf2, 0x4b, 0xeb, 0x90, 0x35, 0x2c, 0x4d, 0x25, 0xa1, 0x45, 0x3f,
|
||||
0x31, 0x2d, 0x47, 0x7c, 0x18, 0x58, 0xd9, 0x64, 0xfa, 0xb2, 0x8f, 0x5c, 0xfc, 0x47, 0x01, 0xb2,
|
||||
0x5c, 0x2c, 0x2d, 0x40, 0xca, 0x56, 0xbd, 0x7d, 0x42, 0x97, 0x5e, 0x4b, 0x88, 0x82, 0x4c, 0x9e,
|
||||
0xb1, 0xdc, 0xb5, 0x55, 0x93, 0x84, 0x00, 0x93, 0xe3, 0x67, 0xbc, 0xae, 0x06, 0x52, 0x3b, 0xe4,
|
||||
0xf8, 0x61, 0xf5, 0xfb, 0xc8, 0xf4, 0x5c, 0xbe, 0xae, 0x4c, 0x5e, 0x63, 0x62, 0xe9, 0x29, 0x98,
|
||||
0xf5, 0x1c, 0x55, 0x37, 0x42, 0xba, 0x29, 0xa2, 0x2b, 0xf2, 0x01, 0x5f, 0xb9, 0x02, 0xa7, 0x38,
|
||||
0x6f, 0x07, 0x79, 0xaa, 0xb6, 0x8f, 0x3a, 0x43, 0x50, 0x86, 0x5c, 0x33, 0x9c, 0x64, 0x0a, 0xeb,
|
||||
0x6c, 0x9c, 0x63, 0xcb, 0xdf, 0x15, 0x60, 0x96, 0x1f, 0x98, 0x3a, 0xbe, 0xb3, 0xb6, 0x00, 0x54,
|
||||
0xd3, 0xb4, 0xbc, 0xa0, 0xbb, 0xc6, 0x43, 0x79, 0x0c, 0xb7, 0x52, 0xf5, 0x41, 0x72, 0x80, 0x60,
|
||||
0xb1, 0x0f, 0x30, 0x1c, 0x39, 0xd4, 0x6d, 0xa7, 0x21, 0xcf, 0x3e, 0xe1, 0x90, 0xef, 0x80, 0xf4,
|
||||
0x88, 0x0d, 0x54, 0x84, 0x4f, 0x56, 0xd2, 0x3c, 0xa4, 0xf7, 0x50, 0x4f, 0x37, 0xd9, 0xc5, 0x2c,
|
||||
0x7d, 0xe0, 0x17, 0x21, 0x29, 0xff, 0x22, 0x64, 0xed, 0xd3, 0x30, 0xa7, 0x59, 0xfd, 0x51, 0x73,
|
||||
0xd7, 0xc4, 0x91, 0x63, 0xbe, 0xfb, 0x09, 0xe1, 0x65, 0x18, 0xb6, 0x98, 0x3f, 0x12, 0x84, 0xdf,
|
||||
0x4b, 0x24, 0x37, 0x5a, 0x6b, 0x5f, 0x4d, 0x2c, 0x6e, 0x50, 0x68, 0x8b, 0xcf, 0x54, 0x46, 0x5d,
|
||||
0x03, 0x69, 0xd8, 0x7a, 0xf8, 0xfc, 0x39, 0xf8, 0x68, 0x4f, 0xf7, 0xf6, 0x07, 0x7b, 0x2b, 0x9a,
|
||||
0xd5, 0xbf, 0xd0, 0xb3, 0x7a, 0xd6, 0xf0, 0xd3, 0x27, 0x7e, 0x22, 0x0f, 0xe4, 0x2f, 0xf6, 0xf9,
|
||||
0x33, 0xe7, 0x4b, 0x17, 0x23, 0xbf, 0x95, 0x56, 0xb6, 0x61, 0x8e, 0x29, 0x2b, 0xe4, 0xfb, 0x0b,
|
||||
0x3d, 0x45, 0x48, 0x47, 0xde, 0x61, 0x95, 0xbe, 0xfe, 0x0e, 0x29, 0xd7, 0xf2, 0x2c, 0x83, 0xe2,
|
||||
0x31, 0x7a, 0xd0, 0xa8, 0xc8, 0xf0, 0x50, 0x88, 0x8f, 0x6e, 0x4d, 0xe4, 0x44, 0x30, 0x7e, 0x9b,
|
||||
0x31, 0xce, 0x05, 0x18, 0xdb, 0x0c, 0x5a, 0xa9, 0xc1, 0xf4, 0x71, 0xb8, 0xfe, 0x8e, 0x71, 0x15,
|
||||
0x50, 0x90, 0x64, 0x03, 0x66, 0x08, 0x89, 0x36, 0x70, 0x3d, 0xab, 0x4f, 0xf2, 0xde, 0xd1, 0x34,
|
||||
0x7f, 0xff, 0x0e, 0xdd, 0x2b, 0x45, 0x0c, 0xab, 0xf9, 0xa8, 0x4a, 0x05, 0xc8, 0x27, 0xa7, 0x0e,
|
||||
0xd2, 0x8c, 0x08, 0x86, 0xef, 0x30, 0x43, 0x7c, 0xfd, 0xca, 0xa7, 0x60, 0x1e, 0xff, 0x4d, 0xd2,
|
||||
0x52, 0xd0, 0x92, 0xe8, 0x0b, 0xaf, 0xd2, 0x77, 0x5f, 0xa5, 0xdb, 0x71, 0xce, 0x27, 0x08, 0xd8,
|
||||
0x14, 0x58, 0xc5, 0x1e, 0xf2, 0x3c, 0xe4, 0xb8, 0x8a, 0x6a, 0x4c, 0x32, 0x2f, 0x70, 0x63, 0x50,
|
||||
0xfa, 0xe2, 0xbb, 0xe1, 0x55, 0xdc, 0xa0, 0xc8, 0xaa, 0x61, 0x54, 0x76, 0xe1, 0xe4, 0x84, 0xa8,
|
||||
0x88, 0xc1, 0xf9, 0x1a, 0xe3, 0x9c, 0x1f, 0x8b, 0x0c, 0x4c, 0xdb, 0x02, 0x2e, 0xf7, 0xd7, 0x32,
|
||||
0x06, 0xe7, 0xef, 0x30, 0x4e, 0x89, 0x61, 0xf9, 0x92, 0x62, 0xc6, 0x1b, 0x30, 0x7b, 0x1b, 0x39,
|
||||
0x7b, 0x96, 0xcb, 0x6e, 0x69, 0x62, 0xd0, 0xbd, 0xce, 0xe8, 0x66, 0x18, 0x90, 0x5c, 0xdb, 0x60,
|
||||
0xae, 0xab, 0x90, 0xed, 0xaa, 0x1a, 0x8a, 0x41, 0xf1, 0x25, 0x46, 0x31, 0x85, 0xf5, 0x31, 0xb4,
|
||||
0x0a, 0x85, 0x9e, 0xc5, 0x2a, 0x53, 0x34, 0xfc, 0x0d, 0x06, 0xcf, 0x73, 0x0c, 0xa3, 0xb0, 0x2d,
|
||||
0x7b, 0x60, 0xe0, 0xb2, 0x15, 0x4d, 0xf1, 0xbb, 0x9c, 0x82, 0x63, 0x18, 0xc5, 0x31, 0xdc, 0xfa,
|
||||
0x65, 0x4e, 0xe1, 0x06, 0xfc, 0xf9, 0x3c, 0xe4, 0x2d, 0xd3, 0x38, 0xb0, 0xcc, 0x38, 0x46, 0xbc,
|
||||
0xc9, 0x18, 0x80, 0x41, 0x30, 0xc1, 0x35, 0xc8, 0xc5, 0x5d, 0x88, 0xdf, 0x7f, 0x97, 0x6f, 0x0f,
|
||||
0xbe, 0x02, 0x1b, 0x30, 0xc3, 0x13, 0x94, 0x6e, 0x99, 0x31, 0x28, 0xfe, 0x80, 0x51, 0x14, 0x03,
|
||||
0x30, 0x36, 0x0d, 0x0f, 0xb9, 0x5e, 0x0f, 0xc5, 0x21, 0x79, 0x8b, 0x4f, 0x83, 0x41, 0x98, 0x2b,
|
||||
0xf7, 0x90, 0xa9, 0xed, 0xc7, 0x63, 0xf8, 0x0a, 0x77, 0x25, 0xc7, 0x60, 0x8a, 0x1a, 0x4c, 0xf7,
|
||||
0x55, 0xc7, 0xdd, 0x57, 0x8d, 0x58, 0xcb, 0xf1, 0x87, 0x8c, 0xa3, 0xe0, 0x83, 0x98, 0x47, 0x06,
|
||||
0xe6, 0x71, 0x68, 0xbe, 0xca, 0x3d, 0x12, 0x80, 0xb1, 0xad, 0xe7, 0x7a, 0xe4, 0x4a, 0xeb, 0x38,
|
||||
0x6c, 0x7f, 0xc4, 0xb7, 0x1e, 0xc5, 0x6e, 0x05, 0x19, 0xaf, 0x41, 0xce, 0xd5, 0xef, 0xc6, 0xa2,
|
||||
0xf9, 0x63, 0xbe, 0xd2, 0x04, 0x80, 0xc1, 0x2f, 0xc1, 0xa9, 0x89, 0x65, 0x22, 0x06, 0xd9, 0x9f,
|
||||
0x30, 0xb2, 0x85, 0x09, 0xa5, 0x82, 0xa5, 0x84, 0xe3, 0x52, 0xfe, 0x29, 0x4f, 0x09, 0x68, 0x84,
|
||||
0xab, 0x85, 0xcf, 0x0a, 0xae, 0xda, 0x3d, 0x9e, 0xd7, 0xfe, 0x8c, 0x7b, 0x8d, 0x62, 0x43, 0x5e,
|
||||
0xdb, 0x81, 0x05, 0xc6, 0x78, 0xbc, 0x75, 0xfd, 0x1a, 0x4f, 0xac, 0x14, 0xbd, 0x1b, 0x5e, 0xdd,
|
||||
0x4f, 0xc3, 0xa2, 0xef, 0x4e, 0xde, 0x94, 0xba, 0x4a, 0x5f, 0xb5, 0x63, 0x30, 0x7f, 0x9d, 0x31,
|
||||
0xf3, 0x8c, 0xef, 0x77, 0xb5, 0xee, 0x96, 0x6a, 0x63, 0xf2, 0x17, 0xa1, 0xc4, 0xc9, 0x07, 0xa6,
|
||||
0x83, 0x34, 0xab, 0x67, 0xea, 0x77, 0x51, 0x27, 0x06, 0xf5, 0x9f, 0x8f, 0x2c, 0xd5, 0x6e, 0x00,
|
||||
0x8e, 0x99, 0x1b, 0x20, 0xfa, 0xbd, 0x8a, 0xa2, 0xf7, 0x6d, 0xcb, 0xf1, 0x22, 0x18, 0xbf, 0xc1,
|
||||
0x57, 0xca, 0xc7, 0x35, 0x08, 0xac, 0x52, 0x87, 0x22, 0x79, 0x8c, 0x1b, 0x92, 0x7f, 0xc1, 0x88,
|
||||
0xa6, 0x87, 0x28, 0x96, 0x38, 0x34, 0xab, 0x6f, 0xab, 0x4e, 0x9c, 0xfc, 0xf7, 0x97, 0x3c, 0x71,
|
||||
0x30, 0x08, 0x4b, 0x1c, 0xde, 0x81, 0x8d, 0x70, 0xb5, 0x8f, 0xc1, 0xf0, 0x4d, 0x9e, 0x38, 0x38,
|
||||
0x86, 0x51, 0xf0, 0x86, 0x21, 0x06, 0xc5, 0x5f, 0x71, 0x0a, 0x8e, 0xc1, 0x14, 0x9f, 0x1c, 0x16,
|
||||
0x5a, 0x07, 0xf5, 0x74, 0xd7, 0x73, 0x68, 0x2b, 0x7c, 0x34, 0xd5, 0xb7, 0xde, 0x0d, 0x37, 0x61,
|
||||
0x72, 0x00, 0x5a, 0xb9, 0x01, 0x33, 0x23, 0x2d, 0x86, 0x14, 0xf5, 0xfb, 0x95, 0xd2, 0xcf, 0xbd,
|
||||
0xc7, 0x92, 0x51, 0xb8, 0xc3, 0xa8, 0x6c, 0xe2, 0x75, 0x0f, 0xf7, 0x01, 0xd1, 0x64, 0xaf, 0xbe,
|
||||
0xe7, 0x2f, 0x7d, 0xa8, 0x0d, 0xa8, 0x5c, 0x87, 0xe9, 0x50, 0x0f, 0x10, 0x4d, 0xf5, 0xf3, 0x8c,
|
||||
0xaa, 0x10, 0x6c, 0x01, 0x2a, 0x97, 0x20, 0x85, 0xeb, 0x79, 0x34, 0xfc, 0x17, 0x18, 0x9c, 0xa8,
|
||||
0x57, 0x3e, 0x0e, 0x59, 0x5e, 0xc7, 0xa3, 0xa1, 0xbf, 0xc8, 0xa0, 0x3e, 0x04, 0xc3, 0x79, 0x0d,
|
||||
0x8f, 0x86, 0xff, 0x12, 0x87, 0x73, 0x08, 0x86, 0xc7, 0x77, 0xe1, 0xdf, 0xfe, 0x4a, 0x8a, 0xe5,
|
||||
0x61, 0xee, 0xbb, 0x6b, 0x30, 0xc5, 0x8a, 0x77, 0x34, 0xfa, 0xb3, 0xec, 0xe5, 0x1c, 0x51, 0x79,
|
||||
0x16, 0xd2, 0x31, 0x1d, 0xfe, 0xab, 0x0c, 0x4a, 0xf5, 0x2b, 0x35, 0xc8, 0x07, 0x0a, 0x76, 0x34,
|
||||
0xfc, 0xd7, 0x18, 0x3c, 0x88, 0xc2, 0xa6, 0xb3, 0x82, 0x1d, 0x4d, 0xf0, 0xeb, 0xdc, 0x74, 0x86,
|
||||
0xc0, 0x6e, 0xe3, 0xb5, 0x3a, 0x1a, 0xfd, 0x39, 0xee, 0x75, 0x0e, 0xa9, 0x3c, 0x0f, 0x39, 0x3f,
|
||||
0xff, 0x46, 0xe3, 0x7f, 0x83, 0xe1, 0x87, 0x18, 0xec, 0x81, 0x40, 0xfe, 0x8f, 0xa6, 0xf8, 0x4d,
|
||||
0xee, 0x81, 0x00, 0x0a, 0x6f, 0xa3, 0xd1, 0x9a, 0x1e, 0xcd, 0xf4, 0x5b, 0x7c, 0x1b, 0x8d, 0x94,
|
||||
0x74, 0xbc, 0x9a, 0x24, 0x0d, 0x46, 0x53, 0xfc, 0x36, 0x5f, 0x4d, 0xa2, 0x8f, 0xcd, 0x18, 0x2d,
|
||||
0x92, 0xd1, 0x1c, 0x9f, 0xe7, 0x66, 0x8c, 0xd4, 0xc8, 0x4a, 0x0b, 0xa4, 0xf1, 0x02, 0x19, 0xcd,
|
||||
0xf7, 0x05, 0xc6, 0x37, 0x3b, 0x56, 0x1f, 0x2b, 0x2f, 0xc0, 0xc2, 0xe4, 0xe2, 0x18, 0xcd, 0xfa,
|
||||
0xc5, 0xf7, 0x46, 0x8e, 0x33, 0xc1, 0xda, 0x58, 0xd9, 0x19, 0x66, 0xd9, 0x60, 0x61, 0x8c, 0xa6,
|
||||
0x7d, 0xed, 0xbd, 0x70, 0xa2, 0x0d, 0xd6, 0xc5, 0x4a, 0x15, 0x60, 0x58, 0x93, 0xa2, 0xb9, 0x5e,
|
||||
0x67, 0x5c, 0x01, 0x10, 0xde, 0x1a, 0xac, 0x24, 0x45, 0xe3, 0xbf, 0xc4, 0xb7, 0x06, 0x43, 0xe0,
|
||||
0xad, 0xc1, 0xab, 0x51, 0x34, 0xfa, 0x0d, 0xbe, 0x35, 0x38, 0xa4, 0x72, 0x0d, 0xb2, 0xe6, 0xc0,
|
||||
0x30, 0x70, 0x6c, 0x49, 0x47, 0xff, 0x24, 0xab, 0xf4, 0x1f, 0x0f, 0x18, 0x98, 0x03, 0x2a, 0x97,
|
||||
0x20, 0x8d, 0xfa, 0x7b, 0xa8, 0x13, 0x85, 0xfc, 0xcf, 0x07, 0x3c, 0x9f, 0x60, 0xed, 0xca, 0xf3,
|
||||
0x00, 0xf4, 0x30, 0x4d, 0x3e, 0x14, 0x45, 0x60, 0xff, 0xeb, 0x01, 0xfb, 0xb1, 0xc4, 0x10, 0x32,
|
||||
0x24, 0xa0, 0x3f, 0xbd, 0x38, 0x9a, 0xe0, 0xdd, 0x30, 0x01, 0x39, 0x80, 0x5f, 0x85, 0xa9, 0x9b,
|
||||
0xae, 0x65, 0x7a, 0x6a, 0x2f, 0x0a, 0xfd, 0x7d, 0x86, 0xe6, 0xfa, 0xd8, 0x61, 0x7d, 0xcb, 0x41,
|
||||
0x9e, 0xda, 0x73, 0xa3, 0xb0, 0xff, 0xcd, 0xb0, 0x3e, 0x00, 0x83, 0x35, 0xd5, 0xf5, 0xe2, 0xcc,
|
||||
0xfb, 0x07, 0x1c, 0xcc, 0x01, 0xd8, 0x68, 0xfc, 0xf7, 0x2d, 0x74, 0x10, 0x85, 0xfd, 0x21, 0x37,
|
||||
0x9a, 0xe9, 0x57, 0x3e, 0x0e, 0x39, 0xfc, 0x27, 0xfd, 0x05, 0x54, 0x04, 0xf8, 0x7f, 0x18, 0x78,
|
||||
0x88, 0xc0, 0x6f, 0x76, 0xbd, 0x8e, 0xa7, 0x47, 0x3b, 0xfb, 0x7f, 0xd9, 0x4a, 0x73, 0xfd, 0x4a,
|
||||
0x15, 0xf2, 0xae, 0xd7, 0xe9, 0x0c, 0x58, 0x47, 0x13, 0x01, 0xff, 0xbf, 0x07, 0xfe, 0x21, 0xd7,
|
||||
0xc7, 0xac, 0xd5, 0x27, 0xdf, 0xd7, 0xc1, 0x86, 0xb5, 0x61, 0xd1, 0x9b, 0xba, 0x97, 0xcb, 0xd1,
|
||||
0x57, 0x6e, 0xf0, 0xfd, 0x14, 0x9c, 0x0c, 0xee, 0xfb, 0x9e, 0x63, 0x0d, 0x6c, 0x76, 0x07, 0x37,
|
||||
0x3b, 0x36, 0xb0, 0x78, 0xbc, 0x5b, 0xbc, 0xb2, 0x09, 0xb0, 0x8d, 0xee, 0x6c, 0x5b, 0x1b, 0x18,
|
||||
0x2c, 0x2d, 0x40, 0x86, 0xcc, 0xeb, 0x69, 0xf2, 0x1d, 0x2a, 0x29, 0xb3, 0x27, 0x5f, 0x7e, 0x91,
|
||||
0xfc, 0xe8, 0x5a, 0x60, 0xf2, 0x8b, 0x52, 0x19, 0x84, 0x2a, 0xb9, 0x68, 0xcf, 0xaf, 0xce, 0xaf,
|
||||
0x8c, 0x1b, 0x59, 0x95, 0x85, 0x6a, 0xa5, 0xf0, 0xcb, 0x6f, 0x9e, 0x16, 0x3e, 0xf7, 0xe6, 0x69,
|
||||
0xe1, 0xcb, 0x6f, 0x9e, 0x16, 0xca, 0xe7, 0x41, 0xa8, 0x62, 0xba, 0x2a, 0x61, 0xe0, 0xaf, 0xa1,
|
||||
0x4f, 0x23, 0xaa, 0xff, 0x90, 0x80, 0x42, 0xd3, 0xe8, 0xbc, 0xa0, 0x7b, 0xfb, 0x47, 0x5b, 0xf7,
|
||||
0x1c, 0x64, 0xc8, 0xfb, 0x9e, 0x26, 0x97, 0xab, 0xb0, 0xfa, 0xc4, 0x04, 0x53, 0x82, 0x44, 0x2b,
|
||||
0xe4, 0xdf, 0xa7, 0x65, 0x86, 0x3a, 0x74, 0x76, 0x9c, 0x77, 0x95, 0xdc, 0xc2, 0xc6, 0xe5, 0x5d,
|
||||
0x65, 0xbc, 0xab, 0x8b, 0x2d, 0xc8, 0x6c, 0x84, 0xdf, 0x70, 0x98, 0x5f, 0x57, 0xf9, 0x4f, 0xd5,
|
||||
0xe8, 0xd3, 0x61, 0x16, 0x2d, 0x5e, 0x61, 0x8c, 0xab, 0xb1, 0x18, 0x87, 0xc8, 0xd5, 0xb5, 0xe5,
|
||||
0xef, 0xdc, 0x5f, 0x3a, 0xf1, 0x4f, 0xf7, 0x97, 0x4e, 0xfc, 0xf3, 0xfd, 0xa5, 0x13, 0xdf, 0xbb,
|
||||
0xbf, 0x24, 0xfc, 0xf0, 0xfe, 0x92, 0xf0, 0xa3, 0xfb, 0x4b, 0xc2, 0xbd, 0xb7, 0x97, 0x84, 0xaf,
|
||||
0xbc, 0xbd, 0x24, 0x7c, 0xed, 0xed, 0x25, 0xe1, 0x5b, 0x6f, 0x2f, 0x09, 0xff, 0x1f, 0x00, 0x00,
|
||||
0xff, 0xff, 0x87, 0x2f, 0x10, 0x76, 0xfc, 0x32, 0x00, 0x00,
|
||||
}
|
||||
r := bytes.NewReader(gzipped)
|
||||
gzipr, err := compress_gzip.NewReader(r)
|
||||
gzipr, err := gzip.NewReader(r)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
ungzipped, err := io_ioutil.ReadAll(gzipr)
|
||||
ungzipped, err := ioutil.ReadAll(gzipr)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(ungzipped, d); err != nil {
|
||||
if err := proto.Unmarshal(ungzipped, d); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return d
|
||||
@@ -427,10 +434,7 @@ func (this *NewNoGroup) VerboseEqual(that interface{}) error {
|
||||
}
|
||||
func (this *NewNoGroup) Equal(that interface{}) bool {
|
||||
if that == nil {
|
||||
if this == nil {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
return this == nil
|
||||
}
|
||||
|
||||
that1, ok := that.(*NewNoGroup)
|
||||
@@ -443,10 +447,7 @@ func (this *NewNoGroup) Equal(that interface{}) bool {
|
||||
}
|
||||
}
|
||||
if that1 == nil {
|
||||
if this == nil {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
return this == nil
|
||||
} else if this == nil {
|
||||
return false
|
||||
}
|
||||
@@ -516,10 +517,7 @@ func (this *A) VerboseEqual(that interface{}) error {
|
||||
}
|
||||
func (this *A) Equal(that interface{}) bool {
|
||||
if that == nil {
|
||||
if this == nil {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
return this == nil
|
||||
}
|
||||
|
||||
that1, ok := that.(*A)
|
||||
@@ -532,10 +530,7 @@ func (this *A) Equal(that interface{}) bool {
|
||||
}
|
||||
}
|
||||
if that1 == nil {
|
||||
if this == nil {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
return this == nil
|
||||
} else if this == nil {
|
||||
return false
|
||||
}
|
||||
@@ -608,10 +603,7 @@ func (this *OldWithGroup) VerboseEqual(that interface{}) error {
|
||||
}
|
||||
func (this *OldWithGroup) Equal(that interface{}) bool {
|
||||
if that == nil {
|
||||
if this == nil {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
return this == nil
|
||||
}
|
||||
|
||||
that1, ok := that.(*OldWithGroup)
|
||||
@@ -624,10 +616,7 @@ func (this *OldWithGroup) Equal(that interface{}) bool {
|
||||
}
|
||||
}
|
||||
if that1 == nil {
|
||||
if this == nil {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
return this == nil
|
||||
} else if this == nil {
|
||||
return false
|
||||
}
|
||||
@@ -717,10 +706,7 @@ func (this *OldWithGroup_Group1) VerboseEqual(that interface{}) error {
|
||||
}
|
||||
func (this *OldWithGroup_Group1) Equal(that interface{}) bool {
|
||||
if that == nil {
|
||||
if this == nil {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
return this == nil
|
||||
}
|
||||
|
||||
that1, ok := that.(*OldWithGroup_Group1)
|
||||
@@ -733,10 +719,7 @@ func (this *OldWithGroup_Group1) Equal(that interface{}) bool {
|
||||
}
|
||||
}
|
||||
if that1 == nil {
|
||||
if this == nil {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
return this == nil
|
||||
} else if this == nil {
|
||||
return false
|
||||
}
|
||||
@@ -820,10 +803,7 @@ func (this *OldWithGroup_Group2) VerboseEqual(that interface{}) error {
|
||||
}
|
||||
func (this *OldWithGroup_Group2) Equal(that interface{}) bool {
|
||||
if that == nil {
|
||||
if this == nil {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
return this == nil
|
||||
}
|
||||
|
||||
that1, ok := that.(*OldWithGroup_Group2)
|
||||
@@ -836,10 +816,7 @@ func (this *OldWithGroup_Group2) Equal(that interface{}) bool {
|
||||
}
|
||||
}
|
||||
if that1 == nil {
|
||||
if this == nil {
|
||||
return true
|
||||
}
|
||||
return false
|
||||
return this == nil
|
||||
} else if this == nil {
|
||||
return false
|
||||
}
|
||||
@@ -997,22 +974,8 @@ func (m *NewNoGroup) MarshalTo(dAtA []byte) (int, error) {
|
||||
dAtA[i] = 0x19
|
||||
i++
|
||||
f1 := math.Float64bits(float64(num))
|
||||
dAtA[i] = uint8(f1)
|
||||
i++
|
||||
dAtA[i] = uint8(f1 >> 8)
|
||||
i++
|
||||
dAtA[i] = uint8(f1 >> 16)
|
||||
i++
|
||||
dAtA[i] = uint8(f1 >> 24)
|
||||
i++
|
||||
dAtA[i] = uint8(f1 >> 32)
|
||||
i++
|
||||
dAtA[i] = uint8(f1 >> 40)
|
||||
i++
|
||||
dAtA[i] = uint8(f1 >> 48)
|
||||
i++
|
||||
dAtA[i] = uint8(f1 >> 56)
|
||||
i++
|
||||
binary.LittleEndian.PutUint64(dAtA[i:], uint64(f1))
|
||||
i += 8
|
||||
}
|
||||
}
|
||||
if m.A != nil {
|
||||
@@ -1057,24 +1020,6 @@ func (m *A) MarshalTo(dAtA []byte) (int, error) {
|
||||
return i, nil
|
||||
}
|
||||
|
||||
func encodeFixed64Unrecognizedgroup(dAtA []byte, offset int, v uint64) int {
|
||||
dAtA[offset] = uint8(v)
|
||||
dAtA[offset+1] = uint8(v >> 8)
|
||||
dAtA[offset+2] = uint8(v >> 16)
|
||||
dAtA[offset+3] = uint8(v >> 24)
|
||||
dAtA[offset+4] = uint8(v >> 32)
|
||||
dAtA[offset+5] = uint8(v >> 40)
|
||||
dAtA[offset+6] = uint8(v >> 48)
|
||||
dAtA[offset+7] = uint8(v >> 56)
|
||||
return offset + 8
|
||||
}
|
||||
func encodeFixed32Unrecognizedgroup(dAtA []byte, offset int, v uint32) int {
|
||||
dAtA[offset] = uint8(v)
|
||||
dAtA[offset+1] = uint8(v >> 8)
|
||||
dAtA[offset+2] = uint8(v >> 16)
|
||||
dAtA[offset+3] = uint8(v >> 24)
|
||||
return offset + 4
|
||||
}
|
||||
func encodeVarintUnrecognizedgroup(dAtA []byte, offset int, v uint64) int {
|
||||
for v >= 1<<7 {
|
||||
dAtA[offset] = uint8(v&0x7f | 0x80)
|
||||
@@ -1457,15 +1402,8 @@ func (m *NewNoGroup) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 8) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
v = uint64(binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
iNdEx += 8
|
||||
v = uint64(dAtA[iNdEx-8])
|
||||
v |= uint64(dAtA[iNdEx-7]) << 8
|
||||
v |= uint64(dAtA[iNdEx-6]) << 16
|
||||
v |= uint64(dAtA[iNdEx-5]) << 24
|
||||
v |= uint64(dAtA[iNdEx-4]) << 32
|
||||
v |= uint64(dAtA[iNdEx-3]) << 40
|
||||
v |= uint64(dAtA[iNdEx-2]) << 48
|
||||
v |= uint64(dAtA[iNdEx-1]) << 56
|
||||
v2 := float64(math.Float64frombits(v))
|
||||
m.Field3 = append(m.Field3, v2)
|
||||
} else if wireType == 2 {
|
||||
@@ -1496,15 +1434,8 @@ func (m *NewNoGroup) Unmarshal(dAtA []byte) error {
|
||||
if (iNdEx + 8) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
v = uint64(binary.LittleEndian.Uint64(dAtA[iNdEx:]))
|
||||
iNdEx += 8
|
||||
v = uint64(dAtA[iNdEx-8])
|
||||
v |= uint64(dAtA[iNdEx-7]) << 8
|
||||
v |= uint64(dAtA[iNdEx-6]) << 16
|
||||
v |= uint64(dAtA[iNdEx-5]) << 24
|
||||
v |= uint64(dAtA[iNdEx-4]) << 32
|
||||
v |= uint64(dAtA[iNdEx-3]) << 40
|
||||
v |= uint64(dAtA[iNdEx-2]) << 48
|
||||
v |= uint64(dAtA[iNdEx-1]) << 56
|
||||
v2 := float64(math.Float64frombits(v))
|
||||
m.Field3 = append(m.Field3, v2)
|
||||
}
|
||||
|
||||
77
vendor/github.com/gogo/protobuf/test/unrecognizedgroup/unrecognizedgroup.proto
generated
vendored
77
vendor/github.com/gogo/protobuf/test/unrecognizedgroup/unrecognizedgroup.proto
generated
vendored
@@ -1,77 +0,0 @@
|
||||
// Protocol Buffers for Go with Gadgets
|
||||
//
|
||||
// Copyright (c) 2013, The GoGo Authors. All rights reserved.
|
||||
// http://github.com/gogo/protobuf
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without
|
||||
// modification, are permitted provided that the following conditions are
|
||||
// met:
|
||||
//
|
||||
// * Redistributions of source code must retain the above copyright
|
||||
// notice, this list of conditions and the following disclaimer.
|
||||
// * Redistributions in binary form must reproduce the above
|
||||
// copyright notice, this list of conditions and the following disclaimer
|
||||
// in the documentation and/or other materials provided with the
|
||||
// distribution.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
syntax = "proto2";
|
||||
|
||||
package unrecognizedgroup;
|
||||
|
||||
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
||||
|
||||
option (gogoproto.goproto_stringer_all) = false;
|
||||
option (gogoproto.goproto_enum_prefix_all) = false;
|
||||
option (gogoproto.goproto_getters_all) = false;
|
||||
|
||||
option (gogoproto.equal_all) = true;
|
||||
option (gogoproto.verbose_equal_all) = true;
|
||||
option (gogoproto.stringer_all) = true;
|
||||
option (gogoproto.gostring_all) = true;
|
||||
option (gogoproto.description_all) = true;
|
||||
|
||||
option (gogoproto.testgen_all) = true;
|
||||
option (gogoproto.populate_all) = true;
|
||||
|
||||
message NewNoGroup {
|
||||
option (gogoproto.unmarshaler) = true;
|
||||
option (gogoproto.marshaler) = true;
|
||||
option (gogoproto.sizer) = true;
|
||||
optional int64 Field1 = 1;
|
||||
repeated double Field3 = 3;
|
||||
optional A A = 5;
|
||||
}
|
||||
|
||||
message A {
|
||||
option (gogoproto.unmarshaler) = true;
|
||||
option (gogoproto.marshaler) = true;
|
||||
option (gogoproto.sizer) = true;
|
||||
optional int64 AField = 1;
|
||||
}
|
||||
|
||||
message OldWithGroup {
|
||||
optional int64 Field1 = 1;
|
||||
optional group Group1 = 2 {
|
||||
optional int64 Field1 = 1;
|
||||
optional int32 Field2 = 2;
|
||||
repeated double Field3 = 3;
|
||||
}
|
||||
repeated double Field3 = 3;
|
||||
optional group Group2 = 4 {
|
||||
optional int64 Field1 = 1;
|
||||
repeated double Field2 = 2;
|
||||
}
|
||||
}
|
||||
|
||||
767
vendor/github.com/gogo/protobuf/test/unrecognizedgroup/unrecognizedgrouppb_test.go
generated
vendored
767
vendor/github.com/gogo/protobuf/test/unrecognizedgroup/unrecognizedgrouppb_test.go
generated
vendored
@@ -1,767 +0,0 @@
|
||||
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
||||
// source: unrecognizedgroup.proto
|
||||
|
||||
/*
|
||||
Package unrecognizedgroup is a generated protocol buffer package.
|
||||
|
||||
It is generated from these files:
|
||||
unrecognizedgroup.proto
|
||||
|
||||
It has these top-level messages:
|
||||
NewNoGroup
|
||||
A
|
||||
OldWithGroup
|
||||
*/
|
||||
package unrecognizedgroup
|
||||
|
||||
import testing "testing"
|
||||
import math_rand "math/rand"
|
||||
import time "time"
|
||||
import github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto"
|
||||
import github_com_gogo_protobuf_jsonpb "github.com/gogo/protobuf/jsonpb"
|
||||
import fmt "fmt"
|
||||
import go_parser "go/parser"
|
||||
import proto "github.com/gogo/protobuf/proto"
|
||||
import math "math"
|
||||
import _ "github.com/gogo/protobuf/gogoproto"
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
func TestNewNoGroupProto(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedNewNoGroup(popr, false)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &NewNoGroup{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
littlefuzz := make([]byte, len(dAtA))
|
||||
copy(littlefuzz, dAtA)
|
||||
for i := range dAtA {
|
||||
dAtA[i] = byte(popr.Intn(256))
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
if len(littlefuzz) > 0 {
|
||||
fuzzamount := 100
|
||||
for i := 0; i < fuzzamount; i++ {
|
||||
littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256))
|
||||
littlefuzz = append(littlefuzz, byte(popr.Intn(256)))
|
||||
}
|
||||
// shouldn't panic
|
||||
_ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg)
|
||||
}
|
||||
}
|
||||
|
||||
func TestNewNoGroupMarshalTo(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedNewNoGroup(popr, false)
|
||||
size := p.Size()
|
||||
dAtA := make([]byte, size)
|
||||
for i := range dAtA {
|
||||
dAtA[i] = byte(popr.Intn(256))
|
||||
}
|
||||
_, err := p.MarshalTo(dAtA)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &NewNoGroup{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
for i := range dAtA {
|
||||
dAtA[i] = byte(popr.Intn(256))
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestAProto(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedA(popr, false)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &A{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
littlefuzz := make([]byte, len(dAtA))
|
||||
copy(littlefuzz, dAtA)
|
||||
for i := range dAtA {
|
||||
dAtA[i] = byte(popr.Intn(256))
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
if len(littlefuzz) > 0 {
|
||||
fuzzamount := 100
|
||||
for i := 0; i < fuzzamount; i++ {
|
||||
littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256))
|
||||
littlefuzz = append(littlefuzz, byte(popr.Intn(256)))
|
||||
}
|
||||
// shouldn't panic
|
||||
_ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg)
|
||||
}
|
||||
}
|
||||
|
||||
func TestAMarshalTo(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedA(popr, false)
|
||||
size := p.Size()
|
||||
dAtA := make([]byte, size)
|
||||
for i := range dAtA {
|
||||
dAtA[i] = byte(popr.Intn(256))
|
||||
}
|
||||
_, err := p.MarshalTo(dAtA)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &A{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
for i := range dAtA {
|
||||
dAtA[i] = byte(popr.Intn(256))
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOldWithGroupProto(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup(popr, false)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &OldWithGroup{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
littlefuzz := make([]byte, len(dAtA))
|
||||
copy(littlefuzz, dAtA)
|
||||
for i := range dAtA {
|
||||
dAtA[i] = byte(popr.Intn(256))
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
if len(littlefuzz) > 0 {
|
||||
fuzzamount := 100
|
||||
for i := 0; i < fuzzamount; i++ {
|
||||
littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256))
|
||||
littlefuzz = append(littlefuzz, byte(popr.Intn(256)))
|
||||
}
|
||||
// shouldn't panic
|
||||
_ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOldWithGroup_Group1Proto(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup_Group1(popr, false)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &OldWithGroup_Group1{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
littlefuzz := make([]byte, len(dAtA))
|
||||
copy(littlefuzz, dAtA)
|
||||
for i := range dAtA {
|
||||
dAtA[i] = byte(popr.Intn(256))
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
if len(littlefuzz) > 0 {
|
||||
fuzzamount := 100
|
||||
for i := 0; i < fuzzamount; i++ {
|
||||
littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256))
|
||||
littlefuzz = append(littlefuzz, byte(popr.Intn(256)))
|
||||
}
|
||||
// shouldn't panic
|
||||
_ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOldWithGroup_Group2Proto(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup_Group2(popr, false)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &OldWithGroup_Group2{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
littlefuzz := make([]byte, len(dAtA))
|
||||
copy(littlefuzz, dAtA)
|
||||
for i := range dAtA {
|
||||
dAtA[i] = byte(popr.Intn(256))
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
if len(littlefuzz) > 0 {
|
||||
fuzzamount := 100
|
||||
for i := 0; i < fuzzamount; i++ {
|
||||
littlefuzz[popr.Intn(len(littlefuzz))] = byte(popr.Intn(256))
|
||||
littlefuzz = append(littlefuzz, byte(popr.Intn(256)))
|
||||
}
|
||||
// shouldn't panic
|
||||
_ = github_com_gogo_protobuf_proto.Unmarshal(littlefuzz, msg)
|
||||
}
|
||||
}
|
||||
|
||||
func TestNewNoGroupJSON(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedNewNoGroup(popr, true)
|
||||
marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{}
|
||||
jsondata, err := marshaler.MarshalToString(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &NewNoGroup{}
|
||||
err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
func TestAJSON(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedA(popr, true)
|
||||
marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{}
|
||||
jsondata, err := marshaler.MarshalToString(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &A{}
|
||||
err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroupJSON(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup(popr, true)
|
||||
marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{}
|
||||
jsondata, err := marshaler.MarshalToString(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &OldWithGroup{}
|
||||
err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroup_Group1JSON(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup_Group1(popr, true)
|
||||
marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{}
|
||||
jsondata, err := marshaler.MarshalToString(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &OldWithGroup_Group1{}
|
||||
err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroup_Group2JSON(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup_Group2(popr, true)
|
||||
marshaler := github_com_gogo_protobuf_jsonpb.Marshaler{}
|
||||
jsondata, err := marshaler.MarshalToString(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
msg := &OldWithGroup_Group2{}
|
||||
err = github_com_gogo_protobuf_jsonpb.UnmarshalString(jsondata, msg)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Json Equal %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
func TestNewNoGroupProtoText(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedNewNoGroup(popr, true)
|
||||
dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p)
|
||||
msg := &NewNoGroup{}
|
||||
if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestNewNoGroupProtoCompactText(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedNewNoGroup(popr, true)
|
||||
dAtA := github_com_gogo_protobuf_proto.CompactTextString(p)
|
||||
msg := &NewNoGroup{}
|
||||
if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestAProtoText(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedA(popr, true)
|
||||
dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p)
|
||||
msg := &A{}
|
||||
if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestAProtoCompactText(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedA(popr, true)
|
||||
dAtA := github_com_gogo_protobuf_proto.CompactTextString(p)
|
||||
msg := &A{}
|
||||
if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOldWithGroupProtoText(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup(popr, true)
|
||||
dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p)
|
||||
msg := &OldWithGroup{}
|
||||
if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOldWithGroupProtoCompactText(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup(popr, true)
|
||||
dAtA := github_com_gogo_protobuf_proto.CompactTextString(p)
|
||||
msg := &OldWithGroup{}
|
||||
if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOldWithGroup_Group1ProtoText(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup_Group1(popr, true)
|
||||
dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p)
|
||||
msg := &OldWithGroup_Group1{}
|
||||
if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOldWithGroup_Group1ProtoCompactText(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup_Group1(popr, true)
|
||||
dAtA := github_com_gogo_protobuf_proto.CompactTextString(p)
|
||||
msg := &OldWithGroup_Group1{}
|
||||
if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOldWithGroup_Group2ProtoText(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup_Group2(popr, true)
|
||||
dAtA := github_com_gogo_protobuf_proto.MarshalTextString(p)
|
||||
msg := &OldWithGroup_Group2{}
|
||||
if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOldWithGroup_Group2ProtoCompactText(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedOldWithGroup_Group2(popr, true)
|
||||
dAtA := github_com_gogo_protobuf_proto.CompactTextString(p)
|
||||
msg := &OldWithGroup_Group2{}
|
||||
if err := github_com_gogo_protobuf_proto.UnmarshalText(dAtA, msg); err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("seed = %d, %#v !VerboseProto %#v, since %v", seed, msg, p, err)
|
||||
}
|
||||
if !p.Equal(msg) {
|
||||
t.Fatalf("seed = %d, %#v !Proto %#v", seed, msg, p)
|
||||
}
|
||||
}
|
||||
|
||||
func TestUnrecognizedgroupDescription(t *testing.T) {
|
||||
UnrecognizedgroupDescription()
|
||||
}
|
||||
func TestNewNoGroupVerboseEqual(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedNewNoGroup(popr, false)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
msg := &NewNoGroup{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err)
|
||||
}
|
||||
}
|
||||
func TestAVerboseEqual(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedA(popr, false)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
msg := &A{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroupVerboseEqual(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedOldWithGroup(popr, false)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
msg := &OldWithGroup{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroup_Group1VerboseEqual(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedOldWithGroup_Group1(popr, false)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
msg := &OldWithGroup_Group1{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroup_Group2VerboseEqual(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedOldWithGroup_Group2(popr, false)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
msg := &OldWithGroup_Group2{}
|
||||
if err := github_com_gogo_protobuf_proto.Unmarshal(dAtA, msg); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
if err := p.VerboseEqual(msg); err != nil {
|
||||
t.Fatalf("%#v !VerboseEqual %#v, since %v", msg, p, err)
|
||||
}
|
||||
}
|
||||
func TestNewNoGroupGoString(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedNewNoGroup(popr, false)
|
||||
s1 := p.GoString()
|
||||
s2 := fmt.Sprintf("%#v", p)
|
||||
if s1 != s2 {
|
||||
t.Fatalf("GoString want %v got %v", s1, s2)
|
||||
}
|
||||
_, err := go_parser.ParseExpr(s1)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
func TestAGoString(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedA(popr, false)
|
||||
s1 := p.GoString()
|
||||
s2 := fmt.Sprintf("%#v", p)
|
||||
if s1 != s2 {
|
||||
t.Fatalf("GoString want %v got %v", s1, s2)
|
||||
}
|
||||
_, err := go_parser.ParseExpr(s1)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroupGoString(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedOldWithGroup(popr, false)
|
||||
s1 := p.GoString()
|
||||
s2 := fmt.Sprintf("%#v", p)
|
||||
if s1 != s2 {
|
||||
t.Fatalf("GoString want %v got %v", s1, s2)
|
||||
}
|
||||
_, err := go_parser.ParseExpr(s1)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroup_Group1GoString(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedOldWithGroup_Group1(popr, false)
|
||||
s1 := p.GoString()
|
||||
s2 := fmt.Sprintf("%#v", p)
|
||||
if s1 != s2 {
|
||||
t.Fatalf("GoString want %v got %v", s1, s2)
|
||||
}
|
||||
_, err := go_parser.ParseExpr(s1)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroup_Group2GoString(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedOldWithGroup_Group2(popr, false)
|
||||
s1 := p.GoString()
|
||||
s2 := fmt.Sprintf("%#v", p)
|
||||
if s1 != s2 {
|
||||
t.Fatalf("GoString want %v got %v", s1, s2)
|
||||
}
|
||||
_, err := go_parser.ParseExpr(s1)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
func TestNewNoGroupSize(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedNewNoGroup(popr, true)
|
||||
size2 := github_com_gogo_protobuf_proto.Size(p)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
size := p.Size()
|
||||
if len(dAtA) != size {
|
||||
t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA))
|
||||
}
|
||||
if size2 != size {
|
||||
t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2)
|
||||
}
|
||||
size3 := github_com_gogo_protobuf_proto.Size(p)
|
||||
if size3 != size {
|
||||
t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3)
|
||||
}
|
||||
}
|
||||
|
||||
func TestASize(t *testing.T) {
|
||||
seed := time.Now().UnixNano()
|
||||
popr := math_rand.New(math_rand.NewSource(seed))
|
||||
p := NewPopulatedA(popr, true)
|
||||
size2 := github_com_gogo_protobuf_proto.Size(p)
|
||||
dAtA, err := github_com_gogo_protobuf_proto.Marshal(p)
|
||||
if err != nil {
|
||||
t.Fatalf("seed = %d, err = %v", seed, err)
|
||||
}
|
||||
size := p.Size()
|
||||
if len(dAtA) != size {
|
||||
t.Errorf("seed = %d, size %v != marshalled size %v", seed, size, len(dAtA))
|
||||
}
|
||||
if size2 != size {
|
||||
t.Errorf("seed = %d, size %v != before marshal proto.Size %v", seed, size, size2)
|
||||
}
|
||||
size3 := github_com_gogo_protobuf_proto.Size(p)
|
||||
if size3 != size {
|
||||
t.Errorf("seed = %d, size %v != after marshal proto.Size %v", seed, size, size3)
|
||||
}
|
||||
}
|
||||
|
||||
func TestNewNoGroupStringer(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedNewNoGroup(popr, false)
|
||||
s1 := p.String()
|
||||
s2 := fmt.Sprintf("%v", p)
|
||||
if s1 != s2 {
|
||||
t.Fatalf("String want %v got %v", s1, s2)
|
||||
}
|
||||
}
|
||||
func TestAStringer(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedA(popr, false)
|
||||
s1 := p.String()
|
||||
s2 := fmt.Sprintf("%v", p)
|
||||
if s1 != s2 {
|
||||
t.Fatalf("String want %v got %v", s1, s2)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroupStringer(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedOldWithGroup(popr, false)
|
||||
s1 := p.String()
|
||||
s2 := fmt.Sprintf("%v", p)
|
||||
if s1 != s2 {
|
||||
t.Fatalf("String want %v got %v", s1, s2)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroup_Group1Stringer(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedOldWithGroup_Group1(popr, false)
|
||||
s1 := p.String()
|
||||
s2 := fmt.Sprintf("%v", p)
|
||||
if s1 != s2 {
|
||||
t.Fatalf("String want %v got %v", s1, s2)
|
||||
}
|
||||
}
|
||||
func TestOldWithGroup_Group2Stringer(t *testing.T) {
|
||||
popr := math_rand.New(math_rand.NewSource(time.Now().UnixNano()))
|
||||
p := NewPopulatedOldWithGroup_Group2(popr, false)
|
||||
s1 := p.String()
|
||||
s2 := fmt.Sprintf("%v", p)
|
||||
if s1 != s2 {
|
||||
t.Fatalf("String want %v got %v", s1, s2)
|
||||
}
|
||||
}
|
||||
|
||||
//These tests are generated by github.com/gogo/protobuf/plugin/testgen
|
||||
Reference in New Issue
Block a user