mirror of https://github.com/restic/restic.git
1244 lines
39 KiB
Go
1244 lines
39 KiB
Go
// Code generated by protoc-gen-go.
|
|
// source: test.proto
|
|
// DO NOT EDIT!
|
|
|
|
/*
|
|
Package tests is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
test.proto
|
|
|
|
It has these top-level messages:
|
|
TestSuite
|
|
Test
|
|
GetTest
|
|
CreateTest
|
|
SetTest
|
|
UpdateTest
|
|
UpdatePathsTest
|
|
DeleteTest
|
|
SetOption
|
|
QueryTest
|
|
Clause
|
|
Select
|
|
Where
|
|
OrderBy
|
|
Cursor
|
|
DocSnapshot
|
|
FieldPath
|
|
*/
|
|
package tests
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
import google_firestore_v1beta14 "google.golang.org/genproto/googleapis/firestore/v1beta1"
|
|
import google_firestore_v1beta1 "google.golang.org/genproto/googleapis/firestore/v1beta1"
|
|
import google_firestore_v1beta12 "google.golang.org/genproto/googleapis/firestore/v1beta1"
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
// A collection of tests.
|
|
type TestSuite struct {
|
|
Tests []*Test `protobuf:"bytes,1,rep,name=tests" json:"tests,omitempty"`
|
|
}
|
|
|
|
func (m *TestSuite) Reset() { *m = TestSuite{} }
|
|
func (m *TestSuite) String() string { return proto.CompactTextString(m) }
|
|
func (*TestSuite) ProtoMessage() {}
|
|
func (*TestSuite) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
func (m *TestSuite) GetTests() []*Test {
|
|
if m != nil {
|
|
return m.Tests
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// A Test describes a single client method call and its expected result.
|
|
type Test struct {
|
|
Description string `protobuf:"bytes,1,opt,name=description" json:"description,omitempty"`
|
|
// Types that are valid to be assigned to Test:
|
|
// *Test_Get
|
|
// *Test_Create
|
|
// *Test_Set
|
|
// *Test_Update
|
|
// *Test_UpdatePaths
|
|
// *Test_Delete
|
|
// *Test_Query
|
|
Test isTest_Test `protobuf_oneof:"test"`
|
|
}
|
|
|
|
func (m *Test) Reset() { *m = Test{} }
|
|
func (m *Test) String() string { return proto.CompactTextString(m) }
|
|
func (*Test) ProtoMessage() {}
|
|
func (*Test) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
type isTest_Test interface {
|
|
isTest_Test()
|
|
}
|
|
|
|
type Test_Get struct {
|
|
Get *GetTest `protobuf:"bytes,2,opt,name=get,oneof"`
|
|
}
|
|
type Test_Create struct {
|
|
Create *CreateTest `protobuf:"bytes,3,opt,name=create,oneof"`
|
|
}
|
|
type Test_Set struct {
|
|
Set *SetTest `protobuf:"bytes,4,opt,name=set,oneof"`
|
|
}
|
|
type Test_Update struct {
|
|
Update *UpdateTest `protobuf:"bytes,5,opt,name=update,oneof"`
|
|
}
|
|
type Test_UpdatePaths struct {
|
|
UpdatePaths *UpdatePathsTest `protobuf:"bytes,6,opt,name=update_paths,json=updatePaths,oneof"`
|
|
}
|
|
type Test_Delete struct {
|
|
Delete *DeleteTest `protobuf:"bytes,7,opt,name=delete,oneof"`
|
|
}
|
|
type Test_Query struct {
|
|
Query *QueryTest `protobuf:"bytes,8,opt,name=query,oneof"`
|
|
}
|
|
|
|
func (*Test_Get) isTest_Test() {}
|
|
func (*Test_Create) isTest_Test() {}
|
|
func (*Test_Set) isTest_Test() {}
|
|
func (*Test_Update) isTest_Test() {}
|
|
func (*Test_UpdatePaths) isTest_Test() {}
|
|
func (*Test_Delete) isTest_Test() {}
|
|
func (*Test_Query) isTest_Test() {}
|
|
|
|
func (m *Test) GetTest() isTest_Test {
|
|
if m != nil {
|
|
return m.Test
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Test) GetDescription() string {
|
|
if m != nil {
|
|
return m.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Test) GetGet() *GetTest {
|
|
if x, ok := m.GetTest().(*Test_Get); ok {
|
|
return x.Get
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Test) GetCreate() *CreateTest {
|
|
if x, ok := m.GetTest().(*Test_Create); ok {
|
|
return x.Create
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Test) GetSet() *SetTest {
|
|
if x, ok := m.GetTest().(*Test_Set); ok {
|
|
return x.Set
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Test) GetUpdate() *UpdateTest {
|
|
if x, ok := m.GetTest().(*Test_Update); ok {
|
|
return x.Update
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Test) GetUpdatePaths() *UpdatePathsTest {
|
|
if x, ok := m.GetTest().(*Test_UpdatePaths); ok {
|
|
return x.UpdatePaths
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Test) GetDelete() *DeleteTest {
|
|
if x, ok := m.GetTest().(*Test_Delete); ok {
|
|
return x.Delete
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Test) GetQuery() *QueryTest {
|
|
if x, ok := m.GetTest().(*Test_Query); ok {
|
|
return x.Query
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// XXX_OneofFuncs is for the internal use of the proto package.
|
|
func (*Test) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
|
|
return _Test_OneofMarshaler, _Test_OneofUnmarshaler, _Test_OneofSizer, []interface{}{
|
|
(*Test_Get)(nil),
|
|
(*Test_Create)(nil),
|
|
(*Test_Set)(nil),
|
|
(*Test_Update)(nil),
|
|
(*Test_UpdatePaths)(nil),
|
|
(*Test_Delete)(nil),
|
|
(*Test_Query)(nil),
|
|
}
|
|
}
|
|
|
|
func _Test_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
|
m := msg.(*Test)
|
|
// test
|
|
switch x := m.Test.(type) {
|
|
case *Test_Get:
|
|
b.EncodeVarint(2<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.Get); err != nil {
|
|
return err
|
|
}
|
|
case *Test_Create:
|
|
b.EncodeVarint(3<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.Create); err != nil {
|
|
return err
|
|
}
|
|
case *Test_Set:
|
|
b.EncodeVarint(4<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.Set); err != nil {
|
|
return err
|
|
}
|
|
case *Test_Update:
|
|
b.EncodeVarint(5<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.Update); err != nil {
|
|
return err
|
|
}
|
|
case *Test_UpdatePaths:
|
|
b.EncodeVarint(6<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.UpdatePaths); err != nil {
|
|
return err
|
|
}
|
|
case *Test_Delete:
|
|
b.EncodeVarint(7<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.Delete); err != nil {
|
|
return err
|
|
}
|
|
case *Test_Query:
|
|
b.EncodeVarint(8<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.Query); err != nil {
|
|
return err
|
|
}
|
|
case nil:
|
|
default:
|
|
return fmt.Errorf("Test.Test has unexpected type %T", x)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func _Test_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
|
m := msg.(*Test)
|
|
switch tag {
|
|
case 2: // test.get
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(GetTest)
|
|
err := b.DecodeMessage(msg)
|
|
m.Test = &Test_Get{msg}
|
|
return true, err
|
|
case 3: // test.create
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(CreateTest)
|
|
err := b.DecodeMessage(msg)
|
|
m.Test = &Test_Create{msg}
|
|
return true, err
|
|
case 4: // test.set
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(SetTest)
|
|
err := b.DecodeMessage(msg)
|
|
m.Test = &Test_Set{msg}
|
|
return true, err
|
|
case 5: // test.update
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(UpdateTest)
|
|
err := b.DecodeMessage(msg)
|
|
m.Test = &Test_Update{msg}
|
|
return true, err
|
|
case 6: // test.update_paths
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(UpdatePathsTest)
|
|
err := b.DecodeMessage(msg)
|
|
m.Test = &Test_UpdatePaths{msg}
|
|
return true, err
|
|
case 7: // test.delete
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(DeleteTest)
|
|
err := b.DecodeMessage(msg)
|
|
m.Test = &Test_Delete{msg}
|
|
return true, err
|
|
case 8: // test.query
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(QueryTest)
|
|
err := b.DecodeMessage(msg)
|
|
m.Test = &Test_Query{msg}
|
|
return true, err
|
|
default:
|
|
return false, nil
|
|
}
|
|
}
|
|
|
|
func _Test_OneofSizer(msg proto.Message) (n int) {
|
|
m := msg.(*Test)
|
|
// test
|
|
switch x := m.Test.(type) {
|
|
case *Test_Get:
|
|
s := proto.Size(x.Get)
|
|
n += proto.SizeVarint(2<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Test_Create:
|
|
s := proto.Size(x.Create)
|
|
n += proto.SizeVarint(3<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Test_Set:
|
|
s := proto.Size(x.Set)
|
|
n += proto.SizeVarint(4<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Test_Update:
|
|
s := proto.Size(x.Update)
|
|
n += proto.SizeVarint(5<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Test_UpdatePaths:
|
|
s := proto.Size(x.UpdatePaths)
|
|
n += proto.SizeVarint(6<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Test_Delete:
|
|
s := proto.Size(x.Delete)
|
|
n += proto.SizeVarint(7<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Test_Query:
|
|
s := proto.Size(x.Query)
|
|
n += proto.SizeVarint(8<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case nil:
|
|
default:
|
|
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
|
|
}
|
|
return n
|
|
}
|
|
|
|
// Call to the DocumentRef.Get method.
|
|
type GetTest struct {
|
|
// The path of the doc, e.g. "projects/projectID/databases/(default)/documents/C/d"
|
|
DocRefPath string `protobuf:"bytes,1,opt,name=doc_ref_path,json=docRefPath" json:"doc_ref_path,omitempty"`
|
|
// The request that the call should send to the Firestore service.
|
|
Request *google_firestore_v1beta14.GetDocumentRequest `protobuf:"bytes,2,opt,name=request" json:"request,omitempty"`
|
|
}
|
|
|
|
func (m *GetTest) Reset() { *m = GetTest{} }
|
|
func (m *GetTest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetTest) ProtoMessage() {}
|
|
func (*GetTest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
func (m *GetTest) GetDocRefPath() string {
|
|
if m != nil {
|
|
return m.DocRefPath
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *GetTest) GetRequest() *google_firestore_v1beta14.GetDocumentRequest {
|
|
if m != nil {
|
|
return m.Request
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Call to DocumentRef.Create.
|
|
type CreateTest struct {
|
|
// The path of the doc, e.g. "projects/projectID/databases/(default)/documents/C/d"
|
|
DocRefPath string `protobuf:"bytes,1,opt,name=doc_ref_path,json=docRefPath" json:"doc_ref_path,omitempty"`
|
|
// The data passed to Create, as JSON. The strings "Delete" and "ServerTimestamp"
|
|
// denote the two special sentinel values. Values that could be interpreted as integers
|
|
// (i.e. digit strings) should be treated as integers.
|
|
JsonData string `protobuf:"bytes,2,opt,name=json_data,json=jsonData" json:"json_data,omitempty"`
|
|
// The request that the call should generate.
|
|
Request *google_firestore_v1beta14.CommitRequest `protobuf:"bytes,3,opt,name=request" json:"request,omitempty"`
|
|
// If true, the call should result in an error without generating a request.
|
|
// If this is true, request should not be set.
|
|
IsError bool `protobuf:"varint,4,opt,name=is_error,json=isError" json:"is_error,omitempty"`
|
|
}
|
|
|
|
func (m *CreateTest) Reset() { *m = CreateTest{} }
|
|
func (m *CreateTest) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateTest) ProtoMessage() {}
|
|
func (*CreateTest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
func (m *CreateTest) GetDocRefPath() string {
|
|
if m != nil {
|
|
return m.DocRefPath
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateTest) GetJsonData() string {
|
|
if m != nil {
|
|
return m.JsonData
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateTest) GetRequest() *google_firestore_v1beta14.CommitRequest {
|
|
if m != nil {
|
|
return m.Request
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateTest) GetIsError() bool {
|
|
if m != nil {
|
|
return m.IsError
|
|
}
|
|
return false
|
|
}
|
|
|
|
// A call to DocumentRef.Set.
|
|
type SetTest struct {
|
|
DocRefPath string `protobuf:"bytes,1,opt,name=doc_ref_path,json=docRefPath" json:"doc_ref_path,omitempty"`
|
|
Option *SetOption `protobuf:"bytes,2,opt,name=option" json:"option,omitempty"`
|
|
JsonData string `protobuf:"bytes,3,opt,name=json_data,json=jsonData" json:"json_data,omitempty"`
|
|
Request *google_firestore_v1beta14.CommitRequest `protobuf:"bytes,4,opt,name=request" json:"request,omitempty"`
|
|
IsError bool `protobuf:"varint,5,opt,name=is_error,json=isError" json:"is_error,omitempty"`
|
|
}
|
|
|
|
func (m *SetTest) Reset() { *m = SetTest{} }
|
|
func (m *SetTest) String() string { return proto.CompactTextString(m) }
|
|
func (*SetTest) ProtoMessage() {}
|
|
func (*SetTest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
func (m *SetTest) GetDocRefPath() string {
|
|
if m != nil {
|
|
return m.DocRefPath
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SetTest) GetOption() *SetOption {
|
|
if m != nil {
|
|
return m.Option
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SetTest) GetJsonData() string {
|
|
if m != nil {
|
|
return m.JsonData
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SetTest) GetRequest() *google_firestore_v1beta14.CommitRequest {
|
|
if m != nil {
|
|
return m.Request
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SetTest) GetIsError() bool {
|
|
if m != nil {
|
|
return m.IsError
|
|
}
|
|
return false
|
|
}
|
|
|
|
// A call to the form of DocumentRef.Update that represents the data as a map
|
|
// or dictionary.
|
|
type UpdateTest struct {
|
|
DocRefPath string `protobuf:"bytes,1,opt,name=doc_ref_path,json=docRefPath" json:"doc_ref_path,omitempty"`
|
|
Precondition *google_firestore_v1beta1.Precondition `protobuf:"bytes,2,opt,name=precondition" json:"precondition,omitempty"`
|
|
JsonData string `protobuf:"bytes,3,opt,name=json_data,json=jsonData" json:"json_data,omitempty"`
|
|
Request *google_firestore_v1beta14.CommitRequest `protobuf:"bytes,4,opt,name=request" json:"request,omitempty"`
|
|
IsError bool `protobuf:"varint,5,opt,name=is_error,json=isError" json:"is_error,omitempty"`
|
|
}
|
|
|
|
func (m *UpdateTest) Reset() { *m = UpdateTest{} }
|
|
func (m *UpdateTest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateTest) ProtoMessage() {}
|
|
func (*UpdateTest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
func (m *UpdateTest) GetDocRefPath() string {
|
|
if m != nil {
|
|
return m.DocRefPath
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateTest) GetPrecondition() *google_firestore_v1beta1.Precondition {
|
|
if m != nil {
|
|
return m.Precondition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UpdateTest) GetJsonData() string {
|
|
if m != nil {
|
|
return m.JsonData
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateTest) GetRequest() *google_firestore_v1beta14.CommitRequest {
|
|
if m != nil {
|
|
return m.Request
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UpdateTest) GetIsError() bool {
|
|
if m != nil {
|
|
return m.IsError
|
|
}
|
|
return false
|
|
}
|
|
|
|
// A call to the form of DocumentRef.Update that represents the data as a list
|
|
// of field paths and their values.
|
|
type UpdatePathsTest struct {
|
|
DocRefPath string `protobuf:"bytes,1,opt,name=doc_ref_path,json=docRefPath" json:"doc_ref_path,omitempty"`
|
|
Precondition *google_firestore_v1beta1.Precondition `protobuf:"bytes,2,opt,name=precondition" json:"precondition,omitempty"`
|
|
// parallel sequences: field_paths[i] corresponds to json_values[i]
|
|
FieldPaths []*FieldPath `protobuf:"bytes,3,rep,name=field_paths,json=fieldPaths" json:"field_paths,omitempty"`
|
|
JsonValues []string `protobuf:"bytes,4,rep,name=json_values,json=jsonValues" json:"json_values,omitempty"`
|
|
Request *google_firestore_v1beta14.CommitRequest `protobuf:"bytes,5,opt,name=request" json:"request,omitempty"`
|
|
IsError bool `protobuf:"varint,6,opt,name=is_error,json=isError" json:"is_error,omitempty"`
|
|
}
|
|
|
|
func (m *UpdatePathsTest) Reset() { *m = UpdatePathsTest{} }
|
|
func (m *UpdatePathsTest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdatePathsTest) ProtoMessage() {}
|
|
func (*UpdatePathsTest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
func (m *UpdatePathsTest) GetDocRefPath() string {
|
|
if m != nil {
|
|
return m.DocRefPath
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdatePathsTest) GetPrecondition() *google_firestore_v1beta1.Precondition {
|
|
if m != nil {
|
|
return m.Precondition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UpdatePathsTest) GetFieldPaths() []*FieldPath {
|
|
if m != nil {
|
|
return m.FieldPaths
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UpdatePathsTest) GetJsonValues() []string {
|
|
if m != nil {
|
|
return m.JsonValues
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UpdatePathsTest) GetRequest() *google_firestore_v1beta14.CommitRequest {
|
|
if m != nil {
|
|
return m.Request
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *UpdatePathsTest) GetIsError() bool {
|
|
if m != nil {
|
|
return m.IsError
|
|
}
|
|
return false
|
|
}
|
|
|
|
// A call to DocmentRef.Delete
|
|
type DeleteTest struct {
|
|
DocRefPath string `protobuf:"bytes,1,opt,name=doc_ref_path,json=docRefPath" json:"doc_ref_path,omitempty"`
|
|
Precondition *google_firestore_v1beta1.Precondition `protobuf:"bytes,2,opt,name=precondition" json:"precondition,omitempty"`
|
|
Request *google_firestore_v1beta14.CommitRequest `protobuf:"bytes,3,opt,name=request" json:"request,omitempty"`
|
|
IsError bool `protobuf:"varint,4,opt,name=is_error,json=isError" json:"is_error,omitempty"`
|
|
}
|
|
|
|
func (m *DeleteTest) Reset() { *m = DeleteTest{} }
|
|
func (m *DeleteTest) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteTest) ProtoMessage() {}
|
|
func (*DeleteTest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
|
|
func (m *DeleteTest) GetDocRefPath() string {
|
|
if m != nil {
|
|
return m.DocRefPath
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DeleteTest) GetPrecondition() *google_firestore_v1beta1.Precondition {
|
|
if m != nil {
|
|
return m.Precondition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DeleteTest) GetRequest() *google_firestore_v1beta14.CommitRequest {
|
|
if m != nil {
|
|
return m.Request
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DeleteTest) GetIsError() bool {
|
|
if m != nil {
|
|
return m.IsError
|
|
}
|
|
return false
|
|
}
|
|
|
|
// An option to the DocumentRef.Set call.
|
|
type SetOption struct {
|
|
All bool `protobuf:"varint,1,opt,name=all" json:"all,omitempty"`
|
|
Fields []*FieldPath `protobuf:"bytes,2,rep,name=fields" json:"fields,omitempty"`
|
|
}
|
|
|
|
func (m *SetOption) Reset() { *m = SetOption{} }
|
|
func (m *SetOption) String() string { return proto.CompactTextString(m) }
|
|
func (*SetOption) ProtoMessage() {}
|
|
func (*SetOption) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
|
|
|
|
func (m *SetOption) GetAll() bool {
|
|
if m != nil {
|
|
return m.All
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *SetOption) GetFields() []*FieldPath {
|
|
if m != nil {
|
|
return m.Fields
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type QueryTest struct {
|
|
CollPath string `protobuf:"bytes,1,opt,name=coll_path,json=collPath" json:"coll_path,omitempty"`
|
|
Clauses []*Clause `protobuf:"bytes,2,rep,name=clauses" json:"clauses,omitempty"`
|
|
Query *google_firestore_v1beta12.StructuredQuery `protobuf:"bytes,3,opt,name=query" json:"query,omitempty"`
|
|
IsError bool `protobuf:"varint,4,opt,name=is_error,json=isError" json:"is_error,omitempty"`
|
|
}
|
|
|
|
func (m *QueryTest) Reset() { *m = QueryTest{} }
|
|
func (m *QueryTest) String() string { return proto.CompactTextString(m) }
|
|
func (*QueryTest) ProtoMessage() {}
|
|
func (*QueryTest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
|
|
|
|
func (m *QueryTest) GetCollPath() string {
|
|
if m != nil {
|
|
return m.CollPath
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *QueryTest) GetClauses() []*Clause {
|
|
if m != nil {
|
|
return m.Clauses
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *QueryTest) GetQuery() *google_firestore_v1beta12.StructuredQuery {
|
|
if m != nil {
|
|
return m.Query
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *QueryTest) GetIsError() bool {
|
|
if m != nil {
|
|
return m.IsError
|
|
}
|
|
return false
|
|
}
|
|
|
|
type Clause struct {
|
|
// Types that are valid to be assigned to Clause:
|
|
// *Clause_Select
|
|
// *Clause_Where
|
|
// *Clause_OrderBy
|
|
// *Clause_Offset
|
|
// *Clause_Limit
|
|
// *Clause_StartAt
|
|
// *Clause_StartAfter
|
|
// *Clause_EndAt
|
|
// *Clause_EndBefore
|
|
Clause isClause_Clause `protobuf_oneof:"clause"`
|
|
}
|
|
|
|
func (m *Clause) Reset() { *m = Clause{} }
|
|
func (m *Clause) String() string { return proto.CompactTextString(m) }
|
|
func (*Clause) ProtoMessage() {}
|
|
func (*Clause) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
|
|
|
|
type isClause_Clause interface {
|
|
isClause_Clause()
|
|
}
|
|
|
|
type Clause_Select struct {
|
|
Select *Select `protobuf:"bytes,1,opt,name=select,oneof"`
|
|
}
|
|
type Clause_Where struct {
|
|
Where *Where `protobuf:"bytes,2,opt,name=where,oneof"`
|
|
}
|
|
type Clause_OrderBy struct {
|
|
OrderBy *OrderBy `protobuf:"bytes,3,opt,name=order_by,json=orderBy,oneof"`
|
|
}
|
|
type Clause_Offset struct {
|
|
Offset int32 `protobuf:"varint,4,opt,name=offset,oneof"`
|
|
}
|
|
type Clause_Limit struct {
|
|
Limit int32 `protobuf:"varint,5,opt,name=limit,oneof"`
|
|
}
|
|
type Clause_StartAt struct {
|
|
StartAt *Cursor `protobuf:"bytes,6,opt,name=start_at,json=startAt,oneof"`
|
|
}
|
|
type Clause_StartAfter struct {
|
|
StartAfter *Cursor `protobuf:"bytes,7,opt,name=start_after,json=startAfter,oneof"`
|
|
}
|
|
type Clause_EndAt struct {
|
|
EndAt *Cursor `protobuf:"bytes,8,opt,name=end_at,json=endAt,oneof"`
|
|
}
|
|
type Clause_EndBefore struct {
|
|
EndBefore *Cursor `protobuf:"bytes,9,opt,name=end_before,json=endBefore,oneof"`
|
|
}
|
|
|
|
func (*Clause_Select) isClause_Clause() {}
|
|
func (*Clause_Where) isClause_Clause() {}
|
|
func (*Clause_OrderBy) isClause_Clause() {}
|
|
func (*Clause_Offset) isClause_Clause() {}
|
|
func (*Clause_Limit) isClause_Clause() {}
|
|
func (*Clause_StartAt) isClause_Clause() {}
|
|
func (*Clause_StartAfter) isClause_Clause() {}
|
|
func (*Clause_EndAt) isClause_Clause() {}
|
|
func (*Clause_EndBefore) isClause_Clause() {}
|
|
|
|
func (m *Clause) GetClause() isClause_Clause {
|
|
if m != nil {
|
|
return m.Clause
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Clause) GetSelect() *Select {
|
|
if x, ok := m.GetClause().(*Clause_Select); ok {
|
|
return x.Select
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Clause) GetWhere() *Where {
|
|
if x, ok := m.GetClause().(*Clause_Where); ok {
|
|
return x.Where
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Clause) GetOrderBy() *OrderBy {
|
|
if x, ok := m.GetClause().(*Clause_OrderBy); ok {
|
|
return x.OrderBy
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Clause) GetOffset() int32 {
|
|
if x, ok := m.GetClause().(*Clause_Offset); ok {
|
|
return x.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Clause) GetLimit() int32 {
|
|
if x, ok := m.GetClause().(*Clause_Limit); ok {
|
|
return x.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Clause) GetStartAt() *Cursor {
|
|
if x, ok := m.GetClause().(*Clause_StartAt); ok {
|
|
return x.StartAt
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Clause) GetStartAfter() *Cursor {
|
|
if x, ok := m.GetClause().(*Clause_StartAfter); ok {
|
|
return x.StartAfter
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Clause) GetEndAt() *Cursor {
|
|
if x, ok := m.GetClause().(*Clause_EndAt); ok {
|
|
return x.EndAt
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Clause) GetEndBefore() *Cursor {
|
|
if x, ok := m.GetClause().(*Clause_EndBefore); ok {
|
|
return x.EndBefore
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// XXX_OneofFuncs is for the internal use of the proto package.
|
|
func (*Clause) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
|
|
return _Clause_OneofMarshaler, _Clause_OneofUnmarshaler, _Clause_OneofSizer, []interface{}{
|
|
(*Clause_Select)(nil),
|
|
(*Clause_Where)(nil),
|
|
(*Clause_OrderBy)(nil),
|
|
(*Clause_Offset)(nil),
|
|
(*Clause_Limit)(nil),
|
|
(*Clause_StartAt)(nil),
|
|
(*Clause_StartAfter)(nil),
|
|
(*Clause_EndAt)(nil),
|
|
(*Clause_EndBefore)(nil),
|
|
}
|
|
}
|
|
|
|
func _Clause_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
|
|
m := msg.(*Clause)
|
|
// clause
|
|
switch x := m.Clause.(type) {
|
|
case *Clause_Select:
|
|
b.EncodeVarint(1<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.Select); err != nil {
|
|
return err
|
|
}
|
|
case *Clause_Where:
|
|
b.EncodeVarint(2<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.Where); err != nil {
|
|
return err
|
|
}
|
|
case *Clause_OrderBy:
|
|
b.EncodeVarint(3<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.OrderBy); err != nil {
|
|
return err
|
|
}
|
|
case *Clause_Offset:
|
|
b.EncodeVarint(4<<3 | proto.WireVarint)
|
|
b.EncodeVarint(uint64(x.Offset))
|
|
case *Clause_Limit:
|
|
b.EncodeVarint(5<<3 | proto.WireVarint)
|
|
b.EncodeVarint(uint64(x.Limit))
|
|
case *Clause_StartAt:
|
|
b.EncodeVarint(6<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.StartAt); err != nil {
|
|
return err
|
|
}
|
|
case *Clause_StartAfter:
|
|
b.EncodeVarint(7<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.StartAfter); err != nil {
|
|
return err
|
|
}
|
|
case *Clause_EndAt:
|
|
b.EncodeVarint(8<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.EndAt); err != nil {
|
|
return err
|
|
}
|
|
case *Clause_EndBefore:
|
|
b.EncodeVarint(9<<3 | proto.WireBytes)
|
|
if err := b.EncodeMessage(x.EndBefore); err != nil {
|
|
return err
|
|
}
|
|
case nil:
|
|
default:
|
|
return fmt.Errorf("Clause.Clause has unexpected type %T", x)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func _Clause_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
|
|
m := msg.(*Clause)
|
|
switch tag {
|
|
case 1: // clause.select
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(Select)
|
|
err := b.DecodeMessage(msg)
|
|
m.Clause = &Clause_Select{msg}
|
|
return true, err
|
|
case 2: // clause.where
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(Where)
|
|
err := b.DecodeMessage(msg)
|
|
m.Clause = &Clause_Where{msg}
|
|
return true, err
|
|
case 3: // clause.order_by
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(OrderBy)
|
|
err := b.DecodeMessage(msg)
|
|
m.Clause = &Clause_OrderBy{msg}
|
|
return true, err
|
|
case 4: // clause.offset
|
|
if wire != proto.WireVarint {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
x, err := b.DecodeVarint()
|
|
m.Clause = &Clause_Offset{int32(x)}
|
|
return true, err
|
|
case 5: // clause.limit
|
|
if wire != proto.WireVarint {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
x, err := b.DecodeVarint()
|
|
m.Clause = &Clause_Limit{int32(x)}
|
|
return true, err
|
|
case 6: // clause.start_at
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(Cursor)
|
|
err := b.DecodeMessage(msg)
|
|
m.Clause = &Clause_StartAt{msg}
|
|
return true, err
|
|
case 7: // clause.start_after
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(Cursor)
|
|
err := b.DecodeMessage(msg)
|
|
m.Clause = &Clause_StartAfter{msg}
|
|
return true, err
|
|
case 8: // clause.end_at
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(Cursor)
|
|
err := b.DecodeMessage(msg)
|
|
m.Clause = &Clause_EndAt{msg}
|
|
return true, err
|
|
case 9: // clause.end_before
|
|
if wire != proto.WireBytes {
|
|
return true, proto.ErrInternalBadWireType
|
|
}
|
|
msg := new(Cursor)
|
|
err := b.DecodeMessage(msg)
|
|
m.Clause = &Clause_EndBefore{msg}
|
|
return true, err
|
|
default:
|
|
return false, nil
|
|
}
|
|
}
|
|
|
|
func _Clause_OneofSizer(msg proto.Message) (n int) {
|
|
m := msg.(*Clause)
|
|
// clause
|
|
switch x := m.Clause.(type) {
|
|
case *Clause_Select:
|
|
s := proto.Size(x.Select)
|
|
n += proto.SizeVarint(1<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Clause_Where:
|
|
s := proto.Size(x.Where)
|
|
n += proto.SizeVarint(2<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Clause_OrderBy:
|
|
s := proto.Size(x.OrderBy)
|
|
n += proto.SizeVarint(3<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Clause_Offset:
|
|
n += proto.SizeVarint(4<<3 | proto.WireVarint)
|
|
n += proto.SizeVarint(uint64(x.Offset))
|
|
case *Clause_Limit:
|
|
n += proto.SizeVarint(5<<3 | proto.WireVarint)
|
|
n += proto.SizeVarint(uint64(x.Limit))
|
|
case *Clause_StartAt:
|
|
s := proto.Size(x.StartAt)
|
|
n += proto.SizeVarint(6<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Clause_StartAfter:
|
|
s := proto.Size(x.StartAfter)
|
|
n += proto.SizeVarint(7<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Clause_EndAt:
|
|
s := proto.Size(x.EndAt)
|
|
n += proto.SizeVarint(8<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case *Clause_EndBefore:
|
|
s := proto.Size(x.EndBefore)
|
|
n += proto.SizeVarint(9<<3 | proto.WireBytes)
|
|
n += proto.SizeVarint(uint64(s))
|
|
n += s
|
|
case nil:
|
|
default:
|
|
panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
|
|
}
|
|
return n
|
|
}
|
|
|
|
type Select struct {
|
|
Fields []*FieldPath `protobuf:"bytes,1,rep,name=fields" json:"fields,omitempty"`
|
|
}
|
|
|
|
func (m *Select) Reset() { *m = Select{} }
|
|
func (m *Select) String() string { return proto.CompactTextString(m) }
|
|
func (*Select) ProtoMessage() {}
|
|
func (*Select) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
|
|
|
|
func (m *Select) GetFields() []*FieldPath {
|
|
if m != nil {
|
|
return m.Fields
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Where struct {
|
|
Path *FieldPath `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
|
|
Op string `protobuf:"bytes,2,opt,name=op" json:"op,omitempty"`
|
|
JsonValue string `protobuf:"bytes,3,opt,name=json_value,json=jsonValue" json:"json_value,omitempty"`
|
|
}
|
|
|
|
func (m *Where) Reset() { *m = Where{} }
|
|
func (m *Where) String() string { return proto.CompactTextString(m) }
|
|
func (*Where) ProtoMessage() {}
|
|
func (*Where) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
|
|
|
|
func (m *Where) GetPath() *FieldPath {
|
|
if m != nil {
|
|
return m.Path
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Where) GetOp() string {
|
|
if m != nil {
|
|
return m.Op
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Where) GetJsonValue() string {
|
|
if m != nil {
|
|
return m.JsonValue
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type OrderBy struct {
|
|
Path *FieldPath `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
|
|
Direction string `protobuf:"bytes,2,opt,name=direction" json:"direction,omitempty"`
|
|
}
|
|
|
|
func (m *OrderBy) Reset() { *m = OrderBy{} }
|
|
func (m *OrderBy) String() string { return proto.CompactTextString(m) }
|
|
func (*OrderBy) ProtoMessage() {}
|
|
func (*OrderBy) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
|
|
|
|
func (m *OrderBy) GetPath() *FieldPath {
|
|
if m != nil {
|
|
return m.Path
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OrderBy) GetDirection() string {
|
|
if m != nil {
|
|
return m.Direction
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Cursor struct {
|
|
// one of:
|
|
DocSnapshot *DocSnapshot `protobuf:"bytes,1,opt,name=doc_snapshot,json=docSnapshot" json:"doc_snapshot,omitempty"`
|
|
JsonValues []string `protobuf:"bytes,2,rep,name=json_values,json=jsonValues" json:"json_values,omitempty"`
|
|
}
|
|
|
|
func (m *Cursor) Reset() { *m = Cursor{} }
|
|
func (m *Cursor) String() string { return proto.CompactTextString(m) }
|
|
func (*Cursor) ProtoMessage() {}
|
|
func (*Cursor) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
|
|
|
|
func (m *Cursor) GetDocSnapshot() *DocSnapshot {
|
|
if m != nil {
|
|
return m.DocSnapshot
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Cursor) GetJsonValues() []string {
|
|
if m != nil {
|
|
return m.JsonValues
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DocSnapshot struct {
|
|
Path string `protobuf:"bytes,1,opt,name=path" json:"path,omitempty"`
|
|
JsonData string `protobuf:"bytes,2,opt,name=json_data,json=jsonData" json:"json_data,omitempty"`
|
|
}
|
|
|
|
func (m *DocSnapshot) Reset() { *m = DocSnapshot{} }
|
|
func (m *DocSnapshot) String() string { return proto.CompactTextString(m) }
|
|
func (*DocSnapshot) ProtoMessage() {}
|
|
func (*DocSnapshot) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
|
|
|
|
func (m *DocSnapshot) GetPath() string {
|
|
if m != nil {
|
|
return m.Path
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DocSnapshot) GetJsonData() string {
|
|
if m != nil {
|
|
return m.JsonData
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type FieldPath struct {
|
|
Field []string `protobuf:"bytes,1,rep,name=field" json:"field,omitempty"`
|
|
}
|
|
|
|
func (m *FieldPath) Reset() { *m = FieldPath{} }
|
|
func (m *FieldPath) String() string { return proto.CompactTextString(m) }
|
|
func (*FieldPath) ProtoMessage() {}
|
|
func (*FieldPath) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
|
|
|
|
func (m *FieldPath) GetField() []string {
|
|
if m != nil {
|
|
return m.Field
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*TestSuite)(nil), "tests.TestSuite")
|
|
proto.RegisterType((*Test)(nil), "tests.Test")
|
|
proto.RegisterType((*GetTest)(nil), "tests.GetTest")
|
|
proto.RegisterType((*CreateTest)(nil), "tests.CreateTest")
|
|
proto.RegisterType((*SetTest)(nil), "tests.SetTest")
|
|
proto.RegisterType((*UpdateTest)(nil), "tests.UpdateTest")
|
|
proto.RegisterType((*UpdatePathsTest)(nil), "tests.UpdatePathsTest")
|
|
proto.RegisterType((*DeleteTest)(nil), "tests.DeleteTest")
|
|
proto.RegisterType((*SetOption)(nil), "tests.SetOption")
|
|
proto.RegisterType((*QueryTest)(nil), "tests.QueryTest")
|
|
proto.RegisterType((*Clause)(nil), "tests.Clause")
|
|
proto.RegisterType((*Select)(nil), "tests.Select")
|
|
proto.RegisterType((*Where)(nil), "tests.Where")
|
|
proto.RegisterType((*OrderBy)(nil), "tests.OrderBy")
|
|
proto.RegisterType((*Cursor)(nil), "tests.Cursor")
|
|
proto.RegisterType((*DocSnapshot)(nil), "tests.DocSnapshot")
|
|
proto.RegisterType((*FieldPath)(nil), "tests.FieldPath")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("test.proto", fileDescriptor0) }
|
|
|
|
var fileDescriptor0 = []byte{
|
|
// 994 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xc4, 0x56, 0x5f, 0x6f, 0xdc, 0x44,
|
|
0x10, 0xaf, 0x7d, 0x67, 0x9f, 0x3d, 0x0e, 0xa5, 0xac, 0x50, 0x65, 0x0a, 0x88, 0xab, 0x15, 0x92,
|
|
0x83, 0xa2, 0x2b, 0x09, 0xe2, 0x09, 0x09, 0x94, 0x4b, 0x48, 0x2a, 0xa4, 0xaa, 0xc1, 0x57, 0xe0,
|
|
0x05, 0xe9, 0x70, 0xec, 0x71, 0x62, 0xe4, 0xf3, 0x5e, 0x77, 0xd7, 0x45, 0xfd, 0x48, 0x20, 0xf1,
|
|
0xc0, 0x37, 0xe1, 0x91, 0x4f, 0xc0, 0x37, 0x80, 0x67, 0xb4, 0x7f, 0x7c, 0xb6, 0xd3, 0x5c, 0xc9,
|
|
0x43, 0x29, 0x6f, 0xbb, 0x33, 0xbf, 0x99, 0x9d, 0xf9, 0xcd, 0xec, 0xec, 0x02, 0x08, 0xe4, 0x62,
|
|
0xba, 0x62, 0x54, 0x50, 0xe2, 0xc8, 0x35, 0xbf, 0x33, 0x39, 0xa7, 0xf4, 0xbc, 0xc4, 0xfb, 0x79,
|
|
0xc1, 0x90, 0x0b, 0xca, 0xf0, 0xfe, 0xd3, 0xbd, 0x33, 0x14, 0xc9, 0x5e, 0x2b, 0xd1, 0x06, 0x77,
|
|
0xde, 0xdf, 0x88, 0x4c, 0xe9, 0x72, 0x49, 0x2b, 0x03, 0xdb, 0xde, 0x08, 0x7b, 0x52, 0x23, 0x7b,
|
|
0xa6, 0x51, 0xd1, 0x14, 0xfc, 0xc7, 0xc8, 0xc5, 0xbc, 0x2e, 0x04, 0x92, 0xbb, 0xa0, 0x83, 0x09,
|
|
0xad, 0xf1, 0x60, 0x12, 0xec, 0x07, 0x53, 0xb5, 0x9b, 0x4a, 0x40, 0xac, 0x35, 0xd1, 0x9f, 0x36,
|
|
0x0c, 0xe5, 0x9e, 0x8c, 0x21, 0xc8, 0x90, 0xa7, 0xac, 0x58, 0x89, 0x82, 0x56, 0xa1, 0x35, 0xb6,
|
|
0x26, 0x7e, 0xdc, 0x15, 0x91, 0x08, 0x06, 0xe7, 0x28, 0x42, 0x7b, 0x6c, 0x4d, 0x82, 0xfd, 0x9b,
|
|
0xc6, 0xd7, 0x09, 0x0a, 0x69, 0xfe, 0xe0, 0x46, 0x2c, 0x95, 0xe4, 0x1e, 0xb8, 0x29, 0xc3, 0x44,
|
|
0x60, 0x38, 0x50, 0xb0, 0x37, 0x0c, 0xec, 0x50, 0x09, 0x0d, 0xd2, 0x40, 0xa4, 0x43, 0x8e, 0x22,
|
|
0x1c, 0xf6, 0x1c, 0xce, 0x5b, 0x87, 0x5c, 0x3b, 0xac, 0x57, 0x99, 0x74, 0xe8, 0xf4, 0x1c, 0x7e,
|
|
0xa3, 0x84, 0x8d, 0x43, 0x0d, 0x21, 0x9f, 0xc1, 0x96, 0x5e, 0x2d, 0x56, 0x89, 0xb8, 0xe0, 0xa1,
|
|
0xab, 0x4c, 0x6e, 0xf7, 0x4c, 0x4e, 0xa5, 0xc6, 0xd8, 0x05, 0x75, 0x2b, 0x92, 0x27, 0x65, 0x58,
|
|
0xa2, 0xc0, 0x70, 0xd4, 0x3b, 0xe9, 0x48, 0x09, 0x9b, 0x93, 0x34, 0x84, 0x4c, 0xc0, 0x51, 0xac,
|
|
0x87, 0x9e, 0xc2, 0xde, 0x32, 0xd8, 0xaf, 0xa5, 0xcc, 0x40, 0x35, 0x60, 0xe6, 0xc2, 0x50, 0xea,
|
|
0x22, 0x0e, 0x23, 0xc3, 0x15, 0x19, 0xc3, 0x56, 0x46, 0xd3, 0x05, 0xc3, 0x5c, 0xc5, 0x69, 0xb8,
|
|
0x86, 0x8c, 0xa6, 0x31, 0xe6, 0x32, 0x18, 0x72, 0x0c, 0x23, 0x86, 0x4f, 0x6a, 0xe4, 0x0d, 0xdd,
|
|
0x1f, 0x4d, 0x75, 0xf5, 0xa7, 0x6d, 0xf3, 0x98, 0xea, 0xcb, 0x0a, 0x1c, 0xd1, 0xb4, 0x5e, 0x62,
|
|
0x25, 0x62, 0x6d, 0x13, 0x37, 0xc6, 0xd1, 0xcf, 0x16, 0x40, 0x4b, 0xfd, 0x35, 0x0e, 0x7e, 0x1b,
|
|
0xfc, 0x1f, 0x39, 0xad, 0x16, 0x59, 0x22, 0x12, 0x75, 0xb4, 0x1f, 0x7b, 0x52, 0x70, 0x94, 0x88,
|
|
0x84, 0x1c, 0xb4, 0x51, 0xe9, 0xea, 0xee, 0x6e, 0x8e, 0xea, 0x90, 0x2e, 0x97, 0xc5, 0x73, 0x01,
|
|
0x91, 0xb7, 0xc0, 0x2b, 0xf8, 0x02, 0x19, 0xa3, 0x4c, 0xd5, 0xdd, 0x8b, 0x47, 0x05, 0xff, 0x52,
|
|
0x6e, 0xa3, 0xdf, 0x2d, 0x18, 0xcd, 0xaf, 0xcd, 0xd0, 0x04, 0x5c, 0xaa, 0x3b, 0xd5, 0xee, 0x55,
|
|
0x60, 0x8e, 0xe2, 0x91, 0x92, 0xc7, 0x46, 0xdf, 0x4f, 0x69, 0xb0, 0x39, 0xa5, 0xe1, 0x4b, 0x48,
|
|
0xc9, 0xe9, 0xa7, 0xf4, 0x97, 0x05, 0xd0, 0x36, 0xea, 0x35, 0xb2, 0xfa, 0x0a, 0xb6, 0x56, 0x0c,
|
|
0x53, 0x5a, 0x65, 0x45, 0x27, 0xb7, 0x9d, 0xcd, 0x31, 0x9d, 0x76, 0xd0, 0x71, 0xcf, 0xf6, 0xff,
|
|
0xcc, 0xfb, 0x37, 0x1b, 0x5e, 0xbf, 0x74, 0xdb, 0x5e, 0x71, 0xf2, 0x7b, 0x10, 0xe4, 0x05, 0x96,
|
|
0x99, 0x19, 0x04, 0x03, 0x35, 0xff, 0x9a, 0x1e, 0x39, 0x96, 0x1a, 0x79, 0x64, 0x0c, 0x79, 0xb3,
|
|
0xe4, 0xe4, 0x3d, 0x08, 0x14, 0x5f, 0x4f, 0x93, 0xb2, 0x46, 0x1e, 0x0e, 0xc7, 0x03, 0x19, 0x9f,
|
|
0x14, 0x7d, 0xab, 0x24, 0x5d, 0xce, 0x9c, 0x97, 0xc0, 0x99, 0xdb, 0xe7, 0xec, 0x0f, 0x0b, 0xa0,
|
|
0x1d, 0x35, 0xaf, 0x98, 0xae, 0xff, 0xf6, 0x66, 0x9f, 0x80, 0xbf, 0xbe, 0x96, 0xe4, 0x16, 0x0c,
|
|
0x92, 0xb2, 0x54, 0xf9, 0x78, 0xb1, 0x5c, 0xca, 0xab, 0xac, 0xca, 0xc0, 0x43, 0x7b, 0x43, 0x99,
|
|
0x8c, 0x3e, 0xfa, 0xd5, 0x02, 0x7f, 0x3d, 0x62, 0x65, 0x83, 0xa7, 0xb4, 0x2c, 0xbb, 0xfc, 0x78,
|
|
0x52, 0xa0, 0xd8, 0xd9, 0x85, 0x51, 0x5a, 0x26, 0x35, 0xc7, 0xc6, 0xeb, 0x6b, 0xcd, 0x4b, 0xa4,
|
|
0xa4, 0x71, 0xa3, 0x25, 0x5f, 0x34, 0x93, 0x5c, 0x27, 0xfe, 0xc1, 0xe6, 0xc4, 0xe7, 0x82, 0xd5,
|
|
0xa9, 0xa8, 0x19, 0x66, 0x2a, 0x06, 0x33, 0xe0, 0x5f, 0x94, 0xf8, 0xdf, 0x36, 0xb8, 0xfa, 0x3c,
|
|
0xb2, 0x0b, 0x2e, 0xc7, 0x12, 0x53, 0xa1, 0x22, 0x6d, 0xc3, 0x99, 0x2b, 0xa1, 0x7c, 0x59, 0xb4,
|
|
0x9a, 0x6c, 0x83, 0xf3, 0xd3, 0x05, 0x32, 0x34, 0xf5, 0xdc, 0x32, 0xb8, 0xef, 0xa4, 0x4c, 0xbe,
|
|
0x2a, 0x4a, 0x49, 0xee, 0x81, 0x47, 0x59, 0x86, 0x6c, 0x71, 0xd6, 0x04, 0xde, 0xbc, 0x9f, 0x8f,
|
|
0xa4, 0x78, 0xf6, 0xec, 0xc1, 0x8d, 0x78, 0x44, 0xf5, 0x92, 0x84, 0xe0, 0xd2, 0x3c, 0x6f, 0x9e,
|
|
0x5a, 0x47, 0x1e, 0xa6, 0xf7, 0xe4, 0x36, 0x38, 0x65, 0xb1, 0x2c, 0x74, 0x43, 0x4b, 0x85, 0xde,
|
|
0x92, 0x0f, 0xc1, 0xe3, 0x22, 0x61, 0x62, 0x91, 0x08, 0xf3, 0x88, 0xae, 0xe9, 0xab, 0x19, 0xa7,
|
|
0x4c, 0x7a, 0x57, 0x80, 0x03, 0x41, 0x3e, 0x86, 0xc0, 0x60, 0x73, 0x81, 0xcc, 0x3c, 0x9e, 0xcf,
|
|
0xc1, 0x41, 0xc3, 0x25, 0x84, 0xec, 0x80, 0x8b, 0x55, 0x26, 0x7d, 0x7b, 0x57, 0x83, 0x1d, 0xac,
|
|
0xb2, 0x03, 0x41, 0xa6, 0x00, 0x12, 0x77, 0x86, 0x39, 0x65, 0x18, 0xfa, 0x57, 0x63, 0x7d, 0xac,
|
|
0xb2, 0x99, 0x42, 0xcc, 0x3c, 0x70, 0x75, 0x55, 0xa3, 0x7d, 0x70, 0x35, 0xb1, 0x9d, 0xe6, 0xb2,
|
|
0xfe, 0xa5, 0xb9, 0xbe, 0x07, 0x47, 0x91, 0x4c, 0xb6, 0x61, 0xb8, 0x6e, 0xa9, 0xab, 0x0c, 0x94,
|
|
0x96, 0xdc, 0x04, 0x9b, 0xae, 0xcc, 0x13, 0x69, 0xd3, 0x15, 0x79, 0x17, 0xa0, 0x1d, 0x1f, 0x66,
|
|
0xde, 0xfa, 0xeb, 0xe9, 0x11, 0x3d, 0x84, 0x91, 0xa9, 0xcc, 0x35, 0xfd, 0xbf, 0x03, 0x7e, 0x56,
|
|
0x30, 0x4c, 0xd7, 0x77, 0xdb, 0x8f, 0x5b, 0x41, 0xf4, 0x03, 0xb8, 0x9a, 0x01, 0xf2, 0xa9, 0x1e,
|
|
0x14, 0xbc, 0x4a, 0x56, 0xfc, 0x82, 0x36, 0xed, 0x45, 0x9a, 0xcf, 0x0b, 0x4d, 0xe7, 0x46, 0x13,
|
|
0x07, 0x59, 0xbb, 0xb9, 0x3c, 0xed, 0xec, 0xcb, 0xd3, 0x2e, 0xfa, 0x1c, 0x82, 0x8e, 0x31, 0x21,
|
|
0x9d, 0xa0, 0x7d, 0x13, 0xe2, 0x8b, 0x3e, 0x0b, 0xd1, 0x5d, 0xf0, 0xd7, 0x29, 0x91, 0x37, 0xc1,
|
|
0x51, 0x2c, 0xab, 0x22, 0xf8, 0xb1, 0xde, 0xcc, 0x1e, 0xc2, 0x4e, 0x4a, 0x97, 0xcd, 0x85, 0x4b,
|
|
0x4b, 0x5a, 0x67, 0x9d, 0x6b, 0x97, 0xd2, 0x2a, 0xa7, 0x6c, 0x99, 0x54, 0x29, 0xfe, 0x62, 0x47,
|
|
0x27, 0x1a, 0x74, 0xa8, 0x40, 0xc7, 0x6b, 0xd0, 0x63, 0x95, 0xe5, 0xa9, 0xfc, 0xfa, 0x9e, 0xb9,
|
|
0xea, 0x07, 0xfc, 0xc9, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x8d, 0x96, 0x46, 0xb3, 0x8d, 0x0b,
|
|
0x00, 0x00,
|
|
}
|