| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // versions:
- // protoc-gen-go v1.25.0
- // protoc v3.11.4
- // source: mtp2.proto
- package pb
- import (
- proto "github.com/golang/protobuf/proto"
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
- )
- const (
- // Verify that this generated code is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
- // Verify that runtime/protoimpl is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
- )
- // This is a compile-time assertion that a sufficiently up-to-date version
- // of the legacy proto package is being used.
- const _ = proto.ProtoPackageIsVersion4
- //交易规则信息子集
- type TradeRule struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- RuleID *uint32 `protobuf:"varint,1,opt,name=RuleID" json:"RuleID,omitempty"` // 交易规则ID
- ParamValue *float64 `protobuf:"fixed64,2,opt,name=ParamValue" json:"ParamValue,omitempty"` // 参数值
- }
- func (x *TradeRule) Reset() {
- *x = TradeRule{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *TradeRule) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*TradeRule) ProtoMessage() {}
- func (x *TradeRule) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[0]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use TradeRule.ProtoReflect.Descriptor instead.
- func (*TradeRule) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{0}
- }
- func (x *TradeRule) GetRuleID() uint32 {
- if x != nil && x.RuleID != nil {
- return *x.RuleID
- }
- return 0
- }
- func (x *TradeRule) GetParamValue() float64 {
- if x != nil && x.ParamValue != nil {
- return *x.ParamValue
- }
- return 0
- }
- //交易规则信息
- type TradeRuleInfoStruct struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- AccountID *uint64 `protobuf:"varint,1,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
- GoodsID *uint32 `protobuf:"varint,2,opt,name=GoodsID" json:"GoodsID,omitempty"` // 商品id
- TradeRules []*TradeRule `protobuf:"bytes,3,rep,name=TradeRules" json:"TradeRules,omitempty"` // 交易规则
- }
- func (x *TradeRuleInfoStruct) Reset() {
- *x = TradeRuleInfoStruct{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *TradeRuleInfoStruct) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*TradeRuleInfoStruct) ProtoMessage() {}
- func (x *TradeRuleInfoStruct) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[1]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use TradeRuleInfoStruct.ProtoReflect.Descriptor instead.
- func (*TradeRuleInfoStruct) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{1}
- }
- func (x *TradeRuleInfoStruct) GetAccountID() uint64 {
- if x != nil && x.AccountID != nil {
- return *x.AccountID
- }
- return 0
- }
- func (x *TradeRuleInfoStruct) GetGoodsID() uint32 {
- if x != nil && x.GoodsID != nil {
- return *x.GoodsID
- }
- return 0
- }
- func (x *TradeRuleInfoStruct) GetTradeRules() []*TradeRule {
- if x != nil {
- return x.TradeRules
- }
- return nil
- }
- // 日期类型定义
- type Date struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- DateStr *string `protobuf:"bytes,1,opt,name=DateStr" json:"DateStr,omitempty"` // 日期时间
- }
- func (x *Date) Reset() {
- *x = Date{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Date) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Date) ProtoMessage() {}
- func (x *Date) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[2]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Date.ProtoReflect.Descriptor instead.
- func (*Date) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{2}
- }
- func (x *Date) GetDateStr() string {
- if x != nil && x.DateStr != nil {
- return *x.DateStr
- }
- return ""
- }
- // ERMS2_ARBITRAGESTRATEGY 期现套利策略表
- type Erms2ArbitrageStrategy struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- //mkey: 1
- ASApplyId *uint64 `protobuf:"varint,1,opt,name=ASApplyId" json:"ASApplyId,omitempty"` // 策略申请ID(702+Unix秒时间戳(10位)+xxxxxx)
- ASNo *string `protobuf:"bytes,2,opt,name=ASNo" json:"ASNo,omitempty"` // 策略编号
- BizType *uint32 `protobuf:"varint,3,opt,name=BizType" json:"BizType,omitempty"` // 业务类型 - 1:正向套利 -1:反向套利
- UserId *uint32 `protobuf:"varint,4,opt,name=UserId" json:"UserId,omitempty"` // 所属机构
- DeliveryGoodsId *uint32 `protobuf:"varint,5,opt,name=DeliveryGoodsId" json:"DeliveryGoodsId,omitempty"` // 现货品种ID
- GoodsGroupId *uint32 `protobuf:"varint,6,opt,name=GoodsGroupId" json:"GoodsGroupId,omitempty"` // 期货品种ID
- SpotQuota *float64 `protobuf:"fixed64,7,opt,name=SpotQuota" json:"SpotQuota,omitempty"` // 现货额度
- FutureQuote *float64 `protobuf:"fixed64,8,opt,name=FutureQuote" json:"FutureQuote,omitempty"` // 期货额度
- ApplyBasis *float64 `protobuf:"fixed64,9,opt,name=ApplyBasis" json:"ApplyBasis,omitempty"` // 申请基差
- StrategyStatus *uint32 `protobuf:"varint,10,opt,name=StrategyStatus" json:"StrategyStatus,omitempty"` // 策略状态 - 0:未结束 1:已结束
- Remark *string `protobuf:"bytes,11,opt,name=Remark" json:"Remark,omitempty"` // 备注
- MarketId *uint32 `protobuf:"varint,12,opt,name=MarketId" json:"MarketId,omitempty"` // 市场ID
- TradeDate *string `protobuf:"bytes,13,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易日(yyyyMMdd)
- CloseTradeDate *string `protobuf:"bytes,14,opt,name=CloseTradeDate" json:"CloseTradeDate,omitempty"` // 完结交易日(yyyyMMdd)
- UsedQuota *float64 `protobuf:"fixed64,15,opt,name=UsedQuota" json:"UsedQuota,omitempty"` // 已占用资金
- FutureQty *float64 `protobuf:"fixed64,16,opt,name=FutureQty" json:"FutureQty,omitempty"` // 期货持仓数量
- FutureAvgPrice *float64 `protobuf:"fixed64,17,opt,name=FutureAvgPrice" json:"FutureAvgPrice,omitempty"` // 期货建仓均价
- FuturePL *float64 `protobuf:"fixed64,18,opt,name=FuturePL" json:"FuturePL,omitempty"` // 期货总盈亏[结算更新]
- PricedSpotQty *float64 `protobuf:"fixed64,19,opt,name=PricedSpotQty" json:"PricedSpotQty,omitempty"` // 已定价现货数量
- PricedSpotQtyNoTax *float64 `protobuf:"fixed64,20,opt,name=PricedSpotQtyNoTax" json:"PricedSpotQtyNoTax,omitempty"` // 已定价现货不含税数量
- SpotavgPrice *float64 `protobuf:"fixed64,21,opt,name=SpotavgPrice" json:"SpotavgPrice,omitempty"` // 现货均价
- SpotPL *float64 `protobuf:"fixed64,22,opt,name=SpotPL" json:"SpotPL,omitempty"` // 现货总盈亏[结算更新]
- NetExposure *float64 `protobuf:"fixed64,23,opt,name=NetExposure" json:"NetExposure,omitempty"` // 单笔业务头寸净敞口 = 期货持仓数量 + 已定价现货不含税数量
- NetExposureRate *float64 `protobuf:"fixed64,24,opt,name=NetExposureRate" json:"NetExposureRate,omitempty"` // 净敞口比例 - 0:未结束 = (NetExposure/PriceSpotQtyNoTax) ; 已结束为0
- TotalPL *float64 `protobuf:"fixed64,25,opt,name=TotalPL" json:"TotalPL,omitempty"` // 业务合计损益 = FuturePL + SpotPL [结算更新]
- OpenBasis *float64 `protobuf:"fixed64,26,opt,name=OpenBasis" json:"OpenBasis,omitempty"` // 建仓基差
- CurBasis *float64 `protobuf:"fixed64,27,opt,name=CurBasis" json:"CurBasis,omitempty"` // 当前基差[结算更新]
- BasisChangePL *float64 `protobuf:"fixed64,28,opt,name=BasisChangePL" json:"BasisChangePL,omitempty"` // 基差变动损益[结算更新]
- NetExposurePL *float64 `protobuf:"fixed64,29,opt,name=NetExposurePL" json:"NetExposurePL,omitempty"` // 净敞口损益 = TotalPL - BasisChangePL[结算更新]
- SpotUsedQuota *float64 `protobuf:"fixed64,30,opt,name=SpotUsedQuota" json:"SpotUsedQuota,omitempty"` // 现货占用资金
- FutureOpenQty *float64 `protobuf:"fixed64,31,opt,name=FutureOpenQty" json:"FutureOpenQty,omitempty"` // 期货开仓数量
- FutureOpenAmount *float64 `protobuf:"fixed64,32,opt,name=FutureOpenAmount" json:"FutureOpenAmount,omitempty"` // 期货开仓金额
- FutureCloseQty *float64 `protobuf:"fixed64,33,opt,name=FutureCloseQty" json:"FutureCloseQty,omitempty"` // 期货平仓数量
- FutureCloseAmount *float64 `protobuf:"fixed64,34,opt,name=FutureCloseAmount" json:"FutureCloseAmount,omitempty"` // 期货平仓金额
- SpotBuyAmount *float64 `protobuf:"fixed64,35,opt,name=SpotBuyAmount" json:"SpotBuyAmount,omitempty"` // 现货采购金额
- SpotBuyQty *float64 `protobuf:"fixed64,36,opt,name=SpotBuyQty" json:"SpotBuyQty,omitempty"` // 现货采购数量
- SpotSellAmount *float64 `protobuf:"fixed64,37,opt,name=SpotSellAmount" json:"SpotSellAmount,omitempty"` // 现货销售金额
- SpotSellQty *float64 `protobuf:"fixed64,38,opt,name=SpotSellQty" json:"SpotSellQty,omitempty"` // 现货销售数量
- UpDatetime *Date `protobuf:"bytes,39,opt,name=UpDatetime" json:"UpDatetime,omitempty"` // 更新时间
- ASName *string `protobuf:"bytes,40,opt,name=ASName" json:"ASName,omitempty"` // 策略名称
- }
- func (x *Erms2ArbitrageStrategy) Reset() {
- *x = Erms2ArbitrageStrategy{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Erms2ArbitrageStrategy) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Erms2ArbitrageStrategy) ProtoMessage() {}
- func (x *Erms2ArbitrageStrategy) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[3]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Erms2ArbitrageStrategy.ProtoReflect.Descriptor instead.
- func (*Erms2ArbitrageStrategy) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{3}
- }
- func (x *Erms2ArbitrageStrategy) GetASApplyId() uint64 {
- if x != nil && x.ASApplyId != nil {
- return *x.ASApplyId
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetASNo() string {
- if x != nil && x.ASNo != nil {
- return *x.ASNo
- }
- return ""
- }
- func (x *Erms2ArbitrageStrategy) GetBizType() uint32 {
- if x != nil && x.BizType != nil {
- return *x.BizType
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetUserId() uint32 {
- if x != nil && x.UserId != nil {
- return *x.UserId
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetDeliveryGoodsId() uint32 {
- if x != nil && x.DeliveryGoodsId != nil {
- return *x.DeliveryGoodsId
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetGoodsGroupId() uint32 {
- if x != nil && x.GoodsGroupId != nil {
- return *x.GoodsGroupId
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetSpotQuota() float64 {
- if x != nil && x.SpotQuota != nil {
- return *x.SpotQuota
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetFutureQuote() float64 {
- if x != nil && x.FutureQuote != nil {
- return *x.FutureQuote
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetApplyBasis() float64 {
- if x != nil && x.ApplyBasis != nil {
- return *x.ApplyBasis
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetStrategyStatus() uint32 {
- if x != nil && x.StrategyStatus != nil {
- return *x.StrategyStatus
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetRemark() string {
- if x != nil && x.Remark != nil {
- return *x.Remark
- }
- return ""
- }
- func (x *Erms2ArbitrageStrategy) GetMarketId() uint32 {
- if x != nil && x.MarketId != nil {
- return *x.MarketId
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetTradeDate() string {
- if x != nil && x.TradeDate != nil {
- return *x.TradeDate
- }
- return ""
- }
- func (x *Erms2ArbitrageStrategy) GetCloseTradeDate() string {
- if x != nil && x.CloseTradeDate != nil {
- return *x.CloseTradeDate
- }
- return ""
- }
- func (x *Erms2ArbitrageStrategy) GetUsedQuota() float64 {
- if x != nil && x.UsedQuota != nil {
- return *x.UsedQuota
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetFutureQty() float64 {
- if x != nil && x.FutureQty != nil {
- return *x.FutureQty
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetFutureAvgPrice() float64 {
- if x != nil && x.FutureAvgPrice != nil {
- return *x.FutureAvgPrice
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetFuturePL() float64 {
- if x != nil && x.FuturePL != nil {
- return *x.FuturePL
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetPricedSpotQty() float64 {
- if x != nil && x.PricedSpotQty != nil {
- return *x.PricedSpotQty
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetPricedSpotQtyNoTax() float64 {
- if x != nil && x.PricedSpotQtyNoTax != nil {
- return *x.PricedSpotQtyNoTax
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetSpotavgPrice() float64 {
- if x != nil && x.SpotavgPrice != nil {
- return *x.SpotavgPrice
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetSpotPL() float64 {
- if x != nil && x.SpotPL != nil {
- return *x.SpotPL
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetNetExposure() float64 {
- if x != nil && x.NetExposure != nil {
- return *x.NetExposure
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetNetExposureRate() float64 {
- if x != nil && x.NetExposureRate != nil {
- return *x.NetExposureRate
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetTotalPL() float64 {
- if x != nil && x.TotalPL != nil {
- return *x.TotalPL
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetOpenBasis() float64 {
- if x != nil && x.OpenBasis != nil {
- return *x.OpenBasis
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetCurBasis() float64 {
- if x != nil && x.CurBasis != nil {
- return *x.CurBasis
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetBasisChangePL() float64 {
- if x != nil && x.BasisChangePL != nil {
- return *x.BasisChangePL
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetNetExposurePL() float64 {
- if x != nil && x.NetExposurePL != nil {
- return *x.NetExposurePL
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetSpotUsedQuota() float64 {
- if x != nil && x.SpotUsedQuota != nil {
- return *x.SpotUsedQuota
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetFutureOpenQty() float64 {
- if x != nil && x.FutureOpenQty != nil {
- return *x.FutureOpenQty
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetFutureOpenAmount() float64 {
- if x != nil && x.FutureOpenAmount != nil {
- return *x.FutureOpenAmount
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetFutureCloseQty() float64 {
- if x != nil && x.FutureCloseQty != nil {
- return *x.FutureCloseQty
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetFutureCloseAmount() float64 {
- if x != nil && x.FutureCloseAmount != nil {
- return *x.FutureCloseAmount
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetSpotBuyAmount() float64 {
- if x != nil && x.SpotBuyAmount != nil {
- return *x.SpotBuyAmount
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetSpotBuyQty() float64 {
- if x != nil && x.SpotBuyQty != nil {
- return *x.SpotBuyQty
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetSpotSellAmount() float64 {
- if x != nil && x.SpotSellAmount != nil {
- return *x.SpotSellAmount
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetSpotSellQty() float64 {
- if x != nil && x.SpotSellQty != nil {
- return *x.SpotSellQty
- }
- return 0
- }
- func (x *Erms2ArbitrageStrategy) GetUpDatetime() *Date {
- if x != nil {
- return x.UpDatetime
- }
- return nil
- }
- func (x *Erms2ArbitrageStrategy) GetASName() string {
- if x != nil && x.ASName != nil {
- return *x.ASName
- }
- return ""
- }
- // ERMCP_AREASPOT 企业现货表
- type ErmcpAreaSpot struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- //mkey: 1 2
- WrStandardID *uint32 `protobuf:"varint,1,opt,name=WrStandardID" json:"WrStandardID,omitempty"` // 现货商品ID
- AreaUserID *uint32 `protobuf:"varint,2,opt,name=AreaUserID" json:"AreaUserID,omitempty"` // 所属机构
- OriBuyPlanQty *float64 `protobuf:"fixed64,3,opt,name=OriBuyPlanQty" json:"OriBuyPlanQty,omitempty"` // 期初采购计划数量
- OriBuyPricedQty *float64 `protobuf:"fixed64,4,opt,name=OriBuyPricedQty" json:"OriBuyPricedQty,omitempty"` // 期初采购合同已定价数量
- OriSellPlanQty *float64 `protobuf:"fixed64,5,opt,name=OriSellPlanQty" json:"OriSellPlanQty,omitempty"` // 期初销售计划数量
- OriSellPricedQty *float64 `protobuf:"fixed64,6,opt,name=OriSellPricedQty" json:"OriSellPricedQty,omitempty"` // 期初销售合同已定价数量
- BuyPlanQty *float64 `protobuf:"fixed64,7,opt,name=BuyPlanQty" json:"BuyPlanQty,omitempty"` // 采购计划数量
- BuyPricedQty *float64 `protobuf:"fixed64,8,opt,name=BuyPricedQty" json:"BuyPricedQty,omitempty"` // 采购合同已定价数量
- SellPlanQty *float64 `protobuf:"fixed64,9,opt,name=SellPlanQty" json:"SellPlanQty,omitempty"` // 销售计划数量
- SellPricedQty *float64 `protobuf:"fixed64,10,opt,name=SellPricedQty" json:"SellPricedQty,omitempty"` // 销售合同已定价数量
- TotalSpotQty *float64 `protobuf:"fixed64,11,opt,name=TotalSpotQty" json:"TotalSpotQty,omitempty"` // 现货头寸总量 = (销售计划数量 - 销售已定价数量) - (采购计划数量 - 采购已定价数量)
- UpdateTime *Date `protobuf:"bytes,12,opt,name=UpdateTime" json:"UpdateTime,omitempty"` // 更新时间
- }
- func (x *ErmcpAreaSpot) Reset() {
- *x = ErmcpAreaSpot{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ErmcpAreaSpot) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ErmcpAreaSpot) ProtoMessage() {}
- func (x *ErmcpAreaSpot) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[4]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ErmcpAreaSpot.ProtoReflect.Descriptor instead.
- func (*ErmcpAreaSpot) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{4}
- }
- func (x *ErmcpAreaSpot) GetWrStandardID() uint32 {
- if x != nil && x.WrStandardID != nil {
- return *x.WrStandardID
- }
- return 0
- }
- func (x *ErmcpAreaSpot) GetAreaUserID() uint32 {
- if x != nil && x.AreaUserID != nil {
- return *x.AreaUserID
- }
- return 0
- }
- func (x *ErmcpAreaSpot) GetOriBuyPlanQty() float64 {
- if x != nil && x.OriBuyPlanQty != nil {
- return *x.OriBuyPlanQty
- }
- return 0
- }
- func (x *ErmcpAreaSpot) GetOriBuyPricedQty() float64 {
- if x != nil && x.OriBuyPricedQty != nil {
- return *x.OriBuyPricedQty
- }
- return 0
- }
- func (x *ErmcpAreaSpot) GetOriSellPlanQty() float64 {
- if x != nil && x.OriSellPlanQty != nil {
- return *x.OriSellPlanQty
- }
- return 0
- }
- func (x *ErmcpAreaSpot) GetOriSellPricedQty() float64 {
- if x != nil && x.OriSellPricedQty != nil {
- return *x.OriSellPricedQty
- }
- return 0
- }
- func (x *ErmcpAreaSpot) GetBuyPlanQty() float64 {
- if x != nil && x.BuyPlanQty != nil {
- return *x.BuyPlanQty
- }
- return 0
- }
- func (x *ErmcpAreaSpot) GetBuyPricedQty() float64 {
- if x != nil && x.BuyPricedQty != nil {
- return *x.BuyPricedQty
- }
- return 0
- }
- func (x *ErmcpAreaSpot) GetSellPlanQty() float64 {
- if x != nil && x.SellPlanQty != nil {
- return *x.SellPlanQty
- }
- return 0
- }
- func (x *ErmcpAreaSpot) GetSellPricedQty() float64 {
- if x != nil && x.SellPricedQty != nil {
- return *x.SellPricedQty
- }
- return 0
- }
- func (x *ErmcpAreaSpot) GetTotalSpotQty() float64 {
- if x != nil && x.TotalSpotQty != nil {
- return *x.TotalSpotQty
- }
- return 0
- }
- func (x *ErmcpAreaSpot) GetUpdateTime() *Date {
- if x != nil {
- return x.UpdateTime
- }
- return nil
- }
- // ERMCP_AREAEXPOSURE 企业敞口表
- type ErmcpAreaExposure struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- //mkey: 1 2
- //nkey: 1
- MiddleGoodsID *uint32 `protobuf:"varint,1,opt,name=MiddleGoodsID" json:"MiddleGoodsID,omitempty"` // 套保品种
- AreaUserID *uint32 `protobuf:"varint,2,opt,name=AreaUserID" json:"AreaUserID,omitempty"` // 所属机构
- OriBuyPlanQty *float64 `protobuf:"fixed64,3,opt,name=OriBuyPlanQty" json:"OriBuyPlanQty,omitempty"` // 期初采购计划数量
- OriBuyPricedQty *float64 `protobuf:"fixed64,4,opt,name=OriBuyPricedQty" json:"OriBuyPricedQty,omitempty"` // 期初采购合同已定价数量
- OriSellPlanQty *float64 `protobuf:"fixed64,5,opt,name=OriSellPlanQty" json:"OriSellPlanQty,omitempty"` // 期初销售计划数量
- OriSellPricedQty *float64 `protobuf:"fixed64,6,opt,name=OriSellPricedQty" json:"OriSellPricedQty,omitempty"` // 期初销售合同已定价数量
- OriBuyFutureQty *uint64 `protobuf:"varint,7,opt,name=OriBuyFutureQty" json:"OriBuyFutureQty,omitempty"` // 期初买入期货数量
- OriSellFutureQty *uint64 `protobuf:"varint,8,opt,name=OriSellFutureQty" json:"OriSellFutureQty,omitempty"` // 期初卖出期货数量
- BuyPlanQty *float64 `protobuf:"fixed64,9,opt,name=BuyPlanQty" json:"BuyPlanQty,omitempty"` // 采购计划数量
- BuyPricedQty *float64 `protobuf:"fixed64,10,opt,name=BuyPricedQty" json:"BuyPricedQty,omitempty"` // 采购合同已定价数量
- SellPlanQty *float64 `protobuf:"fixed64,11,opt,name=SellPlanQty" json:"SellPlanQty,omitempty"` // 销售计划数量
- SellPricedQty *float64 `protobuf:"fixed64,12,opt,name=SellPricedQty" json:"SellPricedQty,omitempty"` // 销售合同已定价数量
- BuyFutureQty *float64 `protobuf:"fixed64,13,opt,name=BuyFutureQty" json:"BuyFutureQty,omitempty"` // 买入期货数量
- SellFutureQty *float64 `protobuf:"fixed64,14,opt,name=SellFutureQty" json:"SellFutureQty,omitempty"` // 卖出期货数量
- TotalSpotQty *float64 `protobuf:"fixed64,15,opt,name=TotalSpotQty" json:"TotalSpotQty,omitempty"` // 现货头寸总量
- TotalFutureQty *float64 `protobuf:"fixed64,16,opt,name=TotalFutureQty" json:"TotalFutureQty,omitempty"` // 期货头寸总量
- TotalExposure *float64 `protobuf:"fixed64,17,opt,name=TotalExposure" json:"TotalExposure,omitempty"` // 实时总敞口
- TotalHedgeRatio *float64 `protobuf:"fixed64,18,opt,name=TotalHedgeRatio" json:"TotalHedgeRatio,omitempty"` // 总套保比率
- TotalNeedHedgeQty *float64 `protobuf:"fixed64,19,opt,name=TotalNeedHedgeQty" json:"TotalNeedHedgeQty,omitempty"` // 应套保总量
- NeedHedgeExposoure *float64 `protobuf:"fixed64,20,opt,name=NeedHedgeExposoure" json:"NeedHedgeExposoure,omitempty"` // 应套保敞口
- NeedHedgeRatio *float64 `protobuf:"fixed64,21,opt,name=NeedHedgeRatio" json:"NeedHedgeRatio,omitempty"` // 应套保比率
- UpdateTime *Date `protobuf:"bytes,22,opt,name=UpdateTime" json:"UpdateTime,omitempty"` // 更新时间
- }
- func (x *ErmcpAreaExposure) Reset() {
- *x = ErmcpAreaExposure{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ErmcpAreaExposure) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ErmcpAreaExposure) ProtoMessage() {}
- func (x *ErmcpAreaExposure) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[5]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ErmcpAreaExposure.ProtoReflect.Descriptor instead.
- func (*ErmcpAreaExposure) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{5}
- }
- func (x *ErmcpAreaExposure) GetMiddleGoodsID() uint32 {
- if x != nil && x.MiddleGoodsID != nil {
- return *x.MiddleGoodsID
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetAreaUserID() uint32 {
- if x != nil && x.AreaUserID != nil {
- return *x.AreaUserID
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetOriBuyPlanQty() float64 {
- if x != nil && x.OriBuyPlanQty != nil {
- return *x.OriBuyPlanQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetOriBuyPricedQty() float64 {
- if x != nil && x.OriBuyPricedQty != nil {
- return *x.OriBuyPricedQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetOriSellPlanQty() float64 {
- if x != nil && x.OriSellPlanQty != nil {
- return *x.OriSellPlanQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetOriSellPricedQty() float64 {
- if x != nil && x.OriSellPricedQty != nil {
- return *x.OriSellPricedQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetOriBuyFutureQty() uint64 {
- if x != nil && x.OriBuyFutureQty != nil {
- return *x.OriBuyFutureQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetOriSellFutureQty() uint64 {
- if x != nil && x.OriSellFutureQty != nil {
- return *x.OriSellFutureQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetBuyPlanQty() float64 {
- if x != nil && x.BuyPlanQty != nil {
- return *x.BuyPlanQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetBuyPricedQty() float64 {
- if x != nil && x.BuyPricedQty != nil {
- return *x.BuyPricedQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetSellPlanQty() float64 {
- if x != nil && x.SellPlanQty != nil {
- return *x.SellPlanQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetSellPricedQty() float64 {
- if x != nil && x.SellPricedQty != nil {
- return *x.SellPricedQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetBuyFutureQty() float64 {
- if x != nil && x.BuyFutureQty != nil {
- return *x.BuyFutureQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetSellFutureQty() float64 {
- if x != nil && x.SellFutureQty != nil {
- return *x.SellFutureQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetTotalSpotQty() float64 {
- if x != nil && x.TotalSpotQty != nil {
- return *x.TotalSpotQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetTotalFutureQty() float64 {
- if x != nil && x.TotalFutureQty != nil {
- return *x.TotalFutureQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetTotalExposure() float64 {
- if x != nil && x.TotalExposure != nil {
- return *x.TotalExposure
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetTotalHedgeRatio() float64 {
- if x != nil && x.TotalHedgeRatio != nil {
- return *x.TotalHedgeRatio
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetTotalNeedHedgeQty() float64 {
- if x != nil && x.TotalNeedHedgeQty != nil {
- return *x.TotalNeedHedgeQty
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetNeedHedgeExposoure() float64 {
- if x != nil && x.NeedHedgeExposoure != nil {
- return *x.NeedHedgeExposoure
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetNeedHedgeRatio() float64 {
- if x != nil && x.NeedHedgeRatio != nil {
- return *x.NeedHedgeRatio
- }
- return 0
- }
- func (x *ErmcpAreaExposure) GetUpdateTime() *Date {
- if x != nil {
- return x.UpdateTime
- }
- return nil
- }
- // GoodsMarginCfgStruct 商品保证金配置
- type GoodsMarginCfgStruct struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- GoodsID *uint32 `protobuf:"varint,1,opt,name=GoodsID" json:"GoodsID,omitempty"` // 商品ID
- CustomerTypeID *uint32 `protobuf:"varint,2,opt,name=CustomerTypeID" json:"CustomerTypeID,omitempty"` // 投资者客户类型
- MarginAlgorithm *uint32 `protobuf:"varint,3,opt,name=MarginAlgorithm" json:"MarginAlgorithm,omitempty"` // 保证金计算方式
- MarketMarginValue *float64 `protobuf:"fixed64,4,opt,name=MarketMarginValue" json:"MarketMarginValue,omitempty"` // 即市保证金值
- ReckonMarginValue *float64 `protobuf:"fixed64,5,opt,name=ReckonMarginValue" json:"ReckonMarginValue,omitempty"` // 结算保证金值
- LockMarginValue *float64 `protobuf:"fixed64,6,opt,name=LockMarginValue" json:"LockMarginValue,omitempty"` // 锁仓保证金
- RealMarginValue *float64 `protobuf:"fixed64,7,opt,name=RealMarginValue" json:"RealMarginValue,omitempty"` // 实付比例
- RealMarginAlgorithm *uint32 `protobuf:"varint,8,opt,name=RealMarginAlgorithm" json:"RealMarginAlgorithm,omitempty"` // 实付保证金计算方式
- IsDefault *uint32 `protobuf:"varint,9,opt,name=IsDefault" json:"IsDefault,omitempty"` // 是否默认标志位
- }
- func (x *GoodsMarginCfgStruct) Reset() {
- *x = GoodsMarginCfgStruct{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GoodsMarginCfgStruct) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GoodsMarginCfgStruct) ProtoMessage() {}
- func (x *GoodsMarginCfgStruct) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[6]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GoodsMarginCfgStruct.ProtoReflect.Descriptor instead.
- func (*GoodsMarginCfgStruct) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{6}
- }
- func (x *GoodsMarginCfgStruct) GetGoodsID() uint32 {
- if x != nil && x.GoodsID != nil {
- return *x.GoodsID
- }
- return 0
- }
- func (x *GoodsMarginCfgStruct) GetCustomerTypeID() uint32 {
- if x != nil && x.CustomerTypeID != nil {
- return *x.CustomerTypeID
- }
- return 0
- }
- func (x *GoodsMarginCfgStruct) GetMarginAlgorithm() uint32 {
- if x != nil && x.MarginAlgorithm != nil {
- return *x.MarginAlgorithm
- }
- return 0
- }
- func (x *GoodsMarginCfgStruct) GetMarketMarginValue() float64 {
- if x != nil && x.MarketMarginValue != nil {
- return *x.MarketMarginValue
- }
- return 0
- }
- func (x *GoodsMarginCfgStruct) GetReckonMarginValue() float64 {
- if x != nil && x.ReckonMarginValue != nil {
- return *x.ReckonMarginValue
- }
- return 0
- }
- func (x *GoodsMarginCfgStruct) GetLockMarginValue() float64 {
- if x != nil && x.LockMarginValue != nil {
- return *x.LockMarginValue
- }
- return 0
- }
- func (x *GoodsMarginCfgStruct) GetRealMarginValue() float64 {
- if x != nil && x.RealMarginValue != nil {
- return *x.RealMarginValue
- }
- return 0
- }
- func (x *GoodsMarginCfgStruct) GetRealMarginAlgorithm() uint32 {
- if x != nil && x.RealMarginAlgorithm != nil {
- return *x.RealMarginAlgorithm
- }
- return 0
- }
- func (x *GoodsMarginCfgStruct) GetIsDefault() uint32 {
- if x != nil && x.IsDefault != nil {
- return *x.IsDefault
- }
- return 0
- }
- // ERMCP2_HEDGEDITEM 被套期项目表
- type Ermcp2HedgedItem struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- //mkey: 1
- HedgedItemID *uint64 `protobuf:"varint,1,opt,name=HedgedItemID" json:"HedgedItemID,omitempty"` // 被套期项目ID(624+Unix秒时间戳(10位)+xxxxxx)
- HedgedItemNum *string `protobuf:"bytes,2,opt,name=HedgedItemNum" json:"HedgedItemNum,omitempty"` // 项目编号
- HedgedItemName *string `protobuf:"bytes,3,opt,name=HedgedItemName" json:"HedgedItemName,omitempty"` // 项目名称
- HedgedType *uint64 `protobuf:"varint,4,opt,name=HedgedType" json:"HedgedType,omitempty"` // 套期类型 - 1:采购计划项目 2:销售计划项目 3:现货贸易项目 4:库存存货项目 5:定价采购合同项目
- PlanStartDate *Date `protobuf:"bytes,5,opt,name=PlanStartDate" json:"PlanStartDate,omitempty"` // 计划开始日期 --DATE
- PlanEndDate *Date `protobuf:"bytes,6,opt,name=PlanEndDate" json:"PlanEndDate,omitempty"` // 计划结束日期 --DATE
- HedgeRate *float64 `protobuf:"fixed64,7,opt,name=HedgeRate" json:"HedgeRate,omitempty"` // 套保比率
- TradeUserID *uint64 `protobuf:"varint,8,opt,name=TradeUserID" json:"TradeUserID,omitempty"` // 交易用户ID
- AreaUserID *uint64 `protobuf:"varint,9,opt,name=AreaUserID" json:"AreaUserID,omitempty"` // 企业ID
- HedgedItemStatus *uint64 `protobuf:"varint,10,opt,name=HedgedItemStatus" json:"HedgedItemStatus,omitempty"` // 项目状态 - 0:未提交 1:待审核 2:执行中 3:正常完结 4:审核拒绝 5:异常完结 6:已撤回
- ApplySrc *uint64 `protobuf:"varint,11,opt,name=ApplySrc" json:"ApplySrc,omitempty"` // 申请来源 - 1:管理端 2:终端
- ApplyID *uint64 `protobuf:"varint,12,opt,name=ApplyID" json:"ApplyID,omitempty"` // 申请人
- Remark *string `protobuf:"bytes,13,opt,name=Remark" json:"Remark,omitempty"` // 备注
- CreateTime *Date `protobuf:"bytes,14,opt,name=CreateTime" json:"CreateTime,omitempty"` // 申请时间 --DATE
- AuditTradeDate *string `protobuf:"bytes,15,opt,name=AuditTradeDate" json:"AuditTradeDate,omitempty"` // 审核交易日(yyyyMMdd)
- AuditID *uint64 `protobuf:"varint,16,opt,name=AuditID" json:"AuditID,omitempty"` // 审核人
- AuditSrc *uint64 `protobuf:"varint,17,opt,name=AuditSrc" json:"AuditSrc,omitempty"` // 审核来源 - 1:管理端 2:终端
- AuditTime *string `protobuf:"bytes,18,opt,name=AuditTime" json:"AuditTime,omitempty"` // 审核时间 --DATE
- AuditRemark *string `protobuf:"bytes,19,opt,name=AuditRemark" json:"AuditRemark,omitempty"` // 审核备注
- DeliveryGoodsID *uint64 `protobuf:"varint,20,opt,name=DeliveryGoodsID" json:"DeliveryGoodsID,omitempty"` // 现货品种ID
- WrStandardID *uint64 `protobuf:"varint,21,opt,name=WrStandardID" json:"WrStandardID,omitempty"` // 现货商品ID
- VatRate *float64 `protobuf:"fixed64,22,opt,name=VatRate" json:"VatRate,omitempty"` // 增值税
- HedgeQty *float64 `protobuf:"fixed64,23,opt,name=HedgeQty" json:"HedgeQty,omitempty"` // 套期现货量
- HedgeAmount *float64 `protobuf:"fixed64,24,opt,name=HedgeAmount" json:"HedgeAmount,omitempty"` // 套期市价总额
- HedgeRestAmount *float64 `protobuf:"fixed64,25,opt,name=HedgeRestAmount" json:"HedgeRestAmount,omitempty"` // 套期剩余市价总额【现货贸易】
- HedgeContractAmount *float64 `protobuf:"fixed64,26,opt,name=HedgeContractAmount" json:"HedgeContractAmount,omitempty"` // 套期定价总额 【定价采购合同】【现货贸易】
- OriAvgPrice *float64 `protobuf:"fixed64,27,opt,name=OriAvgPrice" json:"OriAvgPrice,omitempty"` // 期初市场均价 = 套期市价总额 / 套期现货量
- ExeQty *float64 `protobuf:"fixed64,28,opt,name=ExeQty" json:"ExeQty,omitempty"` // 执行现货量
- ExeAmount *float64 `protobuf:"fixed64,29,opt,name=ExeAmount" json:"ExeAmount,omitempty"` // 执行市价总额
- ExeRestAmount *float64 `protobuf:"fixed64,30,opt,name=ExeRestAmount" json:"ExeRestAmount,omitempty"` // 执行剩余市价总额【现货贸易】
- ExeAvgPrice *float64 `protobuf:"fixed64,31,opt,name=ExeAvgPrice" json:"ExeAvgPrice,omitempty"` // 执行市场均价= 执行市价总额 / 执行现货量
- ExeContractAmount *float64 `protobuf:"fixed64,32,opt,name=ExeContractAmount" json:"ExeContractAmount,omitempty"` // 执行定价总额
- CurPrice *float64 `protobuf:"fixed64,33,opt,name=CurPrice" json:"CurPrice,omitempty"` // 当前市场价
- UnExeQty *float64 `protobuf:"fixed64,34,opt,name=UnExeQty" json:"UnExeQty,omitempty"` // 未执行现货量 = 套期现货量 - 执行现货量
- SpotHedgePL *float64 `protobuf:"fixed64,35,opt,name=SpotHedgePL" json:"SpotHedgePL,omitempty"` // 现货套期损益 =(执行市场均价-期初市场均价)*执行现货量 * 方向(销售计划 为 -1, 其它为1)
- SpotPL *float64 `protobuf:"fixed64,36,opt,name=SpotPL" json:"SpotPL,omitempty"` // 现货套期损益 = 现货实际损益 + 现货浮动损益
- FutureHedgePL *float64 `protobuf:"fixed64,37,opt,name=FutureHedgePL" json:"FutureHedgePL,omitempty"` // 期货实际损益
- FuturePL *float64 `protobuf:"fixed64,38,opt,name=FuturePL" json:"FuturePL,omitempty"` // 期货套期损益
- HedgeSumPL *float64 `protobuf:"fixed64,39,opt,name=HedgeSumPL" json:"HedgeSumPL,omitempty"` // 套期汇总损益 = 期货汇总损益 + 现货汇总损益
- SpotTradePL *float64 `protobuf:"fixed64,40,opt,name=SpotTradePL" json:"SpotTradePL,omitempty"` // 现货贸易损益【现货贸易】= 执行合同定价总额 - 套期合同定价总额
- VatPL *float64 `protobuf:"fixed64,41,opt,name=VatPL" json:"VatPL,omitempty"` // 增值税损益【现货贸易】= 现货贸易损益 * (增值税率 /(1+增值税率))
- SumObsPL *float64 `protobuf:"fixed64,42,opt,name=SumObsPL" json:"SumObsPL,omitempty"` // 汇总绝对损益【现货贸易】=现货贸易损益+增值税损益+期货套期损益
- SpotBookAmount *float64 `protobuf:"fixed64,43,opt,name=SpotBookAmount" json:"SpotBookAmount,omitempty"` // 现货账面总额
- CurStock *float64 `protobuf:"fixed64,44,opt,name=CurStock" json:"CurStock,omitempty"` // 期末库存量 = 采购总量 - 销售总量
- EndDate *Date `protobuf:"bytes,45,opt,name=EndDate" json:"EndDate,omitempty"` // 完成日期 --DATE
- EndTradeDate *string `protobuf:"bytes,46,opt,name=EndTradeDate" json:"EndTradeDate,omitempty"` // 完成交易日
- UpdateTime *Date `protobuf:"bytes,47,opt,name=UpdateTime" json:"UpdateTime,omitempty"` // 更新时间 --DATE
- OriSpotHedgePL *float64 `protobuf:"fixed64,48,opt,name=OriSpotHedgePL" json:"OriSpotHedgePL,omitempty"` // 期初现货实际损益
- OriFutureHedgePL *float64 `protobuf:"fixed64,49,opt,name=OriFutureHedgePL" json:"OriFutureHedgePL,omitempty"` // 期初期货实际损益
- OriSpotPL *float64 `protobuf:"fixed64,50,opt,name=OriSpotPL" json:"OriSpotPL,omitempty"` // 期初现货套期损益
- OriFuturePL *float64 `protobuf:"fixed64,51,opt,name=OriFuturePL" json:"OriFuturePL,omitempty"` // 期初期货套期损益
- SpotFloatPL *float64 `protobuf:"fixed64,52,opt,name=SpotFloatPL" json:"SpotFloatPL,omitempty"` // 现货浮动损益 =(当前市场价 - 期初市场价)*未执行现货量 * 方向(销售计划 为 -1, 其它为1)
- FutureFloatPL *float64 `protobuf:"fixed64,53,opt,name=FutureFloatPL" json:"FutureFloatPL,omitempty"` // 期货浮动损益
- IsRelated *uint32 `protobuf:"varint,54,opt,name=IsRelated" json:"IsRelated,omitempty"` //是否关联 - 0:未关联 1:已关联
- }
- func (x *Ermcp2HedgedItem) Reset() {
- *x = Ermcp2HedgedItem{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Ermcp2HedgedItem) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Ermcp2HedgedItem) ProtoMessage() {}
- func (x *Ermcp2HedgedItem) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[7]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Ermcp2HedgedItem.ProtoReflect.Descriptor instead.
- func (*Ermcp2HedgedItem) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{7}
- }
- func (x *Ermcp2HedgedItem) GetHedgedItemID() uint64 {
- if x != nil && x.HedgedItemID != nil {
- return *x.HedgedItemID
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetHedgedItemNum() string {
- if x != nil && x.HedgedItemNum != nil {
- return *x.HedgedItemNum
- }
- return ""
- }
- func (x *Ermcp2HedgedItem) GetHedgedItemName() string {
- if x != nil && x.HedgedItemName != nil {
- return *x.HedgedItemName
- }
- return ""
- }
- func (x *Ermcp2HedgedItem) GetHedgedType() uint64 {
- if x != nil && x.HedgedType != nil {
- return *x.HedgedType
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetPlanStartDate() *Date {
- if x != nil {
- return x.PlanStartDate
- }
- return nil
- }
- func (x *Ermcp2HedgedItem) GetPlanEndDate() *Date {
- if x != nil {
- return x.PlanEndDate
- }
- return nil
- }
- func (x *Ermcp2HedgedItem) GetHedgeRate() float64 {
- if x != nil && x.HedgeRate != nil {
- return *x.HedgeRate
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetTradeUserID() uint64 {
- if x != nil && x.TradeUserID != nil {
- return *x.TradeUserID
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetAreaUserID() uint64 {
- if x != nil && x.AreaUserID != nil {
- return *x.AreaUserID
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetHedgedItemStatus() uint64 {
- if x != nil && x.HedgedItemStatus != nil {
- return *x.HedgedItemStatus
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetApplySrc() uint64 {
- if x != nil && x.ApplySrc != nil {
- return *x.ApplySrc
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetApplyID() uint64 {
- if x != nil && x.ApplyID != nil {
- return *x.ApplyID
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetRemark() string {
- if x != nil && x.Remark != nil {
- return *x.Remark
- }
- return ""
- }
- func (x *Ermcp2HedgedItem) GetCreateTime() *Date {
- if x != nil {
- return x.CreateTime
- }
- return nil
- }
- func (x *Ermcp2HedgedItem) GetAuditTradeDate() string {
- if x != nil && x.AuditTradeDate != nil {
- return *x.AuditTradeDate
- }
- return ""
- }
- func (x *Ermcp2HedgedItem) GetAuditID() uint64 {
- if x != nil && x.AuditID != nil {
- return *x.AuditID
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetAuditSrc() uint64 {
- if x != nil && x.AuditSrc != nil {
- return *x.AuditSrc
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetAuditTime() string {
- if x != nil && x.AuditTime != nil {
- return *x.AuditTime
- }
- return ""
- }
- func (x *Ermcp2HedgedItem) GetAuditRemark() string {
- if x != nil && x.AuditRemark != nil {
- return *x.AuditRemark
- }
- return ""
- }
- func (x *Ermcp2HedgedItem) GetDeliveryGoodsID() uint64 {
- if x != nil && x.DeliveryGoodsID != nil {
- return *x.DeliveryGoodsID
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetWrStandardID() uint64 {
- if x != nil && x.WrStandardID != nil {
- return *x.WrStandardID
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetVatRate() float64 {
- if x != nil && x.VatRate != nil {
- return *x.VatRate
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetHedgeQty() float64 {
- if x != nil && x.HedgeQty != nil {
- return *x.HedgeQty
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetHedgeAmount() float64 {
- if x != nil && x.HedgeAmount != nil {
- return *x.HedgeAmount
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetHedgeRestAmount() float64 {
- if x != nil && x.HedgeRestAmount != nil {
- return *x.HedgeRestAmount
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetHedgeContractAmount() float64 {
- if x != nil && x.HedgeContractAmount != nil {
- return *x.HedgeContractAmount
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetOriAvgPrice() float64 {
- if x != nil && x.OriAvgPrice != nil {
- return *x.OriAvgPrice
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetExeQty() float64 {
- if x != nil && x.ExeQty != nil {
- return *x.ExeQty
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetExeAmount() float64 {
- if x != nil && x.ExeAmount != nil {
- return *x.ExeAmount
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetExeRestAmount() float64 {
- if x != nil && x.ExeRestAmount != nil {
- return *x.ExeRestAmount
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetExeAvgPrice() float64 {
- if x != nil && x.ExeAvgPrice != nil {
- return *x.ExeAvgPrice
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetExeContractAmount() float64 {
- if x != nil && x.ExeContractAmount != nil {
- return *x.ExeContractAmount
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetCurPrice() float64 {
- if x != nil && x.CurPrice != nil {
- return *x.CurPrice
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetUnExeQty() float64 {
- if x != nil && x.UnExeQty != nil {
- return *x.UnExeQty
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetSpotHedgePL() float64 {
- if x != nil && x.SpotHedgePL != nil {
- return *x.SpotHedgePL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetSpotPL() float64 {
- if x != nil && x.SpotPL != nil {
- return *x.SpotPL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetFutureHedgePL() float64 {
- if x != nil && x.FutureHedgePL != nil {
- return *x.FutureHedgePL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetFuturePL() float64 {
- if x != nil && x.FuturePL != nil {
- return *x.FuturePL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetHedgeSumPL() float64 {
- if x != nil && x.HedgeSumPL != nil {
- return *x.HedgeSumPL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetSpotTradePL() float64 {
- if x != nil && x.SpotTradePL != nil {
- return *x.SpotTradePL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetVatPL() float64 {
- if x != nil && x.VatPL != nil {
- return *x.VatPL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetSumObsPL() float64 {
- if x != nil && x.SumObsPL != nil {
- return *x.SumObsPL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetSpotBookAmount() float64 {
- if x != nil && x.SpotBookAmount != nil {
- return *x.SpotBookAmount
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetCurStock() float64 {
- if x != nil && x.CurStock != nil {
- return *x.CurStock
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetEndDate() *Date {
- if x != nil {
- return x.EndDate
- }
- return nil
- }
- func (x *Ermcp2HedgedItem) GetEndTradeDate() string {
- if x != nil && x.EndTradeDate != nil {
- return *x.EndTradeDate
- }
- return ""
- }
- func (x *Ermcp2HedgedItem) GetUpdateTime() *Date {
- if x != nil {
- return x.UpdateTime
- }
- return nil
- }
- func (x *Ermcp2HedgedItem) GetOriSpotHedgePL() float64 {
- if x != nil && x.OriSpotHedgePL != nil {
- return *x.OriSpotHedgePL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetOriFutureHedgePL() float64 {
- if x != nil && x.OriFutureHedgePL != nil {
- return *x.OriFutureHedgePL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetOriSpotPL() float64 {
- if x != nil && x.OriSpotPL != nil {
- return *x.OriSpotPL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetOriFuturePL() float64 {
- if x != nil && x.OriFuturePL != nil {
- return *x.OriFuturePL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetSpotFloatPL() float64 {
- if x != nil && x.SpotFloatPL != nil {
- return *x.SpotFloatPL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetFutureFloatPL() float64 {
- if x != nil && x.FutureFloatPL != nil {
- return *x.FutureFloatPL
- }
- return 0
- }
- func (x *Ermcp2HedgedItem) GetIsRelated() uint32 {
- if x != nil && x.IsRelated != nil {
- return *x.IsRelated
- }
- return 0
- }
- // ERMCP2_HEDGEDITEM 被套期项目表扩展
- type Ermcp2HedgedItemExt struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Item *Ermcp2HedgedItem `protobuf:"bytes,1,opt,name=item" json:"item,omitempty"`
- Accountname *string `protobuf:"bytes,2,opt,name=accountname" json:"accountname,omitempty"`
- Wrstandardname *string `protobuf:"bytes,3,opt,name=wrstandardname" json:"wrstandardname,omitempty"`
- Unitid *uint32 `protobuf:"varint,4,opt,name=unitid" json:"unitid,omitempty"`
- }
- func (x *Ermcp2HedgedItemExt) Reset() {
- *x = Ermcp2HedgedItemExt{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Ermcp2HedgedItemExt) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Ermcp2HedgedItemExt) ProtoMessage() {}
- func (x *Ermcp2HedgedItemExt) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[8]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Ermcp2HedgedItemExt.ProtoReflect.Descriptor instead.
- func (*Ermcp2HedgedItemExt) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{8}
- }
- func (x *Ermcp2HedgedItemExt) GetItem() *Ermcp2HedgedItem {
- if x != nil {
- return x.Item
- }
- return nil
- }
- func (x *Ermcp2HedgedItemExt) GetAccountname() string {
- if x != nil && x.Accountname != nil {
- return *x.Accountname
- }
- return ""
- }
- func (x *Ermcp2HedgedItemExt) GetWrstandardname() string {
- if x != nil && x.Wrstandardname != nil {
- return *x.Wrstandardname
- }
- return ""
- }
- func (x *Ermcp2HedgedItemExt) GetUnitid() uint32 {
- if x != nil && x.Unitid != nil {
- return *x.Unitid
- }
- return 0
- }
- // ERMCP2_HIMIDDLEGOODS 项目套保品种明细
- type Ermcp2HIMiddleGoods struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- //mkey: 1 2
- HedgedItemID *uint64 `protobuf:"varint,1,opt,name=HedgedItemID" json:"HedgedItemID,omitempty"` // 被套期项目ID(624+Unix秒时间戳(10位)+xxxxxx)
- MiddleGoodsID *uint64 `protobuf:"varint,2,opt,name=MiddleGoodsID" json:"MiddleGoodsID,omitempty"` // 套保品种ID
- DeliveryGoodsID *uint64 `protobuf:"varint,3,opt,name=DeliveryGoodsID" json:"DeliveryGoodsID,omitempty"` // 现货品种ID
- WrstandardID *uint64 `protobuf:"varint,4,opt,name=WrstandardID" json:"WrstandardID,omitempty"` // 现货商品ID
- VatRate *float64 `protobuf:"fixed64,5,opt,name=VatRate" json:"VatRate,omitempty"` // 增值税
- SpotConvertRatio *float64 `protobuf:"fixed64,6,opt,name=SpotConvertRatio" json:"SpotConvertRatio,omitempty"` // 折算系数 [现货]
- UnexeSpotQty *float64 `protobuf:"fixed64,7,opt,name=UnexeSpotQty" json:"UnexeSpotQty,omitempty"` // 未执行现货量
- UnexeHedgeQty *float64 `protobuf:"fixed64,8,opt,name=UnexeHedgeQty" json:"UnexeHedgeQty,omitempty"` // 未执行套期量 = 未执行现货量*折算系数* (1/(1+增值税)) * 套期比例(项目上)
- FutureHedgeQty *float64 `protobuf:"fixed64,9,opt,name=FutureHedgeQty" json:"FutureHedgeQty,omitempty"` // 期货持仓套期量
- HIExpsoure *float64 `protobuf:"fixed64,10,opt,name=HIExpsoure" json:"HIExpsoure,omitempty"` // 期现敞口量 = 未执行套期量 + 期货持仓套期量
- TradeUserID *uint64 `protobuf:"varint,11,opt,name=TradeUserID" json:"TradeUserID,omitempty"` // 交易用户ID
- AreaUserID *uint64 `protobuf:"varint,12,opt,name=AreaUserID" json:"AreaUserID,omitempty"` // 企业ID
- CreateTime *Date `protobuf:"bytes,13,opt,name=CreateTime" json:"CreateTime,omitempty"` // 创建时间 --DATE
- UpdateTime *Date `protobuf:"bytes,14,opt,name=UpdateTime" json:"UpdateTime,omitempty"` // 更新时间 --DATE
- }
- func (x *Ermcp2HIMiddleGoods) Reset() {
- *x = Ermcp2HIMiddleGoods{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Ermcp2HIMiddleGoods) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Ermcp2HIMiddleGoods) ProtoMessage() {}
- func (x *Ermcp2HIMiddleGoods) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[9]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Ermcp2HIMiddleGoods.ProtoReflect.Descriptor instead.
- func (*Ermcp2HIMiddleGoods) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{9}
- }
- func (x *Ermcp2HIMiddleGoods) GetHedgedItemID() uint64 {
- if x != nil && x.HedgedItemID != nil {
- return *x.HedgedItemID
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetMiddleGoodsID() uint64 {
- if x != nil && x.MiddleGoodsID != nil {
- return *x.MiddleGoodsID
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetDeliveryGoodsID() uint64 {
- if x != nil && x.DeliveryGoodsID != nil {
- return *x.DeliveryGoodsID
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetWrstandardID() uint64 {
- if x != nil && x.WrstandardID != nil {
- return *x.WrstandardID
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetVatRate() float64 {
- if x != nil && x.VatRate != nil {
- return *x.VatRate
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetSpotConvertRatio() float64 {
- if x != nil && x.SpotConvertRatio != nil {
- return *x.SpotConvertRatio
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetUnexeSpotQty() float64 {
- if x != nil && x.UnexeSpotQty != nil {
- return *x.UnexeSpotQty
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetUnexeHedgeQty() float64 {
- if x != nil && x.UnexeHedgeQty != nil {
- return *x.UnexeHedgeQty
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetFutureHedgeQty() float64 {
- if x != nil && x.FutureHedgeQty != nil {
- return *x.FutureHedgeQty
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetHIExpsoure() float64 {
- if x != nil && x.HIExpsoure != nil {
- return *x.HIExpsoure
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetTradeUserID() uint64 {
- if x != nil && x.TradeUserID != nil {
- return *x.TradeUserID
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetAreaUserID() uint64 {
- if x != nil && x.AreaUserID != nil {
- return *x.AreaUserID
- }
- return 0
- }
- func (x *Ermcp2HIMiddleGoods) GetCreateTime() *Date {
- if x != nil {
- return x.CreateTime
- }
- return nil
- }
- func (x *Ermcp2HIMiddleGoods) GetUpdateTime() *Date {
- if x != nil {
- return x.UpdateTime
- }
- return nil
- }
- // ERMCP2_HIMIDDLEGOODS 项目套保品种明细扩展
- type Ermcp2HIMiddleGoodsExt struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Middlegoods *Ermcp2HIMiddleGoods `protobuf:"bytes,1,opt,name=middlegoods" json:"middlegoods,omitempty"`
- Middlegoodsname *string `protobuf:"bytes,2,opt,name=middlegoodsname" json:"middlegoodsname,omitempty"`
- }
- func (x *Ermcp2HIMiddleGoodsExt) Reset() {
- *x = Ermcp2HIMiddleGoodsExt{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Ermcp2HIMiddleGoodsExt) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Ermcp2HIMiddleGoodsExt) ProtoMessage() {}
- func (x *Ermcp2HIMiddleGoodsExt) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[10]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Ermcp2HIMiddleGoodsExt.ProtoReflect.Descriptor instead.
- func (*Ermcp2HIMiddleGoodsExt) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{10}
- }
- func (x *Ermcp2HIMiddleGoodsExt) GetMiddlegoods() *Ermcp2HIMiddleGoods {
- if x != nil {
- return x.Middlegoods
- }
- return nil
- }
- func (x *Ermcp2HIMiddleGoodsExt) GetMiddlegoodsname() string {
- if x != nil && x.Middlegoodsname != nil {
- return *x.Middlegoodsname
- }
- return ""
- }
- //被套期项目表信息
- type Ermcp2HedgedItemInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Hedgeditemext *Ermcp2HedgedItemExt `protobuf:"bytes,1,opt,name=hedgeditemext" json:"hedgeditemext,omitempty"` //被套期项目
- Himiddlegoodsext []*Ermcp2HIMiddleGoodsExt `protobuf:"bytes,2,rep,name=himiddlegoodsext" json:"himiddlegoodsext,omitempty"`
- }
- func (x *Ermcp2HedgedItemInfo) Reset() {
- *x = Ermcp2HedgedItemInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Ermcp2HedgedItemInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Ermcp2HedgedItemInfo) ProtoMessage() {}
- func (x *Ermcp2HedgedItemInfo) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[11]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Ermcp2HedgedItemInfo.ProtoReflect.Descriptor instead.
- func (*Ermcp2HedgedItemInfo) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{11}
- }
- func (x *Ermcp2HedgedItemInfo) GetHedgeditemext() *Ermcp2HedgedItemExt {
- if x != nil {
- return x.Hedgeditemext
- }
- return nil
- }
- func (x *Ermcp2HedgedItemInfo) GetHimiddlegoodsext() []*Ermcp2HIMiddleGoodsExt {
- if x != nil {
- return x.Himiddlegoodsext
- }
- return nil
- }
- // ERMCP2_AREAEXPOSURE 企业敞口表_New
- type Ermcp2AreaExposure struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- //mkey: 1 2
- MiddleGoodsID *uint64 `protobuf:"varint,1,opt,name=MiddleGoodsID" json:"MiddleGoodsID,omitempty"` // 套保品种
- AreaUserID *uint64 `protobuf:"varint,2,opt,name=AreaUserID" json:"AreaUserID,omitempty"` // 所属机构
- SpotQty *float64 `protobuf:"fixed64,3,opt,name=SpotQty" json:"SpotQty,omitempty"` // 现货总量
- HedgeSpotQty *float64 `protobuf:"fixed64,4,opt,name=HedgeSpotQty" json:"HedgeSpotQty,omitempty"` // 被套期现货量
- HedgePlanQty *float64 `protobuf:"fixed64,5,opt,name=HedgePlanQty" json:"HedgePlanQty,omitempty"` // 套期计划量
- FutureQty *float64 `protobuf:"fixed64,6,opt,name=FutureQty" json:"FutureQty,omitempty"` // 期货套期量
- SpotExposure *float64 `protobuf:"fixed64,7,opt,name=SpotExposure" json:"SpotExposure,omitempty"` // 现货敞口量
- TotalExposure *float64 `protobuf:"fixed64,8,opt,name=TotalExposure" json:"TotalExposure,omitempty"` // 总敞口量 = 现货敞口量 + 期货套期量
- SpRatio *float64 `protobuf:"fixed64,9,opt,name=SpRatio" json:"SpRatio,omitempty"` // 总期现比例 = 期货套期量/现货敞口量
- HedgedSpotExposure *float64 `protobuf:"fixed64,10,opt,name=HedgedSpotExposure" json:"HedgedSpotExposure,omitempty"` // 被套期现货敞口量
- HedgedTotalExposure *float64 `protobuf:"fixed64,11,opt,name=HedgedTotalExposure" json:"HedgedTotalExposure,omitempty"` // 套期敞口量 = 被套期现货敞口量+期货套期量
- HedgedSpRatio *float64 `protobuf:"fixed64,12,opt,name=HedgedSpRatio" json:"HedgedSpRatio,omitempty"` // 套期期现比例 = 期货套期量/被套期现货敞口量
- OriSpotQty *float64 `protobuf:"fixed64,13,opt,name=OriSpotQty" json:"OriSpotQty,omitempty"` // 期初现货总量
- OriHedgeSpotQty *float64 `protobuf:"fixed64,14,opt,name=OriHedgeSpotQty" json:"OriHedgeSpotQty,omitempty"` // 期初被套期现货量
- OriHedgePlanQty *float64 `protobuf:"fixed64,15,opt,name=OriHedgePlanQty" json:"OriHedgePlanQty,omitempty"` // 期初套期计划量
- OriFutureQty *float64 `protobuf:"fixed64,16,opt,name=OriFutureQty" json:"OriFutureQty,omitempty"` // 期初期货套期量
- OriSpotExposure *float64 `protobuf:"fixed64,17,opt,name=OriSpotExposure" json:"OriSpotExposure,omitempty"` // 期初现货敞口量
- OriTotalExposure *float64 `protobuf:"fixed64,18,opt,name=OriTotalExposure" json:"OriTotalExposure,omitempty"` // 期初总敞口量
- OriHedgedSpotExposure *float64 `protobuf:"fixed64,19,opt,name=OriHedgedSpotExposure" json:"OriHedgedSpotExposure,omitempty"` // 期初被套期现货敞口量
- OriHedgedTotalExposure *float64 `protobuf:"fixed64,20,opt,name=OriHedgedTotalExposure" json:"OriHedgedTotalExposure,omitempty"` // 期初套期敞口量
- UpdateTime *Date `protobuf:"bytes,21,opt,name=UpdateTime" json:"UpdateTime,omitempty"` // 更新时间 --DATE
- MiddleGoodsName *string `protobuf:"bytes,22,opt,name=MiddleGoodsName" json:"MiddleGoodsName,omitempty"` //套保品种名称
- GoodsUnitID *uint32 `protobuf:"varint,23,opt,name=GoodsUnitID" json:"GoodsUnitID,omitempty"` //单位ID
- }
- func (x *Ermcp2AreaExposure) Reset() {
- *x = Ermcp2AreaExposure{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Ermcp2AreaExposure) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Ermcp2AreaExposure) ProtoMessage() {}
- func (x *Ermcp2AreaExposure) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[12]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Ermcp2AreaExposure.ProtoReflect.Descriptor instead.
- func (*Ermcp2AreaExposure) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{12}
- }
- func (x *Ermcp2AreaExposure) GetMiddleGoodsID() uint64 {
- if x != nil && x.MiddleGoodsID != nil {
- return *x.MiddleGoodsID
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetAreaUserID() uint64 {
- if x != nil && x.AreaUserID != nil {
- return *x.AreaUserID
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetSpotQty() float64 {
- if x != nil && x.SpotQty != nil {
- return *x.SpotQty
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetHedgeSpotQty() float64 {
- if x != nil && x.HedgeSpotQty != nil {
- return *x.HedgeSpotQty
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetHedgePlanQty() float64 {
- if x != nil && x.HedgePlanQty != nil {
- return *x.HedgePlanQty
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetFutureQty() float64 {
- if x != nil && x.FutureQty != nil {
- return *x.FutureQty
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetSpotExposure() float64 {
- if x != nil && x.SpotExposure != nil {
- return *x.SpotExposure
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetTotalExposure() float64 {
- if x != nil && x.TotalExposure != nil {
- return *x.TotalExposure
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetSpRatio() float64 {
- if x != nil && x.SpRatio != nil {
- return *x.SpRatio
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetHedgedSpotExposure() float64 {
- if x != nil && x.HedgedSpotExposure != nil {
- return *x.HedgedSpotExposure
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetHedgedTotalExposure() float64 {
- if x != nil && x.HedgedTotalExposure != nil {
- return *x.HedgedTotalExposure
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetHedgedSpRatio() float64 {
- if x != nil && x.HedgedSpRatio != nil {
- return *x.HedgedSpRatio
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetOriSpotQty() float64 {
- if x != nil && x.OriSpotQty != nil {
- return *x.OriSpotQty
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetOriHedgeSpotQty() float64 {
- if x != nil && x.OriHedgeSpotQty != nil {
- return *x.OriHedgeSpotQty
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetOriHedgePlanQty() float64 {
- if x != nil && x.OriHedgePlanQty != nil {
- return *x.OriHedgePlanQty
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetOriFutureQty() float64 {
- if x != nil && x.OriFutureQty != nil {
- return *x.OriFutureQty
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetOriSpotExposure() float64 {
- if x != nil && x.OriSpotExposure != nil {
- return *x.OriSpotExposure
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetOriTotalExposure() float64 {
- if x != nil && x.OriTotalExposure != nil {
- return *x.OriTotalExposure
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetOriHedgedSpotExposure() float64 {
- if x != nil && x.OriHedgedSpotExposure != nil {
- return *x.OriHedgedSpotExposure
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetOriHedgedTotalExposure() float64 {
- if x != nil && x.OriHedgedTotalExposure != nil {
- return *x.OriHedgedTotalExposure
- }
- return 0
- }
- func (x *Ermcp2AreaExposure) GetUpdateTime() *Date {
- if x != nil {
- return x.UpdateTime
- }
- return nil
- }
- func (x *Ermcp2AreaExposure) GetMiddleGoodsName() string {
- if x != nil && x.MiddleGoodsName != nil {
- return *x.MiddleGoodsName
- }
- return ""
- }
- func (x *Ermcp2AreaExposure) GetGoodsUnitID() uint32 {
- if x != nil && x.GoodsUnitID != nil {
- return *x.GoodsUnitID
- }
- return 0
- }
- // TRADE_HOLDERDETAILEX 交易持仓扩展表
- type TradeHolderDetailEx struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- //mkey: 1 2
- TradeID *uint64 `protobuf:"varint,1,opt,name=TradeID" json:"TradeID,omitempty"` // 成交单号(101+Unix秒时间戳(10位)+2位(MarketServiceID)+xxxx)
- BuyOrSell *uint32 `protobuf:"varint,2,opt,name=BuyOrSell" json:"BuyOrSell,omitempty"` // 方向 - 0:买 1:卖
- TradeDate *string `protobuf:"bytes,3,opt,name=TradeDate" json:"TradeDate,omitempty"` // 交易日(yyyyMMdd)
- MarketID *uint32 `protobuf:"varint,4,opt,name=MarketID" json:"MarketID,omitempty"` // 市场ID
- GoodsID *uint32 `protobuf:"varint,5,opt,name=GoodsID" json:"GoodsID,omitempty"` // 商品ID
- UserID *uint32 `protobuf:"varint,6,opt,name=UserID" json:"UserID,omitempty"` // 用户ID
- AccountID *uint64 `protobuf:"varint,7,opt,name=AccountID" json:"AccountID,omitempty"` // 账号ID
- MatchUserID *uint32 `protobuf:"varint,8,opt,name=MatchUserID" json:"MatchUserID,omitempty"` // 对手用户ID
- MatchAccountID *uint64 `protobuf:"varint,9,opt,name=MatchAccountID" json:"MatchAccountID,omitempty"` // 对手账号ID
- OpenQty *uint64 `protobuf:"varint,10,opt,name=OpenQty" json:"OpenQty,omitempty"` // 建仓数量
- TradeAmount *float64 `protobuf:"fixed64,11,opt,name=TradeAmount" json:"TradeAmount,omitempty"` // 成交金额
- OpenPrice *float64 `protobuf:"fixed64,12,opt,name=OpenPrice" json:"OpenPrice,omitempty"` // 建仓价格
- HolderQty *uint64 `protobuf:"varint,13,opt,name=HolderQty" json:"HolderQty,omitempty"` // 持仓数量
- HolderAmount *float64 `protobuf:"fixed64,14,opt,name=HolderAmount" json:"HolderAmount,omitempty"` // 持仓金额
- HolderPrice *float64 `protobuf:"fixed64,15,opt,name=HolderPrice" json:"HolderPrice,omitempty"` // 持仓价格
- FreezeQty *uint64 `protobuf:"varint,16,opt,name=FreezeQty" json:"FreezeQty,omitempty"` // 冻结数量
- DeliveryQty *uint64 `protobuf:"varint,17,opt,name=DeliveryQty" json:"DeliveryQty,omitempty"` // 交收手数(已交收)
- HoldDays *uint64 `protobuf:"varint,18,opt,name=HoldDays" json:"HoldDays,omitempty"` // 持仓天数
- PayedDeposit *float64 `protobuf:"fixed64,19,opt,name=PayedDeposit" json:"PayedDeposit,omitempty"` // 已付定金
- RestockDeposit *float64 `protobuf:"fixed64,20,opt,name=RestockDeposit" json:"RestockDeposit,omitempty"` // 补充定金
- LateFeeDays *uint64 `protobuf:"varint,21,opt,name=LateFeeDays" json:"LateFeeDays,omitempty"` // 滞纳金起计天数
- LateFeeAlgorithm *uint32 `protobuf:"varint,22,opt,name=LateFeeAlgorithm" json:"LateFeeAlgorithm,omitempty"` // 滞纳金收取方式 1:比率 2:固定
- LateFeeValue *float64 `protobuf:"fixed64,23,opt,name=LateFeeValue" json:"LateFeeValue,omitempty"` // 滞纳金收取值
- CallAteFee *float64 `protobuf:"fixed64,24,opt,name=CallAteFee" json:"CallAteFee,omitempty"` // 已计滞纳金
- PromptDepositRate *float64 `protobuf:"fixed64,25,opt,name=PromptDepositRate" json:"PromptDepositRate,omitempty"` // 提示定金率
- CutDepositRate *float64 `protobuf:"fixed64,26,opt,name=CutDepositRate" json:"CutDepositRate,omitempty"` // 斩仓定金率
- PromptPrice *float64 `protobuf:"fixed64,27,opt,name=PromptPrice" json:"PromptPrice,omitempty"` // 提示价格
- CutPrice *float64 `protobuf:"fixed64,28,opt,name=CutPrice" json:"CutPrice,omitempty"` // 斩仓价格
- ClosePL *float64 `protobuf:"fixed64,29,opt,name=ClosePL" json:"ClosePL,omitempty"` // 平仓盈亏
- FloatPL *float64 `protobuf:"fixed64,30,opt,name=FloatPL" json:"FloatPL,omitempty"` // 浮动盈亏
- DepositRate *float64 `protobuf:"fixed64,31,opt,name=DepositRate" json:"DepositRate,omitempty"` // 订单定金率
- RefundableDeposit *float64 `protobuf:"fixed64,32,opt,name=RefundableDeposit" json:"RefundableDeposit,omitempty"` // 可退定金
- PayedLateFee *float64 `protobuf:"fixed64,33,opt,name=PayedLateFee" json:"PayedLateFee,omitempty"` // 已付滞纳金
- TradeTime *Date `protobuf:"bytes,34,opt,name=TradeTime" json:"TradeTime,omitempty"` //交易时间
- HandleStatus *float64 `protobuf:"fixed64,35,opt,name=HandleStatus" json:"HandleStatus,omitempty"` // 处理状态
- OriPayedDeposit *float64 `protobuf:"fixed64,36,opt,name=OriPayedDeposit" json:"OriPayedDeposit,omitempty"` // 初始已付定金
- OriRestockDeposit *float64 `protobuf:"fixed64,37,opt,name=OriRestockDeposit" json:"OriRestockDeposit,omitempty"` // 累计补充定金
- CanAutoAddDeposit *uint64 `protobuf:"varint,38,opt,name=CanAutoAddDeposit" json:"CanAutoAddDeposit,omitempty"` // 是否允许自动追加定金: 0-否 1-是(52)
- AddDepositRate *float64 `protobuf:"fixed64,39,opt,name=AddDepositRate" json:"AddDepositRate,omitempty"` // 自动追加定金率(52) - 允许时显示
- CanAutoRefundDeposit *uint64 `protobuf:"varint,40,opt,name=CanAutoRefundDeposit" json:"CanAutoRefundDeposit,omitempty"` // 是否允许自动退还定金: 0-否 1-是(52)
- }
- func (x *TradeHolderDetailEx) Reset() {
- *x = TradeHolderDetailEx{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *TradeHolderDetailEx) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*TradeHolderDetailEx) ProtoMessage() {}
- func (x *TradeHolderDetailEx) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[13]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use TradeHolderDetailEx.ProtoReflect.Descriptor instead.
- func (*TradeHolderDetailEx) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{13}
- }
- func (x *TradeHolderDetailEx) GetTradeID() uint64 {
- if x != nil && x.TradeID != nil {
- return *x.TradeID
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetBuyOrSell() uint32 {
- if x != nil && x.BuyOrSell != nil {
- return *x.BuyOrSell
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetTradeDate() string {
- if x != nil && x.TradeDate != nil {
- return *x.TradeDate
- }
- return ""
- }
- func (x *TradeHolderDetailEx) GetMarketID() uint32 {
- if x != nil && x.MarketID != nil {
- return *x.MarketID
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetGoodsID() uint32 {
- if x != nil && x.GoodsID != nil {
- return *x.GoodsID
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetUserID() uint32 {
- if x != nil && x.UserID != nil {
- return *x.UserID
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetAccountID() uint64 {
- if x != nil && x.AccountID != nil {
- return *x.AccountID
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetMatchUserID() uint32 {
- if x != nil && x.MatchUserID != nil {
- return *x.MatchUserID
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetMatchAccountID() uint64 {
- if x != nil && x.MatchAccountID != nil {
- return *x.MatchAccountID
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetOpenQty() uint64 {
- if x != nil && x.OpenQty != nil {
- return *x.OpenQty
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetTradeAmount() float64 {
- if x != nil && x.TradeAmount != nil {
- return *x.TradeAmount
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetOpenPrice() float64 {
- if x != nil && x.OpenPrice != nil {
- return *x.OpenPrice
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetHolderQty() uint64 {
- if x != nil && x.HolderQty != nil {
- return *x.HolderQty
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetHolderAmount() float64 {
- if x != nil && x.HolderAmount != nil {
- return *x.HolderAmount
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetHolderPrice() float64 {
- if x != nil && x.HolderPrice != nil {
- return *x.HolderPrice
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetFreezeQty() uint64 {
- if x != nil && x.FreezeQty != nil {
- return *x.FreezeQty
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetDeliveryQty() uint64 {
- if x != nil && x.DeliveryQty != nil {
- return *x.DeliveryQty
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetHoldDays() uint64 {
- if x != nil && x.HoldDays != nil {
- return *x.HoldDays
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetPayedDeposit() float64 {
- if x != nil && x.PayedDeposit != nil {
- return *x.PayedDeposit
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetRestockDeposit() float64 {
- if x != nil && x.RestockDeposit != nil {
- return *x.RestockDeposit
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetLateFeeDays() uint64 {
- if x != nil && x.LateFeeDays != nil {
- return *x.LateFeeDays
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetLateFeeAlgorithm() uint32 {
- if x != nil && x.LateFeeAlgorithm != nil {
- return *x.LateFeeAlgorithm
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetLateFeeValue() float64 {
- if x != nil && x.LateFeeValue != nil {
- return *x.LateFeeValue
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetCallAteFee() float64 {
- if x != nil && x.CallAteFee != nil {
- return *x.CallAteFee
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetPromptDepositRate() float64 {
- if x != nil && x.PromptDepositRate != nil {
- return *x.PromptDepositRate
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetCutDepositRate() float64 {
- if x != nil && x.CutDepositRate != nil {
- return *x.CutDepositRate
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetPromptPrice() float64 {
- if x != nil && x.PromptPrice != nil {
- return *x.PromptPrice
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetCutPrice() float64 {
- if x != nil && x.CutPrice != nil {
- return *x.CutPrice
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetClosePL() float64 {
- if x != nil && x.ClosePL != nil {
- return *x.ClosePL
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetFloatPL() float64 {
- if x != nil && x.FloatPL != nil {
- return *x.FloatPL
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetDepositRate() float64 {
- if x != nil && x.DepositRate != nil {
- return *x.DepositRate
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetRefundableDeposit() float64 {
- if x != nil && x.RefundableDeposit != nil {
- return *x.RefundableDeposit
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetTradeTime() *Date {
- if x != nil {
- return x.TradeTime
- }
- return nil
- }
- func (x *TradeHolderDetailEx) GetOriPayedDeposit() float64 {
- if x != nil && x.OriPayedDeposit != nil {
- return *x.OriPayedDeposit
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetOriRestockDeposit() float64 {
- if x != nil && x.OriRestockDeposit != nil {
- return *x.OriRestockDeposit
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetCanAutoAddDeposit() uint32 {
- if x != nil && x.CanAutoAddDeposit != nil {
- return *x.CanAutoAddDeposit
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetAddDepositRate() float64 {
- if x != nil && x.AddDepositRate != nil {
- return *x.AddDepositRate
- }
- return 0
- }
- func (x *TradeHolderDetailEx) GetCanAutoRefundDeposit() uint32 {
- if x != nil && x.CanAutoRefundDeposit != nil {
- return *x.CanAutoRefundDeposit
- }
- return 0
- }
- // RedisTradeHolderDetailEx redis存储交易持仓扩展表
- type RedisTradeHolderDetailEx struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- THDetailEx *TradeHolderDetailEx `protobuf:"bytes,1,opt,name=THDetailEx" json:"THDetailEx,omitempty"` // 交易持仓扩展表记录
- FloatPL *float64 `protobuf:"fixed64,2,opt,name=FloatPL" json:"FloatPL,omitempty"` // 浮动盈亏
- DepositRate *float64 `protobuf:"fixed64,3,opt,name=DepositRate" json:"DepositRate,omitempty"` // 订单定金率
- RefundableDeposit *float64 `protobuf:"fixed64,4,opt,name=RefundableDeposit" json:"RefundableDeposit,omitempty"` // 可退定金
- GoodsCode *string `protobuf:"bytes,5,opt,name=GoodsCode" json:"GoodsCode,omitempty"` //商品代码
- GoodsName *string `protobuf:"bytes,6,opt,name=GoodsName" json:"GoodsName,omitempty"` //商品名称
- GoodsUnitID *uint32 `protobuf:"varint,7,opt,name=GoodsUnitID" json:"GoodsUnitID,omitempty"` //单位
- AgreeUnit *float64 `protobuf:"fixed64,8,opt,name=AgreeUnit" json:"AgreeUnit,omitempty"` //合约单位
- DecimalPlace *uint32 `protobuf:"varint,9,opt,name=DecimalPlace" json:"DecimalPlace,omitempty"` //小数位位数
- QuoteMinUnit *uint32 `protobuf:"varint,10,opt,name=QuoteMinUnit" json:"QuoteMinUnit,omitempty"` //行情最小变动单位
- }
- func (x *RedisTradeHolderDetailEx) Reset() {
- *x = RedisTradeHolderDetailEx{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *RedisTradeHolderDetailEx) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*RedisTradeHolderDetailEx) ProtoMessage() {}
- func (x *RedisTradeHolderDetailEx) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[14]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use RedisTradeHolderDetailEx.ProtoReflect.Descriptor instead.
- func (*RedisTradeHolderDetailEx) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{14}
- }
- func (x *RedisTradeHolderDetailEx) GetTHDetailEx() *TradeHolderDetailEx {
- if x != nil {
- return x.THDetailEx
- }
- return nil
- }
- func (x *RedisTradeHolderDetailEx) GetFloatPL() float64 {
- if x != nil && x.FloatPL != nil {
- return *x.FloatPL
- }
- return 0
- }
- func (x *RedisTradeHolderDetailEx) GetDepositRate() float64 {
- if x != nil && x.DepositRate != nil {
- return *x.DepositRate
- }
- return 0
- }
- func (x *RedisTradeHolderDetailEx) GetRefundableDeposit() float64 {
- if x != nil && x.RefundableDeposit != nil {
- return *x.RefundableDeposit
- }
- return 0
- }
- func (x *RedisTradeHolderDetailEx) GetGoodsCode() string {
- if x != nil && x.GoodsCode != nil {
- return *x.GoodsCode
- }
- return ""
- }
- func (x *RedisTradeHolderDetailEx) GetGoodsName() string {
- if x != nil && x.GoodsName != nil {
- return *x.GoodsName
- }
- return ""
- }
- func (x *RedisTradeHolderDetailEx) GetGoodsUnitID() uint32 {
- if x != nil && x.GoodsUnitID != nil {
- return *x.GoodsUnitID
- }
- return 0
- }
- func (x *RedisTradeHolderDetailEx) GetAgreeUnit() float64 {
- if x != nil && x.AgreeUnit != nil {
- return *x.AgreeUnit
- }
- return 0
- }
- func (x *RedisTradeHolderDetailEx) GetDecimalPlace() uint32 {
- if x != nil && x.DecimalPlace != nil {
- return *x.DecimalPlace
- }
- return 0
- }
- func (x *RedisTradeHolderDetailEx) GetQuoteMinUnit() uint32 {
- if x != nil && x.QuoteMinUnit != nil {
- return *x.QuoteMinUnit
- }
- return 0
- }
- //保证金信息
- type MarginInfoStruct struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- AccountID *uint64 `protobuf:"varint,1,opt,name=AccountID" json:"AccountID,omitempty"` // 资金账号
- GoodsID *uint32 `protobuf:"varint,2,opt,name=GoodsID" json:"GoodsID,omitempty"` // 商品id
- MarginAlgorithm *uint32 `protobuf:"varint,3,opt,name=MarginAlgorithm" json:"MarginAlgorithm,omitempty"` // 保证金计算方式
- MarketMarginValue *float64 `protobuf:"fixed64,4,opt,name=MarketMarginValue" json:"MarketMarginValue,omitempty"` // 即市保证金值
- ReckonMarginValue *float64 `protobuf:"fixed64,5,opt,name=ReckonMarginValue" json:"ReckonMarginValue,omitempty"` // 结算保证金值
- LockMarginValue *float64 `protobuf:"fixed64,6,opt,name=LockMarginValue" json:"LockMarginValue,omitempty"` // 锁仓保证金
- RealMarginValue *float64 `protobuf:"fixed64,7,opt,name=RealMarginValue" json:"RealMarginValue,omitempty"` // 实付比例
- RealMarginAlgorithm *uint32 `protobuf:"varint,8,opt,name=RealMarginAlgorithm" json:"RealMarginAlgorithm,omitempty"` // 实付保证金计算方式
- }
- func (x *MarginInfoStruct) Reset() {
- *x = MarginInfoStruct{}
- if protoimpl.UnsafeEnabled {
- mi := &file_mtp2_proto_msgTypes[15]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *MarginInfoStruct) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*MarginInfoStruct) ProtoMessage() {}
- func (x *MarginInfoStruct) ProtoReflect() protoreflect.Message {
- mi := &file_mtp2_proto_msgTypes[15]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use MarginInfoStruct.ProtoReflect.Descriptor instead.
- func (*MarginInfoStruct) Descriptor() ([]byte, []int) {
- return file_mtp2_proto_rawDescGZIP(), []int{15}
- }
- func (x *MarginInfoStruct) GetAccountID() uint64 {
- if x != nil && x.AccountID != nil {
- return *x.AccountID
- }
- return 0
- }
- func (x *MarginInfoStruct) GetGoodsID() uint32 {
- if x != nil && x.GoodsID != nil {
- return *x.GoodsID
- }
- return 0
- }
- func (x *MarginInfoStruct) GetMarginAlgorithm() uint32 {
- if x != nil && x.MarginAlgorithm != nil {
- return *x.MarginAlgorithm
- }
- return 0
- }
- func (x *MarginInfoStruct) GetMarketMarginValue() float64 {
- if x != nil && x.MarketMarginValue != nil {
- return *x.MarketMarginValue
- }
- return 0
- }
- func (x *MarginInfoStruct) GetReckonMarginValue() float64 {
- if x != nil && x.ReckonMarginValue != nil {
- return *x.ReckonMarginValue
- }
- return 0
- }
- func (x *MarginInfoStruct) GetLockMarginValue() float64 {
- if x != nil && x.LockMarginValue != nil {
- return *x.LockMarginValue
- }
- return 0
- }
- func (x *MarginInfoStruct) GetRealMarginValue() float64 {
- if x != nil && x.RealMarginValue != nil {
- return *x.RealMarginValue
- }
- return 0
- }
- func (x *MarginInfoStruct) GetRealMarginAlgorithm() uint32 {
- if x != nil && x.RealMarginAlgorithm != nil {
- return *x.RealMarginAlgorithm
- }
- return 0
- }
- var File_mtp2_proto protoreflect.FileDescriptor
- var file_mtp2_proto_rawDesc = []byte{
- 0x0a, 0x0a, 0x6d, 0x74, 0x70, 0x32, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02, 0x70, 0x62,
- 0x22, 0x43, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x16, 0x0a,
- 0x06, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x52,
- 0x75, 0x6c, 0x65, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x56, 0x61,
- 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x50, 0x61, 0x72, 0x61, 0x6d,
- 0x56, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x7c, 0x0a, 0x13, 0x54, 0x72, 0x61, 0x64, 0x65, 0x52, 0x75,
- 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x12, 0x1c, 0x0a, 0x09,
- 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x47, 0x6f,
- 0x6f, 0x64, 0x73, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x47, 0x6f, 0x6f,
- 0x64, 0x73, 0x49, 0x44, 0x12, 0x2d, 0x0a, 0x0a, 0x54, 0x72, 0x61, 0x64, 0x65, 0x52, 0x75, 0x6c,
- 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x54, 0x72,
- 0x61, 0x64, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x0a, 0x54, 0x72, 0x61, 0x64, 0x65, 0x52, 0x75,
- 0x6c, 0x65, 0x73, 0x22, 0x20, 0x0a, 0x04, 0x44, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x44,
- 0x61, 0x74, 0x65, 0x53, 0x74, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x44, 0x61,
- 0x74, 0x65, 0x53, 0x74, 0x72, 0x22, 0xea, 0x0a, 0x0a, 0x16, 0x45, 0x72, 0x6d, 0x73, 0x32, 0x41,
- 0x72, 0x62, 0x69, 0x74, 0x72, 0x61, 0x67, 0x65, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79,
- 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x53, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x53, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x64, 0x12, 0x12,
- 0x0a, 0x04, 0x41, 0x53, 0x4e, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x41, 0x53,
- 0x4e, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x42, 0x69, 0x7a, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x0d, 0x52, 0x07, 0x42, 0x69, 0x7a, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06,
- 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x55, 0x73,
- 0x65, 0x72, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x0f, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79,
- 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0f, 0x44,
- 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x64, 0x12, 0x22,
- 0x0a, 0x0c, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x18, 0x06,
- 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70,
- 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x75, 0x6f, 0x74, 0x61,
- 0x12, 0x20, 0x0a, 0x0b, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x75, 0x6f, 0x74, 0x65, 0x18,
- 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x75, 0x6f,
- 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x42, 0x61, 0x73, 0x69, 0x73,
- 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x42, 0x61, 0x73,
- 0x69, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x53, 0x74, 0x72, 0x61,
- 0x74, 0x65, 0x67, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65,
- 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61,
- 0x72, 0x6b, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x64, 0x18, 0x0c,
- 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x49, 0x64, 0x12, 0x1c,
- 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0e,
- 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0e,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x54, 0x72, 0x61, 0x64, 0x65,
- 0x44, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x64, 0x51, 0x75, 0x6f, 0x74,
- 0x61, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x55, 0x73, 0x65, 0x64, 0x51, 0x75, 0x6f,
- 0x74, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79, 0x18,
- 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79,
- 0x12, 0x26, 0x0a, 0x0e, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x41, 0x76, 0x67, 0x50, 0x72, 0x69,
- 0x63, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65,
- 0x41, 0x76, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x46, 0x75, 0x74, 0x75,
- 0x72, 0x65, 0x50, 0x4c, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x46, 0x75, 0x74, 0x75,
- 0x72, 0x65, 0x50, 0x4c, 0x12, 0x24, 0x0a, 0x0d, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64, 0x53, 0x70,
- 0x6f, 0x74, 0x51, 0x74, 0x79, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x50, 0x72, 0x69,
- 0x63, 0x65, 0x64, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x12, 0x2e, 0x0a, 0x12, 0x50, 0x72,
- 0x69, 0x63, 0x65, 0x64, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x4e, 0x6f, 0x54, 0x61, 0x78,
- 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64, 0x53, 0x70,
- 0x6f, 0x74, 0x51, 0x74, 0x79, 0x4e, 0x6f, 0x54, 0x61, 0x78, 0x12, 0x22, 0x0a, 0x0c, 0x53, 0x70,
- 0x6f, 0x74, 0x61, 0x76, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x01,
- 0x52, 0x0c, 0x53, 0x70, 0x6f, 0x74, 0x61, 0x76, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16,
- 0x0a, 0x06, 0x53, 0x70, 0x6f, 0x74, 0x50, 0x4c, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06,
- 0x53, 0x70, 0x6f, 0x74, 0x50, 0x4c, 0x12, 0x20, 0x0a, 0x0b, 0x4e, 0x65, 0x74, 0x45, 0x78, 0x70,
- 0x6f, 0x73, 0x75, 0x72, 0x65, 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x4e, 0x65, 0x74,
- 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x4e, 0x65, 0x74, 0x45,
- 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x52, 0x61, 0x74, 0x65, 0x18, 0x18, 0x20, 0x01, 0x28,
- 0x01, 0x52, 0x0f, 0x4e, 0x65, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x52, 0x61,
- 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x4c, 0x18, 0x19, 0x20,
- 0x01, 0x28, 0x01, 0x52, 0x07, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x50, 0x4c, 0x12, 0x1c, 0x0a, 0x09,
- 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x73, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52,
- 0x09, 0x4f, 0x70, 0x65, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75,
- 0x72, 0x42, 0x61, 0x73, 0x69, 0x73, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x43, 0x75,
- 0x72, 0x42, 0x61, 0x73, 0x69, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x42, 0x61, 0x73, 0x69, 0x73, 0x43,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x4c, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x42,
- 0x61, 0x73, 0x69, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x4c, 0x12, 0x24, 0x0a, 0x0d,
- 0x4e, 0x65, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x50, 0x4c, 0x18, 0x1d, 0x20,
- 0x01, 0x28, 0x01, 0x52, 0x0d, 0x4e, 0x65, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65,
- 0x50, 0x4c, 0x12, 0x24, 0x0a, 0x0d, 0x53, 0x70, 0x6f, 0x74, 0x55, 0x73, 0x65, 0x64, 0x51, 0x75,
- 0x6f, 0x74, 0x61, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x53, 0x70, 0x6f, 0x74, 0x55,
- 0x73, 0x65, 0x64, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x12, 0x24, 0x0a, 0x0d, 0x46, 0x75, 0x74, 0x75,
- 0x72, 0x65, 0x4f, 0x70, 0x65, 0x6e, 0x51, 0x74, 0x79, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x01, 0x52,
- 0x0d, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x4f, 0x70, 0x65, 0x6e, 0x51, 0x74, 0x79, 0x12, 0x2a,
- 0x0a, 0x10, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x4f, 0x70, 0x65, 0x6e, 0x41, 0x6d, 0x6f, 0x75,
- 0x6e, 0x74, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65,
- 0x4f, 0x70, 0x65, 0x6e, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26, 0x0a, 0x0e, 0x46, 0x75,
- 0x74, 0x75, 0x72, 0x65, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x51, 0x74, 0x79, 0x18, 0x21, 0x20, 0x01,
- 0x28, 0x01, 0x52, 0x0e, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x51,
- 0x74, 0x79, 0x12, 0x2c, 0x0a, 0x11, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6c, 0x6f, 0x73,
- 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x22, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x46,
- 0x75, 0x74, 0x75, 0x72, 0x65, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
- 0x12, 0x24, 0x0a, 0x0d, 0x53, 0x70, 0x6f, 0x74, 0x42, 0x75, 0x79, 0x41, 0x6d, 0x6f, 0x75, 0x6e,
- 0x74, 0x18, 0x23, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x53, 0x70, 0x6f, 0x74, 0x42, 0x75, 0x79,
- 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x70, 0x6f, 0x74, 0x42, 0x75,
- 0x79, 0x51, 0x74, 0x79, 0x18, 0x24, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x53, 0x70, 0x6f, 0x74,
- 0x42, 0x75, 0x79, 0x51, 0x74, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x53, 0x70, 0x6f, 0x74, 0x53, 0x65,
- 0x6c, 0x6c, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x25, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e,
- 0x53, 0x70, 0x6f, 0x74, 0x53, 0x65, 0x6c, 0x6c, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x20,
- 0x0a, 0x0b, 0x53, 0x70, 0x6f, 0x74, 0x53, 0x65, 0x6c, 0x6c, 0x51, 0x74, 0x79, 0x18, 0x26, 0x20,
- 0x01, 0x28, 0x01, 0x52, 0x0b, 0x53, 0x70, 0x6f, 0x74, 0x53, 0x65, 0x6c, 0x6c, 0x51, 0x74, 0x79,
- 0x12, 0x28, 0x0a, 0x0a, 0x55, 0x70, 0x44, 0x61, 0x74, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x27,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x0a,
- 0x55, 0x70, 0x44, 0x61, 0x74, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x41, 0x53,
- 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x28, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x41, 0x53, 0x4e, 0x61,
- 0x6d, 0x65, 0x22, 0xd1, 0x03, 0x0a, 0x0d, 0x45, 0x72, 0x6d, 0x63, 0x70, 0x41, 0x72, 0x65, 0x61,
- 0x53, 0x70, 0x6f, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x72, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x57, 0x72, 0x53, 0x74,
- 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x72, 0x65, 0x61,
- 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x41, 0x72,
- 0x65, 0x61, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x24, 0x0a, 0x0d, 0x4f, 0x72, 0x69, 0x42,
- 0x75, 0x79, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52,
- 0x0d, 0x4f, 0x72, 0x69, 0x42, 0x75, 0x79, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x12, 0x28,
- 0x0a, 0x0f, 0x4f, 0x72, 0x69, 0x42, 0x75, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64, 0x51, 0x74,
- 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x4f, 0x72, 0x69, 0x42, 0x75, 0x79, 0x50,
- 0x72, 0x69, 0x63, 0x65, 0x64, 0x51, 0x74, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x72, 0x69, 0x53,
- 0x65, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01,
- 0x52, 0x0e, 0x4f, 0x72, 0x69, 0x53, 0x65, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79,
- 0x12, 0x2a, 0x0a, 0x10, 0x4f, 0x72, 0x69, 0x53, 0x65, 0x6c, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65,
- 0x64, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x4f, 0x72, 0x69, 0x53,
- 0x65, 0x6c, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64, 0x51, 0x74, 0x79, 0x12, 0x1e, 0x0a, 0x0a,
- 0x42, 0x75, 0x79, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01,
- 0x52, 0x0a, 0x42, 0x75, 0x79, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c,
- 0x42, 0x75, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64, 0x51, 0x74, 0x79, 0x18, 0x08, 0x20, 0x01,
- 0x28, 0x01, 0x52, 0x0c, 0x42, 0x75, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64, 0x51, 0x74, 0x79,
- 0x12, 0x20, 0x0a, 0x0b, 0x53, 0x65, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x18,
- 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x53, 0x65, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x6e, 0x51,
- 0x74, 0x79, 0x12, 0x24, 0x0a, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64,
- 0x51, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x50,
- 0x72, 0x69, 0x63, 0x65, 0x64, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x54, 0x6f, 0x74, 0x61,
- 0x6c, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c,
- 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x12, 0x28, 0x0a, 0x0a,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x0a, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xf5, 0x06, 0x0a, 0x11, 0x45, 0x72, 0x6d, 0x63, 0x70,
- 0x41, 0x72, 0x65, 0x61, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x12, 0x24, 0x0a, 0x0d,
- 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x0d, 0x52, 0x0d, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x47, 0x6f, 0x6f, 0x64, 0x73,
- 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x72, 0x65, 0x61, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x41, 0x72, 0x65, 0x61, 0x55, 0x73, 0x65, 0x72,
- 0x49, 0x44, 0x12, 0x24, 0x0a, 0x0d, 0x4f, 0x72, 0x69, 0x42, 0x75, 0x79, 0x50, 0x6c, 0x61, 0x6e,
- 0x51, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x4f, 0x72, 0x69, 0x42, 0x75,
- 0x79, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x4f, 0x72, 0x69, 0x42,
- 0x75, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64, 0x51, 0x74, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x01, 0x52, 0x0f, 0x4f, 0x72, 0x69, 0x42, 0x75, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64, 0x51,
- 0x74, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x72, 0x69, 0x53, 0x65, 0x6c, 0x6c, 0x50, 0x6c, 0x61,
- 0x6e, 0x51, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x4f, 0x72, 0x69, 0x53,
- 0x65, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x12, 0x2a, 0x0a, 0x10, 0x4f, 0x72,
- 0x69, 0x53, 0x65, 0x6c, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64, 0x51, 0x74, 0x79, 0x18, 0x06,
- 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x4f, 0x72, 0x69, 0x53, 0x65, 0x6c, 0x6c, 0x50, 0x72, 0x69,
- 0x63, 0x65, 0x64, 0x51, 0x74, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x4f, 0x72, 0x69, 0x42, 0x75, 0x79,
- 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x0f, 0x4f, 0x72, 0x69, 0x42, 0x75, 0x79, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79,
- 0x12, 0x2a, 0x0a, 0x10, 0x4f, 0x72, 0x69, 0x53, 0x65, 0x6c, 0x6c, 0x46, 0x75, 0x74, 0x75, 0x72,
- 0x65, 0x51, 0x74, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x10, 0x4f, 0x72, 0x69, 0x53,
- 0x65, 0x6c, 0x6c, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79, 0x12, 0x1e, 0x0a, 0x0a,
- 0x42, 0x75, 0x79, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01,
- 0x52, 0x0a, 0x42, 0x75, 0x79, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c,
- 0x42, 0x75, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64, 0x51, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01,
- 0x28, 0x01, 0x52, 0x0c, 0x42, 0x75, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64, 0x51, 0x74, 0x79,
- 0x12, 0x20, 0x0a, 0x0b, 0x53, 0x65, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x18,
- 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x53, 0x65, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x6e, 0x51,
- 0x74, 0x79, 0x12, 0x24, 0x0a, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x64,
- 0x51, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x50,
- 0x72, 0x69, 0x63, 0x65, 0x64, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x42, 0x75, 0x79, 0x46,
- 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c,
- 0x42, 0x75, 0x79, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79, 0x12, 0x24, 0x0a, 0x0d,
- 0x53, 0x65, 0x6c, 0x6c, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79, 0x18, 0x0e, 0x20,
- 0x01, 0x28, 0x01, 0x52, 0x0d, 0x53, 0x65, 0x6c, 0x6c, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51,
- 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x53, 0x70, 0x6f, 0x74, 0x51,
- 0x74, 0x79, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x53,
- 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x46,
- 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e,
- 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79, 0x12, 0x24,
- 0x0a, 0x0d, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x18,
- 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78, 0x70, 0x6f,
- 0x73, 0x75, 0x72, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x48, 0x65, 0x64,
- 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x54,
- 0x6f, 0x74, 0x61, 0x6c, 0x48, 0x65, 0x64, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x2c,
- 0x0a, 0x11, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x4e, 0x65, 0x65, 0x64, 0x48, 0x65, 0x64, 0x67, 0x65,
- 0x51, 0x74, 0x79, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x54, 0x6f, 0x74, 0x61, 0x6c,
- 0x4e, 0x65, 0x65, 0x64, 0x48, 0x65, 0x64, 0x67, 0x65, 0x51, 0x74, 0x79, 0x12, 0x2e, 0x0a, 0x12,
- 0x4e, 0x65, 0x65, 0x64, 0x48, 0x65, 0x64, 0x67, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x6f, 0x75,
- 0x72, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12, 0x4e, 0x65, 0x65, 0x64, 0x48, 0x65,
- 0x64, 0x67, 0x65, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x6f, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e,
- 0x4e, 0x65, 0x65, 0x64, 0x48, 0x65, 0x64, 0x67, 0x65, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x15,
- 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x4e, 0x65, 0x65, 0x64, 0x48, 0x65, 0x64, 0x67, 0x65, 0x52,
- 0x61, 0x74, 0x69, 0x6f, 0x12, 0x28, 0x0a, 0x0a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69,
- 0x6d, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61,
- 0x74, 0x65, 0x52, 0x0a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x82,
- 0x03, 0x0a, 0x14, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x43, 0x66,
- 0x67, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73,
- 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49,
- 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70,
- 0x65, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x43, 0x75, 0x73, 0x74, 0x6f,
- 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x44, 0x12, 0x28, 0x0a, 0x0f, 0x4d, 0x61, 0x72,
- 0x67, 0x69, 0x6e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x0d, 0x52, 0x0f, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69,
- 0x74, 0x68, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x4d, 0x61, 0x72,
- 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11,
- 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75,
- 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x52, 0x65, 0x63, 0x6b, 0x6f, 0x6e, 0x4d, 0x61, 0x72, 0x67, 0x69,
- 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x52, 0x65,
- 0x63, 0x6b, 0x6f, 0x6e, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12,
- 0x28, 0x0a, 0x0f, 0x4c, 0x6f, 0x63, 0x6b, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c,
- 0x75, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x4c, 0x6f, 0x63, 0x6b, 0x4d, 0x61,
- 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x52, 0x65, 0x61,
- 0x6c, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x07, 0x20, 0x01,
- 0x28, 0x01, 0x52, 0x0f, 0x52, 0x65, 0x61, 0x6c, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61,
- 0x6c, 0x75, 0x65, 0x12, 0x30, 0x0a, 0x13, 0x52, 0x65, 0x61, 0x6c, 0x4d, 0x61, 0x72, 0x67, 0x69,
- 0x6e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d,
- 0x52, 0x13, 0x52, 0x65, 0x61, 0x6c, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x41, 0x6c, 0x67, 0x6f,
- 0x72, 0x69, 0x74, 0x68, 0x6d, 0x12, 0x1c, 0x0a, 0x09, 0x49, 0x73, 0x44, 0x65, 0x66, 0x61, 0x75,
- 0x6c, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x49, 0x73, 0x44, 0x65, 0x66, 0x61,
- 0x75, 0x6c, 0x74, 0x22, 0xca, 0x0e, 0x0a, 0x10, 0x45, 0x72, 0x6d, 0x63, 0x70, 0x32, 0x48, 0x65,
- 0x64, 0x67, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x48, 0x65, 0x64, 0x67,
- 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c,
- 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x44, 0x12, 0x24, 0x0a, 0x0d,
- 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0d, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4e,
- 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d,
- 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x48, 0x65, 0x64, 0x67,
- 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x48, 0x65,
- 0x64, 0x67, 0x65, 0x64, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a,
- 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2e, 0x0a, 0x0d, 0x50, 0x6c,
- 0x61, 0x6e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x0d, 0x50, 0x6c, 0x61,
- 0x6e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x44, 0x61, 0x74, 0x65, 0x12, 0x2a, 0x0a, 0x0b, 0x50, 0x6c,
- 0x61, 0x6e, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32,
- 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x0b, 0x50, 0x6c, 0x61, 0x6e, 0x45,
- 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x48, 0x65, 0x64, 0x67, 0x65, 0x52,
- 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x48, 0x65, 0x64, 0x67, 0x65,
- 0x52, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x54, 0x72, 0x61, 0x64, 0x65, 0x55, 0x73, 0x65,
- 0x72, 0x49, 0x44, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x54, 0x72, 0x61, 0x64, 0x65,
- 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x41, 0x72, 0x65, 0x61, 0x55, 0x73,
- 0x65, 0x72, 0x49, 0x44, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x41, 0x72, 0x65, 0x61,
- 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x2a, 0x0a, 0x10, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64,
- 0x49, 0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x10, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74,
- 0x75, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x53, 0x72, 0x63, 0x18, 0x0b,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x53, 0x72, 0x63, 0x12, 0x18,
- 0x0a, 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x07, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61,
- 0x72, 0x6b, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b,
- 0x12, 0x28, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x0a,
- 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x41, 0x75,
- 0x64, 0x69, 0x74, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x0f, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0e, 0x41, 0x75, 0x64, 0x69, 0x74, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61,
- 0x74, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x41, 0x75, 0x64, 0x69, 0x74, 0x49, 0x44, 0x18, 0x10, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x07, 0x41, 0x75, 0x64, 0x69, 0x74, 0x49, 0x44, 0x12, 0x1a, 0x0a, 0x08,
- 0x41, 0x75, 0x64, 0x69, 0x74, 0x53, 0x72, 0x63, 0x18, 0x11, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,
- 0x41, 0x75, 0x64, 0x69, 0x74, 0x53, 0x72, 0x63, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x75, 0x64, 0x69,
- 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x41, 0x75, 0x64,
- 0x69, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x41, 0x75, 0x64, 0x69, 0x74, 0x52,
- 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x41, 0x75, 0x64,
- 0x69, 0x74, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x28, 0x0a, 0x0f, 0x44, 0x65, 0x6c, 0x69,
- 0x76, 0x65, 0x72, 0x79, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x18, 0x14, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x0f, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x47, 0x6f, 0x6f, 0x64, 0x73,
- 0x49, 0x44, 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x72, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
- 0x49, 0x44, 0x18, 0x15, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x57, 0x72, 0x53, 0x74, 0x61, 0x6e,
- 0x64, 0x61, 0x72, 0x64, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x56, 0x61, 0x74, 0x52, 0x61, 0x74,
- 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x56, 0x61, 0x74, 0x52, 0x61, 0x74, 0x65,
- 0x12, 0x1a, 0x0a, 0x08, 0x48, 0x65, 0x64, 0x67, 0x65, 0x51, 0x74, 0x79, 0x18, 0x17, 0x20, 0x01,
- 0x28, 0x01, 0x52, 0x08, 0x48, 0x65, 0x64, 0x67, 0x65, 0x51, 0x74, 0x79, 0x12, 0x20, 0x0a, 0x0b,
- 0x48, 0x65, 0x64, 0x67, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x18, 0x20, 0x01, 0x28,
- 0x01, 0x52, 0x0b, 0x48, 0x65, 0x64, 0x67, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x28,
- 0x0a, 0x0f, 0x48, 0x65, 0x64, 0x67, 0x65, 0x52, 0x65, 0x73, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e,
- 0x74, 0x18, 0x19, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x48, 0x65, 0x64, 0x67, 0x65, 0x52, 0x65,
- 0x73, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x13, 0x48, 0x65, 0x64, 0x67,
- 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18,
- 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x13, 0x48, 0x65, 0x64, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x74,
- 0x72, 0x61, 0x63, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x72,
- 0x69, 0x41, 0x76, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x01, 0x52,
- 0x0b, 0x4f, 0x72, 0x69, 0x41, 0x76, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06,
- 0x45, 0x78, 0x65, 0x51, 0x74, 0x79, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x06, 0x45, 0x78,
- 0x65, 0x51, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x45, 0x78, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e,
- 0x74, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x45, 0x78, 0x65, 0x41, 0x6d, 0x6f, 0x75,
- 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x45, 0x78, 0x65, 0x52, 0x65, 0x73, 0x74, 0x41, 0x6d, 0x6f,
- 0x75, 0x6e, 0x74, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x45, 0x78, 0x65, 0x52, 0x65,
- 0x73, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x45, 0x78, 0x65, 0x41,
- 0x76, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x45,
- 0x78, 0x65, 0x41, 0x76, 0x67, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x45, 0x78,
- 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61, 0x63, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18,
- 0x20, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x45, 0x78, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x61,
- 0x63, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75, 0x72, 0x50,
- 0x72, 0x69, 0x63, 0x65, 0x18, 0x21, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x43, 0x75, 0x72, 0x50,
- 0x72, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x55, 0x6e, 0x45, 0x78, 0x65, 0x51, 0x74, 0x79,
- 0x18, 0x22, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x55, 0x6e, 0x45, 0x78, 0x65, 0x51, 0x74, 0x79,
- 0x12, 0x20, 0x0a, 0x0b, 0x53, 0x70, 0x6f, 0x74, 0x48, 0x65, 0x64, 0x67, 0x65, 0x50, 0x4c, 0x18,
- 0x23, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x53, 0x70, 0x6f, 0x74, 0x48, 0x65, 0x64, 0x67, 0x65,
- 0x50, 0x4c, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x70, 0x6f, 0x74, 0x50, 0x4c, 0x18, 0x24, 0x20, 0x01,
- 0x28, 0x01, 0x52, 0x06, 0x53, 0x70, 0x6f, 0x74, 0x50, 0x4c, 0x12, 0x24, 0x0a, 0x0d, 0x46, 0x75,
- 0x74, 0x75, 0x72, 0x65, 0x48, 0x65, 0x64, 0x67, 0x65, 0x50, 0x4c, 0x18, 0x25, 0x20, 0x01, 0x28,
- 0x01, 0x52, 0x0d, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x48, 0x65, 0x64, 0x67, 0x65, 0x50, 0x4c,
- 0x12, 0x1a, 0x0a, 0x08, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x50, 0x4c, 0x18, 0x26, 0x20, 0x01,
- 0x28, 0x01, 0x52, 0x08, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x50, 0x4c, 0x12, 0x1e, 0x0a, 0x0a,
- 0x48, 0x65, 0x64, 0x67, 0x65, 0x53, 0x75, 0x6d, 0x50, 0x4c, 0x18, 0x27, 0x20, 0x01, 0x28, 0x01,
- 0x52, 0x0a, 0x48, 0x65, 0x64, 0x67, 0x65, 0x53, 0x75, 0x6d, 0x50, 0x4c, 0x12, 0x20, 0x0a, 0x0b,
- 0x53, 0x70, 0x6f, 0x74, 0x54, 0x72, 0x61, 0x64, 0x65, 0x50, 0x4c, 0x18, 0x28, 0x20, 0x01, 0x28,
- 0x01, 0x52, 0x0b, 0x53, 0x70, 0x6f, 0x74, 0x54, 0x72, 0x61, 0x64, 0x65, 0x50, 0x4c, 0x12, 0x14,
- 0x0a, 0x05, 0x56, 0x61, 0x74, 0x50, 0x4c, 0x18, 0x29, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x56,
- 0x61, 0x74, 0x50, 0x4c, 0x12, 0x1a, 0x0a, 0x08, 0x53, 0x75, 0x6d, 0x4f, 0x62, 0x73, 0x50, 0x4c,
- 0x18, 0x2a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x53, 0x75, 0x6d, 0x4f, 0x62, 0x73, 0x50, 0x4c,
- 0x12, 0x26, 0x0a, 0x0e, 0x53, 0x70, 0x6f, 0x74, 0x42, 0x6f, 0x6f, 0x6b, 0x41, 0x6d, 0x6f, 0x75,
- 0x6e, 0x74, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x53, 0x70, 0x6f, 0x74, 0x42, 0x6f,
- 0x6f, 0x6b, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75, 0x72, 0x53,
- 0x74, 0x6f, 0x63, 0x6b, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x43, 0x75, 0x72, 0x53,
- 0x74, 0x6f, 0x63, 0x6b, 0x12, 0x22, 0x0a, 0x07, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x18,
- 0x2d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52,
- 0x07, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x45, 0x6e, 0x64, 0x54,
- 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
- 0x45, 0x6e, 0x64, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x28, 0x0a, 0x0a,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x0a, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x4f, 0x72, 0x69, 0x53, 0x70, 0x6f,
- 0x74, 0x48, 0x65, 0x64, 0x67, 0x65, 0x50, 0x4c, 0x18, 0x30, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e,
- 0x4f, 0x72, 0x69, 0x53, 0x70, 0x6f, 0x74, 0x48, 0x65, 0x64, 0x67, 0x65, 0x50, 0x4c, 0x12, 0x2a,
- 0x0a, 0x10, 0x4f, 0x72, 0x69, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x48, 0x65, 0x64, 0x67, 0x65,
- 0x50, 0x4c, 0x18, 0x31, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x4f, 0x72, 0x69, 0x46, 0x75, 0x74,
- 0x75, 0x72, 0x65, 0x48, 0x65, 0x64, 0x67, 0x65, 0x50, 0x4c, 0x12, 0x1c, 0x0a, 0x09, 0x4f, 0x72,
- 0x69, 0x53, 0x70, 0x6f, 0x74, 0x50, 0x4c, 0x18, 0x32, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x4f,
- 0x72, 0x69, 0x53, 0x70, 0x6f, 0x74, 0x50, 0x4c, 0x12, 0x20, 0x0a, 0x0b, 0x4f, 0x72, 0x69, 0x46,
- 0x75, 0x74, 0x75, 0x72, 0x65, 0x50, 0x4c, 0x18, 0x33, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x4f,
- 0x72, 0x69, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x50, 0x4c, 0x12, 0x20, 0x0a, 0x0b, 0x53, 0x70,
- 0x6f, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x50, 0x4c, 0x18, 0x34, 0x20, 0x01, 0x28, 0x01, 0x52,
- 0x0b, 0x53, 0x70, 0x6f, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x50, 0x4c, 0x12, 0x24, 0x0a, 0x0d,
- 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x50, 0x4c, 0x18, 0x35, 0x20,
- 0x01, 0x28, 0x01, 0x52, 0x0d, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x46, 0x6c, 0x6f, 0x61, 0x74,
- 0x50, 0x4c, 0x12, 0x1c, 0x0a, 0x09, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x18,
- 0x36, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64,
- 0x22, 0xa1, 0x01, 0x0a, 0x13, 0x45, 0x72, 0x6d, 0x63, 0x70, 0x32, 0x48, 0x65, 0x64, 0x67, 0x65,
- 0x64, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x78, 0x74, 0x12, 0x28, 0x0a, 0x04, 0x69, 0x74, 0x65, 0x6d,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x72, 0x6d, 0x63,
- 0x70, 0x32, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x04, 0x69, 0x74,
- 0x65, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
- 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x77, 0x72, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x77, 0x72,
- 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06,
- 0x75, 0x6e, 0x69, 0x74, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x75, 0x6e,
- 0x69, 0x74, 0x69, 0x64, 0x22, 0x9b, 0x04, 0x0a, 0x13, 0x45, 0x72, 0x6d, 0x63, 0x70, 0x32, 0x48,
- 0x49, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0c,
- 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x0c, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x44,
- 0x12, 0x24, 0x0a, 0x0d, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49,
- 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x47,
- 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x12, 0x28, 0x0a, 0x0f, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65,
- 0x72, 0x79, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x0f, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44,
- 0x12, 0x22, 0x0a, 0x0c, 0x57, 0x72, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x49, 0x44,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c, 0x57, 0x72, 0x73, 0x74, 0x61, 0x6e, 0x64, 0x61,
- 0x72, 0x64, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x56, 0x61, 0x74, 0x52, 0x61, 0x74, 0x65, 0x18,
- 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x56, 0x61, 0x74, 0x52, 0x61, 0x74, 0x65, 0x12, 0x2a,
- 0x0a, 0x10, 0x53, 0x70, 0x6f, 0x74, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x52, 0x61, 0x74,
- 0x69, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x53, 0x70, 0x6f, 0x74, 0x43, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x74, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x22, 0x0a, 0x0c, 0x55, 0x6e,
- 0x65, 0x78, 0x65, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x01,
- 0x52, 0x0c, 0x55, 0x6e, 0x65, 0x78, 0x65, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x12, 0x24,
- 0x0a, 0x0d, 0x55, 0x6e, 0x65, 0x78, 0x65, 0x48, 0x65, 0x64, 0x67, 0x65, 0x51, 0x74, 0x79, 0x18,
- 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x55, 0x6e, 0x65, 0x78, 0x65, 0x48, 0x65, 0x64, 0x67,
- 0x65, 0x51, 0x74, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x48, 0x65,
- 0x64, 0x67, 0x65, 0x51, 0x74, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x46, 0x75,
- 0x74, 0x75, 0x72, 0x65, 0x48, 0x65, 0x64, 0x67, 0x65, 0x51, 0x74, 0x79, 0x12, 0x1e, 0x0a, 0x0a,
- 0x48, 0x49, 0x45, 0x78, 0x70, 0x73, 0x6f, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01,
- 0x52, 0x0a, 0x48, 0x49, 0x45, 0x78, 0x70, 0x73, 0x6f, 0x75, 0x72, 0x65, 0x12, 0x20, 0x0a, 0x0b,
- 0x54, 0x72, 0x61, 0x64, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x0b, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x0b, 0x54, 0x72, 0x61, 0x64, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1e,
- 0x0a, 0x0a, 0x41, 0x72, 0x65, 0x61, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x0c, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x0a, 0x41, 0x72, 0x65, 0x61, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x28,
- 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x0a, 0x43, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x0a, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70,
- 0x62, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x0a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69,
- 0x6d, 0x65, 0x22, 0x7d, 0x0a, 0x16, 0x45, 0x72, 0x6d, 0x63, 0x70, 0x32, 0x48, 0x49, 0x4d, 0x69,
- 0x64, 0x64, 0x6c, 0x65, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x45, 0x78, 0x74, 0x12, 0x39, 0x0a, 0x0b,
- 0x6d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x72, 0x6d, 0x63, 0x70, 0x32, 0x48, 0x49, 0x4d,
- 0x69, 0x64, 0x64, 0x6c, 0x65, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x52, 0x0b, 0x6d, 0x69, 0x64, 0x64,
- 0x6c, 0x65, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x6d, 0x69, 0x64, 0x64, 0x6c,
- 0x65, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x0f, 0x6d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x6e, 0x61, 0x6d,
- 0x65, 0x22, 0x9d, 0x01, 0x0a, 0x14, 0x45, 0x72, 0x6d, 0x63, 0x70, 0x32, 0x48, 0x65, 0x64, 0x67,
- 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x3d, 0x0a, 0x0d, 0x68, 0x65,
- 0x64, 0x67, 0x65, 0x64, 0x69, 0x74, 0x65, 0x6d, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x72, 0x6d, 0x63, 0x70, 0x32, 0x48, 0x65, 0x64,
- 0x67, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x78, 0x74, 0x52, 0x0d, 0x68, 0x65, 0x64, 0x67,
- 0x65, 0x64, 0x69, 0x74, 0x65, 0x6d, 0x65, 0x78, 0x74, 0x12, 0x46, 0x0a, 0x10, 0x68, 0x69, 0x6d,
- 0x69, 0x64, 0x64, 0x6c, 0x65, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x65, 0x78, 0x74, 0x18, 0x02, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x72, 0x6d, 0x63, 0x70, 0x32, 0x48,
- 0x49, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x45, 0x78, 0x74, 0x52,
- 0x10, 0x68, 0x69, 0x6d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x65, 0x78,
- 0x74, 0x22, 0x98, 0x07, 0x0a, 0x12, 0x45, 0x72, 0x6d, 0x63, 0x70, 0x32, 0x41, 0x72, 0x65, 0x61,
- 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x4d, 0x69, 0x64, 0x64,
- 0x6c, 0x65, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x0d, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x12, 0x1e,
- 0x0a, 0x0a, 0x41, 0x72, 0x65, 0x61, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x0a, 0x41, 0x72, 0x65, 0x61, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x18,
- 0x0a, 0x07, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52,
- 0x07, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x48, 0x65, 0x64, 0x67,
- 0x65, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c,
- 0x48, 0x65, 0x64, 0x67, 0x65, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c,
- 0x48, 0x65, 0x64, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x01, 0x52, 0x0c, 0x48, 0x65, 0x64, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79,
- 0x12, 0x1c, 0x0a, 0x09, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x01, 0x52, 0x09, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79, 0x12, 0x22,
- 0x0a, 0x0c, 0x53, 0x70, 0x6f, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x53, 0x70, 0x6f, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75,
- 0x72, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78, 0x70, 0x6f, 0x73,
- 0x75, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x54, 0x6f, 0x74, 0x61, 0x6c,
- 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x53, 0x70, 0x52, 0x61,
- 0x74, 0x69, 0x6f, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x53, 0x70, 0x52, 0x61, 0x74,
- 0x69, 0x6f, 0x12, 0x2e, 0x0a, 0x12, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x53, 0x70, 0x6f, 0x74,
- 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x12,
- 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x53, 0x70, 0x6f, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75,
- 0x72, 0x65, 0x12, 0x30, 0x0a, 0x13, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x54, 0x6f, 0x74, 0x61,
- 0x6c, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52,
- 0x13, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78, 0x70, 0x6f,
- 0x73, 0x75, 0x72, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x53, 0x70,
- 0x52, 0x61, 0x74, 0x69, 0x6f, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x48, 0x65, 0x64,
- 0x67, 0x65, 0x64, 0x53, 0x70, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x12, 0x1e, 0x0a, 0x0a, 0x4f, 0x72,
- 0x69, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a,
- 0x4f, 0x72, 0x69, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x4f, 0x72,
- 0x69, 0x48, 0x65, 0x64, 0x67, 0x65, 0x53, 0x70, 0x6f, 0x74, 0x51, 0x74, 0x79, 0x18, 0x0e, 0x20,
- 0x01, 0x28, 0x01, 0x52, 0x0f, 0x4f, 0x72, 0x69, 0x48, 0x65, 0x64, 0x67, 0x65, 0x53, 0x70, 0x6f,
- 0x74, 0x51, 0x74, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x4f, 0x72, 0x69, 0x48, 0x65, 0x64, 0x67, 0x65,
- 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x4f,
- 0x72, 0x69, 0x48, 0x65, 0x64, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x6e, 0x51, 0x74, 0x79, 0x12, 0x22,
- 0x0a, 0x0c, 0x4f, 0x72, 0x69, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51, 0x74, 0x79, 0x18, 0x10,
- 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x4f, 0x72, 0x69, 0x46, 0x75, 0x74, 0x75, 0x72, 0x65, 0x51,
- 0x74, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x4f, 0x72, 0x69, 0x53, 0x70, 0x6f, 0x74, 0x45, 0x78, 0x70,
- 0x6f, 0x73, 0x75, 0x72, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x4f, 0x72, 0x69,
- 0x53, 0x70, 0x6f, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x12, 0x2a, 0x0a, 0x10,
- 0x4f, 0x72, 0x69, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65,
- 0x18, 0x12, 0x20, 0x01, 0x28, 0x01, 0x52, 0x10, 0x4f, 0x72, 0x69, 0x54, 0x6f, 0x74, 0x61, 0x6c,
- 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x12, 0x34, 0x0a, 0x15, 0x4f, 0x72, 0x69, 0x48,
- 0x65, 0x64, 0x67, 0x65, 0x64, 0x53, 0x70, 0x6f, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72,
- 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01, 0x52, 0x15, 0x4f, 0x72, 0x69, 0x48, 0x65, 0x64, 0x67,
- 0x65, 0x64, 0x53, 0x70, 0x6f, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x12, 0x36,
- 0x0a, 0x16, 0x4f, 0x72, 0x69, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x54, 0x6f, 0x74, 0x61, 0x6c,
- 0x45, 0x78, 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x16,
- 0x4f, 0x72, 0x69, 0x48, 0x65, 0x64, 0x67, 0x65, 0x64, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x45, 0x78,
- 0x70, 0x6f, 0x73, 0x75, 0x72, 0x65, 0x12, 0x28, 0x0a, 0x0a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x54, 0x69, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e,
- 0x44, 0x61, 0x74, 0x65, 0x52, 0x0a, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
- 0x12, 0x28, 0x0a, 0x0f, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x4e,
- 0x61, 0x6d, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x4d, 0x69, 0x64, 0x64, 0x6c,
- 0x65, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x47, 0x6f,
- 0x6f, 0x64, 0x73, 0x55, 0x6e, 0x69, 0x74, 0x49, 0x44, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0d, 0x52,
- 0x0b, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x55, 0x6e, 0x69, 0x74, 0x49, 0x44, 0x22, 0xd9, 0x08, 0x0a,
- 0x13, 0x54, 0x72, 0x61, 0x64, 0x65, 0x48, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61,
- 0x69, 0x6c, 0x45, 0x78, 0x12, 0x18, 0x0a, 0x07, 0x54, 0x72, 0x61, 0x64, 0x65, 0x49, 0x44, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x54, 0x72, 0x61, 0x64, 0x65, 0x49, 0x44, 0x12, 0x1c,
- 0x0a, 0x09, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x53, 0x65, 0x6c, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x0d, 0x52, 0x09, 0x42, 0x75, 0x79, 0x4f, 0x72, 0x53, 0x65, 0x6c, 0x6c, 0x12, 0x1c, 0x0a, 0x09,
- 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x4d, 0x61,
- 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x08, 0x4d, 0x61,
- 0x72, 0x6b, 0x65, 0x74, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49,
- 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44,
- 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0d,
- 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63,
- 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x0b, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55,
- 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x4d, 0x61, 0x74,
- 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x26, 0x0a, 0x0e, 0x4d, 0x61, 0x74, 0x63,
- 0x68, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x0e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44,
- 0x12, 0x18, 0x0a, 0x07, 0x4f, 0x70, 0x65, 0x6e, 0x51, 0x74, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x07, 0x4f, 0x70, 0x65, 0x6e, 0x51, 0x74, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x54, 0x72,
- 0x61, 0x64, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x01, 0x52,
- 0x0b, 0x54, 0x72, 0x61, 0x64, 0x65, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09,
- 0x4f, 0x70, 0x65, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52,
- 0x09, 0x4f, 0x70, 0x65, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x48, 0x6f,
- 0x6c, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x48,
- 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x51, 0x74, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x48, 0x6f, 0x6c, 0x64,
- 0x65, 0x72, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c,
- 0x48, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b,
- 0x48, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28,
- 0x01, 0x52, 0x0b, 0x48, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x1c,
- 0x0a, 0x09, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x51, 0x74, 0x79, 0x18, 0x10, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x09, 0x46, 0x72, 0x65, 0x65, 0x7a, 0x65, 0x51, 0x74, 0x79, 0x12, 0x20, 0x0a, 0x0b,
- 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x51, 0x74, 0x79, 0x18, 0x11, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x0b, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x51, 0x74, 0x79, 0x12, 0x1a,
- 0x0a, 0x08, 0x48, 0x6f, 0x6c, 0x64, 0x44, 0x61, 0x79, 0x73, 0x18, 0x12, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x08, 0x48, 0x6f, 0x6c, 0x64, 0x44, 0x61, 0x79, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x50, 0x61,
- 0x79, 0x65, 0x64, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x18, 0x13, 0x20, 0x01, 0x28, 0x01,
- 0x52, 0x0c, 0x50, 0x61, 0x79, 0x65, 0x64, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x12, 0x26,
- 0x0a, 0x0e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74,
- 0x18, 0x14, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x52, 0x65, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x44,
- 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x4c, 0x61, 0x74, 0x65, 0x46, 0x65,
- 0x65, 0x44, 0x61, 0x79, 0x73, 0x18, 0x15, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x4c, 0x61, 0x74,
- 0x65, 0x46, 0x65, 0x65, 0x44, 0x61, 0x79, 0x73, 0x12, 0x2a, 0x0a, 0x10, 0x4c, 0x61, 0x74, 0x65,
- 0x46, 0x65, 0x65, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, 0x16, 0x20, 0x01,
- 0x28, 0x0d, 0x52, 0x10, 0x4c, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x41, 0x6c, 0x67, 0x6f, 0x72,
- 0x69, 0x74, 0x68, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x4c, 0x61, 0x74, 0x65, 0x46, 0x65, 0x65, 0x56,
- 0x61, 0x6c, 0x75, 0x65, 0x18, 0x17, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0c, 0x4c, 0x61, 0x74, 0x65,
- 0x46, 0x65, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x61, 0x6c, 0x6c,
- 0x41, 0x74, 0x65, 0x46, 0x65, 0x65, 0x18, 0x18, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0a, 0x43, 0x61,
- 0x6c, 0x6c, 0x41, 0x74, 0x65, 0x46, 0x65, 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6d,
- 0x70, 0x74, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x52, 0x61, 0x74, 0x65, 0x18, 0x19, 0x20,
- 0x01, 0x28, 0x01, 0x52, 0x11, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x44, 0x65, 0x70, 0x6f, 0x73,
- 0x69, 0x74, 0x52, 0x61, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x43, 0x75, 0x74, 0x44, 0x65, 0x70,
- 0x6f, 0x73, 0x69, 0x74, 0x52, 0x61, 0x74, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e,
- 0x43, 0x75, 0x74, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x52, 0x61, 0x74, 0x65, 0x12, 0x20,
- 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x1b, 0x20,
- 0x01, 0x28, 0x01, 0x52, 0x0b, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x50, 0x72, 0x69, 0x63, 0x65,
- 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x75, 0x74, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x1c, 0x20, 0x01,
- 0x28, 0x01, 0x52, 0x08, 0x43, 0x75, 0x74, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07,
- 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x50, 0x4c, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x43,
- 0x6c, 0x6f, 0x73, 0x65, 0x50, 0x4c, 0x12, 0x18, 0x0a, 0x07, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x50,
- 0x4c, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x01, 0x52, 0x07, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x50, 0x4c,
- 0x12, 0x20, 0x0a, 0x0b, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x52, 0x61, 0x74, 0x65, 0x18,
- 0x1f, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x52, 0x61,
- 0x74, 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x61, 0x62, 0x6c, 0x65,
- 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x18, 0x20, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x52,
- 0x65, 0x66, 0x75, 0x6e, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74,
- 0x12, 0x26, 0x0a, 0x09, 0x54, 0x72, 0x61, 0x64, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x22, 0x20,
- 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x09, 0x54,
- 0x72, 0x61, 0x64, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x81, 0x03, 0x0a, 0x18, 0x52, 0x65, 0x64,
- 0x69, 0x73, 0x54, 0x72, 0x61, 0x64, 0x65, 0x48, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74,
- 0x61, 0x69, 0x6c, 0x45, 0x78, 0x12, 0x37, 0x0a, 0x0a, 0x54, 0x48, 0x44, 0x65, 0x74, 0x61, 0x69,
- 0x6c, 0x45, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x62, 0x2e, 0x54,
- 0x72, 0x61, 0x64, 0x65, 0x48, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
- 0x45, 0x78, 0x52, 0x0a, 0x54, 0x48, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x45, 0x78, 0x12, 0x18,
- 0x0a, 0x07, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x50, 0x4c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52,
- 0x07, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x50, 0x4c, 0x12, 0x20, 0x0a, 0x0b, 0x44, 0x65, 0x70, 0x6f,
- 0x73, 0x69, 0x74, 0x52, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x44,
- 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x52, 0x61, 0x74, 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x52, 0x65,
- 0x66, 0x75, 0x6e, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x52, 0x65, 0x66, 0x75, 0x6e, 0x64, 0x61, 0x62, 0x6c,
- 0x65, 0x44, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x47, 0x6f, 0x6f, 0x64,
- 0x73, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x47, 0x6f, 0x6f,
- 0x64, 0x73, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x4e,
- 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x47, 0x6f, 0x6f, 0x64, 0x73,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x55, 0x6e, 0x69,
- 0x74, 0x49, 0x44, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x47, 0x6f, 0x6f, 0x64, 0x73,
- 0x55, 0x6e, 0x69, 0x74, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x67, 0x72, 0x65, 0x65, 0x55,
- 0x6e, 0x69, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x41, 0x67, 0x72, 0x65, 0x65,
- 0x55, 0x6e, 0x69, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x44, 0x65, 0x63, 0x69, 0x6d, 0x61, 0x6c, 0x50,
- 0x6c, 0x61, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x44, 0x65, 0x63, 0x69,
- 0x6d, 0x61, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x51, 0x75, 0x6f, 0x74,
- 0x65, 0x4d, 0x69, 0x6e, 0x55, 0x6e, 0x69, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c,
- 0x51, 0x75, 0x6f, 0x74, 0x65, 0x4d, 0x69, 0x6e, 0x55, 0x6e, 0x69, 0x74, 0x22, 0xd6, 0x02, 0x0a,
- 0x10, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x53, 0x74, 0x72, 0x75, 0x63,
- 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12,
- 0x18, 0x0a, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d,
- 0x52, 0x07, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x49, 0x44, 0x12, 0x28, 0x0a, 0x0f, 0x4d, 0x61, 0x72,
- 0x67, 0x69, 0x6e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x0d, 0x52, 0x0f, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69,
- 0x74, 0x68, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x4d, 0x61, 0x72,
- 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11,
- 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75,
- 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x52, 0x65, 0x63, 0x6b, 0x6f, 0x6e, 0x4d, 0x61, 0x72, 0x67, 0x69,
- 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x11, 0x52, 0x65,
- 0x63, 0x6b, 0x6f, 0x6e, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12,
- 0x28, 0x0a, 0x0f, 0x4c, 0x6f, 0x63, 0x6b, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c,
- 0x75, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x4c, 0x6f, 0x63, 0x6b, 0x4d, 0x61,
- 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x52, 0x65, 0x61,
- 0x6c, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x07, 0x20, 0x01,
- 0x28, 0x01, 0x52, 0x0f, 0x52, 0x65, 0x61, 0x6c, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x56, 0x61,
- 0x6c, 0x75, 0x65, 0x12, 0x30, 0x0a, 0x13, 0x52, 0x65, 0x61, 0x6c, 0x4d, 0x61, 0x72, 0x67, 0x69,
- 0x6e, 0x41, 0x6c, 0x67, 0x6f, 0x72, 0x69, 0x74, 0x68, 0x6d, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0d,
- 0x52, 0x13, 0x52, 0x65, 0x61, 0x6c, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x41, 0x6c, 0x67, 0x6f,
- 0x72, 0x69, 0x74, 0x68, 0x6d,
- }
- var (
- file_mtp2_proto_rawDescOnce sync.Once
- file_mtp2_proto_rawDescData = file_mtp2_proto_rawDesc
- )
- func file_mtp2_proto_rawDescGZIP() []byte {
- file_mtp2_proto_rawDescOnce.Do(func() {
- file_mtp2_proto_rawDescData = protoimpl.X.CompressGZIP(file_mtp2_proto_rawDescData)
- })
- return file_mtp2_proto_rawDescData
- }
- var file_mtp2_proto_msgTypes = make([]protoimpl.MessageInfo, 16)
- var file_mtp2_proto_goTypes = []interface{}{
- (*TradeRule)(nil), // 0: pb.TradeRule
- (*TradeRuleInfoStruct)(nil), // 1: pb.TradeRuleInfoStruct
- (*Date)(nil), // 2: pb.Date
- (*Erms2ArbitrageStrategy)(nil), // 3: pb.Erms2ArbitrageStrategy
- (*ErmcpAreaSpot)(nil), // 4: pb.ErmcpAreaSpot
- (*ErmcpAreaExposure)(nil), // 5: pb.ErmcpAreaExposure
- (*GoodsMarginCfgStruct)(nil), // 6: pb.GoodsMarginCfgStruct
- (*Ermcp2HedgedItem)(nil), // 7: pb.Ermcp2HedgedItem
- (*Ermcp2HedgedItemExt)(nil), // 8: pb.Ermcp2HedgedItemExt
- (*Ermcp2HIMiddleGoods)(nil), // 9: pb.Ermcp2HIMiddleGoods
- (*Ermcp2HIMiddleGoodsExt)(nil), // 10: pb.Ermcp2HIMiddleGoodsExt
- (*Ermcp2HedgedItemInfo)(nil), // 11: pb.Ermcp2HedgedItemInfo
- (*Ermcp2AreaExposure)(nil), // 12: pb.Ermcp2AreaExposure
- (*TradeHolderDetailEx)(nil), // 13: pb.TradeHolderDetailEx
- (*RedisTradeHolderDetailEx)(nil), // 14: pb.RedisTradeHolderDetailEx
- (*MarginInfoStruct)(nil), // 15: pb.MarginInfoStruct
- }
- var file_mtp2_proto_depIdxs = []int32{
- 0, // 0: pb.TradeRuleInfoStruct.TradeRules:type_name -> pb.TradeRule
- 2, // 1: pb.Erms2ArbitrageStrategy.UpDatetime:type_name -> pb.Date
- 2, // 2: pb.ErmcpAreaSpot.UpdateTime:type_name -> pb.Date
- 2, // 3: pb.ErmcpAreaExposure.UpdateTime:type_name -> pb.Date
- 2, // 4: pb.Ermcp2HedgedItem.PlanStartDate:type_name -> pb.Date
- 2, // 5: pb.Ermcp2HedgedItem.PlanEndDate:type_name -> pb.Date
- 2, // 6: pb.Ermcp2HedgedItem.CreateTime:type_name -> pb.Date
- 2, // 7: pb.Ermcp2HedgedItem.EndDate:type_name -> pb.Date
- 2, // 8: pb.Ermcp2HedgedItem.UpdateTime:type_name -> pb.Date
- 7, // 9: pb.Ermcp2HedgedItemExt.item:type_name -> pb.Ermcp2HedgedItem
- 2, // 10: pb.Ermcp2HIMiddleGoods.CreateTime:type_name -> pb.Date
- 2, // 11: pb.Ermcp2HIMiddleGoods.UpdateTime:type_name -> pb.Date
- 9, // 12: pb.Ermcp2HIMiddleGoodsExt.middlegoods:type_name -> pb.Ermcp2HIMiddleGoods
- 8, // 13: pb.Ermcp2HedgedItemInfo.hedgeditemext:type_name -> pb.Ermcp2HedgedItemExt
- 10, // 14: pb.Ermcp2HedgedItemInfo.himiddlegoodsext:type_name -> pb.Ermcp2HIMiddleGoodsExt
- 2, // 15: pb.Ermcp2AreaExposure.UpdateTime:type_name -> pb.Date
- 2, // 16: pb.TradeHolderDetailEx.TradeTime:type_name -> pb.Date
- 13, // 17: pb.RedisTradeHolderDetailEx.THDetailEx:type_name -> pb.TradeHolderDetailEx
- 18, // [18:18] is the sub-list for method output_type
- 18, // [18:18] is the sub-list for method input_type
- 18, // [18:18] is the sub-list for extension type_name
- 18, // [18:18] is the sub-list for extension extendee
- 0, // [0:18] is the sub-list for field type_name
- }
- func init() { file_mtp2_proto_init() }
- func file_mtp2_proto_init() {
- if File_mtp2_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_mtp2_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*TradeRule); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*TradeRuleInfoStruct); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Date); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Erms2ArbitrageStrategy); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ErmcpAreaSpot); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ErmcpAreaExposure); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GoodsMarginCfgStruct); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Ermcp2HedgedItem); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Ermcp2HedgedItemExt); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Ermcp2HIMiddleGoods); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Ermcp2HIMiddleGoodsExt); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Ermcp2HedgedItemInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Ermcp2AreaExposure); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*TradeHolderDetailEx); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*RedisTradeHolderDetailEx); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_mtp2_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MarginInfoStruct); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_mtp2_proto_rawDesc,
- NumEnums: 0,
- NumMessages: 16,
- NumExtensions: 0,
- NumServices: 0,
- },
- GoTypes: file_mtp2_proto_goTypes,
- DependencyIndexes: file_mtp2_proto_depIdxs,
- MessageInfos: file_mtp2_proto_msgTypes,
- }.Build()
- File_mtp2_proto = out.File
- file_mtp2_proto_rawDesc = nil
- file_mtp2_proto_goTypes = nil
- file_mtp2_proto_depIdxs = nil
- }
|