@lansweeper/multitenant-api-grpc 0.4.69 → 0.4.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/gen-proto/image.json +1 -1
- package/gen-proto/multitenant_grpc_pb.d.ts +17 -0
- package/gen-proto/multitenant_grpc_pb.js +33 -0
- package/gen-proto/multitenant_pb.d.ts +43 -0
- package/gen-proto/multitenant_pb.js +334 -0
- package/generated-go/multitenant.pb.go +723 -573
- package/generated-go/multitenant_grpc.pb.go +38 -0
- package/package.json +2 -2
- package/proto/multitenant.proto +10 -0
- package/.ignorecompat +0 -0
|
@@ -6501,6 +6501,108 @@ func (x *CreateOwnerPersonalAccessTokenResponse) GetToken() string {
|
|
|
6501
6501
|
return ""
|
|
6502
6502
|
}
|
|
6503
6503
|
|
|
6504
|
+
type GetInstallationSettingsRequest struct {
|
|
6505
|
+
state protoimpl.MessageState
|
|
6506
|
+
sizeCache protoimpl.SizeCache
|
|
6507
|
+
unknownFields protoimpl.UnknownFields
|
|
6508
|
+
|
|
6509
|
+
SiteId string `protobuf:"bytes,1,opt,name=site_id,json=siteId,proto3" json:"site_id,omitempty"`
|
|
6510
|
+
InstallId string `protobuf:"bytes,2,opt,name=install_id,json=installId,proto3" json:"install_id,omitempty"`
|
|
6511
|
+
}
|
|
6512
|
+
|
|
6513
|
+
func (x *GetInstallationSettingsRequest) Reset() {
|
|
6514
|
+
*x = GetInstallationSettingsRequest{}
|
|
6515
|
+
if protoimpl.UnsafeEnabled {
|
|
6516
|
+
mi := &file_multitenant_proto_msgTypes[108]
|
|
6517
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6518
|
+
ms.StoreMessageInfo(mi)
|
|
6519
|
+
}
|
|
6520
|
+
}
|
|
6521
|
+
|
|
6522
|
+
func (x *GetInstallationSettingsRequest) String() string {
|
|
6523
|
+
return protoimpl.X.MessageStringOf(x)
|
|
6524
|
+
}
|
|
6525
|
+
|
|
6526
|
+
func (*GetInstallationSettingsRequest) ProtoMessage() {}
|
|
6527
|
+
|
|
6528
|
+
func (x *GetInstallationSettingsRequest) ProtoReflect() protoreflect.Message {
|
|
6529
|
+
mi := &file_multitenant_proto_msgTypes[108]
|
|
6530
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
6531
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6532
|
+
if ms.LoadMessageInfo() == nil {
|
|
6533
|
+
ms.StoreMessageInfo(mi)
|
|
6534
|
+
}
|
|
6535
|
+
return ms
|
|
6536
|
+
}
|
|
6537
|
+
return mi.MessageOf(x)
|
|
6538
|
+
}
|
|
6539
|
+
|
|
6540
|
+
// Deprecated: Use GetInstallationSettingsRequest.ProtoReflect.Descriptor instead.
|
|
6541
|
+
func (*GetInstallationSettingsRequest) Descriptor() ([]byte, []int) {
|
|
6542
|
+
return file_multitenant_proto_rawDescGZIP(), []int{108}
|
|
6543
|
+
}
|
|
6544
|
+
|
|
6545
|
+
func (x *GetInstallationSettingsRequest) GetSiteId() string {
|
|
6546
|
+
if x != nil {
|
|
6547
|
+
return x.SiteId
|
|
6548
|
+
}
|
|
6549
|
+
return ""
|
|
6550
|
+
}
|
|
6551
|
+
|
|
6552
|
+
func (x *GetInstallationSettingsRequest) GetInstallId() string {
|
|
6553
|
+
if x != nil {
|
|
6554
|
+
return x.InstallId
|
|
6555
|
+
}
|
|
6556
|
+
return ""
|
|
6557
|
+
}
|
|
6558
|
+
|
|
6559
|
+
type GetInstallationSettingsResponse struct {
|
|
6560
|
+
state protoimpl.MessageState
|
|
6561
|
+
sizeCache protoimpl.SizeCache
|
|
6562
|
+
unknownFields protoimpl.UnknownFields
|
|
6563
|
+
|
|
6564
|
+
DigitalLicenseToken string `protobuf:"bytes,1,opt,name=digitalLicenseToken,proto3" json:"digitalLicenseToken,omitempty"`
|
|
6565
|
+
}
|
|
6566
|
+
|
|
6567
|
+
func (x *GetInstallationSettingsResponse) Reset() {
|
|
6568
|
+
*x = GetInstallationSettingsResponse{}
|
|
6569
|
+
if protoimpl.UnsafeEnabled {
|
|
6570
|
+
mi := &file_multitenant_proto_msgTypes[109]
|
|
6571
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6572
|
+
ms.StoreMessageInfo(mi)
|
|
6573
|
+
}
|
|
6574
|
+
}
|
|
6575
|
+
|
|
6576
|
+
func (x *GetInstallationSettingsResponse) String() string {
|
|
6577
|
+
return protoimpl.X.MessageStringOf(x)
|
|
6578
|
+
}
|
|
6579
|
+
|
|
6580
|
+
func (*GetInstallationSettingsResponse) ProtoMessage() {}
|
|
6581
|
+
|
|
6582
|
+
func (x *GetInstallationSettingsResponse) ProtoReflect() protoreflect.Message {
|
|
6583
|
+
mi := &file_multitenant_proto_msgTypes[109]
|
|
6584
|
+
if protoimpl.UnsafeEnabled && x != nil {
|
|
6585
|
+
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6586
|
+
if ms.LoadMessageInfo() == nil {
|
|
6587
|
+
ms.StoreMessageInfo(mi)
|
|
6588
|
+
}
|
|
6589
|
+
return ms
|
|
6590
|
+
}
|
|
6591
|
+
return mi.MessageOf(x)
|
|
6592
|
+
}
|
|
6593
|
+
|
|
6594
|
+
// Deprecated: Use GetInstallationSettingsResponse.ProtoReflect.Descriptor instead.
|
|
6595
|
+
func (*GetInstallationSettingsResponse) Descriptor() ([]byte, []int) {
|
|
6596
|
+
return file_multitenant_proto_rawDescGZIP(), []int{109}
|
|
6597
|
+
}
|
|
6598
|
+
|
|
6599
|
+
func (x *GetInstallationSettingsResponse) GetDigitalLicenseToken() string {
|
|
6600
|
+
if x != nil {
|
|
6601
|
+
return x.DigitalLicenseToken
|
|
6602
|
+
}
|
|
6603
|
+
return ""
|
|
6604
|
+
}
|
|
6605
|
+
|
|
6504
6606
|
type CheckAccessToSiteByAccountIdRequest_UserInfo struct {
|
|
6505
6607
|
state protoimpl.MessageState
|
|
6506
6608
|
sizeCache protoimpl.SizeCache
|
|
@@ -6513,7 +6615,7 @@ type CheckAccessToSiteByAccountIdRequest_UserInfo struct {
|
|
|
6513
6615
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) Reset() {
|
|
6514
6616
|
*x = CheckAccessToSiteByAccountIdRequest_UserInfo{}
|
|
6515
6617
|
if protoimpl.UnsafeEnabled {
|
|
6516
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6618
|
+
mi := &file_multitenant_proto_msgTypes[110]
|
|
6517
6619
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6518
6620
|
ms.StoreMessageInfo(mi)
|
|
6519
6621
|
}
|
|
@@ -6526,7 +6628,7 @@ func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) String() string {
|
|
|
6526
6628
|
func (*CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoMessage() {}
|
|
6527
6629
|
|
|
6528
6630
|
func (x *CheckAccessToSiteByAccountIdRequest_UserInfo) ProtoReflect() protoreflect.Message {
|
|
6529
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6631
|
+
mi := &file_multitenant_proto_msgTypes[110]
|
|
6530
6632
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6531
6633
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6532
6634
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6567,7 +6669,7 @@ type Install_InstallState struct {
|
|
|
6567
6669
|
func (x *Install_InstallState) Reset() {
|
|
6568
6670
|
*x = Install_InstallState{}
|
|
6569
6671
|
if protoimpl.UnsafeEnabled {
|
|
6570
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6672
|
+
mi := &file_multitenant_proto_msgTypes[111]
|
|
6571
6673
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6572
6674
|
ms.StoreMessageInfo(mi)
|
|
6573
6675
|
}
|
|
@@ -6580,7 +6682,7 @@ func (x *Install_InstallState) String() string {
|
|
|
6580
6682
|
func (*Install_InstallState) ProtoMessage() {}
|
|
6581
6683
|
|
|
6582
6684
|
func (x *Install_InstallState) ProtoReflect() protoreflect.Message {
|
|
6583
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6685
|
+
mi := &file_multitenant_proto_msgTypes[111]
|
|
6584
6686
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6585
6687
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6586
6688
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6617,7 +6719,7 @@ type GetInstallsBySiteRequest_Filter struct {
|
|
|
6617
6719
|
func (x *GetInstallsBySiteRequest_Filter) Reset() {
|
|
6618
6720
|
*x = GetInstallsBySiteRequest_Filter{}
|
|
6619
6721
|
if protoimpl.UnsafeEnabled {
|
|
6620
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6722
|
+
mi := &file_multitenant_proto_msgTypes[112]
|
|
6621
6723
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6622
6724
|
ms.StoreMessageInfo(mi)
|
|
6623
6725
|
}
|
|
@@ -6630,7 +6732,7 @@ func (x *GetInstallsBySiteRequest_Filter) String() string {
|
|
|
6630
6732
|
func (*GetInstallsBySiteRequest_Filter) ProtoMessage() {}
|
|
6631
6733
|
|
|
6632
6734
|
func (x *GetInstallsBySiteRequest_Filter) ProtoReflect() protoreflect.Message {
|
|
6633
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6735
|
+
mi := &file_multitenant_proto_msgTypes[112]
|
|
6634
6736
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6635
6737
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6636
6738
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6682,7 +6784,7 @@ type UpdateInstallByClientIdRequest_SyncerSettings struct {
|
|
|
6682
6784
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) Reset() {
|
|
6683
6785
|
*x = UpdateInstallByClientIdRequest_SyncerSettings{}
|
|
6684
6786
|
if protoimpl.UnsafeEnabled {
|
|
6685
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6787
|
+
mi := &file_multitenant_proto_msgTypes[113]
|
|
6686
6788
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6687
6789
|
ms.StoreMessageInfo(mi)
|
|
6688
6790
|
}
|
|
@@ -6695,7 +6797,7 @@ func (x *UpdateInstallByClientIdRequest_SyncerSettings) String() string {
|
|
|
6695
6797
|
func (*UpdateInstallByClientIdRequest_SyncerSettings) ProtoMessage() {}
|
|
6696
6798
|
|
|
6697
6799
|
func (x *UpdateInstallByClientIdRequest_SyncerSettings) ProtoReflect() protoreflect.Message {
|
|
6698
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6800
|
+
mi := &file_multitenant_proto_msgTypes[113]
|
|
6699
6801
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6700
6802
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6701
6803
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6751,7 +6853,7 @@ type RemoveInstallDataBySiteIdResponse_Result struct {
|
|
|
6751
6853
|
func (x *RemoveInstallDataBySiteIdResponse_Result) Reset() {
|
|
6752
6854
|
*x = RemoveInstallDataBySiteIdResponse_Result{}
|
|
6753
6855
|
if protoimpl.UnsafeEnabled {
|
|
6754
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6856
|
+
mi := &file_multitenant_proto_msgTypes[114]
|
|
6755
6857
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6756
6858
|
ms.StoreMessageInfo(mi)
|
|
6757
6859
|
}
|
|
@@ -6764,7 +6866,7 @@ func (x *RemoveInstallDataBySiteIdResponse_Result) String() string {
|
|
|
6764
6866
|
func (*RemoveInstallDataBySiteIdResponse_Result) ProtoMessage() {}
|
|
6765
6867
|
|
|
6766
6868
|
func (x *RemoveInstallDataBySiteIdResponse_Result) ProtoReflect() protoreflect.Message {
|
|
6767
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6869
|
+
mi := &file_multitenant_proto_msgTypes[114]
|
|
6768
6870
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6769
6871
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6770
6872
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6806,7 +6908,7 @@ type GetUserPermissionsResponse_AuthorizationAction struct {
|
|
|
6806
6908
|
func (x *GetUserPermissionsResponse_AuthorizationAction) Reset() {
|
|
6807
6909
|
*x = GetUserPermissionsResponse_AuthorizationAction{}
|
|
6808
6910
|
if protoimpl.UnsafeEnabled {
|
|
6809
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6911
|
+
mi := &file_multitenant_proto_msgTypes[115]
|
|
6810
6912
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6811
6913
|
ms.StoreMessageInfo(mi)
|
|
6812
6914
|
}
|
|
@@ -6819,7 +6921,7 @@ func (x *GetUserPermissionsResponse_AuthorizationAction) String() string {
|
|
|
6819
6921
|
func (*GetUserPermissionsResponse_AuthorizationAction) ProtoMessage() {}
|
|
6820
6922
|
|
|
6821
6923
|
func (x *GetUserPermissionsResponse_AuthorizationAction) ProtoReflect() protoreflect.Message {
|
|
6822
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6924
|
+
mi := &file_multitenant_proto_msgTypes[115]
|
|
6823
6925
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6824
6926
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6825
6927
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6860,7 +6962,7 @@ type GetUserPermissionsResponse_Scope struct {
|
|
|
6860
6962
|
func (x *GetUserPermissionsResponse_Scope) Reset() {
|
|
6861
6963
|
*x = GetUserPermissionsResponse_Scope{}
|
|
6862
6964
|
if protoimpl.UnsafeEnabled {
|
|
6863
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6965
|
+
mi := &file_multitenant_proto_msgTypes[116]
|
|
6864
6966
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6865
6967
|
ms.StoreMessageInfo(mi)
|
|
6866
6968
|
}
|
|
@@ -6873,7 +6975,7 @@ func (x *GetUserPermissionsResponse_Scope) String() string {
|
|
|
6873
6975
|
func (*GetUserPermissionsResponse_Scope) ProtoMessage() {}
|
|
6874
6976
|
|
|
6875
6977
|
func (x *GetUserPermissionsResponse_Scope) ProtoReflect() protoreflect.Message {
|
|
6876
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
6978
|
+
mi := &file_multitenant_proto_msgTypes[116]
|
|
6877
6979
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6878
6980
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6879
6981
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6910,7 +7012,7 @@ type GetUserPermissionsResponse_Role struct {
|
|
|
6910
7012
|
func (x *GetUserPermissionsResponse_Role) Reset() {
|
|
6911
7013
|
*x = GetUserPermissionsResponse_Role{}
|
|
6912
7014
|
if protoimpl.UnsafeEnabled {
|
|
6913
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7015
|
+
mi := &file_multitenant_proto_msgTypes[117]
|
|
6914
7016
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6915
7017
|
ms.StoreMessageInfo(mi)
|
|
6916
7018
|
}
|
|
@@ -6923,7 +7025,7 @@ func (x *GetUserPermissionsResponse_Role) String() string {
|
|
|
6923
7025
|
func (*GetUserPermissionsResponse_Role) ProtoMessage() {}
|
|
6924
7026
|
|
|
6925
7027
|
func (x *GetUserPermissionsResponse_Role) ProtoReflect() protoreflect.Message {
|
|
6926
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7028
|
+
mi := &file_multitenant_proto_msgTypes[117]
|
|
6927
7029
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
6928
7030
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6929
7031
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -6982,7 +7084,7 @@ type DisableWebhookEmailRequest_WebhookError struct {
|
|
|
6982
7084
|
func (x *DisableWebhookEmailRequest_WebhookError) Reset() {
|
|
6983
7085
|
*x = DisableWebhookEmailRequest_WebhookError{}
|
|
6984
7086
|
if protoimpl.UnsafeEnabled {
|
|
6985
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7087
|
+
mi := &file_multitenant_proto_msgTypes[118]
|
|
6986
7088
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
6987
7089
|
ms.StoreMessageInfo(mi)
|
|
6988
7090
|
}
|
|
@@ -6995,7 +7097,7 @@ func (x *DisableWebhookEmailRequest_WebhookError) String() string {
|
|
|
6995
7097
|
func (*DisableWebhookEmailRequest_WebhookError) ProtoMessage() {}
|
|
6996
7098
|
|
|
6997
7099
|
func (x *DisableWebhookEmailRequest_WebhookError) ProtoReflect() protoreflect.Message {
|
|
6998
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7100
|
+
mi := &file_multitenant_proto_msgTypes[118]
|
|
6999
7101
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7000
7102
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7001
7103
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7052,7 +7154,7 @@ type GetMsmpOrganizationListRequest_MsmpPaginationRequest struct {
|
|
|
7052
7154
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) Reset() {
|
|
7053
7155
|
*x = GetMsmpOrganizationListRequest_MsmpPaginationRequest{}
|
|
7054
7156
|
if protoimpl.UnsafeEnabled {
|
|
7055
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7157
|
+
mi := &file_multitenant_proto_msgTypes[120]
|
|
7056
7158
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7057
7159
|
ms.StoreMessageInfo(mi)
|
|
7058
7160
|
}
|
|
@@ -7065,7 +7167,7 @@ func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) String() string {
|
|
|
7065
7167
|
func (*GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoMessage() {}
|
|
7066
7168
|
|
|
7067
7169
|
func (x *GetMsmpOrganizationListRequest_MsmpPaginationRequest) ProtoReflect() protoreflect.Message {
|
|
7068
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7170
|
+
mi := &file_multitenant_proto_msgTypes[120]
|
|
7069
7171
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7070
7172
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7071
7173
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7107,7 +7209,7 @@ type GetMsmpOrganizationListResponse_MsmpOrganization struct {
|
|
|
7107
7209
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) Reset() {
|
|
7108
7210
|
*x = GetMsmpOrganizationListResponse_MsmpOrganization{}
|
|
7109
7211
|
if protoimpl.UnsafeEnabled {
|
|
7110
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7212
|
+
mi := &file_multitenant_proto_msgTypes[121]
|
|
7111
7213
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7112
7214
|
ms.StoreMessageInfo(mi)
|
|
7113
7215
|
}
|
|
@@ -7120,7 +7222,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpOrganization) String() string {
|
|
|
7120
7222
|
func (*GetMsmpOrganizationListResponse_MsmpOrganization) ProtoMessage() {}
|
|
7121
7223
|
|
|
7122
7224
|
func (x *GetMsmpOrganizationListResponse_MsmpOrganization) ProtoReflect() protoreflect.Message {
|
|
7123
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7225
|
+
mi := &file_multitenant_proto_msgTypes[121]
|
|
7124
7226
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7125
7227
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7126
7228
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -7164,7 +7266,7 @@ type GetMsmpOrganizationListResponse_MsmpPageInfo struct {
|
|
|
7164
7266
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) Reset() {
|
|
7165
7267
|
*x = GetMsmpOrganizationListResponse_MsmpPageInfo{}
|
|
7166
7268
|
if protoimpl.UnsafeEnabled {
|
|
7167
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7269
|
+
mi := &file_multitenant_proto_msgTypes[122]
|
|
7168
7270
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7169
7271
|
ms.StoreMessageInfo(mi)
|
|
7170
7272
|
}
|
|
@@ -7177,7 +7279,7 @@ func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) String() string {
|
|
|
7177
7279
|
func (*GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoMessage() {}
|
|
7178
7280
|
|
|
7179
7281
|
func (x *GetMsmpOrganizationListResponse_MsmpPageInfo) ProtoReflect() protoreflect.Message {
|
|
7180
|
-
mi := &file_multitenant_proto_msgTypes[
|
|
7282
|
+
mi := &file_multitenant_proto_msgTypes[122]
|
|
7181
7283
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
7182
7284
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
7183
7285
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -8159,500 +8261,520 @@ var file_multitenant_proto_rawDesc = []byte{
|
|
|
8159
8261
|
0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b,
|
|
8160
8262
|
0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
|
|
8161
8263
|
0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e,
|
|
8162
|
-
|
|
8163
|
-
|
|
8164
|
-
|
|
8165
|
-
|
|
8166
|
-
|
|
8167
|
-
|
|
8168
|
-
|
|
8169
|
-
|
|
8170
|
-
|
|
8171
|
-
|
|
8172
|
-
|
|
8173
|
-
|
|
8174
|
-
|
|
8175
|
-
|
|
8176
|
-
|
|
8177
|
-
|
|
8178
|
-
|
|
8179
|
-
|
|
8180
|
-
|
|
8181
|
-
|
|
8182
|
-
|
|
8183
|
-
|
|
8184
|
-
|
|
8185
|
-
0x55,
|
|
8186
|
-
|
|
8187
|
-
|
|
8188
|
-
|
|
8189
|
-
|
|
8190
|
-
|
|
8191
|
-
|
|
8192
|
-
|
|
8264
|
+
0x22, 0x58, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74,
|
|
8265
|
+
0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
8266
|
+
0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
|
|
8267
|
+
0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x69,
|
|
8268
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
8269
|
+
0x09, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x49, 0x64, 0x22, 0x53, 0x0a, 0x1f, 0x47, 0x65,
|
|
8270
|
+
0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74,
|
|
8271
|
+
0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x30, 0x0a,
|
|
8272
|
+
0x13, 0x64, 0x69, 0x67, 0x69, 0x74, 0x61, 0x6c, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54,
|
|
8273
|
+
0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x64, 0x69, 0x67, 0x69,
|
|
8274
|
+
0x74, 0x61, 0x6c, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x2a,
|
|
8275
|
+
0x4e, 0x0a, 0x08, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x55,
|
|
8276
|
+
0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x10, 0x0a,
|
|
8277
|
+
0x0c, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x5f, 0x4e, 0x41, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12,
|
|
8278
|
+
0x08, 0x0a, 0x04, 0x44, 0x45, 0x4d, 0x4f, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x48, 0x59, 0x42,
|
|
8279
|
+
0x52, 0x49, 0x44, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x55, 0x41, 0x4c, 0x10, 0x04, 0x2a,
|
|
8280
|
+
0x77, 0x0a, 0x11, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x56,
|
|
8281
|
+
0x61, 0x6c, 0x75, 0x65, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f,
|
|
8282
|
+
0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53,
|
|
8283
|
+
0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x49, 0x4e,
|
|
8284
|
+
0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55,
|
|
8285
|
+
0x45, 0x5f, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x49, 0x4e, 0x53, 0x54,
|
|
8286
|
+
0x41, 0x4c, 0x4c, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f,
|
|
8287
|
+
0x55, 0x4e, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x02, 0x2a, 0x4d, 0x0a, 0x0b, 0x49, 0x6e, 0x73, 0x74,
|
|
8288
|
+
0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x49, 0x54, 0x10, 0x00, 0x12,
|
|
8289
|
+
0x06, 0x0a, 0x02, 0x4f, 0x54, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x54, 0x5f, 0x41, 0x47,
|
|
8290
|
+
0x45, 0x4e, 0x54, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x43, 0x4c, 0x4f, 0x55, 0x44, 0x10, 0x03,
|
|
8291
|
+
0x12, 0x15, 0x0a, 0x11, 0x4e, 0x45, 0x54, 0x57, 0x4f, 0x52, 0x4b, 0x5f, 0x44, 0x49, 0x53, 0x43,
|
|
8292
|
+
0x4f, 0x56, 0x45, 0x52, 0x59, 0x10, 0x04, 0x2a, 0xf3, 0x01, 0x0a, 0x10, 0x53, 0x75, 0x62, 0x73,
|
|
8293
|
+
0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x24,
|
|
8294
|
+
0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50,
|
|
8295
|
+
0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x4e, 0x45, 0x53, 0x50, 0x45, 0x43, 0x49,
|
|
8296
|
+
0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52,
|
|
8193
8297
|
0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55,
|
|
8194
|
-
0x45, 0x5f,
|
|
8195
|
-
|
|
8196
|
-
|
|
8197
|
-
|
|
8198
|
-
|
|
8199
|
-
|
|
8200
|
-
|
|
8201
|
-
|
|
8202
|
-
|
|
8203
|
-
|
|
8204
|
-
|
|
8205
|
-
|
|
8206
|
-
|
|
8207
|
-
|
|
8208
|
-
|
|
8209
|
-
|
|
8210
|
-
|
|
8211
|
-
|
|
8212
|
-
0x74,
|
|
8298
|
+
0x45, 0x5f, 0x54, 0x52, 0x49, 0x41, 0x4c, 0x10, 0x01, 0x12, 0x24, 0x0a, 0x20, 0x53, 0x55, 0x42,
|
|
8299
|
+
0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56,
|
|
8300
|
+
0x41, 0x4c, 0x55, 0x45, 0x5f, 0x46, 0x52, 0x45, 0x45, 0x57, 0x41, 0x52, 0x45, 0x10, 0x02, 0x12,
|
|
8301
|
+
0x23, 0x0a, 0x1f, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f,
|
|
8302
|
+
0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54,
|
|
8303
|
+
0x45, 0x52, 0x10, 0x03, 0x12, 0x1f, 0x0a, 0x1b, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50,
|
|
8304
|
+
0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f,
|
|
8305
|
+
0x50, 0x52, 0x4f, 0x10, 0x04, 0x12, 0x26, 0x0a, 0x22, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49,
|
|
8306
|
+
0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45,
|
|
8307
|
+
0x5f, 0x45, 0x4e, 0x54, 0x45, 0x52, 0x50, 0x52, 0x49, 0x53, 0x45, 0x10, 0x05, 0x32, 0xbf, 0x3a,
|
|
8308
|
+
0x0a, 0x0b, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0xa1, 0x01,
|
|
8309
|
+
0x0a, 0x1c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53,
|
|
8310
|
+
0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x3e,
|
|
8311
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8312
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
8313
|
+
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63,
|
|
8314
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f,
|
|
8315
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8316
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
|
|
8317
|
+
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x41, 0x63,
|
|
8318
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
8319
|
+
0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73,
|
|
8320
|
+
0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
8321
|
+
0x64, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8213
8322
|
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68,
|
|
8214
8323
|
0x65, 0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42,
|
|
8215
|
-
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
8216
|
-
|
|
8217
|
-
|
|
8218
|
-
|
|
8219
|
-
|
|
8220
|
-
|
|
8221
|
-
|
|
8222
|
-
|
|
8223
|
-
|
|
8224
|
-
|
|
8225
|
-
|
|
8226
|
-
0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69,
|
|
8227
|
-
0x74, 0x65, 0x49, 0x64, 0x73, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8324
|
+
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8325
|
+
0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8326
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65,
|
|
8327
|
+
0x63, 0x6b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x42, 0x79,
|
|
8328
|
+
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
8329
|
+
0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65,
|
|
8330
|
+
0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c,
|
|
8331
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8332
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76,
|
|
8333
|
+
0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65,
|
|
8334
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8228
8335
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8229
|
-
0x31, 0x2e,
|
|
8230
|
-
|
|
8231
|
-
|
|
8232
|
-
0x65,
|
|
8233
|
-
|
|
8234
|
-
|
|
8235
|
-
|
|
8236
|
-
|
|
8237
|
-
|
|
8238
|
-
|
|
8239
|
-
|
|
8240
|
-
|
|
8241
|
-
|
|
8242
|
-
|
|
8243
|
-
|
|
8244
|
-
|
|
8245
|
-
|
|
8246
|
-
|
|
8247
|
-
|
|
8248
|
-
|
|
8249
|
-
|
|
8250
|
-
|
|
8251
|
-
0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
|
|
8252
|
-
|
|
8253
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72,
|
|
8336
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f,
|
|
8337
|
+
0x75, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
8338
|
+
0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76,
|
|
8339
|
+
0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
8340
|
+
0x65, 0x49, 0x64, 0x73, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8341
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8342
|
+
0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63,
|
|
8343
|
+
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x52,
|
|
8344
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8345
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8346
|
+
0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
|
|
8347
|
+
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64,
|
|
8348
|
+
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa7, 0x01, 0x0a, 0x1e,
|
|
8349
|
+
0x47, 0x65, 0x74, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
8350
|
+
0x74, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x12, 0x40,
|
|
8351
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8352
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x50, 0x72,
|
|
8353
|
+
0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42, 0x79, 0x41,
|
|
8354
|
+
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8355
|
+
0x1a, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8356
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8357
|
+
0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x42,
|
|
8358
|
+
0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
8359
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72,
|
|
8254
8360
|
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49,
|
|
8255
|
-
0x64,
|
|
8256
|
-
|
|
8257
|
-
|
|
8258
|
-
|
|
8259
|
-
0x61, 0x6e,
|
|
8260
|
-
|
|
8261
|
-
|
|
8262
|
-
|
|
8263
|
-
|
|
8264
|
-
|
|
8265
|
-
0x65,
|
|
8266
|
-
|
|
8361
|
+
0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8362
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69,
|
|
8363
|
+
0x73, 0x74, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f,
|
|
8364
|
+
0x75, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c,
|
|
8365
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8366
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x6f,
|
|
8367
|
+
0x66, 0x69, 0x6c, 0x65, 0x73, 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64,
|
|
8368
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c,
|
|
8369
|
+
0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e,
|
|
8370
|
+
0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8371
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8372
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72,
|
|
8373
|
+
0x69, 0x7a, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
|
8374
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8375
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8376
|
+
0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a,
|
|
8377
|
+
0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x52, 0x65,
|
|
8378
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0d, 0x50, 0x61, 0x74, 0x63,
|
|
8379
|
+
0x68, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8380
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8381
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65, 0x4d,
|
|
8382
|
+
0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8267
8383
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8268
8384
|
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x74, 0x63, 0x68, 0x53, 0x69, 0x74, 0x65,
|
|
8269
|
-
0x4d, 0x6f, 0x64, 0x65, 0x52, 0x65,
|
|
8270
|
-
|
|
8271
|
-
|
|
8272
|
-
|
|
8273
|
-
0x74,
|
|
8274
|
-
|
|
8385
|
+
0x4d, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74,
|
|
8386
|
+
0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12,
|
|
8387
|
+
0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8388
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61,
|
|
8389
|
+
0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8390
|
+
0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8275
8391
|
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65,
|
|
8276
|
-
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65,
|
|
8277
|
-
|
|
8278
|
-
|
|
8279
|
-
|
|
8280
|
-
|
|
8281
|
-
0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8282
|
-
|
|
8283
|
-
|
|
8284
|
-
|
|
8285
|
-
|
|
8392
|
+
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8393
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41,
|
|
8394
|
+
0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x12, 0x36, 0x2e,
|
|
8395
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8396
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
|
|
8397
|
+
0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65,
|
|
8398
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8399
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8400
|
+
0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x49,
|
|
8401
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8402
|
+
0x12, 0x80, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
8403
|
+
0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8286
8404
|
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8287
|
-
0x76, 0x31, 0x2e,
|
|
8288
|
-
|
|
8289
|
-
|
|
8290
|
-
|
|
8291
|
-
|
|
8292
|
-
|
|
8293
|
-
|
|
8294
|
-
|
|
8295
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74,
|
|
8296
|
-
0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8297
|
-
0x73, 0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74,
|
|
8298
|
-
0x61, 0x6c, 0x6c, 0x73, 0x66, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53,
|
|
8299
|
-
0x69, 0x74, 0x65, 0x73, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8300
|
-
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8301
|
-
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d,
|
|
8302
|
-
0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
|
|
8303
|
-
0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8405
|
+
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79,
|
|
8406
|
+
0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61,
|
|
8407
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8408
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
8409
|
+
0x6c, 0x6c, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8410
|
+
0x65, 0x22, 0x00, 0x12, 0x9e, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
8411
|
+
0x6c, 0x6c, 0x73, 0x66, 0x6f, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69,
|
|
8412
|
+
0x74, 0x65, 0x73, 0x12, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8304
8413
|
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8305
8414
|
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75,
|
|
8306
|
-
0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65,
|
|
8307
|
-
|
|
8308
|
-
|
|
8309
|
-
0x65,
|
|
8310
|
-
0x74,
|
|
8311
|
-
|
|
8415
|
+
0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
|
|
8416
|
+
0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8417
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
8418
|
+
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x46, 0x6f, 0x72, 0x4d, 0x75, 0x6c,
|
|
8419
|
+
0x74, 0x69, 0x70, 0x6c, 0x65, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8420
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
8421
|
+
0x6c, 0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8422
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8423
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42,
|
|
8424
|
+
0x79, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8425
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8426
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8427
|
+
0x6c, 0x73, 0x42, 0x79, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8428
|
+
0x12, 0x89, 0x01, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
8429
|
+
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x38, 0x2e, 0x6c, 0x61,
|
|
8312
8430
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8313
8431
|
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
8314
|
-
0x6c, 0x6c, 0x73,
|
|
8315
|
-
|
|
8316
|
-
0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x12, 0x38, 0x2e, 0x6c,
|
|
8317
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8318
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74,
|
|
8319
|
-
0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52,
|
|
8320
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8321
|
-
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8322
|
-
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f,
|
|
8323
|
-
0x75, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01,
|
|
8324
|
-
0x0a, 0x14, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c,
|
|
8325
|
-
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8326
|
-
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8327
|
-
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43,
|
|
8328
|
-
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37,
|
|
8329
|
-
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8330
|
-
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e,
|
|
8331
|
-
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52,
|
|
8332
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x70,
|
|
8333
|
-
0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69,
|
|
8334
|
-
0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8432
|
+
0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x52, 0x65,
|
|
8433
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8335
8434
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8336
|
-
0x31, 0x2e,
|
|
8337
|
-
|
|
8338
|
-
|
|
8339
|
-
|
|
8340
|
-
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
8341
|
-
0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92,
|
|
8342
|
-
0x01, 0x0a, 0x17, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8343
|
-
0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8344
|
-
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8345
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73,
|
|
8346
|
-
0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
8347
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8435
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x43, 0x6f, 0x75,
|
|
8436
|
+
0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x89, 0x01, 0x0a,
|
|
8437
|
+
0x14, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69,
|
|
8438
|
+
0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8348
8439
|
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8349
|
-
0x31, 0x2e,
|
|
8350
|
-
|
|
8351
|
-
0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61,
|
|
8352
|
-
0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
|
|
8353
|
-
0x49, 0x64, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8354
|
-
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c,
|
|
8355
|
-
0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42,
|
|
8356
|
-
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8357
|
-
0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8358
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e,
|
|
8359
|
-
0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43,
|
|
8360
|
-
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
8361
|
-
0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74,
|
|
8362
|
-
0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e,
|
|
8440
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c,
|
|
8441
|
+
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e,
|
|
8363
8442
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8364
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8365
|
-
|
|
8366
|
-
|
|
8367
|
-
|
|
8368
|
-
|
|
8369
|
-
0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
8370
|
-
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76,
|
|
8371
|
-
0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69,
|
|
8372
|
-
0x74, 0x65, 0x49, 0x64, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8443
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73,
|
|
8444
|
+
0x74, 0x61, 0x6c, 0x6c, 0x62, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65,
|
|
8445
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x70, 0x64,
|
|
8446
|
+
0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
8447
|
+
0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8373
8448
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8374
|
-
0x2e,
|
|
8375
|
-
|
|
8376
|
-
|
|
8377
|
-
|
|
8378
|
-
|
|
8379
|
-
|
|
8380
|
-
|
|
8381
|
-
|
|
8382
|
-
0x62, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8383
|
-
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8384
|
-
0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49,
|
|
8385
|
-
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49,
|
|
8386
|
-
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8387
|
-
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8388
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
|
|
8389
|
-
0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62,
|
|
8390
|
-
0x61, 0x6c, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83,
|
|
8391
|
-
0x01, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73,
|
|
8392
|
-
0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8393
|
-
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8394
|
-
0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73,
|
|
8395
|
-
0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61,
|
|
8396
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8397
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50,
|
|
8398
|
-
0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8399
|
-
0x73, 0x65, 0x22, 0x00, 0x12, 0xbf, 0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
|
|
8400
|
-
0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73,
|
|
8401
|
-
0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12,
|
|
8402
|
-
0x48, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8403
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69,
|
|
8404
|
-
0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50,
|
|
8405
|
-
0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b,
|
|
8406
|
-
0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8449
|
+
0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
|
|
8450
|
+
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8451
|
+
0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8452
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61,
|
|
8453
|
+
0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e,
|
|
8454
|
+
0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01,
|
|
8455
|
+
0x0a, 0x17, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42,
|
|
8456
|
+
0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8407
8457
|
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8408
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8409
|
-
|
|
8410
|
-
|
|
8411
|
-
|
|
8412
|
-
|
|
8413
|
-
|
|
8458
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74,
|
|
8459
|
+
0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71,
|
|
8460
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8461
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8462
|
+
0x2e, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
|
|
8463
|
+
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
8464
|
+
0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c,
|
|
8465
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
8466
|
+
0x64, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8467
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69,
|
|
8468
|
+
0x6e, 0x6b, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79,
|
|
8469
|
+
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8470
|
+
0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8471
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x6e, 0x6b,
|
|
8472
|
+
0x54, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c,
|
|
8473
|
+
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8474
|
+
0x12, 0x92, 0x01, 0x0a, 0x17, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61,
|
|
8475
|
+
0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x39, 0x2e, 0x6c,
|
|
8476
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8477
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49,
|
|
8478
|
+
0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
8479
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8480
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8481
|
+
0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x6c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c,
|
|
8482
|
+
0x6c, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
8483
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
|
|
8484
|
+
0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
8485
|
+
0x65, 0x49, 0x64, 0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8414
8486
|
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8415
|
-
|
|
8416
|
-
0x61,
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
|
|
8421
|
-
|
|
8422
|
-
|
|
8487
|
+
0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74,
|
|
8488
|
+
0x61, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8489
|
+
0x1a, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8490
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d,
|
|
8491
|
+
0x6f, 0x76, 0x65, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79,
|
|
8492
|
+
0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8493
|
+
0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
|
|
8494
|
+
0x65, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62,
|
|
8495
|
+
0x61, 0x6c, 0x49, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8496
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8497
|
+
0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e,
|
|
8498
|
+
0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x49, 0x64,
|
|
8499
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8500
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8501
|
+
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x44, 0x75, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x65,
|
|
8502
|
+
0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x47, 0x6c, 0x6f, 0x62, 0x61,
|
|
8503
|
+
0x6c, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01,
|
|
8504
|
+
0x0a, 0x12, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73,
|
|
8505
|
+
0x69, 0x6f, 0x6e, 0x73, 0x12, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8506
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8507
|
+
0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69,
|
|
8508
|
+
0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8423
8509
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8424
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8425
|
-
|
|
8426
|
-
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8435
|
-
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8436
|
-
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73,
|
|
8437
|
-
0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
8438
|
-
0x22, 0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61,
|
|
8439
|
-
0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8440
|
-
0x12, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8441
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65,
|
|
8442
|
-
0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69,
|
|
8443
|
-
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e,
|
|
8444
|
-
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8445
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d,
|
|
8446
|
-
0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
|
|
8447
|
-
0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8f, 0x01,
|
|
8448
|
-
0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73,
|
|
8449
|
-
0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8510
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65,
|
|
8511
|
+
0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8512
|
+
0x65, 0x22, 0x00, 0x12, 0xbf, 0x01, 0x0a, 0x26, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65,
|
|
8513
|
+
0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f,
|
|
8514
|
+
0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x48,
|
|
8515
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8516
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64,
|
|
8517
|
+
0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65,
|
|
8518
|
+
0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65,
|
|
8519
|
+
0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x49, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8450
8520
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8451
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8452
|
-
|
|
8453
|
-
|
|
8454
|
-
|
|
8455
|
-
|
|
8456
|
-
|
|
8457
|
-
|
|
8458
|
-
0x69,
|
|
8459
|
-
|
|
8460
|
-
|
|
8461
|
-
|
|
8462
|
-
|
|
8521
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70,
|
|
8522
|
+
0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c,
|
|
8523
|
+
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
8524
|
+
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x44, 0x69,
|
|
8525
|
+
0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61,
|
|
8526
|
+
0x69, 0x6c, 0x12, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8527
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44,
|
|
8528
|
+
0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61,
|
|
8529
|
+
0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8530
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8531
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x57, 0x65, 0x62,
|
|
8532
|
+
0x68, 0x6f, 0x6f, 0x6b, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8533
|
+
0x65, 0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x41, 0x75, 0x74, 0x68, 0x6f,
|
|
8534
|
+
0x72, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x41, 0x70, 0x70, 0x6c,
|
|
8535
|
+
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x31, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8536
|
+
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8537
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64,
|
|
8538
|
+
0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x6c,
|
|
8539
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8540
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
|
|
8541
|
+
0x7a, 0x65, 0x64, 0x53, 0x69, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
|
8542
|
+
0x22, 0x00, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
|
|
8543
|
+
0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x12, 0x37, 0x2e, 0x6c,
|
|
8544
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8545
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f,
|
|
8546
|
+
0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65,
|
|
8547
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8548
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8549
|
+
0x31, 0x2e, 0x47, 0x65, 0x74, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x73, 0x42,
|
|
8550
|
+
0x79, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
|
|
8551
|
+
0x00, 0x12, 0x98, 0x01, 0x0a, 0x19, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67,
|
|
8552
|
+
0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
|
|
8553
|
+
0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8554
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63,
|
|
8555
|
+
0x6b, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63,
|
|
8556
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x6c,
|
|
8557
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8558
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x4d, 0x61,
|
|
8559
|
+
0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x6e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
|
|
8560
|
+
0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x8f, 0x01, 0x0a,
|
|
8561
|
+
0x16, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63,
|
|
8562
|
+
0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8563
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8564
|
+
0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75,
|
|
8565
|
+
0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8566
|
+
0x74, 0x1a, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8567
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70,
|
|
8568
|
+
0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
|
|
8569
|
+
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9e,
|
|
8570
|
+
0x01, 0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69,
|
|
8571
|
+
0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x12, 0x3d,
|
|
8463
8572
|
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8464
8573
|
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
|
|
8465
8574
|
0x65, 0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73,
|
|
8466
|
-
0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65,
|
|
8467
|
-
|
|
8468
|
-
0x74,
|
|
8469
|
-
|
|
8470
|
-
|
|
8471
|
-
|
|
8472
|
-
0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
8473
|
-
|
|
8474
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8475
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8476
|
-
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c,
|
|
8477
|
-
0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8478
|
-
0x12, 0x7d, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45,
|
|
8479
|
-
0x78, 0x69, 0x73, 0x74, 0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8575
|
+
0x74, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e,
|
|
8576
|
+
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8577
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
|
|
8578
|
+
0x54, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x69, 0x74, 0x65, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x74,
|
|
8579
|
+
0x61, 0x6c, 0x6c, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8580
|
+
0xad, 0x01, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74,
|
|
8581
|
+
0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65,
|
|
8582
|
+
0x6e, 0x74, 0x49, 0x64, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8480
8583
|
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8481
|
-
0x2e,
|
|
8482
|
-
|
|
8483
|
-
|
|
8484
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
|
8485
|
-
0x45, 0x78, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8486
|
-
0x95, 0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f,
|
|
8487
|
-
0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x3a, 0x2e, 0x6c,
|
|
8488
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8489
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76,
|
|
8490
|
-
0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69,
|
|
8491
|
-
0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8584
|
+
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8585
|
+
0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
|
|
8586
|
+
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8492
8587
|
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8493
|
-
0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8494
|
-
|
|
8495
|
-
|
|
8496
|
-
|
|
8497
|
-
|
|
8498
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66,
|
|
8499
|
-
0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8500
|
-
0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8501
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c,
|
|
8502
|
-
0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73,
|
|
8503
|
-
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x12, 0x80, 0x01, 0x0a, 0x11, 0x43,
|
|
8504
|
-
0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65,
|
|
8505
|
-
0x12, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8506
|
-
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65,
|
|
8507
|
-
0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65,
|
|
8508
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8509
|
-
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8510
|
-
0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43,
|
|
8511
|
-
0x6f, 0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x99, 0x01,
|
|
8512
|
-
0x0a, 0x21, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68,
|
|
8513
|
-
0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x53, 0x69, 0x74,
|
|
8514
|
-
0x65, 0x49, 0x64, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8588
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61,
|
|
8589
|
+
0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x43, 0x6c, 0x69,
|
|
8590
|
+
0x65, 0x6e, 0x74, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8591
|
+
0x7d, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78,
|
|
8592
|
+
0x69, 0x73, 0x74, 0x12, 0x32, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8515
8593
|
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8516
|
-
|
|
8517
|
-
|
|
8594
|
+
0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45, 0x78, 0x69, 0x73, 0x74,
|
|
8595
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8596
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8597
|
+
0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x45,
|
|
8598
|
+
0x78, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95,
|
|
8599
|
+
0x01, 0x0a, 0x18, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f, 0x63,
|
|
8600
|
+
0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x3a, 0x2e, 0x6c, 0x61,
|
|
8601
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8602
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69,
|
|
8603
|
+
0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c,
|
|
8604
|
+
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8605
|
+
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8606
|
+
0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x4c, 0x6f,
|
|
8607
|
+
0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x73, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70,
|
|
8608
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x10, 0x41, 0x6c, 0x6c, 0x50, 0x72,
|
|
8609
|
+
0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x12, 0x32, 0x2e, 0x6c, 0x61,
|
|
8610
|
+
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8611
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x66, 0x69,
|
|
8612
|
+
0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
|
|
8613
|
+
0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8614
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x6c, 0x6c, 0x50,
|
|
8615
|
+
0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70,
|
|
8616
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x12, 0x80, 0x01, 0x0a, 0x11, 0x43, 0x72,
|
|
8617
|
+
0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x12,
|
|
8618
|
+
0x33, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8619
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61,
|
|
8620
|
+
0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71,
|
|
8621
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8622
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8623
|
+
0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f,
|
|
8624
|
+
0x64, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x99, 0x01, 0x0a,
|
|
8625
|
+
0x21, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49,
|
|
8626
|
+
0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x53, 0x69, 0x74, 0x65,
|
|
8627
|
+
0x49, 0x64, 0x12, 0x38, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e,
|
|
8628
|
+
0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
|
8629
|
+
0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74,
|
|
8630
|
+
0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x1a, 0x38, 0x2e, 0x6c,
|
|
8631
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8632
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65,
|
|
8633
|
+
0x49, 0x64, 0x73, 0x57, 0x69, 0x74, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69,
|
|
8634
|
+
0x6f, 0x6e, 0x44, 0x61, 0x74, 0x61, 0x22, 0x00, 0x12, 0xad, 0x01, 0x0a, 0x20, 0x43, 0x68, 0x65,
|
|
8635
|
+
0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f,
|
|
8636
|
+
0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x42, 0x2e,
|
|
8518
8637
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8519
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8520
|
-
|
|
8521
|
-
|
|
8638
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53,
|
|
8639
|
+
0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53, 0x6f, 0x66, 0x74, 0x77,
|
|
8640
|
+
0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8641
|
+
0x74, 0x1a, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8642
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68,
|
|
8522
8643
|
0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x69, 0x7a, 0x65, 0x64, 0x53,
|
|
8523
|
-
0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
8524
|
-
|
|
8525
|
-
|
|
8526
|
-
|
|
8527
|
-
|
|
8528
|
-
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
|
|
8532
|
-
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
|
|
8536
|
-
|
|
8537
|
-
|
|
8538
|
-
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8539
|
-
0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74,
|
|
8540
|
-
0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8541
|
-
0x74, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73,
|
|
8542
|
-
0x12, 0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8644
|
+
0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65,
|
|
8645
|
+
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64,
|
|
8646
|
+
0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12,
|
|
8647
|
+
0x34, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8648
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61,
|
|
8649
|
+
0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x65,
|
|
8650
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8651
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8652
|
+
0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61,
|
|
8653
|
+
0x64, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74,
|
|
8654
|
+
0x0a, 0x0d, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x12,
|
|
8655
|
+
0x2f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8656
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53,
|
|
8657
|
+
0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
|
|
8658
|
+
0x1a, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8543
8659
|
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8544
|
-
0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65,
|
|
8545
|
-
|
|
8546
|
-
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
8547
|
-
0x74, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
|
8548
|
-
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d,
|
|
8549
|
-
0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73,
|
|
8550
|
-
0x74, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8551
|
-
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
8552
|
-
0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
|
|
8553
|
-
0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c,
|
|
8554
|
-
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8555
|
-
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70,
|
|
8660
|
+
0x53, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8661
|
+
0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70,
|
|
8556
8662
|
0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
|
|
8557
|
-
|
|
8558
|
-
|
|
8559
|
-
0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8560
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8561
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67,
|
|
8562
|
-
0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
|
|
8563
|
-
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65,
|
|
8564
|
-
0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74,
|
|
8565
|
-
0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e,
|
|
8566
|
-
0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65,
|
|
8567
|
-
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa1, 0x01, 0x0a, 0x1c, 0x47, 0x65, 0x74,
|
|
8568
|
-
0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e,
|
|
8569
|
-
0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8570
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8571
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79,
|
|
8572
|
-
0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8573
|
-
0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8574
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8575
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79,
|
|
8663
|
+
0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75,
|
|
8664
|
+
0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74,
|
|
8576
8665
|
0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8577
|
-
|
|
8578
|
-
0x18, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78,
|
|
8579
|
-
0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8580
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8581
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
|
|
8582
|
-
0x73, 0x42, 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65,
|
|
8583
|
-
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8584
|
-
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8585
|
-
0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45,
|
|
8586
|
-
0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
|
8587
|
-
0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x20, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62,
|
|
8588
|
-
0x6c, 0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46,
|
|
8589
|
-
0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8590
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8591
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
8592
|
-
0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65,
|
|
8593
|
-
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
|
|
8594
|
-
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
|
|
8595
|
-
0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x49, 0x73, 0x43, 0x75,
|
|
8596
|
-
0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61,
|
|
8597
|
-
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61,
|
|
8666
|
+
0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61,
|
|
8598
8667
|
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8599
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8600
|
-
|
|
8601
|
-
|
|
8602
|
-
|
|
8603
|
-
|
|
8668
|
+
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f,
|
|
8669
|
+
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
|
|
8670
|
+
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x47, 0x65,
|
|
8671
|
+
0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
|
|
8672
|
+
0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x3c, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8673
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8674
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61,
|
|
8675
|
+
0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52,
|
|
8676
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3d, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8677
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8678
|
+
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
8679
|
+
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x52, 0x65, 0x73,
|
|
8680
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xa1, 0x01, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x53,
|
|
8681
|
+
0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d, 0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69,
|
|
8682
|
+
0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x3e, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8683
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8684
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d,
|
|
8685
|
+
0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49,
|
|
8686
|
+
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3f, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8687
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8688
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x73, 0x42, 0x79, 0x4d,
|
|
8689
|
+
0x73, 0x6d, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49,
|
|
8690
|
+
0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x95, 0x01, 0x0a, 0x18,
|
|
8691
|
+
0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78, 0x74,
|
|
8692
|
+
0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x12, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8693
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8694
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73,
|
|
8695
|
+
0x42, 0x79, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71,
|
|
8696
|
+
0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65,
|
|
8697
|
+
0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31,
|
|
8698
|
+
0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x79, 0x45, 0x78,
|
|
8699
|
+
0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8700
|
+
0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x20, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c,
|
|
8701
|
+
0x65, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65,
|
|
8702
|
+
0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8703
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8704
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x74, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x43,
|
|
8705
|
+
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72,
|
|
8706
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
|
|
8707
|
+
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
|
|
8708
|
+
0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0xaa, 0x01, 0x0a, 0x1f, 0x49, 0x73, 0x43, 0x75, 0x73,
|
|
8604
8709
|
0x74, 0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74,
|
|
8605
|
-
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
|
8606
|
-
0x73, 0x65, 0x22, 0x00, 0x12, 0xb0, 0x01, 0x0a, 0x21, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64,
|
|
8607
|
-
0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74,
|
|
8608
|
-
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x43, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8710
|
+
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x41, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8609
8711
|
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8610
|
-
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73,
|
|
8611
|
-
|
|
8612
|
-
0x6e,
|
|
8613
|
-
0x44, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8614
|
-
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x4d, 0x65,
|
|
8615
|
-
0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65,
|
|
8616
|
-
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73,
|
|
8617
|
-
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x53, 0x69,
|
|
8618
|
-
0x74, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8619
|
-
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8620
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65,
|
|
8621
|
-
0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x6c, 0x61,
|
|
8622
|
-
0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65,
|
|
8623
|
-
0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50,
|
|
8624
|
-
0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8625
|
-
0x12, 0x95, 0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53,
|
|
8626
|
-
0x6b, 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x3a, 0x2e,
|
|
8712
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x46,
|
|
8713
|
+
0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
|
|
8714
|
+
0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e,
|
|
8627
8715
|
0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
8628
|
-
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8629
|
-
|
|
8630
|
-
|
|
8716
|
+
0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x43, 0x75, 0x73, 0x74,
|
|
8717
|
+
0x6f, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69,
|
|
8718
|
+
0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
|
8719
|
+
0x65, 0x22, 0x00, 0x12, 0xb0, 0x01, 0x0a, 0x21, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61,
|
|
8720
|
+
0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69,
|
|
8721
|
+
0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x43, 0x2e, 0x6c, 0x61, 0x6e, 0x73,
|
|
8631
8722
|
0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61,
|
|
8632
|
-
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8633
|
-
|
|
8634
|
-
|
|
8635
|
-
|
|
8636
|
-
|
|
8637
|
-
|
|
8638
|
-
|
|
8639
|
-
|
|
8640
|
-
0x65,
|
|
8641
|
-
|
|
8642
|
-
|
|
8643
|
-
|
|
8644
|
-
|
|
8645
|
-
|
|
8646
|
-
|
|
8647
|
-
|
|
8648
|
-
|
|
8649
|
-
|
|
8723
|
+
0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
|
|
8724
|
+
0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
8725
|
+
0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x44,
|
|
8726
|
+
0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74,
|
|
8727
|
+
0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x73, 0x4d, 0x65, 0x74,
|
|
8728
|
+
0x61, 0x64, 0x61, 0x74, 0x61, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x46, 0x65, 0x64, 0x65, 0x72,
|
|
8729
|
+
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70,
|
|
8730
|
+
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74,
|
|
8731
|
+
0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x30, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8732
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8733
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72, 0x65, 0x76,
|
|
8734
|
+
0x69, 0x65, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x6c, 0x61, 0x6e,
|
|
8735
|
+
0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e,
|
|
8736
|
+
0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x50, 0x72,
|
|
8737
|
+
0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
|
|
8738
|
+
0x95, 0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53, 0x6b,
|
|
8739
|
+
0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x3a, 0x2e, 0x6c,
|
|
8740
|
+
0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74,
|
|
8741
|
+
0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
|
|
8742
|
+
0x69, 0x74, 0x65, 0x53, 0x6b, 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72,
|
|
8743
|
+
0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77,
|
|
8744
|
+
0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e,
|
|
8745
|
+
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x74, 0x65, 0x53,
|
|
8746
|
+
0x6b, 0x69, 0x70, 0x44, 0x61, 0x74, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73,
|
|
8747
|
+
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x86, 0x01, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53,
|
|
8748
|
+
0x69, 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x12,
|
|
8749
|
+
0x35, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c,
|
|
8750
|
+
0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53,
|
|
8751
|
+
0x69, 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72, 0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x52,
|
|
8752
|
+
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8650
8753
|
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8651
|
-
0x76, 0x31, 0x2e,
|
|
8652
|
-
|
|
8653
|
-
|
|
8654
|
-
|
|
8655
|
-
|
|
8754
|
+
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x69, 0x74, 0x65, 0x48, 0x69, 0x65, 0x72, 0x61, 0x72,
|
|
8755
|
+
0x63, 0x68, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
|
|
8756
|
+
0x12, 0xa7, 0x01, 0x0a, 0x1e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72,
|
|
8757
|
+
0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f,
|
|
8758
|
+
0x6b, 0x65, 0x6e, 0x12, 0x40, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72,
|
|
8759
|
+
0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
|
8760
|
+
0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f,
|
|
8761
|
+
0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65,
|
|
8762
|
+
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70,
|
|
8763
|
+
0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76,
|
|
8764
|
+
0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x50, 0x65, 0x72,
|
|
8765
|
+
0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
|
|
8766
|
+
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x47,
|
|
8767
|
+
0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65,
|
|
8768
|
+
0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x39, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65,
|
|
8769
|
+
0x70, 0x65, 0x72, 0x2e, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e,
|
|
8770
|
+
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69,
|
|
8771
|
+
0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
|
|
8772
|
+
0x74, 0x1a, 0x3a, 0x2e, 0x6c, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x65, 0x70, 0x65, 0x72, 0x2e, 0x6d,
|
|
8773
|
+
0x75, 0x6c, 0x74, 0x69, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
|
|
8774
|
+
0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74,
|
|
8775
|
+
0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42,
|
|
8776
|
+
0x10, 0x5a, 0x0e, 0x2e, 0x2f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x2d, 0x67,
|
|
8777
|
+
0x6f, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
8656
8778
|
}
|
|
8657
8779
|
|
|
8658
8780
|
var (
|
|
@@ -8668,7 +8790,7 @@ func file_multitenant_proto_rawDescGZIP() []byte {
|
|
|
8668
8790
|
}
|
|
8669
8791
|
|
|
8670
8792
|
var file_multitenant_proto_enumTypes = make([]protoimpl.EnumInfo, 5)
|
|
8671
|
-
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo,
|
|
8793
|
+
var file_multitenant_proto_msgTypes = make([]protoimpl.MessageInfo, 123)
|
|
8672
8794
|
var file_multitenant_proto_goTypes = []any{
|
|
8673
8795
|
(SiteMode)(0), // 0: lansweeper.multitenant.v1.SiteMode
|
|
8674
8796
|
(InstallStateValue)(0), // 1: lansweeper.multitenant.v1.InstallStateValue
|
|
@@ -8783,21 +8905,23 @@ var file_multitenant_proto_goTypes = []any{
|
|
|
8783
8905
|
(*GetSitePreviewResponse)(nil), // 110: lansweeper.multitenant.v1.GetSitePreviewResponse
|
|
8784
8906
|
(*CreateOwnerPersonalAccessTokenRequest)(nil), // 111: lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenRequest
|
|
8785
8907
|
(*CreateOwnerPersonalAccessTokenResponse)(nil), // 112: lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenResponse
|
|
8786
|
-
(*
|
|
8787
|
-
(*
|
|
8788
|
-
(*
|
|
8789
|
-
(*
|
|
8790
|
-
(*
|
|
8791
|
-
(*
|
|
8792
|
-
(*
|
|
8793
|
-
(*
|
|
8794
|
-
(*
|
|
8795
|
-
nil,
|
|
8796
|
-
(*
|
|
8797
|
-
|
|
8798
|
-
(*
|
|
8799
|
-
(*
|
|
8800
|
-
(*
|
|
8908
|
+
(*GetInstallationSettingsRequest)(nil), // 113: lansweeper.multitenant.v1.GetInstallationSettingsRequest
|
|
8909
|
+
(*GetInstallationSettingsResponse)(nil), // 114: lansweeper.multitenant.v1.GetInstallationSettingsResponse
|
|
8910
|
+
(*CheckAccessToSiteByAccountIdRequest_UserInfo)(nil), // 115: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
8911
|
+
(*Install_InstallState)(nil), // 116: lansweeper.multitenant.v1.Install.InstallState
|
|
8912
|
+
(*GetInstallsBySiteRequest_Filter)(nil), // 117: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
8913
|
+
(*UpdateInstallByClientIdRequest_SyncerSettings)(nil), // 118: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
8914
|
+
(*RemoveInstallDataBySiteIdResponse_Result)(nil), // 119: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
8915
|
+
(*GetUserPermissionsResponse_AuthorizationAction)(nil), // 120: lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
8916
|
+
(*GetUserPermissionsResponse_Scope)(nil), // 121: lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
8917
|
+
(*GetUserPermissionsResponse_Role)(nil), // 122: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
8918
|
+
(*DisableWebhookEmailRequest_WebhookError)(nil), // 123: lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
8919
|
+
nil, // 124: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
8920
|
+
(*GetMsmpOrganizationListRequest_MsmpPaginationRequest)(nil), // 125: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
|
|
8921
|
+
(*GetMsmpOrganizationListResponse_MsmpOrganization)(nil), // 126: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
|
|
8922
|
+
(*GetMsmpOrganizationListResponse_MsmpPageInfo)(nil), // 127: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
|
|
8923
|
+
(*generated_go.SiteLimits)(nil), // 128: lansweeper.shared.limits.v1.SiteLimits
|
|
8924
|
+
(*emptypb.Empty)(nil), // 129: google.protobuf.Empty
|
|
8801
8925
|
}
|
|
8802
8926
|
var file_multitenant_proto_depIdxs = []int32{
|
|
8803
8927
|
5, // 0: lansweeper.multitenant.v1.GetPreviewAccountByIdResponse.account:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
@@ -8809,13 +8933,13 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
8809
8933
|
12, // 6: lansweeper.multitenant.v1.Profile.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
8810
8934
|
15, // 7: lansweeper.multitenant.v1.ListProfilesByAccountIdResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
8811
8935
|
15, // 8: lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse.profile:type_name -> lansweeper.multitenant.v1.Profile
|
|
8812
|
-
|
|
8813
|
-
|
|
8936
|
+
115, // 9: lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.user_info:type_name -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest.UserInfo
|
|
8937
|
+
116, // 10: lansweeper.multitenant.v1.Install.state:type_name -> lansweeper.multitenant.v1.Install.InstallState
|
|
8814
8938
|
2, // 11: lansweeper.multitenant.v1.Install.install_type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8815
8939
|
24, // 12: lansweeper.multitenant.v1.GetInstallsByIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8816
8940
|
24, // 13: lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8817
8941
|
2, // 14: lansweeper.multitenant.v1.NullableInstallType.data:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8818
|
-
|
|
8942
|
+
117, // 15: lansweeper.multitenant.v1.GetInstallsBySiteRequest.filter:type_name -> lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter
|
|
8819
8943
|
24, // 16: lansweeper.multitenant.v1.GetInstallsBySiteResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8820
8944
|
24, // 17: lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse.installs:type_name -> lansweeper.multitenant.v1.Install
|
|
8821
8945
|
24, // 18: lansweeper.multitenant.v1.GetInstallbyClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
@@ -8825,29 +8949,29 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
8825
8949
|
2, // 22: lansweeper.multitenant.v1.CreateAndLinkInstallRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8826
8950
|
24, // 23: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8827
8951
|
25, // 24: lansweeper.multitenant.v1.CreateAndLinkInstallResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
8828
|
-
|
|
8952
|
+
118, // 25: lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.syncer_settings:type_name -> lansweeper.multitenant.v1.UpdateInstallByClientIdRequest.SyncerSettings
|
|
8829
8953
|
24, // 26: lansweeper.multitenant.v1.UpdateInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8830
8954
|
2, // 27: lansweeper.multitenant.v1.LinkTrialInstallByClientIdRequest.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8831
8955
|
24, // 28: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8832
8956
|
25, // 29: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.credentials:type_name -> lansweeper.multitenant.v1.InstallCredentials
|
|
8833
8957
|
12, // 30: lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse.site:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
8834
|
-
|
|
8958
|
+
119, // 31: lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.result:type_name -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse.Result
|
|
8835
8959
|
24, // 32: lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse.install:type_name -> lansweeper.multitenant.v1.Install
|
|
8836
|
-
|
|
8837
|
-
|
|
8960
|
+
122, // 33: lansweeper.multitenant.v1.GetUserPermissionsResponse.roles:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Role
|
|
8961
|
+
123, // 34: lansweeper.multitenant.v1.DisableWebhookEmailRequest.errors:type_name -> lansweeper.multitenant.v1.DisableWebhookEmailRequest.WebhookError
|
|
8838
8962
|
61, // 35: lansweeper.multitenant.v1.AuthorizedSitesResponse.site:type_name -> lansweeper.multitenant.v1.Site
|
|
8839
8963
|
3, // 36: lansweeper.multitenant.v1.Subscription.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
8840
8964
|
3, // 37: lansweeper.multitenant.v1.UpdateSiteSubscriptionRequest.type:type_name -> lansweeper.multitenant.v1.SubscriptionType
|
|
8841
8965
|
68, // 38: lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse.subscription:type_name -> lansweeper.multitenant.v1.Subscription
|
|
8842
8966
|
15, // 39: lansweeper.multitenant.v1.AllProfilesExistResponse.profiles:type_name -> lansweeper.multitenant.v1.Profile
|
|
8843
8967
|
5, // 40: lansweeper.multitenant.v1.AllProfilesExistResponse.createdBy:type_name -> lansweeper.multitenant.v1.PreviewAccount
|
|
8844
|
-
|
|
8968
|
+
124, // 41: lansweeper.multitenant.v1.GetSiteLimitsResponse.site_limits:type_name -> lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry
|
|
8845
8969
|
4, // 42: lansweeper.multitenant.v1.SiteHierarchyIdsItem.parent_type:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsItem.ParentType
|
|
8846
8970
|
93, // 43: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse.items:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsItem
|
|
8847
8971
|
94, // 44: lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse.page_info:type_name -> lansweeper.multitenant.v1.SiteHierarchyIdsPageInfo
|
|
8848
|
-
|
|
8849
|
-
|
|
8850
|
-
|
|
8972
|
+
125, // 45: lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListRequest.MsmpPaginationRequest
|
|
8973
|
+
126, // 46: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.organizations:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpOrganization
|
|
8974
|
+
127, // 47: lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.msmp_page_info:type_name -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse.MsmpPageInfo
|
|
8851
8975
|
96, // 48: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdRequest.msmp_pagination:type_name -> lansweeper.multitenant.v1.MsmpPagination
|
|
8852
8976
|
12, // 49: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.sites:type_name -> lansweeper.multitenant.v1.PreviewSite
|
|
8853
8977
|
97, // 50: lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse.msmp_pagination_info:type_name -> lansweeper.multitenant.v1.MsmpPaginationInfo
|
|
@@ -8856,10 +8980,10 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
8856
8980
|
1, // 53: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.state:type_name -> lansweeper.multitenant.v1.InstallStateValue
|
|
8857
8981
|
2, // 54: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.type:type_name -> lansweeper.multitenant.v1.InstallType
|
|
8858
8982
|
32, // 55: lansweeper.multitenant.v1.GetInstallsBySiteRequest.Filter.install_type:type_name -> lansweeper.multitenant.v1.NullableInstallType
|
|
8859
|
-
|
|
8983
|
+
120, // 56: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.actions:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.AuthorizationAction
|
|
8860
8984
|
24, // 57: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.installations:type_name -> lansweeper.multitenant.v1.Install
|
|
8861
|
-
|
|
8862
|
-
|
|
8985
|
+
121, // 58: lansweeper.multitenant.v1.GetUserPermissionsResponse.Role.scopes:type_name -> lansweeper.multitenant.v1.GetUserPermissionsResponse.Scope
|
|
8986
|
+
128, // 59: lansweeper.multitenant.v1.GetSiteLimitsResponse.SiteLimitsEntry.value:type_name -> lansweeper.shared.limits.v1.SiteLimits
|
|
8863
8987
|
20, // 60: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdRequest
|
|
8864
8988
|
22, // 61: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:input_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdRequest
|
|
8865
8989
|
6, // 62: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:input_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdRequest
|
|
@@ -8909,57 +9033,59 @@ var file_multitenant_proto_depIdxs = []int32{
|
|
|
8909
9033
|
88, // 106: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:input_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportRequest
|
|
8910
9034
|
92, // 107: lansweeper.multitenant.v1.Multitenant.GetSiteHierarchyIds:input_type -> lansweeper.multitenant.v1.GetSiteHierarchyIdsRequest
|
|
8911
9035
|
111, // 108: lansweeper.multitenant.v1.Multitenant.CreateOwnerPersonalAccessToken:input_type -> lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenRequest
|
|
8912
|
-
|
|
8913
|
-
|
|
8914
|
-
|
|
8915
|
-
|
|
8916
|
-
|
|
8917
|
-
|
|
8918
|
-
|
|
8919
|
-
|
|
8920
|
-
|
|
8921
|
-
|
|
8922
|
-
|
|
8923
|
-
|
|
8924
|
-
|
|
8925
|
-
|
|
8926
|
-
|
|
8927
|
-
|
|
8928
|
-
|
|
8929
|
-
|
|
8930
|
-
|
|
8931
|
-
|
|
8932
|
-
|
|
8933
|
-
|
|
8934
|
-
|
|
8935
|
-
|
|
8936
|
-
|
|
8937
|
-
|
|
8938
|
-
|
|
8939
|
-
|
|
8940
|
-
|
|
8941
|
-
|
|
8942
|
-
|
|
8943
|
-
|
|
8944
|
-
|
|
8945
|
-
|
|
8946
|
-
|
|
8947
|
-
|
|
8948
|
-
|
|
8949
|
-
|
|
8950
|
-
|
|
8951
|
-
|
|
8952
|
-
|
|
8953
|
-
|
|
8954
|
-
|
|
8955
|
-
|
|
8956
|
-
|
|
8957
|
-
|
|
8958
|
-
|
|
8959
|
-
|
|
8960
|
-
|
|
8961
|
-
|
|
8962
|
-
|
|
9036
|
+
113, // 109: lansweeper.multitenant.v1.Multitenant.GetInstallationSettings:input_type -> lansweeper.multitenant.v1.GetInstallationSettingsRequest
|
|
9037
|
+
21, // 110: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByAccountId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByAccountIdResponse
|
|
9038
|
+
23, // 111: lansweeper.multitenant.v1.Multitenant.CheckAccessToSiteByClientId:output_type -> lansweeper.multitenant.v1.CheckAccessToSiteByClientIdResponse
|
|
9039
|
+
7, // 112: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountById:output_type -> lansweeper.multitenant.v1.GetPreviewAccountByIdResponse
|
|
9040
|
+
9, // 113: lansweeper.multitenant.v1.Multitenant.SearchPreviewAccountsBySiteIds:output_type -> lansweeper.multitenant.v1.SearchPreviewAccountsBySiteIdsResponse
|
|
9041
|
+
11, // 114: lansweeper.multitenant.v1.Multitenant.GetPreviewAccountsByAccountIds:output_type -> lansweeper.multitenant.v1.GetPreviewAccountsByAccountIdsResponse
|
|
9042
|
+
17, // 115: lansweeper.multitenant.v1.Multitenant.ListProfilesByAccountId:output_type -> lansweeper.multitenant.v1.ListProfilesByAccountIdResponse
|
|
9043
|
+
19, // 116: lansweeper.multitenant.v1.Multitenant.ListAuthorizedLinkProfiles:output_type -> lansweeper.multitenant.v1.ListAuthorizedLinkProfilesResponse
|
|
9044
|
+
14, // 117: lansweeper.multitenant.v1.Multitenant.PatchSiteMode:output_type -> lansweeper.multitenant.v1.PatchSiteModeResponse
|
|
9045
|
+
40, // 118: lansweeper.multitenant.v1.Multitenant.CreateInstall:output_type -> lansweeper.multitenant.v1.CreateInstallResponse
|
|
9046
|
+
42, // 119: lansweeper.multitenant.v1.Multitenant.CreateAndLinkInstall:output_type -> lansweeper.multitenant.v1.CreateAndLinkInstallResponse
|
|
9047
|
+
34, // 120: lansweeper.multitenant.v1.Multitenant.GetInstallsBySite:output_type -> lansweeper.multitenant.v1.GetInstallsBySiteResponse
|
|
9048
|
+
36, // 121: lansweeper.multitenant.v1.Multitenant.GetInstallsforMultipleSites:output_type -> lansweeper.multitenant.v1.GetInstallsForMultipleSitesResponse
|
|
9049
|
+
29, // 122: lansweeper.multitenant.v1.Multitenant.GetInstallsById:output_type -> lansweeper.multitenant.v1.GetInstallsByIdResponse
|
|
9050
|
+
27, // 123: lansweeper.multitenant.v1.Multitenant.GetInstallsCountBySite:output_type -> lansweeper.multitenant.v1.GetInstallsCountResponse
|
|
9051
|
+
38, // 124: lansweeper.multitenant.v1.Multitenant.GetInstallbyClientId:output_type -> lansweeper.multitenant.v1.GetInstallbyClientIdResponse
|
|
9052
|
+
44, // 125: lansweeper.multitenant.v1.Multitenant.UpdateInstallByClientId:output_type -> lansweeper.multitenant.v1.UpdateInstallByClientIdResponse
|
|
9053
|
+
46, // 126: lansweeper.multitenant.v1.Multitenant.RotateInstallByClientId:output_type -> lansweeper.multitenant.v1.RotateInstallByClientIdResponse
|
|
9054
|
+
50, // 127: lansweeper.multitenant.v1.Multitenant.LinkTrialInstallByClientId:output_type -> lansweeper.multitenant.v1.LinkTrialInstallByClientIdResponse
|
|
9055
|
+
48, // 128: lansweeper.multitenant.v1.Multitenant.UnlinkInstallByClientId:output_type -> lansweeper.multitenant.v1.UnlinkInstallByClientIdResponse
|
|
9056
|
+
52, // 129: lansweeper.multitenant.v1.Multitenant.RemoveInstallDataBySiteId:output_type -> lansweeper.multitenant.v1.RemoveInstallDataBySiteIdResponse
|
|
9057
|
+
54, // 130: lansweeper.multitenant.v1.Multitenant.GetDuplicatedInstallsByGlobalId:output_type -> lansweeper.multitenant.v1.GetDuplicatedInstallsByGlobalIdResponse
|
|
9058
|
+
56, // 131: lansweeper.multitenant.v1.Multitenant.GetUserPermissions:output_type -> lansweeper.multitenant.v1.GetUserPermissionsResponse
|
|
9059
|
+
58, // 132: lansweeper.multitenant.v1.Multitenant.ValidateApplicationPersonalAccessToken:output_type -> lansweeper.multitenant.v1.ValidateApplicationPersonalAccessTokenResponse
|
|
9060
|
+
60, // 133: lansweeper.multitenant.v1.Multitenant.SendDisabledWebhookEmail:output_type -> lansweeper.multitenant.v1.DisableWebhookEmailResponse
|
|
9061
|
+
63, // 134: lansweeper.multitenant.v1.Multitenant.GetAuthorizedSitesByApplicationId:output_type -> lansweeper.multitenant.v1.AuthorizedSitesResponse
|
|
9062
|
+
65, // 135: lansweeper.multitenant.v1.Multitenant.GetAccountIdsBySiteId:output_type -> lansweeper.multitenant.v1.GetAccountIdsBySiteIdResponse
|
|
9063
|
+
67, // 136: lansweeper.multitenant.v1.Multitenant.CheckManagerInApplication:output_type -> lansweeper.multitenant.v1.CheckManagerInApplicationResponse
|
|
9064
|
+
70, // 137: lansweeper.multitenant.v1.Multitenant.UpdateSiteSubscription:output_type -> lansweeper.multitenant.v1.UpdateSiteSubscriptionResponse
|
|
9065
|
+
72, // 138: lansweeper.multitenant.v1.Multitenant.CreateTrialSiteAndInstaller:output_type -> lansweeper.multitenant.v1.CreateTrialSiteAndInstallerResponse
|
|
9066
|
+
74, // 139: lansweeper.multitenant.v1.Multitenant.GetInstallationLicenseByClientId:output_type -> lansweeper.multitenant.v1.GetInstallationLicenseByClientIdResponse
|
|
9067
|
+
78, // 140: lansweeper.multitenant.v1.Multitenant.AllProfilesExist:output_type -> lansweeper.multitenant.v1.AllProfilesExistResponse
|
|
9068
|
+
80, // 141: lansweeper.multitenant.v1.Multitenant.SendInviteLocalUsersMail:output_type -> lansweeper.multitenant.v1.SendInviteLocalUsersMailResponse
|
|
9069
|
+
76, // 142: lansweeper.multitenant.v1.Multitenant.AllProfileExists:output_type -> lansweeper.multitenant.v1.AllProfileExistsResponse
|
|
9070
|
+
82, // 143: lansweeper.multitenant.v1.Multitenant.CreateLinkingCode:output_type -> lansweeper.multitenant.v1.CreateLinkingCodeResponse
|
|
9071
|
+
83, // 144: lansweeper.multitenant.v1.Multitenant.GetSiteIdsWithIntegrationBySiteId:output_type -> lansweeper.multitenant.v1.GetSiteIdsWithIntegrationData
|
|
9072
|
+
85, // 145: lansweeper.multitenant.v1.Multitenant.CheckStandardizedSoftwareEnabled:output_type -> lansweeper.multitenant.v1.CheckStandardizedSoftwareEnabledResponse
|
|
9073
|
+
87, // 146: lansweeper.multitenant.v1.Multitenant.UpdateSiteMetadata:output_type -> lansweeper.multitenant.v1.UpdateSiteMetadataResponse
|
|
9074
|
+
91, // 147: lansweeper.multitenant.v1.Multitenant.GetSiteLimits:output_type -> lansweeper.multitenant.v1.GetSiteLimitsResponse
|
|
9075
|
+
99, // 148: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationList:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationListResponse
|
|
9076
|
+
101, // 149: lansweeper.multitenant.v1.Multitenant.GetMsmpOrganizationAccount:output_type -> lansweeper.multitenant.v1.GetMsmpOrganizationAccountResponse
|
|
9077
|
+
103, // 150: lansweeper.multitenant.v1.Multitenant.GetSitesByMsmpOrganizationId:output_type -> lansweeper.multitenant.v1.GetSitesByMsmpOrganizationIdResponse
|
|
9078
|
+
31, // 151: lansweeper.multitenant.v1.Multitenant.GetInstallsByExternalIds:output_type -> lansweeper.multitenant.v1.GetInstallsByExternalIdsResponse
|
|
9079
|
+
129, // 152: lansweeper.multitenant.v1.Multitenant.SetEnabledCustomFieldsFederation:output_type -> google.protobuf.Empty
|
|
9080
|
+
107, // 153: lansweeper.multitenant.v1.Multitenant.IsCustomFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsCustomFieldsFederationEnabledResponse
|
|
9081
|
+
108, // 154: lansweeper.multitenant.v1.Multitenant.IsMetadataFieldsFederationEnabled:output_type -> lansweeper.multitenant.v1.IsMetadataFieldsFederationEnabledResponse
|
|
9082
|
+
110, // 155: lansweeper.multitenant.v1.Multitenant.GetSitePreview:output_type -> lansweeper.multitenant.v1.GetSitePreviewResponse
|
|
9083
|
+
89, // 156: lansweeper.multitenant.v1.Multitenant.UpdateSiteSkipDataExport:output_type -> lansweeper.multitenant.v1.UpdateSiteSkipDataExportResponse
|
|
9084
|
+
95, // 157: lansweeper.multitenant.v1.Multitenant.GetSiteHierarchyIds:output_type -> lansweeper.multitenant.v1.GetSiteHierarchyIdsResponse
|
|
9085
|
+
112, // 158: lansweeper.multitenant.v1.Multitenant.CreateOwnerPersonalAccessToken:output_type -> lansweeper.multitenant.v1.CreateOwnerPersonalAccessTokenResponse
|
|
9086
|
+
114, // 159: lansweeper.multitenant.v1.Multitenant.GetInstallationSettings:output_type -> lansweeper.multitenant.v1.GetInstallationSettingsResponse
|
|
9087
|
+
110, // [110:160] is the sub-list for method output_type
|
|
9088
|
+
60, // [60:110] is the sub-list for method input_type
|
|
8963
9089
|
60, // [60:60] is the sub-list for extension type_name
|
|
8964
9090
|
60, // [60:60] is the sub-list for extension extendee
|
|
8965
9091
|
0, // [0:60] is the sub-list for field type_name
|
|
@@ -10268,7 +10394,7 @@ func file_multitenant_proto_init() {
|
|
|
10268
10394
|
}
|
|
10269
10395
|
}
|
|
10270
10396
|
file_multitenant_proto_msgTypes[108].Exporter = func(v any, i int) any {
|
|
10271
|
-
switch v := v.(*
|
|
10397
|
+
switch v := v.(*GetInstallationSettingsRequest); i {
|
|
10272
10398
|
case 0:
|
|
10273
10399
|
return &v.state
|
|
10274
10400
|
case 1:
|
|
@@ -10280,7 +10406,7 @@ func file_multitenant_proto_init() {
|
|
|
10280
10406
|
}
|
|
10281
10407
|
}
|
|
10282
10408
|
file_multitenant_proto_msgTypes[109].Exporter = func(v any, i int) any {
|
|
10283
|
-
switch v := v.(*
|
|
10409
|
+
switch v := v.(*GetInstallationSettingsResponse); i {
|
|
10284
10410
|
case 0:
|
|
10285
10411
|
return &v.state
|
|
10286
10412
|
case 1:
|
|
@@ -10292,7 +10418,7 @@ func file_multitenant_proto_init() {
|
|
|
10292
10418
|
}
|
|
10293
10419
|
}
|
|
10294
10420
|
file_multitenant_proto_msgTypes[110].Exporter = func(v any, i int) any {
|
|
10295
|
-
switch v := v.(*
|
|
10421
|
+
switch v := v.(*CheckAccessToSiteByAccountIdRequest_UserInfo); i {
|
|
10296
10422
|
case 0:
|
|
10297
10423
|
return &v.state
|
|
10298
10424
|
case 1:
|
|
@@ -10304,7 +10430,7 @@ func file_multitenant_proto_init() {
|
|
|
10304
10430
|
}
|
|
10305
10431
|
}
|
|
10306
10432
|
file_multitenant_proto_msgTypes[111].Exporter = func(v any, i int) any {
|
|
10307
|
-
switch v := v.(*
|
|
10433
|
+
switch v := v.(*Install_InstallState); i {
|
|
10308
10434
|
case 0:
|
|
10309
10435
|
return &v.state
|
|
10310
10436
|
case 1:
|
|
@@ -10316,7 +10442,7 @@ func file_multitenant_proto_init() {
|
|
|
10316
10442
|
}
|
|
10317
10443
|
}
|
|
10318
10444
|
file_multitenant_proto_msgTypes[112].Exporter = func(v any, i int) any {
|
|
10319
|
-
switch v := v.(*
|
|
10445
|
+
switch v := v.(*GetInstallsBySiteRequest_Filter); i {
|
|
10320
10446
|
case 0:
|
|
10321
10447
|
return &v.state
|
|
10322
10448
|
case 1:
|
|
@@ -10328,7 +10454,7 @@ func file_multitenant_proto_init() {
|
|
|
10328
10454
|
}
|
|
10329
10455
|
}
|
|
10330
10456
|
file_multitenant_proto_msgTypes[113].Exporter = func(v any, i int) any {
|
|
10331
|
-
switch v := v.(*
|
|
10457
|
+
switch v := v.(*UpdateInstallByClientIdRequest_SyncerSettings); i {
|
|
10332
10458
|
case 0:
|
|
10333
10459
|
return &v.state
|
|
10334
10460
|
case 1:
|
|
@@ -10340,7 +10466,7 @@ func file_multitenant_proto_init() {
|
|
|
10340
10466
|
}
|
|
10341
10467
|
}
|
|
10342
10468
|
file_multitenant_proto_msgTypes[114].Exporter = func(v any, i int) any {
|
|
10343
|
-
switch v := v.(*
|
|
10469
|
+
switch v := v.(*RemoveInstallDataBySiteIdResponse_Result); i {
|
|
10344
10470
|
case 0:
|
|
10345
10471
|
return &v.state
|
|
10346
10472
|
case 1:
|
|
@@ -10352,7 +10478,7 @@ func file_multitenant_proto_init() {
|
|
|
10352
10478
|
}
|
|
10353
10479
|
}
|
|
10354
10480
|
file_multitenant_proto_msgTypes[115].Exporter = func(v any, i int) any {
|
|
10355
|
-
switch v := v.(*
|
|
10481
|
+
switch v := v.(*GetUserPermissionsResponse_AuthorizationAction); i {
|
|
10356
10482
|
case 0:
|
|
10357
10483
|
return &v.state
|
|
10358
10484
|
case 1:
|
|
@@ -10364,7 +10490,19 @@ func file_multitenant_proto_init() {
|
|
|
10364
10490
|
}
|
|
10365
10491
|
}
|
|
10366
10492
|
file_multitenant_proto_msgTypes[116].Exporter = func(v any, i int) any {
|
|
10367
|
-
switch v := v.(*
|
|
10493
|
+
switch v := v.(*GetUserPermissionsResponse_Scope); i {
|
|
10494
|
+
case 0:
|
|
10495
|
+
return &v.state
|
|
10496
|
+
case 1:
|
|
10497
|
+
return &v.sizeCache
|
|
10498
|
+
case 2:
|
|
10499
|
+
return &v.unknownFields
|
|
10500
|
+
default:
|
|
10501
|
+
return nil
|
|
10502
|
+
}
|
|
10503
|
+
}
|
|
10504
|
+
file_multitenant_proto_msgTypes[117].Exporter = func(v any, i int) any {
|
|
10505
|
+
switch v := v.(*GetUserPermissionsResponse_Role); i {
|
|
10368
10506
|
case 0:
|
|
10369
10507
|
return &v.state
|
|
10370
10508
|
case 1:
|
|
@@ -10376,6 +10514,18 @@ func file_multitenant_proto_init() {
|
|
|
10376
10514
|
}
|
|
10377
10515
|
}
|
|
10378
10516
|
file_multitenant_proto_msgTypes[118].Exporter = func(v any, i int) any {
|
|
10517
|
+
switch v := v.(*DisableWebhookEmailRequest_WebhookError); i {
|
|
10518
|
+
case 0:
|
|
10519
|
+
return &v.state
|
|
10520
|
+
case 1:
|
|
10521
|
+
return &v.sizeCache
|
|
10522
|
+
case 2:
|
|
10523
|
+
return &v.unknownFields
|
|
10524
|
+
default:
|
|
10525
|
+
return nil
|
|
10526
|
+
}
|
|
10527
|
+
}
|
|
10528
|
+
file_multitenant_proto_msgTypes[120].Exporter = func(v any, i int) any {
|
|
10379
10529
|
switch v := v.(*GetMsmpOrganizationListRequest_MsmpPaginationRequest); i {
|
|
10380
10530
|
case 0:
|
|
10381
10531
|
return &v.state
|
|
@@ -10387,7 +10537,7 @@ func file_multitenant_proto_init() {
|
|
|
10387
10537
|
return nil
|
|
10388
10538
|
}
|
|
10389
10539
|
}
|
|
10390
|
-
file_multitenant_proto_msgTypes[
|
|
10540
|
+
file_multitenant_proto_msgTypes[121].Exporter = func(v any, i int) any {
|
|
10391
10541
|
switch v := v.(*GetMsmpOrganizationListResponse_MsmpOrganization); i {
|
|
10392
10542
|
case 0:
|
|
10393
10543
|
return &v.state
|
|
@@ -10399,7 +10549,7 @@ func file_multitenant_proto_init() {
|
|
|
10399
10549
|
return nil
|
|
10400
10550
|
}
|
|
10401
10551
|
}
|
|
10402
|
-
file_multitenant_proto_msgTypes[
|
|
10552
|
+
file_multitenant_proto_msgTypes[122].Exporter = func(v any, i int) any {
|
|
10403
10553
|
switch v := v.(*GetMsmpOrganizationListResponse_MsmpPageInfo); i {
|
|
10404
10554
|
case 0:
|
|
10405
10555
|
return &v.state
|
|
@@ -10423,7 +10573,7 @@ func file_multitenant_proto_init() {
|
|
|
10423
10573
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
10424
10574
|
RawDescriptor: file_multitenant_proto_rawDesc,
|
|
10425
10575
|
NumEnums: 5,
|
|
10426
|
-
NumMessages:
|
|
10576
|
+
NumMessages: 123,
|
|
10427
10577
|
NumExtensions: 0,
|
|
10428
10578
|
NumServices: 1,
|
|
10429
10579
|
},
|