test.pb.go 248 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995
  1. // Copyright 2018 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Code generated by protoc-gen-go. DO NOT EDIT.
  5. // source: test/test.proto
  6. package test
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoiface "google.golang.org/protobuf/runtime/protoiface"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. type ForeignEnum int32
  15. const (
  16. ForeignEnum_FOREIGN_FOO ForeignEnum = 4
  17. ForeignEnum_FOREIGN_BAR ForeignEnum = 5
  18. ForeignEnum_FOREIGN_BAZ ForeignEnum = 6
  19. )
  20. // Enum value maps for ForeignEnum.
  21. var (
  22. ForeignEnum_name = map[int32]string{
  23. 4: "FOREIGN_FOO",
  24. 5: "FOREIGN_BAR",
  25. 6: "FOREIGN_BAZ",
  26. }
  27. ForeignEnum_value = map[string]int32{
  28. "FOREIGN_FOO": 4,
  29. "FOREIGN_BAR": 5,
  30. "FOREIGN_BAZ": 6,
  31. }
  32. )
  33. func (x ForeignEnum) Enum() *ForeignEnum {
  34. p := new(ForeignEnum)
  35. *p = x
  36. return p
  37. }
  38. func (x ForeignEnum) String() string {
  39. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  40. }
  41. func (ForeignEnum) Descriptor() protoreflect.EnumDescriptor {
  42. return file_test_test_proto_enumTypes[0].Descriptor()
  43. }
  44. func (ForeignEnum) Type() protoreflect.EnumType {
  45. return &file_test_test_proto_enumTypes[0]
  46. }
  47. func (x ForeignEnum) Number() protoreflect.EnumNumber {
  48. return protoreflect.EnumNumber(x)
  49. }
  50. // Deprecated: Do not use.
  51. func (x *ForeignEnum) UnmarshalJSON(b []byte) error {
  52. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  53. if err != nil {
  54. return err
  55. }
  56. *x = ForeignEnum(num)
  57. return nil
  58. }
  59. // Deprecated: Use ForeignEnum.Descriptor instead.
  60. func (ForeignEnum) EnumDescriptor() ([]byte, []int) {
  61. return file_test_test_proto_rawDescGZIP(), []int{0}
  62. }
  63. type TestReservedEnumFields int32
  64. const (
  65. TestReservedEnumFields_RESERVED_ENUM TestReservedEnumFields = 0
  66. )
  67. // Enum value maps for TestReservedEnumFields.
  68. var (
  69. TestReservedEnumFields_name = map[int32]string{
  70. 0: "RESERVED_ENUM",
  71. }
  72. TestReservedEnumFields_value = map[string]int32{
  73. "RESERVED_ENUM": 0,
  74. }
  75. )
  76. func (x TestReservedEnumFields) Enum() *TestReservedEnumFields {
  77. p := new(TestReservedEnumFields)
  78. *p = x
  79. return p
  80. }
  81. func (x TestReservedEnumFields) String() string {
  82. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  83. }
  84. func (TestReservedEnumFields) Descriptor() protoreflect.EnumDescriptor {
  85. return file_test_test_proto_enumTypes[1].Descriptor()
  86. }
  87. func (TestReservedEnumFields) Type() protoreflect.EnumType {
  88. return &file_test_test_proto_enumTypes[1]
  89. }
  90. func (x TestReservedEnumFields) Number() protoreflect.EnumNumber {
  91. return protoreflect.EnumNumber(x)
  92. }
  93. // Deprecated: Do not use.
  94. func (x *TestReservedEnumFields) UnmarshalJSON(b []byte) error {
  95. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  96. if err != nil {
  97. return err
  98. }
  99. *x = TestReservedEnumFields(num)
  100. return nil
  101. }
  102. // Deprecated: Use TestReservedEnumFields.Descriptor instead.
  103. func (TestReservedEnumFields) EnumDescriptor() ([]byte, []int) {
  104. return file_test_test_proto_rawDescGZIP(), []int{1}
  105. }
  106. type TestAllTypes_NestedEnum int32
  107. const (
  108. TestAllTypes_FOO TestAllTypes_NestedEnum = 0
  109. TestAllTypes_BAR TestAllTypes_NestedEnum = 1
  110. TestAllTypes_BAZ TestAllTypes_NestedEnum = 2
  111. TestAllTypes_NEG TestAllTypes_NestedEnum = -1 // Intentionally negative.
  112. )
  113. // Enum value maps for TestAllTypes_NestedEnum.
  114. var (
  115. TestAllTypes_NestedEnum_name = map[int32]string{
  116. 0: "FOO",
  117. 1: "BAR",
  118. 2: "BAZ",
  119. -1: "NEG",
  120. }
  121. TestAllTypes_NestedEnum_value = map[string]int32{
  122. "FOO": 0,
  123. "BAR": 1,
  124. "BAZ": 2,
  125. "NEG": -1,
  126. }
  127. )
  128. func (x TestAllTypes_NestedEnum) Enum() *TestAllTypes_NestedEnum {
  129. p := new(TestAllTypes_NestedEnum)
  130. *p = x
  131. return p
  132. }
  133. func (x TestAllTypes_NestedEnum) String() string {
  134. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  135. }
  136. func (TestAllTypes_NestedEnum) Descriptor() protoreflect.EnumDescriptor {
  137. return file_test_test_proto_enumTypes[2].Descriptor()
  138. }
  139. func (TestAllTypes_NestedEnum) Type() protoreflect.EnumType {
  140. return &file_test_test_proto_enumTypes[2]
  141. }
  142. func (x TestAllTypes_NestedEnum) Number() protoreflect.EnumNumber {
  143. return protoreflect.EnumNumber(x)
  144. }
  145. // Deprecated: Do not use.
  146. func (x *TestAllTypes_NestedEnum) UnmarshalJSON(b []byte) error {
  147. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  148. if err != nil {
  149. return err
  150. }
  151. *x = TestAllTypes_NestedEnum(num)
  152. return nil
  153. }
  154. // Deprecated: Use TestAllTypes_NestedEnum.Descriptor instead.
  155. func (TestAllTypes_NestedEnum) EnumDescriptor() ([]byte, []int) {
  156. return file_test_test_proto_rawDescGZIP(), []int{0, 0}
  157. }
  158. // Deprecated: Do not use.
  159. type TestDeprecatedMessage_DeprecatedEnum int32
  160. const (
  161. // Deprecated: Do not use.
  162. TestDeprecatedMessage_DEPRECATED TestDeprecatedMessage_DeprecatedEnum = 0
  163. )
  164. // Enum value maps for TestDeprecatedMessage_DeprecatedEnum.
  165. var (
  166. TestDeprecatedMessage_DeprecatedEnum_name = map[int32]string{
  167. 0: "DEPRECATED",
  168. }
  169. TestDeprecatedMessage_DeprecatedEnum_value = map[string]int32{
  170. "DEPRECATED": 0,
  171. }
  172. )
  173. func (x TestDeprecatedMessage_DeprecatedEnum) Enum() *TestDeprecatedMessage_DeprecatedEnum {
  174. p := new(TestDeprecatedMessage_DeprecatedEnum)
  175. *p = x
  176. return p
  177. }
  178. func (x TestDeprecatedMessage_DeprecatedEnum) String() string {
  179. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  180. }
  181. func (TestDeprecatedMessage_DeprecatedEnum) Descriptor() protoreflect.EnumDescriptor {
  182. return file_test_test_proto_enumTypes[3].Descriptor()
  183. }
  184. func (TestDeprecatedMessage_DeprecatedEnum) Type() protoreflect.EnumType {
  185. return &file_test_test_proto_enumTypes[3]
  186. }
  187. func (x TestDeprecatedMessage_DeprecatedEnum) Number() protoreflect.EnumNumber {
  188. return protoreflect.EnumNumber(x)
  189. }
  190. // Deprecated: Do not use.
  191. func (x *TestDeprecatedMessage_DeprecatedEnum) UnmarshalJSON(b []byte) error {
  192. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  193. if err != nil {
  194. return err
  195. }
  196. *x = TestDeprecatedMessage_DeprecatedEnum(num)
  197. return nil
  198. }
  199. // Deprecated: Use TestDeprecatedMessage_DeprecatedEnum.Descriptor instead.
  200. func (TestDeprecatedMessage_DeprecatedEnum) EnumDescriptor() ([]byte, []int) {
  201. return file_test_test_proto_rawDescGZIP(), []int{1, 0}
  202. }
  203. type TestAllTypes struct {
  204. state protoimpl.MessageState
  205. sizeCache protoimpl.SizeCache
  206. unknownFields protoimpl.UnknownFields
  207. OptionalInt32 *int32 `protobuf:"varint,1,opt,name=optional_int32,json=optionalInt32" json:"optional_int32,omitempty"`
  208. OptionalInt64 *int64 `protobuf:"varint,2,opt,name=optional_int64,json=optionalInt64" json:"optional_int64,omitempty"`
  209. OptionalUint32 *uint32 `protobuf:"varint,3,opt,name=optional_uint32,json=optionalUint32" json:"optional_uint32,omitempty"`
  210. OptionalUint64 *uint64 `protobuf:"varint,4,opt,name=optional_uint64,json=optionalUint64" json:"optional_uint64,omitempty"`
  211. OptionalSint32 *int32 `protobuf:"zigzag32,5,opt,name=optional_sint32,json=optionalSint32" json:"optional_sint32,omitempty"`
  212. OptionalSint64 *int64 `protobuf:"zigzag64,6,opt,name=optional_sint64,json=optionalSint64" json:"optional_sint64,omitempty"`
  213. OptionalFixed32 *uint32 `protobuf:"fixed32,7,opt,name=optional_fixed32,json=optionalFixed32" json:"optional_fixed32,omitempty"`
  214. OptionalFixed64 *uint64 `protobuf:"fixed64,8,opt,name=optional_fixed64,json=optionalFixed64" json:"optional_fixed64,omitempty"`
  215. OptionalSfixed32 *int32 `protobuf:"fixed32,9,opt,name=optional_sfixed32,json=optionalSfixed32" json:"optional_sfixed32,omitempty"`
  216. OptionalSfixed64 *int64 `protobuf:"fixed64,10,opt,name=optional_sfixed64,json=optionalSfixed64" json:"optional_sfixed64,omitempty"`
  217. OptionalFloat *float32 `protobuf:"fixed32,11,opt,name=optional_float,json=optionalFloat" json:"optional_float,omitempty"`
  218. OptionalDouble *float64 `protobuf:"fixed64,12,opt,name=optional_double,json=optionalDouble" json:"optional_double,omitempty"`
  219. OptionalBool *bool `protobuf:"varint,13,opt,name=optional_bool,json=optionalBool" json:"optional_bool,omitempty"`
  220. OptionalString *string `protobuf:"bytes,14,opt,name=optional_string,json=optionalString" json:"optional_string,omitempty"`
  221. OptionalBytes []byte `protobuf:"bytes,15,opt,name=optional_bytes,json=optionalBytes" json:"optional_bytes,omitempty"`
  222. Optionalgroup *TestAllTypes_OptionalGroup `protobuf:"group,16,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"`
  223. OptionalNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,18,opt,name=optional_nested_message,json=optionalNestedMessage" json:"optional_nested_message,omitempty"`
  224. OptionalForeignMessage *ForeignMessage `protobuf:"bytes,19,opt,name=optional_foreign_message,json=optionalForeignMessage" json:"optional_foreign_message,omitempty"`
  225. OptionalImportMessage *ImportMessage `protobuf:"bytes,20,opt,name=optional_import_message,json=optionalImportMessage" json:"optional_import_message,omitempty"`
  226. OptionalNestedEnum *TestAllTypes_NestedEnum `protobuf:"varint,21,opt,name=optional_nested_enum,json=optionalNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"optional_nested_enum,omitempty"`
  227. OptionalForeignEnum *ForeignEnum `protobuf:"varint,22,opt,name=optional_foreign_enum,json=optionalForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"optional_foreign_enum,omitempty"`
  228. OptionalImportEnum *ImportEnum `protobuf:"varint,23,opt,name=optional_import_enum,json=optionalImportEnum,enum=goproto.proto.test.ImportEnum" json:"optional_import_enum,omitempty"`
  229. RepeatedInt32 []int32 `protobuf:"varint,31,rep,name=repeated_int32,json=repeatedInt32" json:"repeated_int32,omitempty"`
  230. RepeatedInt64 []int64 `protobuf:"varint,32,rep,name=repeated_int64,json=repeatedInt64" json:"repeated_int64,omitempty"`
  231. RepeatedUint32 []uint32 `protobuf:"varint,33,rep,name=repeated_uint32,json=repeatedUint32" json:"repeated_uint32,omitempty"`
  232. RepeatedUint64 []uint64 `protobuf:"varint,34,rep,name=repeated_uint64,json=repeatedUint64" json:"repeated_uint64,omitempty"`
  233. RepeatedSint32 []int32 `protobuf:"zigzag32,35,rep,name=repeated_sint32,json=repeatedSint32" json:"repeated_sint32,omitempty"`
  234. RepeatedSint64 []int64 `protobuf:"zigzag64,36,rep,name=repeated_sint64,json=repeatedSint64" json:"repeated_sint64,omitempty"`
  235. RepeatedFixed32 []uint32 `protobuf:"fixed32,37,rep,name=repeated_fixed32,json=repeatedFixed32" json:"repeated_fixed32,omitempty"`
  236. RepeatedFixed64 []uint64 `protobuf:"fixed64,38,rep,name=repeated_fixed64,json=repeatedFixed64" json:"repeated_fixed64,omitempty"`
  237. RepeatedSfixed32 []int32 `protobuf:"fixed32,39,rep,name=repeated_sfixed32,json=repeatedSfixed32" json:"repeated_sfixed32,omitempty"`
  238. RepeatedSfixed64 []int64 `protobuf:"fixed64,40,rep,name=repeated_sfixed64,json=repeatedSfixed64" json:"repeated_sfixed64,omitempty"`
  239. RepeatedFloat []float32 `protobuf:"fixed32,41,rep,name=repeated_float,json=repeatedFloat" json:"repeated_float,omitempty"`
  240. RepeatedDouble []float64 `protobuf:"fixed64,42,rep,name=repeated_double,json=repeatedDouble" json:"repeated_double,omitempty"`
  241. RepeatedBool []bool `protobuf:"varint,43,rep,name=repeated_bool,json=repeatedBool" json:"repeated_bool,omitempty"`
  242. RepeatedString []string `protobuf:"bytes,44,rep,name=repeated_string,json=repeatedString" json:"repeated_string,omitempty"`
  243. RepeatedBytes [][]byte `protobuf:"bytes,45,rep,name=repeated_bytes,json=repeatedBytes" json:"repeated_bytes,omitempty"`
  244. Repeatedgroup []*TestAllTypes_RepeatedGroup `protobuf:"group,46,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"`
  245. RepeatedNestedMessage []*TestAllTypes_NestedMessage `protobuf:"bytes,48,rep,name=repeated_nested_message,json=repeatedNestedMessage" json:"repeated_nested_message,omitempty"`
  246. RepeatedForeignMessage []*ForeignMessage `protobuf:"bytes,49,rep,name=repeated_foreign_message,json=repeatedForeignMessage" json:"repeated_foreign_message,omitempty"`
  247. RepeatedImportmessage []*ImportMessage `protobuf:"bytes,50,rep,name=repeated_importmessage,json=repeatedImportmessage" json:"repeated_importmessage,omitempty"`
  248. RepeatedNestedEnum []TestAllTypes_NestedEnum `protobuf:"varint,51,rep,name=repeated_nested_enum,json=repeatedNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"repeated_nested_enum,omitempty"`
  249. RepeatedForeignEnum []ForeignEnum `protobuf:"varint,52,rep,name=repeated_foreign_enum,json=repeatedForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"repeated_foreign_enum,omitempty"`
  250. RepeatedImportenum []ImportEnum `protobuf:"varint,53,rep,name=repeated_importenum,json=repeatedImportenum,enum=goproto.proto.test.ImportEnum" json:"repeated_importenum,omitempty"`
  251. MapInt32Int32 map[int32]int32 `protobuf:"bytes,56,rep,name=map_int32_int32,json=mapInt32Int32" json:"map_int32_int32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  252. MapInt64Int64 map[int64]int64 `protobuf:"bytes,57,rep,name=map_int64_int64,json=mapInt64Int64" json:"map_int64_int64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  253. MapUint32Uint32 map[uint32]uint32 `protobuf:"bytes,58,rep,name=map_uint32_uint32,json=mapUint32Uint32" json:"map_uint32_uint32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  254. MapUint64Uint64 map[uint64]uint64 `protobuf:"bytes,59,rep,name=map_uint64_uint64,json=mapUint64Uint64" json:"map_uint64_uint64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  255. MapSint32Sint32 map[int32]int32 `protobuf:"bytes,60,rep,name=map_sint32_sint32,json=mapSint32Sint32" json:"map_sint32_sint32,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"`
  256. MapSint64Sint64 map[int64]int64 `protobuf:"bytes,61,rep,name=map_sint64_sint64,json=mapSint64Sint64" json:"map_sint64_sint64,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"`
  257. MapFixed32Fixed32 map[uint32]uint32 `protobuf:"bytes,62,rep,name=map_fixed32_fixed32,json=mapFixed32Fixed32" json:"map_fixed32_fixed32,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  258. MapFixed64Fixed64 map[uint64]uint64 `protobuf:"bytes,63,rep,name=map_fixed64_fixed64,json=mapFixed64Fixed64" json:"map_fixed64_fixed64,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  259. MapSfixed32Sfixed32 map[int32]int32 `protobuf:"bytes,64,rep,name=map_sfixed32_sfixed32,json=mapSfixed32Sfixed32" json:"map_sfixed32_sfixed32,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  260. MapSfixed64Sfixed64 map[int64]int64 `protobuf:"bytes,65,rep,name=map_sfixed64_sfixed64,json=mapSfixed64Sfixed64" json:"map_sfixed64_sfixed64,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  261. MapInt32Float map[int32]float32 `protobuf:"bytes,66,rep,name=map_int32_float,json=mapInt32Float" json:"map_int32_float,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  262. MapInt32Double map[int32]float64 `protobuf:"bytes,67,rep,name=map_int32_double,json=mapInt32Double" json:"map_int32_double,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  263. MapBoolBool map[bool]bool `protobuf:"bytes,68,rep,name=map_bool_bool,json=mapBoolBool" json:"map_bool_bool,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  264. MapStringString map[string]string `protobuf:"bytes,69,rep,name=map_string_string,json=mapStringString" json:"map_string_string,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  265. MapStringBytes map[string][]byte `protobuf:"bytes,70,rep,name=map_string_bytes,json=mapStringBytes" json:"map_string_bytes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  266. MapStringNestedMessage map[string]*TestAllTypes_NestedMessage `protobuf:"bytes,71,rep,name=map_string_nested_message,json=mapStringNestedMessage" json:"map_string_nested_message,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  267. MapStringNestedEnum map[string]TestAllTypes_NestedEnum `protobuf:"bytes,73,rep,name=map_string_nested_enum,json=mapStringNestedEnum" json:"map_string_nested_enum,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=goproto.proto.test.TestAllTypes_NestedEnum"`
  268. // Singular with defaults
  269. DefaultInt32 *int32 `protobuf:"varint,81,opt,name=default_int32,json=defaultInt32,def=81" json:"default_int32,omitempty"`
  270. DefaultInt64 *int64 `protobuf:"varint,82,opt,name=default_int64,json=defaultInt64,def=82" json:"default_int64,omitempty"`
  271. DefaultUint32 *uint32 `protobuf:"varint,83,opt,name=default_uint32,json=defaultUint32,def=83" json:"default_uint32,omitempty"`
  272. DefaultUint64 *uint64 `protobuf:"varint,84,opt,name=default_uint64,json=defaultUint64,def=84" json:"default_uint64,omitempty"`
  273. DefaultSint32 *int32 `protobuf:"zigzag32,85,opt,name=default_sint32,json=defaultSint32,def=-85" json:"default_sint32,omitempty"`
  274. DefaultSint64 *int64 `protobuf:"zigzag64,86,opt,name=default_sint64,json=defaultSint64,def=86" json:"default_sint64,omitempty"`
  275. DefaultFixed32 *uint32 `protobuf:"fixed32,87,opt,name=default_fixed32,json=defaultFixed32,def=87" json:"default_fixed32,omitempty"`
  276. DefaultFixed64 *uint64 `protobuf:"fixed64,88,opt,name=default_fixed64,json=defaultFixed64,def=88" json:"default_fixed64,omitempty"`
  277. DefaultSfixed32 *int32 `protobuf:"fixed32,89,opt,name=default_sfixed32,json=defaultSfixed32,def=89" json:"default_sfixed32,omitempty"`
  278. DefaultSfixed64 *int64 `protobuf:"fixed64,80,opt,name=default_sfixed64,json=defaultSfixed64,def=-90" json:"default_sfixed64,omitempty"`
  279. DefaultFloat *float32 `protobuf:"fixed32,91,opt,name=default_float,json=defaultFloat,def=91.5" json:"default_float,omitempty"`
  280. DefaultDouble *float64 `protobuf:"fixed64,92,opt,name=default_double,json=defaultDouble,def=92000" json:"default_double,omitempty"`
  281. DefaultBool *bool `protobuf:"varint,93,opt,name=default_bool,json=defaultBool,def=1" json:"default_bool,omitempty"`
  282. DefaultString *string `protobuf:"bytes,94,opt,name=default_string,json=defaultString,def=hello" json:"default_string,omitempty"`
  283. DefaultBytes []byte `protobuf:"bytes,95,opt,name=default_bytes,json=defaultBytes,def=world" json:"default_bytes,omitempty"`
  284. DefaultNestedEnum *TestAllTypes_NestedEnum `protobuf:"varint,96,opt,name=default_nested_enum,json=defaultNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum,def=1" json:"default_nested_enum,omitempty"`
  285. DefaultForeignEnum *ForeignEnum `protobuf:"varint,97,opt,name=default_foreign_enum,json=defaultForeignEnum,enum=goproto.proto.test.ForeignEnum,def=5" json:"default_foreign_enum,omitempty"`
  286. // Types that are assignable to OneofField:
  287. // *TestAllTypes_OneofUint32
  288. // *TestAllTypes_OneofNestedMessage
  289. // *TestAllTypes_OneofString
  290. // *TestAllTypes_OneofBytes
  291. // *TestAllTypes_OneofBool
  292. // *TestAllTypes_OneofUint64
  293. // *TestAllTypes_OneofFloat
  294. // *TestAllTypes_OneofDouble
  295. // *TestAllTypes_OneofEnum
  296. OneofField isTestAllTypes_OneofField `protobuf_oneof:"oneof_field"`
  297. // A oneof with exactly one field.
  298. //
  299. // Types that are assignable to OneofOptional:
  300. // *TestAllTypes_OneofOptionalUint32
  301. OneofOptional isTestAllTypes_OneofOptional `protobuf_oneof:"oneof_optional"`
  302. }
  303. // Default values for TestAllTypes fields.
  304. const (
  305. Default_TestAllTypes_DefaultInt32 = int32(81)
  306. Default_TestAllTypes_DefaultInt64 = int64(82)
  307. Default_TestAllTypes_DefaultUint32 = uint32(83)
  308. Default_TestAllTypes_DefaultUint64 = uint64(84)
  309. Default_TestAllTypes_DefaultSint32 = int32(-85)
  310. Default_TestAllTypes_DefaultSint64 = int64(86)
  311. Default_TestAllTypes_DefaultFixed32 = uint32(87)
  312. Default_TestAllTypes_DefaultFixed64 = uint64(88)
  313. Default_TestAllTypes_DefaultSfixed32 = int32(89)
  314. Default_TestAllTypes_DefaultSfixed64 = int64(-90)
  315. Default_TestAllTypes_DefaultFloat = float32(91.5)
  316. Default_TestAllTypes_DefaultDouble = float64(92000)
  317. Default_TestAllTypes_DefaultBool = bool(true)
  318. Default_TestAllTypes_DefaultString = string("hello")
  319. Default_TestAllTypes_DefaultNestedEnum = TestAllTypes_BAR
  320. Default_TestAllTypes_DefaultForeignEnum = ForeignEnum_FOREIGN_BAR
  321. )
  322. // Default values for TestAllTypes fields.
  323. var (
  324. Default_TestAllTypes_DefaultBytes = []byte("world")
  325. )
  326. func (x *TestAllTypes) Reset() {
  327. *x = TestAllTypes{}
  328. }
  329. func (x *TestAllTypes) String() string {
  330. return protoimpl.X.MessageStringOf(x)
  331. }
  332. func (*TestAllTypes) ProtoMessage() {}
  333. func (x *TestAllTypes) ProtoReflect() protoreflect.Message {
  334. mi := &file_test_test_proto_msgTypes[0]
  335. if protoimpl.UnsafeEnabled && x != nil {
  336. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  337. if ms.LoadMessageInfo() == nil {
  338. ms.StoreMessageInfo(mi)
  339. }
  340. return ms
  341. }
  342. return mi.MessageOf(x)
  343. }
  344. // Deprecated: Use TestAllTypes.ProtoReflect.Descriptor instead.
  345. func (*TestAllTypes) Descriptor() ([]byte, []int) {
  346. return file_test_test_proto_rawDescGZIP(), []int{0}
  347. }
  348. func (x *TestAllTypes) GetOptionalInt32() int32 {
  349. if x != nil && x.OptionalInt32 != nil {
  350. return *x.OptionalInt32
  351. }
  352. return 0
  353. }
  354. func (x *TestAllTypes) GetOptionalInt64() int64 {
  355. if x != nil && x.OptionalInt64 != nil {
  356. return *x.OptionalInt64
  357. }
  358. return 0
  359. }
  360. func (x *TestAllTypes) GetOptionalUint32() uint32 {
  361. if x != nil && x.OptionalUint32 != nil {
  362. return *x.OptionalUint32
  363. }
  364. return 0
  365. }
  366. func (x *TestAllTypes) GetOptionalUint64() uint64 {
  367. if x != nil && x.OptionalUint64 != nil {
  368. return *x.OptionalUint64
  369. }
  370. return 0
  371. }
  372. func (x *TestAllTypes) GetOptionalSint32() int32 {
  373. if x != nil && x.OptionalSint32 != nil {
  374. return *x.OptionalSint32
  375. }
  376. return 0
  377. }
  378. func (x *TestAllTypes) GetOptionalSint64() int64 {
  379. if x != nil && x.OptionalSint64 != nil {
  380. return *x.OptionalSint64
  381. }
  382. return 0
  383. }
  384. func (x *TestAllTypes) GetOptionalFixed32() uint32 {
  385. if x != nil && x.OptionalFixed32 != nil {
  386. return *x.OptionalFixed32
  387. }
  388. return 0
  389. }
  390. func (x *TestAllTypes) GetOptionalFixed64() uint64 {
  391. if x != nil && x.OptionalFixed64 != nil {
  392. return *x.OptionalFixed64
  393. }
  394. return 0
  395. }
  396. func (x *TestAllTypes) GetOptionalSfixed32() int32 {
  397. if x != nil && x.OptionalSfixed32 != nil {
  398. return *x.OptionalSfixed32
  399. }
  400. return 0
  401. }
  402. func (x *TestAllTypes) GetOptionalSfixed64() int64 {
  403. if x != nil && x.OptionalSfixed64 != nil {
  404. return *x.OptionalSfixed64
  405. }
  406. return 0
  407. }
  408. func (x *TestAllTypes) GetOptionalFloat() float32 {
  409. if x != nil && x.OptionalFloat != nil {
  410. return *x.OptionalFloat
  411. }
  412. return 0
  413. }
  414. func (x *TestAllTypes) GetOptionalDouble() float64 {
  415. if x != nil && x.OptionalDouble != nil {
  416. return *x.OptionalDouble
  417. }
  418. return 0
  419. }
  420. func (x *TestAllTypes) GetOptionalBool() bool {
  421. if x != nil && x.OptionalBool != nil {
  422. return *x.OptionalBool
  423. }
  424. return false
  425. }
  426. func (x *TestAllTypes) GetOptionalString() string {
  427. if x != nil && x.OptionalString != nil {
  428. return *x.OptionalString
  429. }
  430. return ""
  431. }
  432. func (x *TestAllTypes) GetOptionalBytes() []byte {
  433. if x != nil {
  434. return x.OptionalBytes
  435. }
  436. return nil
  437. }
  438. func (x *TestAllTypes) GetOptionalgroup() *TestAllTypes_OptionalGroup {
  439. if x != nil {
  440. return x.Optionalgroup
  441. }
  442. return nil
  443. }
  444. func (x *TestAllTypes) GetOptionalNestedMessage() *TestAllTypes_NestedMessage {
  445. if x != nil {
  446. return x.OptionalNestedMessage
  447. }
  448. return nil
  449. }
  450. func (x *TestAllTypes) GetOptionalForeignMessage() *ForeignMessage {
  451. if x != nil {
  452. return x.OptionalForeignMessage
  453. }
  454. return nil
  455. }
  456. func (x *TestAllTypes) GetOptionalImportMessage() *ImportMessage {
  457. if x != nil {
  458. return x.OptionalImportMessage
  459. }
  460. return nil
  461. }
  462. func (x *TestAllTypes) GetOptionalNestedEnum() TestAllTypes_NestedEnum {
  463. if x != nil && x.OptionalNestedEnum != nil {
  464. return *x.OptionalNestedEnum
  465. }
  466. return TestAllTypes_FOO
  467. }
  468. func (x *TestAllTypes) GetOptionalForeignEnum() ForeignEnum {
  469. if x != nil && x.OptionalForeignEnum != nil {
  470. return *x.OptionalForeignEnum
  471. }
  472. return ForeignEnum_FOREIGN_FOO
  473. }
  474. func (x *TestAllTypes) GetOptionalImportEnum() ImportEnum {
  475. if x != nil && x.OptionalImportEnum != nil {
  476. return *x.OptionalImportEnum
  477. }
  478. return ImportEnum_IMPORT_ZERO
  479. }
  480. func (x *TestAllTypes) GetRepeatedInt32() []int32 {
  481. if x != nil {
  482. return x.RepeatedInt32
  483. }
  484. return nil
  485. }
  486. func (x *TestAllTypes) GetRepeatedInt64() []int64 {
  487. if x != nil {
  488. return x.RepeatedInt64
  489. }
  490. return nil
  491. }
  492. func (x *TestAllTypes) GetRepeatedUint32() []uint32 {
  493. if x != nil {
  494. return x.RepeatedUint32
  495. }
  496. return nil
  497. }
  498. func (x *TestAllTypes) GetRepeatedUint64() []uint64 {
  499. if x != nil {
  500. return x.RepeatedUint64
  501. }
  502. return nil
  503. }
  504. func (x *TestAllTypes) GetRepeatedSint32() []int32 {
  505. if x != nil {
  506. return x.RepeatedSint32
  507. }
  508. return nil
  509. }
  510. func (x *TestAllTypes) GetRepeatedSint64() []int64 {
  511. if x != nil {
  512. return x.RepeatedSint64
  513. }
  514. return nil
  515. }
  516. func (x *TestAllTypes) GetRepeatedFixed32() []uint32 {
  517. if x != nil {
  518. return x.RepeatedFixed32
  519. }
  520. return nil
  521. }
  522. func (x *TestAllTypes) GetRepeatedFixed64() []uint64 {
  523. if x != nil {
  524. return x.RepeatedFixed64
  525. }
  526. return nil
  527. }
  528. func (x *TestAllTypes) GetRepeatedSfixed32() []int32 {
  529. if x != nil {
  530. return x.RepeatedSfixed32
  531. }
  532. return nil
  533. }
  534. func (x *TestAllTypes) GetRepeatedSfixed64() []int64 {
  535. if x != nil {
  536. return x.RepeatedSfixed64
  537. }
  538. return nil
  539. }
  540. func (x *TestAllTypes) GetRepeatedFloat() []float32 {
  541. if x != nil {
  542. return x.RepeatedFloat
  543. }
  544. return nil
  545. }
  546. func (x *TestAllTypes) GetRepeatedDouble() []float64 {
  547. if x != nil {
  548. return x.RepeatedDouble
  549. }
  550. return nil
  551. }
  552. func (x *TestAllTypes) GetRepeatedBool() []bool {
  553. if x != nil {
  554. return x.RepeatedBool
  555. }
  556. return nil
  557. }
  558. func (x *TestAllTypes) GetRepeatedString() []string {
  559. if x != nil {
  560. return x.RepeatedString
  561. }
  562. return nil
  563. }
  564. func (x *TestAllTypes) GetRepeatedBytes() [][]byte {
  565. if x != nil {
  566. return x.RepeatedBytes
  567. }
  568. return nil
  569. }
  570. func (x *TestAllTypes) GetRepeatedgroup() []*TestAllTypes_RepeatedGroup {
  571. if x != nil {
  572. return x.Repeatedgroup
  573. }
  574. return nil
  575. }
  576. func (x *TestAllTypes) GetRepeatedNestedMessage() []*TestAllTypes_NestedMessage {
  577. if x != nil {
  578. return x.RepeatedNestedMessage
  579. }
  580. return nil
  581. }
  582. func (x *TestAllTypes) GetRepeatedForeignMessage() []*ForeignMessage {
  583. if x != nil {
  584. return x.RepeatedForeignMessage
  585. }
  586. return nil
  587. }
  588. func (x *TestAllTypes) GetRepeatedImportmessage() []*ImportMessage {
  589. if x != nil {
  590. return x.RepeatedImportmessage
  591. }
  592. return nil
  593. }
  594. func (x *TestAllTypes) GetRepeatedNestedEnum() []TestAllTypes_NestedEnum {
  595. if x != nil {
  596. return x.RepeatedNestedEnum
  597. }
  598. return nil
  599. }
  600. func (x *TestAllTypes) GetRepeatedForeignEnum() []ForeignEnum {
  601. if x != nil {
  602. return x.RepeatedForeignEnum
  603. }
  604. return nil
  605. }
  606. func (x *TestAllTypes) GetRepeatedImportenum() []ImportEnum {
  607. if x != nil {
  608. return x.RepeatedImportenum
  609. }
  610. return nil
  611. }
  612. func (x *TestAllTypes) GetMapInt32Int32() map[int32]int32 {
  613. if x != nil {
  614. return x.MapInt32Int32
  615. }
  616. return nil
  617. }
  618. func (x *TestAllTypes) GetMapInt64Int64() map[int64]int64 {
  619. if x != nil {
  620. return x.MapInt64Int64
  621. }
  622. return nil
  623. }
  624. func (x *TestAllTypes) GetMapUint32Uint32() map[uint32]uint32 {
  625. if x != nil {
  626. return x.MapUint32Uint32
  627. }
  628. return nil
  629. }
  630. func (x *TestAllTypes) GetMapUint64Uint64() map[uint64]uint64 {
  631. if x != nil {
  632. return x.MapUint64Uint64
  633. }
  634. return nil
  635. }
  636. func (x *TestAllTypes) GetMapSint32Sint32() map[int32]int32 {
  637. if x != nil {
  638. return x.MapSint32Sint32
  639. }
  640. return nil
  641. }
  642. func (x *TestAllTypes) GetMapSint64Sint64() map[int64]int64 {
  643. if x != nil {
  644. return x.MapSint64Sint64
  645. }
  646. return nil
  647. }
  648. func (x *TestAllTypes) GetMapFixed32Fixed32() map[uint32]uint32 {
  649. if x != nil {
  650. return x.MapFixed32Fixed32
  651. }
  652. return nil
  653. }
  654. func (x *TestAllTypes) GetMapFixed64Fixed64() map[uint64]uint64 {
  655. if x != nil {
  656. return x.MapFixed64Fixed64
  657. }
  658. return nil
  659. }
  660. func (x *TestAllTypes) GetMapSfixed32Sfixed32() map[int32]int32 {
  661. if x != nil {
  662. return x.MapSfixed32Sfixed32
  663. }
  664. return nil
  665. }
  666. func (x *TestAllTypes) GetMapSfixed64Sfixed64() map[int64]int64 {
  667. if x != nil {
  668. return x.MapSfixed64Sfixed64
  669. }
  670. return nil
  671. }
  672. func (x *TestAllTypes) GetMapInt32Float() map[int32]float32 {
  673. if x != nil {
  674. return x.MapInt32Float
  675. }
  676. return nil
  677. }
  678. func (x *TestAllTypes) GetMapInt32Double() map[int32]float64 {
  679. if x != nil {
  680. return x.MapInt32Double
  681. }
  682. return nil
  683. }
  684. func (x *TestAllTypes) GetMapBoolBool() map[bool]bool {
  685. if x != nil {
  686. return x.MapBoolBool
  687. }
  688. return nil
  689. }
  690. func (x *TestAllTypes) GetMapStringString() map[string]string {
  691. if x != nil {
  692. return x.MapStringString
  693. }
  694. return nil
  695. }
  696. func (x *TestAllTypes) GetMapStringBytes() map[string][]byte {
  697. if x != nil {
  698. return x.MapStringBytes
  699. }
  700. return nil
  701. }
  702. func (x *TestAllTypes) GetMapStringNestedMessage() map[string]*TestAllTypes_NestedMessage {
  703. if x != nil {
  704. return x.MapStringNestedMessage
  705. }
  706. return nil
  707. }
  708. func (x *TestAllTypes) GetMapStringNestedEnum() map[string]TestAllTypes_NestedEnum {
  709. if x != nil {
  710. return x.MapStringNestedEnum
  711. }
  712. return nil
  713. }
  714. func (x *TestAllTypes) GetDefaultInt32() int32 {
  715. if x != nil && x.DefaultInt32 != nil {
  716. return *x.DefaultInt32
  717. }
  718. return Default_TestAllTypes_DefaultInt32
  719. }
  720. func (x *TestAllTypes) GetDefaultInt64() int64 {
  721. if x != nil && x.DefaultInt64 != nil {
  722. return *x.DefaultInt64
  723. }
  724. return Default_TestAllTypes_DefaultInt64
  725. }
  726. func (x *TestAllTypes) GetDefaultUint32() uint32 {
  727. if x != nil && x.DefaultUint32 != nil {
  728. return *x.DefaultUint32
  729. }
  730. return Default_TestAllTypes_DefaultUint32
  731. }
  732. func (x *TestAllTypes) GetDefaultUint64() uint64 {
  733. if x != nil && x.DefaultUint64 != nil {
  734. return *x.DefaultUint64
  735. }
  736. return Default_TestAllTypes_DefaultUint64
  737. }
  738. func (x *TestAllTypes) GetDefaultSint32() int32 {
  739. if x != nil && x.DefaultSint32 != nil {
  740. return *x.DefaultSint32
  741. }
  742. return Default_TestAllTypes_DefaultSint32
  743. }
  744. func (x *TestAllTypes) GetDefaultSint64() int64 {
  745. if x != nil && x.DefaultSint64 != nil {
  746. return *x.DefaultSint64
  747. }
  748. return Default_TestAllTypes_DefaultSint64
  749. }
  750. func (x *TestAllTypes) GetDefaultFixed32() uint32 {
  751. if x != nil && x.DefaultFixed32 != nil {
  752. return *x.DefaultFixed32
  753. }
  754. return Default_TestAllTypes_DefaultFixed32
  755. }
  756. func (x *TestAllTypes) GetDefaultFixed64() uint64 {
  757. if x != nil && x.DefaultFixed64 != nil {
  758. return *x.DefaultFixed64
  759. }
  760. return Default_TestAllTypes_DefaultFixed64
  761. }
  762. func (x *TestAllTypes) GetDefaultSfixed32() int32 {
  763. if x != nil && x.DefaultSfixed32 != nil {
  764. return *x.DefaultSfixed32
  765. }
  766. return Default_TestAllTypes_DefaultSfixed32
  767. }
  768. func (x *TestAllTypes) GetDefaultSfixed64() int64 {
  769. if x != nil && x.DefaultSfixed64 != nil {
  770. return *x.DefaultSfixed64
  771. }
  772. return Default_TestAllTypes_DefaultSfixed64
  773. }
  774. func (x *TestAllTypes) GetDefaultFloat() float32 {
  775. if x != nil && x.DefaultFloat != nil {
  776. return *x.DefaultFloat
  777. }
  778. return Default_TestAllTypes_DefaultFloat
  779. }
  780. func (x *TestAllTypes) GetDefaultDouble() float64 {
  781. if x != nil && x.DefaultDouble != nil {
  782. return *x.DefaultDouble
  783. }
  784. return Default_TestAllTypes_DefaultDouble
  785. }
  786. func (x *TestAllTypes) GetDefaultBool() bool {
  787. if x != nil && x.DefaultBool != nil {
  788. return *x.DefaultBool
  789. }
  790. return Default_TestAllTypes_DefaultBool
  791. }
  792. func (x *TestAllTypes) GetDefaultString() string {
  793. if x != nil && x.DefaultString != nil {
  794. return *x.DefaultString
  795. }
  796. return Default_TestAllTypes_DefaultString
  797. }
  798. func (x *TestAllTypes) GetDefaultBytes() []byte {
  799. if x != nil && x.DefaultBytes != nil {
  800. return x.DefaultBytes
  801. }
  802. return append([]byte(nil), Default_TestAllTypes_DefaultBytes...)
  803. }
  804. func (x *TestAllTypes) GetDefaultNestedEnum() TestAllTypes_NestedEnum {
  805. if x != nil && x.DefaultNestedEnum != nil {
  806. return *x.DefaultNestedEnum
  807. }
  808. return Default_TestAllTypes_DefaultNestedEnum
  809. }
  810. func (x *TestAllTypes) GetDefaultForeignEnum() ForeignEnum {
  811. if x != nil && x.DefaultForeignEnum != nil {
  812. return *x.DefaultForeignEnum
  813. }
  814. return Default_TestAllTypes_DefaultForeignEnum
  815. }
  816. func (m *TestAllTypes) GetOneofField() isTestAllTypes_OneofField {
  817. if m != nil {
  818. return m.OneofField
  819. }
  820. return nil
  821. }
  822. func (x *TestAllTypes) GetOneofUint32() uint32 {
  823. if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint32); ok {
  824. return x.OneofUint32
  825. }
  826. return 0
  827. }
  828. func (x *TestAllTypes) GetOneofNestedMessage() *TestAllTypes_NestedMessage {
  829. if x, ok := x.GetOneofField().(*TestAllTypes_OneofNestedMessage); ok {
  830. return x.OneofNestedMessage
  831. }
  832. return nil
  833. }
  834. func (x *TestAllTypes) GetOneofString() string {
  835. if x, ok := x.GetOneofField().(*TestAllTypes_OneofString); ok {
  836. return x.OneofString
  837. }
  838. return ""
  839. }
  840. func (x *TestAllTypes) GetOneofBytes() []byte {
  841. if x, ok := x.GetOneofField().(*TestAllTypes_OneofBytes); ok {
  842. return x.OneofBytes
  843. }
  844. return nil
  845. }
  846. func (x *TestAllTypes) GetOneofBool() bool {
  847. if x, ok := x.GetOneofField().(*TestAllTypes_OneofBool); ok {
  848. return x.OneofBool
  849. }
  850. return false
  851. }
  852. func (x *TestAllTypes) GetOneofUint64() uint64 {
  853. if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint64); ok {
  854. return x.OneofUint64
  855. }
  856. return 0
  857. }
  858. func (x *TestAllTypes) GetOneofFloat() float32 {
  859. if x, ok := x.GetOneofField().(*TestAllTypes_OneofFloat); ok {
  860. return x.OneofFloat
  861. }
  862. return 0
  863. }
  864. func (x *TestAllTypes) GetOneofDouble() float64 {
  865. if x, ok := x.GetOneofField().(*TestAllTypes_OneofDouble); ok {
  866. return x.OneofDouble
  867. }
  868. return 0
  869. }
  870. func (x *TestAllTypes) GetOneofEnum() TestAllTypes_NestedEnum {
  871. if x, ok := x.GetOneofField().(*TestAllTypes_OneofEnum); ok {
  872. return x.OneofEnum
  873. }
  874. return TestAllTypes_FOO
  875. }
  876. func (m *TestAllTypes) GetOneofOptional() isTestAllTypes_OneofOptional {
  877. if m != nil {
  878. return m.OneofOptional
  879. }
  880. return nil
  881. }
  882. func (x *TestAllTypes) GetOneofOptionalUint32() uint32 {
  883. if x, ok := x.GetOneofOptional().(*TestAllTypes_OneofOptionalUint32); ok {
  884. return x.OneofOptionalUint32
  885. }
  886. return 0
  887. }
  888. type isTestAllTypes_OneofField interface {
  889. isTestAllTypes_OneofField()
  890. }
  891. type TestAllTypes_OneofUint32 struct {
  892. OneofUint32 uint32 `protobuf:"varint,111,opt,name=oneof_uint32,json=oneofUint32,oneof"`
  893. }
  894. type TestAllTypes_OneofNestedMessage struct {
  895. OneofNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,112,opt,name=oneof_nested_message,json=oneofNestedMessage,oneof"`
  896. }
  897. type TestAllTypes_OneofString struct {
  898. OneofString string `protobuf:"bytes,113,opt,name=oneof_string,json=oneofString,oneof"`
  899. }
  900. type TestAllTypes_OneofBytes struct {
  901. OneofBytes []byte `protobuf:"bytes,114,opt,name=oneof_bytes,json=oneofBytes,oneof"`
  902. }
  903. type TestAllTypes_OneofBool struct {
  904. OneofBool bool `protobuf:"varint,115,opt,name=oneof_bool,json=oneofBool,oneof"`
  905. }
  906. type TestAllTypes_OneofUint64 struct {
  907. OneofUint64 uint64 `protobuf:"varint,116,opt,name=oneof_uint64,json=oneofUint64,oneof"`
  908. }
  909. type TestAllTypes_OneofFloat struct {
  910. OneofFloat float32 `protobuf:"fixed32,117,opt,name=oneof_float,json=oneofFloat,oneof"`
  911. }
  912. type TestAllTypes_OneofDouble struct {
  913. OneofDouble float64 `protobuf:"fixed64,118,opt,name=oneof_double,json=oneofDouble,oneof"`
  914. }
  915. type TestAllTypes_OneofEnum struct {
  916. OneofEnum TestAllTypes_NestedEnum `protobuf:"varint,119,opt,name=oneof_enum,json=oneofEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum,oneof"`
  917. }
  918. func (*TestAllTypes_OneofUint32) isTestAllTypes_OneofField() {}
  919. func (*TestAllTypes_OneofNestedMessage) isTestAllTypes_OneofField() {}
  920. func (*TestAllTypes_OneofString) isTestAllTypes_OneofField() {}
  921. func (*TestAllTypes_OneofBytes) isTestAllTypes_OneofField() {}
  922. func (*TestAllTypes_OneofBool) isTestAllTypes_OneofField() {}
  923. func (*TestAllTypes_OneofUint64) isTestAllTypes_OneofField() {}
  924. func (*TestAllTypes_OneofFloat) isTestAllTypes_OneofField() {}
  925. func (*TestAllTypes_OneofDouble) isTestAllTypes_OneofField() {}
  926. func (*TestAllTypes_OneofEnum) isTestAllTypes_OneofField() {}
  927. type isTestAllTypes_OneofOptional interface {
  928. isTestAllTypes_OneofOptional()
  929. }
  930. type TestAllTypes_OneofOptionalUint32 struct {
  931. OneofOptionalUint32 uint32 `protobuf:"varint,120,opt,name=oneof_optional_uint32,json=oneofOptionalUint32,oneof"`
  932. }
  933. func (*TestAllTypes_OneofOptionalUint32) isTestAllTypes_OneofOptional() {}
  934. // Deprecated: Do not use.
  935. type TestDeprecatedMessage struct {
  936. state protoimpl.MessageState
  937. sizeCache protoimpl.SizeCache
  938. unknownFields protoimpl.UnknownFields
  939. // Deprecated: Do not use.
  940. DeprecatedInt32 *int32 `protobuf:"varint,1,opt,name=deprecated_int32,json=deprecatedInt32" json:"deprecated_int32,omitempty"`
  941. // Types that are assignable to DeprecatedOneof:
  942. // *TestDeprecatedMessage_DeprecatedOneofField
  943. DeprecatedOneof isTestDeprecatedMessage_DeprecatedOneof `protobuf_oneof:"deprecated_oneof"`
  944. }
  945. func (x *TestDeprecatedMessage) Reset() {
  946. *x = TestDeprecatedMessage{}
  947. }
  948. func (x *TestDeprecatedMessage) String() string {
  949. return protoimpl.X.MessageStringOf(x)
  950. }
  951. func (*TestDeprecatedMessage) ProtoMessage() {}
  952. func (x *TestDeprecatedMessage) ProtoReflect() protoreflect.Message {
  953. mi := &file_test_test_proto_msgTypes[1]
  954. if protoimpl.UnsafeEnabled && x != nil {
  955. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  956. if ms.LoadMessageInfo() == nil {
  957. ms.StoreMessageInfo(mi)
  958. }
  959. return ms
  960. }
  961. return mi.MessageOf(x)
  962. }
  963. // Deprecated: Use TestDeprecatedMessage.ProtoReflect.Descriptor instead.
  964. func (*TestDeprecatedMessage) Descriptor() ([]byte, []int) {
  965. return file_test_test_proto_rawDescGZIP(), []int{1}
  966. }
  967. // Deprecated: Do not use.
  968. func (x *TestDeprecatedMessage) GetDeprecatedInt32() int32 {
  969. if x != nil && x.DeprecatedInt32 != nil {
  970. return *x.DeprecatedInt32
  971. }
  972. return 0
  973. }
  974. func (m *TestDeprecatedMessage) GetDeprecatedOneof() isTestDeprecatedMessage_DeprecatedOneof {
  975. if m != nil {
  976. return m.DeprecatedOneof
  977. }
  978. return nil
  979. }
  980. // Deprecated: Do not use.
  981. func (x *TestDeprecatedMessage) GetDeprecatedOneofField() int32 {
  982. if x, ok := x.GetDeprecatedOneof().(*TestDeprecatedMessage_DeprecatedOneofField); ok {
  983. return x.DeprecatedOneofField
  984. }
  985. return 0
  986. }
  987. type isTestDeprecatedMessage_DeprecatedOneof interface {
  988. isTestDeprecatedMessage_DeprecatedOneof()
  989. }
  990. type TestDeprecatedMessage_DeprecatedOneofField struct {
  991. // Deprecated: Do not use.
  992. DeprecatedOneofField int32 `protobuf:"varint,2,opt,name=deprecated_oneof_field,json=deprecatedOneofField,oneof"`
  993. }
  994. func (*TestDeprecatedMessage_DeprecatedOneofField) isTestDeprecatedMessage_DeprecatedOneof() {}
  995. type ForeignMessage struct {
  996. state protoimpl.MessageState
  997. sizeCache protoimpl.SizeCache
  998. unknownFields protoimpl.UnknownFields
  999. C *int32 `protobuf:"varint,1,opt,name=c" json:"c,omitempty"`
  1000. D *int32 `protobuf:"varint,2,opt,name=d" json:"d,omitempty"`
  1001. }
  1002. func (x *ForeignMessage) Reset() {
  1003. *x = ForeignMessage{}
  1004. }
  1005. func (x *ForeignMessage) String() string {
  1006. return protoimpl.X.MessageStringOf(x)
  1007. }
  1008. func (*ForeignMessage) ProtoMessage() {}
  1009. func (x *ForeignMessage) ProtoReflect() protoreflect.Message {
  1010. mi := &file_test_test_proto_msgTypes[2]
  1011. if protoimpl.UnsafeEnabled && x != nil {
  1012. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1013. if ms.LoadMessageInfo() == nil {
  1014. ms.StoreMessageInfo(mi)
  1015. }
  1016. return ms
  1017. }
  1018. return mi.MessageOf(x)
  1019. }
  1020. // Deprecated: Use ForeignMessage.ProtoReflect.Descriptor instead.
  1021. func (*ForeignMessage) Descriptor() ([]byte, []int) {
  1022. return file_test_test_proto_rawDescGZIP(), []int{2}
  1023. }
  1024. func (x *ForeignMessage) GetC() int32 {
  1025. if x != nil && x.C != nil {
  1026. return *x.C
  1027. }
  1028. return 0
  1029. }
  1030. func (x *ForeignMessage) GetD() int32 {
  1031. if x != nil && x.D != nil {
  1032. return *x.D
  1033. }
  1034. return 0
  1035. }
  1036. type TestReservedFields struct {
  1037. state protoimpl.MessageState
  1038. sizeCache protoimpl.SizeCache
  1039. unknownFields protoimpl.UnknownFields
  1040. }
  1041. func (x *TestReservedFields) Reset() {
  1042. *x = TestReservedFields{}
  1043. }
  1044. func (x *TestReservedFields) String() string {
  1045. return protoimpl.X.MessageStringOf(x)
  1046. }
  1047. func (*TestReservedFields) ProtoMessage() {}
  1048. func (x *TestReservedFields) ProtoReflect() protoreflect.Message {
  1049. mi := &file_test_test_proto_msgTypes[3]
  1050. if protoimpl.UnsafeEnabled && x != nil {
  1051. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1052. if ms.LoadMessageInfo() == nil {
  1053. ms.StoreMessageInfo(mi)
  1054. }
  1055. return ms
  1056. }
  1057. return mi.MessageOf(x)
  1058. }
  1059. // Deprecated: Use TestReservedFields.ProtoReflect.Descriptor instead.
  1060. func (*TestReservedFields) Descriptor() ([]byte, []int) {
  1061. return file_test_test_proto_rawDescGZIP(), []int{3}
  1062. }
  1063. type TestAllExtensions struct {
  1064. state protoimpl.MessageState
  1065. sizeCache protoimpl.SizeCache
  1066. unknownFields protoimpl.UnknownFields
  1067. extensionFields protoimpl.ExtensionFields
  1068. }
  1069. func (x *TestAllExtensions) Reset() {
  1070. *x = TestAllExtensions{}
  1071. }
  1072. func (x *TestAllExtensions) String() string {
  1073. return protoimpl.X.MessageStringOf(x)
  1074. }
  1075. func (*TestAllExtensions) ProtoMessage() {}
  1076. func (x *TestAllExtensions) ProtoReflect() protoreflect.Message {
  1077. mi := &file_test_test_proto_msgTypes[4]
  1078. if protoimpl.UnsafeEnabled && x != nil {
  1079. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1080. if ms.LoadMessageInfo() == nil {
  1081. ms.StoreMessageInfo(mi)
  1082. }
  1083. return ms
  1084. }
  1085. return mi.MessageOf(x)
  1086. }
  1087. // Deprecated: Use TestAllExtensions.ProtoReflect.Descriptor instead.
  1088. func (*TestAllExtensions) Descriptor() ([]byte, []int) {
  1089. return file_test_test_proto_rawDescGZIP(), []int{4}
  1090. }
  1091. var extRange_TestAllExtensions = []protoiface.ExtensionRangeV1{
  1092. {Start: 1, End: 536870911},
  1093. }
  1094. // Deprecated: Use TestAllExtensions.ProtoReflect.Descriptor.ExtensionRanges instead.
  1095. func (*TestAllExtensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  1096. return extRange_TestAllExtensions
  1097. }
  1098. type OptionalGroupExtension struct {
  1099. state protoimpl.MessageState
  1100. sizeCache protoimpl.SizeCache
  1101. unknownFields protoimpl.UnknownFields
  1102. A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"`
  1103. }
  1104. func (x *OptionalGroupExtension) Reset() {
  1105. *x = OptionalGroupExtension{}
  1106. }
  1107. func (x *OptionalGroupExtension) String() string {
  1108. return protoimpl.X.MessageStringOf(x)
  1109. }
  1110. func (*OptionalGroupExtension) ProtoMessage() {}
  1111. func (x *OptionalGroupExtension) ProtoReflect() protoreflect.Message {
  1112. mi := &file_test_test_proto_msgTypes[5]
  1113. if protoimpl.UnsafeEnabled && x != nil {
  1114. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1115. if ms.LoadMessageInfo() == nil {
  1116. ms.StoreMessageInfo(mi)
  1117. }
  1118. return ms
  1119. }
  1120. return mi.MessageOf(x)
  1121. }
  1122. // Deprecated: Use OptionalGroupExtension.ProtoReflect.Descriptor instead.
  1123. func (*OptionalGroupExtension) Descriptor() ([]byte, []int) {
  1124. return file_test_test_proto_rawDescGZIP(), []int{5}
  1125. }
  1126. func (x *OptionalGroupExtension) GetA() int32 {
  1127. if x != nil && x.A != nil {
  1128. return *x.A
  1129. }
  1130. return 0
  1131. }
  1132. type RepeatedGroupExtension struct {
  1133. state protoimpl.MessageState
  1134. sizeCache protoimpl.SizeCache
  1135. unknownFields protoimpl.UnknownFields
  1136. A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"`
  1137. }
  1138. func (x *RepeatedGroupExtension) Reset() {
  1139. *x = RepeatedGroupExtension{}
  1140. }
  1141. func (x *RepeatedGroupExtension) String() string {
  1142. return protoimpl.X.MessageStringOf(x)
  1143. }
  1144. func (*RepeatedGroupExtension) ProtoMessage() {}
  1145. func (x *RepeatedGroupExtension) ProtoReflect() protoreflect.Message {
  1146. mi := &file_test_test_proto_msgTypes[6]
  1147. if protoimpl.UnsafeEnabled && x != nil {
  1148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1149. if ms.LoadMessageInfo() == nil {
  1150. ms.StoreMessageInfo(mi)
  1151. }
  1152. return ms
  1153. }
  1154. return mi.MessageOf(x)
  1155. }
  1156. // Deprecated: Use RepeatedGroupExtension.ProtoReflect.Descriptor instead.
  1157. func (*RepeatedGroupExtension) Descriptor() ([]byte, []int) {
  1158. return file_test_test_proto_rawDescGZIP(), []int{6}
  1159. }
  1160. func (x *RepeatedGroupExtension) GetA() int32 {
  1161. if x != nil && x.A != nil {
  1162. return *x.A
  1163. }
  1164. return 0
  1165. }
  1166. type TestNestedExtension struct {
  1167. state protoimpl.MessageState
  1168. sizeCache protoimpl.SizeCache
  1169. unknownFields protoimpl.UnknownFields
  1170. }
  1171. func (x *TestNestedExtension) Reset() {
  1172. *x = TestNestedExtension{}
  1173. }
  1174. func (x *TestNestedExtension) String() string {
  1175. return protoimpl.X.MessageStringOf(x)
  1176. }
  1177. func (*TestNestedExtension) ProtoMessage() {}
  1178. func (x *TestNestedExtension) ProtoReflect() protoreflect.Message {
  1179. mi := &file_test_test_proto_msgTypes[7]
  1180. if protoimpl.UnsafeEnabled && x != nil {
  1181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1182. if ms.LoadMessageInfo() == nil {
  1183. ms.StoreMessageInfo(mi)
  1184. }
  1185. return ms
  1186. }
  1187. return mi.MessageOf(x)
  1188. }
  1189. // Deprecated: Use TestNestedExtension.ProtoReflect.Descriptor instead.
  1190. func (*TestNestedExtension) Descriptor() ([]byte, []int) {
  1191. return file_test_test_proto_rawDescGZIP(), []int{7}
  1192. }
  1193. type TestRequired struct {
  1194. state protoimpl.MessageState
  1195. sizeCache protoimpl.SizeCache
  1196. unknownFields protoimpl.UnknownFields
  1197. RequiredField *int32 `protobuf:"varint,1,req,name=required_field,json=requiredField" json:"required_field,omitempty"`
  1198. }
  1199. func (x *TestRequired) Reset() {
  1200. *x = TestRequired{}
  1201. }
  1202. func (x *TestRequired) String() string {
  1203. return protoimpl.X.MessageStringOf(x)
  1204. }
  1205. func (*TestRequired) ProtoMessage() {}
  1206. func (x *TestRequired) ProtoReflect() protoreflect.Message {
  1207. mi := &file_test_test_proto_msgTypes[8]
  1208. if protoimpl.UnsafeEnabled && x != nil {
  1209. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1210. if ms.LoadMessageInfo() == nil {
  1211. ms.StoreMessageInfo(mi)
  1212. }
  1213. return ms
  1214. }
  1215. return mi.MessageOf(x)
  1216. }
  1217. // Deprecated: Use TestRequired.ProtoReflect.Descriptor instead.
  1218. func (*TestRequired) Descriptor() ([]byte, []int) {
  1219. return file_test_test_proto_rawDescGZIP(), []int{8}
  1220. }
  1221. func (x *TestRequired) GetRequiredField() int32 {
  1222. if x != nil && x.RequiredField != nil {
  1223. return *x.RequiredField
  1224. }
  1225. return 0
  1226. }
  1227. type TestRequiredForeign struct {
  1228. state protoimpl.MessageState
  1229. sizeCache protoimpl.SizeCache
  1230. unknownFields protoimpl.UnknownFields
  1231. OptionalMessage *TestRequired `protobuf:"bytes,1,opt,name=optional_message,json=optionalMessage" json:"optional_message,omitempty"`
  1232. RepeatedMessage []*TestRequired `protobuf:"bytes,2,rep,name=repeated_message,json=repeatedMessage" json:"repeated_message,omitempty"`
  1233. MapMessage map[int32]*TestRequired `protobuf:"bytes,3,rep,name=map_message,json=mapMessage" json:"map_message,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1234. // Types that are assignable to OneofField:
  1235. // *TestRequiredForeign_OneofMessage
  1236. OneofField isTestRequiredForeign_OneofField `protobuf_oneof:"oneof_field"`
  1237. }
  1238. func (x *TestRequiredForeign) Reset() {
  1239. *x = TestRequiredForeign{}
  1240. }
  1241. func (x *TestRequiredForeign) String() string {
  1242. return protoimpl.X.MessageStringOf(x)
  1243. }
  1244. func (*TestRequiredForeign) ProtoMessage() {}
  1245. func (x *TestRequiredForeign) ProtoReflect() protoreflect.Message {
  1246. mi := &file_test_test_proto_msgTypes[9]
  1247. if protoimpl.UnsafeEnabled && x != nil {
  1248. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1249. if ms.LoadMessageInfo() == nil {
  1250. ms.StoreMessageInfo(mi)
  1251. }
  1252. return ms
  1253. }
  1254. return mi.MessageOf(x)
  1255. }
  1256. // Deprecated: Use TestRequiredForeign.ProtoReflect.Descriptor instead.
  1257. func (*TestRequiredForeign) Descriptor() ([]byte, []int) {
  1258. return file_test_test_proto_rawDescGZIP(), []int{9}
  1259. }
  1260. func (x *TestRequiredForeign) GetOptionalMessage() *TestRequired {
  1261. if x != nil {
  1262. return x.OptionalMessage
  1263. }
  1264. return nil
  1265. }
  1266. func (x *TestRequiredForeign) GetRepeatedMessage() []*TestRequired {
  1267. if x != nil {
  1268. return x.RepeatedMessage
  1269. }
  1270. return nil
  1271. }
  1272. func (x *TestRequiredForeign) GetMapMessage() map[int32]*TestRequired {
  1273. if x != nil {
  1274. return x.MapMessage
  1275. }
  1276. return nil
  1277. }
  1278. func (m *TestRequiredForeign) GetOneofField() isTestRequiredForeign_OneofField {
  1279. if m != nil {
  1280. return m.OneofField
  1281. }
  1282. return nil
  1283. }
  1284. func (x *TestRequiredForeign) GetOneofMessage() *TestRequired {
  1285. if x, ok := x.GetOneofField().(*TestRequiredForeign_OneofMessage); ok {
  1286. return x.OneofMessage
  1287. }
  1288. return nil
  1289. }
  1290. type isTestRequiredForeign_OneofField interface {
  1291. isTestRequiredForeign_OneofField()
  1292. }
  1293. type TestRequiredForeign_OneofMessage struct {
  1294. OneofMessage *TestRequired `protobuf:"bytes,4,opt,name=oneof_message,json=oneofMessage,oneof"`
  1295. }
  1296. func (*TestRequiredForeign_OneofMessage) isTestRequiredForeign_OneofField() {}
  1297. type TestRequiredGroupFields struct {
  1298. state protoimpl.MessageState
  1299. sizeCache protoimpl.SizeCache
  1300. unknownFields protoimpl.UnknownFields
  1301. Optionalgroup *TestRequiredGroupFields_OptionalGroup `protobuf:"group,1,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"`
  1302. Repeatedgroup []*TestRequiredGroupFields_RepeatedGroup `protobuf:"group,3,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"`
  1303. }
  1304. func (x *TestRequiredGroupFields) Reset() {
  1305. *x = TestRequiredGroupFields{}
  1306. }
  1307. func (x *TestRequiredGroupFields) String() string {
  1308. return protoimpl.X.MessageStringOf(x)
  1309. }
  1310. func (*TestRequiredGroupFields) ProtoMessage() {}
  1311. func (x *TestRequiredGroupFields) ProtoReflect() protoreflect.Message {
  1312. mi := &file_test_test_proto_msgTypes[10]
  1313. if protoimpl.UnsafeEnabled && x != nil {
  1314. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1315. if ms.LoadMessageInfo() == nil {
  1316. ms.StoreMessageInfo(mi)
  1317. }
  1318. return ms
  1319. }
  1320. return mi.MessageOf(x)
  1321. }
  1322. // Deprecated: Use TestRequiredGroupFields.ProtoReflect.Descriptor instead.
  1323. func (*TestRequiredGroupFields) Descriptor() ([]byte, []int) {
  1324. return file_test_test_proto_rawDescGZIP(), []int{10}
  1325. }
  1326. func (x *TestRequiredGroupFields) GetOptionalgroup() *TestRequiredGroupFields_OptionalGroup {
  1327. if x != nil {
  1328. return x.Optionalgroup
  1329. }
  1330. return nil
  1331. }
  1332. func (x *TestRequiredGroupFields) GetRepeatedgroup() []*TestRequiredGroupFields_RepeatedGroup {
  1333. if x != nil {
  1334. return x.Repeatedgroup
  1335. }
  1336. return nil
  1337. }
  1338. type TestWeak struct {
  1339. state protoimpl.MessageState
  1340. sizeCache protoimpl.SizeCache
  1341. XXX_weak protoimpl.WeakFields `json:"-"`
  1342. unknownFields protoimpl.UnknownFields
  1343. XXX_weak_WeakMessage1 struct{} `protobuf:"bytes,1,opt,name=weak_message1,json=weakMessage1,weak=goproto.proto.test.weak.WeakImportMessage1" json:"weak_message1,omitempty"`
  1344. XXX_weak_WeakMessage2 struct{} `protobuf:"bytes,2,opt,name=weak_message2,json=weakMessage2,weak=goproto.proto.test.weak.WeakImportMessage2" json:"weak_message2,omitempty"`
  1345. }
  1346. func (x *TestWeak) Reset() {
  1347. *x = TestWeak{}
  1348. }
  1349. func (x *TestWeak) String() string {
  1350. return protoimpl.X.MessageStringOf(x)
  1351. }
  1352. func (*TestWeak) ProtoMessage() {}
  1353. func (x *TestWeak) ProtoReflect() protoreflect.Message {
  1354. mi := &file_test_test_proto_msgTypes[11]
  1355. if protoimpl.UnsafeEnabled && x != nil {
  1356. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1357. if ms.LoadMessageInfo() == nil {
  1358. ms.StoreMessageInfo(mi)
  1359. }
  1360. return ms
  1361. }
  1362. return mi.MessageOf(x)
  1363. }
  1364. // Deprecated: Use TestWeak.ProtoReflect.Descriptor instead.
  1365. func (*TestWeak) Descriptor() ([]byte, []int) {
  1366. return file_test_test_proto_rawDescGZIP(), []int{11}
  1367. }
  1368. func (x *TestWeak) GetWeakMessage1() protoiface.MessageV1 {
  1369. if x != nil {
  1370. v := x.XXX_weak[1]
  1371. _ = x.XXX_weak_WeakMessage1
  1372. if v != nil {
  1373. return v
  1374. }
  1375. }
  1376. return protoimpl.X.WeakNil("goproto.proto.test.weak.WeakImportMessage1")
  1377. }
  1378. func (x *TestWeak) GetWeakMessage2() protoiface.MessageV1 {
  1379. if x != nil {
  1380. v := x.XXX_weak[2]
  1381. _ = x.XXX_weak_WeakMessage2
  1382. if v != nil {
  1383. return v
  1384. }
  1385. }
  1386. return protoimpl.X.WeakNil("goproto.proto.test.weak.WeakImportMessage2")
  1387. }
  1388. func (x *TestWeak) SetWeakMessage1(v protoiface.MessageV1) {
  1389. if x.XXX_weak == nil {
  1390. x.XXX_weak = make(protoimpl.WeakFields)
  1391. }
  1392. if v == nil {
  1393. delete(x.XXX_weak, 1)
  1394. } else {
  1395. x.XXX_weak[1] = v
  1396. x.XXX_weak_WeakMessage1 = struct{}{}
  1397. }
  1398. }
  1399. func (x *TestWeak) SetWeakMessage2(v protoiface.MessageV1) {
  1400. if x.XXX_weak == nil {
  1401. x.XXX_weak = make(protoimpl.WeakFields)
  1402. }
  1403. if v == nil {
  1404. delete(x.XXX_weak, 2)
  1405. } else {
  1406. x.XXX_weak[2] = v
  1407. x.XXX_weak_WeakMessage2 = struct{}{}
  1408. }
  1409. }
  1410. type TestPackedTypes struct {
  1411. state protoimpl.MessageState
  1412. sizeCache protoimpl.SizeCache
  1413. unknownFields protoimpl.UnknownFields
  1414. PackedInt32 []int32 `protobuf:"varint,90,rep,packed,name=packed_int32,json=packedInt32" json:"packed_int32,omitempty"`
  1415. PackedInt64 []int64 `protobuf:"varint,91,rep,packed,name=packed_int64,json=packedInt64" json:"packed_int64,omitempty"`
  1416. PackedUint32 []uint32 `protobuf:"varint,92,rep,packed,name=packed_uint32,json=packedUint32" json:"packed_uint32,omitempty"`
  1417. PackedUint64 []uint64 `protobuf:"varint,93,rep,packed,name=packed_uint64,json=packedUint64" json:"packed_uint64,omitempty"`
  1418. PackedSint32 []int32 `protobuf:"zigzag32,94,rep,packed,name=packed_sint32,json=packedSint32" json:"packed_sint32,omitempty"`
  1419. PackedSint64 []int64 `protobuf:"zigzag64,95,rep,packed,name=packed_sint64,json=packedSint64" json:"packed_sint64,omitempty"`
  1420. PackedFixed32 []uint32 `protobuf:"fixed32,96,rep,packed,name=packed_fixed32,json=packedFixed32" json:"packed_fixed32,omitempty"`
  1421. PackedFixed64 []uint64 `protobuf:"fixed64,97,rep,packed,name=packed_fixed64,json=packedFixed64" json:"packed_fixed64,omitempty"`
  1422. PackedSfixed32 []int32 `protobuf:"fixed32,98,rep,packed,name=packed_sfixed32,json=packedSfixed32" json:"packed_sfixed32,omitempty"`
  1423. PackedSfixed64 []int64 `protobuf:"fixed64,99,rep,packed,name=packed_sfixed64,json=packedSfixed64" json:"packed_sfixed64,omitempty"`
  1424. PackedFloat []float32 `protobuf:"fixed32,100,rep,packed,name=packed_float,json=packedFloat" json:"packed_float,omitempty"`
  1425. PackedDouble []float64 `protobuf:"fixed64,101,rep,packed,name=packed_double,json=packedDouble" json:"packed_double,omitempty"`
  1426. PackedBool []bool `protobuf:"varint,102,rep,packed,name=packed_bool,json=packedBool" json:"packed_bool,omitempty"`
  1427. PackedEnum []ForeignEnum `protobuf:"varint,103,rep,packed,name=packed_enum,json=packedEnum,enum=goproto.proto.test.ForeignEnum" json:"packed_enum,omitempty"`
  1428. }
  1429. func (x *TestPackedTypes) Reset() {
  1430. *x = TestPackedTypes{}
  1431. }
  1432. func (x *TestPackedTypes) String() string {
  1433. return protoimpl.X.MessageStringOf(x)
  1434. }
  1435. func (*TestPackedTypes) ProtoMessage() {}
  1436. func (x *TestPackedTypes) ProtoReflect() protoreflect.Message {
  1437. mi := &file_test_test_proto_msgTypes[12]
  1438. if protoimpl.UnsafeEnabled && x != nil {
  1439. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1440. if ms.LoadMessageInfo() == nil {
  1441. ms.StoreMessageInfo(mi)
  1442. }
  1443. return ms
  1444. }
  1445. return mi.MessageOf(x)
  1446. }
  1447. // Deprecated: Use TestPackedTypes.ProtoReflect.Descriptor instead.
  1448. func (*TestPackedTypes) Descriptor() ([]byte, []int) {
  1449. return file_test_test_proto_rawDescGZIP(), []int{12}
  1450. }
  1451. func (x *TestPackedTypes) GetPackedInt32() []int32 {
  1452. if x != nil {
  1453. return x.PackedInt32
  1454. }
  1455. return nil
  1456. }
  1457. func (x *TestPackedTypes) GetPackedInt64() []int64 {
  1458. if x != nil {
  1459. return x.PackedInt64
  1460. }
  1461. return nil
  1462. }
  1463. func (x *TestPackedTypes) GetPackedUint32() []uint32 {
  1464. if x != nil {
  1465. return x.PackedUint32
  1466. }
  1467. return nil
  1468. }
  1469. func (x *TestPackedTypes) GetPackedUint64() []uint64 {
  1470. if x != nil {
  1471. return x.PackedUint64
  1472. }
  1473. return nil
  1474. }
  1475. func (x *TestPackedTypes) GetPackedSint32() []int32 {
  1476. if x != nil {
  1477. return x.PackedSint32
  1478. }
  1479. return nil
  1480. }
  1481. func (x *TestPackedTypes) GetPackedSint64() []int64 {
  1482. if x != nil {
  1483. return x.PackedSint64
  1484. }
  1485. return nil
  1486. }
  1487. func (x *TestPackedTypes) GetPackedFixed32() []uint32 {
  1488. if x != nil {
  1489. return x.PackedFixed32
  1490. }
  1491. return nil
  1492. }
  1493. func (x *TestPackedTypes) GetPackedFixed64() []uint64 {
  1494. if x != nil {
  1495. return x.PackedFixed64
  1496. }
  1497. return nil
  1498. }
  1499. func (x *TestPackedTypes) GetPackedSfixed32() []int32 {
  1500. if x != nil {
  1501. return x.PackedSfixed32
  1502. }
  1503. return nil
  1504. }
  1505. func (x *TestPackedTypes) GetPackedSfixed64() []int64 {
  1506. if x != nil {
  1507. return x.PackedSfixed64
  1508. }
  1509. return nil
  1510. }
  1511. func (x *TestPackedTypes) GetPackedFloat() []float32 {
  1512. if x != nil {
  1513. return x.PackedFloat
  1514. }
  1515. return nil
  1516. }
  1517. func (x *TestPackedTypes) GetPackedDouble() []float64 {
  1518. if x != nil {
  1519. return x.PackedDouble
  1520. }
  1521. return nil
  1522. }
  1523. func (x *TestPackedTypes) GetPackedBool() []bool {
  1524. if x != nil {
  1525. return x.PackedBool
  1526. }
  1527. return nil
  1528. }
  1529. func (x *TestPackedTypes) GetPackedEnum() []ForeignEnum {
  1530. if x != nil {
  1531. return x.PackedEnum
  1532. }
  1533. return nil
  1534. }
  1535. type TestUnpackedTypes struct {
  1536. state protoimpl.MessageState
  1537. sizeCache protoimpl.SizeCache
  1538. unknownFields protoimpl.UnknownFields
  1539. UnpackedInt32 []int32 `protobuf:"varint,90,rep,name=unpacked_int32,json=unpackedInt32" json:"unpacked_int32,omitempty"`
  1540. UnpackedInt64 []int64 `protobuf:"varint,91,rep,name=unpacked_int64,json=unpackedInt64" json:"unpacked_int64,omitempty"`
  1541. UnpackedUint32 []uint32 `protobuf:"varint,92,rep,name=unpacked_uint32,json=unpackedUint32" json:"unpacked_uint32,omitempty"`
  1542. UnpackedUint64 []uint64 `protobuf:"varint,93,rep,name=unpacked_uint64,json=unpackedUint64" json:"unpacked_uint64,omitempty"`
  1543. UnpackedSint32 []int32 `protobuf:"zigzag32,94,rep,name=unpacked_sint32,json=unpackedSint32" json:"unpacked_sint32,omitempty"`
  1544. UnpackedSint64 []int64 `protobuf:"zigzag64,95,rep,name=unpacked_sint64,json=unpackedSint64" json:"unpacked_sint64,omitempty"`
  1545. UnpackedFixed32 []uint32 `protobuf:"fixed32,96,rep,name=unpacked_fixed32,json=unpackedFixed32" json:"unpacked_fixed32,omitempty"`
  1546. UnpackedFixed64 []uint64 `protobuf:"fixed64,97,rep,name=unpacked_fixed64,json=unpackedFixed64" json:"unpacked_fixed64,omitempty"`
  1547. UnpackedSfixed32 []int32 `protobuf:"fixed32,98,rep,name=unpacked_sfixed32,json=unpackedSfixed32" json:"unpacked_sfixed32,omitempty"`
  1548. UnpackedSfixed64 []int64 `protobuf:"fixed64,99,rep,name=unpacked_sfixed64,json=unpackedSfixed64" json:"unpacked_sfixed64,omitempty"`
  1549. UnpackedFloat []float32 `protobuf:"fixed32,100,rep,name=unpacked_float,json=unpackedFloat" json:"unpacked_float,omitempty"`
  1550. UnpackedDouble []float64 `protobuf:"fixed64,101,rep,name=unpacked_double,json=unpackedDouble" json:"unpacked_double,omitempty"`
  1551. UnpackedBool []bool `protobuf:"varint,102,rep,name=unpacked_bool,json=unpackedBool" json:"unpacked_bool,omitempty"`
  1552. UnpackedEnum []ForeignEnum `protobuf:"varint,103,rep,name=unpacked_enum,json=unpackedEnum,enum=goproto.proto.test.ForeignEnum" json:"unpacked_enum,omitempty"`
  1553. }
  1554. func (x *TestUnpackedTypes) Reset() {
  1555. *x = TestUnpackedTypes{}
  1556. }
  1557. func (x *TestUnpackedTypes) String() string {
  1558. return protoimpl.X.MessageStringOf(x)
  1559. }
  1560. func (*TestUnpackedTypes) ProtoMessage() {}
  1561. func (x *TestUnpackedTypes) ProtoReflect() protoreflect.Message {
  1562. mi := &file_test_test_proto_msgTypes[13]
  1563. if protoimpl.UnsafeEnabled && x != nil {
  1564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1565. if ms.LoadMessageInfo() == nil {
  1566. ms.StoreMessageInfo(mi)
  1567. }
  1568. return ms
  1569. }
  1570. return mi.MessageOf(x)
  1571. }
  1572. // Deprecated: Use TestUnpackedTypes.ProtoReflect.Descriptor instead.
  1573. func (*TestUnpackedTypes) Descriptor() ([]byte, []int) {
  1574. return file_test_test_proto_rawDescGZIP(), []int{13}
  1575. }
  1576. func (x *TestUnpackedTypes) GetUnpackedInt32() []int32 {
  1577. if x != nil {
  1578. return x.UnpackedInt32
  1579. }
  1580. return nil
  1581. }
  1582. func (x *TestUnpackedTypes) GetUnpackedInt64() []int64 {
  1583. if x != nil {
  1584. return x.UnpackedInt64
  1585. }
  1586. return nil
  1587. }
  1588. func (x *TestUnpackedTypes) GetUnpackedUint32() []uint32 {
  1589. if x != nil {
  1590. return x.UnpackedUint32
  1591. }
  1592. return nil
  1593. }
  1594. func (x *TestUnpackedTypes) GetUnpackedUint64() []uint64 {
  1595. if x != nil {
  1596. return x.UnpackedUint64
  1597. }
  1598. return nil
  1599. }
  1600. func (x *TestUnpackedTypes) GetUnpackedSint32() []int32 {
  1601. if x != nil {
  1602. return x.UnpackedSint32
  1603. }
  1604. return nil
  1605. }
  1606. func (x *TestUnpackedTypes) GetUnpackedSint64() []int64 {
  1607. if x != nil {
  1608. return x.UnpackedSint64
  1609. }
  1610. return nil
  1611. }
  1612. func (x *TestUnpackedTypes) GetUnpackedFixed32() []uint32 {
  1613. if x != nil {
  1614. return x.UnpackedFixed32
  1615. }
  1616. return nil
  1617. }
  1618. func (x *TestUnpackedTypes) GetUnpackedFixed64() []uint64 {
  1619. if x != nil {
  1620. return x.UnpackedFixed64
  1621. }
  1622. return nil
  1623. }
  1624. func (x *TestUnpackedTypes) GetUnpackedSfixed32() []int32 {
  1625. if x != nil {
  1626. return x.UnpackedSfixed32
  1627. }
  1628. return nil
  1629. }
  1630. func (x *TestUnpackedTypes) GetUnpackedSfixed64() []int64 {
  1631. if x != nil {
  1632. return x.UnpackedSfixed64
  1633. }
  1634. return nil
  1635. }
  1636. func (x *TestUnpackedTypes) GetUnpackedFloat() []float32 {
  1637. if x != nil {
  1638. return x.UnpackedFloat
  1639. }
  1640. return nil
  1641. }
  1642. func (x *TestUnpackedTypes) GetUnpackedDouble() []float64 {
  1643. if x != nil {
  1644. return x.UnpackedDouble
  1645. }
  1646. return nil
  1647. }
  1648. func (x *TestUnpackedTypes) GetUnpackedBool() []bool {
  1649. if x != nil {
  1650. return x.UnpackedBool
  1651. }
  1652. return nil
  1653. }
  1654. func (x *TestUnpackedTypes) GetUnpackedEnum() []ForeignEnum {
  1655. if x != nil {
  1656. return x.UnpackedEnum
  1657. }
  1658. return nil
  1659. }
  1660. type TestPackedExtensions struct {
  1661. state protoimpl.MessageState
  1662. sizeCache protoimpl.SizeCache
  1663. unknownFields protoimpl.UnknownFields
  1664. extensionFields protoimpl.ExtensionFields
  1665. }
  1666. func (x *TestPackedExtensions) Reset() {
  1667. *x = TestPackedExtensions{}
  1668. }
  1669. func (x *TestPackedExtensions) String() string {
  1670. return protoimpl.X.MessageStringOf(x)
  1671. }
  1672. func (*TestPackedExtensions) ProtoMessage() {}
  1673. func (x *TestPackedExtensions) ProtoReflect() protoreflect.Message {
  1674. mi := &file_test_test_proto_msgTypes[14]
  1675. if protoimpl.UnsafeEnabled && x != nil {
  1676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1677. if ms.LoadMessageInfo() == nil {
  1678. ms.StoreMessageInfo(mi)
  1679. }
  1680. return ms
  1681. }
  1682. return mi.MessageOf(x)
  1683. }
  1684. // Deprecated: Use TestPackedExtensions.ProtoReflect.Descriptor instead.
  1685. func (*TestPackedExtensions) Descriptor() ([]byte, []int) {
  1686. return file_test_test_proto_rawDescGZIP(), []int{14}
  1687. }
  1688. var extRange_TestPackedExtensions = []protoiface.ExtensionRangeV1{
  1689. {Start: 1, End: 536870911},
  1690. }
  1691. // Deprecated: Use TestPackedExtensions.ProtoReflect.Descriptor.ExtensionRanges instead.
  1692. func (*TestPackedExtensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  1693. return extRange_TestPackedExtensions
  1694. }
  1695. type TestUnpackedExtensions struct {
  1696. state protoimpl.MessageState
  1697. sizeCache protoimpl.SizeCache
  1698. unknownFields protoimpl.UnknownFields
  1699. extensionFields protoimpl.ExtensionFields
  1700. }
  1701. func (x *TestUnpackedExtensions) Reset() {
  1702. *x = TestUnpackedExtensions{}
  1703. }
  1704. func (x *TestUnpackedExtensions) String() string {
  1705. return protoimpl.X.MessageStringOf(x)
  1706. }
  1707. func (*TestUnpackedExtensions) ProtoMessage() {}
  1708. func (x *TestUnpackedExtensions) ProtoReflect() protoreflect.Message {
  1709. mi := &file_test_test_proto_msgTypes[15]
  1710. if protoimpl.UnsafeEnabled && x != nil {
  1711. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1712. if ms.LoadMessageInfo() == nil {
  1713. ms.StoreMessageInfo(mi)
  1714. }
  1715. return ms
  1716. }
  1717. return mi.MessageOf(x)
  1718. }
  1719. // Deprecated: Use TestUnpackedExtensions.ProtoReflect.Descriptor instead.
  1720. func (*TestUnpackedExtensions) Descriptor() ([]byte, []int) {
  1721. return file_test_test_proto_rawDescGZIP(), []int{15}
  1722. }
  1723. var extRange_TestUnpackedExtensions = []protoiface.ExtensionRangeV1{
  1724. {Start: 1, End: 536870911},
  1725. }
  1726. // Deprecated: Use TestUnpackedExtensions.ProtoReflect.Descriptor.ExtensionRanges instead.
  1727. func (*TestUnpackedExtensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  1728. return extRange_TestUnpackedExtensions
  1729. }
  1730. // Test that RPC services work.
  1731. type FooRequest struct {
  1732. state protoimpl.MessageState
  1733. sizeCache protoimpl.SizeCache
  1734. unknownFields protoimpl.UnknownFields
  1735. }
  1736. func (x *FooRequest) Reset() {
  1737. *x = FooRequest{}
  1738. }
  1739. func (x *FooRequest) String() string {
  1740. return protoimpl.X.MessageStringOf(x)
  1741. }
  1742. func (*FooRequest) ProtoMessage() {}
  1743. func (x *FooRequest) ProtoReflect() protoreflect.Message {
  1744. mi := &file_test_test_proto_msgTypes[16]
  1745. if protoimpl.UnsafeEnabled && x != nil {
  1746. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1747. if ms.LoadMessageInfo() == nil {
  1748. ms.StoreMessageInfo(mi)
  1749. }
  1750. return ms
  1751. }
  1752. return mi.MessageOf(x)
  1753. }
  1754. // Deprecated: Use FooRequest.ProtoReflect.Descriptor instead.
  1755. func (*FooRequest) Descriptor() ([]byte, []int) {
  1756. return file_test_test_proto_rawDescGZIP(), []int{16}
  1757. }
  1758. type FooResponse struct {
  1759. state protoimpl.MessageState
  1760. sizeCache protoimpl.SizeCache
  1761. unknownFields protoimpl.UnknownFields
  1762. }
  1763. func (x *FooResponse) Reset() {
  1764. *x = FooResponse{}
  1765. }
  1766. func (x *FooResponse) String() string {
  1767. return protoimpl.X.MessageStringOf(x)
  1768. }
  1769. func (*FooResponse) ProtoMessage() {}
  1770. func (x *FooResponse) ProtoReflect() protoreflect.Message {
  1771. mi := &file_test_test_proto_msgTypes[17]
  1772. if protoimpl.UnsafeEnabled && x != nil {
  1773. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1774. if ms.LoadMessageInfo() == nil {
  1775. ms.StoreMessageInfo(mi)
  1776. }
  1777. return ms
  1778. }
  1779. return mi.MessageOf(x)
  1780. }
  1781. // Deprecated: Use FooResponse.ProtoReflect.Descriptor instead.
  1782. func (*FooResponse) Descriptor() ([]byte, []int) {
  1783. return file_test_test_proto_rawDescGZIP(), []int{17}
  1784. }
  1785. type WeirdDefault struct {
  1786. state protoimpl.MessageState
  1787. sizeCache protoimpl.SizeCache
  1788. unknownFields protoimpl.UnknownFields
  1789. WeirdDefault []byte `protobuf:"bytes,1,opt,name=weird_default,json=weirdDefault,def=hello, \\\"world!\\\"\\ndead\\336\\255\\276\\357beef\x60" json:"weird_default,omitempty"`
  1790. }
  1791. // Default values for WeirdDefault fields.
  1792. var (
  1793. Default_WeirdDefault_WeirdDefault = []byte("hello, \"world!\"\ndeadޭ\xbe\xefbeef`")
  1794. )
  1795. func (x *WeirdDefault) Reset() {
  1796. *x = WeirdDefault{}
  1797. }
  1798. func (x *WeirdDefault) String() string {
  1799. return protoimpl.X.MessageStringOf(x)
  1800. }
  1801. func (*WeirdDefault) ProtoMessage() {}
  1802. func (x *WeirdDefault) ProtoReflect() protoreflect.Message {
  1803. mi := &file_test_test_proto_msgTypes[18]
  1804. if protoimpl.UnsafeEnabled && x != nil {
  1805. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1806. if ms.LoadMessageInfo() == nil {
  1807. ms.StoreMessageInfo(mi)
  1808. }
  1809. return ms
  1810. }
  1811. return mi.MessageOf(x)
  1812. }
  1813. // Deprecated: Use WeirdDefault.ProtoReflect.Descriptor instead.
  1814. func (*WeirdDefault) Descriptor() ([]byte, []int) {
  1815. return file_test_test_proto_rawDescGZIP(), []int{18}
  1816. }
  1817. func (x *WeirdDefault) GetWeirdDefault() []byte {
  1818. if x != nil && x.WeirdDefault != nil {
  1819. return x.WeirdDefault
  1820. }
  1821. return append([]byte(nil), Default_WeirdDefault_WeirdDefault...)
  1822. }
  1823. type TestAllTypes_NestedMessage struct {
  1824. state protoimpl.MessageState
  1825. sizeCache protoimpl.SizeCache
  1826. unknownFields protoimpl.UnknownFields
  1827. A *int32 `protobuf:"varint,1,opt,name=a" json:"a,omitempty"`
  1828. Corecursive *TestAllTypes `protobuf:"bytes,2,opt,name=corecursive" json:"corecursive,omitempty"`
  1829. }
  1830. func (x *TestAllTypes_NestedMessage) Reset() {
  1831. *x = TestAllTypes_NestedMessage{}
  1832. }
  1833. func (x *TestAllTypes_NestedMessage) String() string {
  1834. return protoimpl.X.MessageStringOf(x)
  1835. }
  1836. func (*TestAllTypes_NestedMessage) ProtoMessage() {}
  1837. func (x *TestAllTypes_NestedMessage) ProtoReflect() protoreflect.Message {
  1838. mi := &file_test_test_proto_msgTypes[19]
  1839. if protoimpl.UnsafeEnabled && x != nil {
  1840. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1841. if ms.LoadMessageInfo() == nil {
  1842. ms.StoreMessageInfo(mi)
  1843. }
  1844. return ms
  1845. }
  1846. return mi.MessageOf(x)
  1847. }
  1848. // Deprecated: Use TestAllTypes_NestedMessage.ProtoReflect.Descriptor instead.
  1849. func (*TestAllTypes_NestedMessage) Descriptor() ([]byte, []int) {
  1850. return file_test_test_proto_rawDescGZIP(), []int{0, 0}
  1851. }
  1852. func (x *TestAllTypes_NestedMessage) GetA() int32 {
  1853. if x != nil && x.A != nil {
  1854. return *x.A
  1855. }
  1856. return 0
  1857. }
  1858. func (x *TestAllTypes_NestedMessage) GetCorecursive() *TestAllTypes {
  1859. if x != nil {
  1860. return x.Corecursive
  1861. }
  1862. return nil
  1863. }
  1864. type TestAllTypes_OptionalGroup struct {
  1865. state protoimpl.MessageState
  1866. sizeCache protoimpl.SizeCache
  1867. unknownFields protoimpl.UnknownFields
  1868. A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"`
  1869. }
  1870. func (x *TestAllTypes_OptionalGroup) Reset() {
  1871. *x = TestAllTypes_OptionalGroup{}
  1872. }
  1873. func (x *TestAllTypes_OptionalGroup) String() string {
  1874. return protoimpl.X.MessageStringOf(x)
  1875. }
  1876. func (*TestAllTypes_OptionalGroup) ProtoMessage() {}
  1877. func (x *TestAllTypes_OptionalGroup) ProtoReflect() protoreflect.Message {
  1878. mi := &file_test_test_proto_msgTypes[20]
  1879. if protoimpl.UnsafeEnabled && x != nil {
  1880. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1881. if ms.LoadMessageInfo() == nil {
  1882. ms.StoreMessageInfo(mi)
  1883. }
  1884. return ms
  1885. }
  1886. return mi.MessageOf(x)
  1887. }
  1888. // Deprecated: Use TestAllTypes_OptionalGroup.ProtoReflect.Descriptor instead.
  1889. func (*TestAllTypes_OptionalGroup) Descriptor() ([]byte, []int) {
  1890. return file_test_test_proto_rawDescGZIP(), []int{0, 1}
  1891. }
  1892. func (x *TestAllTypes_OptionalGroup) GetA() int32 {
  1893. if x != nil && x.A != nil {
  1894. return *x.A
  1895. }
  1896. return 0
  1897. }
  1898. type TestAllTypes_RepeatedGroup struct {
  1899. state protoimpl.MessageState
  1900. sizeCache protoimpl.SizeCache
  1901. unknownFields protoimpl.UnknownFields
  1902. A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"`
  1903. }
  1904. func (x *TestAllTypes_RepeatedGroup) Reset() {
  1905. *x = TestAllTypes_RepeatedGroup{}
  1906. }
  1907. func (x *TestAllTypes_RepeatedGroup) String() string {
  1908. return protoimpl.X.MessageStringOf(x)
  1909. }
  1910. func (*TestAllTypes_RepeatedGroup) ProtoMessage() {}
  1911. func (x *TestAllTypes_RepeatedGroup) ProtoReflect() protoreflect.Message {
  1912. mi := &file_test_test_proto_msgTypes[21]
  1913. if protoimpl.UnsafeEnabled && x != nil {
  1914. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1915. if ms.LoadMessageInfo() == nil {
  1916. ms.StoreMessageInfo(mi)
  1917. }
  1918. return ms
  1919. }
  1920. return mi.MessageOf(x)
  1921. }
  1922. // Deprecated: Use TestAllTypes_RepeatedGroup.ProtoReflect.Descriptor instead.
  1923. func (*TestAllTypes_RepeatedGroup) Descriptor() ([]byte, []int) {
  1924. return file_test_test_proto_rawDescGZIP(), []int{0, 2}
  1925. }
  1926. func (x *TestAllTypes_RepeatedGroup) GetA() int32 {
  1927. if x != nil && x.A != nil {
  1928. return *x.A
  1929. }
  1930. return 0
  1931. }
  1932. type TestRequiredGroupFields_OptionalGroup struct {
  1933. state protoimpl.MessageState
  1934. sizeCache protoimpl.SizeCache
  1935. unknownFields protoimpl.UnknownFields
  1936. A *int32 `protobuf:"varint,2,req,name=a" json:"a,omitempty"`
  1937. }
  1938. func (x *TestRequiredGroupFields_OptionalGroup) Reset() {
  1939. *x = TestRequiredGroupFields_OptionalGroup{}
  1940. }
  1941. func (x *TestRequiredGroupFields_OptionalGroup) String() string {
  1942. return protoimpl.X.MessageStringOf(x)
  1943. }
  1944. func (*TestRequiredGroupFields_OptionalGroup) ProtoMessage() {}
  1945. func (x *TestRequiredGroupFields_OptionalGroup) ProtoReflect() protoreflect.Message {
  1946. mi := &file_test_test_proto_msgTypes[40]
  1947. if protoimpl.UnsafeEnabled && x != nil {
  1948. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1949. if ms.LoadMessageInfo() == nil {
  1950. ms.StoreMessageInfo(mi)
  1951. }
  1952. return ms
  1953. }
  1954. return mi.MessageOf(x)
  1955. }
  1956. // Deprecated: Use TestRequiredGroupFields_OptionalGroup.ProtoReflect.Descriptor instead.
  1957. func (*TestRequiredGroupFields_OptionalGroup) Descriptor() ([]byte, []int) {
  1958. return file_test_test_proto_rawDescGZIP(), []int{10, 0}
  1959. }
  1960. func (x *TestRequiredGroupFields_OptionalGroup) GetA() int32 {
  1961. if x != nil && x.A != nil {
  1962. return *x.A
  1963. }
  1964. return 0
  1965. }
  1966. type TestRequiredGroupFields_RepeatedGroup struct {
  1967. state protoimpl.MessageState
  1968. sizeCache protoimpl.SizeCache
  1969. unknownFields protoimpl.UnknownFields
  1970. A *int32 `protobuf:"varint,4,req,name=a" json:"a,omitempty"`
  1971. }
  1972. func (x *TestRequiredGroupFields_RepeatedGroup) Reset() {
  1973. *x = TestRequiredGroupFields_RepeatedGroup{}
  1974. }
  1975. func (x *TestRequiredGroupFields_RepeatedGroup) String() string {
  1976. return protoimpl.X.MessageStringOf(x)
  1977. }
  1978. func (*TestRequiredGroupFields_RepeatedGroup) ProtoMessage() {}
  1979. func (x *TestRequiredGroupFields_RepeatedGroup) ProtoReflect() protoreflect.Message {
  1980. mi := &file_test_test_proto_msgTypes[41]
  1981. if protoimpl.UnsafeEnabled && x != nil {
  1982. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1983. if ms.LoadMessageInfo() == nil {
  1984. ms.StoreMessageInfo(mi)
  1985. }
  1986. return ms
  1987. }
  1988. return mi.MessageOf(x)
  1989. }
  1990. // Deprecated: Use TestRequiredGroupFields_RepeatedGroup.ProtoReflect.Descriptor instead.
  1991. func (*TestRequiredGroupFields_RepeatedGroup) Descriptor() ([]byte, []int) {
  1992. return file_test_test_proto_rawDescGZIP(), []int{10, 1}
  1993. }
  1994. func (x *TestRequiredGroupFields_RepeatedGroup) GetA() int32 {
  1995. if x != nil && x.A != nil {
  1996. return *x.A
  1997. }
  1998. return 0
  1999. }
  2000. var file_test_test_proto_extTypes = []protoimpl.ExtensionInfo{
  2001. {
  2002. ExtendedType: (*TestAllExtensions)(nil),
  2003. ExtensionType: (*int32)(nil),
  2004. Field: 1,
  2005. Name: "goproto.proto.test.optional_int32_extension",
  2006. Tag: "varint,1,opt,name=optional_int32_extension",
  2007. Filename: "test/test.proto",
  2008. },
  2009. {
  2010. ExtendedType: (*TestAllExtensions)(nil),
  2011. ExtensionType: (*int64)(nil),
  2012. Field: 2,
  2013. Name: "goproto.proto.test.optional_int64_extension",
  2014. Tag: "varint,2,opt,name=optional_int64_extension",
  2015. Filename: "test/test.proto",
  2016. },
  2017. {
  2018. ExtendedType: (*TestAllExtensions)(nil),
  2019. ExtensionType: (*uint32)(nil),
  2020. Field: 3,
  2021. Name: "goproto.proto.test.optional_uint32_extension",
  2022. Tag: "varint,3,opt,name=optional_uint32_extension",
  2023. Filename: "test/test.proto",
  2024. },
  2025. {
  2026. ExtendedType: (*TestAllExtensions)(nil),
  2027. ExtensionType: (*uint64)(nil),
  2028. Field: 4,
  2029. Name: "goproto.proto.test.optional_uint64_extension",
  2030. Tag: "varint,4,opt,name=optional_uint64_extension",
  2031. Filename: "test/test.proto",
  2032. },
  2033. {
  2034. ExtendedType: (*TestAllExtensions)(nil),
  2035. ExtensionType: (*int32)(nil),
  2036. Field: 5,
  2037. Name: "goproto.proto.test.optional_sint32_extension",
  2038. Tag: "zigzag32,5,opt,name=optional_sint32_extension",
  2039. Filename: "test/test.proto",
  2040. },
  2041. {
  2042. ExtendedType: (*TestAllExtensions)(nil),
  2043. ExtensionType: (*int64)(nil),
  2044. Field: 6,
  2045. Name: "goproto.proto.test.optional_sint64_extension",
  2046. Tag: "zigzag64,6,opt,name=optional_sint64_extension",
  2047. Filename: "test/test.proto",
  2048. },
  2049. {
  2050. ExtendedType: (*TestAllExtensions)(nil),
  2051. ExtensionType: (*uint32)(nil),
  2052. Field: 7,
  2053. Name: "goproto.proto.test.optional_fixed32_extension",
  2054. Tag: "fixed32,7,opt,name=optional_fixed32_extension",
  2055. Filename: "test/test.proto",
  2056. },
  2057. {
  2058. ExtendedType: (*TestAllExtensions)(nil),
  2059. ExtensionType: (*uint64)(nil),
  2060. Field: 8,
  2061. Name: "goproto.proto.test.optional_fixed64_extension",
  2062. Tag: "fixed64,8,opt,name=optional_fixed64_extension",
  2063. Filename: "test/test.proto",
  2064. },
  2065. {
  2066. ExtendedType: (*TestAllExtensions)(nil),
  2067. ExtensionType: (*int32)(nil),
  2068. Field: 9,
  2069. Name: "goproto.proto.test.optional_sfixed32_extension",
  2070. Tag: "fixed32,9,opt,name=optional_sfixed32_extension",
  2071. Filename: "test/test.proto",
  2072. },
  2073. {
  2074. ExtendedType: (*TestAllExtensions)(nil),
  2075. ExtensionType: (*int64)(nil),
  2076. Field: 10,
  2077. Name: "goproto.proto.test.optional_sfixed64_extension",
  2078. Tag: "fixed64,10,opt,name=optional_sfixed64_extension",
  2079. Filename: "test/test.proto",
  2080. },
  2081. {
  2082. ExtendedType: (*TestAllExtensions)(nil),
  2083. ExtensionType: (*float32)(nil),
  2084. Field: 11,
  2085. Name: "goproto.proto.test.optional_float_extension",
  2086. Tag: "fixed32,11,opt,name=optional_float_extension",
  2087. Filename: "test/test.proto",
  2088. },
  2089. {
  2090. ExtendedType: (*TestAllExtensions)(nil),
  2091. ExtensionType: (*float64)(nil),
  2092. Field: 12,
  2093. Name: "goproto.proto.test.optional_double_extension",
  2094. Tag: "fixed64,12,opt,name=optional_double_extension",
  2095. Filename: "test/test.proto",
  2096. },
  2097. {
  2098. ExtendedType: (*TestAllExtensions)(nil),
  2099. ExtensionType: (*bool)(nil),
  2100. Field: 13,
  2101. Name: "goproto.proto.test.optional_bool_extension",
  2102. Tag: "varint,13,opt,name=optional_bool_extension",
  2103. Filename: "test/test.proto",
  2104. },
  2105. {
  2106. ExtendedType: (*TestAllExtensions)(nil),
  2107. ExtensionType: (*string)(nil),
  2108. Field: 14,
  2109. Name: "goproto.proto.test.optional_string_extension",
  2110. Tag: "bytes,14,opt,name=optional_string_extension",
  2111. Filename: "test/test.proto",
  2112. },
  2113. {
  2114. ExtendedType: (*TestAllExtensions)(nil),
  2115. ExtensionType: ([]byte)(nil),
  2116. Field: 15,
  2117. Name: "goproto.proto.test.optional_bytes_extension",
  2118. Tag: "bytes,15,opt,name=optional_bytes_extension",
  2119. Filename: "test/test.proto",
  2120. },
  2121. {
  2122. ExtendedType: (*TestAllExtensions)(nil),
  2123. ExtensionType: (*OptionalGroupExtension)(nil),
  2124. Field: 16,
  2125. Name: "goproto.proto.test.optionalgroup_extension",
  2126. Tag: "group,16,opt,name=OptionalGroup_extension",
  2127. Filename: "test/test.proto",
  2128. },
  2129. {
  2130. ExtendedType: (*TestAllExtensions)(nil),
  2131. ExtensionType: (*TestAllTypes_NestedMessage)(nil),
  2132. Field: 18,
  2133. Name: "goproto.proto.test.optional_nested_message_extension",
  2134. Tag: "bytes,18,opt,name=optional_nested_message_extension",
  2135. Filename: "test/test.proto",
  2136. },
  2137. {
  2138. ExtendedType: (*TestAllExtensions)(nil),
  2139. ExtensionType: (*TestAllTypes_NestedEnum)(nil),
  2140. Field: 21,
  2141. Name: "goproto.proto.test.optional_nested_enum_extension",
  2142. Tag: "varint,21,opt,name=optional_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum",
  2143. Filename: "test/test.proto",
  2144. },
  2145. {
  2146. ExtendedType: (*TestAllExtensions)(nil),
  2147. ExtensionType: ([]int32)(nil),
  2148. Field: 31,
  2149. Name: "goproto.proto.test.repeated_int32_extension",
  2150. Tag: "varint,31,rep,name=repeated_int32_extension",
  2151. Filename: "test/test.proto",
  2152. },
  2153. {
  2154. ExtendedType: (*TestAllExtensions)(nil),
  2155. ExtensionType: ([]int64)(nil),
  2156. Field: 32,
  2157. Name: "goproto.proto.test.repeated_int64_extension",
  2158. Tag: "varint,32,rep,name=repeated_int64_extension",
  2159. Filename: "test/test.proto",
  2160. },
  2161. {
  2162. ExtendedType: (*TestAllExtensions)(nil),
  2163. ExtensionType: ([]uint32)(nil),
  2164. Field: 33,
  2165. Name: "goproto.proto.test.repeated_uint32_extension",
  2166. Tag: "varint,33,rep,name=repeated_uint32_extension",
  2167. Filename: "test/test.proto",
  2168. },
  2169. {
  2170. ExtendedType: (*TestAllExtensions)(nil),
  2171. ExtensionType: ([]uint64)(nil),
  2172. Field: 34,
  2173. Name: "goproto.proto.test.repeated_uint64_extension",
  2174. Tag: "varint,34,rep,name=repeated_uint64_extension",
  2175. Filename: "test/test.proto",
  2176. },
  2177. {
  2178. ExtendedType: (*TestAllExtensions)(nil),
  2179. ExtensionType: ([]int32)(nil),
  2180. Field: 35,
  2181. Name: "goproto.proto.test.repeated_sint32_extension",
  2182. Tag: "zigzag32,35,rep,name=repeated_sint32_extension",
  2183. Filename: "test/test.proto",
  2184. },
  2185. {
  2186. ExtendedType: (*TestAllExtensions)(nil),
  2187. ExtensionType: ([]int64)(nil),
  2188. Field: 36,
  2189. Name: "goproto.proto.test.repeated_sint64_extension",
  2190. Tag: "zigzag64,36,rep,name=repeated_sint64_extension",
  2191. Filename: "test/test.proto",
  2192. },
  2193. {
  2194. ExtendedType: (*TestAllExtensions)(nil),
  2195. ExtensionType: ([]uint32)(nil),
  2196. Field: 37,
  2197. Name: "goproto.proto.test.repeated_fixed32_extension",
  2198. Tag: "fixed32,37,rep,name=repeated_fixed32_extension",
  2199. Filename: "test/test.proto",
  2200. },
  2201. {
  2202. ExtendedType: (*TestAllExtensions)(nil),
  2203. ExtensionType: ([]uint64)(nil),
  2204. Field: 38,
  2205. Name: "goproto.proto.test.repeated_fixed64_extension",
  2206. Tag: "fixed64,38,rep,name=repeated_fixed64_extension",
  2207. Filename: "test/test.proto",
  2208. },
  2209. {
  2210. ExtendedType: (*TestAllExtensions)(nil),
  2211. ExtensionType: ([]int32)(nil),
  2212. Field: 39,
  2213. Name: "goproto.proto.test.repeated_sfixed32_extension",
  2214. Tag: "fixed32,39,rep,name=repeated_sfixed32_extension",
  2215. Filename: "test/test.proto",
  2216. },
  2217. {
  2218. ExtendedType: (*TestAllExtensions)(nil),
  2219. ExtensionType: ([]int64)(nil),
  2220. Field: 40,
  2221. Name: "goproto.proto.test.repeated_sfixed64_extension",
  2222. Tag: "fixed64,40,rep,name=repeated_sfixed64_extension",
  2223. Filename: "test/test.proto",
  2224. },
  2225. {
  2226. ExtendedType: (*TestAllExtensions)(nil),
  2227. ExtensionType: ([]float32)(nil),
  2228. Field: 41,
  2229. Name: "goproto.proto.test.repeated_float_extension",
  2230. Tag: "fixed32,41,rep,name=repeated_float_extension",
  2231. Filename: "test/test.proto",
  2232. },
  2233. {
  2234. ExtendedType: (*TestAllExtensions)(nil),
  2235. ExtensionType: ([]float64)(nil),
  2236. Field: 42,
  2237. Name: "goproto.proto.test.repeated_double_extension",
  2238. Tag: "fixed64,42,rep,name=repeated_double_extension",
  2239. Filename: "test/test.proto",
  2240. },
  2241. {
  2242. ExtendedType: (*TestAllExtensions)(nil),
  2243. ExtensionType: ([]bool)(nil),
  2244. Field: 43,
  2245. Name: "goproto.proto.test.repeated_bool_extension",
  2246. Tag: "varint,43,rep,name=repeated_bool_extension",
  2247. Filename: "test/test.proto",
  2248. },
  2249. {
  2250. ExtendedType: (*TestAllExtensions)(nil),
  2251. ExtensionType: ([]string)(nil),
  2252. Field: 44,
  2253. Name: "goproto.proto.test.repeated_string_extension",
  2254. Tag: "bytes,44,rep,name=repeated_string_extension",
  2255. Filename: "test/test.proto",
  2256. },
  2257. {
  2258. ExtendedType: (*TestAllExtensions)(nil),
  2259. ExtensionType: ([][]byte)(nil),
  2260. Field: 45,
  2261. Name: "goproto.proto.test.repeated_bytes_extension",
  2262. Tag: "bytes,45,rep,name=repeated_bytes_extension",
  2263. Filename: "test/test.proto",
  2264. },
  2265. {
  2266. ExtendedType: (*TestAllExtensions)(nil),
  2267. ExtensionType: ([]*RepeatedGroupExtension)(nil),
  2268. Field: 46,
  2269. Name: "goproto.proto.test.repeatedgroup_extension",
  2270. Tag: "group,46,rep,name=RepeatedGroup_extension",
  2271. Filename: "test/test.proto",
  2272. },
  2273. {
  2274. ExtendedType: (*TestAllExtensions)(nil),
  2275. ExtensionType: ([]*TestAllTypes_NestedMessage)(nil),
  2276. Field: 48,
  2277. Name: "goproto.proto.test.repeated_nested_message_extension",
  2278. Tag: "bytes,48,rep,name=repeated_nested_message_extension",
  2279. Filename: "test/test.proto",
  2280. },
  2281. {
  2282. ExtendedType: (*TestAllExtensions)(nil),
  2283. ExtensionType: ([]TestAllTypes_NestedEnum)(nil),
  2284. Field: 51,
  2285. Name: "goproto.proto.test.repeated_nested_enum_extension",
  2286. Tag: "varint,51,rep,name=repeated_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum",
  2287. Filename: "test/test.proto",
  2288. },
  2289. {
  2290. ExtendedType: (*TestAllExtensions)(nil),
  2291. ExtensionType: (*int32)(nil),
  2292. Field: 81,
  2293. Name: "goproto.proto.test.default_int32_extension",
  2294. Tag: "varint,81,opt,name=default_int32_extension,def=81",
  2295. Filename: "test/test.proto",
  2296. },
  2297. {
  2298. ExtendedType: (*TestAllExtensions)(nil),
  2299. ExtensionType: (*int64)(nil),
  2300. Field: 82,
  2301. Name: "goproto.proto.test.default_int64_extension",
  2302. Tag: "varint,82,opt,name=default_int64_extension,def=82",
  2303. Filename: "test/test.proto",
  2304. },
  2305. {
  2306. ExtendedType: (*TestAllExtensions)(nil),
  2307. ExtensionType: (*uint32)(nil),
  2308. Field: 83,
  2309. Name: "goproto.proto.test.default_uint32_extension",
  2310. Tag: "varint,83,opt,name=default_uint32_extension,def=83",
  2311. Filename: "test/test.proto",
  2312. },
  2313. {
  2314. ExtendedType: (*TestAllExtensions)(nil),
  2315. ExtensionType: (*uint64)(nil),
  2316. Field: 84,
  2317. Name: "goproto.proto.test.default_uint64_extension",
  2318. Tag: "varint,84,opt,name=default_uint64_extension,def=84",
  2319. Filename: "test/test.proto",
  2320. },
  2321. {
  2322. ExtendedType: (*TestAllExtensions)(nil),
  2323. ExtensionType: (*int32)(nil),
  2324. Field: 85,
  2325. Name: "goproto.proto.test.default_sint32_extension",
  2326. Tag: "zigzag32,85,opt,name=default_sint32_extension,def=-85",
  2327. Filename: "test/test.proto",
  2328. },
  2329. {
  2330. ExtendedType: (*TestAllExtensions)(nil),
  2331. ExtensionType: (*int64)(nil),
  2332. Field: 86,
  2333. Name: "goproto.proto.test.default_sint64_extension",
  2334. Tag: "zigzag64,86,opt,name=default_sint64_extension,def=86",
  2335. Filename: "test/test.proto",
  2336. },
  2337. {
  2338. ExtendedType: (*TestAllExtensions)(nil),
  2339. ExtensionType: (*uint32)(nil),
  2340. Field: 87,
  2341. Name: "goproto.proto.test.default_fixed32_extension",
  2342. Tag: "fixed32,87,opt,name=default_fixed32_extension,def=87",
  2343. Filename: "test/test.proto",
  2344. },
  2345. {
  2346. ExtendedType: (*TestAllExtensions)(nil),
  2347. ExtensionType: (*uint64)(nil),
  2348. Field: 88,
  2349. Name: "goproto.proto.test.default_fixed64_extension",
  2350. Tag: "fixed64,88,opt,name=default_fixed64_extension,def=88",
  2351. Filename: "test/test.proto",
  2352. },
  2353. {
  2354. ExtendedType: (*TestAllExtensions)(nil),
  2355. ExtensionType: (*int32)(nil),
  2356. Field: 89,
  2357. Name: "goproto.proto.test.default_sfixed32_extension",
  2358. Tag: "fixed32,89,opt,name=default_sfixed32_extension,def=89",
  2359. Filename: "test/test.proto",
  2360. },
  2361. {
  2362. ExtendedType: (*TestAllExtensions)(nil),
  2363. ExtensionType: (*int64)(nil),
  2364. Field: 80,
  2365. Name: "goproto.proto.test.default_sfixed64_extension",
  2366. Tag: "fixed64,80,opt,name=default_sfixed64_extension,def=-90",
  2367. Filename: "test/test.proto",
  2368. },
  2369. {
  2370. ExtendedType: (*TestAllExtensions)(nil),
  2371. ExtensionType: (*float32)(nil),
  2372. Field: 91,
  2373. Name: "goproto.proto.test.default_float_extension",
  2374. Tag: "fixed32,91,opt,name=default_float_extension,def=91.5",
  2375. Filename: "test/test.proto",
  2376. },
  2377. {
  2378. ExtendedType: (*TestAllExtensions)(nil),
  2379. ExtensionType: (*float64)(nil),
  2380. Field: 92,
  2381. Name: "goproto.proto.test.default_double_extension",
  2382. Tag: "fixed64,92,opt,name=default_double_extension,def=92000",
  2383. Filename: "test/test.proto",
  2384. },
  2385. {
  2386. ExtendedType: (*TestAllExtensions)(nil),
  2387. ExtensionType: (*bool)(nil),
  2388. Field: 93,
  2389. Name: "goproto.proto.test.default_bool_extension",
  2390. Tag: "varint,93,opt,name=default_bool_extension,def=1",
  2391. Filename: "test/test.proto",
  2392. },
  2393. {
  2394. ExtendedType: (*TestAllExtensions)(nil),
  2395. ExtensionType: (*string)(nil),
  2396. Field: 94,
  2397. Name: "goproto.proto.test.default_string_extension",
  2398. Tag: "bytes,94,opt,name=default_string_extension,def=hello",
  2399. Filename: "test/test.proto",
  2400. },
  2401. {
  2402. ExtendedType: (*TestAllExtensions)(nil),
  2403. ExtensionType: ([]byte)(nil),
  2404. Field: 95,
  2405. Name: "goproto.proto.test.default_bytes_extension",
  2406. Tag: "bytes,95,opt,name=default_bytes_extension,def=world",
  2407. Filename: "test/test.proto",
  2408. },
  2409. {
  2410. ExtendedType: (*TestPackedExtensions)(nil),
  2411. ExtensionType: ([]int32)(nil),
  2412. Field: 90,
  2413. Name: "goproto.proto.test.packed_int32_extension",
  2414. Tag: "varint,90,rep,packed,name=packed_int32_extension",
  2415. Filename: "test/test.proto",
  2416. },
  2417. {
  2418. ExtendedType: (*TestPackedExtensions)(nil),
  2419. ExtensionType: ([]int64)(nil),
  2420. Field: 91,
  2421. Name: "goproto.proto.test.packed_int64_extension",
  2422. Tag: "varint,91,rep,packed,name=packed_int64_extension",
  2423. Filename: "test/test.proto",
  2424. },
  2425. {
  2426. ExtendedType: (*TestPackedExtensions)(nil),
  2427. ExtensionType: ([]uint32)(nil),
  2428. Field: 92,
  2429. Name: "goproto.proto.test.packed_uint32_extension",
  2430. Tag: "varint,92,rep,packed,name=packed_uint32_extension",
  2431. Filename: "test/test.proto",
  2432. },
  2433. {
  2434. ExtendedType: (*TestPackedExtensions)(nil),
  2435. ExtensionType: ([]uint64)(nil),
  2436. Field: 93,
  2437. Name: "goproto.proto.test.packed_uint64_extension",
  2438. Tag: "varint,93,rep,packed,name=packed_uint64_extension",
  2439. Filename: "test/test.proto",
  2440. },
  2441. {
  2442. ExtendedType: (*TestPackedExtensions)(nil),
  2443. ExtensionType: ([]int32)(nil),
  2444. Field: 94,
  2445. Name: "goproto.proto.test.packed_sint32_extension",
  2446. Tag: "zigzag32,94,rep,packed,name=packed_sint32_extension",
  2447. Filename: "test/test.proto",
  2448. },
  2449. {
  2450. ExtendedType: (*TestPackedExtensions)(nil),
  2451. ExtensionType: ([]int64)(nil),
  2452. Field: 95,
  2453. Name: "goproto.proto.test.packed_sint64_extension",
  2454. Tag: "zigzag64,95,rep,packed,name=packed_sint64_extension",
  2455. Filename: "test/test.proto",
  2456. },
  2457. {
  2458. ExtendedType: (*TestPackedExtensions)(nil),
  2459. ExtensionType: ([]uint32)(nil),
  2460. Field: 96,
  2461. Name: "goproto.proto.test.packed_fixed32_extension",
  2462. Tag: "fixed32,96,rep,packed,name=packed_fixed32_extension",
  2463. Filename: "test/test.proto",
  2464. },
  2465. {
  2466. ExtendedType: (*TestPackedExtensions)(nil),
  2467. ExtensionType: ([]uint64)(nil),
  2468. Field: 97,
  2469. Name: "goproto.proto.test.packed_fixed64_extension",
  2470. Tag: "fixed64,97,rep,packed,name=packed_fixed64_extension",
  2471. Filename: "test/test.proto",
  2472. },
  2473. {
  2474. ExtendedType: (*TestPackedExtensions)(nil),
  2475. ExtensionType: ([]int32)(nil),
  2476. Field: 98,
  2477. Name: "goproto.proto.test.packed_sfixed32_extension",
  2478. Tag: "fixed32,98,rep,packed,name=packed_sfixed32_extension",
  2479. Filename: "test/test.proto",
  2480. },
  2481. {
  2482. ExtendedType: (*TestPackedExtensions)(nil),
  2483. ExtensionType: ([]int64)(nil),
  2484. Field: 99,
  2485. Name: "goproto.proto.test.packed_sfixed64_extension",
  2486. Tag: "fixed64,99,rep,packed,name=packed_sfixed64_extension",
  2487. Filename: "test/test.proto",
  2488. },
  2489. {
  2490. ExtendedType: (*TestPackedExtensions)(nil),
  2491. ExtensionType: ([]float32)(nil),
  2492. Field: 100,
  2493. Name: "goproto.proto.test.packed_float_extension",
  2494. Tag: "fixed32,100,rep,packed,name=packed_float_extension",
  2495. Filename: "test/test.proto",
  2496. },
  2497. {
  2498. ExtendedType: (*TestPackedExtensions)(nil),
  2499. ExtensionType: ([]float64)(nil),
  2500. Field: 101,
  2501. Name: "goproto.proto.test.packed_double_extension",
  2502. Tag: "fixed64,101,rep,packed,name=packed_double_extension",
  2503. Filename: "test/test.proto",
  2504. },
  2505. {
  2506. ExtendedType: (*TestPackedExtensions)(nil),
  2507. ExtensionType: ([]bool)(nil),
  2508. Field: 102,
  2509. Name: "goproto.proto.test.packed_bool_extension",
  2510. Tag: "varint,102,rep,packed,name=packed_bool_extension",
  2511. Filename: "test/test.proto",
  2512. },
  2513. {
  2514. ExtendedType: (*TestPackedExtensions)(nil),
  2515. ExtensionType: ([]ForeignEnum)(nil),
  2516. Field: 103,
  2517. Name: "goproto.proto.test.packed_enum_extension",
  2518. Tag: "varint,103,rep,packed,name=packed_enum_extension,enum=goproto.proto.test.ForeignEnum",
  2519. Filename: "test/test.proto",
  2520. },
  2521. {
  2522. ExtendedType: (*TestUnpackedExtensions)(nil),
  2523. ExtensionType: ([]int32)(nil),
  2524. Field: 90,
  2525. Name: "goproto.proto.test.unpacked_int32_extension",
  2526. Tag: "varint,90,rep,name=unpacked_int32_extension",
  2527. Filename: "test/test.proto",
  2528. },
  2529. {
  2530. ExtendedType: (*TestUnpackedExtensions)(nil),
  2531. ExtensionType: ([]int64)(nil),
  2532. Field: 91,
  2533. Name: "goproto.proto.test.unpacked_int64_extension",
  2534. Tag: "varint,91,rep,name=unpacked_int64_extension",
  2535. Filename: "test/test.proto",
  2536. },
  2537. {
  2538. ExtendedType: (*TestUnpackedExtensions)(nil),
  2539. ExtensionType: ([]uint32)(nil),
  2540. Field: 92,
  2541. Name: "goproto.proto.test.unpacked_uint32_extension",
  2542. Tag: "varint,92,rep,name=unpacked_uint32_extension",
  2543. Filename: "test/test.proto",
  2544. },
  2545. {
  2546. ExtendedType: (*TestUnpackedExtensions)(nil),
  2547. ExtensionType: ([]uint64)(nil),
  2548. Field: 93,
  2549. Name: "goproto.proto.test.unpacked_uint64_extension",
  2550. Tag: "varint,93,rep,name=unpacked_uint64_extension",
  2551. Filename: "test/test.proto",
  2552. },
  2553. {
  2554. ExtendedType: (*TestUnpackedExtensions)(nil),
  2555. ExtensionType: ([]int32)(nil),
  2556. Field: 94,
  2557. Name: "goproto.proto.test.unpacked_sint32_extension",
  2558. Tag: "zigzag32,94,rep,name=unpacked_sint32_extension",
  2559. Filename: "test/test.proto",
  2560. },
  2561. {
  2562. ExtendedType: (*TestUnpackedExtensions)(nil),
  2563. ExtensionType: ([]int64)(nil),
  2564. Field: 95,
  2565. Name: "goproto.proto.test.unpacked_sint64_extension",
  2566. Tag: "zigzag64,95,rep,name=unpacked_sint64_extension",
  2567. Filename: "test/test.proto",
  2568. },
  2569. {
  2570. ExtendedType: (*TestUnpackedExtensions)(nil),
  2571. ExtensionType: ([]uint32)(nil),
  2572. Field: 96,
  2573. Name: "goproto.proto.test.unpacked_fixed32_extension",
  2574. Tag: "fixed32,96,rep,name=unpacked_fixed32_extension",
  2575. Filename: "test/test.proto",
  2576. },
  2577. {
  2578. ExtendedType: (*TestUnpackedExtensions)(nil),
  2579. ExtensionType: ([]uint64)(nil),
  2580. Field: 97,
  2581. Name: "goproto.proto.test.unpacked_fixed64_extension",
  2582. Tag: "fixed64,97,rep,name=unpacked_fixed64_extension",
  2583. Filename: "test/test.proto",
  2584. },
  2585. {
  2586. ExtendedType: (*TestUnpackedExtensions)(nil),
  2587. ExtensionType: ([]int32)(nil),
  2588. Field: 98,
  2589. Name: "goproto.proto.test.unpacked_sfixed32_extension",
  2590. Tag: "fixed32,98,rep,name=unpacked_sfixed32_extension",
  2591. Filename: "test/test.proto",
  2592. },
  2593. {
  2594. ExtendedType: (*TestUnpackedExtensions)(nil),
  2595. ExtensionType: ([]int64)(nil),
  2596. Field: 99,
  2597. Name: "goproto.proto.test.unpacked_sfixed64_extension",
  2598. Tag: "fixed64,99,rep,name=unpacked_sfixed64_extension",
  2599. Filename: "test/test.proto",
  2600. },
  2601. {
  2602. ExtendedType: (*TestUnpackedExtensions)(nil),
  2603. ExtensionType: ([]float32)(nil),
  2604. Field: 100,
  2605. Name: "goproto.proto.test.unpacked_float_extension",
  2606. Tag: "fixed32,100,rep,name=unpacked_float_extension",
  2607. Filename: "test/test.proto",
  2608. },
  2609. {
  2610. ExtendedType: (*TestUnpackedExtensions)(nil),
  2611. ExtensionType: ([]float64)(nil),
  2612. Field: 101,
  2613. Name: "goproto.proto.test.unpacked_double_extension",
  2614. Tag: "fixed64,101,rep,name=unpacked_double_extension",
  2615. Filename: "test/test.proto",
  2616. },
  2617. {
  2618. ExtendedType: (*TestUnpackedExtensions)(nil),
  2619. ExtensionType: ([]bool)(nil),
  2620. Field: 102,
  2621. Name: "goproto.proto.test.unpacked_bool_extension",
  2622. Tag: "varint,102,rep,name=unpacked_bool_extension",
  2623. Filename: "test/test.proto",
  2624. },
  2625. {
  2626. ExtendedType: (*TestUnpackedExtensions)(nil),
  2627. ExtensionType: ([]ForeignEnum)(nil),
  2628. Field: 103,
  2629. Name: "goproto.proto.test.unpacked_enum_extension",
  2630. Tag: "varint,103,rep,name=unpacked_enum_extension,enum=goproto.proto.test.ForeignEnum",
  2631. Filename: "test/test.proto",
  2632. },
  2633. {
  2634. ExtendedType: (*TestAllExtensions)(nil),
  2635. ExtensionType: (*string)(nil),
  2636. Field: 1003,
  2637. Name: "goproto.proto.test.TestNestedExtension.nested_string_extension",
  2638. Tag: "bytes,1003,opt,name=nested_string_extension",
  2639. Filename: "test/test.proto",
  2640. },
  2641. {
  2642. ExtendedType: (*TestAllExtensions)(nil),
  2643. ExtensionType: (*TestRequired)(nil),
  2644. Field: 1000,
  2645. Name: "goproto.proto.test.TestRequired.single",
  2646. Tag: "bytes,1000,opt,name=single",
  2647. Filename: "test/test.proto",
  2648. },
  2649. {
  2650. ExtendedType: (*TestAllExtensions)(nil),
  2651. ExtensionType: ([]*TestRequired)(nil),
  2652. Field: 1001,
  2653. Name: "goproto.proto.test.TestRequired.multi",
  2654. Tag: "bytes,1001,rep,name=multi",
  2655. Filename: "test/test.proto",
  2656. },
  2657. }
  2658. // Extension fields to TestAllExtensions.
  2659. var (
  2660. // optional int32 optional_int32_extension = 1;
  2661. E_OptionalInt32Extension = &file_test_test_proto_extTypes[0]
  2662. // optional int64 optional_int64_extension = 2;
  2663. E_OptionalInt64Extension = &file_test_test_proto_extTypes[1]
  2664. // optional uint32 optional_uint32_extension = 3;
  2665. E_OptionalUint32Extension = &file_test_test_proto_extTypes[2]
  2666. // optional uint64 optional_uint64_extension = 4;
  2667. E_OptionalUint64Extension = &file_test_test_proto_extTypes[3]
  2668. // optional sint32 optional_sint32_extension = 5;
  2669. E_OptionalSint32Extension = &file_test_test_proto_extTypes[4]
  2670. // optional sint64 optional_sint64_extension = 6;
  2671. E_OptionalSint64Extension = &file_test_test_proto_extTypes[5]
  2672. // optional fixed32 optional_fixed32_extension = 7;
  2673. E_OptionalFixed32Extension = &file_test_test_proto_extTypes[6]
  2674. // optional fixed64 optional_fixed64_extension = 8;
  2675. E_OptionalFixed64Extension = &file_test_test_proto_extTypes[7]
  2676. // optional sfixed32 optional_sfixed32_extension = 9;
  2677. E_OptionalSfixed32Extension = &file_test_test_proto_extTypes[8]
  2678. // optional sfixed64 optional_sfixed64_extension = 10;
  2679. E_OptionalSfixed64Extension = &file_test_test_proto_extTypes[9]
  2680. // optional float optional_float_extension = 11;
  2681. E_OptionalFloatExtension = &file_test_test_proto_extTypes[10]
  2682. // optional double optional_double_extension = 12;
  2683. E_OptionalDoubleExtension = &file_test_test_proto_extTypes[11]
  2684. // optional bool optional_bool_extension = 13;
  2685. E_OptionalBoolExtension = &file_test_test_proto_extTypes[12]
  2686. // optional string optional_string_extension = 14;
  2687. E_OptionalStringExtension = &file_test_test_proto_extTypes[13]
  2688. // optional bytes optional_bytes_extension = 15;
  2689. E_OptionalBytesExtension = &file_test_test_proto_extTypes[14]
  2690. // optional goproto.proto.test.OptionalGroup_extension optionalgroup_extension = 16;
  2691. E_OptionalgroupExtension = &file_test_test_proto_extTypes[15]
  2692. // optional goproto.proto.test.TestAllTypes.NestedMessage optional_nested_message_extension = 18;
  2693. E_OptionalNestedMessageExtension = &file_test_test_proto_extTypes[16]
  2694. // optional goproto.proto.test.TestAllTypes.NestedEnum optional_nested_enum_extension = 21;
  2695. E_OptionalNestedEnumExtension = &file_test_test_proto_extTypes[17]
  2696. // repeated int32 repeated_int32_extension = 31;
  2697. E_RepeatedInt32Extension = &file_test_test_proto_extTypes[18]
  2698. // repeated int64 repeated_int64_extension = 32;
  2699. E_RepeatedInt64Extension = &file_test_test_proto_extTypes[19]
  2700. // repeated uint32 repeated_uint32_extension = 33;
  2701. E_RepeatedUint32Extension = &file_test_test_proto_extTypes[20]
  2702. // repeated uint64 repeated_uint64_extension = 34;
  2703. E_RepeatedUint64Extension = &file_test_test_proto_extTypes[21]
  2704. // repeated sint32 repeated_sint32_extension = 35;
  2705. E_RepeatedSint32Extension = &file_test_test_proto_extTypes[22]
  2706. // repeated sint64 repeated_sint64_extension = 36;
  2707. E_RepeatedSint64Extension = &file_test_test_proto_extTypes[23]
  2708. // repeated fixed32 repeated_fixed32_extension = 37;
  2709. E_RepeatedFixed32Extension = &file_test_test_proto_extTypes[24]
  2710. // repeated fixed64 repeated_fixed64_extension = 38;
  2711. E_RepeatedFixed64Extension = &file_test_test_proto_extTypes[25]
  2712. // repeated sfixed32 repeated_sfixed32_extension = 39;
  2713. E_RepeatedSfixed32Extension = &file_test_test_proto_extTypes[26]
  2714. // repeated sfixed64 repeated_sfixed64_extension = 40;
  2715. E_RepeatedSfixed64Extension = &file_test_test_proto_extTypes[27]
  2716. // repeated float repeated_float_extension = 41;
  2717. E_RepeatedFloatExtension = &file_test_test_proto_extTypes[28]
  2718. // repeated double repeated_double_extension = 42;
  2719. E_RepeatedDoubleExtension = &file_test_test_proto_extTypes[29]
  2720. // repeated bool repeated_bool_extension = 43;
  2721. E_RepeatedBoolExtension = &file_test_test_proto_extTypes[30]
  2722. // repeated string repeated_string_extension = 44;
  2723. E_RepeatedStringExtension = &file_test_test_proto_extTypes[31]
  2724. // repeated bytes repeated_bytes_extension = 45;
  2725. E_RepeatedBytesExtension = &file_test_test_proto_extTypes[32]
  2726. // repeated goproto.proto.test.RepeatedGroup_extension repeatedgroup_extension = 46;
  2727. E_RepeatedgroupExtension = &file_test_test_proto_extTypes[33]
  2728. // repeated goproto.proto.test.TestAllTypes.NestedMessage repeated_nested_message_extension = 48;
  2729. E_RepeatedNestedMessageExtension = &file_test_test_proto_extTypes[34]
  2730. // repeated goproto.proto.test.TestAllTypes.NestedEnum repeated_nested_enum_extension = 51;
  2731. E_RepeatedNestedEnumExtension = &file_test_test_proto_extTypes[35]
  2732. // optional int32 default_int32_extension = 81;
  2733. E_DefaultInt32Extension = &file_test_test_proto_extTypes[36]
  2734. // optional int64 default_int64_extension = 82;
  2735. E_DefaultInt64Extension = &file_test_test_proto_extTypes[37]
  2736. // optional uint32 default_uint32_extension = 83;
  2737. E_DefaultUint32Extension = &file_test_test_proto_extTypes[38]
  2738. // optional uint64 default_uint64_extension = 84;
  2739. E_DefaultUint64Extension = &file_test_test_proto_extTypes[39]
  2740. // optional sint32 default_sint32_extension = 85;
  2741. E_DefaultSint32Extension = &file_test_test_proto_extTypes[40]
  2742. // optional sint64 default_sint64_extension = 86;
  2743. E_DefaultSint64Extension = &file_test_test_proto_extTypes[41]
  2744. // optional fixed32 default_fixed32_extension = 87;
  2745. E_DefaultFixed32Extension = &file_test_test_proto_extTypes[42]
  2746. // optional fixed64 default_fixed64_extension = 88;
  2747. E_DefaultFixed64Extension = &file_test_test_proto_extTypes[43]
  2748. // optional sfixed32 default_sfixed32_extension = 89;
  2749. E_DefaultSfixed32Extension = &file_test_test_proto_extTypes[44]
  2750. // optional sfixed64 default_sfixed64_extension = 80;
  2751. E_DefaultSfixed64Extension = &file_test_test_proto_extTypes[45]
  2752. // optional float default_float_extension = 91;
  2753. E_DefaultFloatExtension = &file_test_test_proto_extTypes[46]
  2754. // optional double default_double_extension = 92;
  2755. E_DefaultDoubleExtension = &file_test_test_proto_extTypes[47]
  2756. // optional bool default_bool_extension = 93;
  2757. E_DefaultBoolExtension = &file_test_test_proto_extTypes[48]
  2758. // optional string default_string_extension = 94;
  2759. E_DefaultStringExtension = &file_test_test_proto_extTypes[49]
  2760. // optional bytes default_bytes_extension = 95;
  2761. E_DefaultBytesExtension = &file_test_test_proto_extTypes[50]
  2762. // optional string nested_string_extension = 1003;
  2763. E_TestNestedExtension_NestedStringExtension = &file_test_test_proto_extTypes[79]
  2764. // optional goproto.proto.test.TestRequired single = 1000;
  2765. E_TestRequired_Single = &file_test_test_proto_extTypes[80]
  2766. // repeated goproto.proto.test.TestRequired multi = 1001;
  2767. E_TestRequired_Multi = &file_test_test_proto_extTypes[81]
  2768. )
  2769. // Extension fields to TestPackedExtensions.
  2770. var (
  2771. // repeated int32 packed_int32_extension = 90;
  2772. E_PackedInt32Extension = &file_test_test_proto_extTypes[51]
  2773. // repeated int64 packed_int64_extension = 91;
  2774. E_PackedInt64Extension = &file_test_test_proto_extTypes[52]
  2775. // repeated uint32 packed_uint32_extension = 92;
  2776. E_PackedUint32Extension = &file_test_test_proto_extTypes[53]
  2777. // repeated uint64 packed_uint64_extension = 93;
  2778. E_PackedUint64Extension = &file_test_test_proto_extTypes[54]
  2779. // repeated sint32 packed_sint32_extension = 94;
  2780. E_PackedSint32Extension = &file_test_test_proto_extTypes[55]
  2781. // repeated sint64 packed_sint64_extension = 95;
  2782. E_PackedSint64Extension = &file_test_test_proto_extTypes[56]
  2783. // repeated fixed32 packed_fixed32_extension = 96;
  2784. E_PackedFixed32Extension = &file_test_test_proto_extTypes[57]
  2785. // repeated fixed64 packed_fixed64_extension = 97;
  2786. E_PackedFixed64Extension = &file_test_test_proto_extTypes[58]
  2787. // repeated sfixed32 packed_sfixed32_extension = 98;
  2788. E_PackedSfixed32Extension = &file_test_test_proto_extTypes[59]
  2789. // repeated sfixed64 packed_sfixed64_extension = 99;
  2790. E_PackedSfixed64Extension = &file_test_test_proto_extTypes[60]
  2791. // repeated float packed_float_extension = 100;
  2792. E_PackedFloatExtension = &file_test_test_proto_extTypes[61]
  2793. // repeated double packed_double_extension = 101;
  2794. E_PackedDoubleExtension = &file_test_test_proto_extTypes[62]
  2795. // repeated bool packed_bool_extension = 102;
  2796. E_PackedBoolExtension = &file_test_test_proto_extTypes[63]
  2797. // repeated goproto.proto.test.ForeignEnum packed_enum_extension = 103;
  2798. E_PackedEnumExtension = &file_test_test_proto_extTypes[64]
  2799. )
  2800. // Extension fields to TestUnpackedExtensions.
  2801. var (
  2802. // repeated int32 unpacked_int32_extension = 90;
  2803. E_UnpackedInt32Extension = &file_test_test_proto_extTypes[65]
  2804. // repeated int64 unpacked_int64_extension = 91;
  2805. E_UnpackedInt64Extension = &file_test_test_proto_extTypes[66]
  2806. // repeated uint32 unpacked_uint32_extension = 92;
  2807. E_UnpackedUint32Extension = &file_test_test_proto_extTypes[67]
  2808. // repeated uint64 unpacked_uint64_extension = 93;
  2809. E_UnpackedUint64Extension = &file_test_test_proto_extTypes[68]
  2810. // repeated sint32 unpacked_sint32_extension = 94;
  2811. E_UnpackedSint32Extension = &file_test_test_proto_extTypes[69]
  2812. // repeated sint64 unpacked_sint64_extension = 95;
  2813. E_UnpackedSint64Extension = &file_test_test_proto_extTypes[70]
  2814. // repeated fixed32 unpacked_fixed32_extension = 96;
  2815. E_UnpackedFixed32Extension = &file_test_test_proto_extTypes[71]
  2816. // repeated fixed64 unpacked_fixed64_extension = 97;
  2817. E_UnpackedFixed64Extension = &file_test_test_proto_extTypes[72]
  2818. // repeated sfixed32 unpacked_sfixed32_extension = 98;
  2819. E_UnpackedSfixed32Extension = &file_test_test_proto_extTypes[73]
  2820. // repeated sfixed64 unpacked_sfixed64_extension = 99;
  2821. E_UnpackedSfixed64Extension = &file_test_test_proto_extTypes[74]
  2822. // repeated float unpacked_float_extension = 100;
  2823. E_UnpackedFloatExtension = &file_test_test_proto_extTypes[75]
  2824. // repeated double unpacked_double_extension = 101;
  2825. E_UnpackedDoubleExtension = &file_test_test_proto_extTypes[76]
  2826. // repeated bool unpacked_bool_extension = 102;
  2827. E_UnpackedBoolExtension = &file_test_test_proto_extTypes[77]
  2828. // repeated goproto.proto.test.ForeignEnum unpacked_enum_extension = 103;
  2829. E_UnpackedEnumExtension = &file_test_test_proto_extTypes[78]
  2830. )
  2831. var File_test_test_proto protoreflect.FileDescriptor
  2832. var file_test_test_proto_rawDesc = []byte{
  2833. 0x0a, 0x0f, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2834. 0x6f, 0x12, 0x12, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2835. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74,
  2836. 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x74,
  2837. 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x2e,
  2838. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1a, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x77, 0x65, 0x61, 0x6b,
  2839. 0x31, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2840. 0x6f, 0x1a, 0x1a, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x77, 0x65, 0x61, 0x6b, 0x32, 0x2f, 0x74, 0x65,
  2841. 0x73, 0x74, 0x5f, 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xac, 0x37,
  2842. 0x0a, 0x0c, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x25,
  2843. 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32,
  2844. 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2845. 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2846. 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6f,
  2847. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f,
  2848. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18,
  2849. 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55,
  2850. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2851. 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e,
  2852. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27,
  2853. 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33,
  2854. 0x32, 0x18, 0x05, 0x20, 0x01, 0x28, 0x11, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2855. 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2856. 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x06, 0x20, 0x01, 0x28, 0x12,
  2857. 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34,
  2858. 0x12, 0x29, 0x0a, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78,
  2859. 0x65, 0x64, 0x33, 0x32, 0x18, 0x07, 0x20, 0x01, 0x28, 0x07, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69,
  2860. 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x10, 0x6f,
  2861. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18,
  2862. 0x08, 0x20, 0x01, 0x28, 0x06, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46,
  2863. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2864. 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x09, 0x20, 0x01, 0x28,
  2865. 0x0f, 0x52, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65,
  2866. 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2867. 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x10, 0x52, 0x10,
  2868. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  2869. 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6c, 0x6f,
  2870. 0x61, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2871. 0x61, 0x6c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2872. 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01,
  2873. 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65,
  2874. 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x6f, 0x6f,
  2875. 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2876. 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2877. 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  2878. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x25,
  2879. 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73,
  2880. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2881. 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2882. 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x2e, 0x2e, 0x67,
  2883. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2884. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4f,
  2885. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x6f, 0x70,
  2886. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x66, 0x0a, 0x17, 0x6f,
  2887. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d,
  2888. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67,
  2889. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2890. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e,
  2891. 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x6f, 0x70,
  2892. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  2893. 0x61, 0x67, 0x65, 0x12, 0x5c, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2894. 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  2895. 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2896. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69,
  2897. 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2898. 0x6e, 0x61, 0x6c, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2899. 0x65, 0x12, 0x59, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6d,
  2900. 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x14, 0x20, 0x01,
  2901. 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2902. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65,
  2903. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49,
  2904. 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5d, 0x0a, 0x14,
  2905. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f,
  2906. 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70,
  2907. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2908. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73,
  2909. 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2910. 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x53, 0x0a, 0x15, 0x6f,
  2911. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f,
  2912. 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70,
  2913. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2914. 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x13, 0x6f, 0x70, 0x74,
  2915. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d,
  2916. 0x12, 0x50, 0x0a, 0x14, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6d, 0x70,
  2917. 0x6f, 0x72, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e,
  2918. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2919. 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12,
  2920. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e,
  2921. 0x75, 0x6d, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69,
  2922. 0x6e, 0x74, 0x33, 0x32, 0x18, 0x1f, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65,
  2923. 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70,
  2924. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x20, 0x20, 0x03, 0x28,
  2925. 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34,
  2926. 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e,
  2927. 0x74, 0x33, 0x32, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61,
  2928. 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70,
  2929. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x22, 0x20, 0x03,
  2930. 0x28, 0x04, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74,
  2931. 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73,
  2932. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x23, 0x20, 0x03, 0x28, 0x11, 0x52, 0x0e, 0x72, 0x65, 0x70,
  2933. 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x72,
  2934. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x24,
  2935. 0x20, 0x03, 0x28, 0x12, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69,
  2936. 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  2937. 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x25, 0x20, 0x03, 0x28, 0x07, 0x52, 0x0f,
  2938. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12,
  2939. 0x29, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65,
  2940. 0x64, 0x36, 0x34, 0x18, 0x26, 0x20, 0x03, 0x28, 0x06, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61,
  2941. 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65,
  2942. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18,
  2943. 0x27, 0x20, 0x03, 0x28, 0x0f, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53,
  2944. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, 0x61,
  2945. 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x28, 0x20, 0x03,
  2946. 0x28, 0x10, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78,
  2947. 0x65, 0x64, 0x36, 0x34, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  2948. 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x29, 0x20, 0x03, 0x28, 0x02, 0x52, 0x0d, 0x72, 0x65,
  2949. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x72,
  2950. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x2a,
  2951. 0x20, 0x03, 0x28, 0x01, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x44, 0x6f,
  2952. 0x75, 0x62, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  2953. 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x2b, 0x20, 0x03, 0x28, 0x08, 0x52, 0x0c, 0x72, 0x65, 0x70,
  2954. 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70,
  2955. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x2c, 0x20, 0x03,
  2956. 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69,
  2957. 0x6e, 0x67, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62,
  2958. 0x79, 0x74, 0x65, 0x73, 0x18, 0x2d, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65,
  2959. 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0d, 0x72, 0x65, 0x70,
  2960. 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x2e, 0x20, 0x03, 0x28, 0x0a,
  2961. 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2962. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70,
  2963. 0x65, 0x73, 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
  2964. 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12,
  2965. 0x66, 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74,
  2966. 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x30, 0x20, 0x03, 0x28, 0x0b,
  2967. 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2968. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70,
  2969. 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2970. 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,
  2971. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5c, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61,
  2972. 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6d, 0x65, 0x73, 0x73,
  2973. 0x61, 0x67, 0x65, 0x18, 0x31, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2974. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46,
  2975. 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x16, 0x72,
  2976. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65,
  2977. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x58, 0x0a, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2978. 0x64, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  2979. 0x32, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2980. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72,
  2981. 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  2982. 0x65, 0x64, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  2983. 0x5d, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74,
  2984. 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x33, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2b, 0x2e,
  2985. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2986. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2987. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x72, 0x65, 0x70, 0x65,
  2988. 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x53,
  2989. 0x0a, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69,
  2990. 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x34, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1f, 0x2e,
  2991. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2992. 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x13,
  2993. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45,
  2994. 0x6e, 0x75, 0x6d, 0x12, 0x4f, 0x0a, 0x13, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2995. 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x35, 0x20, 0x03, 0x28, 0x0e,
  2996. 0x32, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2997. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75, 0x6d,
  2998. 0x52, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  2999. 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33,
  3000. 0x32, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x38, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e,
  3001. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3002. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  3003. 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74,
  3004. 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33,
  3005. 0x32, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x69,
  3006. 0x6e, 0x74, 0x36, 0x34, 0x18, 0x39, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70,
  3007. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3008. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70,
  3009. 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
  3010. 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x61,
  3011. 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x75, 0x69, 0x6e,
  3012. 0x74, 0x33, 0x32, 0x18, 0x3a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3013. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3014. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x55,
  3015. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3016. 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33,
  3017. 0x32, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f,
  3018. 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x3b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67,
  3019. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3020. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d,
  3021. 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e,
  3022. 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69,
  3023. 0x6e, 0x74, 0x36, 0x34, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x69, 0x6e, 0x74,
  3024. 0x33, 0x32, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x3c, 0x20, 0x03, 0x28, 0x0b, 0x32,
  3025. 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3026. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65,
  3027. 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33,
  3028. 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33,
  3029. 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73,
  3030. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x3d, 0x20, 0x03,
  3031. 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3032. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54,
  3033. 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69,
  3034. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x69,
  3035. 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x67, 0x0a, 0x13, 0x6d, 0x61,
  3036. 0x70, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  3037. 0x32, 0x18, 0x3e, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3038. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3039. 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78,
  3040. 0x65, 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3041. 0x52, 0x11, 0x6d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65,
  3042. 0x64, 0x33, 0x32, 0x12, 0x67, 0x0a, 0x13, 0x6d, 0x61, 0x70, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64,
  3043. 0x36, 0x34, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x3f, 0x20, 0x03, 0x28, 0x0b,
  3044. 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3045. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70,
  3046. 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78,
  3047. 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x6d, 0x61, 0x70, 0x46, 0x69,
  3048. 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x6d, 0x0a, 0x15,
  3049. 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x73, 0x66, 0x69,
  3050. 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x40, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f,
  3051. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3052. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61,
  3053. 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  3054. 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65,
  3055. 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x6d, 0x0a, 0x15, 0x6d,
  3056. 0x61, 0x70, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x73, 0x66, 0x69, 0x78,
  3057. 0x65, 0x64, 0x36, 0x34, 0x18, 0x41, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70,
  3058. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3059. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70,
  3060. 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  3061. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  3062. 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61,
  3063. 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x42, 0x20,
  3064. 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3065. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3066. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c,
  3067. 0x6f, 0x61, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74,
  3068. 0x33, 0x32, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x5e, 0x0a, 0x10, 0x6d, 0x61, 0x70, 0x5f, 0x69,
  3069. 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x43, 0x20, 0x03, 0x28,
  3070. 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3071. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79,
  3072. 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x75, 0x62,
  3073. 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33,
  3074. 0x32, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x55, 0x0a, 0x0d, 0x6d, 0x61, 0x70, 0x5f, 0x62,
  3075. 0x6f, 0x6f, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x44, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31,
  3076. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3077. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73,
  3078. 0x2e, 0x4d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x6e, 0x74, 0x72,
  3079. 0x79, 0x52, 0x0b, 0x6d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x61,
  3080. 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72,
  3081. 0x69, 0x6e, 0x67, 0x18, 0x45, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3082. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3083. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53,
  3084. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3085. 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e,
  3086. 0x67, 0x12, 0x5e, 0x0a, 0x10, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f,
  3087. 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x46, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f,
  3088. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3089. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61,
  3090. 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72,
  3091. 0x79, 0x52, 0x0e, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65,
  3092. 0x73, 0x12, 0x77, 0x0a, 0x19, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f,
  3093. 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x47,
  3094. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3095. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3096. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  3097. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74,
  3098. 0x72, 0x79, 0x52, 0x16, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73,
  3099. 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x6e, 0x0a, 0x16, 0x6d, 0x61,
  3100. 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f,
  3101. 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x49, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70,
  3102. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3103. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70,
  3104. 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  3105. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  3106. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x27, 0x0a, 0x0d, 0x64, 0x65,
  3107. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x51, 0x20, 0x01, 0x28,
  3108. 0x05, 0x3a, 0x02, 0x38, 0x31, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e,
  3109. 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69,
  3110. 0x6e, 0x74, 0x36, 0x34, 0x18, 0x52, 0x20, 0x01, 0x28, 0x03, 0x3a, 0x02, 0x38, 0x32, 0x52, 0x0c,
  3111. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0e,
  3112. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x53,
  3113. 0x20, 0x01, 0x28, 0x0d, 0x3a, 0x02, 0x38, 0x33, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3114. 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75,
  3115. 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x54, 0x20, 0x01, 0x28, 0x04, 0x3a,
  3116. 0x02, 0x38, 0x34, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69, 0x6e, 0x74,
  3117. 0x36, 0x34, 0x12, 0x2a, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69,
  3118. 0x6e, 0x74, 0x33, 0x32, 0x18, 0x55, 0x20, 0x01, 0x28, 0x11, 0x3a, 0x03, 0x2d, 0x38, 0x35, 0x52,
  3119. 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x29,
  3120. 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34,
  3121. 0x18, 0x56, 0x20, 0x01, 0x28, 0x12, 0x3a, 0x02, 0x38, 0x36, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61,
  3122. 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f, 0x64, 0x65, 0x66,
  3123. 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x57, 0x20, 0x01,
  3124. 0x28, 0x07, 0x3a, 0x02, 0x38, 0x37, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46,
  3125. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3126. 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x58, 0x20, 0x01, 0x28, 0x06, 0x3a,
  3127. 0x02, 0x38, 0x38, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65,
  3128. 0x64, 0x36, 0x34, 0x12, 0x2d, 0x0a, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73,
  3129. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x59, 0x20, 0x01, 0x28, 0x0f, 0x3a, 0x02, 0x38,
  3130. 0x39, 0x52, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  3131. 0x33, 0x32, 0x12, 0x2e, 0x0a, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x66,
  3132. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x50, 0x20, 0x01, 0x28, 0x10, 0x3a, 0x03, 0x2d, 0x39,
  3133. 0x30, 0x52, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  3134. 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6c,
  3135. 0x6f, 0x61, 0x74, 0x18, 0x5b, 0x20, 0x01, 0x28, 0x02, 0x3a, 0x04, 0x39, 0x31, 0x2e, 0x35, 0x52,
  3136. 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x2c, 0x0a,
  3137. 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18,
  3138. 0x5c, 0x20, 0x01, 0x28, 0x01, 0x3a, 0x05, 0x39, 0x32, 0x30, 0x30, 0x30, 0x52, 0x0d, 0x64, 0x65,
  3139. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x27, 0x0a, 0x0c, 0x64,
  3140. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x5d, 0x20, 0x01, 0x28,
  3141. 0x08, 0x3a, 0x04, 0x74, 0x72, 0x75, 0x65, 0x52, 0x0b, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3142. 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x2c, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f,
  3143. 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x5e, 0x20, 0x01, 0x28, 0x09, 0x3a, 0x05, 0x68, 0x65,
  3144. 0x6c, 0x6c, 0x6f, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x72, 0x69,
  3145. 0x6e, 0x67, 0x12, 0x2a, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x79,
  3146. 0x74, 0x65, 0x73, 0x18, 0x5f, 0x20, 0x01, 0x28, 0x0c, 0x3a, 0x05, 0x77, 0x6f, 0x72, 0x6c, 0x64,
  3147. 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x60,
  3148. 0x0a, 0x13, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64,
  3149. 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x60, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f,
  3150. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3151. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65,
  3152. 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x3a, 0x03, 0x42, 0x41, 0x52, 0x52, 0x11, 0x64,
  3153. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  3154. 0x12, 0x5e, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x65,
  3155. 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x61, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f,
  3156. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3157. 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x3a,
  3158. 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x52, 0x52, 0x12, 0x64, 0x65,
  3159. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d,
  3160. 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32,
  3161. 0x18, 0x6f, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x55,
  3162. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x62, 0x0a, 0x14, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x6e,
  3163. 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x70, 0x20,
  3164. 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3165. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3166. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  3167. 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x12, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4e, 0x65, 0x73, 0x74,
  3168. 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65,
  3169. 0x6f, 0x66, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x71, 0x20, 0x01, 0x28, 0x09, 0x48,
  3170. 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x21,
  3171. 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x72, 0x20,
  3172. 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x42, 0x79, 0x74, 0x65,
  3173. 0x73, 0x12, 0x1f, 0x0a, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18,
  3174. 0x73, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x42, 0x6f,
  3175. 0x6f, 0x6c, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x75, 0x69, 0x6e, 0x74,
  3176. 0x36, 0x34, 0x18, 0x74, 0x20, 0x01, 0x28, 0x04, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f,
  3177. 0x66, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x21, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66,
  3178. 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x75, 0x20, 0x01, 0x28, 0x02, 0x48, 0x00, 0x52, 0x0a,
  3179. 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e,
  3180. 0x65, 0x6f, 0x66, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x76, 0x20, 0x01, 0x28, 0x01,
  3181. 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12,
  3182. 0x4c, 0x0a, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x77, 0x20,
  3183. 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3184. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3185. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  3186. 0x48, 0x00, 0x52, 0x09, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x34, 0x0a,
  3187. 0x15, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  3188. 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x78, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x01, 0x52, 0x13,
  3189. 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e,
  3190. 0x74, 0x33, 0x32, 0x1a, 0x61, 0x0a, 0x0d, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73,
  3191. 0x73, 0x61, 0x67, 0x65, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
  3192. 0x01, 0x61, 0x12, 0x42, 0x0a, 0x0b, 0x63, 0x6f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76,
  3193. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3194. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3195. 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x0b, 0x63, 0x6f, 0x72, 0x65, 0x63,
  3196. 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x1a, 0x1d, 0x0a, 0x0d, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3197. 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x11, 0x20, 0x01,
  3198. 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a, 0x1d, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  3199. 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x2f, 0x20, 0x01, 0x28,
  3200. 0x05, 0x52, 0x01, 0x61, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32,
  3201. 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  3202. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
  3203. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c,
  3204. 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74,
  3205. 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
  3206. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14,
  3207. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76,
  3208. 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x55,
  3209. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3210. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x6b,
  3211. 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  3212. 0x0d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14,
  3213. 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45,
  3214. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  3215. 0x04, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  3216. 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  3217. 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e,
  3218. 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
  3219. 0x01, 0x20, 0x01, 0x28, 0x11, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
  3220. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x11, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3221. 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36,
  3222. 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
  3223. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x12, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14,
  3224. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x12, 0x52, 0x05, 0x76,
  3225. 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x44, 0x0a, 0x16, 0x4d, 0x61, 0x70, 0x46,
  3226. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74,
  3227. 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x07, 0x52,
  3228. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
  3229. 0x01, 0x28, 0x07, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x44,
  3230. 0x0a, 0x16, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65,
  3231. 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
  3232. 0x01, 0x20, 0x01, 0x28, 0x06, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
  3233. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x06, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3234. 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x46, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65,
  3235. 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3236. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x03, 0x6b,
  3237. 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  3238. 0x0f, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x46, 0x0a, 0x18,
  3239. 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65,
  3240. 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
  3241. 0x01, 0x20, 0x01, 0x28, 0x10, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
  3242. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x10, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3243. 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32,
  3244. 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  3245. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
  3246. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c,
  3247. 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x41, 0x0a, 0x13, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74,
  3248. 0x33, 0x32, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  3249. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  3250. 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05,
  3251. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x3e, 0x0a, 0x10, 0x4d, 0x61, 0x70,
  3252. 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  3253. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  3254. 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05,
  3255. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70,
  3256. 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x74, 0x72,
  3257. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  3258. 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  3259. 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x41, 0x0a,
  3260. 0x13, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45,
  3261. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  3262. 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  3263. 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  3264. 0x1a, 0x79, 0x0a, 0x1b, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73,
  3265. 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
  3266. 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
  3267. 0x79, 0x12, 0x44, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
  3268. 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3269. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70,
  3270. 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  3271. 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x73, 0x0a, 0x18, 0x4d,
  3272. 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e,
  3273. 0x75, 0x6d, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  3274. 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x41, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  3275. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3276. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3277. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65,
  3278. 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  3279. 0x22, 0x39, 0x0a, 0x0a, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x07,
  3280. 0x0a, 0x03, 0x46, 0x4f, 0x4f, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x42, 0x41, 0x52, 0x10, 0x01,
  3281. 0x12, 0x07, 0x0a, 0x03, 0x42, 0x41, 0x5a, 0x10, 0x02, 0x12, 0x10, 0x0a, 0x03, 0x4e, 0x45, 0x47,
  3282. 0x10, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x6f,
  3283. 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x10, 0x0a, 0x0e, 0x6f, 0x6e,
  3284. 0x65, 0x6f, 0x66, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x22, 0xc4, 0x01, 0x0a,
  3285. 0x15, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d,
  3286. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2d, 0x0a, 0x10, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63,
  3287. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  3288. 0x42, 0x02, 0x18, 0x01, 0x52, 0x0f, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64,
  3289. 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x3a, 0x0a, 0x16, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61,
  3290. 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18,
  3291. 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52, 0x14, 0x64, 0x65, 0x70,
  3292. 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4f, 0x6e, 0x65, 0x6f, 0x66, 0x46, 0x69, 0x65, 0x6c,
  3293. 0x64, 0x22, 0x28, 0x0a, 0x0e, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x45,
  3294. 0x6e, 0x75, 0x6d, 0x12, 0x12, 0x0a, 0x0a, 0x44, 0x45, 0x50, 0x52, 0x45, 0x43, 0x41, 0x54, 0x45,
  3295. 0x44, 0x10, 0x00, 0x1a, 0x02, 0x08, 0x01, 0x1a, 0x02, 0x18, 0x01, 0x3a, 0x02, 0x18, 0x01, 0x42,
  3296. 0x12, 0x0a, 0x10, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x6e,
  3297. 0x65, 0x6f, 0x66, 0x22, 0x2c, 0x0a, 0x0e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65,
  3298. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0c, 0x0a, 0x01, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  3299. 0x52, 0x01, 0x63, 0x12, 0x0c, 0x0a, 0x01, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01,
  3300. 0x64, 0x22, 0x30, 0x0a, 0x12, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65,
  3301. 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x4a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x4a, 0x04, 0x08,
  3302. 0x0f, 0x10, 0x10, 0x4a, 0x04, 0x08, 0x09, 0x10, 0x0c, 0x52, 0x03, 0x62, 0x61, 0x72, 0x52, 0x03,
  3303. 0x62, 0x61, 0x7a, 0x22, 0x1d, 0x0a, 0x11, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3304. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2a, 0x08, 0x08, 0x01, 0x10, 0x80, 0x80, 0x80,
  3305. 0x80, 0x02, 0x22, 0x27, 0x0a, 0x17, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72,
  3306. 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0c, 0x0a,
  3307. 0x01, 0x61, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22, 0x27, 0x0a, 0x17, 0x52,
  3308. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74,
  3309. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x2f, 0x20, 0x01, 0x28,
  3310. 0x05, 0x52, 0x01, 0x61, 0x22, 0x75, 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74, 0x4e, 0x65, 0x73, 0x74,
  3311. 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x5e, 0x0a, 0x17, 0x6e,
  3312. 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74,
  3313. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3314. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3315. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xeb, 0x07,
  3316. 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69,
  3317. 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0xf7, 0x01, 0x0a, 0x0c,
  3318. 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x25, 0x0a, 0x0e,
  3319. 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01,
  3320. 0x20, 0x02, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x69,
  3321. 0x65, 0x6c, 0x64, 0x32, 0x60, 0x0a, 0x06, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x12, 0x25, 0x2e,
  3322. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3323. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3324. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xe8, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f,
  3325. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3326. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x06, 0x73,
  3327. 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x32, 0x5e, 0x0a, 0x05, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x12, 0x25,
  3328. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3329. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3330. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xe9, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67,
  3331. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3332. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x05,
  3333. 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x22, 0xc2, 0x03, 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65,
  3334. 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x12, 0x4b, 0x0a,
  3335. 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  3336. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3337. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3338. 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3339. 0x6e, 0x61, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x4b, 0x0a, 0x10, 0x72, 0x65,
  3340. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02,
  3341. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3342. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65,
  3343. 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  3344. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x58, 0x0a, 0x0b, 0x6d, 0x61, 0x70, 0x5f, 0x6d,
  3345. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67,
  3346. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3347. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x6f,
  3348. 0x72, 0x65, 0x69, 0x67, 0x6e, 0x2e, 0x4d, 0x61, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  3349. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0a, 0x6d, 0x61, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  3350. 0x65, 0x12, 0x47, 0x0a, 0x0d, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61,
  3351. 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3352. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3353. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x48, 0x00, 0x52, 0x0c, 0x6f, 0x6e,
  3354. 0x65, 0x6f, 0x66, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x5f, 0x0a, 0x0f, 0x4d, 0x61,
  3355. 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  3356. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  3357. 0x36, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20,
  3358. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3359. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64,
  3360. 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x6f,
  3361. 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x22, 0x99, 0x02, 0x0a, 0x17, 0x54,
  3362. 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
  3363. 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x5f, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3364. 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x39, 0x2e,
  3365. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3366. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x47,
  3367. 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f,
  3368. 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3369. 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x5f, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61,
  3370. 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x39,
  3371. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3372. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64,
  3373. 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x2e, 0x52, 0x65, 0x70, 0x65,
  3374. 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61,
  3375. 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x1a, 0x1d, 0x0a, 0x0d, 0x4f, 0x70, 0x74, 0x69,
  3376. 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x02,
  3377. 0x20, 0x02, 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a, 0x1d, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x65, 0x61,
  3378. 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x04, 0x20,
  3379. 0x02, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22, 0xb6, 0x01, 0x0a, 0x08, 0x54, 0x65, 0x73, 0x74, 0x57,
  3380. 0x65, 0x61, 0x6b, 0x12, 0x54, 0x0a, 0x0d, 0x77, 0x65, 0x61, 0x6b, 0x5f, 0x6d, 0x65, 0x73, 0x73,
  3381. 0x61, 0x67, 0x65, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70,
  3382. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3383. 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x57, 0x65, 0x61, 0x6b, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d,
  3384. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x31, 0x42, 0x02, 0x50, 0x01, 0x52, 0x0c, 0x77, 0x65, 0x61,
  3385. 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x31, 0x12, 0x54, 0x0a, 0x0d, 0x77, 0x65, 0x61,
  3386. 0x6b, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
  3387. 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3388. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x57, 0x65, 0x61, 0x6b, 0x49,
  3389. 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x32, 0x42, 0x02, 0x50,
  3390. 0x01, 0x52, 0x0c, 0x77, 0x65, 0x61, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x32, 0x22,
  3391. 0xee, 0x04, 0x0a, 0x0f, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x54, 0x79,
  3392. 0x70, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e,
  3393. 0x74, 0x33, 0x32, 0x18, 0x5a, 0x20, 0x03, 0x28, 0x05, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0b, 0x70,
  3394. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0c, 0x70, 0x61,
  3395. 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5b, 0x20, 0x03, 0x28, 0x03,
  3396. 0x42, 0x02, 0x10, 0x01, 0x52, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36,
  3397. 0x34, 0x12, 0x27, 0x0a, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74,
  3398. 0x33, 0x32, 0x18, 0x5c, 0x20, 0x03, 0x28, 0x0d, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c, 0x70, 0x61,
  3399. 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0d, 0x70, 0x61,
  3400. 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5d, 0x20, 0x03, 0x28,
  3401. 0x04, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e,
  3402. 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69,
  3403. 0x6e, 0x74, 0x33, 0x32, 0x18, 0x5e, 0x20, 0x03, 0x28, 0x11, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c,
  3404. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0d,
  3405. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5f, 0x20,
  3406. 0x03, 0x28, 0x12, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53,
  3407. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f,
  3408. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x60, 0x20, 0x03, 0x28, 0x07, 0x42, 0x02, 0x10,
  3409. 0x01, 0x52, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  3410. 0x12, 0x29, 0x0a, 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64,
  3411. 0x36, 0x34, 0x18, 0x61, 0x20, 0x03, 0x28, 0x06, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0d, 0x70, 0x61,
  3412. 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f, 0x70,
  3413. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x62,
  3414. 0x20, 0x03, 0x28, 0x0f, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3415. 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x70, 0x61, 0x63, 0x6b,
  3416. 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x63, 0x20, 0x03, 0x28,
  3417. 0x10, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69,
  3418. 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x25, 0x0a, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f,
  3419. 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x64, 0x20, 0x03, 0x28, 0x02, 0x42, 0x02, 0x10, 0x01, 0x52,
  3420. 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a, 0x0d,
  3421. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x65, 0x20,
  3422. 0x03, 0x28, 0x01, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x44,
  3423. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f,
  3424. 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x66, 0x20, 0x03, 0x28, 0x08, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0a,
  3425. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x44, 0x0a, 0x0b, 0x70, 0x61,
  3426. 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x67, 0x20, 0x03, 0x28, 0x0e, 0x32,
  3427. 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3428. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d,
  3429. 0x42, 0x02, 0x10, 0x01, 0x52, 0x0a, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  3430. 0x22, 0xa8, 0x05, 0x0a, 0x11, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3431. 0x64, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x29, 0x0a, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3432. 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x5a, 0x20, 0x03, 0x28, 0x05, 0x42, 0x02,
  3433. 0x10, 0x00, 0x52, 0x0d, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33,
  3434. 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e,
  3435. 0x74, 0x36, 0x34, 0x18, 0x5b, 0x20, 0x03, 0x28, 0x03, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0d, 0x75,
  3436. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f,
  3437. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18,
  3438. 0x5c, 0x20, 0x03, 0x28, 0x0d, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63,
  3439. 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x75, 0x6e, 0x70,
  3440. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5d, 0x20, 0x03,
  3441. 0x28, 0x04, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3442. 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3443. 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x5e, 0x20, 0x03, 0x28, 0x11, 0x42,
  3444. 0x02, 0x10, 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e,
  3445. 0x74, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f,
  3446. 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5f, 0x20, 0x03, 0x28, 0x12, 0x42, 0x02, 0x10, 0x00,
  3447. 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34,
  3448. 0x12, 0x2d, 0x0a, 0x10, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78,
  3449. 0x65, 0x64, 0x33, 0x32, 0x18, 0x60, 0x20, 0x03, 0x28, 0x07, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0f,
  3450. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12,
  3451. 0x2d, 0x0a, 0x10, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65,
  3452. 0x64, 0x36, 0x34, 0x18, 0x61, 0x20, 0x03, 0x28, 0x06, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0f, 0x75,
  3453. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2f,
  3454. 0x0a, 0x11, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65,
  3455. 0x64, 0x33, 0x32, 0x18, 0x62, 0x20, 0x03, 0x28, 0x0f, 0x42, 0x02, 0x10, 0x00, 0x52, 0x10, 0x75,
  3456. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12,
  3457. 0x2f, 0x0a, 0x11, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78,
  3458. 0x65, 0x64, 0x36, 0x34, 0x18, 0x63, 0x20, 0x03, 0x28, 0x10, 0x42, 0x02, 0x10, 0x00, 0x52, 0x10,
  3459. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  3460. 0x12, 0x29, 0x0a, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f,
  3461. 0x61, 0x74, 0x18, 0x64, 0x20, 0x03, 0x28, 0x02, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0d, 0x75, 0x6e,
  3462. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x2b, 0x0a, 0x0f, 0x75,
  3463. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x65,
  3464. 0x20, 0x03, 0x28, 0x01, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3465. 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x27, 0x0a, 0x0d, 0x75, 0x6e, 0x70, 0x61,
  3466. 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x66, 0x20, 0x03, 0x28, 0x08, 0x42,
  3467. 0x02, 0x10, 0x00, 0x52, 0x0c, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x42, 0x6f, 0x6f,
  3468. 0x6c, 0x12, 0x48, 0x0a, 0x0d, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x65, 0x6e,
  3469. 0x75, 0x6d, 0x18, 0x67, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3470. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f,
  3471. 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0c, 0x75,
  3472. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x20, 0x0a, 0x14, 0x54,
  3473. 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3474. 0x6f, 0x6e, 0x73, 0x2a, 0x08, 0x08, 0x01, 0x10, 0x80, 0x80, 0x80, 0x80, 0x02, 0x22, 0x22, 0x0a,
  3475. 0x16, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74,
  3476. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2a, 0x08, 0x08, 0x01, 0x10, 0x80, 0x80, 0x80, 0x80,
  3477. 0x02, 0x22, 0x0c, 0x0a, 0x0a, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22,
  3478. 0x0d, 0x0a, 0x0b, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x61,
  3479. 0x0a, 0x0c, 0x57, 0x65, 0x69, 0x72, 0x64, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x12, 0x51,
  3480. 0x0a, 0x0d, 0x77, 0x65, 0x69, 0x72, 0x64, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x18,
  3481. 0x01, 0x20, 0x01, 0x28, 0x0c, 0x3a, 0x2c, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x2c, 0x20, 0x5c, 0x22,
  3482. 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x21, 0x5c, 0x22, 0x5c, 0x6e, 0x64, 0x65, 0x61, 0x64, 0x5c, 0x33,
  3483. 0x33, 0x36, 0x5c, 0x32, 0x35, 0x35, 0x5c, 0x32, 0x37, 0x36, 0x5c, 0x33, 0x35, 0x37, 0x62, 0x65,
  3484. 0x65, 0x66, 0x60, 0x52, 0x0c, 0x77, 0x65, 0x69, 0x72, 0x64, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3485. 0x74, 0x2a, 0x40, 0x0a, 0x0b, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d,
  3486. 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x46, 0x4f, 0x4f, 0x10,
  3487. 0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x52,
  3488. 0x10, 0x05, 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41,
  3489. 0x5a, 0x10, 0x06, 0x2a, 0x47, 0x0a, 0x16, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x73, 0x65, 0x72,
  3490. 0x76, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x11, 0x0a,
  3491. 0x0d, 0x52, 0x45, 0x53, 0x45, 0x52, 0x56, 0x45, 0x44, 0x5f, 0x45, 0x4e, 0x55, 0x4d, 0x10, 0x00,
  3492. 0x22, 0x04, 0x08, 0x02, 0x10, 0x02, 0x22, 0x04, 0x08, 0x0f, 0x10, 0x0f, 0x22, 0x04, 0x08, 0x09,
  3493. 0x10, 0x0b, 0x2a, 0x03, 0x42, 0x41, 0x52, 0x2a, 0x03, 0x42, 0x41, 0x5a, 0x32, 0xa8, 0x01, 0x0a,
  3494. 0x0b, 0x54, 0x65, 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x46, 0x0a, 0x03,
  3495. 0x46, 0x6f, 0x6f, 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3496. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75,
  3497. 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3498. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70,
  3499. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a, 0x0a, 0x54, 0x65, 0x73, 0x74, 0x53, 0x74, 0x72, 0x65,
  3500. 0x61, 0x6d, 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3501. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65,
  3502. 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3503. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f,
  3504. 0x6e, 0x73, 0x65, 0x28, 0x01, 0x30, 0x01, 0x32, 0x85, 0x01, 0x0a, 0x15, 0x54, 0x65, 0x73, 0x74,
  3505. 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
  3506. 0x65, 0x12, 0x67, 0x0a, 0x0a, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12,
  3507. 0x29, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3508. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61,
  3509. 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x29, 0x2e, 0x67, 0x6f, 0x70,
  3510. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3511. 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65,
  3512. 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x1a, 0x03, 0x88, 0x02, 0x01, 0x3a,
  3513. 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x33,
  3514. 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3515. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3516. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3517. 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3518. 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3519. 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74,
  3520. 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3521. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3522. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3523. 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3524. 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3525. 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69,
  3526. 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  3527. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3528. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3529. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x17, 0x6f, 0x70, 0x74,
  3530. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3531. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  3532. 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3533. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3534. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3535. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17,
  3536. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78,
  3537. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3538. 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3539. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3540. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3541. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28,
  3542. 0x11, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x33,
  3543. 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70,
  3544. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78,
  3545. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3546. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3547. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06,
  3548. 0x20, 0x01, 0x28, 0x12, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69,
  3549. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a,
  3550. 0x1a, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  3551. 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3552. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3553. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3554. 0x6e, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x07, 0x52, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3555. 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3556. 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66,
  3557. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3558. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3559. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  3560. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x06, 0x52, 0x18, 0x6f,
  3561. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78,
  3562. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3563. 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74,
  3564. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3565. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3566. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x09, 0x20,
  3567. 0x01, 0x28, 0x0f, 0x52, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69,
  3568. 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65,
  3569. 0x0a, 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65,
  3570. 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  3571. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3572. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3573. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x10, 0x52, 0x19, 0x6f, 0x70, 0x74, 0x69,
  3574. 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65,
  3575. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  3576. 0x6c, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3577. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3578. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3579. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x02, 0x52, 0x16,
  3580. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74,
  3581. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3582. 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3583. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3584. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3585. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01,
  3586. 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65,
  3587. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5d, 0x0a, 0x17, 0x6f, 0x70, 0x74,
  3588. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3589. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3590. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3591. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28,
  3592. 0x08, 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45,
  3593. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69,
  3594. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3595. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3596. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3597. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0e, 0x20, 0x01,
  3598. 0x28, 0x09, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x74, 0x72, 0x69,
  3599. 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f,
  3600. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x65, 0x78,
  3601. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3602. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3603. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0f,
  3604. 0x20, 0x01, 0x28, 0x0c, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x79,
  3605. 0x74, 0x65, 0x73, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x8b, 0x01, 0x0a,
  3606. 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65,
  3607. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3608. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3609. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3610. 0x10, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3611. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f,
  3612. 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3613. 0x6f, 0x6e, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75,
  3614. 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0xa0, 0x01, 0x0a, 0x21, 0x6f,
  3615. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d,
  3616. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3617. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3618. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  3619. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e,
  3620. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3621. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  3622. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x1e, 0x6f,
  3623. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73,
  3624. 0x73, 0x61, 0x67, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x97, 0x01,
  3625. 0x0a, 0x1e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65,
  3626. 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3627. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3628. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  3629. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e,
  3630. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3631. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  3632. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x1b, 0x6f, 0x70, 0x74, 0x69,
  3633. 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78,
  3634. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61,
  3635. 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3636. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3637. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3638. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x1f, 0x20, 0x03, 0x28, 0x05,
  3639. 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45,
  3640. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65,
  3641. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3642. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3643. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3644. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x20, 0x20, 0x03, 0x28,
  3645. 0x03, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34,
  3646. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70,
  3647. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74,
  3648. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3649. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3650. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x21, 0x20,
  3651. 0x03, 0x28, 0x0d, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e,
  3652. 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19,
  3653. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f,
  3654. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3655. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3656. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3657. 0x18, 0x22, 0x20, 0x03, 0x28, 0x04, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  3658. 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3659. 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74,
  3660. 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3661. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3662. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3663. 0x6f, 0x6e, 0x73, 0x18, 0x23, 0x20, 0x03, 0x28, 0x11, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61,
  3664. 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3665. 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73,
  3666. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  3667. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3668. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  3669. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x24, 0x20, 0x03, 0x28, 0x12, 0x52, 0x17, 0x72, 0x65,
  3670. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65,
  3671. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  3672. 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3673. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3674. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3675. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x25, 0x20, 0x03, 0x28, 0x07,
  3676. 0x52, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33,
  3677. 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x72, 0x65,
  3678. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65,
  3679. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3680. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3681. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3682. 0x26, 0x20, 0x03, 0x28, 0x06, 0x52, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46,
  3683. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3684. 0x65, 0x0a, 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78,
  3685. 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  3686. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3687. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3688. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x27, 0x20, 0x03, 0x28, 0x0f, 0x52, 0x19, 0x72, 0x65, 0x70,
  3689. 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74,
  3690. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  3691. 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3692. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3693. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3694. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x28, 0x20, 0x03,
  3695. 0x28, 0x10, 0x52, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78,
  3696. 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a,
  3697. 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f,
  3698. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3699. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3700. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3701. 0x18, 0x29, 0x20, 0x03, 0x28, 0x02, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  3702. 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61,
  3703. 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c,
  3704. 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3705. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3706. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3707. 0x6e, 0x73, 0x18, 0x2a, 0x20, 0x03, 0x28, 0x01, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  3708. 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3709. 0x6e, 0x3a, 0x5d, 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x6f,
  3710. 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3711. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3712. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3713. 0x6f, 0x6e, 0x73, 0x18, 0x2b, 0x20, 0x03, 0x28, 0x08, 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61,
  3714. 0x74, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3715. 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72,
  3716. 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  3717. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3718. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3719. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65,
  3720. 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3721. 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  3722. 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  3723. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3724. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  3725. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2d, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x16, 0x72, 0x65,
  3726. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3727. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x8b, 0x01, 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  3728. 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3729. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3730. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  3731. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2e, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x2b, 0x2e,
  3732. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3733. 0x73, 0x74, 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
  3734. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65,
  3735. 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3736. 0x6f, 0x6e, 0x3a, 0xa0, 0x01, 0x0a, 0x21, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  3737. 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x65,
  3738. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3739. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3740. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3741. 0x30, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3742. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3743. 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65,
  3744. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x1e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e,
  3745. 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x78, 0x74, 0x65,
  3746. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x97, 0x01, 0x0a, 0x1e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  3747. 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65,
  3748. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3749. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3750. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3751. 0x33, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3752. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3753. 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e,
  3754. 0x75, 0x6d, 0x52, 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74,
  3755. 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3756. 0x61, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32,
  3757. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  3758. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3759. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3760. 0x73, 0x18, 0x51, 0x20, 0x01, 0x28, 0x05, 0x3a, 0x02, 0x38, 0x31, 0x52, 0x15, 0x64, 0x65, 0x66,
  3761. 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3762. 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e,
  3763. 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  3764. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3765. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3766. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x52, 0x20, 0x01, 0x28, 0x03, 0x3a, 0x02, 0x38, 0x32, 0x52, 0x15,
  3767. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65,
  3768. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3769. 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3770. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3771. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3772. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x53, 0x20, 0x01, 0x28, 0x0d, 0x3a, 0x02,
  3773. 0x38, 0x33, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33,
  3774. 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x18, 0x64, 0x65,
  3775. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74,
  3776. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3777. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3778. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x54, 0x20,
  3779. 0x01, 0x28, 0x04, 0x3a, 0x02, 0x38, 0x34, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3780. 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3781. 0x64, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33,
  3782. 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3783. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3784. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3785. 0x6e, 0x73, 0x18, 0x55, 0x20, 0x01, 0x28, 0x11, 0x3a, 0x03, 0x2d, 0x38, 0x35, 0x52, 0x16, 0x64,
  3786. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65,
  3787. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3788. 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3789. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3790. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3791. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x56, 0x20, 0x01, 0x28, 0x12, 0x3a, 0x02,
  3792. 0x38, 0x36, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x36,
  3793. 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x19, 0x64, 0x65,
  3794. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78,
  3795. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3796. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3797. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x57,
  3798. 0x20, 0x01, 0x28, 0x07, 0x3a, 0x02, 0x38, 0x37, 0x52, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3799. 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3800. 0x6e, 0x3a, 0x65, 0x0a, 0x19, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78,
  3801. 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  3802. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3803. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3804. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x58, 0x20, 0x01, 0x28, 0x06, 0x3a, 0x02, 0x38, 0x38, 0x52,
  3805. 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45,
  3806. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x67, 0x0a, 0x1a, 0x64, 0x65, 0x66, 0x61,
  3807. 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74,
  3808. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3809. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3810. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x59, 0x20,
  3811. 0x01, 0x28, 0x0f, 0x3a, 0x02, 0x38, 0x39, 0x52, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3812. 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3813. 0x6e, 0x3a, 0x68, 0x0a, 0x1a, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x66, 0x69,
  3814. 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  3815. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3816. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  3817. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x50, 0x20, 0x01, 0x28, 0x10, 0x3a, 0x03, 0x2d, 0x39,
  3818. 0x30, 0x52, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  3819. 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x17, 0x64,
  3820. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74,
  3821. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3822. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3823. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5b, 0x20,
  3824. 0x01, 0x28, 0x02, 0x3a, 0x04, 0x39, 0x31, 0x2e, 0x35, 0x52, 0x15, 0x64, 0x65, 0x66, 0x61, 0x75,
  3825. 0x6c, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3826. 0x3a, 0x66, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x64, 0x6f, 0x75, 0x62,
  3827. 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3828. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3829. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3830. 0x6f, 0x6e, 0x73, 0x18, 0x5c, 0x20, 0x01, 0x28, 0x01, 0x3a, 0x05, 0x39, 0x32, 0x30, 0x30, 0x30,
  3831. 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45,
  3832. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x16, 0x64, 0x65, 0x66, 0x61,
  3833. 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3834. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3835. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  3836. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5d, 0x20, 0x01, 0x28, 0x08, 0x3a,
  3837. 0x04, 0x74, 0x72, 0x75, 0x65, 0x52, 0x14, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42, 0x6f,
  3838. 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x66, 0x0a, 0x18, 0x64,
  3839. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78,
  3840. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3841. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3842. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5e,
  3843. 0x20, 0x01, 0x28, 0x09, 0x3a, 0x05, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x16, 0x64, 0x65, 0x66,
  3844. 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3845. 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62,
  3846. 0x79, 0x74, 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  3847. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3848. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3849. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5f, 0x20, 0x01, 0x28, 0x0c, 0x3a, 0x05, 0x77, 0x6f, 0x72,
  3850. 0x6c, 0x64, 0x52, 0x15, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73,
  3851. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x62, 0x0a, 0x16, 0x70, 0x61, 0x63,
  3852. 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3853. 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3854. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63,
  3855. 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5a, 0x20,
  3856. 0x03, 0x28, 0x05, 0x42, 0x02, 0x10, 0x01, 0x52, 0x14, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49,
  3857. 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x62, 0x0a,
  3858. 0x16, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78,
  3859. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3860. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3861. 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3862. 0x73, 0x18, 0x5b, 0x20, 0x03, 0x28, 0x03, 0x42, 0x02, 0x10, 0x01, 0x52, 0x14, 0x70, 0x61, 0x63,
  3863. 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3864. 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74,
  3865. 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67,
  3866. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3867. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65,
  3868. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5c, 0x20, 0x03, 0x28, 0x0d, 0x42, 0x02, 0x10, 0x01,
  3869. 0x52, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78,
  3870. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3871. 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3872. 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3873. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b,
  3874. 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5d, 0x20, 0x03,
  3875. 0x28, 0x04, 0x42, 0x02, 0x10, 0x01, 0x52, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69,
  3876. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a,
  3877. 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65,
  3878. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3879. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3880. 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3881. 0x6e, 0x73, 0x18, 0x5e, 0x20, 0x03, 0x28, 0x11, 0x42, 0x02, 0x10, 0x01, 0x52, 0x15, 0x70, 0x61,
  3882. 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3883. 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69,
  3884. 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28,
  3885. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3886. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78,
  3887. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5f, 0x20, 0x03, 0x28, 0x12, 0x42, 0x02,
  3888. 0x10, 0x01, 0x52, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34,
  3889. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x66, 0x0a, 0x18, 0x70, 0x61, 0x63,
  3890. 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3891. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3892. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50,
  3893. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3894. 0x60, 0x20, 0x03, 0x28, 0x07, 0x42, 0x02, 0x10, 0x01, 0x52, 0x16, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3895. 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3896. 0x6e, 0x3a, 0x66, 0x0a, 0x18, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65,
  3897. 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e,
  3898. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3899. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74,
  3900. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x61, 0x20, 0x03, 0x28, 0x06, 0x42, 0x02, 0x10,
  3901. 0x01, 0x52, 0x16, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  3902. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x19, 0x70, 0x61, 0x63,
  3903. 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74,
  3904. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3905. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3906. 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3907. 0x18, 0x62, 0x20, 0x03, 0x28, 0x0f, 0x42, 0x02, 0x10, 0x01, 0x52, 0x17, 0x70, 0x61, 0x63, 0x6b,
  3908. 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3909. 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x19, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66,
  3910. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3911. 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3912. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3913. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x63, 0x20, 0x03, 0x28, 0x10,
  3914. 0x42, 0x02, 0x10, 0x01, 0x52, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78,
  3915. 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x62, 0x0a,
  3916. 0x16, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78,
  3917. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3918. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3919. 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3920. 0x73, 0x18, 0x64, 0x20, 0x03, 0x28, 0x02, 0x42, 0x02, 0x10, 0x01, 0x52, 0x14, 0x70, 0x61, 0x63,
  3921. 0x6b, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3922. 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62,
  3923. 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67,
  3924. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3925. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65,
  3926. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x65, 0x20, 0x03, 0x28, 0x01, 0x42, 0x02, 0x10, 0x01,
  3927. 0x52, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78,
  3928. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x60, 0x0a, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3929. 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3930. 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3931. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3932. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x66, 0x20, 0x03, 0x28, 0x08,
  3933. 0x42, 0x02, 0x10, 0x01, 0x52, 0x13, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c,
  3934. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x81, 0x01, 0x0a, 0x15, 0x70, 0x61,
  3935. 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3936. 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3937. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63,
  3938. 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x67, 0x20,
  3939. 0x03, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3940. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e,
  3941. 0x45, 0x6e, 0x75, 0x6d, 0x42, 0x02, 0x10, 0x01, 0x52, 0x13, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3942. 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a,
  3943. 0x18, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f,
  3944. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3945. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3946. 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3947. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5a, 0x20, 0x03, 0x28, 0x05, 0x42, 0x02, 0x10, 0x00, 0x52,
  3948. 0x16, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78,
  3949. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x18, 0x75, 0x6e, 0x70, 0x61, 0x63,
  3950. 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3951. 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3952. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70,
  3953. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3954. 0x5b, 0x20, 0x03, 0x28, 0x03, 0x42, 0x02, 0x10, 0x00, 0x52, 0x16, 0x75, 0x6e, 0x70, 0x61, 0x63,
  3955. 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3956. 0x6e, 0x3a, 0x6a, 0x0a, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69,
  3957. 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a,
  3958. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3959. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3960. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5c, 0x20, 0x03, 0x28, 0x0d,
  3961. 0x42, 0x02, 0x10, 0x00, 0x52, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69,
  3962. 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6a, 0x0a,
  3963. 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34,
  3964. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70,
  3965. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3966. 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65,
  3967. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5d, 0x20, 0x03, 0x28, 0x04, 0x42, 0x02, 0x10, 0x00,
  3968. 0x52, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34,
  3969. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6a, 0x0a, 0x19, 0x75, 0x6e, 0x70,
  3970. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74,
  3971. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3972. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3973. 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3974. 0x6e, 0x73, 0x18, 0x5e, 0x20, 0x03, 0x28, 0x11, 0x42, 0x02, 0x10, 0x00, 0x52, 0x17, 0x75, 0x6e,
  3975. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65,
  3976. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6a, 0x0a, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3977. 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3978. 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3979. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61,
  3980. 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5f,
  3981. 0x20, 0x03, 0x28, 0x12, 0x42, 0x02, 0x10, 0x00, 0x52, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3982. 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3983. 0x6e, 0x3a, 0x6c, 0x0a, 0x1a, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69,
  3984. 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  3985. 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3986. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3987. 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x60, 0x20, 0x03, 0x28,
  3988. 0x07, 0x42, 0x02, 0x10, 0x00, 0x52, 0x18, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46,
  3989. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3990. 0x6c, 0x0a, 0x1a, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65,
  3991. 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e,
  3992. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3993. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45,
  3994. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x61, 0x20, 0x03, 0x28, 0x06, 0x42,
  3995. 0x02, 0x10, 0x00, 0x52, 0x18, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78,
  3996. 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6e, 0x0a,
  3997. 0x1b, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64,
  3998. 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67,
  3999. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  4000. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78,
  4001. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x62, 0x20, 0x03, 0x28, 0x0f, 0x42, 0x02,
  4002. 0x10, 0x00, 0x52, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78,
  4003. 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6e, 0x0a,
  4004. 0x1b, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64,
  4005. 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67,
  4006. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  4007. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78,
  4008. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x63, 0x20, 0x03, 0x28, 0x10, 0x42, 0x02,
  4009. 0x10, 0x00, 0x52, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78,
  4010. 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a,
  4011. 0x18, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f,
  4012. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  4013. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  4014. 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e,
  4015. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x64, 0x20, 0x03, 0x28, 0x02, 0x42, 0x02, 0x10, 0x00, 0x52,
  4016. 0x16, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78,
  4017. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6a, 0x0a, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63,
  4018. 0x6b, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  4019. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  4020. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e,
  4021. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  4022. 0x18, 0x65, 0x20, 0x03, 0x28, 0x01, 0x42, 0x02, 0x10, 0x00, 0x52, 0x17, 0x75, 0x6e, 0x70, 0x61,
  4023. 0x63, 0x6b, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  4024. 0x69, 0x6f, 0x6e, 0x3a, 0x66, 0x0a, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f,
  4025. 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a,
  4026. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  4027. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  4028. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x66, 0x20, 0x03, 0x28, 0x08,
  4029. 0x42, 0x02, 0x10, 0x00, 0x52, 0x15, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x42, 0x6f,
  4030. 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x87, 0x01, 0x0a, 0x17,
  4031. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78,
  4032. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  4033. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  4034. 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  4035. 0x6f, 0x6e, 0x73, 0x18, 0x67, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  4036. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46,
  4037. 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x42, 0x02, 0x10, 0x00, 0x52, 0x15,
  4038. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65,
  4039. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x35, 0x5a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  4040. 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  4041. 0x62, 0x75, 0x66, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x74, 0x65, 0x73,
  4042. 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x50, 0x01, 0x58, 0x02,
  4043. 0x58, 0x03,
  4044. }
  4045. var (
  4046. file_test_test_proto_rawDescOnce sync.Once
  4047. file_test_test_proto_rawDescData = file_test_test_proto_rawDesc
  4048. )
  4049. func file_test_test_proto_rawDescGZIP() []byte {
  4050. file_test_test_proto_rawDescOnce.Do(func() {
  4051. file_test_test_proto_rawDescData = protoimpl.X.CompressGZIP(file_test_test_proto_rawDescData)
  4052. })
  4053. return file_test_test_proto_rawDescData
  4054. }
  4055. var file_test_test_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
  4056. var file_test_test_proto_msgTypes = make([]protoimpl.MessageInfo, 42)
  4057. var file_test_test_proto_goTypes = []interface{}{
  4058. (ForeignEnum)(0), // 0: goproto.proto.test.ForeignEnum
  4059. (TestReservedEnumFields)(0), // 1: goproto.proto.test.TestReservedEnumFields
  4060. (TestAllTypes_NestedEnum)(0), // 2: goproto.proto.test.TestAllTypes.NestedEnum
  4061. (TestDeprecatedMessage_DeprecatedEnum)(0), // 3: goproto.proto.test.TestDeprecatedMessage.DeprecatedEnum
  4062. (*TestAllTypes)(nil), // 4: goproto.proto.test.TestAllTypes
  4063. (*TestDeprecatedMessage)(nil), // 5: goproto.proto.test.TestDeprecatedMessage
  4064. (*ForeignMessage)(nil), // 6: goproto.proto.test.ForeignMessage
  4065. (*TestReservedFields)(nil), // 7: goproto.proto.test.TestReservedFields
  4066. (*TestAllExtensions)(nil), // 8: goproto.proto.test.TestAllExtensions
  4067. (*OptionalGroupExtension)(nil), // 9: goproto.proto.test.OptionalGroup_extension
  4068. (*RepeatedGroupExtension)(nil), // 10: goproto.proto.test.RepeatedGroup_extension
  4069. (*TestNestedExtension)(nil), // 11: goproto.proto.test.TestNestedExtension
  4070. (*TestRequired)(nil), // 12: goproto.proto.test.TestRequired
  4071. (*TestRequiredForeign)(nil), // 13: goproto.proto.test.TestRequiredForeign
  4072. (*TestRequiredGroupFields)(nil), // 14: goproto.proto.test.TestRequiredGroupFields
  4073. (*TestWeak)(nil), // 15: goproto.proto.test.TestWeak
  4074. (*TestPackedTypes)(nil), // 16: goproto.proto.test.TestPackedTypes
  4075. (*TestUnpackedTypes)(nil), // 17: goproto.proto.test.TestUnpackedTypes
  4076. (*TestPackedExtensions)(nil), // 18: goproto.proto.test.TestPackedExtensions
  4077. (*TestUnpackedExtensions)(nil), // 19: goproto.proto.test.TestUnpackedExtensions
  4078. (*FooRequest)(nil), // 20: goproto.proto.test.FooRequest
  4079. (*FooResponse)(nil), // 21: goproto.proto.test.FooResponse
  4080. (*WeirdDefault)(nil), // 22: goproto.proto.test.WeirdDefault
  4081. (*TestAllTypes_NestedMessage)(nil), // 23: goproto.proto.test.TestAllTypes.NestedMessage
  4082. (*TestAllTypes_OptionalGroup)(nil), // 24: goproto.proto.test.TestAllTypes.OptionalGroup
  4083. (*TestAllTypes_RepeatedGroup)(nil), // 25: goproto.proto.test.TestAllTypes.RepeatedGroup
  4084. nil, // 26: goproto.proto.test.TestAllTypes.MapInt32Int32Entry
  4085. nil, // 27: goproto.proto.test.TestAllTypes.MapInt64Int64Entry
  4086. nil, // 28: goproto.proto.test.TestAllTypes.MapUint32Uint32Entry
  4087. nil, // 29: goproto.proto.test.TestAllTypes.MapUint64Uint64Entry
  4088. nil, // 30: goproto.proto.test.TestAllTypes.MapSint32Sint32Entry
  4089. nil, // 31: goproto.proto.test.TestAllTypes.MapSint64Sint64Entry
  4090. nil, // 32: goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry
  4091. nil, // 33: goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry
  4092. nil, // 34: goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry
  4093. nil, // 35: goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry
  4094. nil, // 36: goproto.proto.test.TestAllTypes.MapInt32FloatEntry
  4095. nil, // 37: goproto.proto.test.TestAllTypes.MapInt32DoubleEntry
  4096. nil, // 38: goproto.proto.test.TestAllTypes.MapBoolBoolEntry
  4097. nil, // 39: goproto.proto.test.TestAllTypes.MapStringStringEntry
  4098. nil, // 40: goproto.proto.test.TestAllTypes.MapStringBytesEntry
  4099. nil, // 41: goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry
  4100. nil, // 42: goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry
  4101. nil, // 43: goproto.proto.test.TestRequiredForeign.MapMessageEntry
  4102. (*TestRequiredGroupFields_OptionalGroup)(nil), // 44: goproto.proto.test.TestRequiredGroupFields.OptionalGroup
  4103. (*TestRequiredGroupFields_RepeatedGroup)(nil), // 45: goproto.proto.test.TestRequiredGroupFields.RepeatedGroup
  4104. (*ImportMessage)(nil), // 46: goproto.proto.test.ImportMessage
  4105. (ImportEnum)(0), // 47: goproto.proto.test.ImportEnum
  4106. }
  4107. var file_test_test_proto_depIdxs = []int32{
  4108. 24, // 0: goproto.proto.test.TestAllTypes.optionalgroup:type_name -> goproto.proto.test.TestAllTypes.OptionalGroup
  4109. 23, // 1: goproto.proto.test.TestAllTypes.optional_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4110. 6, // 2: goproto.proto.test.TestAllTypes.optional_foreign_message:type_name -> goproto.proto.test.ForeignMessage
  4111. 46, // 3: goproto.proto.test.TestAllTypes.optional_import_message:type_name -> goproto.proto.test.ImportMessage
  4112. 2, // 4: goproto.proto.test.TestAllTypes.optional_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4113. 0, // 5: goproto.proto.test.TestAllTypes.optional_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  4114. 47, // 6: goproto.proto.test.TestAllTypes.optional_import_enum:type_name -> goproto.proto.test.ImportEnum
  4115. 25, // 7: goproto.proto.test.TestAllTypes.repeatedgroup:type_name -> goproto.proto.test.TestAllTypes.RepeatedGroup
  4116. 23, // 8: goproto.proto.test.TestAllTypes.repeated_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4117. 6, // 9: goproto.proto.test.TestAllTypes.repeated_foreign_message:type_name -> goproto.proto.test.ForeignMessage
  4118. 46, // 10: goproto.proto.test.TestAllTypes.repeated_importmessage:type_name -> goproto.proto.test.ImportMessage
  4119. 2, // 11: goproto.proto.test.TestAllTypes.repeated_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4120. 0, // 12: goproto.proto.test.TestAllTypes.repeated_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  4121. 47, // 13: goproto.proto.test.TestAllTypes.repeated_importenum:type_name -> goproto.proto.test.ImportEnum
  4122. 26, // 14: goproto.proto.test.TestAllTypes.map_int32_int32:type_name -> goproto.proto.test.TestAllTypes.MapInt32Int32Entry
  4123. 27, // 15: goproto.proto.test.TestAllTypes.map_int64_int64:type_name -> goproto.proto.test.TestAllTypes.MapInt64Int64Entry
  4124. 28, // 16: goproto.proto.test.TestAllTypes.map_uint32_uint32:type_name -> goproto.proto.test.TestAllTypes.MapUint32Uint32Entry
  4125. 29, // 17: goproto.proto.test.TestAllTypes.map_uint64_uint64:type_name -> goproto.proto.test.TestAllTypes.MapUint64Uint64Entry
  4126. 30, // 18: goproto.proto.test.TestAllTypes.map_sint32_sint32:type_name -> goproto.proto.test.TestAllTypes.MapSint32Sint32Entry
  4127. 31, // 19: goproto.proto.test.TestAllTypes.map_sint64_sint64:type_name -> goproto.proto.test.TestAllTypes.MapSint64Sint64Entry
  4128. 32, // 20: goproto.proto.test.TestAllTypes.map_fixed32_fixed32:type_name -> goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry
  4129. 33, // 21: goproto.proto.test.TestAllTypes.map_fixed64_fixed64:type_name -> goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry
  4130. 34, // 22: goproto.proto.test.TestAllTypes.map_sfixed32_sfixed32:type_name -> goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry
  4131. 35, // 23: goproto.proto.test.TestAllTypes.map_sfixed64_sfixed64:type_name -> goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry
  4132. 36, // 24: goproto.proto.test.TestAllTypes.map_int32_float:type_name -> goproto.proto.test.TestAllTypes.MapInt32FloatEntry
  4133. 37, // 25: goproto.proto.test.TestAllTypes.map_int32_double:type_name -> goproto.proto.test.TestAllTypes.MapInt32DoubleEntry
  4134. 38, // 26: goproto.proto.test.TestAllTypes.map_bool_bool:type_name -> goproto.proto.test.TestAllTypes.MapBoolBoolEntry
  4135. 39, // 27: goproto.proto.test.TestAllTypes.map_string_string:type_name -> goproto.proto.test.TestAllTypes.MapStringStringEntry
  4136. 40, // 28: goproto.proto.test.TestAllTypes.map_string_bytes:type_name -> goproto.proto.test.TestAllTypes.MapStringBytesEntry
  4137. 41, // 29: goproto.proto.test.TestAllTypes.map_string_nested_message:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry
  4138. 42, // 30: goproto.proto.test.TestAllTypes.map_string_nested_enum:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry
  4139. 2, // 31: goproto.proto.test.TestAllTypes.default_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4140. 0, // 32: goproto.proto.test.TestAllTypes.default_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  4141. 23, // 33: goproto.proto.test.TestAllTypes.oneof_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4142. 2, // 34: goproto.proto.test.TestAllTypes.oneof_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4143. 12, // 35: goproto.proto.test.TestRequiredForeign.optional_message:type_name -> goproto.proto.test.TestRequired
  4144. 12, // 36: goproto.proto.test.TestRequiredForeign.repeated_message:type_name -> goproto.proto.test.TestRequired
  4145. 43, // 37: goproto.proto.test.TestRequiredForeign.map_message:type_name -> goproto.proto.test.TestRequiredForeign.MapMessageEntry
  4146. 12, // 38: goproto.proto.test.TestRequiredForeign.oneof_message:type_name -> goproto.proto.test.TestRequired
  4147. 44, // 39: goproto.proto.test.TestRequiredGroupFields.optionalgroup:type_name -> goproto.proto.test.TestRequiredGroupFields.OptionalGroup
  4148. 45, // 40: goproto.proto.test.TestRequiredGroupFields.repeatedgroup:type_name -> goproto.proto.test.TestRequiredGroupFields.RepeatedGroup
  4149. 0, // 41: goproto.proto.test.TestPackedTypes.packed_enum:type_name -> goproto.proto.test.ForeignEnum
  4150. 0, // 42: goproto.proto.test.TestUnpackedTypes.unpacked_enum:type_name -> goproto.proto.test.ForeignEnum
  4151. 4, // 43: goproto.proto.test.TestAllTypes.NestedMessage.corecursive:type_name -> goproto.proto.test.TestAllTypes
  4152. 23, // 44: goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4153. 2, // 45: goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4154. 12, // 46: goproto.proto.test.TestRequiredForeign.MapMessageEntry.value:type_name -> goproto.proto.test.TestRequired
  4155. 8, // 47: goproto.proto.test.optional_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4156. 8, // 48: goproto.proto.test.optional_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4157. 8, // 49: goproto.proto.test.optional_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4158. 8, // 50: goproto.proto.test.optional_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4159. 8, // 51: goproto.proto.test.optional_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4160. 8, // 52: goproto.proto.test.optional_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4161. 8, // 53: goproto.proto.test.optional_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4162. 8, // 54: goproto.proto.test.optional_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4163. 8, // 55: goproto.proto.test.optional_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4164. 8, // 56: goproto.proto.test.optional_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4165. 8, // 57: goproto.proto.test.optional_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  4166. 8, // 58: goproto.proto.test.optional_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  4167. 8, // 59: goproto.proto.test.optional_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  4168. 8, // 60: goproto.proto.test.optional_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4169. 8, // 61: goproto.proto.test.optional_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  4170. 8, // 62: goproto.proto.test.optionalgroup_extension:extendee -> goproto.proto.test.TestAllExtensions
  4171. 8, // 63: goproto.proto.test.optional_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions
  4172. 8, // 64: goproto.proto.test.optional_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions
  4173. 8, // 65: goproto.proto.test.repeated_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4174. 8, // 66: goproto.proto.test.repeated_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4175. 8, // 67: goproto.proto.test.repeated_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4176. 8, // 68: goproto.proto.test.repeated_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4177. 8, // 69: goproto.proto.test.repeated_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4178. 8, // 70: goproto.proto.test.repeated_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4179. 8, // 71: goproto.proto.test.repeated_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4180. 8, // 72: goproto.proto.test.repeated_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4181. 8, // 73: goproto.proto.test.repeated_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4182. 8, // 74: goproto.proto.test.repeated_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4183. 8, // 75: goproto.proto.test.repeated_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  4184. 8, // 76: goproto.proto.test.repeated_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  4185. 8, // 77: goproto.proto.test.repeated_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  4186. 8, // 78: goproto.proto.test.repeated_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4187. 8, // 79: goproto.proto.test.repeated_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  4188. 8, // 80: goproto.proto.test.repeatedgroup_extension:extendee -> goproto.proto.test.TestAllExtensions
  4189. 8, // 81: goproto.proto.test.repeated_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions
  4190. 8, // 82: goproto.proto.test.repeated_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions
  4191. 8, // 83: goproto.proto.test.default_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4192. 8, // 84: goproto.proto.test.default_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4193. 8, // 85: goproto.proto.test.default_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4194. 8, // 86: goproto.proto.test.default_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4195. 8, // 87: goproto.proto.test.default_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4196. 8, // 88: goproto.proto.test.default_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4197. 8, // 89: goproto.proto.test.default_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4198. 8, // 90: goproto.proto.test.default_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4199. 8, // 91: goproto.proto.test.default_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4200. 8, // 92: goproto.proto.test.default_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4201. 8, // 93: goproto.proto.test.default_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  4202. 8, // 94: goproto.proto.test.default_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  4203. 8, // 95: goproto.proto.test.default_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  4204. 8, // 96: goproto.proto.test.default_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4205. 8, // 97: goproto.proto.test.default_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  4206. 18, // 98: goproto.proto.test.packed_int32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4207. 18, // 99: goproto.proto.test.packed_int64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4208. 18, // 100: goproto.proto.test.packed_uint32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4209. 18, // 101: goproto.proto.test.packed_uint64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4210. 18, // 102: goproto.proto.test.packed_sint32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4211. 18, // 103: goproto.proto.test.packed_sint64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4212. 18, // 104: goproto.proto.test.packed_fixed32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4213. 18, // 105: goproto.proto.test.packed_fixed64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4214. 18, // 106: goproto.proto.test.packed_sfixed32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4215. 18, // 107: goproto.proto.test.packed_sfixed64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4216. 18, // 108: goproto.proto.test.packed_float_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4217. 18, // 109: goproto.proto.test.packed_double_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4218. 18, // 110: goproto.proto.test.packed_bool_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4219. 18, // 111: goproto.proto.test.packed_enum_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4220. 19, // 112: goproto.proto.test.unpacked_int32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4221. 19, // 113: goproto.proto.test.unpacked_int64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4222. 19, // 114: goproto.proto.test.unpacked_uint32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4223. 19, // 115: goproto.proto.test.unpacked_uint64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4224. 19, // 116: goproto.proto.test.unpacked_sint32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4225. 19, // 117: goproto.proto.test.unpacked_sint64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4226. 19, // 118: goproto.proto.test.unpacked_fixed32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4227. 19, // 119: goproto.proto.test.unpacked_fixed64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4228. 19, // 120: goproto.proto.test.unpacked_sfixed32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4229. 19, // 121: goproto.proto.test.unpacked_sfixed64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4230. 19, // 122: goproto.proto.test.unpacked_float_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4231. 19, // 123: goproto.proto.test.unpacked_double_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4232. 19, // 124: goproto.proto.test.unpacked_bool_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4233. 19, // 125: goproto.proto.test.unpacked_enum_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4234. 8, // 126: goproto.proto.test.TestNestedExtension.nested_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4235. 8, // 127: goproto.proto.test.TestRequired.single:extendee -> goproto.proto.test.TestAllExtensions
  4236. 8, // 128: goproto.proto.test.TestRequired.multi:extendee -> goproto.proto.test.TestAllExtensions
  4237. 9, // 129: goproto.proto.test.optionalgroup_extension:type_name -> goproto.proto.test.OptionalGroup_extension
  4238. 23, // 130: goproto.proto.test.optional_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4239. 2, // 131: goproto.proto.test.optional_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4240. 10, // 132: goproto.proto.test.repeatedgroup_extension:type_name -> goproto.proto.test.RepeatedGroup_extension
  4241. 23, // 133: goproto.proto.test.repeated_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4242. 2, // 134: goproto.proto.test.repeated_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4243. 0, // 135: goproto.proto.test.packed_enum_extension:type_name -> goproto.proto.test.ForeignEnum
  4244. 0, // 136: goproto.proto.test.unpacked_enum_extension:type_name -> goproto.proto.test.ForeignEnum
  4245. 12, // 137: goproto.proto.test.TestRequired.single:type_name -> goproto.proto.test.TestRequired
  4246. 12, // 138: goproto.proto.test.TestRequired.multi:type_name -> goproto.proto.test.TestRequired
  4247. 20, // 139: goproto.proto.test.TestService.Foo:input_type -> goproto.proto.test.FooRequest
  4248. 20, // 140: goproto.proto.test.TestService.TestStream:input_type -> goproto.proto.test.FooRequest
  4249. 5, // 141: goproto.proto.test.TestDeprecatedService.Deprecated:input_type -> goproto.proto.test.TestDeprecatedMessage
  4250. 21, // 142: goproto.proto.test.TestService.Foo:output_type -> goproto.proto.test.FooResponse
  4251. 21, // 143: goproto.proto.test.TestService.TestStream:output_type -> goproto.proto.test.FooResponse
  4252. 5, // 144: goproto.proto.test.TestDeprecatedService.Deprecated:output_type -> goproto.proto.test.TestDeprecatedMessage
  4253. 142, // [142:145] is the sub-list for method output_type
  4254. 139, // [139:142] is the sub-list for method input_type
  4255. 129, // [129:139] is the sub-list for extension type_name
  4256. 47, // [47:129] is the sub-list for extension extendee
  4257. 0, // [0:47] is the sub-list for field type_name
  4258. }
  4259. func init() { file_test_test_proto_init() }
  4260. func file_test_test_proto_init() {
  4261. if File_test_test_proto != nil {
  4262. return
  4263. }
  4264. file_test_test_import_proto_init()
  4265. file_test_test_public_proto_init()
  4266. if !protoimpl.UnsafeEnabled {
  4267. file_test_test_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4268. switch v := v.(*TestAllTypes); i {
  4269. case 0:
  4270. return &v.state
  4271. case 1:
  4272. return &v.sizeCache
  4273. case 2:
  4274. return &v.unknownFields
  4275. default:
  4276. return nil
  4277. }
  4278. }
  4279. file_test_test_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4280. switch v := v.(*TestDeprecatedMessage); i {
  4281. case 0:
  4282. return &v.state
  4283. case 1:
  4284. return &v.sizeCache
  4285. case 2:
  4286. return &v.unknownFields
  4287. default:
  4288. return nil
  4289. }
  4290. }
  4291. file_test_test_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4292. switch v := v.(*ForeignMessage); i {
  4293. case 0:
  4294. return &v.state
  4295. case 1:
  4296. return &v.sizeCache
  4297. case 2:
  4298. return &v.unknownFields
  4299. default:
  4300. return nil
  4301. }
  4302. }
  4303. file_test_test_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4304. switch v := v.(*TestReservedFields); i {
  4305. case 0:
  4306. return &v.state
  4307. case 1:
  4308. return &v.sizeCache
  4309. case 2:
  4310. return &v.unknownFields
  4311. default:
  4312. return nil
  4313. }
  4314. }
  4315. file_test_test_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4316. switch v := v.(*TestAllExtensions); i {
  4317. case 0:
  4318. return &v.state
  4319. case 1:
  4320. return &v.sizeCache
  4321. case 2:
  4322. return &v.unknownFields
  4323. case 3:
  4324. return &v.extensionFields
  4325. default:
  4326. return nil
  4327. }
  4328. }
  4329. file_test_test_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4330. switch v := v.(*OptionalGroupExtension); i {
  4331. case 0:
  4332. return &v.state
  4333. case 1:
  4334. return &v.sizeCache
  4335. case 2:
  4336. return &v.unknownFields
  4337. default:
  4338. return nil
  4339. }
  4340. }
  4341. file_test_test_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4342. switch v := v.(*RepeatedGroupExtension); i {
  4343. case 0:
  4344. return &v.state
  4345. case 1:
  4346. return &v.sizeCache
  4347. case 2:
  4348. return &v.unknownFields
  4349. default:
  4350. return nil
  4351. }
  4352. }
  4353. file_test_test_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4354. switch v := v.(*TestNestedExtension); i {
  4355. case 0:
  4356. return &v.state
  4357. case 1:
  4358. return &v.sizeCache
  4359. case 2:
  4360. return &v.unknownFields
  4361. default:
  4362. return nil
  4363. }
  4364. }
  4365. file_test_test_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4366. switch v := v.(*TestRequired); i {
  4367. case 0:
  4368. return &v.state
  4369. case 1:
  4370. return &v.sizeCache
  4371. case 2:
  4372. return &v.unknownFields
  4373. default:
  4374. return nil
  4375. }
  4376. }
  4377. file_test_test_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4378. switch v := v.(*TestRequiredForeign); i {
  4379. case 0:
  4380. return &v.state
  4381. case 1:
  4382. return &v.sizeCache
  4383. case 2:
  4384. return &v.unknownFields
  4385. default:
  4386. return nil
  4387. }
  4388. }
  4389. file_test_test_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4390. switch v := v.(*TestRequiredGroupFields); i {
  4391. case 0:
  4392. return &v.state
  4393. case 1:
  4394. return &v.sizeCache
  4395. case 2:
  4396. return &v.unknownFields
  4397. default:
  4398. return nil
  4399. }
  4400. }
  4401. file_test_test_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4402. switch v := v.(*TestWeak); i {
  4403. case 0:
  4404. return &v.state
  4405. case 1:
  4406. return &v.sizeCache
  4407. case 3:
  4408. return &v.unknownFields
  4409. default:
  4410. return nil
  4411. }
  4412. }
  4413. file_test_test_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4414. switch v := v.(*TestPackedTypes); i {
  4415. case 0:
  4416. return &v.state
  4417. case 1:
  4418. return &v.sizeCache
  4419. case 2:
  4420. return &v.unknownFields
  4421. default:
  4422. return nil
  4423. }
  4424. }
  4425. file_test_test_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4426. switch v := v.(*TestUnpackedTypes); i {
  4427. case 0:
  4428. return &v.state
  4429. case 1:
  4430. return &v.sizeCache
  4431. case 2:
  4432. return &v.unknownFields
  4433. default:
  4434. return nil
  4435. }
  4436. }
  4437. file_test_test_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4438. switch v := v.(*TestPackedExtensions); i {
  4439. case 0:
  4440. return &v.state
  4441. case 1:
  4442. return &v.sizeCache
  4443. case 2:
  4444. return &v.unknownFields
  4445. case 3:
  4446. return &v.extensionFields
  4447. default:
  4448. return nil
  4449. }
  4450. }
  4451. file_test_test_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4452. switch v := v.(*TestUnpackedExtensions); i {
  4453. case 0:
  4454. return &v.state
  4455. case 1:
  4456. return &v.sizeCache
  4457. case 2:
  4458. return &v.unknownFields
  4459. case 3:
  4460. return &v.extensionFields
  4461. default:
  4462. return nil
  4463. }
  4464. }
  4465. file_test_test_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4466. switch v := v.(*FooRequest); i {
  4467. case 0:
  4468. return &v.state
  4469. case 1:
  4470. return &v.sizeCache
  4471. case 2:
  4472. return &v.unknownFields
  4473. default:
  4474. return nil
  4475. }
  4476. }
  4477. file_test_test_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  4478. switch v := v.(*FooResponse); i {
  4479. case 0:
  4480. return &v.state
  4481. case 1:
  4482. return &v.sizeCache
  4483. case 2:
  4484. return &v.unknownFields
  4485. default:
  4486. return nil
  4487. }
  4488. }
  4489. file_test_test_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  4490. switch v := v.(*WeirdDefault); i {
  4491. case 0:
  4492. return &v.state
  4493. case 1:
  4494. return &v.sizeCache
  4495. case 2:
  4496. return &v.unknownFields
  4497. default:
  4498. return nil
  4499. }
  4500. }
  4501. file_test_test_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  4502. switch v := v.(*TestAllTypes_NestedMessage); i {
  4503. case 0:
  4504. return &v.state
  4505. case 1:
  4506. return &v.sizeCache
  4507. case 2:
  4508. return &v.unknownFields
  4509. default:
  4510. return nil
  4511. }
  4512. }
  4513. file_test_test_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  4514. switch v := v.(*TestAllTypes_OptionalGroup); i {
  4515. case 0:
  4516. return &v.state
  4517. case 1:
  4518. return &v.sizeCache
  4519. case 2:
  4520. return &v.unknownFields
  4521. default:
  4522. return nil
  4523. }
  4524. }
  4525. file_test_test_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  4526. switch v := v.(*TestAllTypes_RepeatedGroup); i {
  4527. case 0:
  4528. return &v.state
  4529. case 1:
  4530. return &v.sizeCache
  4531. case 2:
  4532. return &v.unknownFields
  4533. default:
  4534. return nil
  4535. }
  4536. }
  4537. file_test_test_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4538. switch v := v.(*TestRequiredGroupFields_OptionalGroup); i {
  4539. case 0:
  4540. return &v.state
  4541. case 1:
  4542. return &v.sizeCache
  4543. case 2:
  4544. return &v.unknownFields
  4545. default:
  4546. return nil
  4547. }
  4548. }
  4549. file_test_test_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  4550. switch v := v.(*TestRequiredGroupFields_RepeatedGroup); i {
  4551. case 0:
  4552. return &v.state
  4553. case 1:
  4554. return &v.sizeCache
  4555. case 2:
  4556. return &v.unknownFields
  4557. default:
  4558. return nil
  4559. }
  4560. }
  4561. }
  4562. file_test_test_proto_msgTypes[0].OneofWrappers = []interface{}{
  4563. (*TestAllTypes_OneofUint32)(nil),
  4564. (*TestAllTypes_OneofNestedMessage)(nil),
  4565. (*TestAllTypes_OneofString)(nil),
  4566. (*TestAllTypes_OneofBytes)(nil),
  4567. (*TestAllTypes_OneofBool)(nil),
  4568. (*TestAllTypes_OneofUint64)(nil),
  4569. (*TestAllTypes_OneofFloat)(nil),
  4570. (*TestAllTypes_OneofDouble)(nil),
  4571. (*TestAllTypes_OneofEnum)(nil),
  4572. (*TestAllTypes_OneofOptionalUint32)(nil),
  4573. }
  4574. file_test_test_proto_msgTypes[1].OneofWrappers = []interface{}{
  4575. (*TestDeprecatedMessage_DeprecatedOneofField)(nil),
  4576. }
  4577. file_test_test_proto_msgTypes[9].OneofWrappers = []interface{}{
  4578. (*TestRequiredForeign_OneofMessage)(nil),
  4579. }
  4580. type x struct{}
  4581. out := protoimpl.TypeBuilder{
  4582. File: protoimpl.DescBuilder{
  4583. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  4584. RawDescriptor: file_test_test_proto_rawDesc,
  4585. NumEnums: 4,
  4586. NumMessages: 42,
  4587. NumExtensions: 82,
  4588. NumServices: 2,
  4589. },
  4590. GoTypes: file_test_test_proto_goTypes,
  4591. DependencyIndexes: file_test_test_proto_depIdxs,
  4592. EnumInfos: file_test_test_proto_enumTypes,
  4593. MessageInfos: file_test_test_proto_msgTypes,
  4594. ExtensionInfos: file_test_test_proto_extTypes,
  4595. }.Build()
  4596. File_test_test_proto = out.File
  4597. file_test_test_proto_rawDesc = nil
  4598. file_test_test_proto_goTypes = nil
  4599. file_test_test_proto_depIdxs = nil
  4600. }