diff --git a/.travis.yml b/.travis.yml index 32a013889..16146e7e4 100755 --- a/.travis.yml +++ b/.travis.yml @@ -32,6 +32,8 @@ matrix: install: + # TODO: Remove once source code is fixed for sodafoundation + - ln -s $GOPATH/src/sodafoundation $GOPATH/src/opensds # Build OpenSDS Controller source code - make osdsapiserver - make osdsctl diff --git a/Makefile b/Makefile index 68e338740..0c78ddd81 100755 --- a/Makefile +++ b/Makefile @@ -50,7 +50,7 @@ metricexporter: docker: build cp $(BUILD_DIR)/bin/osdsapiserver ./cmd/osdsapiserver - docker build cmd/osdsapiserver -t opensdsio/opensds-apiserver:latest + docker build cmd/osdsapiserver -t sodafoundation/apiserver:latest test: build install/CI/test diff --git a/cmd/osdsapiserver/Autobuildfile b/cmd/osdsapiserver/Autobuildfile index 07909ff76..4b5b7db75 100644 --- a/cmd/osdsapiserver/Autobuildfile +++ b/cmd/osdsapiserver/Autobuildfile @@ -1,7 +1,7 @@ # Docker build usage: -# docker build . -t opensdsio/opensds-apiserver:latest +# docker build . -t sodafoundation/apiserver:latest # Docker run usage: -# docker run -d --net=host -v /etc/opensds:/etc/opensds opensdsio/opensds-apiserver:latest +# docker run -d --net=host -v /etc/opensds:/etc/opensds sodafoundation/apiserver:latest FROM ubuntu:16.04 MAINTAINER Leon Wang diff --git a/cmd/osdsapiserver/Dockerfile b/cmd/osdsapiserver/Dockerfile index 289b993c3..3d5c39217 100644 --- a/cmd/osdsapiserver/Dockerfile +++ b/cmd/osdsapiserver/Dockerfile @@ -1,10 +1,9 @@ # Docker build usage: -# docker build . -t opensdsio/opensds-apiserver:latest +# docker build . -t sodafoundation/apiserver:latest # Docker run usage: -# docker run -d --net=host -v /etc/opensds:/etc/opensds opensdsio/opensds-apiserver:latest +# docker run -d --net=host -v /etc/opensds:/etc/opensds sodafoundation/apiserver:latest FROM ubuntu:16.04 -MAINTAINER Leon Wang COPY osdsapiserver /usr/bin diff --git a/docker-compose.yml b/docker-compose.yml index 31cd6d2a6..706d8826e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: '2' services: osdsapiserver: - image: 'opensdsio/opensds-apiserver:latest' + image: 'sodafoundation/apiserver:latest' tty: true network_mode: "host" volumes: @@ -12,7 +12,7 @@ services: restart: on-failure command: /bin/bash -c '/usr/bin/osdsapiserver -logtostderr' osdslet: - image: 'opensdsio/opensds-controller:latest' + image: 'sodafoundation/controller:latest' tty: true network_mode: "host" volumes: @@ -22,7 +22,7 @@ services: restart: on-failure command: /bin/bash -c '/usr/bin/osdslet -logtostderr' osdsdock: - image: 'opensdsio/opensds-dock:latest' + image: 'sodafoundation/dock:latest' tty: true privileged: true volumes: @@ -52,7 +52,7 @@ services: privileged: true restart: on-failure osdsdashboard: - image: 'opensdsio/dashboard:latest' + image: 'sodafoundation/dashboard:latest' tty: true network_mode: "host" restart: on-failure diff --git a/install/devsds/install.sh b/install/devsds/install.sh index aa0adce95..e8923438f 100755 --- a/install/devsds/install.sh +++ b/install/devsds/install.sh @@ -163,7 +163,7 @@ else fi echo -echo "Execute commands blow to set up ENVs which are needed by OpenSDS CLI:" +echo "Execute commands below to set up ENVs which are needed by SODA CLI:" echo "------------------------------------------------------------------" echo "export OPENSDS_AUTH_STRATEGY=$OPENSDS_AUTH_STRATEGY" echo "export OPENSDS_ENDPOINT=http://localhost:50040" diff --git a/install/devsds/lib/opensds.sh b/install/devsds/lib/opensds.sh index 02cac6bde..81d03c6e6 100755 --- a/install/devsds/lib/opensds.sh +++ b/install/devsds/lib/opensds.sh @@ -88,11 +88,11 @@ osds::opensds::install(){ export OPENSDS_AUTH_STRATEGY=$OPENSDS_AUTH_STRATEGY export OPENSDS_ENDPOINT=http://localhost:50040 - build/out/bin/osdsctl profile create '{"name": "default_block", "description": "default policy", "storageType": "block"}' - build/out/bin/osdsctl profile create '{"name": "default_file", "description": "default policy", "storageType": "file", "provisioningProperties":{"ioConnectivity": {"accessProtocol": "NFS"},"DataStorage":{"StorageAccessCapability":["Read","Write","Execute"]}}}' + ${OPENSDS_DIR}/build/out/bin/osdsctl profile create '{"name": "default_block", "description": "default policy", "storageType": "block"}' + ${OPENSDS_DIR}/build/out/bin/osdsctl profile create '{"name": "default_file", "description": "default policy", "storageType": "file", "provisioningProperties":{"ioConnectivity": {"accessProtocol": "NFS"},"DataStorage":{"StorageAccessCapability":["Read","Write","Execute"]}}}' if [ $? == 0 ]; then - osds::echo_summary devsds installed successfully !! + osds::echo_summary devsds installed successfully !! fi ) } diff --git a/install/kubernetes/opensds-all.yaml b/install/kubernetes/opensds-all.yaml index 683001887..7d34c9b6e 100644 --- a/install/kubernetes/opensds-all.yaml +++ b/install/kubernetes/opensds-all.yaml @@ -48,7 +48,7 @@ spec: spec: containers: - name: apiserver - image: opensdsio/opensds-apiserver:latest + image: sodafoundation/apiserver:latest imagePullPolicy: IfNotPresent command: ["bin/sh"] args: ["-c", "/usr/bin/osdsapiserver -logtostderr"] @@ -99,7 +99,7 @@ spec: spec: containers: - name: controller - image: opensdsio/opensds-controller:latest + image: sodafoundation/controller:latest imagePullPolicy: IfNotPresent command: ["bin/sh"] args: ["-c", "/usr/bin/osdslet -logtostderr"] @@ -155,7 +155,7 @@ spec: capabilities: add: ["SYS_ADMIN"] allowPrivilegeEscalation: true - image: opensdsio/opensds-dock:latest + image: sodafoundation/dock:latest imagePullPolicy: IfNotPresent command: ["bin/sh"] args: ["-c", "/usr/sbin/tgtd; /usr/bin/osdsdock -logtostderr"] @@ -249,7 +249,7 @@ spec: spec: containers: - name: dashboard - image: opensdsio/dashboard:latest + image: sodafoundation/dashboard:latest env: - name: OPENSDS_AUTH_URL value: http://authchecker.opensds.svc.cluster.local/identity diff --git a/install/kubernetes/opensds-apiserver-v1.yaml b/install/kubernetes/opensds-apiserver-v1.yaml index 2154635fb..2cf55a04d 100644 --- a/install/kubernetes/opensds-apiserver-v1.yaml +++ b/install/kubernetes/opensds-apiserver-v1.yaml @@ -33,7 +33,7 @@ spec: spec: containers: - name: apiserver - image: opensdsio/opensds-apiserver:latest + image: sodafoundation/apiserver:latest imagePullPolicy: IfNotPresent command: ["bin/sh"] args: ["-c", "/usr/bin/osdsapiserver -logtostderr"] diff --git a/install/kubernetes/opensds-apiserver-v1beta.yaml b/install/kubernetes/opensds-apiserver-v1beta.yaml index f98d05414..0913f9856 100644 --- a/install/kubernetes/opensds-apiserver-v1beta.yaml +++ b/install/kubernetes/opensds-apiserver-v1beta.yaml @@ -33,7 +33,7 @@ spec: spec: containers: - name: apiserver - image: opensdsio/opensds-apiserver:latest + image: sodafoundation/apiserver:latest imagePullPolicy: IfNotPresent command: ["bin/sh"] args: ["-c", "/usr/bin/osdsapiserver -logtostderr"] diff --git a/install/kubernetes/opensds-controller-v1.yaml b/install/kubernetes/opensds-controller-v1.yaml index fd91ba5d8..225ea29ac 100644 --- a/install/kubernetes/opensds-controller-v1.yaml +++ b/install/kubernetes/opensds-controller-v1.yaml @@ -33,7 +33,7 @@ spec: spec: containers: - name: controller - image: opensdsio/opensds-controller:latest + image: sodafoundation/controller:latest imagePullPolicy: IfNotPresent command: ["bin/sh"] args: ["-c", "/usr/bin/osdslet -logtostderr"] diff --git a/install/kubernetes/opensds-internal.yaml b/install/kubernetes/opensds-internal.yaml index 99736abae..68d4ecfa9 100644 --- a/install/kubernetes/opensds-internal.yaml +++ b/install/kubernetes/opensds-internal.yaml @@ -48,7 +48,7 @@ spec: spec: containers: - name: apiserver - image: opensdsio/opensds-apiserver:latest + image: sodafoundation/apiserver:latest imagePullPolicy: IfNotPresent command: ["bin/sh"] args: ["-c", "/usr/bin/osdsapiserver -logtostderr"] @@ -99,7 +99,7 @@ spec: spec: containers: - name: controller - image: opensdsio/opensds-controller:latest + image: sodafoundation/controller:latest imagePullPolicy: IfNotPresent command: ["bin/sh"] args: ["-c", "/usr/bin/osdslet -logtostderr"] @@ -155,7 +155,7 @@ spec: capabilities: add: ["SYS_ADMIN"] allowPrivilegeEscalation: true - image: opensdsio/opensds-dock:latest + image: sodafoundation/dock:latest imagePullPolicy: IfNotPresent command: ["bin/sh"] args: ["-c", "/usr/sbin/tgtd; /usr/bin/osdsdock -logtostderr"] @@ -249,7 +249,7 @@ spec: spec: containers: - name: dashboard - image: opensdsio/dashboard:latest + image: sodafoundation/dashboard:latest env: - name: OPENSDS_AUTH_URL value: http://authchecker.opensds.svc.cluster.local/identity diff --git a/openapi-spec/swagger.yaml b/openapi-spec/swagger.yaml index 4cd136fb6..45dcfdfde 100755 --- a/openapi-spec/swagger.yaml +++ b/openapi-spec/swagger.yaml @@ -6,7 +6,7 @@ info: termsOfService: 'https://www.linuxfoundation.org/terms' contact: name: SODA Support - url: 'https://opensds.slack.com' + url: 'https://sodafoundation.io/slack' email: support@sodafoundation.io license: name: Apache 2.0 diff --git a/pkg/model/proto/model.pb.go b/pkg/model/proto/model.pb.go index 28cce7856..ef4414cfe 100644 --- a/pkg/model/proto/model.pb.go +++ b/pkg/model/proto/model.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-go. DO NOT EDIT. -// source: model.proto +// source: proto/model.proto package proto @@ -71,7 +71,7 @@ func (m *CreateVolumeOpts) Reset() { *m = CreateVolumeOpts{} } func (m *CreateVolumeOpts) String() string { return proto.CompactTextString(m) } func (*CreateVolumeOpts) ProtoMessage() {} func (*CreateVolumeOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{0} + return fileDescriptor_d10048d769ba1c4e, []int{0} } func (m *CreateVolumeOpts) XXX_Unmarshal(b []byte) error { @@ -239,7 +239,7 @@ func (m *DeleteVolumeOpts) Reset() { *m = DeleteVolumeOpts{} } func (m *DeleteVolumeOpts) String() string { return proto.CompactTextString(m) } func (*DeleteVolumeOpts) ProtoMessage() {} func (*DeleteVolumeOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{1} + return fileDescriptor_d10048d769ba1c4e, []int{1} } func (m *DeleteVolumeOpts) XXX_Unmarshal(b []byte) error { @@ -348,7 +348,7 @@ func (m *ExtendVolumeOpts) Reset() { *m = ExtendVolumeOpts{} } func (m *ExtendVolumeOpts) String() string { return proto.CompactTextString(m) } func (*ExtendVolumeOpts) ProtoMessage() {} func (*ExtendVolumeOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{2} + return fileDescriptor_d10048d769ba1c4e, []int{2} } func (m *ExtendVolumeOpts) XXX_Unmarshal(b []byte) error { @@ -493,7 +493,7 @@ func (m *CreateVolumeSnapshotOpts) Reset() { *m = CreateVolumeSnapshotOp func (m *CreateVolumeSnapshotOpts) String() string { return proto.CompactTextString(m) } func (*CreateVolumeSnapshotOpts) ProtoMessage() {} func (*CreateVolumeSnapshotOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{3} + return fileDescriptor_d10048d769ba1c4e, []int{3} } func (m *CreateVolumeSnapshotOpts) XXX_Unmarshal(b []byte) error { @@ -608,7 +608,7 @@ func (m *DeleteVolumeSnapshotOpts) Reset() { *m = DeleteVolumeSnapshotOp func (m *DeleteVolumeSnapshotOpts) String() string { return proto.CompactTextString(m) } func (*DeleteVolumeSnapshotOpts) ProtoMessage() {} func (*DeleteVolumeSnapshotOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{4} + return fileDescriptor_d10048d769ba1c4e, []int{4} } func (m *DeleteVolumeSnapshotOpts) XXX_Unmarshal(b []byte) error { @@ -693,7 +693,7 @@ type CreateVolumeAttachmentOpts struct { // The Context Context string `protobuf:"bytes,9,opt,name=context,proto3" json:"context,omitempty"` // The protocol - AccessProtocol string `protobuf:"bytes,10,opt,name=AccessProtocol,proto3" json:"AccessProtocol,omitempty"` + AccessProtocol string `protobuf:"bytes,10,opt,name=AccessProtocol,json=accessProtocol,proto3" json:"AccessProtocol,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -703,7 +703,7 @@ func (m *CreateVolumeAttachmentOpts) Reset() { *m = CreateVolumeAttachme func (m *CreateVolumeAttachmentOpts) String() string { return proto.CompactTextString(m) } func (*CreateVolumeAttachmentOpts) ProtoMessage() {} func (*CreateVolumeAttachmentOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{5} + return fileDescriptor_d10048d769ba1c4e, []int{5} } func (m *CreateVolumeAttachmentOpts) XXX_Unmarshal(b []byte) error { @@ -812,7 +812,7 @@ type DeleteVolumeAttachmentOpts struct { // The Context Context string `protobuf:"bytes,7,opt,name=context,proto3" json:"context,omitempty"` // The protocol - AccessProtocol string `protobuf:"bytes,8,opt,name=AccessProtocol,proto3" json:"AccessProtocol,omitempty"` + AccessProtocol string `protobuf:"bytes,8,opt,name=AccessProtocol,json=accessProtocol,proto3" json:"AccessProtocol,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -822,7 +822,7 @@ func (m *DeleteVolumeAttachmentOpts) Reset() { *m = DeleteVolumeAttachme func (m *DeleteVolumeAttachmentOpts) String() string { return proto.CompactTextString(m) } func (*DeleteVolumeAttachmentOpts) ProtoMessage() {} func (*DeleteVolumeAttachmentOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{6} + return fileDescriptor_d10048d769ba1c4e, []int{6} } func (m *DeleteVolumeAttachmentOpts) XXX_Unmarshal(b []byte) error { @@ -919,7 +919,7 @@ type CreateSnapshotAttachmentOpts struct { // The Context Context string `protobuf:"bytes,8,opt,name=context,proto3" json:"context,omitempty"` // The protocol - AccessProtocol string `protobuf:"bytes,9,opt,name=AccessProtocol,proto3" json:"AccessProtocol,omitempty"` + AccessProtocol string `protobuf:"bytes,9,opt,name=AccessProtocol,json=accessProtocol,proto3" json:"AccessProtocol,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -929,7 +929,7 @@ func (m *CreateSnapshotAttachmentOpts) Reset() { *m = CreateSnapshotAtta func (m *CreateSnapshotAttachmentOpts) String() string { return proto.CompactTextString(m) } func (*CreateSnapshotAttachmentOpts) ProtoMessage() {} func (*CreateSnapshotAttachmentOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{7} + return fileDescriptor_d10048d769ba1c4e, []int{7} } func (m *CreateSnapshotAttachmentOpts) XXX_Unmarshal(b []byte) error { @@ -1029,7 +1029,7 @@ type DeleteSnapshotAttachmentOpts struct { // The Context Context string `protobuf:"bytes,6,opt,name=context,proto3" json:"context,omitempty"` // The protocol - AccessProtocol string `protobuf:"bytes,7,opt,name=AccessProtocol,proto3" json:"AccessProtocol,omitempty"` + AccessProtocol string `protobuf:"bytes,7,opt,name=AccessProtocol,json=accessProtocol,proto3" json:"AccessProtocol,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1039,7 +1039,7 @@ func (m *DeleteSnapshotAttachmentOpts) Reset() { *m = DeleteSnapshotAtta func (m *DeleteSnapshotAttachmentOpts) String() string { return proto.CompactTextString(m) } func (*DeleteSnapshotAttachmentOpts) ProtoMessage() {} func (*DeleteSnapshotAttachmentOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{8} + return fileDescriptor_d10048d769ba1c4e, []int{8} } func (m *DeleteSnapshotAttachmentOpts) XXX_Unmarshal(b []byte) error { @@ -1129,7 +1129,7 @@ func (m *HostInfo) Reset() { *m = HostInfo{} } func (m *HostInfo) String() string { return proto.CompactTextString(m) } func (*HostInfo) ProtoMessage() {} func (*HostInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{9} + return fileDescriptor_d10048d769ba1c4e, []int{9} } func (m *HostInfo) XXX_Unmarshal(b []byte) error { @@ -1199,7 +1199,7 @@ func (m *Initiator) Reset() { *m = Initiator{} } func (m *Initiator) String() string { return proto.CompactTextString(m) } func (*Initiator) ProtoMessage() {} func (*Initiator) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{10} + return fileDescriptor_d10048d769ba1c4e, []int{10} } func (m *Initiator) XXX_Unmarshal(b []byte) error { @@ -1245,7 +1245,7 @@ func (m *VolumeData) Reset() { *m = VolumeData{} } func (m *VolumeData) String() string { return proto.CompactTextString(m) } func (*VolumeData) ProtoMessage() {} func (*VolumeData) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{11} + return fileDescriptor_d10048d769ba1c4e, []int{11} } func (m *VolumeData) XXX_Unmarshal(b []byte) error { @@ -1315,9 +1315,9 @@ type CreateReplicationOpts struct { //the replication mode sync/async ReplicationMode string `protobuf:"bytes,19,opt,name=replicationMode,proto3" json:"replicationMode,omitempty"` // 0 means sync replication. - ReplicationPeriod int64 `protobuf:"varint,20,opt,name=ReplicationPeriod,proto3" json:"ReplicationPeriod,omitempty"` + ReplicationPeriod int64 `protobuf:"varint,20,opt,name=ReplicationPeriod,json=replicationPeriod,proto3" json:"ReplicationPeriod,omitempty"` // replication bandwidth - ReplicationBandwidth int64 `protobuf:"varint,21,opt,name=ReplicationBandwidth,proto3" json:"ReplicationBandwidth,omitempty"` + ReplicationBandwidth int64 `protobuf:"varint,21,opt,name=ReplicationBandwidth,json=replicationBandwidth,proto3" json:"ReplicationBandwidth,omitempty"` // The Serialized profile Profile string `protobuf:"bytes,22,opt,name=profile,proto3" json:"profile,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1329,7 +1329,7 @@ func (m *CreateReplicationOpts) Reset() { *m = CreateReplicationOpts{} } func (m *CreateReplicationOpts) String() string { return proto.CompactTextString(m) } func (*CreateReplicationOpts) ProtoMessage() {} func (*CreateReplicationOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{12} + return fileDescriptor_d10048d769ba1c4e, []int{12} } func (m *CreateReplicationOpts) XXX_Unmarshal(b []byte) error { @@ -1545,7 +1545,7 @@ func (m *DeleteReplicationOpts) Reset() { *m = DeleteReplicationOpts{} } func (m *DeleteReplicationOpts) String() string { return proto.CompactTextString(m) } func (*DeleteReplicationOpts) ProtoMessage() {} func (*DeleteReplicationOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{13} + return fileDescriptor_d10048d769ba1c4e, []int{13} } func (m *DeleteReplicationOpts) XXX_Unmarshal(b []byte) error { @@ -1731,7 +1731,7 @@ func (m *EnableReplicationOpts) Reset() { *m = EnableReplicationOpts{} } func (m *EnableReplicationOpts) String() string { return proto.CompactTextString(m) } func (*EnableReplicationOpts) ProtoMessage() {} func (*EnableReplicationOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{14} + return fileDescriptor_d10048d769ba1c4e, []int{14} } func (m *EnableReplicationOpts) XXX_Unmarshal(b []byte) error { @@ -1917,7 +1917,7 @@ func (m *DisableReplicationOpts) Reset() { *m = DisableReplicationOpts{} func (m *DisableReplicationOpts) String() string { return proto.CompactTextString(m) } func (*DisableReplicationOpts) ProtoMessage() {} func (*DisableReplicationOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{15} + return fileDescriptor_d10048d769ba1c4e, []int{15} } func (m *DisableReplicationOpts) XXX_Unmarshal(b []byte) error { @@ -2107,7 +2107,7 @@ func (m *FailoverReplicationOpts) Reset() { *m = FailoverReplicationOpts func (m *FailoverReplicationOpts) String() string { return proto.CompactTextString(m) } func (*FailoverReplicationOpts) ProtoMessage() {} func (*FailoverReplicationOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{16} + return fileDescriptor_d10048d769ba1c4e, []int{16} } func (m *FailoverReplicationOpts) XXX_Unmarshal(b []byte) error { @@ -2275,7 +2275,7 @@ func (m *FailoverReplicationOpts_FailoverRequest) Reset() { func (m *FailoverReplicationOpts_FailoverRequest) String() string { return proto.CompactTextString(m) } func (*FailoverReplicationOpts_FailoverRequest) ProtoMessage() {} func (*FailoverReplicationOpts_FailoverRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{16, 3} + return fileDescriptor_d10048d769ba1c4e, []int{16, 3} } func (m *FailoverReplicationOpts_FailoverRequest) XXX_Unmarshal(b []byte) error { @@ -2340,7 +2340,7 @@ func (m *CreateVolumeGroupOpts) Reset() { *m = CreateVolumeGroupOpts{} } func (m *CreateVolumeGroupOpts) String() string { return proto.CompactTextString(m) } func (*CreateVolumeGroupOpts) ProtoMessage() {} func (*CreateVolumeGroupOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{17} + return fileDescriptor_d10048d769ba1c4e, []int{17} } func (m *CreateVolumeGroupOpts) XXX_Unmarshal(b []byte) error { @@ -2446,7 +2446,7 @@ func (m *UpdateVolumeGroupOpts) Reset() { *m = UpdateVolumeGroupOpts{} } func (m *UpdateVolumeGroupOpts) String() string { return proto.CompactTextString(m) } func (*UpdateVolumeGroupOpts) ProtoMessage() {} func (*UpdateVolumeGroupOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{18} + return fileDescriptor_d10048d769ba1c4e, []int{18} } func (m *UpdateVolumeGroupOpts) XXX_Unmarshal(b []byte) error { @@ -2527,7 +2527,7 @@ func (m *DeleteVolumeGroupOpts) Reset() { *m = DeleteVolumeGroupOpts{} } func (m *DeleteVolumeGroupOpts) String() string { return proto.CompactTextString(m) } func (*DeleteVolumeGroupOpts) ProtoMessage() {} func (*DeleteVolumeGroupOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{19} + return fileDescriptor_d10048d769ba1c4e, []int{19} } func (m *DeleteVolumeGroupOpts) XXX_Unmarshal(b []byte) error { @@ -2596,7 +2596,7 @@ func (m *AttachVolumeOpts) Reset() { *m = AttachVolumeOpts{} } func (m *AttachVolumeOpts) String() string { return proto.CompactTextString(m) } func (*AttachVolumeOpts) ProtoMessage() {} func (*AttachVolumeOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{20} + return fileDescriptor_d10048d769ba1c4e, []int{20} } func (m *AttachVolumeOpts) XXX_Unmarshal(b []byte) error { @@ -2665,7 +2665,7 @@ func (m *DetachVolumeOpts) Reset() { *m = DetachVolumeOpts{} } func (m *DetachVolumeOpts) String() string { return proto.CompactTextString(m) } func (*DetachVolumeOpts) ProtoMessage() {} func (*DetachVolumeOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{21} + return fileDescriptor_d10048d769ba1c4e, []int{21} } func (m *DetachVolumeOpts) XXX_Unmarshal(b []byte) error { @@ -2735,7 +2735,7 @@ type DeleteFileShareAclOpts struct { // The Context Context string `protobuf:"bytes,9,opt,name=context,proto3" json:"context,omitempty"` // The Name - Name string `protobuf:"bytes,10,opt,name=Name,proto3" json:"Name,omitempty"` + Name string `protobuf:"bytes,10,opt,name=Name,json=name,proto3" json:"Name,omitempty"` // The metadata of the file share, optional. Metadata map[string]string `protobuf:"bytes,11,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -2747,7 +2747,7 @@ func (m *DeleteFileShareAclOpts) Reset() { *m = DeleteFileShareAclOpts{} func (m *DeleteFileShareAclOpts) String() string { return proto.CompactTextString(m) } func (*DeleteFileShareAclOpts) ProtoMessage() {} func (*DeleteFileShareAclOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{22} + return fileDescriptor_d10048d769ba1c4e, []int{22} } func (m *DeleteFileShareAclOpts) XXX_Unmarshal(b []byte) error { @@ -2866,7 +2866,7 @@ type CreateFileShareAclOpts struct { // The Context Context string `protobuf:"bytes,9,opt,name=context,proto3" json:"context,omitempty"` // The Name - Name string `protobuf:"bytes,10,opt,name=Name,proto3" json:"Name,omitempty"` + Name string `protobuf:"bytes,10,opt,name=Name,json=name,proto3" json:"Name,omitempty"` // The metadata of the file share, optional. Metadata map[string]string `protobuf:"bytes,11,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -2878,7 +2878,7 @@ func (m *CreateFileShareAclOpts) Reset() { *m = CreateFileShareAclOpts{} func (m *CreateFileShareAclOpts) String() string { return proto.CompactTextString(m) } func (*CreateFileShareAclOpts) ProtoMessage() {} func (*CreateFileShareAclOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{23} + return fileDescriptor_d10048d769ba1c4e, []int{23} } func (m *CreateFileShareAclOpts) XXX_Unmarshal(b []byte) error { @@ -3015,7 +3015,7 @@ func (m *CreateFileShareOpts) Reset() { *m = CreateFileShareOpts{} } func (m *CreateFileShareOpts) String() string { return proto.CompactTextString(m) } func (*CreateFileShareOpts) ProtoMessage() {} func (*CreateFileShareOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{24} + return fileDescriptor_d10048d769ba1c4e, []int{24} } func (m *CreateFileShareOpts) XXX_Unmarshal(b []byte) error { @@ -3164,7 +3164,7 @@ func (m *DeleteFileShareOpts) Reset() { *m = DeleteFileShareOpts{} } func (m *DeleteFileShareOpts) String() string { return proto.CompactTextString(m) } func (*DeleteFileShareOpts) ProtoMessage() {} func (*DeleteFileShareOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{25} + return fileDescriptor_d10048d769ba1c4e, []int{25} } func (m *DeleteFileShareOpts) XXX_Unmarshal(b []byte) error { @@ -3278,7 +3278,7 @@ func (m *CreateFileShareSnapshotOpts) Reset() { *m = CreateFileShareSnap func (m *CreateFileShareSnapshotOpts) String() string { return proto.CompactTextString(m) } func (*CreateFileShareSnapshotOpts) ProtoMessage() {} func (*CreateFileShareSnapshotOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{26} + return fileDescriptor_d10048d769ba1c4e, []int{26} } func (m *CreateFileShareSnapshotOpts) XXX_Unmarshal(b []byte) error { @@ -3386,7 +3386,7 @@ func (m *DeleteFileShareSnapshotOpts) Reset() { *m = DeleteFileShareSnap func (m *DeleteFileShareSnapshotOpts) String() string { return proto.CompactTextString(m) } func (*DeleteFileShareSnapshotOpts) ProtoMessage() {} func (*DeleteFileShareSnapshotOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{27} + return fileDescriptor_d10048d769ba1c4e, []int{27} } func (m *DeleteFileShareSnapshotOpts) XXX_Unmarshal(b []byte) error { @@ -3467,7 +3467,7 @@ func (m *GenericResponse) Reset() { *m = GenericResponse{} } func (m *GenericResponse) String() string { return proto.CompactTextString(m) } func (*GenericResponse) ProtoMessage() {} func (*GenericResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{28} + return fileDescriptor_d10048d769ba1c4e, []int{28} } func (m *GenericResponse) XXX_Unmarshal(b []byte) error { @@ -3544,7 +3544,7 @@ func (m *GenericResponse_Result) Reset() { *m = GenericResponse_Result{} func (m *GenericResponse_Result) String() string { return proto.CompactTextString(m) } func (*GenericResponse_Result) ProtoMessage() {} func (*GenericResponse_Result) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{28, 0} + return fileDescriptor_d10048d769ba1c4e, []int{28, 0} } func (m *GenericResponse_Result) XXX_Unmarshal(b []byte) error { @@ -3584,7 +3584,7 @@ func (m *GenericResponse_Error) Reset() { *m = GenericResponse_Error{} } func (m *GenericResponse_Error) String() string { return proto.CompactTextString(m) } func (*GenericResponse_Error) ProtoMessage() {} func (*GenericResponse_Error) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{28, 1} + return fileDescriptor_d10048d769ba1c4e, []int{28, 1} } func (m *GenericResponse_Error) XXX_Unmarshal(b []byte) error { @@ -3640,7 +3640,7 @@ func (m *GetMetricsOpts) Reset() { *m = GetMetricsOpts{} } func (m *GetMetricsOpts) String() string { return proto.CompactTextString(m) } func (*GetMetricsOpts) ProtoMessage() {} func (*GetMetricsOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{29} + return fileDescriptor_d10048d769ba1c4e, []int{29} } func (m *GetMetricsOpts) XXX_Unmarshal(b []byte) error { @@ -3715,7 +3715,7 @@ func (m *CollectMetricsOpts) Reset() { *m = CollectMetricsOpts{} } func (m *CollectMetricsOpts) String() string { return proto.CompactTextString(m) } func (*CollectMetricsOpts) ProtoMessage() {} func (*CollectMetricsOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{30} + return fileDescriptor_d10048d769ba1c4e, []int{30} } func (m *CollectMetricsOpts) XXX_Unmarshal(b []byte) error { @@ -3774,7 +3774,7 @@ func (m *NoParams) Reset() { *m = NoParams{} } func (m *NoParams) String() string { return proto.CompactTextString(m) } func (*NoParams) ProtoMessage() {} func (*NoParams) Descriptor() ([]byte, []int) { - return fileDescriptor_4c16552f9fdb66d8, []int{31} + return fileDescriptor_d10048d769ba1c4e, []int{31} } func (m *NoParams) XXX_Unmarshal(b []byte) error { @@ -3868,165 +3868,165 @@ func init() { } func init() { - proto.RegisterFile("model.proto", fileDescriptor_4c16552f9fdb66d8) -} - -var fileDescriptor_4c16552f9fdb66d8 = []byte{ - // 2458 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5b, 0xcb, 0x73, 0xe4, 0x46, - 0x19, 0xdf, 0x91, 0xe6, 0xf9, 0xcd, 0xfa, 0xd5, 0x7e, 0xac, 0x98, 0x75, 0x8c, 0x33, 0x84, 0x94, - 0x2b, 0x09, 0xce, 0x62, 0x52, 0x15, 0x1e, 0x15, 0xc0, 0x6b, 0x7b, 0x6d, 0x57, 0xd6, 0x59, 0x67, - 0x76, 0x37, 0x54, 0x71, 0xd3, 0x4a, 0xbd, 0x58, 0xb5, 0x1a, 0xf5, 0x20, 0xc9, 0xce, 0x9a, 0x23, - 0x70, 0x80, 0x3d, 0x51, 0x54, 0xfe, 0x01, 0x72, 0x06, 0x8e, 0xdc, 0x52, 0xfc, 0x11, 0x14, 0x1c, - 0xb9, 0x53, 0x45, 0x51, 0xc5, 0x85, 0x57, 0x71, 0xa0, 0xd4, 0x7a, 0x4c, 0xb7, 0xd4, 0x6a, 0x69, - 0x76, 0x66, 0x9c, 0x25, 0x99, 0xd3, 0xa8, 0xbf, 0x6e, 0x7d, 0xdd, 0xfd, 0xfb, 0xbe, 0xef, 0xd7, - 0x0f, 0x7d, 0x03, 0xed, 0x3e, 0x31, 0xb1, 0xbd, 0x3d, 0x70, 0x89, 0x4f, 0x50, 0x8d, 0xfe, 0x74, - 0x9f, 0xd5, 0x61, 0x71, 0xcf, 0xc5, 0xba, 0x8f, 0x3f, 0x20, 0xf6, 0x79, 0x1f, 0xdf, 0x1b, 0xf8, - 0x1e, 0x9a, 0x07, 0xc5, 0x32, 0xb5, 0xca, 0x66, 0x65, 0xab, 0xd5, 0x53, 0x2c, 0x13, 0x21, 0xa8, - 0x3a, 0x7a, 0x1f, 0x6b, 0x0a, 0x95, 0xd0, 0xe7, 0x40, 0xe6, 0x59, 0x3f, 0xc2, 0x9a, 0xba, 0x59, - 0xd9, 0x52, 0x7b, 0xf4, 0x19, 0x6d, 0x42, 0xdb, 0xc4, 0x9e, 0xe1, 0x5a, 0x03, 0xdf, 0x22, 0x8e, - 0x56, 0xa5, 0xcd, 0x59, 0x11, 0xda, 0x00, 0xf0, 0x1c, 0x7d, 0xe0, 0x9d, 0x11, 0xff, 0xd8, 0xd4, - 0x6a, 0xb4, 0x01, 0x23, 0x41, 0xaf, 0xc1, 0xa2, 0x7e, 0xa1, 0x5b, 0xb6, 0xfe, 0xc8, 0xb2, 0x2d, - 0xff, 0xf2, 0xfb, 0xc4, 0xc1, 0x5a, 0x9d, 0xb6, 0xca, 0xc8, 0xd1, 0x3a, 0xb4, 0x06, 0x2e, 0x79, - 0x6c, 0xd9, 0xf8, 0xd8, 0xd4, 0x1a, 0xb4, 0xd1, 0x50, 0x80, 0xd6, 0xa0, 0x3e, 0x20, 0xc4, 0x3e, - 0x36, 0xb5, 0x26, 0xad, 0x8a, 0x4a, 0xa8, 0x03, 0xcd, 0xe0, 0xe9, 0xbd, 0x60, 0x3e, 0x2d, 0x5a, - 0x93, 0x94, 0xd1, 0x2e, 0x34, 0xfb, 0xd8, 0xd7, 0x4d, 0xdd, 0xd7, 0x35, 0xd8, 0x54, 0xb7, 0xda, - 0x3b, 0x5f, 0x0e, 0xd1, 0xda, 0x4e, 0x43, 0xb4, 0x7d, 0x12, 0xb5, 0x3b, 0x70, 0x7c, 0xf7, 0xb2, - 0x97, 0xbc, 0x16, 0x4c, 0xd0, 0x74, 0xad, 0x0b, 0xec, 0xd2, 0x0e, 0xda, 0xe1, 0x04, 0x87, 0x12, - 0xa4, 0x41, 0xc3, 0x20, 0x8e, 0x8f, 0x9f, 0xfa, 0xda, 0x75, 0x5a, 0x19, 0x17, 0xd1, 0x19, 0xac, - 0xba, 0x78, 0x60, 0x5b, 0x86, 0x1e, 0x20, 0xb5, 0x4f, 0x5f, 0xd9, 0x0f, 0x46, 0x32, 0x47, 0x47, - 0xb2, 0x93, 0x37, 0x92, 0x9e, 0xe8, 0xa5, 0x70, 0x58, 0x62, 0x85, 0xe8, 0x15, 0x98, 0x63, 0x2a, - 0x8e, 0x4d, 0x6d, 0x9e, 0x8e, 0x84, 0x17, 0xa2, 0x2e, 0x5c, 0x8f, 0x0d, 0x73, 0x3f, 0x30, 0xf4, - 0x02, 0x35, 0x34, 0x27, 0x43, 0x6f, 0xc0, 0x52, 0x5c, 0xbe, 0xe3, 0x92, 0xfe, 0x9e, 0x4d, 0xce, - 0x4d, 0x6d, 0x71, 0xb3, 0xb2, 0xd5, 0xec, 0x65, 0x2b, 0x82, 0xb9, 0x47, 0xf6, 0xd1, 0x96, 0xc2, - 0xb9, 0x47, 0xc5, 0xce, 0xb7, 0x60, 0x8e, 0x03, 0x14, 0x2d, 0x82, 0xfa, 0x04, 0x5f, 0x46, 0x2e, - 0x18, 0x3c, 0xa2, 0x15, 0xa8, 0x5d, 0xe8, 0xf6, 0x79, 0xec, 0x84, 0x61, 0xe1, 0x9b, 0xca, 0xd7, - 0x2b, 0x9d, 0x23, 0xe8, 0xe4, 0x63, 0x30, 0x8a, 0xa6, 0xee, 0xaf, 0x15, 0x58, 0xdc, 0xc7, 0x36, - 0x96, 0x06, 0x03, 0xe7, 0x76, 0x4a, 0xbe, 0xdb, 0xa9, 0x9c, 0xdb, 0xb1, 0xae, 0x55, 0xe5, 0x5c, - 0x2b, 0xdd, 0x61, 0x49, 0xd7, 0xaa, 0xc9, 0x5c, 0xab, 0xce, 0xbb, 0x16, 0x03, 0x7c, 0x63, 0x72, - 0xc0, 0x77, 0xff, 0xac, 0xc2, 0xe2, 0xc1, 0x53, 0x1f, 0x3b, 0xe6, 0x8c, 0x3b, 0x24, 0xdc, 0x91, - 0x86, 0x68, 0x0a, 0xdc, 0xc1, 0x18, 0x78, 0x6e, 0x82, 0x06, 0x7e, 0xa6, 0x82, 0xc6, 0xf2, 0xcd, - 0xfd, 0x08, 0xec, 0x29, 0x1b, 0xba, 0x03, 0xcd, 0x0b, 0xda, 0x5f, 0x62, 0xe6, 0xa4, 0xcc, 0x1b, - 0xae, 0x9e, 0x36, 0xdc, 0x31, 0x63, 0x84, 0x06, 0x35, 0xc2, 0x57, 0x04, 0xb4, 0xc9, 0x4e, 0xa3, - 0xa4, 0x31, 0x9a, 0x32, 0x63, 0xb4, 0x72, 0x8d, 0x01, 0x13, 0x34, 0xc6, 0xc7, 0x0a, 0x68, 0x2c, - 0x57, 0x48, 0x8d, 0xc1, 0x42, 0xa8, 0xa4, 0x20, 0x64, 0x41, 0x52, 0x39, 0x90, 0xf2, 0xd4, 0x97, - 0x04, 0xa9, 0x2a, 0x03, 0xa9, 0x96, 0x0b, 0x52, 0x7d, 0x82, 0x20, 0x7d, 0xa2, 0x42, 0x87, 0x35, - 0xf5, 0xae, 0xef, 0xeb, 0xc6, 0x59, 0x1f, 0x3b, 0xa3, 0xc3, 0x94, 0xc7, 0xe4, 0xaf, 0xc0, 0x9c, - 0x49, 0xee, 0x12, 0x43, 0xb7, 0x43, 0xe5, 0x74, 0xda, 0xcd, 0x1e, 0x2f, 0x0c, 0xfc, 0xb4, 0x7f, - 0x6e, 0xfb, 0xd6, 0xa9, 0xee, 0x9f, 0xd1, 0xb9, 0x37, 0x7b, 0x43, 0x01, 0x7a, 0x1d, 0x9a, 0x67, - 0xc4, 0xf3, 0x8f, 0x9d, 0xc7, 0x84, 0x4e, 0xbf, 0xbd, 0xb3, 0x10, 0x99, 0xe0, 0x28, 0x12, 0xf7, - 0x92, 0x06, 0xe8, 0xdd, 0x8c, 0x53, 0xbf, 0x29, 0x70, 0x6a, 0x7e, 0xa6, 0x53, 0x70, 0xeb, 0x57, - 0x61, 0x7e, 0xd7, 0x30, 0xb0, 0xe7, 0x9d, 0x06, 0x7d, 0x1b, 0xc4, 0x8e, 0xbc, 0x3b, 0x25, 0x1d, - 0xcf, 0x7e, 0xff, 0x56, 0xa0, 0xc3, 0x7a, 0xe1, 0x14, 0xec, 0xc7, 0x62, 0x5f, 0x1d, 0x05, 0xfb, - 0x1a, 0x87, 0x7d, 0xfe, 0x28, 0x4b, 0x62, 0x5f, 0x97, 0x61, 0xdf, 0x28, 0xc2, 0xbe, 0x39, 0x79, - 0xec, 0x7f, 0xa3, 0xc2, 0x7a, 0xe8, 0x51, 0x71, 0xec, 0x17, 0xa0, 0xcf, 0x2f, 0xc8, 0x4a, 0x66, - 0x41, 0xce, 0x44, 0x8a, 0x5a, 0x18, 0x29, 0x55, 0x59, 0xa4, 0xd4, 0x8a, 0xac, 0x75, 0xc2, 0x58, - 0xab, 0x4e, 0xad, 0xf5, 0x55, 0x2e, 0x52, 0xc4, 0xf3, 0x2a, 0x69, 0xaf, 0x86, 0xcc, 0x5e, 0xcd, - 0x22, 0x7b, 0xb5, 0x26, 0x6f, 0xaf, 0xbf, 0x28, 0xb0, 0x1e, 0x7a, 0xe1, 0x84, 0xec, 0xc5, 0x62, - 0xad, 0x8e, 0x82, 0x75, 0x95, 0xc3, 0x5a, 0x36, 0xa6, 0x29, 0x6c, 0x6e, 0xb3, 0x58, 0x37, 0x26, - 0x8f, 0xf5, 0x47, 0x15, 0x68, 0xc6, 0x20, 0xd0, 0x6d, 0xa0, 0xad, 0xfb, 0x8f, 0x89, 0xdb, 0x8f, - 0xde, 0x4e, 0xca, 0x01, 0xeb, 0x10, 0xef, 0xc1, 0xe5, 0x20, 0xd6, 0x11, 0x95, 0x82, 0x9d, 0x50, - 0x00, 0x5d, 0xc4, 0x45, 0xf4, 0x99, 0xda, 0x67, 0x10, 0xad, 0x9a, 0x8a, 0x35, 0x40, 0xb7, 0x00, - 0x2c, 0xc7, 0xf2, 0x2d, 0xdd, 0x27, 0xae, 0x17, 0xd1, 0xcd, 0x62, 0x04, 0xea, 0x71, 0x5c, 0xd1, - 0x63, 0xda, 0x74, 0xf7, 0xa0, 0x95, 0x54, 0x84, 0xbb, 0x53, 0xd7, 0xa7, 0x00, 0xc6, 0xc3, 0x8a, - 0xca, 0xb4, 0x2e, 0x86, 0x27, 0x22, 0xca, 0xb8, 0xdc, 0xbd, 0x00, 0x08, 0x69, 0x8c, 0x1e, 0x0e, - 0xdf, 0x84, 0x2a, 0xb5, 0x69, 0x85, 0x76, 0x7f, 0x33, 0xea, 0x7e, 0xd8, 0x60, 0x7b, 0x78, 0xbc, - 0xa4, 0x0d, 0x3b, 0x6f, 0x43, 0xeb, 0xf9, 0x4e, 0x5b, 0x9f, 0xb4, 0x60, 0x35, 0x8c, 0x4b, 0xe6, - 0xf8, 0x56, 0x7a, 0x6b, 0x99, 0xda, 0x46, 0xaa, 0xd9, 0x6d, 0xe4, 0x16, 0x2c, 0x0c, 0x5c, 0xab, - 0xaf, 0xbb, 0x97, 0x1f, 0xc4, 0x6b, 0x44, 0x88, 0x75, 0x5a, 0x4c, 0x8f, 0xb1, 0xd8, 0x20, 0x8e, - 0xc9, 0xb6, 0x0d, 0x7d, 0x30, 0x5b, 0xf1, 0x29, 0x9f, 0x33, 0x7e, 0x5c, 0x81, 0xf5, 0x68, 0xfc, - 0xc2, 0x53, 0xaf, 0xd6, 0xa6, 0x86, 0xfb, 0x36, 0x47, 0x7c, 0x29, 0x80, 0xb7, 0x4f, 0x25, 0x0a, - 0x42, 0xdb, 0x4a, 0xfb, 0x40, 0x3f, 0xab, 0xc0, 0x46, 0x02, 0x8c, 0x78, 0x18, 0xd7, 0xe9, 0x30, - 0xbe, 0x2b, 0x1d, 0xc6, 0x7d, 0xa9, 0x8a, 0x70, 0x20, 0x05, 0xfd, 0x04, 0x18, 0x9a, 0xc4, 0x78, - 0x72, 0x6c, 0x46, 0x27, 0x9f, 0xa8, 0x94, 0x22, 0x94, 0x79, 0x19, 0xa1, 0x2c, 0xf0, 0x84, 0xb2, - 0x0e, 0x2d, 0xcb, 0x8b, 0x10, 0x8a, 0x2e, 0x33, 0x86, 0x02, 0x74, 0x87, 0xe1, 0xbd, 0x25, 0x3a, - 0xc7, 0xd7, 0xa4, 0x73, 0xcc, 0x23, 0xbc, 0x6f, 0xc0, 0xfc, 0x45, 0x12, 0x54, 0x77, 0x2d, 0xcf, - 0xd7, 0x10, 0xd5, 0xb6, 0x94, 0x89, 0xb8, 0x5e, 0xaa, 0x61, 0xe0, 0xd8, 0xcc, 0x55, 0xcd, 0x09, - 0x31, 0xb1, 0xb6, 0x1c, 0x3a, 0x76, 0x4a, 0x1c, 0x38, 0x36, 0x33, 0x9e, 0x53, 0xec, 0x5a, 0xc4, - 0xd4, 0x56, 0xe8, 0x61, 0x2c, 0x5b, 0x81, 0x76, 0x60, 0x85, 0x11, 0xde, 0xd6, 0x1d, 0xf3, 0x43, - 0xcb, 0xf4, 0xcf, 0xb4, 0x55, 0xfa, 0x82, 0xb0, 0x8e, 0xdd, 0xc7, 0xaf, 0xf1, 0xfb, 0xf8, 0x7b, - 0xf0, 0x72, 0xa1, 0x9b, 0x8d, 0x74, 0xcf, 0xf3, 0x3e, 0x7c, 0xa9, 0x84, 0xc3, 0x8c, 0xa4, 0x72, - 0xac, 0x35, 0xe1, 0x1f, 0x0d, 0x58, 0x0d, 0xd7, 0xba, 0x19, 0x7f, 0x4d, 0x8d, 0xbf, 0x84, 0x00, - 0x5f, 0x3d, 0x7f, 0x89, 0x87, 0xf1, 0x62, 0xf2, 0x17, 0xcb, 0x50, 0x8b, 0x1c, 0x43, 0x89, 0x67, - 0x91, 0xc7, 0x50, 0x1c, 0x0f, 0x2e, 0xa5, 0x79, 0x90, 0x09, 0x7c, 0xf4, 0x39, 0x0c, 0xfc, 0x03, - 0x47, 0x7f, 0x64, 0xcf, 0x02, 0x7f, 0x7a, 0x81, 0x2f, 0x04, 0xf8, 0xea, 0x03, 0x5f, 0x3c, 0x8c, - 0xff, 0xb7, 0xc0, 0x17, 0xcf, 0x62, 0x16, 0xf8, 0x23, 0x06, 0xfe, 0x7f, 0x1a, 0xb0, 0xb6, 0x6f, - 0x79, 0xb3, 0xc8, 0x1f, 0x2d, 0xf2, 0x7f, 0x52, 0x2e, 0xf2, 0xbf, 0x13, 0xaf, 0x52, 0x42, 0x84, - 0xc7, 0x0e, 0xfd, 0x9f, 0x97, 0x0d, 0xfd, 0x5d, 0xf9, 0x38, 0x5e, 0xcc, 0xd8, 0x3f, 0xcc, 0xc4, - 0xfe, 0xeb, 0xf2, 0x69, 0xcc, 0x82, 0x7f, 0xc4, 0xe0, 0xff, 0x63, 0x0b, 0x6e, 0xdc, 0xd1, 0x2d, - 0x9b, 0x5c, 0x60, 0x77, 0x16, 0xfd, 0xe5, 0xa3, 0xff, 0xa7, 0xe5, 0xa2, 0x3f, 0x5e, 0x70, 0x73, - 0x20, 0x1e, 0x3b, 0xfc, 0x9f, 0x95, 0x0d, 0xff, 0xdb, 0x05, 0x03, 0x79, 0x31, 0xe3, 0xff, 0x16, - 0x2c, 0xeb, 0xb6, 0x4d, 0x3e, 0x0c, 0xaf, 0x5b, 0x71, 0xf4, 0xb9, 0x39, 0xba, 0xbe, 0x10, 0x55, - 0xa1, 0x6d, 0x40, 0xc9, 0x28, 0x6f, 0xeb, 0xc6, 0x13, 0xec, 0x98, 0xc7, 0x66, 0x94, 0x98, 0x21, - 0xa8, 0x41, 0x47, 0x0c, 0xc3, 0x84, 0x57, 0x15, 0x6f, 0x14, 0x20, 0x55, 0x8a, 0x62, 0x96, 0x25, - 0x14, 0xb3, 0xf2, 0xf9, 0xa2, 0x98, 0x8e, 0x07, 0x0b, 0x43, 0x2c, 0x7f, 0x78, 0x8e, 0xbd, 0x5c, - 0xbb, 0x56, 0x46, 0xb5, 0xab, 0x92, 0x67, 0xd7, 0xee, 0xaf, 0x94, 0xf8, 0x1a, 0x36, 0x54, 0x70, - 0xe8, 0x92, 0xf3, 0x41, 0x69, 0x56, 0xe3, 0x3d, 0x56, 0xcd, 0x78, 0x6c, 0xf1, 0xd7, 0x7e, 0x11, - 0x3b, 0xd5, 0x72, 0xd8, 0x69, 0x03, 0x40, 0x37, 0xa3, 0x89, 0x7a, 0xf4, 0x13, 0x4f, 0xab, 0xc7, - 0x48, 0xc2, 0xcc, 0xa6, 0x3e, 0xb9, 0xc0, 0x71, 0x93, 0x06, 0x6d, 0xc2, 0x0b, 0x73, 0x59, 0x2c, - 0xf7, 0xdb, 0x67, 0xf7, 0xf7, 0x15, 0x58, 0x7d, 0x38, 0x30, 0x4b, 0x60, 0xc4, 0xe3, 0xa1, 0x64, - 0xf0, 0xe0, 0x67, 0xa0, 0x16, 0xcf, 0xa0, 0x2a, 0x9f, 0x41, 0x2d, 0x6f, 0x06, 0xfc, 0x57, 0x92, - 0xee, 0x65, 0x7c, 0x57, 0x55, 0x34, 0x81, 0xa1, 0x6a, 0x85, 0x53, 0x5d, 0x64, 0x68, 0xa6, 0xeb, - 0x2a, 0xdf, 0xf5, 0x7f, 0x2b, 0xb0, 0x18, 0xfa, 0x28, 0x93, 0x26, 0xf4, 0x2a, 0xcc, 0xeb, 0xfc, - 0x57, 0x9b, 0x70, 0x08, 0x29, 0x69, 0xd0, 0xce, 0x20, 0x8e, 0x83, 0x0d, 0x1a, 0x98, 0x01, 0xf7, - 0x84, 0xc3, 0x4a, 0x49, 0xb9, 0xf4, 0x1b, 0x95, 0x4b, 0xbf, 0x49, 0x77, 0x9d, 0x4b, 0x4b, 0xb9, - 0x33, 0x18, 0x6f, 0xdf, 0x10, 0x4c, 0x7f, 0x1f, 0x7f, 0x6a, 0xd3, 0x4f, 0x77, 0x7d, 0xd5, 0xd3, - 0xff, 0x9d, 0x0a, 0x6b, 0xa1, 0xe7, 0xdd, 0xb1, 0x6c, 0x7c, 0xff, 0x4c, 0x77, 0xf1, 0xae, 0x61, - 0x0b, 0x5d, 0x6f, 0x13, 0xda, 0x01, 0xcf, 0x7b, 0x41, 0x9b, 0xc4, 0xff, 0x58, 0x51, 0x89, 0x3d, - 0x14, 0x82, 0xaa, 0x7f, 0x39, 0x88, 0x73, 0x51, 0xe8, 0x33, 0x65, 0x18, 0x0a, 0xeb, 0x9e, 0x3e, - 0x88, 0xd8, 0x84, 0x7e, 0x5d, 0x0b, 0x18, 0x26, 0x25, 0x0f, 0x76, 0x32, 0xa1, 0xec, 0x01, 0x89, - 0x42, 0x28, 0x29, 0xe7, 0xa7, 0xd1, 0x8d, 0x91, 0x55, 0x81, 0xa0, 0x4a, 0xdf, 0x09, 0x73, 0x29, - 0xe8, 0x33, 0xb7, 0x97, 0x6f, 0xf3, 0x7b, 0x79, 0x21, 0x90, 0x79, 0x26, 0x1d, 0xdf, 0x70, 0xe1, - 0xba, 0x30, 0x33, 0xdc, 0xd8, 0x86, 0x13, 0x03, 0x39, 0x1d, 0xc3, 0x7d, 0x54, 0x85, 0xe5, 0x54, - 0x7f, 0x53, 0x4e, 0xd8, 0x1b, 0x65, 0x09, 0x1f, 0xae, 0x2f, 0xf5, 0xdc, 0x23, 0x44, 0x23, 0x75, - 0x84, 0xd8, 0x67, 0x70, 0x6d, 0x52, 0x5c, 0xb7, 0xc4, 0xb8, 0x8e, 0x90, 0x62, 0xd0, 0x92, 0xd9, - 0x1a, 0x72, 0x93, 0xd5, 0xda, 0xbc, 0xff, 0x6c, 0xc1, 0x02, 0x7e, 0x3a, 0x20, 0xae, 0x7f, 0x97, - 0x84, 0x7b, 0x47, 0x8f, 0x9e, 0x22, 0x5a, 0xbd, 0xb4, 0x38, 0x95, 0x7c, 0x31, 0x97, 0x49, 0xbe, - 0x60, 0xd2, 0xad, 0x99, 0xcd, 0x3f, 0x27, 0x1b, 0xcf, 0x2d, 0xfe, 0xa6, 0xc0, 0x72, 0x8a, 0x3f, - 0x46, 0xda, 0x00, 0xec, 0x67, 0x96, 0x98, 0x2d, 0x31, 0x2b, 0x5d, 0x75, 0xc6, 0x60, 0xe2, 0xc8, - 0x0d, 0xc6, 0x91, 0x23, 0x77, 0x72, 0x86, 0x61, 0x9d, 0x94, 0x45, 0x46, 0x6b, 0x09, 0x8d, 0x36, - 0x1e, 0xe0, 0xff, 0x52, 0xe0, 0x66, 0xca, 0x3f, 0xaf, 0x28, 0x81, 0x36, 0xc5, 0xc7, 0xb5, 0x2c, - 0x1f, 0x3f, 0x7f, 0x2a, 0x1a, 0x63, 0x86, 0x26, 0x6f, 0x86, 0xbb, 0x8c, 0x83, 0xb4, 0xa8, 0x83, - 0xdc, 0x12, 0x47, 0x69, 0x99, 0xd4, 0xd2, 0xf1, 0xa0, 0xff, 0xad, 0x02, 0x37, 0x53, 0x5e, 0x29, - 0x85, 0xbe, 0x78, 0x01, 0x7b, 0xee, 0xed, 0x2f, 0x0b, 0x58, 0x2d, 0x1f, 0xb0, 0x3a, 0x07, 0x98, - 0x64, 0xec, 0xd3, 0x01, 0xec, 0xaf, 0x15, 0x58, 0x38, 0xc4, 0x0e, 0x76, 0x2d, 0xa3, 0x87, 0xbd, - 0x01, 0x71, 0x3c, 0x8c, 0xde, 0x86, 0xba, 0x8b, 0xbd, 0x73, 0xdb, 0xa7, 0x2a, 0xda, 0x3b, 0x2f, - 0x45, 0x83, 0x4b, 0xb5, 0xdb, 0xee, 0xd1, 0x46, 0x47, 0xd7, 0x7a, 0x51, 0x73, 0xf4, 0x16, 0xd4, - 0xb0, 0xeb, 0x12, 0x97, 0x76, 0xd3, 0xde, 0x59, 0xcf, 0x79, 0xef, 0x20, 0x68, 0x73, 0x74, 0xad, - 0x17, 0x36, 0xee, 0x74, 0xa1, 0x1e, 0x6a, 0x0a, 0x10, 0xeb, 0x63, 0xcf, 0xd3, 0x7f, 0x10, 0xe7, - 0x31, 0xc5, 0xc5, 0xce, 0x3b, 0x50, 0xa3, 0x6f, 0x05, 0x71, 0x61, 0x10, 0x33, 0xae, 0xa7, 0xcf, - 0xe9, 0xb8, 0x50, 0x32, 0x71, 0x71, 0xbb, 0x01, 0x35, 0x17, 0x0f, 0xec, 0xcb, 0xee, 0xc7, 0x15, - 0x98, 0x3f, 0xc4, 0xfe, 0x09, 0xf6, 0x5d, 0xcb, 0xf0, 0xa8, 0x4b, 0x6c, 0x00, 0x58, 0x8e, 0xe7, - 0xeb, 0x8e, 0x11, 0x78, 0x40, 0xa8, 0x97, 0x91, 0x04, 0xf5, 0x7d, 0xda, 0x9c, 0x3d, 0xd8, 0x0d, - 0x25, 0x68, 0x1d, 0x5a, 0x9e, 0xaf, 0xbb, 0xfe, 0x03, 0x2b, 0xf1, 0x8f, 0xa1, 0x20, 0x98, 0x12, - 0x76, 0x4c, 0x5a, 0x17, 0xb9, 0x47, 0x54, 0xcc, 0x27, 0xbc, 0xee, 0x2f, 0x2a, 0x80, 0xf6, 0x88, - 0x6d, 0x63, 0x63, 0xa4, 0x81, 0x6e, 0x42, 0x7b, 0x38, 0x2c, 0x4f, 0x53, 0x28, 0xb3, 0xb1, 0x22, - 0xb6, 0x4b, 0x95, 0xf7, 0xd5, 0x02, 0x76, 0xee, 0x02, 0x34, 0xdf, 0x23, 0xa7, 0xba, 0xab, 0xf7, - 0xbd, 0x9d, 0x3f, 0x00, 0xc0, 0x1e, 0x71, 0x7c, 0x37, 0x18, 0xa2, 0x8b, 0x76, 0xe1, 0x3a, 0x7b, - 0x8b, 0x80, 0x6e, 0xe4, 0xfc, 0x5f, 0xa9, 0xb3, 0x26, 0x76, 0x87, 0xee, 0xb5, 0x40, 0x05, 0x7b, - 0x46, 0x4d, 0x54, 0xa4, 0xff, 0x21, 0x23, 0x57, 0xc1, 0xfe, 0xdd, 0x22, 0x51, 0x91, 0xfe, 0x0f, - 0x86, 0x44, 0xc5, 0xfb, 0xb0, 0x22, 0xfa, 0xb3, 0x00, 0xfa, 0x62, 0xc1, 0x3f, 0x09, 0xe4, 0x2a, - 0x45, 0xa9, 0xf5, 0x89, 0xca, 0xbc, 0xbc, 0x7b, 0x89, 0xca, 0x87, 0xf1, 0xe6, 0x3c, 0x9d, 0x81, - 0x8c, 0x5e, 0x2e, 0x4c, 0x0e, 0x97, 0xab, 0x15, 0x27, 0x36, 0x27, 0x6a, 0xf3, 0xf3, 0x9e, 0x25, - 0x6a, 0xdf, 0x85, 0xa5, 0x4c, 0x76, 0x14, 0x5a, 0x97, 0xe5, 0x4d, 0xc9, 0x95, 0x65, 0x12, 0x19, - 0x12, 0x65, 0xc2, 0x14, 0x07, 0xb9, 0xb2, 0xcc, 0xc7, 0xd1, 0x44, 0x99, 0xf0, 0xb3, 0xa9, 0x44, - 0xd9, 0x09, 0xa0, 0xec, 0xd7, 0x16, 0xf4, 0x92, 0xf4, 0x43, 0x8c, 0x44, 0xdd, 0x3d, 0x58, 0x16, - 0x5c, 0xad, 0xa2, 0x0d, 0xf9, 0xb5, 0x6b, 0x19, 0x33, 0x30, 0x97, 0x40, 0x29, 0x33, 0xa4, 0xae, - 0x87, 0xe4, 0xca, 0x32, 0x57, 0x62, 0x89, 0x32, 0xe1, 0x65, 0x59, 0x19, 0x9b, 0x8a, 0x94, 0x09, - 0x2f, 0xae, 0x24, 0xca, 0xde, 0x01, 0x18, 0x92, 0x3b, 0x5a, 0x4d, 0xda, 0xb1, 0x34, 0x2a, 0x79, - 0xfd, 0x00, 0xe6, 0x79, 0xda, 0x45, 0x5f, 0x88, 0x21, 0xca, 0xb0, 0xb1, 0x44, 0xcd, 0x5b, 0xd0, - 0x38, 0xc4, 0xfe, 0x43, 0xd7, 0xf6, 0x50, 0x9c, 0x46, 0x1d, 0x73, 0x67, 0xfe, 0x5b, 0x3b, 0x7f, - 0x02, 0x98, 0x3b, 0x75, 0xc9, 0x85, 0xe5, 0x59, 0xc4, 0xd9, 0x27, 0xc6, 0x93, 0x19, 0xb1, 0xce, - 0x88, 0x75, 0x46, 0xac, 0x33, 0x62, 0x7d, 0x11, 0x88, 0x75, 0x42, 0xcc, 0x38, 0x26, 0x3f, 0x3f, - 0x1f, 0xb1, 0xfe, 0x53, 0x85, 0xe5, 0xe4, 0x40, 0xc5, 0xec, 0x5b, 0x0f, 0x61, 0x21, 0x75, 0x3c, - 0x45, 0x9d, 0xfc, 0xcb, 0x25, 0xc9, 0xb0, 0x0e, 0x61, 0x21, 0x75, 0x6c, 0x4b, 0x14, 0x09, 0x2e, - 0x48, 0x24, 0x8a, 0xbe, 0x07, 0x37, 0x72, 0x0e, 0xcc, 0xa8, 0x5b, 0x7c, 0xa0, 0x96, 0x2b, 0xce, - 0x39, 0x58, 0x26, 0x8a, 0x25, 0x07, 0x4f, 0x79, 0x78, 0x66, 0x2f, 0x38, 0x93, 0xf0, 0x14, 0xdf, - 0x7d, 0x16, 0x44, 0x7b, 0xe6, 0xa2, 0x7b, 0x18, 0xed, 0xc2, 0x3b, 0x70, 0x89, 0xe5, 0xff, 0xae, - 0xc2, 0x5c, 0xd2, 0x9c, 0x2e, 0xa9, 0x33, 0x9b, 0x7f, 0xd6, 0x6d, 0xfe, 0xcb, 0x0a, 0x40, 0xb8, - 0x88, 0xc6, 0x7b, 0x28, 0xf6, 0x33, 0x60, 0xb2, 0x7b, 0x49, 0x7f, 0x1b, 0x2c, 0xda, 0x43, 0x09, - 0x54, 0xa4, 0xbf, 0xaf, 0xe5, 0xab, 0x78, 0x54, 0xa7, 0x15, 0x5f, 0xfb, 0x5f, 0x00, 0x00, 0x00, - 0xff, 0xff, 0xf7, 0x00, 0xea, 0xc0, 0x88, 0x45, 0x00, 0x00, + proto.RegisterFile("proto/model.proto", fileDescriptor_d10048d769ba1c4e) +} + +var fileDescriptor_d10048d769ba1c4e = []byte{ + // 2462 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xec, 0x5b, 0xcd, 0x73, 0x1c, 0x47, + 0x15, 0xcf, 0xee, 0xec, 0xe7, 0x93, 0x25, 0xad, 0x5a, 0x92, 0xbd, 0x6c, 0x14, 0xe3, 0x2c, 0x90, + 0x72, 0x25, 0x41, 0x36, 0x22, 0x55, 0xe1, 0xa3, 0x02, 0xc8, 0x92, 0x2c, 0xbb, 0x62, 0xc7, 0xca, + 0xda, 0x0e, 0x55, 0xdc, 0xc6, 0x3b, 0x6d, 0x34, 0xe5, 0xd9, 0x9d, 0x65, 0x66, 0xa4, 0x58, 0x1c, + 0x81, 0x03, 0xf8, 0x44, 0x51, 0xf9, 0x07, 0xc8, 0x19, 0x38, 0x72, 0x4b, 0xf1, 0x47, 0x50, 0x70, + 0xe4, 0x4e, 0x15, 0x45, 0x15, 0x17, 0xbe, 0x8a, 0x03, 0xdd, 0x3d, 0x1f, 0xdb, 0xdd, 0xd3, 0xd3, + 0x33, 0xeb, 0xdd, 0x55, 0x0c, 0xd9, 0xd3, 0xce, 0x74, 0xf7, 0xbc, 0x7e, 0xfd, 0x7b, 0xef, 0xfd, + 0xfa, 0xeb, 0x2d, 0xac, 0x8d, 0x3c, 0x37, 0x70, 0xaf, 0x0d, 0x5c, 0x0b, 0x3b, 0xdb, 0xec, 0x19, + 0x55, 0xd9, 0x4f, 0xf7, 0x59, 0x0d, 0x5a, 0x7b, 0x1e, 0x36, 0x03, 0xfc, 0x81, 0xeb, 0x9c, 0x0c, + 0xf0, 0xbd, 0x51, 0xe0, 0xa3, 0x15, 0x28, 0xdb, 0x56, 0xbb, 0x74, 0xa5, 0x74, 0xb5, 0xd9, 0x23, + 0x4f, 0x08, 0x41, 0x65, 0x68, 0x0e, 0x70, 0xbb, 0xcc, 0x4a, 0xd8, 0x33, 0x2d, 0xf3, 0xed, 0x1f, + 0xe2, 0xb6, 0x41, 0xca, 0x8c, 0x1e, 0x7b, 0x46, 0x57, 0x60, 0xc9, 0xc2, 0x7e, 0xdf, 0xb3, 0x47, + 0x81, 0xed, 0x0e, 0xdb, 0x15, 0xd6, 0x9c, 0x2f, 0x42, 0x97, 0x01, 0xfc, 0xa1, 0x39, 0xf2, 0x8f, + 0xdd, 0xe0, 0xb6, 0xd5, 0xae, 0xb2, 0x06, 0x5c, 0x09, 0x7a, 0x1d, 0x5a, 0xe6, 0xa9, 0x69, 0x3b, + 0xe6, 0x23, 0xdb, 0xb1, 0x83, 0xb3, 0xef, 0xb9, 0x43, 0xdc, 0xae, 0xb1, 0x56, 0xa9, 0x72, 0xb4, + 0x05, 0x4d, 0x32, 0x86, 0xc7, 0xb6, 0x83, 0x89, 0xa8, 0x3a, 0x6b, 0x34, 0x2e, 0x40, 0x17, 0xa1, + 0x36, 0x72, 0x5d, 0x87, 0x54, 0x35, 0x58, 0x55, 0xf4, 0x86, 0x3a, 0xd0, 0xa0, 0x4f, 0xef, 0xd1, + 0xf1, 0x34, 0x59, 0x4d, 0xf2, 0x8e, 0x76, 0xa1, 0x31, 0xc0, 0x81, 0x69, 0x99, 0x81, 0xd9, 0x86, + 0x2b, 0xc6, 0xd5, 0xa5, 0x9d, 0x2f, 0x85, 0x68, 0x6d, 0xcb, 0x10, 0x6d, 0xdf, 0x8d, 0xda, 0x1d, + 0x0c, 0x03, 0xef, 0xac, 0x97, 0x7c, 0x46, 0x07, 0x68, 0x79, 0xf6, 0x29, 0xf6, 0x58, 0x07, 0x4b, + 0xe1, 0x00, 0xc7, 0x25, 0xa8, 0x0d, 0xf5, 0xbe, 0x3b, 0x0c, 0xf0, 0xd3, 0xa0, 0x7d, 0x81, 0x55, + 0xc6, 0xaf, 0xe8, 0x18, 0x36, 0x3d, 0x3c, 0x72, 0xec, 0xbe, 0x49, 0x91, 0xda, 0x67, 0x9f, 0xec, + 0x53, 0x4d, 0x96, 0x99, 0x26, 0x3b, 0x59, 0x9a, 0xf4, 0x54, 0x1f, 0x85, 0x6a, 0xa9, 0x05, 0xa2, + 0x2f, 0xc2, 0x32, 0x57, 0x41, 0x10, 0x5a, 0x61, 0x9a, 0x88, 0x85, 0xa8, 0x0b, 0x17, 0x62, 0xc3, + 0xdc, 0xa7, 0x86, 0x5e, 0x65, 0x86, 0x16, 0xca, 0xd0, 0x9b, 0xb0, 0x16, 0xbf, 0xdf, 0xf4, 0xdc, + 0xc1, 0x9e, 0xe3, 0x9e, 0x58, 0xed, 0x16, 0x69, 0xd8, 0xe8, 0xa5, 0x2b, 0xe8, 0xd8, 0x23, 0xfb, + 0xb4, 0xd7, 0xc2, 0xb1, 0x47, 0xaf, 0x9d, 0x6f, 0xc2, 0xb2, 0x00, 0x28, 0x6a, 0x81, 0xf1, 0x04, + 0x9f, 0x45, 0x2e, 0x48, 0x1f, 0xd1, 0x06, 0x54, 0x4f, 0x4d, 0xe7, 0x24, 0x76, 0xc2, 0xf0, 0xe5, + 0x1b, 0xe5, 0xaf, 0x95, 0x3a, 0xb7, 0xa0, 0x93, 0x8d, 0xc1, 0x24, 0x92, 0xba, 0xbf, 0x2a, 0x43, + 0x6b, 0x1f, 0x3b, 0x58, 0x1b, 0x0c, 0x82, 0xdb, 0x95, 0xb3, 0xdd, 0xce, 0x10, 0xdc, 0x8e, 0x77, + 0xad, 0x8a, 0xe0, 0x5a, 0x72, 0x87, 0x05, 0x5d, 0xab, 0xaa, 0x73, 0xad, 0x9a, 0xe8, 0x5a, 0x1c, + 0xf0, 0xf5, 0xd9, 0x01, 0xdf, 0xfd, 0x93, 0x01, 0xad, 0x83, 0xa7, 0x01, 0x1e, 0x5a, 0x0b, 0xee, + 0xd0, 0x70, 0x87, 0x0c, 0xd1, 0x1c, 0xb8, 0x83, 0x33, 0xf0, 0xf2, 0x0c, 0x0d, 0xfc, 0xcc, 0x80, + 0x36, 0xcf, 0x37, 0xf7, 0x23, 0xb0, 0xe7, 0x6c, 0x68, 0x02, 0xf3, 0x29, 0xeb, 0x2f, 0x31, 0x73, + 0xf2, 0x2e, 0x1a, 0xae, 0x26, 0x1b, 0xee, 0x36, 0x67, 0x84, 0x3a, 0x33, 0xc2, 0x97, 0x15, 0xb4, + 0xc9, 0x0f, 0xa3, 0xa0, 0x31, 0x1a, 0x3a, 0x63, 0x34, 0x33, 0x8d, 0x01, 0x33, 0x34, 0xc6, 0xc7, + 0x65, 0x68, 0xf3, 0x5c, 0xa1, 0x35, 0x06, 0x0f, 0x61, 0x59, 0x82, 0x90, 0x07, 0xc9, 0x10, 0x40, + 0xca, 0x12, 0x5f, 0x10, 0xa4, 0x8a, 0x0e, 0xa4, 0x6a, 0x26, 0x48, 0xb5, 0x19, 0x82, 0xf4, 0x89, + 0x01, 0x1d, 0xde, 0xd4, 0xbb, 0x41, 0x60, 0xf6, 0x8f, 0x07, 0x78, 0x38, 0x39, 0x4c, 0x59, 0x4c, + 0x4e, 0x66, 0x4f, 0xcb, 0xbd, 0xe3, 0xf6, 0x4d, 0x27, 0x14, 0xce, 0x86, 0xdd, 0xe8, 0x89, 0x85, + 0xd4, 0x4f, 0x07, 0x27, 0x4e, 0x60, 0x1f, 0x99, 0xc1, 0x31, 0x1b, 0x7b, 0xa3, 0x37, 0x2e, 0x40, + 0x6f, 0x40, 0xe3, 0xd8, 0xf5, 0x83, 0xdb, 0xc3, 0xc7, 0x2e, 0x1b, 0xfe, 0xd2, 0xce, 0x6a, 0x64, + 0x82, 0x5b, 0x51, 0x71, 0x2f, 0x69, 0x80, 0xde, 0x4d, 0x39, 0xf5, 0x35, 0x85, 0x53, 0x8b, 0x23, + 0x9d, 0x83, 0x5b, 0xbf, 0x06, 0x2b, 0xbb, 0xfd, 0x3e, 0xf6, 0xfd, 0x23, 0xda, 0x77, 0xdf, 0x75, + 0x22, 0xef, 0x5e, 0x31, 0x85, 0xd2, 0xe9, 0xec, 0xf7, 0xaf, 0x32, 0x74, 0x78, 0x2f, 0x9c, 0x83, + 0xfd, 0x78, 0xec, 0x2b, 0x93, 0x60, 0x5f, 0x15, 0xb0, 0xcf, 0xd6, 0xb2, 0x20, 0xf6, 0x35, 0x1d, + 0xf6, 0xf5, 0x3c, 0xec, 0x1b, 0xb3, 0xc7, 0xfe, 0xd7, 0x06, 0x6c, 0x85, 0x1e, 0x15, 0xc7, 0x7e, + 0x0e, 0xfa, 0xe2, 0x84, 0x5c, 0x4e, 0x4d, 0xc8, 0xa9, 0x48, 0x31, 0x72, 0x23, 0xa5, 0xa2, 0x8b, + 0x94, 0x6a, 0x9e, 0xb5, 0xee, 0x72, 0xd6, 0xaa, 0x31, 0x6b, 0x7d, 0x45, 0x88, 0x14, 0xf5, 0xb8, + 0x0a, 0xda, 0xab, 0xae, 0xb3, 0x57, 0x23, 0xcf, 0x5e, 0xcd, 0xd9, 0xdb, 0xeb, 0xcf, 0x65, 0xd8, + 0x0a, 0xbd, 0x70, 0x46, 0xf6, 0xe2, 0xb1, 0x36, 0x26, 0xc1, 0xba, 0x22, 0x60, 0xad, 0xd3, 0x69, + 0x0e, 0x8b, 0xdb, 0x34, 0xd6, 0xf5, 0xd9, 0x63, 0xfd, 0x51, 0x09, 0x1a, 0x31, 0x08, 0x6c, 0x19, + 0xe8, 0x98, 0xc1, 0x63, 0xd7, 0x1b, 0x44, 0x5f, 0x27, 0xef, 0x94, 0x75, 0x5c, 0xff, 0xc1, 0xd9, + 0x28, 0x96, 0x11, 0xbd, 0xd1, 0x95, 0x10, 0x85, 0x2e, 0xe2, 0x22, 0xf6, 0xcc, 0xec, 0x33, 0x8a, + 0x66, 0x4d, 0xf2, 0x84, 0xae, 0x03, 0xd8, 0x43, 0x3b, 0xb0, 0xcd, 0xc0, 0xf5, 0xfc, 0x88, 0x6e, + 0x5a, 0x11, 0xa8, 0xb7, 0xe3, 0x8a, 0x1e, 0xd7, 0xa6, 0xbb, 0x07, 0xcd, 0xa4, 0x22, 0x5c, 0x9d, + 0x7a, 0x01, 0x03, 0x30, 0x56, 0x2b, 0x7a, 0x67, 0x75, 0x31, 0x3c, 0x11, 0x51, 0xc6, 0xef, 0xdd, + 0x53, 0x80, 0x90, 0xc6, 0xd8, 0xe6, 0xf0, 0x1a, 0x54, 0x98, 0x4d, 0x4b, 0xac, 0xfb, 0x97, 0xa3, + 0xee, 0xc7, 0x0d, 0xb6, 0xc7, 0xdb, 0x4b, 0xd6, 0xb0, 0xf3, 0x36, 0x34, 0x9f, 0x6f, 0xb7, 0xf5, + 0x49, 0x13, 0x36, 0xc3, 0xb8, 0xe4, 0xb6, 0x6f, 0x85, 0x97, 0x96, 0xd2, 0x32, 0xd2, 0x48, 0x2f, + 0x23, 0xaf, 0xc2, 0xea, 0xc8, 0xb3, 0x07, 0xa6, 0x77, 0xf6, 0x41, 0x3c, 0x47, 0x84, 0x58, 0xcb, + 0xc5, 0x6c, 0x1b, 0x8b, 0x89, 0x3f, 0x59, 0x7c, 0xdb, 0xd0, 0x07, 0xd3, 0x15, 0x9f, 0xf2, 0x3e, + 0xe3, 0x47, 0x25, 0xd8, 0x8a, 0xf4, 0x57, 0xee, 0x7a, 0xc9, 0xbe, 0x81, 0x1a, 0xee, 0x5b, 0x02, + 0xf1, 0x49, 0x00, 0x6f, 0x1f, 0x69, 0x04, 0x84, 0xb6, 0xd5, 0xf6, 0x81, 0x7e, 0x5a, 0x82, 0xcb, + 0x09, 0x30, 0x6a, 0x35, 0x2e, 0x30, 0x35, 0xbe, 0xa3, 0x55, 0xe3, 0xbe, 0x56, 0x44, 0xa8, 0x48, + 0x4e, 0x3f, 0x14, 0x43, 0xcb, 0xed, 0x3f, 0x21, 0x18, 0x86, 0x3b, 0x9f, 0xe8, 0x4d, 0x22, 0x94, + 0x15, 0x1d, 0xa1, 0xac, 0x8a, 0x84, 0x42, 0x6c, 0x66, 0xfb, 0x11, 0x42, 0xd1, 0x61, 0xc6, 0xb8, + 0x00, 0xdd, 0xe4, 0x78, 0x6f, 0x8d, 0x8d, 0xf1, 0x75, 0xed, 0x18, 0xb3, 0x08, 0xef, 0xeb, 0xb0, + 0x72, 0x9a, 0x04, 0xd5, 0x1d, 0x9b, 0x50, 0x03, 0x62, 0xd2, 0xd6, 0x52, 0x11, 0xd7, 0x93, 0x1a, + 0x52, 0xc7, 0xe6, 0x8e, 0x6a, 0xee, 0xba, 0x16, 0x6e, 0xaf, 0x87, 0x8e, 0x2d, 0x15, 0x53, 0xc7, + 0xe6, 0xf4, 0x39, 0xc2, 0x9e, 0xed, 0x5a, 0xed, 0x0d, 0xb6, 0x19, 0x5b, 0xf3, 0xe4, 0x0a, 0xb4, + 0x03, 0x1b, 0x5c, 0xeb, 0x1b, 0xe6, 0xd0, 0xfa, 0xd0, 0xb6, 0xc8, 0xa4, 0xbc, 0xc9, 0x3e, 0xd8, + 0xf0, 0x14, 0x75, 0xfc, 0x3a, 0xfe, 0xa2, 0xb8, 0x8e, 0xbf, 0x07, 0xaf, 0xe6, 0xba, 0xd9, 0x44, + 0xe7, 0x3c, 0xef, 0xc3, 0x17, 0x0a, 0x38, 0xcc, 0x44, 0x22, 0xa7, 0x9a, 0x13, 0xfe, 0x5e, 0x87, + 0xcd, 0x70, 0xae, 0x5b, 0xf0, 0xd7, 0xdc, 0xf8, 0x4b, 0x09, 0xf0, 0xf9, 0xf3, 0x97, 0x5a, 0x8d, + 0x17, 0x93, 0xbf, 0x78, 0x86, 0x6a, 0x09, 0x0c, 0xa5, 0x1e, 0x45, 0x16, 0x43, 0x09, 0x3c, 0xb8, + 0x26, 0xf3, 0x20, 0x17, 0xf8, 0xe8, 0x33, 0x18, 0xf8, 0x07, 0x43, 0xf3, 0x91, 0xb3, 0x08, 0xfc, + 0xf9, 0x05, 0xbe, 0x12, 0xe0, 0xf3, 0x0f, 0x7c, 0xb5, 0x1a, 0xff, 0x6b, 0x81, 0xaf, 0x1e, 0xc5, + 0x22, 0xf0, 0x27, 0x0c, 0xfc, 0x7f, 0xd7, 0xe1, 0xe2, 0xbe, 0xed, 0x2f, 0x22, 0x7f, 0xb2, 0xc8, + 0xff, 0x71, 0xb1, 0xc8, 0xff, 0x76, 0x3c, 0x4b, 0x29, 0x11, 0x9e, 0x3a, 0xf4, 0x7f, 0x56, 0x34, + 0xf4, 0x77, 0xf5, 0x7a, 0xbc, 0x98, 0xb1, 0x7f, 0x98, 0x8a, 0xfd, 0x37, 0xf4, 0xc3, 0x58, 0x04, + 0xff, 0x84, 0xc1, 0xff, 0x87, 0x26, 0x5c, 0xba, 0x49, 0x62, 0xc5, 0x25, 0xdd, 0x2f, 0xa2, 0xbf, + 0x78, 0xf4, 0xff, 0xa4, 0x58, 0xf4, 0xc7, 0x13, 0x6e, 0x06, 0xc4, 0x53, 0x87, 0xff, 0xb3, 0xa2, + 0xe1, 0x7f, 0x23, 0x47, 0x91, 0x17, 0x33, 0xfe, 0xaf, 0xc3, 0xba, 0xe9, 0x38, 0xee, 0x87, 0xe1, + 0x71, 0x2b, 0x8e, 0xae, 0x9b, 0xa3, 0xe3, 0x0b, 0x55, 0x15, 0xda, 0x06, 0x94, 0x68, 0x79, 0xc3, + 0xec, 0x3f, 0xc1, 0x43, 0x8b, 0xe8, 0x13, 0x26, 0x66, 0x28, 0x6a, 0xd0, 0x2d, 0x8e, 0x61, 0xc2, + 0xa3, 0x8a, 0x37, 0x73, 0x90, 0x2a, 0x44, 0x31, 0xeb, 0x1a, 0x8a, 0xd9, 0xf8, 0x6c, 0x51, 0x4c, + 0xc7, 0x87, 0xd5, 0x31, 0x96, 0x3f, 0x38, 0xc1, 0x7e, 0xa6, 0x5d, 0x4b, 0x93, 0xda, 0xb5, 0x9c, + 0x65, 0xd7, 0xee, 0x2f, 0xcb, 0xf1, 0x31, 0x6c, 0x28, 0xe0, 0xd0, 0x73, 0x4f, 0x46, 0x85, 0x59, + 0x4d, 0xf4, 0x58, 0x23, 0xe5, 0xb1, 0xf9, 0xb7, 0xfd, 0x2a, 0x76, 0xaa, 0x66, 0xb0, 0x13, 0xe9, + 0xcd, 0xb4, 0xa2, 0x81, 0xfa, 0xec, 0x8a, 0x87, 0xf4, 0x36, 0x2e, 0x09, 0x33, 0x9b, 0x06, 0x04, + 0xbf, 0xb8, 0x49, 0x9d, 0x35, 0x11, 0x0b, 0x33, 0x59, 0x2c, 0xf3, 0xee, 0xb3, 0xfb, 0xbb, 0x12, + 0x6c, 0x3e, 0x1c, 0x59, 0x05, 0x30, 0x12, 0xf1, 0x28, 0xa7, 0xf0, 0x10, 0x47, 0x60, 0xe4, 0x8f, + 0xa0, 0xa2, 0x1f, 0x41, 0x35, 0x6b, 0x04, 0xe2, 0x2d, 0x49, 0xf7, 0x2c, 0x3e, 0xab, 0xca, 0x1b, + 0xc0, 0x58, 0x74, 0x59, 0x10, 0x9d, 0x67, 0x68, 0xae, 0xeb, 0x8a, 0xd8, 0xf5, 0x7f, 0x4a, 0xd0, + 0x0a, 0x7d, 0x94, 0x4b, 0x13, 0x7a, 0x0d, 0xa4, 0xfb, 0x99, 0x48, 0x05, 0xa9, 0x94, 0xb6, 0x23, + 0x72, 0x86, 0xb8, 0xcf, 0x02, 0x93, 0x72, 0x4f, 0xa8, 0x96, 0x54, 0x2a, 0xa4, 0xdf, 0x18, 0x42, + 0xfa, 0x8d, 0xdc, 0x75, 0x26, 0x2d, 0x65, 0x8e, 0x60, 0xba, 0x75, 0x03, 0x1d, 0xfe, 0x3e, 0xfe, + 0xd4, 0x86, 0x2f, 0x77, 0x7d, 0xde, 0xc3, 0xff, 0xad, 0x41, 0xf6, 0x4c, 0xcc, 0xf3, 0x6e, 0x12, + 0x0e, 0xbf, 0x7f, 0x6c, 0x7a, 0x78, 0xb7, 0xef, 0x28, 0x5d, 0x8f, 0x70, 0x05, 0xe5, 0x79, 0x9f, + 0xb6, 0x49, 0xfc, 0x8f, 0x2f, 0x2a, 0xb0, 0x86, 0x22, 0x1c, 0x15, 0xd0, 0xdb, 0xb7, 0x70, 0x08, + 0xec, 0x99, 0x31, 0x0c, 0x83, 0x75, 0xcf, 0x1c, 0x45, 0x6c, 0xc2, 0x6e, 0xd7, 0x28, 0xc3, 0x48, + 0xe5, 0x74, 0x25, 0x13, 0x96, 0x3d, 0x70, 0xa3, 0x10, 0x4a, 0xde, 0xb3, 0xd3, 0xe8, 0xa6, 0xc8, + 0xaa, 0x20, 0xfa, 0xb2, 0x6f, 0x80, 0xe3, 0x54, 0x7e, 0x2d, 0xbf, 0x24, 0xae, 0xe5, 0x95, 0x40, + 0x66, 0x99, 0x74, 0x7a, 0xc3, 0x85, 0xf3, 0xc2, 0xc2, 0x70, 0x53, 0x1b, 0x4e, 0x0d, 0xe4, 0x7c, + 0x0c, 0xf7, 0x51, 0x05, 0xd6, 0xa5, 0xfe, 0xe6, 0x9c, 0xb0, 0x37, 0xc9, 0x14, 0x3e, 0x9e, 0x5f, + 0x6a, 0x99, 0x5b, 0x88, 0xba, 0xb4, 0x85, 0xd8, 0xe7, 0x70, 0x6d, 0x30, 0x5c, 0xaf, 0xaa, 0x71, + 0x9d, 0x20, 0xc5, 0xa0, 0xa9, 0xb3, 0x35, 0x64, 0x26, 0xab, 0x2d, 0x89, 0xfe, 0x43, 0xb6, 0x6c, + 0xf8, 0x29, 0xbd, 0x65, 0xa7, 0x19, 0x2d, 0x14, 0x0b, 0x9f, 0xed, 0x22, 0xc8, 0x96, 0x4d, 0x2a, + 0x96, 0x92, 0x2f, 0x96, 0x53, 0xc9, 0x17, 0x5c, 0xba, 0x35, 0xb7, 0xf8, 0x17, 0xca, 0xa6, 0x73, + 0x8b, 0xbf, 0x96, 0x61, 0x5d, 0xe2, 0x8f, 0x89, 0x16, 0x00, 0xfb, 0xa9, 0x29, 0xe6, 0xaa, 0x9a, + 0x95, 0xce, 0x3b, 0x63, 0x30, 0x71, 0xe4, 0x3a, 0xe7, 0xc8, 0x91, 0x3b, 0x0d, 0xc7, 0x61, 0x9d, + 0xbc, 0xab, 0x8c, 0xd6, 0x54, 0x1a, 0x6d, 0x3a, 0xc0, 0xff, 0x59, 0x86, 0x97, 0x25, 0xff, 0x3c, + 0xa7, 0x04, 0x5a, 0x89, 0x8f, 0xab, 0x69, 0x3e, 0x7e, 0xfe, 0x54, 0x34, 0xce, 0x0c, 0x0d, 0xd1, + 0x0c, 0x77, 0x38, 0x07, 0x69, 0x32, 0x07, 0xb9, 0xae, 0x8e, 0xd2, 0x22, 0xa9, 0xa5, 0xd3, 0x41, + 0xff, 0x1b, 0x02, 0xbd, 0xe4, 0x95, 0x5a, 0xe8, 0xf3, 0x27, 0xb0, 0xe7, 0x5e, 0xfe, 0xf2, 0x80, + 0x55, 0xb3, 0x01, 0xab, 0x09, 0x80, 0x69, 0x74, 0x9f, 0x0f, 0x60, 0x7f, 0x29, 0xc1, 0xea, 0x21, + 0x1e, 0x62, 0xcf, 0xee, 0xf7, 0xb0, 0x3f, 0x22, 0xbe, 0x8f, 0xd1, 0xdb, 0x50, 0xf3, 0xb0, 0x7f, + 0xe2, 0x04, 0x4c, 0xc4, 0xd2, 0xce, 0x2b, 0x91, 0x72, 0x52, 0xbb, 0xed, 0x1e, 0x6b, 0x74, 0xeb, + 0xa5, 0x5e, 0xd4, 0x1c, 0xbd, 0x05, 0x55, 0xec, 0x79, 0xae, 0xc7, 0xba, 0x59, 0xda, 0xd9, 0xca, + 0xf8, 0xee, 0x80, 0xb6, 0x21, 0x9f, 0x85, 0x8d, 0x3b, 0x5d, 0xa8, 0x85, 0x92, 0x28, 0x62, 0x64, + 0x93, 0xe3, 0x9b, 0xdf, 0x8f, 0xf3, 0x98, 0xe2, 0xd7, 0xce, 0x3b, 0x50, 0x65, 0x5f, 0xd1, 0xb8, + 0xe8, 0xd3, 0xbc, 0x87, 0xb0, 0x9e, 0x3d, 0xcb, 0x71, 0x51, 0x4e, 0xc5, 0xc5, 0x8d, 0x3a, 0x54, + 0x69, 0x12, 0xc3, 0x59, 0xf7, 0xe3, 0x12, 0xac, 0x1c, 0xe2, 0x80, 0xe0, 0x45, 0x14, 0xf2, 0x99, + 0x4b, 0x5c, 0xa6, 0xc9, 0x57, 0x7e, 0x60, 0x0e, 0xfb, 0xd4, 0x03, 0x42, 0xb9, 0x5c, 0x09, 0xad, + 0x1f, 0xb0, 0xe6, 0xfc, 0xc6, 0x6e, 0x5c, 0x42, 0x0f, 0x35, 0x48, 0x5b, 0x2f, 0x78, 0x60, 0x27, + 0xfe, 0x31, 0x2e, 0xa0, 0x43, 0x22, 0xbb, 0x6d, 0x56, 0x17, 0xb9, 0x47, 0xf4, 0x9a, 0x4d, 0x78, + 0xdd, 0x9f, 0x97, 0x00, 0xed, 0xb9, 0x8e, 0x43, 0x96, 0xf9, 0x93, 0x28, 0x4a, 0x60, 0x18, 0xab, + 0xe5, 0x13, 0x4d, 0x29, 0xb3, 0xf1, 0x45, 0x7c, 0x97, 0x86, 0xe8, 0xab, 0x39, 0xec, 0xdc, 0x05, + 0x68, 0xbc, 0xe7, 0x1e, 0x99, 0x9e, 0x39, 0xf0, 0x77, 0x7e, 0x0f, 0x00, 0x7b, 0xe4, 0x3b, 0x8f, + 0xaa, 0xe8, 0x91, 0x1d, 0xc8, 0x05, 0xfe, 0x14, 0x01, 0x5d, 0xca, 0xf8, 0xbf, 0x52, 0xe7, 0xa2, + 0xda, 0x1d, 0xba, 0x2f, 0x51, 0x11, 0xfc, 0x1e, 0x35, 0x11, 0x21, 0xff, 0x43, 0x46, 0x2f, 0x82, + 0xff, 0xbb, 0x45, 0x22, 0x42, 0xfe, 0x0f, 0x86, 0x46, 0xc4, 0xfb, 0xb0, 0xa1, 0xfa, 0xb3, 0x00, + 0xfa, 0x7c, 0xce, 0x3f, 0x09, 0xf4, 0x22, 0x55, 0xa9, 0xf5, 0x89, 0xc8, 0xac, 0xbc, 0x7b, 0x8d, + 0xc8, 0x87, 0xf1, 0xe2, 0x5c, 0xce, 0x40, 0x46, 0xaf, 0xe6, 0x26, 0x87, 0xeb, 0xc5, 0xaa, 0x13, + 0x9b, 0x13, 0xb1, 0xd9, 0x79, 0xcf, 0x1a, 0xb1, 0xef, 0xc2, 0x5a, 0x2a, 0x3b, 0x0a, 0x6d, 0xe9, + 0xf2, 0xa6, 0xf4, 0xc2, 0x52, 0x89, 0x0c, 0x89, 0x30, 0x65, 0x8a, 0x83, 0x5e, 0x58, 0xea, 0x72, + 0x34, 0x11, 0xa6, 0xbc, 0x36, 0xd5, 0x08, 0xbb, 0x0b, 0x28, 0x7d, 0xdb, 0x82, 0x5e, 0xd1, 0x5e, + 0xc4, 0x68, 0xc4, 0xdd, 0x83, 0x75, 0xc5, 0xd1, 0x2a, 0xba, 0xac, 0x3f, 0x76, 0x2d, 0x62, 0x06, + 0xee, 0x10, 0x48, 0x32, 0x83, 0x74, 0x3c, 0xa4, 0x17, 0x96, 0x3a, 0x12, 0x4b, 0x84, 0x29, 0x0f, + 0xcb, 0x8a, 0xd8, 0x54, 0x25, 0x4c, 0x79, 0x70, 0xa5, 0x11, 0xf6, 0x0e, 0xc0, 0x98, 0xdc, 0xd1, + 0x66, 0xd2, 0x8e, 0xa7, 0x51, 0xcd, 0xe7, 0x07, 0xb0, 0x22, 0xd2, 0x2e, 0xfa, 0x5c, 0x0c, 0x51, + 0x8a, 0x8d, 0x35, 0x62, 0xde, 0x82, 0x3a, 0xe9, 0xf2, 0xa1, 0xe7, 0xf8, 0x28, 0x4e, 0xa3, 0x8e, + 0xb9, 0x33, 0xfb, 0xab, 0x9d, 0x3f, 0x02, 0x2c, 0x1f, 0x79, 0xee, 0xa9, 0xed, 0xd3, 0xa3, 0x1d, + 0xb7, 0xff, 0x64, 0x41, 0xac, 0x0b, 0x62, 0x5d, 0x10, 0xeb, 0x82, 0x58, 0x5f, 0x04, 0x62, 0x9d, + 0x11, 0x33, 0x4e, 0xc9, 0xcf, 0xcf, 0x47, 0xac, 0xff, 0x30, 0x88, 0xd1, 0xe3, 0x0d, 0x15, 0xb7, + 0x6e, 0x3d, 0x84, 0x55, 0x69, 0x7b, 0x8a, 0x3a, 0xd9, 0x87, 0x4b, 0x1a, 0xb5, 0x88, 0x20, 0x69, + 0xdb, 0x96, 0x08, 0x52, 0x1c, 0x90, 0x68, 0x04, 0x7d, 0x17, 0x2e, 0x65, 0x6c, 0x98, 0x51, 0x37, + 0x7f, 0x43, 0xad, 0x17, 0x9c, 0xb1, 0xb1, 0x4c, 0x04, 0x6b, 0x36, 0x9e, 0xfa, 0xf0, 0x4c, 0x1f, + 0x70, 0x26, 0xe1, 0xa9, 0x3e, 0xfb, 0xcc, 0x89, 0xf6, 0xd4, 0x41, 0xf7, 0x38, 0xda, 0x95, 0x67, + 0xe0, 0x1a, 0xcb, 0xff, 0xcd, 0x80, 0xe5, 0xa4, 0x39, 0x9b, 0x52, 0x17, 0x36, 0xff, 0x7f, 0xb7, + 0xf9, 0x2f, 0x4a, 0x00, 0xe1, 0x24, 0x1a, 0xaf, 0xa1, 0xf8, 0x6b, 0xc0, 0x64, 0xf5, 0x22, 0xdf, + 0x0d, 0xe6, 0xad, 0xa1, 0x14, 0x22, 0xe4, 0xfb, 0xb5, 0x6c, 0x11, 0x8f, 0x6a, 0xac, 0xe2, 0xab, + 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x39, 0x6a, 0x4f, 0x60, 0x8e, 0x45, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -4754,7 +4754,7 @@ var _Controller_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "model.proto", + Metadata: "proto/model.proto", } // ProvisionDockClient is the client API for ProvisionDock service. @@ -5474,7 +5474,7 @@ var _ProvisionDock_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "model.proto", + Metadata: "proto/model.proto", } // FileShareControllerClient is the client API for FileShareController service. @@ -5738,7 +5738,7 @@ var _FileShareController_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "model.proto", + Metadata: "proto/model.proto", } // FileShareDockClient is the client API for FileShareDock service. @@ -6002,7 +6002,7 @@ var _FileShareDock_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "model.proto", + Metadata: "proto/model.proto", } // AttachDockClient is the client API for AttachDock service. @@ -6114,5 +6114,5 @@ var _AttachDock_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "model.proto", + Metadata: "proto/model.proto", }