fuzz_testing.pb.swift 287 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046
  1. // DO NOT EDIT.
  2. // swift-format-ignore-file
  3. // swiftlint:disable all
  4. //
  5. // Generated by the Swift generator plugin for the protocol buffer compiler.
  6. // Source: fuzz_testing.proto
  7. //
  8. // For information on using the generated types, please see the documentation:
  9. // https://github.com/apple/swift-protobuf/
  10. // Protos/fuzz_testing.proto
  11. //
  12. // This source file is part of the Swift.org open source project
  13. //
  14. // Copyright (c) 2014 - 2021 Apple Inc. and the Swift project authors
  15. // Licensed under Apache License v2.0 with Runtime Library Exception
  16. //
  17. // See http://swift.org/LICENSE.txt for license information
  18. // See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
  19. // Using a proto2 syntax so the the test message can include groups and
  20. // extensions. This should have every field type so the fuzz testing can attempt
  21. // to execersize just about everything.
  22. import Foundation
  23. import SwiftProtobuf
  24. // If the compiler emits an error on this type, it is because this file
  25. // was generated by a version of the `protoc` Swift plug-in that is
  26. // incompatible with the version of SwiftProtobuf to which you are linking.
  27. // Please ensure that you are building against the same version of the API
  28. // that was used to generate this file.
  29. fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAPIVersionCheck {
  30. struct _2: SwiftProtobuf.ProtobufAPIVersion_2 {}
  31. typealias Version = _2
  32. }
  33. public enum SwiftProtoTesting_Fuzz_AnEnum: Int, SwiftProtobuf.Enum, Swift.CaseIterable {
  34. case zero = 0
  35. case one = 1
  36. case two = 2
  37. case three = 3
  38. public init() {
  39. self = .zero
  40. }
  41. }
  42. public struct SwiftProtoTesting_Fuzz_Message: SwiftProtobuf.ExtensibleMessage, @unchecked Sendable {
  43. // SwiftProtobuf.Message conformance is added in an extension below. See the
  44. // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
  45. // methods supported on all messages.
  46. /// Singular
  47. public var singularInt32: Int32 {
  48. get {_storage._singularInt32 ?? 0}
  49. set {_uniqueStorage()._singularInt32 = newValue}
  50. }
  51. /// Returns true if `singularInt32` has been explicitly set.
  52. public var hasSingularInt32: Bool {_storage._singularInt32 != nil}
  53. /// Clears the value of `singularInt32`. Subsequent reads from it will return its default value.
  54. public mutating func clearSingularInt32() {_uniqueStorage()._singularInt32 = nil}
  55. public var singularInt64: Int64 {
  56. get {_storage._singularInt64 ?? 0}
  57. set {_uniqueStorage()._singularInt64 = newValue}
  58. }
  59. /// Returns true if `singularInt64` has been explicitly set.
  60. public var hasSingularInt64: Bool {_storage._singularInt64 != nil}
  61. /// Clears the value of `singularInt64`. Subsequent reads from it will return its default value.
  62. public mutating func clearSingularInt64() {_uniqueStorage()._singularInt64 = nil}
  63. public var singularUint32: UInt32 {
  64. get {_storage._singularUint32 ?? 0}
  65. set {_uniqueStorage()._singularUint32 = newValue}
  66. }
  67. /// Returns true if `singularUint32` has been explicitly set.
  68. public var hasSingularUint32: Bool {_storage._singularUint32 != nil}
  69. /// Clears the value of `singularUint32`. Subsequent reads from it will return its default value.
  70. public mutating func clearSingularUint32() {_uniqueStorage()._singularUint32 = nil}
  71. public var singularUint64: UInt64 {
  72. get {_storage._singularUint64 ?? 0}
  73. set {_uniqueStorage()._singularUint64 = newValue}
  74. }
  75. /// Returns true if `singularUint64` has been explicitly set.
  76. public var hasSingularUint64: Bool {_storage._singularUint64 != nil}
  77. /// Clears the value of `singularUint64`. Subsequent reads from it will return its default value.
  78. public mutating func clearSingularUint64() {_uniqueStorage()._singularUint64 = nil}
  79. public var singularSint32: Int32 {
  80. get {_storage._singularSint32 ?? 0}
  81. set {_uniqueStorage()._singularSint32 = newValue}
  82. }
  83. /// Returns true if `singularSint32` has been explicitly set.
  84. public var hasSingularSint32: Bool {_storage._singularSint32 != nil}
  85. /// Clears the value of `singularSint32`. Subsequent reads from it will return its default value.
  86. public mutating func clearSingularSint32() {_uniqueStorage()._singularSint32 = nil}
  87. public var singularSint64: Int64 {
  88. get {_storage._singularSint64 ?? 0}
  89. set {_uniqueStorage()._singularSint64 = newValue}
  90. }
  91. /// Returns true if `singularSint64` has been explicitly set.
  92. public var hasSingularSint64: Bool {_storage._singularSint64 != nil}
  93. /// Clears the value of `singularSint64`. Subsequent reads from it will return its default value.
  94. public mutating func clearSingularSint64() {_uniqueStorage()._singularSint64 = nil}
  95. public var singularFixed32: UInt32 {
  96. get {_storage._singularFixed32 ?? 0}
  97. set {_uniqueStorage()._singularFixed32 = newValue}
  98. }
  99. /// Returns true if `singularFixed32` has been explicitly set.
  100. public var hasSingularFixed32: Bool {_storage._singularFixed32 != nil}
  101. /// Clears the value of `singularFixed32`. Subsequent reads from it will return its default value.
  102. public mutating func clearSingularFixed32() {_uniqueStorage()._singularFixed32 = nil}
  103. public var singularFixed64: UInt64 {
  104. get {_storage._singularFixed64 ?? 0}
  105. set {_uniqueStorage()._singularFixed64 = newValue}
  106. }
  107. /// Returns true if `singularFixed64` has been explicitly set.
  108. public var hasSingularFixed64: Bool {_storage._singularFixed64 != nil}
  109. /// Clears the value of `singularFixed64`. Subsequent reads from it will return its default value.
  110. public mutating func clearSingularFixed64() {_uniqueStorage()._singularFixed64 = nil}
  111. public var singularSfixed32: Int32 {
  112. get {_storage._singularSfixed32 ?? 0}
  113. set {_uniqueStorage()._singularSfixed32 = newValue}
  114. }
  115. /// Returns true if `singularSfixed32` has been explicitly set.
  116. public var hasSingularSfixed32: Bool {_storage._singularSfixed32 != nil}
  117. /// Clears the value of `singularSfixed32`. Subsequent reads from it will return its default value.
  118. public mutating func clearSingularSfixed32() {_uniqueStorage()._singularSfixed32 = nil}
  119. public var singularSfixed64: Int64 {
  120. get {_storage._singularSfixed64 ?? 0}
  121. set {_uniqueStorage()._singularSfixed64 = newValue}
  122. }
  123. /// Returns true if `singularSfixed64` has been explicitly set.
  124. public var hasSingularSfixed64: Bool {_storage._singularSfixed64 != nil}
  125. /// Clears the value of `singularSfixed64`. Subsequent reads from it will return its default value.
  126. public mutating func clearSingularSfixed64() {_uniqueStorage()._singularSfixed64 = nil}
  127. public var singularFloat: Float {
  128. get {_storage._singularFloat ?? 0}
  129. set {_uniqueStorage()._singularFloat = newValue}
  130. }
  131. /// Returns true if `singularFloat` has been explicitly set.
  132. public var hasSingularFloat: Bool {_storage._singularFloat != nil}
  133. /// Clears the value of `singularFloat`. Subsequent reads from it will return its default value.
  134. public mutating func clearSingularFloat() {_uniqueStorage()._singularFloat = nil}
  135. public var singularDouble: Double {
  136. get {_storage._singularDouble ?? 0}
  137. set {_uniqueStorage()._singularDouble = newValue}
  138. }
  139. /// Returns true if `singularDouble` has been explicitly set.
  140. public var hasSingularDouble: Bool {_storage._singularDouble != nil}
  141. /// Clears the value of `singularDouble`. Subsequent reads from it will return its default value.
  142. public mutating func clearSingularDouble() {_uniqueStorage()._singularDouble = nil}
  143. public var singularBool: Bool {
  144. get {_storage._singularBool ?? false}
  145. set {_uniqueStorage()._singularBool = newValue}
  146. }
  147. /// Returns true if `singularBool` has been explicitly set.
  148. public var hasSingularBool: Bool {_storage._singularBool != nil}
  149. /// Clears the value of `singularBool`. Subsequent reads from it will return its default value.
  150. public mutating func clearSingularBool() {_uniqueStorage()._singularBool = nil}
  151. public var singularString: String {
  152. get {_storage._singularString ?? String()}
  153. set {_uniqueStorage()._singularString = newValue}
  154. }
  155. /// Returns true if `singularString` has been explicitly set.
  156. public var hasSingularString: Bool {_storage._singularString != nil}
  157. /// Clears the value of `singularString`. Subsequent reads from it will return its default value.
  158. public mutating func clearSingularString() {_uniqueStorage()._singularString = nil}
  159. public var singularBytes: Data {
  160. get {_storage._singularBytes ?? Data()}
  161. set {_uniqueStorage()._singularBytes = newValue}
  162. }
  163. /// Returns true if `singularBytes` has been explicitly set.
  164. public var hasSingularBytes: Bool {_storage._singularBytes != nil}
  165. /// Clears the value of `singularBytes`. Subsequent reads from it will return its default value.
  166. public mutating func clearSingularBytes() {_uniqueStorage()._singularBytes = nil}
  167. public var singularEnum: SwiftProtoTesting_Fuzz_AnEnum {
  168. get {_storage._singularEnum ?? .zero}
  169. set {_uniqueStorage()._singularEnum = newValue}
  170. }
  171. /// Returns true if `singularEnum` has been explicitly set.
  172. public var hasSingularEnum: Bool {_storage._singularEnum != nil}
  173. /// Clears the value of `singularEnum`. Subsequent reads from it will return its default value.
  174. public mutating func clearSingularEnum() {_uniqueStorage()._singularEnum = nil}
  175. public var singularGroup: SwiftProtoTesting_Fuzz_Message.SingularGroup {
  176. get {_storage._singularGroup ?? SwiftProtoTesting_Fuzz_Message.SingularGroup()}
  177. set {_uniqueStorage()._singularGroup = newValue}
  178. }
  179. /// Returns true if `singularGroup` has been explicitly set.
  180. public var hasSingularGroup: Bool {_storage._singularGroup != nil}
  181. /// Clears the value of `singularGroup`. Subsequent reads from it will return its default value.
  182. public mutating func clearSingularGroup() {_uniqueStorage()._singularGroup = nil}
  183. public var singularMessage: SwiftProtoTesting_Fuzz_Message {
  184. get {_storage._singularMessage ?? SwiftProtoTesting_Fuzz_Message()}
  185. set {_uniqueStorage()._singularMessage = newValue}
  186. }
  187. /// Returns true if `singularMessage` has been explicitly set.
  188. public var hasSingularMessage: Bool {_storage._singularMessage != nil}
  189. /// Clears the value of `singularMessage`. Subsequent reads from it will return its default value.
  190. public mutating func clearSingularMessage() {_uniqueStorage()._singularMessage = nil}
  191. /// Repeated
  192. public var repeatedInt32: [Int32] {
  193. get {_storage._repeatedInt32}
  194. set {_uniqueStorage()._repeatedInt32 = newValue}
  195. }
  196. public var repeatedInt64: [Int64] {
  197. get {_storage._repeatedInt64}
  198. set {_uniqueStorage()._repeatedInt64 = newValue}
  199. }
  200. public var repeatedUint32: [UInt32] {
  201. get {_storage._repeatedUint32}
  202. set {_uniqueStorage()._repeatedUint32 = newValue}
  203. }
  204. public var repeatedUint64: [UInt64] {
  205. get {_storage._repeatedUint64}
  206. set {_uniqueStorage()._repeatedUint64 = newValue}
  207. }
  208. public var repeatedSint32: [Int32] {
  209. get {_storage._repeatedSint32}
  210. set {_uniqueStorage()._repeatedSint32 = newValue}
  211. }
  212. public var repeatedSint64: [Int64] {
  213. get {_storage._repeatedSint64}
  214. set {_uniqueStorage()._repeatedSint64 = newValue}
  215. }
  216. public var repeatedFixed32: [UInt32] {
  217. get {_storage._repeatedFixed32}
  218. set {_uniqueStorage()._repeatedFixed32 = newValue}
  219. }
  220. public var repeatedFixed64: [UInt64] {
  221. get {_storage._repeatedFixed64}
  222. set {_uniqueStorage()._repeatedFixed64 = newValue}
  223. }
  224. public var repeatedSfixed32: [Int32] {
  225. get {_storage._repeatedSfixed32}
  226. set {_uniqueStorage()._repeatedSfixed32 = newValue}
  227. }
  228. public var repeatedSfixed64: [Int64] {
  229. get {_storage._repeatedSfixed64}
  230. set {_uniqueStorage()._repeatedSfixed64 = newValue}
  231. }
  232. public var repeatedFloat: [Float] {
  233. get {_storage._repeatedFloat}
  234. set {_uniqueStorage()._repeatedFloat = newValue}
  235. }
  236. public var repeatedDouble: [Double] {
  237. get {_storage._repeatedDouble}
  238. set {_uniqueStorage()._repeatedDouble = newValue}
  239. }
  240. public var repeatedBool: [Bool] {
  241. get {_storage._repeatedBool}
  242. set {_uniqueStorage()._repeatedBool = newValue}
  243. }
  244. public var repeatedString: [String] {
  245. get {_storage._repeatedString}
  246. set {_uniqueStorage()._repeatedString = newValue}
  247. }
  248. public var repeatedBytes: [Data] {
  249. get {_storage._repeatedBytes}
  250. set {_uniqueStorage()._repeatedBytes = newValue}
  251. }
  252. public var repeatedEnum: [SwiftProtoTesting_Fuzz_AnEnum] {
  253. get {_storage._repeatedEnum}
  254. set {_uniqueStorage()._repeatedEnum = newValue}
  255. }
  256. public var repeatedGroup: [SwiftProtoTesting_Fuzz_Message.RepeatedGroup] {
  257. get {_storage._repeatedGroup}
  258. set {_uniqueStorage()._repeatedGroup = newValue}
  259. }
  260. public var repeatedMessage: [SwiftProtoTesting_Fuzz_Message] {
  261. get {_storage._repeatedMessage}
  262. set {_uniqueStorage()._repeatedMessage = newValue}
  263. }
  264. /// oneof
  265. public var o: OneOf_O? {
  266. get {return _storage._o}
  267. set {_uniqueStorage()._o = newValue}
  268. }
  269. public var oneofInt32: Int32 {
  270. get {
  271. if case .oneofInt32(let v)? = _storage._o {return v}
  272. return 0
  273. }
  274. set {_uniqueStorage()._o = .oneofInt32(newValue)}
  275. }
  276. public var oneofInt64: Int64 {
  277. get {
  278. if case .oneofInt64(let v)? = _storage._o {return v}
  279. return 0
  280. }
  281. set {_uniqueStorage()._o = .oneofInt64(newValue)}
  282. }
  283. public var oneofUint32: UInt32 {
  284. get {
  285. if case .oneofUint32(let v)? = _storage._o {return v}
  286. return 0
  287. }
  288. set {_uniqueStorage()._o = .oneofUint32(newValue)}
  289. }
  290. public var oneofUint64: UInt64 {
  291. get {
  292. if case .oneofUint64(let v)? = _storage._o {return v}
  293. return 0
  294. }
  295. set {_uniqueStorage()._o = .oneofUint64(newValue)}
  296. }
  297. public var oneofSint32: Int32 {
  298. get {
  299. if case .oneofSint32(let v)? = _storage._o {return v}
  300. return 0
  301. }
  302. set {_uniqueStorage()._o = .oneofSint32(newValue)}
  303. }
  304. public var oneofSint64: Int64 {
  305. get {
  306. if case .oneofSint64(let v)? = _storage._o {return v}
  307. return 0
  308. }
  309. set {_uniqueStorage()._o = .oneofSint64(newValue)}
  310. }
  311. public var oneofFixed32: UInt32 {
  312. get {
  313. if case .oneofFixed32(let v)? = _storage._o {return v}
  314. return 0
  315. }
  316. set {_uniqueStorage()._o = .oneofFixed32(newValue)}
  317. }
  318. public var oneofFixed64: UInt64 {
  319. get {
  320. if case .oneofFixed64(let v)? = _storage._o {return v}
  321. return 0
  322. }
  323. set {_uniqueStorage()._o = .oneofFixed64(newValue)}
  324. }
  325. public var oneofSfixed32: Int32 {
  326. get {
  327. if case .oneofSfixed32(let v)? = _storage._o {return v}
  328. return 0
  329. }
  330. set {_uniqueStorage()._o = .oneofSfixed32(newValue)}
  331. }
  332. public var oneofSfixed64: Int64 {
  333. get {
  334. if case .oneofSfixed64(let v)? = _storage._o {return v}
  335. return 0
  336. }
  337. set {_uniqueStorage()._o = .oneofSfixed64(newValue)}
  338. }
  339. public var oneofFloat: Float {
  340. get {
  341. if case .oneofFloat(let v)? = _storage._o {return v}
  342. return 0
  343. }
  344. set {_uniqueStorage()._o = .oneofFloat(newValue)}
  345. }
  346. public var oneofDouble: Double {
  347. get {
  348. if case .oneofDouble(let v)? = _storage._o {return v}
  349. return 0
  350. }
  351. set {_uniqueStorage()._o = .oneofDouble(newValue)}
  352. }
  353. public var oneofBool: Bool {
  354. get {
  355. if case .oneofBool(let v)? = _storage._o {return v}
  356. return false
  357. }
  358. set {_uniqueStorage()._o = .oneofBool(newValue)}
  359. }
  360. public var oneofString: String {
  361. get {
  362. if case .oneofString(let v)? = _storage._o {return v}
  363. return String()
  364. }
  365. set {_uniqueStorage()._o = .oneofString(newValue)}
  366. }
  367. public var oneofBytes: Data {
  368. get {
  369. if case .oneofBytes(let v)? = _storage._o {return v}
  370. return Data()
  371. }
  372. set {_uniqueStorage()._o = .oneofBytes(newValue)}
  373. }
  374. public var oneofEnum: SwiftProtoTesting_Fuzz_AnEnum {
  375. get {
  376. if case .oneofEnum(let v)? = _storage._o {return v}
  377. return .zero
  378. }
  379. set {_uniqueStorage()._o = .oneofEnum(newValue)}
  380. }
  381. public var oneofGroup: SwiftProtoTesting_Fuzz_Message.OneofGroup {
  382. get {
  383. if case .oneofGroup(let v)? = _storage._o {return v}
  384. return SwiftProtoTesting_Fuzz_Message.OneofGroup()
  385. }
  386. set {_uniqueStorage()._o = .oneofGroup(newValue)}
  387. }
  388. public var oneofMessage: SwiftProtoTesting_Fuzz_Message {
  389. get {
  390. if case .oneofMessage(let v)? = _storage._o {return v}
  391. return SwiftProtoTesting_Fuzz_Message()
  392. }
  393. set {_uniqueStorage()._o = .oneofMessage(newValue)}
  394. }
  395. /// Repeated Packed
  396. public var repeatedPackedInt32: [Int32] {
  397. get {_storage._repeatedPackedInt32}
  398. set {_uniqueStorage()._repeatedPackedInt32 = newValue}
  399. }
  400. public var repeatedPackedInt64: [Int64] {
  401. get {_storage._repeatedPackedInt64}
  402. set {_uniqueStorage()._repeatedPackedInt64 = newValue}
  403. }
  404. public var repeatedPackedUint32: [UInt32] {
  405. get {_storage._repeatedPackedUint32}
  406. set {_uniqueStorage()._repeatedPackedUint32 = newValue}
  407. }
  408. public var repeatedPackedUint64: [UInt64] {
  409. get {_storage._repeatedPackedUint64}
  410. set {_uniqueStorage()._repeatedPackedUint64 = newValue}
  411. }
  412. public var repeatedPackedSint32: [Int32] {
  413. get {_storage._repeatedPackedSint32}
  414. set {_uniqueStorage()._repeatedPackedSint32 = newValue}
  415. }
  416. public var repeatedPackedSint64: [Int64] {
  417. get {_storage._repeatedPackedSint64}
  418. set {_uniqueStorage()._repeatedPackedSint64 = newValue}
  419. }
  420. public var repeatedPackedFixed32: [UInt32] {
  421. get {_storage._repeatedPackedFixed32}
  422. set {_uniqueStorage()._repeatedPackedFixed32 = newValue}
  423. }
  424. public var repeatedPackedFixed64: [UInt64] {
  425. get {_storage._repeatedPackedFixed64}
  426. set {_uniqueStorage()._repeatedPackedFixed64 = newValue}
  427. }
  428. public var repeatedPackedSfixed32: [Int32] {
  429. get {_storage._repeatedPackedSfixed32}
  430. set {_uniqueStorage()._repeatedPackedSfixed32 = newValue}
  431. }
  432. public var repeatedPackedSfixed64: [Int64] {
  433. get {_storage._repeatedPackedSfixed64}
  434. set {_uniqueStorage()._repeatedPackedSfixed64 = newValue}
  435. }
  436. public var repeatedPackedFloat: [Float] {
  437. get {_storage._repeatedPackedFloat}
  438. set {_uniqueStorage()._repeatedPackedFloat = newValue}
  439. }
  440. public var repeatedPackedDouble: [Double] {
  441. get {_storage._repeatedPackedDouble}
  442. set {_uniqueStorage()._repeatedPackedDouble = newValue}
  443. }
  444. public var repeatedPackedBool: [Bool] {
  445. get {_storage._repeatedPackedBool}
  446. set {_uniqueStorage()._repeatedPackedBool = newValue}
  447. }
  448. public var repeatedPackedEnum: [SwiftProtoTesting_Fuzz_AnEnum] {
  449. get {_storage._repeatedPackedEnum}
  450. set {_uniqueStorage()._repeatedPackedEnum = newValue}
  451. }
  452. /// map<>
  453. public var mapInt32Int32: Dictionary<Int32,Int32> {
  454. get {_storage._mapInt32Int32}
  455. set {_uniqueStorage()._mapInt32Int32 = newValue}
  456. }
  457. public var mapInt32Int64: Dictionary<Int32,Int64> {
  458. get {_storage._mapInt32Int64}
  459. set {_uniqueStorage()._mapInt32Int64 = newValue}
  460. }
  461. public var mapInt32Uint32: Dictionary<Int32,UInt32> {
  462. get {_storage._mapInt32Uint32}
  463. set {_uniqueStorage()._mapInt32Uint32 = newValue}
  464. }
  465. public var mapInt32Uint64: Dictionary<Int32,UInt64> {
  466. get {_storage._mapInt32Uint64}
  467. set {_uniqueStorage()._mapInt32Uint64 = newValue}
  468. }
  469. public var mapInt32Sint32: Dictionary<Int32,Int32> {
  470. get {_storage._mapInt32Sint32}
  471. set {_uniqueStorage()._mapInt32Sint32 = newValue}
  472. }
  473. public var mapInt32Sint64: Dictionary<Int32,Int64> {
  474. get {_storage._mapInt32Sint64}
  475. set {_uniqueStorage()._mapInt32Sint64 = newValue}
  476. }
  477. public var mapInt32Fixed32: Dictionary<Int32,UInt32> {
  478. get {_storage._mapInt32Fixed32}
  479. set {_uniqueStorage()._mapInt32Fixed32 = newValue}
  480. }
  481. public var mapInt32Fixed64: Dictionary<Int32,UInt64> {
  482. get {_storage._mapInt32Fixed64}
  483. set {_uniqueStorage()._mapInt32Fixed64 = newValue}
  484. }
  485. public var mapInt32Sfixed32: Dictionary<Int32,Int32> {
  486. get {_storage._mapInt32Sfixed32}
  487. set {_uniqueStorage()._mapInt32Sfixed32 = newValue}
  488. }
  489. public var mapInt32Sfixed64: Dictionary<Int32,Int64> {
  490. get {_storage._mapInt32Sfixed64}
  491. set {_uniqueStorage()._mapInt32Sfixed64 = newValue}
  492. }
  493. public var mapInt32Float: Dictionary<Int32,Float> {
  494. get {_storage._mapInt32Float}
  495. set {_uniqueStorage()._mapInt32Float = newValue}
  496. }
  497. public var mapInt32Double: Dictionary<Int32,Double> {
  498. get {_storage._mapInt32Double}
  499. set {_uniqueStorage()._mapInt32Double = newValue}
  500. }
  501. public var mapInt32Bool: Dictionary<Int32,Bool> {
  502. get {_storage._mapInt32Bool}
  503. set {_uniqueStorage()._mapInt32Bool = newValue}
  504. }
  505. public var mapInt32String: Dictionary<Int32,String> {
  506. get {_storage._mapInt32String}
  507. set {_uniqueStorage()._mapInt32String = newValue}
  508. }
  509. public var mapInt32Bytes: Dictionary<Int32,Data> {
  510. get {_storage._mapInt32Bytes}
  511. set {_uniqueStorage()._mapInt32Bytes = newValue}
  512. }
  513. public var mapInt32AnEnum: Dictionary<Int32,SwiftProtoTesting_Fuzz_AnEnum> {
  514. get {_storage._mapInt32AnEnum}
  515. set {_uniqueStorage()._mapInt32AnEnum = newValue}
  516. }
  517. public var mapInt32Message: Dictionary<Int32,SwiftProtoTesting_Fuzz_Message> {
  518. get {_storage._mapInt32Message}
  519. set {_uniqueStorage()._mapInt32Message = newValue}
  520. }
  521. public var mapInt64Int32: Dictionary<Int64,Int32> {
  522. get {_storage._mapInt64Int32}
  523. set {_uniqueStorage()._mapInt64Int32 = newValue}
  524. }
  525. public var mapInt64Int64: Dictionary<Int64,Int64> {
  526. get {_storage._mapInt64Int64}
  527. set {_uniqueStorage()._mapInt64Int64 = newValue}
  528. }
  529. public var mapInt64Uint32: Dictionary<Int64,UInt32> {
  530. get {_storage._mapInt64Uint32}
  531. set {_uniqueStorage()._mapInt64Uint32 = newValue}
  532. }
  533. public var mapInt64Uint64: Dictionary<Int64,UInt64> {
  534. get {_storage._mapInt64Uint64}
  535. set {_uniqueStorage()._mapInt64Uint64 = newValue}
  536. }
  537. public var mapInt64Sint32: Dictionary<Int64,Int32> {
  538. get {_storage._mapInt64Sint32}
  539. set {_uniqueStorage()._mapInt64Sint32 = newValue}
  540. }
  541. public var mapInt64Sint64: Dictionary<Int64,Int64> {
  542. get {_storage._mapInt64Sint64}
  543. set {_uniqueStorage()._mapInt64Sint64 = newValue}
  544. }
  545. public var mapInt64Fixed32: Dictionary<Int64,UInt32> {
  546. get {_storage._mapInt64Fixed32}
  547. set {_uniqueStorage()._mapInt64Fixed32 = newValue}
  548. }
  549. public var mapInt64Fixed64: Dictionary<Int64,UInt64> {
  550. get {_storage._mapInt64Fixed64}
  551. set {_uniqueStorage()._mapInt64Fixed64 = newValue}
  552. }
  553. public var mapInt64Sfixed32: Dictionary<Int64,Int32> {
  554. get {_storage._mapInt64Sfixed32}
  555. set {_uniqueStorage()._mapInt64Sfixed32 = newValue}
  556. }
  557. public var mapInt64Sfixed64: Dictionary<Int64,Int64> {
  558. get {_storage._mapInt64Sfixed64}
  559. set {_uniqueStorage()._mapInt64Sfixed64 = newValue}
  560. }
  561. public var mapInt64Float: Dictionary<Int64,Float> {
  562. get {_storage._mapInt64Float}
  563. set {_uniqueStorage()._mapInt64Float = newValue}
  564. }
  565. public var mapInt64Double: Dictionary<Int64,Double> {
  566. get {_storage._mapInt64Double}
  567. set {_uniqueStorage()._mapInt64Double = newValue}
  568. }
  569. public var mapInt64Bool: Dictionary<Int64,Bool> {
  570. get {_storage._mapInt64Bool}
  571. set {_uniqueStorage()._mapInt64Bool = newValue}
  572. }
  573. public var mapInt64String: Dictionary<Int64,String> {
  574. get {_storage._mapInt64String}
  575. set {_uniqueStorage()._mapInt64String = newValue}
  576. }
  577. public var mapInt64Bytes: Dictionary<Int64,Data> {
  578. get {_storage._mapInt64Bytes}
  579. set {_uniqueStorage()._mapInt64Bytes = newValue}
  580. }
  581. public var mapInt64AnEnum: Dictionary<Int64,SwiftProtoTesting_Fuzz_AnEnum> {
  582. get {_storage._mapInt64AnEnum}
  583. set {_uniqueStorage()._mapInt64AnEnum = newValue}
  584. }
  585. public var mapInt64Message: Dictionary<Int64,SwiftProtoTesting_Fuzz_Message> {
  586. get {_storage._mapInt64Message}
  587. set {_uniqueStorage()._mapInt64Message = newValue}
  588. }
  589. public var mapUint32Int32: Dictionary<UInt32,Int32> {
  590. get {_storage._mapUint32Int32}
  591. set {_uniqueStorage()._mapUint32Int32 = newValue}
  592. }
  593. public var mapUint32Int64: Dictionary<UInt32,Int64> {
  594. get {_storage._mapUint32Int64}
  595. set {_uniqueStorage()._mapUint32Int64 = newValue}
  596. }
  597. public var mapUint32Uint32: Dictionary<UInt32,UInt32> {
  598. get {_storage._mapUint32Uint32}
  599. set {_uniqueStorage()._mapUint32Uint32 = newValue}
  600. }
  601. public var mapUint32Uint64: Dictionary<UInt32,UInt64> {
  602. get {_storage._mapUint32Uint64}
  603. set {_uniqueStorage()._mapUint32Uint64 = newValue}
  604. }
  605. public var mapUint32Sint32: Dictionary<UInt32,Int32> {
  606. get {_storage._mapUint32Sint32}
  607. set {_uniqueStorage()._mapUint32Sint32 = newValue}
  608. }
  609. public var mapUint32Sint64: Dictionary<UInt32,Int64> {
  610. get {_storage._mapUint32Sint64}
  611. set {_uniqueStorage()._mapUint32Sint64 = newValue}
  612. }
  613. public var mapUint32Fixed32: Dictionary<UInt32,UInt32> {
  614. get {_storage._mapUint32Fixed32}
  615. set {_uniqueStorage()._mapUint32Fixed32 = newValue}
  616. }
  617. public var mapUint32Fixed64: Dictionary<UInt32,UInt64> {
  618. get {_storage._mapUint32Fixed64}
  619. set {_uniqueStorage()._mapUint32Fixed64 = newValue}
  620. }
  621. public var mapUint32Sfixed32: Dictionary<UInt32,Int32> {
  622. get {_storage._mapUint32Sfixed32}
  623. set {_uniqueStorage()._mapUint32Sfixed32 = newValue}
  624. }
  625. public var mapUint32Sfixed64: Dictionary<UInt32,Int64> {
  626. get {_storage._mapUint32Sfixed64}
  627. set {_uniqueStorage()._mapUint32Sfixed64 = newValue}
  628. }
  629. public var mapUint32Float: Dictionary<UInt32,Float> {
  630. get {_storage._mapUint32Float}
  631. set {_uniqueStorage()._mapUint32Float = newValue}
  632. }
  633. public var mapUint32Double: Dictionary<UInt32,Double> {
  634. get {_storage._mapUint32Double}
  635. set {_uniqueStorage()._mapUint32Double = newValue}
  636. }
  637. public var mapUint32Bool: Dictionary<UInt32,Bool> {
  638. get {_storage._mapUint32Bool}
  639. set {_uniqueStorage()._mapUint32Bool = newValue}
  640. }
  641. public var mapUint32String: Dictionary<UInt32,String> {
  642. get {_storage._mapUint32String}
  643. set {_uniqueStorage()._mapUint32String = newValue}
  644. }
  645. public var mapUint32Bytes: Dictionary<UInt32,Data> {
  646. get {_storage._mapUint32Bytes}
  647. set {_uniqueStorage()._mapUint32Bytes = newValue}
  648. }
  649. public var mapUint32AnEnum: Dictionary<UInt32,SwiftProtoTesting_Fuzz_AnEnum> {
  650. get {_storage._mapUint32AnEnum}
  651. set {_uniqueStorage()._mapUint32AnEnum = newValue}
  652. }
  653. public var mapUint32Message: Dictionary<UInt32,SwiftProtoTesting_Fuzz_Message> {
  654. get {_storage._mapUint32Message}
  655. set {_uniqueStorage()._mapUint32Message = newValue}
  656. }
  657. public var mapUint64Int32: Dictionary<UInt64,Int32> {
  658. get {_storage._mapUint64Int32}
  659. set {_uniqueStorage()._mapUint64Int32 = newValue}
  660. }
  661. public var mapUint64Int64: Dictionary<UInt64,Int64> {
  662. get {_storage._mapUint64Int64}
  663. set {_uniqueStorage()._mapUint64Int64 = newValue}
  664. }
  665. public var mapUint64Uint32: Dictionary<UInt64,UInt32> {
  666. get {_storage._mapUint64Uint32}
  667. set {_uniqueStorage()._mapUint64Uint32 = newValue}
  668. }
  669. public var mapUint64Uint64: Dictionary<UInt64,UInt64> {
  670. get {_storage._mapUint64Uint64}
  671. set {_uniqueStorage()._mapUint64Uint64 = newValue}
  672. }
  673. public var mapUint64Sint32: Dictionary<UInt64,Int32> {
  674. get {_storage._mapUint64Sint32}
  675. set {_uniqueStorage()._mapUint64Sint32 = newValue}
  676. }
  677. public var mapUint64Sint64: Dictionary<UInt64,Int64> {
  678. get {_storage._mapUint64Sint64}
  679. set {_uniqueStorage()._mapUint64Sint64 = newValue}
  680. }
  681. public var mapUint64Fixed32: Dictionary<UInt64,UInt32> {
  682. get {_storage._mapUint64Fixed32}
  683. set {_uniqueStorage()._mapUint64Fixed32 = newValue}
  684. }
  685. public var mapUint64Fixed64: Dictionary<UInt64,UInt64> {
  686. get {_storage._mapUint64Fixed64}
  687. set {_uniqueStorage()._mapUint64Fixed64 = newValue}
  688. }
  689. public var mapUint64Sfixed32: Dictionary<UInt64,Int32> {
  690. get {_storage._mapUint64Sfixed32}
  691. set {_uniqueStorage()._mapUint64Sfixed32 = newValue}
  692. }
  693. public var mapUint64Sfixed64: Dictionary<UInt64,Int64> {
  694. get {_storage._mapUint64Sfixed64}
  695. set {_uniqueStorage()._mapUint64Sfixed64 = newValue}
  696. }
  697. public var mapUint64Float: Dictionary<UInt64,Float> {
  698. get {_storage._mapUint64Float}
  699. set {_uniqueStorage()._mapUint64Float = newValue}
  700. }
  701. public var mapUint64Double: Dictionary<UInt64,Double> {
  702. get {_storage._mapUint64Double}
  703. set {_uniqueStorage()._mapUint64Double = newValue}
  704. }
  705. public var mapUint64Bool: Dictionary<UInt64,Bool> {
  706. get {_storage._mapUint64Bool}
  707. set {_uniqueStorage()._mapUint64Bool = newValue}
  708. }
  709. public var mapUint64String: Dictionary<UInt64,String> {
  710. get {_storage._mapUint64String}
  711. set {_uniqueStorage()._mapUint64String = newValue}
  712. }
  713. public var mapUint64Bytes: Dictionary<UInt64,Data> {
  714. get {_storage._mapUint64Bytes}
  715. set {_uniqueStorage()._mapUint64Bytes = newValue}
  716. }
  717. public var mapUint64AnEnum: Dictionary<UInt64,SwiftProtoTesting_Fuzz_AnEnum> {
  718. get {_storage._mapUint64AnEnum}
  719. set {_uniqueStorage()._mapUint64AnEnum = newValue}
  720. }
  721. public var mapUint64Message: Dictionary<UInt64,SwiftProtoTesting_Fuzz_Message> {
  722. get {_storage._mapUint64Message}
  723. set {_uniqueStorage()._mapUint64Message = newValue}
  724. }
  725. public var mapSint32Int32: Dictionary<Int32,Int32> {
  726. get {_storage._mapSint32Int32}
  727. set {_uniqueStorage()._mapSint32Int32 = newValue}
  728. }
  729. public var mapSint32Int64: Dictionary<Int32,Int64> {
  730. get {_storage._mapSint32Int64}
  731. set {_uniqueStorage()._mapSint32Int64 = newValue}
  732. }
  733. public var mapSint32Uint32: Dictionary<Int32,UInt32> {
  734. get {_storage._mapSint32Uint32}
  735. set {_uniqueStorage()._mapSint32Uint32 = newValue}
  736. }
  737. public var mapSint32Uint64: Dictionary<Int32,UInt64> {
  738. get {_storage._mapSint32Uint64}
  739. set {_uniqueStorage()._mapSint32Uint64 = newValue}
  740. }
  741. public var mapSint32Sint32: Dictionary<Int32,Int32> {
  742. get {_storage._mapSint32Sint32}
  743. set {_uniqueStorage()._mapSint32Sint32 = newValue}
  744. }
  745. public var mapSint32Sint64: Dictionary<Int32,Int64> {
  746. get {_storage._mapSint32Sint64}
  747. set {_uniqueStorage()._mapSint32Sint64 = newValue}
  748. }
  749. public var mapSint32Fixed32: Dictionary<Int32,UInt32> {
  750. get {_storage._mapSint32Fixed32}
  751. set {_uniqueStorage()._mapSint32Fixed32 = newValue}
  752. }
  753. public var mapSint32Fixed64: Dictionary<Int32,UInt64> {
  754. get {_storage._mapSint32Fixed64}
  755. set {_uniqueStorage()._mapSint32Fixed64 = newValue}
  756. }
  757. public var mapSint32Sfixed32: Dictionary<Int32,Int32> {
  758. get {_storage._mapSint32Sfixed32}
  759. set {_uniqueStorage()._mapSint32Sfixed32 = newValue}
  760. }
  761. public var mapSint32Sfixed64: Dictionary<Int32,Int64> {
  762. get {_storage._mapSint32Sfixed64}
  763. set {_uniqueStorage()._mapSint32Sfixed64 = newValue}
  764. }
  765. public var mapSint32Float: Dictionary<Int32,Float> {
  766. get {_storage._mapSint32Float}
  767. set {_uniqueStorage()._mapSint32Float = newValue}
  768. }
  769. public var mapSint32Double: Dictionary<Int32,Double> {
  770. get {_storage._mapSint32Double}
  771. set {_uniqueStorage()._mapSint32Double = newValue}
  772. }
  773. public var mapSint32Bool: Dictionary<Int32,Bool> {
  774. get {_storage._mapSint32Bool}
  775. set {_uniqueStorage()._mapSint32Bool = newValue}
  776. }
  777. public var mapSint32String: Dictionary<Int32,String> {
  778. get {_storage._mapSint32String}
  779. set {_uniqueStorage()._mapSint32String = newValue}
  780. }
  781. public var mapSint32Bytes: Dictionary<Int32,Data> {
  782. get {_storage._mapSint32Bytes}
  783. set {_uniqueStorage()._mapSint32Bytes = newValue}
  784. }
  785. public var mapSint32AnEnum: Dictionary<Int32,SwiftProtoTesting_Fuzz_AnEnum> {
  786. get {_storage._mapSint32AnEnum}
  787. set {_uniqueStorage()._mapSint32AnEnum = newValue}
  788. }
  789. public var mapSint32Message: Dictionary<Int32,SwiftProtoTesting_Fuzz_Message> {
  790. get {_storage._mapSint32Message}
  791. set {_uniqueStorage()._mapSint32Message = newValue}
  792. }
  793. public var mapSint64Int32: Dictionary<Int64,Int32> {
  794. get {_storage._mapSint64Int32}
  795. set {_uniqueStorage()._mapSint64Int32 = newValue}
  796. }
  797. public var mapSint64Int64: Dictionary<Int64,Int64> {
  798. get {_storage._mapSint64Int64}
  799. set {_uniqueStorage()._mapSint64Int64 = newValue}
  800. }
  801. public var mapSint64Uint32: Dictionary<Int64,UInt32> {
  802. get {_storage._mapSint64Uint32}
  803. set {_uniqueStorage()._mapSint64Uint32 = newValue}
  804. }
  805. public var mapSint64Uint64: Dictionary<Int64,UInt64> {
  806. get {_storage._mapSint64Uint64}
  807. set {_uniqueStorage()._mapSint64Uint64 = newValue}
  808. }
  809. public var mapSint64Sint32: Dictionary<Int64,Int32> {
  810. get {_storage._mapSint64Sint32}
  811. set {_uniqueStorage()._mapSint64Sint32 = newValue}
  812. }
  813. public var mapSint64Sint64: Dictionary<Int64,Int64> {
  814. get {_storage._mapSint64Sint64}
  815. set {_uniqueStorage()._mapSint64Sint64 = newValue}
  816. }
  817. public var mapSint64Fixed32: Dictionary<Int64,UInt32> {
  818. get {_storage._mapSint64Fixed32}
  819. set {_uniqueStorage()._mapSint64Fixed32 = newValue}
  820. }
  821. public var mapSint64Fixed64: Dictionary<Int64,UInt64> {
  822. get {_storage._mapSint64Fixed64}
  823. set {_uniqueStorage()._mapSint64Fixed64 = newValue}
  824. }
  825. public var mapSint64Sfixed32: Dictionary<Int64,Int32> {
  826. get {_storage._mapSint64Sfixed32}
  827. set {_uniqueStorage()._mapSint64Sfixed32 = newValue}
  828. }
  829. public var mapSint64Sfixed64: Dictionary<Int64,Int64> {
  830. get {_storage._mapSint64Sfixed64}
  831. set {_uniqueStorage()._mapSint64Sfixed64 = newValue}
  832. }
  833. public var mapSint64Float: Dictionary<Int64,Float> {
  834. get {_storage._mapSint64Float}
  835. set {_uniqueStorage()._mapSint64Float = newValue}
  836. }
  837. public var mapSint64Double: Dictionary<Int64,Double> {
  838. get {_storage._mapSint64Double}
  839. set {_uniqueStorage()._mapSint64Double = newValue}
  840. }
  841. public var mapSint64Bool: Dictionary<Int64,Bool> {
  842. get {_storage._mapSint64Bool}
  843. set {_uniqueStorage()._mapSint64Bool = newValue}
  844. }
  845. public var mapSint64String: Dictionary<Int64,String> {
  846. get {_storage._mapSint64String}
  847. set {_uniqueStorage()._mapSint64String = newValue}
  848. }
  849. public var mapSint64Bytes: Dictionary<Int64,Data> {
  850. get {_storage._mapSint64Bytes}
  851. set {_uniqueStorage()._mapSint64Bytes = newValue}
  852. }
  853. public var mapSint64AnEnum: Dictionary<Int64,SwiftProtoTesting_Fuzz_AnEnum> {
  854. get {_storage._mapSint64AnEnum}
  855. set {_uniqueStorage()._mapSint64AnEnum = newValue}
  856. }
  857. public var mapSint64Message: Dictionary<Int64,SwiftProtoTesting_Fuzz_Message> {
  858. get {_storage._mapSint64Message}
  859. set {_uniqueStorage()._mapSint64Message = newValue}
  860. }
  861. public var mapFixed32Int32: Dictionary<UInt32,Int32> {
  862. get {_storage._mapFixed32Int32}
  863. set {_uniqueStorage()._mapFixed32Int32 = newValue}
  864. }
  865. public var mapFixed32Int64: Dictionary<UInt32,Int64> {
  866. get {_storage._mapFixed32Int64}
  867. set {_uniqueStorage()._mapFixed32Int64 = newValue}
  868. }
  869. public var mapFixed32Uint32: Dictionary<UInt32,UInt32> {
  870. get {_storage._mapFixed32Uint32}
  871. set {_uniqueStorage()._mapFixed32Uint32 = newValue}
  872. }
  873. public var mapFixed32Uint64: Dictionary<UInt32,UInt64> {
  874. get {_storage._mapFixed32Uint64}
  875. set {_uniqueStorage()._mapFixed32Uint64 = newValue}
  876. }
  877. public var mapFixed32Sint32: Dictionary<UInt32,Int32> {
  878. get {_storage._mapFixed32Sint32}
  879. set {_uniqueStorage()._mapFixed32Sint32 = newValue}
  880. }
  881. public var mapFixed32Sint64: Dictionary<UInt32,Int64> {
  882. get {_storage._mapFixed32Sint64}
  883. set {_uniqueStorage()._mapFixed32Sint64 = newValue}
  884. }
  885. public var mapFixed32Fixed32: Dictionary<UInt32,UInt32> {
  886. get {_storage._mapFixed32Fixed32}
  887. set {_uniqueStorage()._mapFixed32Fixed32 = newValue}
  888. }
  889. public var mapFixed32Fixed64: Dictionary<UInt32,UInt64> {
  890. get {_storage._mapFixed32Fixed64}
  891. set {_uniqueStorage()._mapFixed32Fixed64 = newValue}
  892. }
  893. public var mapFixed32Sfixed32: Dictionary<UInt32,Int32> {
  894. get {_storage._mapFixed32Sfixed32}
  895. set {_uniqueStorage()._mapFixed32Sfixed32 = newValue}
  896. }
  897. public var mapFixed32Sfixed64: Dictionary<UInt32,Int64> {
  898. get {_storage._mapFixed32Sfixed64}
  899. set {_uniqueStorage()._mapFixed32Sfixed64 = newValue}
  900. }
  901. public var mapFixed32Float: Dictionary<UInt32,Float> {
  902. get {_storage._mapFixed32Float}
  903. set {_uniqueStorage()._mapFixed32Float = newValue}
  904. }
  905. public var mapFixed32Double: Dictionary<UInt32,Double> {
  906. get {_storage._mapFixed32Double}
  907. set {_uniqueStorage()._mapFixed32Double = newValue}
  908. }
  909. public var mapFixed32Bool: Dictionary<UInt32,Bool> {
  910. get {_storage._mapFixed32Bool}
  911. set {_uniqueStorage()._mapFixed32Bool = newValue}
  912. }
  913. public var mapFixed32String: Dictionary<UInt32,String> {
  914. get {_storage._mapFixed32String}
  915. set {_uniqueStorage()._mapFixed32String = newValue}
  916. }
  917. public var mapFixed32Bytes: Dictionary<UInt32,Data> {
  918. get {_storage._mapFixed32Bytes}
  919. set {_uniqueStorage()._mapFixed32Bytes = newValue}
  920. }
  921. public var mapFixed32AnEnum: Dictionary<UInt32,SwiftProtoTesting_Fuzz_AnEnum> {
  922. get {_storage._mapFixed32AnEnum}
  923. set {_uniqueStorage()._mapFixed32AnEnum = newValue}
  924. }
  925. public var mapFixed32Message: Dictionary<UInt32,SwiftProtoTesting_Fuzz_Message> {
  926. get {_storage._mapFixed32Message}
  927. set {_uniqueStorage()._mapFixed32Message = newValue}
  928. }
  929. public var mapFixed64Int32: Dictionary<UInt64,Int32> {
  930. get {_storage._mapFixed64Int32}
  931. set {_uniqueStorage()._mapFixed64Int32 = newValue}
  932. }
  933. public var mapFixed64Int64: Dictionary<UInt64,Int64> {
  934. get {_storage._mapFixed64Int64}
  935. set {_uniqueStorage()._mapFixed64Int64 = newValue}
  936. }
  937. public var mapFixed64Uint32: Dictionary<UInt64,UInt32> {
  938. get {_storage._mapFixed64Uint32}
  939. set {_uniqueStorage()._mapFixed64Uint32 = newValue}
  940. }
  941. public var mapFixed64Uint64: Dictionary<UInt64,UInt64> {
  942. get {_storage._mapFixed64Uint64}
  943. set {_uniqueStorage()._mapFixed64Uint64 = newValue}
  944. }
  945. public var mapFixed64Sint32: Dictionary<UInt64,Int32> {
  946. get {_storage._mapFixed64Sint32}
  947. set {_uniqueStorage()._mapFixed64Sint32 = newValue}
  948. }
  949. public var mapFixed64Sint64: Dictionary<UInt64,Int64> {
  950. get {_storage._mapFixed64Sint64}
  951. set {_uniqueStorage()._mapFixed64Sint64 = newValue}
  952. }
  953. public var mapFixed64Fixed32: Dictionary<UInt64,UInt32> {
  954. get {_storage._mapFixed64Fixed32}
  955. set {_uniqueStorage()._mapFixed64Fixed32 = newValue}
  956. }
  957. public var mapFixed64Fixed64: Dictionary<UInt64,UInt64> {
  958. get {_storage._mapFixed64Fixed64}
  959. set {_uniqueStorage()._mapFixed64Fixed64 = newValue}
  960. }
  961. public var mapFixed64Sfixed32: Dictionary<UInt64,Int32> {
  962. get {_storage._mapFixed64Sfixed32}
  963. set {_uniqueStorage()._mapFixed64Sfixed32 = newValue}
  964. }
  965. public var mapFixed64Sfixed64: Dictionary<UInt64,Int64> {
  966. get {_storage._mapFixed64Sfixed64}
  967. set {_uniqueStorage()._mapFixed64Sfixed64 = newValue}
  968. }
  969. public var mapFixed64Float: Dictionary<UInt64,Float> {
  970. get {_storage._mapFixed64Float}
  971. set {_uniqueStorage()._mapFixed64Float = newValue}
  972. }
  973. public var mapFixed64Double: Dictionary<UInt64,Double> {
  974. get {_storage._mapFixed64Double}
  975. set {_uniqueStorage()._mapFixed64Double = newValue}
  976. }
  977. public var mapFixed64Bool: Dictionary<UInt64,Bool> {
  978. get {_storage._mapFixed64Bool}
  979. set {_uniqueStorage()._mapFixed64Bool = newValue}
  980. }
  981. public var mapFixed64String: Dictionary<UInt64,String> {
  982. get {_storage._mapFixed64String}
  983. set {_uniqueStorage()._mapFixed64String = newValue}
  984. }
  985. public var mapFixed64Bytes: Dictionary<UInt64,Data> {
  986. get {_storage._mapFixed64Bytes}
  987. set {_uniqueStorage()._mapFixed64Bytes = newValue}
  988. }
  989. public var mapFixed64AnEnum: Dictionary<UInt64,SwiftProtoTesting_Fuzz_AnEnum> {
  990. get {_storage._mapFixed64AnEnum}
  991. set {_uniqueStorage()._mapFixed64AnEnum = newValue}
  992. }
  993. public var mapFixed64Message: Dictionary<UInt64,SwiftProtoTesting_Fuzz_Message> {
  994. get {_storage._mapFixed64Message}
  995. set {_uniqueStorage()._mapFixed64Message = newValue}
  996. }
  997. public var mapSfixed32Int32: Dictionary<Int32,Int32> {
  998. get {_storage._mapSfixed32Int32}
  999. set {_uniqueStorage()._mapSfixed32Int32 = newValue}
  1000. }
  1001. public var mapSfixed32Int64: Dictionary<Int32,Int64> {
  1002. get {_storage._mapSfixed32Int64}
  1003. set {_uniqueStorage()._mapSfixed32Int64 = newValue}
  1004. }
  1005. public var mapSfixed32Uint32: Dictionary<Int32,UInt32> {
  1006. get {_storage._mapSfixed32Uint32}
  1007. set {_uniqueStorage()._mapSfixed32Uint32 = newValue}
  1008. }
  1009. public var mapSfixed32Uint64: Dictionary<Int32,UInt64> {
  1010. get {_storage._mapSfixed32Uint64}
  1011. set {_uniqueStorage()._mapSfixed32Uint64 = newValue}
  1012. }
  1013. public var mapSfixed32Sint32: Dictionary<Int32,Int32> {
  1014. get {_storage._mapSfixed32Sint32}
  1015. set {_uniqueStorage()._mapSfixed32Sint32 = newValue}
  1016. }
  1017. public var mapSfixed32Sint64: Dictionary<Int32,Int64> {
  1018. get {_storage._mapSfixed32Sint64}
  1019. set {_uniqueStorage()._mapSfixed32Sint64 = newValue}
  1020. }
  1021. public var mapSfixed32Fixed32: Dictionary<Int32,UInt32> {
  1022. get {_storage._mapSfixed32Fixed32}
  1023. set {_uniqueStorage()._mapSfixed32Fixed32 = newValue}
  1024. }
  1025. public var mapSfixed32Fixed64: Dictionary<Int32,UInt64> {
  1026. get {_storage._mapSfixed32Fixed64}
  1027. set {_uniqueStorage()._mapSfixed32Fixed64 = newValue}
  1028. }
  1029. public var mapSfixed32Sfixed32: Dictionary<Int32,Int32> {
  1030. get {_storage._mapSfixed32Sfixed32}
  1031. set {_uniqueStorage()._mapSfixed32Sfixed32 = newValue}
  1032. }
  1033. public var mapSfixed32Sfixed64: Dictionary<Int32,Int64> {
  1034. get {_storage._mapSfixed32Sfixed64}
  1035. set {_uniqueStorage()._mapSfixed32Sfixed64 = newValue}
  1036. }
  1037. public var mapSfixed32Float: Dictionary<Int32,Float> {
  1038. get {_storage._mapSfixed32Float}
  1039. set {_uniqueStorage()._mapSfixed32Float = newValue}
  1040. }
  1041. public var mapSfixed32Double: Dictionary<Int32,Double> {
  1042. get {_storage._mapSfixed32Double}
  1043. set {_uniqueStorage()._mapSfixed32Double = newValue}
  1044. }
  1045. public var mapSfixed32Bool: Dictionary<Int32,Bool> {
  1046. get {_storage._mapSfixed32Bool}
  1047. set {_uniqueStorage()._mapSfixed32Bool = newValue}
  1048. }
  1049. public var mapSfixed32String: Dictionary<Int32,String> {
  1050. get {_storage._mapSfixed32String}
  1051. set {_uniqueStorage()._mapSfixed32String = newValue}
  1052. }
  1053. public var mapSfixed32Bytes: Dictionary<Int32,Data> {
  1054. get {_storage._mapSfixed32Bytes}
  1055. set {_uniqueStorage()._mapSfixed32Bytes = newValue}
  1056. }
  1057. public var mapSfixed32AnEnum: Dictionary<Int32,SwiftProtoTesting_Fuzz_AnEnum> {
  1058. get {_storage._mapSfixed32AnEnum}
  1059. set {_uniqueStorage()._mapSfixed32AnEnum = newValue}
  1060. }
  1061. public var mapSfixed32Message: Dictionary<Int32,SwiftProtoTesting_Fuzz_Message> {
  1062. get {_storage._mapSfixed32Message}
  1063. set {_uniqueStorage()._mapSfixed32Message = newValue}
  1064. }
  1065. public var mapSfixed64Int32: Dictionary<Int64,Int32> {
  1066. get {_storage._mapSfixed64Int32}
  1067. set {_uniqueStorage()._mapSfixed64Int32 = newValue}
  1068. }
  1069. public var mapSfixed64Int64: Dictionary<Int64,Int64> {
  1070. get {_storage._mapSfixed64Int64}
  1071. set {_uniqueStorage()._mapSfixed64Int64 = newValue}
  1072. }
  1073. public var mapSfixed64Uint32: Dictionary<Int64,UInt32> {
  1074. get {_storage._mapSfixed64Uint32}
  1075. set {_uniqueStorage()._mapSfixed64Uint32 = newValue}
  1076. }
  1077. public var mapSfixed64Uint64: Dictionary<Int64,UInt64> {
  1078. get {_storage._mapSfixed64Uint64}
  1079. set {_uniqueStorage()._mapSfixed64Uint64 = newValue}
  1080. }
  1081. public var mapSfixed64Sint32: Dictionary<Int64,Int32> {
  1082. get {_storage._mapSfixed64Sint32}
  1083. set {_uniqueStorage()._mapSfixed64Sint32 = newValue}
  1084. }
  1085. public var mapSfixed64Sint64: Dictionary<Int64,Int64> {
  1086. get {_storage._mapSfixed64Sint64}
  1087. set {_uniqueStorage()._mapSfixed64Sint64 = newValue}
  1088. }
  1089. public var mapSfixed64Fixed32: Dictionary<Int64,UInt32> {
  1090. get {_storage._mapSfixed64Fixed32}
  1091. set {_uniqueStorage()._mapSfixed64Fixed32 = newValue}
  1092. }
  1093. public var mapSfixed64Fixed64: Dictionary<Int64,UInt64> {
  1094. get {_storage._mapSfixed64Fixed64}
  1095. set {_uniqueStorage()._mapSfixed64Fixed64 = newValue}
  1096. }
  1097. public var mapSfixed64Sfixed32: Dictionary<Int64,Int32> {
  1098. get {_storage._mapSfixed64Sfixed32}
  1099. set {_uniqueStorage()._mapSfixed64Sfixed32 = newValue}
  1100. }
  1101. public var mapSfixed64Sfixed64: Dictionary<Int64,Int64> {
  1102. get {_storage._mapSfixed64Sfixed64}
  1103. set {_uniqueStorage()._mapSfixed64Sfixed64 = newValue}
  1104. }
  1105. public var mapSfixed64Float: Dictionary<Int64,Float> {
  1106. get {_storage._mapSfixed64Float}
  1107. set {_uniqueStorage()._mapSfixed64Float = newValue}
  1108. }
  1109. public var mapSfixed64Double: Dictionary<Int64,Double> {
  1110. get {_storage._mapSfixed64Double}
  1111. set {_uniqueStorage()._mapSfixed64Double = newValue}
  1112. }
  1113. public var mapSfixed64Bool: Dictionary<Int64,Bool> {
  1114. get {_storage._mapSfixed64Bool}
  1115. set {_uniqueStorage()._mapSfixed64Bool = newValue}
  1116. }
  1117. public var mapSfixed64String: Dictionary<Int64,String> {
  1118. get {_storage._mapSfixed64String}
  1119. set {_uniqueStorage()._mapSfixed64String = newValue}
  1120. }
  1121. public var mapSfixed64Bytes: Dictionary<Int64,Data> {
  1122. get {_storage._mapSfixed64Bytes}
  1123. set {_uniqueStorage()._mapSfixed64Bytes = newValue}
  1124. }
  1125. public var mapSfixed64AnEnum: Dictionary<Int64,SwiftProtoTesting_Fuzz_AnEnum> {
  1126. get {_storage._mapSfixed64AnEnum}
  1127. set {_uniqueStorage()._mapSfixed64AnEnum = newValue}
  1128. }
  1129. public var mapSfixed64Message: Dictionary<Int64,SwiftProtoTesting_Fuzz_Message> {
  1130. get {_storage._mapSfixed64Message}
  1131. set {_uniqueStorage()._mapSfixed64Message = newValue}
  1132. }
  1133. public var mapBoolInt32: Dictionary<Bool,Int32> {
  1134. get {_storage._mapBoolInt32}
  1135. set {_uniqueStorage()._mapBoolInt32 = newValue}
  1136. }
  1137. public var mapBoolInt64: Dictionary<Bool,Int64> {
  1138. get {_storage._mapBoolInt64}
  1139. set {_uniqueStorage()._mapBoolInt64 = newValue}
  1140. }
  1141. public var mapBoolUint32: Dictionary<Bool,UInt32> {
  1142. get {_storage._mapBoolUint32}
  1143. set {_uniqueStorage()._mapBoolUint32 = newValue}
  1144. }
  1145. public var mapBoolUint64: Dictionary<Bool,UInt64> {
  1146. get {_storage._mapBoolUint64}
  1147. set {_uniqueStorage()._mapBoolUint64 = newValue}
  1148. }
  1149. public var mapBoolSint32: Dictionary<Bool,Int32> {
  1150. get {_storage._mapBoolSint32}
  1151. set {_uniqueStorage()._mapBoolSint32 = newValue}
  1152. }
  1153. public var mapBoolSint64: Dictionary<Bool,Int64> {
  1154. get {_storage._mapBoolSint64}
  1155. set {_uniqueStorage()._mapBoolSint64 = newValue}
  1156. }
  1157. public var mapBoolFixed32: Dictionary<Bool,UInt32> {
  1158. get {_storage._mapBoolFixed32}
  1159. set {_uniqueStorage()._mapBoolFixed32 = newValue}
  1160. }
  1161. public var mapBoolFixed64: Dictionary<Bool,UInt64> {
  1162. get {_storage._mapBoolFixed64}
  1163. set {_uniqueStorage()._mapBoolFixed64 = newValue}
  1164. }
  1165. public var mapBoolSfixed32: Dictionary<Bool,Int32> {
  1166. get {_storage._mapBoolSfixed32}
  1167. set {_uniqueStorage()._mapBoolSfixed32 = newValue}
  1168. }
  1169. public var mapBoolSfixed64: Dictionary<Bool,Int64> {
  1170. get {_storage._mapBoolSfixed64}
  1171. set {_uniqueStorage()._mapBoolSfixed64 = newValue}
  1172. }
  1173. public var mapBoolFloat: Dictionary<Bool,Float> {
  1174. get {_storage._mapBoolFloat}
  1175. set {_uniqueStorage()._mapBoolFloat = newValue}
  1176. }
  1177. public var mapBoolDouble: Dictionary<Bool,Double> {
  1178. get {_storage._mapBoolDouble}
  1179. set {_uniqueStorage()._mapBoolDouble = newValue}
  1180. }
  1181. public var mapBoolBool: Dictionary<Bool,Bool> {
  1182. get {_storage._mapBoolBool}
  1183. set {_uniqueStorage()._mapBoolBool = newValue}
  1184. }
  1185. public var mapBoolString: Dictionary<Bool,String> {
  1186. get {_storage._mapBoolString}
  1187. set {_uniqueStorage()._mapBoolString = newValue}
  1188. }
  1189. public var mapBoolBytes: Dictionary<Bool,Data> {
  1190. get {_storage._mapBoolBytes}
  1191. set {_uniqueStorage()._mapBoolBytes = newValue}
  1192. }
  1193. public var mapBoolAnEnum: Dictionary<Bool,SwiftProtoTesting_Fuzz_AnEnum> {
  1194. get {_storage._mapBoolAnEnum}
  1195. set {_uniqueStorage()._mapBoolAnEnum = newValue}
  1196. }
  1197. public var mapBoolMessage: Dictionary<Bool,SwiftProtoTesting_Fuzz_Message> {
  1198. get {_storage._mapBoolMessage}
  1199. set {_uniqueStorage()._mapBoolMessage = newValue}
  1200. }
  1201. /// WKTs since some get special handing in JSON.
  1202. public var wktAny: SwiftProtobuf.Google_Protobuf_Any {
  1203. get {_storage._wktAny ?? SwiftProtobuf.Google_Protobuf_Any()}
  1204. set {_uniqueStorage()._wktAny = newValue}
  1205. }
  1206. /// Returns true if `wktAny` has been explicitly set.
  1207. public var hasWktAny: Bool {_storage._wktAny != nil}
  1208. /// Clears the value of `wktAny`. Subsequent reads from it will return its default value.
  1209. public mutating func clearWktAny() {_uniqueStorage()._wktAny = nil}
  1210. public var wktApi: SwiftProtobuf.Google_Protobuf_Api {
  1211. get {_storage._wktApi ?? SwiftProtobuf.Google_Protobuf_Api()}
  1212. set {_uniqueStorage()._wktApi = newValue}
  1213. }
  1214. /// Returns true if `wktApi` has been explicitly set.
  1215. public var hasWktApi: Bool {_storage._wktApi != nil}
  1216. /// Clears the value of `wktApi`. Subsequent reads from it will return its default value.
  1217. public mutating func clearWktApi() {_uniqueStorage()._wktApi = nil}
  1218. public var wktDuration: SwiftProtobuf.Google_Protobuf_Duration {
  1219. get {_storage._wktDuration ?? SwiftProtobuf.Google_Protobuf_Duration()}
  1220. set {_uniqueStorage()._wktDuration = newValue}
  1221. }
  1222. /// Returns true if `wktDuration` has been explicitly set.
  1223. public var hasWktDuration: Bool {_storage._wktDuration != nil}
  1224. /// Clears the value of `wktDuration`. Subsequent reads from it will return its default value.
  1225. public mutating func clearWktDuration() {_uniqueStorage()._wktDuration = nil}
  1226. public var wktEmpty: SwiftProtobuf.Google_Protobuf_Empty {
  1227. get {_storage._wktEmpty ?? SwiftProtobuf.Google_Protobuf_Empty()}
  1228. set {_uniqueStorage()._wktEmpty = newValue}
  1229. }
  1230. /// Returns true if `wktEmpty` has been explicitly set.
  1231. public var hasWktEmpty: Bool {_storage._wktEmpty != nil}
  1232. /// Clears the value of `wktEmpty`. Subsequent reads from it will return its default value.
  1233. public mutating func clearWktEmpty() {_uniqueStorage()._wktEmpty = nil}
  1234. public var wktFieldMask: SwiftProtobuf.Google_Protobuf_FieldMask {
  1235. get {_storage._wktFieldMask ?? SwiftProtobuf.Google_Protobuf_FieldMask()}
  1236. set {_uniqueStorage()._wktFieldMask = newValue}
  1237. }
  1238. /// Returns true if `wktFieldMask` has been explicitly set.
  1239. public var hasWktFieldMask: Bool {_storage._wktFieldMask != nil}
  1240. /// Clears the value of `wktFieldMask`. Subsequent reads from it will return its default value.
  1241. public mutating func clearWktFieldMask() {_uniqueStorage()._wktFieldMask = nil}
  1242. public var wktSourceContext: SwiftProtobuf.Google_Protobuf_SourceContext {
  1243. get {_storage._wktSourceContext ?? SwiftProtobuf.Google_Protobuf_SourceContext()}
  1244. set {_uniqueStorage()._wktSourceContext = newValue}
  1245. }
  1246. /// Returns true if `wktSourceContext` has been explicitly set.
  1247. public var hasWktSourceContext: Bool {_storage._wktSourceContext != nil}
  1248. /// Clears the value of `wktSourceContext`. Subsequent reads from it will return its default value.
  1249. public mutating func clearWktSourceContext() {_uniqueStorage()._wktSourceContext = nil}
  1250. public var wktStruct: SwiftProtobuf.Google_Protobuf_Struct {
  1251. get {_storage._wktStruct ?? SwiftProtobuf.Google_Protobuf_Struct()}
  1252. set {_uniqueStorage()._wktStruct = newValue}
  1253. }
  1254. /// Returns true if `wktStruct` has been explicitly set.
  1255. public var hasWktStruct: Bool {_storage._wktStruct != nil}
  1256. /// Clears the value of `wktStruct`. Subsequent reads from it will return its default value.
  1257. public mutating func clearWktStruct() {_uniqueStorage()._wktStruct = nil}
  1258. public var wktTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp {
  1259. get {_storage._wktTimestamp ?? SwiftProtobuf.Google_Protobuf_Timestamp()}
  1260. set {_uniqueStorage()._wktTimestamp = newValue}
  1261. }
  1262. /// Returns true if `wktTimestamp` has been explicitly set.
  1263. public var hasWktTimestamp: Bool {_storage._wktTimestamp != nil}
  1264. /// Clears the value of `wktTimestamp`. Subsequent reads from it will return its default value.
  1265. public mutating func clearWktTimestamp() {_uniqueStorage()._wktTimestamp = nil}
  1266. public var wktType: SwiftProtobuf.Google_Protobuf_Type {
  1267. get {_storage._wktType ?? SwiftProtobuf.Google_Protobuf_Type()}
  1268. set {_uniqueStorage()._wktType = newValue}
  1269. }
  1270. /// Returns true if `wktType` has been explicitly set.
  1271. public var hasWktType: Bool {_storage._wktType != nil}
  1272. /// Clears the value of `wktType`. Subsequent reads from it will return its default value.
  1273. public mutating func clearWktType() {_uniqueStorage()._wktType = nil}
  1274. public var wktDoubleValue: SwiftProtobuf.Google_Protobuf_DoubleValue {
  1275. get {_storage._wktDoubleValue ?? SwiftProtobuf.Google_Protobuf_DoubleValue()}
  1276. set {_uniqueStorage()._wktDoubleValue = newValue}
  1277. }
  1278. /// Returns true if `wktDoubleValue` has been explicitly set.
  1279. public var hasWktDoubleValue: Bool {_storage._wktDoubleValue != nil}
  1280. /// Clears the value of `wktDoubleValue`. Subsequent reads from it will return its default value.
  1281. public mutating func clearWktDoubleValue() {_uniqueStorage()._wktDoubleValue = nil}
  1282. public var wktFloatValue: SwiftProtobuf.Google_Protobuf_FloatValue {
  1283. get {_storage._wktFloatValue ?? SwiftProtobuf.Google_Protobuf_FloatValue()}
  1284. set {_uniqueStorage()._wktFloatValue = newValue}
  1285. }
  1286. /// Returns true if `wktFloatValue` has been explicitly set.
  1287. public var hasWktFloatValue: Bool {_storage._wktFloatValue != nil}
  1288. /// Clears the value of `wktFloatValue`. Subsequent reads from it will return its default value.
  1289. public mutating func clearWktFloatValue() {_uniqueStorage()._wktFloatValue = nil}
  1290. public var wktInt64Value: SwiftProtobuf.Google_Protobuf_Int64Value {
  1291. get {_storage._wktInt64Value ?? SwiftProtobuf.Google_Protobuf_Int64Value()}
  1292. set {_uniqueStorage()._wktInt64Value = newValue}
  1293. }
  1294. /// Returns true if `wktInt64Value` has been explicitly set.
  1295. public var hasWktInt64Value: Bool {_storage._wktInt64Value != nil}
  1296. /// Clears the value of `wktInt64Value`. Subsequent reads from it will return its default value.
  1297. public mutating func clearWktInt64Value() {_uniqueStorage()._wktInt64Value = nil}
  1298. public var wktUint64Value: SwiftProtobuf.Google_Protobuf_UInt64Value {
  1299. get {_storage._wktUint64Value ?? SwiftProtobuf.Google_Protobuf_UInt64Value()}
  1300. set {_uniqueStorage()._wktUint64Value = newValue}
  1301. }
  1302. /// Returns true if `wktUint64Value` has been explicitly set.
  1303. public var hasWktUint64Value: Bool {_storage._wktUint64Value != nil}
  1304. /// Clears the value of `wktUint64Value`. Subsequent reads from it will return its default value.
  1305. public mutating func clearWktUint64Value() {_uniqueStorage()._wktUint64Value = nil}
  1306. public var wktInt32Value: SwiftProtobuf.Google_Protobuf_Int32Value {
  1307. get {_storage._wktInt32Value ?? SwiftProtobuf.Google_Protobuf_Int32Value()}
  1308. set {_uniqueStorage()._wktInt32Value = newValue}
  1309. }
  1310. /// Returns true if `wktInt32Value` has been explicitly set.
  1311. public var hasWktInt32Value: Bool {_storage._wktInt32Value != nil}
  1312. /// Clears the value of `wktInt32Value`. Subsequent reads from it will return its default value.
  1313. public mutating func clearWktInt32Value() {_uniqueStorage()._wktInt32Value = nil}
  1314. public var wktUint32Value: SwiftProtobuf.Google_Protobuf_UInt32Value {
  1315. get {_storage._wktUint32Value ?? SwiftProtobuf.Google_Protobuf_UInt32Value()}
  1316. set {_uniqueStorage()._wktUint32Value = newValue}
  1317. }
  1318. /// Returns true if `wktUint32Value` has been explicitly set.
  1319. public var hasWktUint32Value: Bool {_storage._wktUint32Value != nil}
  1320. /// Clears the value of `wktUint32Value`. Subsequent reads from it will return its default value.
  1321. public mutating func clearWktUint32Value() {_uniqueStorage()._wktUint32Value = nil}
  1322. public var wktBoolValue: SwiftProtobuf.Google_Protobuf_BoolValue {
  1323. get {_storage._wktBoolValue ?? SwiftProtobuf.Google_Protobuf_BoolValue()}
  1324. set {_uniqueStorage()._wktBoolValue = newValue}
  1325. }
  1326. /// Returns true if `wktBoolValue` has been explicitly set.
  1327. public var hasWktBoolValue: Bool {_storage._wktBoolValue != nil}
  1328. /// Clears the value of `wktBoolValue`. Subsequent reads from it will return its default value.
  1329. public mutating func clearWktBoolValue() {_uniqueStorage()._wktBoolValue = nil}
  1330. public var wktStringValue: SwiftProtobuf.Google_Protobuf_StringValue {
  1331. get {_storage._wktStringValue ?? SwiftProtobuf.Google_Protobuf_StringValue()}
  1332. set {_uniqueStorage()._wktStringValue = newValue}
  1333. }
  1334. /// Returns true if `wktStringValue` has been explicitly set.
  1335. public var hasWktStringValue: Bool {_storage._wktStringValue != nil}
  1336. /// Clears the value of `wktStringValue`. Subsequent reads from it will return its default value.
  1337. public mutating func clearWktStringValue() {_uniqueStorage()._wktStringValue = nil}
  1338. public var wktBytesValue: SwiftProtobuf.Google_Protobuf_BytesValue {
  1339. get {_storage._wktBytesValue ?? SwiftProtobuf.Google_Protobuf_BytesValue()}
  1340. set {_uniqueStorage()._wktBytesValue = newValue}
  1341. }
  1342. /// Returns true if `wktBytesValue` has been explicitly set.
  1343. public var hasWktBytesValue: Bool {_storage._wktBytesValue != nil}
  1344. /// Clears the value of `wktBytesValue`. Subsequent reads from it will return its default value.
  1345. public mutating func clearWktBytesValue() {_uniqueStorage()._wktBytesValue = nil}
  1346. /// Get some coverage for the special message_set_wire_format.
  1347. public var singularMessageSet: SwiftProtoTesting_Fuzz_AMessageSetMessage {
  1348. get {_storage._singularMessageSet ?? SwiftProtoTesting_Fuzz_AMessageSetMessage()}
  1349. set {_uniqueStorage()._singularMessageSet = newValue}
  1350. }
  1351. /// Returns true if `singularMessageSet` has been explicitly set.
  1352. public var hasSingularMessageSet: Bool {_storage._singularMessageSet != nil}
  1353. /// Clears the value of `singularMessageSet`. Subsequent reads from it will return its default value.
  1354. public mutating func clearSingularMessageSet() {_uniqueStorage()._singularMessageSet = nil}
  1355. public var repeatedMessageSet: [SwiftProtoTesting_Fuzz_AMessageSetMessage] {
  1356. get {_storage._repeatedMessageSet}
  1357. set {_uniqueStorage()._repeatedMessageSet = newValue}
  1358. }
  1359. public var unknownFields = SwiftProtobuf.UnknownStorage()
  1360. /// oneof
  1361. public enum OneOf_O: Equatable, Sendable {
  1362. case oneofInt32(Int32)
  1363. case oneofInt64(Int64)
  1364. case oneofUint32(UInt32)
  1365. case oneofUint64(UInt64)
  1366. case oneofSint32(Int32)
  1367. case oneofSint64(Int64)
  1368. case oneofFixed32(UInt32)
  1369. case oneofFixed64(UInt64)
  1370. case oneofSfixed32(Int32)
  1371. case oneofSfixed64(Int64)
  1372. case oneofFloat(Float)
  1373. case oneofDouble(Double)
  1374. case oneofBool(Bool)
  1375. case oneofString(String)
  1376. case oneofBytes(Data)
  1377. case oneofEnum(SwiftProtoTesting_Fuzz_AnEnum)
  1378. case oneofGroup(SwiftProtoTesting_Fuzz_Message.OneofGroup)
  1379. case oneofMessage(SwiftProtoTesting_Fuzz_Message)
  1380. fileprivate var isInitialized: Bool {
  1381. guard case .oneofMessage(let v) = self else {return true}
  1382. return v.isInitialized
  1383. }
  1384. }
  1385. public struct SingularGroup: Sendable {
  1386. // SwiftProtobuf.Message conformance is added in an extension below. See the
  1387. // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
  1388. // methods supported on all messages.
  1389. public var groupField: Int32 {
  1390. get {_groupField ?? 0}
  1391. set {_groupField = newValue}
  1392. }
  1393. /// Returns true if `groupField` has been explicitly set.
  1394. public var hasGroupField: Bool {self._groupField != nil}
  1395. /// Clears the value of `groupField`. Subsequent reads from it will return its default value.
  1396. public mutating func clearGroupField() {self._groupField = nil}
  1397. public var unknownFields = SwiftProtobuf.UnknownStorage()
  1398. public init() {}
  1399. fileprivate var _groupField: Int32? = nil
  1400. }
  1401. public struct RepeatedGroup: Sendable {
  1402. // SwiftProtobuf.Message conformance is added in an extension below. See the
  1403. // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
  1404. // methods supported on all messages.
  1405. public var groupField: Int32 {
  1406. get {_groupField ?? 0}
  1407. set {_groupField = newValue}
  1408. }
  1409. /// Returns true if `groupField` has been explicitly set.
  1410. public var hasGroupField: Bool {self._groupField != nil}
  1411. /// Clears the value of `groupField`. Subsequent reads from it will return its default value.
  1412. public mutating func clearGroupField() {self._groupField = nil}
  1413. public var unknownFields = SwiftProtobuf.UnknownStorage()
  1414. public init() {}
  1415. fileprivate var _groupField: Int32? = nil
  1416. }
  1417. public struct OneofGroup: Sendable {
  1418. // SwiftProtobuf.Message conformance is added in an extension below. See the
  1419. // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
  1420. // methods supported on all messages.
  1421. public var groupField: Int32 {
  1422. get {_groupField ?? 0}
  1423. set {_groupField = newValue}
  1424. }
  1425. /// Returns true if `groupField` has been explicitly set.
  1426. public var hasGroupField: Bool {self._groupField != nil}
  1427. /// Clears the value of `groupField`. Subsequent reads from it will return its default value.
  1428. public mutating func clearGroupField() {self._groupField = nil}
  1429. public var unknownFields = SwiftProtobuf.UnknownStorage()
  1430. public init() {}
  1431. fileprivate var _groupField: Int32? = nil
  1432. }
  1433. public init() {}
  1434. public var _protobuf_extensionFieldValues = SwiftProtobuf.ExtensionFieldValueSet()
  1435. fileprivate var _storage = _StorageClass.defaultInstance
  1436. }
  1437. /// A message with message_set_wire_format.
  1438. public struct SwiftProtoTesting_Fuzz_AMessageSetMessage: SwiftProtobuf.ExtensibleMessage, Sendable {
  1439. // SwiftProtobuf.Message conformance is added in an extension below. See the
  1440. // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
  1441. // methods supported on all messages.
  1442. public var unknownFields = SwiftProtobuf.UnknownStorage()
  1443. public init() {}
  1444. public var _protobuf_extensionFieldValues = SwiftProtobuf.ExtensionFieldValueSet()
  1445. }
  1446. /// Two extensions to go with the message_set_wire_format testing.
  1447. public struct SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1: Sendable {
  1448. // SwiftProtobuf.Message conformance is added in an extension below. See the
  1449. // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
  1450. // methods supported on all messages.
  1451. public var aString: String {
  1452. get {_aString ?? String()}
  1453. set {_aString = newValue}
  1454. }
  1455. /// Returns true if `aString` has been explicitly set.
  1456. public var hasAString: Bool {self._aString != nil}
  1457. /// Clears the value of `aString`. Subsequent reads from it will return its default value.
  1458. public mutating func clearAString() {self._aString = nil}
  1459. public var unknownFields = SwiftProtobuf.UnknownStorage()
  1460. public init() {}
  1461. fileprivate var _aString: String? = nil
  1462. }
  1463. public struct SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2: Sendable {
  1464. // SwiftProtobuf.Message conformance is added in an extension below. See the
  1465. // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
  1466. // methods supported on all messages.
  1467. public var anInt32: Int32 {
  1468. get {_anInt32 ?? 0}
  1469. set {_anInt32 = newValue}
  1470. }
  1471. /// Returns true if `anInt32` has been explicitly set.
  1472. public var hasAnInt32: Bool {self._anInt32 != nil}
  1473. /// Clears the value of `anInt32`. Subsequent reads from it will return its default value.
  1474. public mutating func clearAnInt32() {self._anInt32 = nil}
  1475. public var unknownFields = SwiftProtobuf.UnknownStorage()
  1476. public init() {}
  1477. fileprivate var _anInt32: Int32? = nil
  1478. }
  1479. public struct SwiftProtoTesting_Fuzz_SingularGroup_ext: Sendable {
  1480. // SwiftProtobuf.Message conformance is added in an extension below. See the
  1481. // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
  1482. // methods supported on all messages.
  1483. public var groupField: Int32 {
  1484. get {_groupField ?? 0}
  1485. set {_groupField = newValue}
  1486. }
  1487. /// Returns true if `groupField` has been explicitly set.
  1488. public var hasGroupField: Bool {self._groupField != nil}
  1489. /// Clears the value of `groupField`. Subsequent reads from it will return its default value.
  1490. public mutating func clearGroupField() {self._groupField = nil}
  1491. public var unknownFields = SwiftProtobuf.UnknownStorage()
  1492. public init() {}
  1493. fileprivate var _groupField: Int32? = nil
  1494. }
  1495. public struct SwiftProtoTesting_Fuzz_RepeatedGroup_ext: Sendable {
  1496. // SwiftProtobuf.Message conformance is added in an extension below. See the
  1497. // `Message` and `Message+*Additions` files in the SwiftProtobuf library for
  1498. // methods supported on all messages.
  1499. public var groupField: Int32 {
  1500. get {_groupField ?? 0}
  1501. set {_groupField = newValue}
  1502. }
  1503. /// Returns true if `groupField` has been explicitly set.
  1504. public var hasGroupField: Bool {self._groupField != nil}
  1505. /// Clears the value of `groupField`. Subsequent reads from it will return its default value.
  1506. public mutating func clearGroupField() {self._groupField = nil}
  1507. public var unknownFields = SwiftProtobuf.UnknownStorage()
  1508. public init() {}
  1509. fileprivate var _groupField: Int32? = nil
  1510. }
  1511. // MARK: - Extension support defined in fuzz_testing.proto.
  1512. // MARK: - Extension Properties
  1513. // Swift Extensions on the extended Messages to add easy access to the declared
  1514. // extension fields. The names are based on the extension field name from the proto
  1515. // declaration. To avoid naming collisions, the names are prefixed with the name of
  1516. // the scope where the extend directive occurs.
  1517. extension SwiftProtoTesting_Fuzz_AMessageSetMessage {
  1518. public var SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1_messageSetExtension: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1 {
  1519. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1.Extensions.message_set_extension) ?? SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1()}
  1520. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1.Extensions.message_set_extension, value: newValue)}
  1521. }
  1522. /// Returns true if extension `SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1.Extensions.message_set_extension`
  1523. /// has been explicitly set.
  1524. public var hasSwiftProtoTesting_Fuzz_AMessageSetMessageExtension1_messageSetExtension: Bool {
  1525. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1.Extensions.message_set_extension)
  1526. }
  1527. /// Clears the value of extension `SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1.Extensions.message_set_extension`.
  1528. /// Subsequent reads from it will return its default value.
  1529. public mutating func clearSwiftProtoTesting_Fuzz_AMessageSetMessageExtension1_messageSetExtension() {
  1530. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1.Extensions.message_set_extension)
  1531. }
  1532. public var SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2_messageSetExtension: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2 {
  1533. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2.Extensions.message_set_extension) ?? SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2()}
  1534. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2.Extensions.message_set_extension, value: newValue)}
  1535. }
  1536. /// Returns true if extension `SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2.Extensions.message_set_extension`
  1537. /// has been explicitly set.
  1538. public var hasSwiftProtoTesting_Fuzz_AMessageSetMessageExtension2_messageSetExtension: Bool {
  1539. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2.Extensions.message_set_extension)
  1540. }
  1541. /// Clears the value of extension `SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2.Extensions.message_set_extension`.
  1542. /// Subsequent reads from it will return its default value.
  1543. public mutating func clearSwiftProtoTesting_Fuzz_AMessageSetMessageExtension2_messageSetExtension() {
  1544. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2.Extensions.message_set_extension)
  1545. }
  1546. }
  1547. extension SwiftProtoTesting_Fuzz_Message {
  1548. /// Singular
  1549. public var SwiftProtoTesting_Fuzz_singularInt32Ext: Int32 {
  1550. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_int32_ext) ?? 0}
  1551. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_int32_ext, value: newValue)}
  1552. }
  1553. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_int32_ext`
  1554. /// has been explicitly set.
  1555. public var hasSwiftProtoTesting_Fuzz_singularInt32Ext: Bool {
  1556. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_int32_ext)
  1557. }
  1558. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_int32_ext`.
  1559. /// Subsequent reads from it will return its default value.
  1560. public mutating func clearSwiftProtoTesting_Fuzz_singularInt32Ext() {
  1561. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_int32_ext)
  1562. }
  1563. public var SwiftProtoTesting_Fuzz_singularInt64Ext: Int64 {
  1564. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_int64_ext) ?? 0}
  1565. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_int64_ext, value: newValue)}
  1566. }
  1567. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_int64_ext`
  1568. /// has been explicitly set.
  1569. public var hasSwiftProtoTesting_Fuzz_singularInt64Ext: Bool {
  1570. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_int64_ext)
  1571. }
  1572. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_int64_ext`.
  1573. /// Subsequent reads from it will return its default value.
  1574. public mutating func clearSwiftProtoTesting_Fuzz_singularInt64Ext() {
  1575. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_int64_ext)
  1576. }
  1577. public var SwiftProtoTesting_Fuzz_singularUint32Ext: UInt32 {
  1578. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_uint32_ext) ?? 0}
  1579. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_uint32_ext, value: newValue)}
  1580. }
  1581. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_uint32_ext`
  1582. /// has been explicitly set.
  1583. public var hasSwiftProtoTesting_Fuzz_singularUint32Ext: Bool {
  1584. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_uint32_ext)
  1585. }
  1586. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_uint32_ext`.
  1587. /// Subsequent reads from it will return its default value.
  1588. public mutating func clearSwiftProtoTesting_Fuzz_singularUint32Ext() {
  1589. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_uint32_ext)
  1590. }
  1591. public var SwiftProtoTesting_Fuzz_singularUint64Ext: UInt64 {
  1592. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_uint64_ext) ?? 0}
  1593. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_uint64_ext, value: newValue)}
  1594. }
  1595. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_uint64_ext`
  1596. /// has been explicitly set.
  1597. public var hasSwiftProtoTesting_Fuzz_singularUint64Ext: Bool {
  1598. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_uint64_ext)
  1599. }
  1600. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_uint64_ext`.
  1601. /// Subsequent reads from it will return its default value.
  1602. public mutating func clearSwiftProtoTesting_Fuzz_singularUint64Ext() {
  1603. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_uint64_ext)
  1604. }
  1605. public var SwiftProtoTesting_Fuzz_singularSint32Ext: Int32 {
  1606. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sint32_ext) ?? 0}
  1607. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sint32_ext, value: newValue)}
  1608. }
  1609. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_sint32_ext`
  1610. /// has been explicitly set.
  1611. public var hasSwiftProtoTesting_Fuzz_singularSint32Ext: Bool {
  1612. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sint32_ext)
  1613. }
  1614. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_sint32_ext`.
  1615. /// Subsequent reads from it will return its default value.
  1616. public mutating func clearSwiftProtoTesting_Fuzz_singularSint32Ext() {
  1617. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sint32_ext)
  1618. }
  1619. public var SwiftProtoTesting_Fuzz_singularSint64Ext: Int64 {
  1620. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sint64_ext) ?? 0}
  1621. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sint64_ext, value: newValue)}
  1622. }
  1623. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_sint64_ext`
  1624. /// has been explicitly set.
  1625. public var hasSwiftProtoTesting_Fuzz_singularSint64Ext: Bool {
  1626. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sint64_ext)
  1627. }
  1628. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_sint64_ext`.
  1629. /// Subsequent reads from it will return its default value.
  1630. public mutating func clearSwiftProtoTesting_Fuzz_singularSint64Ext() {
  1631. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sint64_ext)
  1632. }
  1633. public var SwiftProtoTesting_Fuzz_singularFixed32Ext: UInt32 {
  1634. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_fixed32_ext) ?? 0}
  1635. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_fixed32_ext, value: newValue)}
  1636. }
  1637. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_fixed32_ext`
  1638. /// has been explicitly set.
  1639. public var hasSwiftProtoTesting_Fuzz_singularFixed32Ext: Bool {
  1640. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_fixed32_ext)
  1641. }
  1642. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_fixed32_ext`.
  1643. /// Subsequent reads from it will return its default value.
  1644. public mutating func clearSwiftProtoTesting_Fuzz_singularFixed32Ext() {
  1645. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_fixed32_ext)
  1646. }
  1647. public var SwiftProtoTesting_Fuzz_singularFixed64Ext: UInt64 {
  1648. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_fixed64_ext) ?? 0}
  1649. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_fixed64_ext, value: newValue)}
  1650. }
  1651. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_fixed64_ext`
  1652. /// has been explicitly set.
  1653. public var hasSwiftProtoTesting_Fuzz_singularFixed64Ext: Bool {
  1654. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_fixed64_ext)
  1655. }
  1656. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_fixed64_ext`.
  1657. /// Subsequent reads from it will return its default value.
  1658. public mutating func clearSwiftProtoTesting_Fuzz_singularFixed64Ext() {
  1659. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_fixed64_ext)
  1660. }
  1661. public var SwiftProtoTesting_Fuzz_singularSfixed32Ext: Int32 {
  1662. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sfixed32_ext) ?? 0}
  1663. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sfixed32_ext, value: newValue)}
  1664. }
  1665. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_sfixed32_ext`
  1666. /// has been explicitly set.
  1667. public var hasSwiftProtoTesting_Fuzz_singularSfixed32Ext: Bool {
  1668. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sfixed32_ext)
  1669. }
  1670. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_sfixed32_ext`.
  1671. /// Subsequent reads from it will return its default value.
  1672. public mutating func clearSwiftProtoTesting_Fuzz_singularSfixed32Ext() {
  1673. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sfixed32_ext)
  1674. }
  1675. public var SwiftProtoTesting_Fuzz_singularSfixed64Ext: Int64 {
  1676. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sfixed64_ext) ?? 0}
  1677. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sfixed64_ext, value: newValue)}
  1678. }
  1679. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_sfixed64_ext`
  1680. /// has been explicitly set.
  1681. public var hasSwiftProtoTesting_Fuzz_singularSfixed64Ext: Bool {
  1682. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sfixed64_ext)
  1683. }
  1684. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_sfixed64_ext`.
  1685. /// Subsequent reads from it will return its default value.
  1686. public mutating func clearSwiftProtoTesting_Fuzz_singularSfixed64Ext() {
  1687. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_sfixed64_ext)
  1688. }
  1689. public var SwiftProtoTesting_Fuzz_singularFloatExt: Float {
  1690. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_float_ext) ?? 0}
  1691. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_float_ext, value: newValue)}
  1692. }
  1693. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_float_ext`
  1694. /// has been explicitly set.
  1695. public var hasSwiftProtoTesting_Fuzz_singularFloatExt: Bool {
  1696. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_float_ext)
  1697. }
  1698. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_float_ext`.
  1699. /// Subsequent reads from it will return its default value.
  1700. public mutating func clearSwiftProtoTesting_Fuzz_singularFloatExt() {
  1701. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_float_ext)
  1702. }
  1703. public var SwiftProtoTesting_Fuzz_singularDoubleExt: Double {
  1704. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_double_ext) ?? 0}
  1705. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_double_ext, value: newValue)}
  1706. }
  1707. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_double_ext`
  1708. /// has been explicitly set.
  1709. public var hasSwiftProtoTesting_Fuzz_singularDoubleExt: Bool {
  1710. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_double_ext)
  1711. }
  1712. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_double_ext`.
  1713. /// Subsequent reads from it will return its default value.
  1714. public mutating func clearSwiftProtoTesting_Fuzz_singularDoubleExt() {
  1715. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_double_ext)
  1716. }
  1717. public var SwiftProtoTesting_Fuzz_singularBoolExt: Bool {
  1718. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_bool_ext) ?? false}
  1719. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_bool_ext, value: newValue)}
  1720. }
  1721. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_bool_ext`
  1722. /// has been explicitly set.
  1723. public var hasSwiftProtoTesting_Fuzz_singularBoolExt: Bool {
  1724. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_bool_ext)
  1725. }
  1726. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_bool_ext`.
  1727. /// Subsequent reads from it will return its default value.
  1728. public mutating func clearSwiftProtoTesting_Fuzz_singularBoolExt() {
  1729. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_bool_ext)
  1730. }
  1731. public var SwiftProtoTesting_Fuzz_singularStringExt: String {
  1732. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_string_ext) ?? String()}
  1733. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_string_ext, value: newValue)}
  1734. }
  1735. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_string_ext`
  1736. /// has been explicitly set.
  1737. public var hasSwiftProtoTesting_Fuzz_singularStringExt: Bool {
  1738. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_string_ext)
  1739. }
  1740. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_string_ext`.
  1741. /// Subsequent reads from it will return its default value.
  1742. public mutating func clearSwiftProtoTesting_Fuzz_singularStringExt() {
  1743. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_string_ext)
  1744. }
  1745. public var SwiftProtoTesting_Fuzz_singularBytesExt: Data {
  1746. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_bytes_ext) ?? Data()}
  1747. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_bytes_ext, value: newValue)}
  1748. }
  1749. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_bytes_ext`
  1750. /// has been explicitly set.
  1751. public var hasSwiftProtoTesting_Fuzz_singularBytesExt: Bool {
  1752. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_bytes_ext)
  1753. }
  1754. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_bytes_ext`.
  1755. /// Subsequent reads from it will return its default value.
  1756. public mutating func clearSwiftProtoTesting_Fuzz_singularBytesExt() {
  1757. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_bytes_ext)
  1758. }
  1759. public var SwiftProtoTesting_Fuzz_singularEnumExt: SwiftProtoTesting_Fuzz_AnEnum {
  1760. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_enum_ext) ?? .zero}
  1761. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_enum_ext, value: newValue)}
  1762. }
  1763. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_enum_ext`
  1764. /// has been explicitly set.
  1765. public var hasSwiftProtoTesting_Fuzz_singularEnumExt: Bool {
  1766. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_enum_ext)
  1767. }
  1768. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_enum_ext`.
  1769. /// Subsequent reads from it will return its default value.
  1770. public mutating func clearSwiftProtoTesting_Fuzz_singularEnumExt() {
  1771. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_enum_ext)
  1772. }
  1773. public var SwiftProtoTesting_Fuzz_singularGroupExt: SwiftProtoTesting_Fuzz_SingularGroup_ext {
  1774. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_SingularGroup_ext) ?? SwiftProtoTesting_Fuzz_SingularGroup_ext()}
  1775. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_SingularGroup_ext, value: newValue)}
  1776. }
  1777. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_SingularGroup_ext`
  1778. /// has been explicitly set.
  1779. public var hasSwiftProtoTesting_Fuzz_singularGroupExt: Bool {
  1780. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_SingularGroup_ext)
  1781. }
  1782. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_SingularGroup_ext`.
  1783. /// Subsequent reads from it will return its default value.
  1784. public mutating func clearSwiftProtoTesting_Fuzz_singularGroupExt() {
  1785. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_SingularGroup_ext)
  1786. }
  1787. public var SwiftProtoTesting_Fuzz_singularMessageExt: SwiftProtoTesting_Fuzz_Message {
  1788. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_message_ext) ?? SwiftProtoTesting_Fuzz_Message()}
  1789. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_message_ext, value: newValue)}
  1790. }
  1791. /// Returns true if extension `SwiftProtoTesting_Fuzz_Extensions_singular_message_ext`
  1792. /// has been explicitly set.
  1793. public var hasSwiftProtoTesting_Fuzz_singularMessageExt: Bool {
  1794. return hasExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_message_ext)
  1795. }
  1796. /// Clears the value of extension `SwiftProtoTesting_Fuzz_Extensions_singular_message_ext`.
  1797. /// Subsequent reads from it will return its default value.
  1798. public mutating func clearSwiftProtoTesting_Fuzz_singularMessageExt() {
  1799. clearExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_singular_message_ext)
  1800. }
  1801. /// Repeated
  1802. public var SwiftProtoTesting_Fuzz_repeatedInt32Ext: [Int32] {
  1803. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_int32_ext) ?? []}
  1804. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_int32_ext, value: newValue)}
  1805. }
  1806. public var SwiftProtoTesting_Fuzz_repeatedInt64Ext: [Int64] {
  1807. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_int64_ext) ?? []}
  1808. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_int64_ext, value: newValue)}
  1809. }
  1810. public var SwiftProtoTesting_Fuzz_repeatedUint32Ext: [UInt32] {
  1811. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_uint32_ext) ?? []}
  1812. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_uint32_ext, value: newValue)}
  1813. }
  1814. public var SwiftProtoTesting_Fuzz_repeatedUint64Ext: [UInt64] {
  1815. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_uint64_ext) ?? []}
  1816. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_uint64_ext, value: newValue)}
  1817. }
  1818. public var SwiftProtoTesting_Fuzz_repeatedSint32Ext: [Int32] {
  1819. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_sint32_ext) ?? []}
  1820. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_sint32_ext, value: newValue)}
  1821. }
  1822. public var SwiftProtoTesting_Fuzz_repeatedSint64Ext: [Int64] {
  1823. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_sint64_ext) ?? []}
  1824. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_sint64_ext, value: newValue)}
  1825. }
  1826. public var SwiftProtoTesting_Fuzz_repeatedFixed32Ext: [UInt32] {
  1827. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_fixed32_ext) ?? []}
  1828. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_fixed32_ext, value: newValue)}
  1829. }
  1830. public var SwiftProtoTesting_Fuzz_repeatedFixed64Ext: [UInt64] {
  1831. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_fixed64_ext) ?? []}
  1832. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_fixed64_ext, value: newValue)}
  1833. }
  1834. public var SwiftProtoTesting_Fuzz_repeatedSfixed32Ext: [Int32] {
  1835. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_sfixed32_ext) ?? []}
  1836. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_sfixed32_ext, value: newValue)}
  1837. }
  1838. public var SwiftProtoTesting_Fuzz_repeatedSfixed64Ext: [Int64] {
  1839. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_sfixed64_ext) ?? []}
  1840. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_sfixed64_ext, value: newValue)}
  1841. }
  1842. public var SwiftProtoTesting_Fuzz_repeatedFloatExt: [Float] {
  1843. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_float_ext) ?? []}
  1844. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_float_ext, value: newValue)}
  1845. }
  1846. public var SwiftProtoTesting_Fuzz_repeatedDoubleExt: [Double] {
  1847. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_double_ext) ?? []}
  1848. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_double_ext, value: newValue)}
  1849. }
  1850. public var SwiftProtoTesting_Fuzz_repeatedBoolExt: [Bool] {
  1851. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_bool_ext) ?? []}
  1852. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_bool_ext, value: newValue)}
  1853. }
  1854. public var SwiftProtoTesting_Fuzz_repeatedStringExt: [String] {
  1855. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_string_ext) ?? []}
  1856. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_string_ext, value: newValue)}
  1857. }
  1858. public var SwiftProtoTesting_Fuzz_repeatedBytesExt: [Data] {
  1859. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_bytes_ext) ?? []}
  1860. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_bytes_ext, value: newValue)}
  1861. }
  1862. public var SwiftProtoTesting_Fuzz_repeatedEnumExt: [SwiftProtoTesting_Fuzz_AnEnum] {
  1863. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_enum_ext) ?? []}
  1864. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_enum_ext, value: newValue)}
  1865. }
  1866. public var SwiftProtoTesting_Fuzz_repeatedGroupExt: [SwiftProtoTesting_Fuzz_RepeatedGroup_ext] {
  1867. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_RepeatedGroup_ext) ?? []}
  1868. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_RepeatedGroup_ext, value: newValue)}
  1869. }
  1870. public var SwiftProtoTesting_Fuzz_repeatedMessageExt: [SwiftProtoTesting_Fuzz_Message] {
  1871. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_message_ext) ?? []}
  1872. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_message_ext, value: newValue)}
  1873. }
  1874. /// Repeated Packed
  1875. public var SwiftProtoTesting_Fuzz_repeatedPackedInt32Ext: [Int32] {
  1876. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_int32_ext) ?? []}
  1877. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_int32_ext, value: newValue)}
  1878. }
  1879. public var SwiftProtoTesting_Fuzz_repeatedPackedInt64Ext: [Int64] {
  1880. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_int64_ext) ?? []}
  1881. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_int64_ext, value: newValue)}
  1882. }
  1883. public var SwiftProtoTesting_Fuzz_repeatedPackedUint32Ext: [UInt32] {
  1884. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_uint32_ext) ?? []}
  1885. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_uint32_ext, value: newValue)}
  1886. }
  1887. public var SwiftProtoTesting_Fuzz_repeatedPackedUint64Ext: [UInt64] {
  1888. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_uint64_ext) ?? []}
  1889. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_uint64_ext, value: newValue)}
  1890. }
  1891. public var SwiftProtoTesting_Fuzz_repeatedPackedSint32Ext: [Int32] {
  1892. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sint32_ext) ?? []}
  1893. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sint32_ext, value: newValue)}
  1894. }
  1895. public var SwiftProtoTesting_Fuzz_repeatedPackedSint64Ext: [Int64] {
  1896. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sint64_ext) ?? []}
  1897. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sint64_ext, value: newValue)}
  1898. }
  1899. public var SwiftProtoTesting_Fuzz_repeatedPackedFixed32Ext: [UInt32] {
  1900. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_fixed32_ext) ?? []}
  1901. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_fixed32_ext, value: newValue)}
  1902. }
  1903. public var SwiftProtoTesting_Fuzz_repeatedPackedFixed64Ext: [UInt64] {
  1904. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_fixed64_ext) ?? []}
  1905. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_fixed64_ext, value: newValue)}
  1906. }
  1907. public var SwiftProtoTesting_Fuzz_repeatedPackedSfixed32Ext: [Int32] {
  1908. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sfixed32_ext) ?? []}
  1909. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sfixed32_ext, value: newValue)}
  1910. }
  1911. public var SwiftProtoTesting_Fuzz_repeatedPackedSfixed64Ext: [Int64] {
  1912. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sfixed64_ext) ?? []}
  1913. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sfixed64_ext, value: newValue)}
  1914. }
  1915. public var SwiftProtoTesting_Fuzz_repeatedPackedFloatExt: [Float] {
  1916. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_float_ext) ?? []}
  1917. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_float_ext, value: newValue)}
  1918. }
  1919. public var SwiftProtoTesting_Fuzz_repeatedPackedDoubleExt: [Double] {
  1920. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_double_ext) ?? []}
  1921. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_double_ext, value: newValue)}
  1922. }
  1923. public var SwiftProtoTesting_Fuzz_repeatedPackedBoolExt: [Bool] {
  1924. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_bool_ext) ?? []}
  1925. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_bool_ext, value: newValue)}
  1926. }
  1927. public var SwiftProtoTesting_Fuzz_repeatedPackedEnumExt: [SwiftProtoTesting_Fuzz_AnEnum] {
  1928. get {return getExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_enum_ext) ?? []}
  1929. set {setExtensionValue(ext: SwiftProtoTesting_Fuzz_Extensions_repeated_packed_enum_ext, value: newValue)}
  1930. }
  1931. }
  1932. // MARK: - File's ExtensionMap: SwiftProtoTesting_Fuzz_FuzzTesting_Extensions
  1933. /// A `SwiftProtobuf.SimpleExtensionMap` that includes all of the extensions defined by
  1934. /// this .proto file. It can be used any place an `SwiftProtobuf.ExtensionMap` is needed
  1935. /// in parsing, or it can be combined with other `SwiftProtobuf.SimpleExtensionMap`s to create
  1936. /// a larger `SwiftProtobuf.SimpleExtensionMap`.
  1937. public let SwiftProtoTesting_Fuzz_FuzzTesting_Extensions: SwiftProtobuf.SimpleExtensionMap = [
  1938. SwiftProtoTesting_Fuzz_Extensions_singular_int32_ext,
  1939. SwiftProtoTesting_Fuzz_Extensions_singular_int64_ext,
  1940. SwiftProtoTesting_Fuzz_Extensions_singular_uint32_ext,
  1941. SwiftProtoTesting_Fuzz_Extensions_singular_uint64_ext,
  1942. SwiftProtoTesting_Fuzz_Extensions_singular_sint32_ext,
  1943. SwiftProtoTesting_Fuzz_Extensions_singular_sint64_ext,
  1944. SwiftProtoTesting_Fuzz_Extensions_singular_fixed32_ext,
  1945. SwiftProtoTesting_Fuzz_Extensions_singular_fixed64_ext,
  1946. SwiftProtoTesting_Fuzz_Extensions_singular_sfixed32_ext,
  1947. SwiftProtoTesting_Fuzz_Extensions_singular_sfixed64_ext,
  1948. SwiftProtoTesting_Fuzz_Extensions_singular_float_ext,
  1949. SwiftProtoTesting_Fuzz_Extensions_singular_double_ext,
  1950. SwiftProtoTesting_Fuzz_Extensions_singular_bool_ext,
  1951. SwiftProtoTesting_Fuzz_Extensions_singular_string_ext,
  1952. SwiftProtoTesting_Fuzz_Extensions_singular_bytes_ext,
  1953. SwiftProtoTesting_Fuzz_Extensions_singular_enum_ext,
  1954. SwiftProtoTesting_Fuzz_Extensions_SingularGroup_ext,
  1955. SwiftProtoTesting_Fuzz_Extensions_singular_message_ext,
  1956. SwiftProtoTesting_Fuzz_Extensions_repeated_int32_ext,
  1957. SwiftProtoTesting_Fuzz_Extensions_repeated_int64_ext,
  1958. SwiftProtoTesting_Fuzz_Extensions_repeated_uint32_ext,
  1959. SwiftProtoTesting_Fuzz_Extensions_repeated_uint64_ext,
  1960. SwiftProtoTesting_Fuzz_Extensions_repeated_sint32_ext,
  1961. SwiftProtoTesting_Fuzz_Extensions_repeated_sint64_ext,
  1962. SwiftProtoTesting_Fuzz_Extensions_repeated_fixed32_ext,
  1963. SwiftProtoTesting_Fuzz_Extensions_repeated_fixed64_ext,
  1964. SwiftProtoTesting_Fuzz_Extensions_repeated_sfixed32_ext,
  1965. SwiftProtoTesting_Fuzz_Extensions_repeated_sfixed64_ext,
  1966. SwiftProtoTesting_Fuzz_Extensions_repeated_float_ext,
  1967. SwiftProtoTesting_Fuzz_Extensions_repeated_double_ext,
  1968. SwiftProtoTesting_Fuzz_Extensions_repeated_bool_ext,
  1969. SwiftProtoTesting_Fuzz_Extensions_repeated_string_ext,
  1970. SwiftProtoTesting_Fuzz_Extensions_repeated_bytes_ext,
  1971. SwiftProtoTesting_Fuzz_Extensions_repeated_enum_ext,
  1972. SwiftProtoTesting_Fuzz_Extensions_RepeatedGroup_ext,
  1973. SwiftProtoTesting_Fuzz_Extensions_repeated_message_ext,
  1974. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_int32_ext,
  1975. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_int64_ext,
  1976. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_uint32_ext,
  1977. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_uint64_ext,
  1978. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sint32_ext,
  1979. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sint64_ext,
  1980. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_fixed32_ext,
  1981. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_fixed64_ext,
  1982. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sfixed32_ext,
  1983. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sfixed64_ext,
  1984. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_float_ext,
  1985. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_double_ext,
  1986. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_bool_ext,
  1987. SwiftProtoTesting_Fuzz_Extensions_repeated_packed_enum_ext,
  1988. SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1.Extensions.message_set_extension,
  1989. SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2.Extensions.message_set_extension
  1990. ]
  1991. // Extension Objects - The only reason these might be needed is when manually
  1992. // constructing a `SimpleExtensionMap`, otherwise, use the above _Extension Properties_
  1993. // accessors for the extension fields on the messages directly.
  1994. /// Singular
  1995. public let SwiftProtoTesting_Fuzz_Extensions_singular_int32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufInt32>, SwiftProtoTesting_Fuzz_Message>(
  1996. _protobuf_fieldNumber: 1001,
  1997. fieldName: "swift_proto_testing.fuzz.singular_int32_ext"
  1998. )
  1999. public let SwiftProtoTesting_Fuzz_Extensions_singular_int64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufInt64>, SwiftProtoTesting_Fuzz_Message>(
  2000. _protobuf_fieldNumber: 1002,
  2001. fieldName: "swift_proto_testing.fuzz.singular_int64_ext"
  2002. )
  2003. public let SwiftProtoTesting_Fuzz_Extensions_singular_uint32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufUInt32>, SwiftProtoTesting_Fuzz_Message>(
  2004. _protobuf_fieldNumber: 1003,
  2005. fieldName: "swift_proto_testing.fuzz.singular_uint32_ext"
  2006. )
  2007. public let SwiftProtoTesting_Fuzz_Extensions_singular_uint64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufUInt64>, SwiftProtoTesting_Fuzz_Message>(
  2008. _protobuf_fieldNumber: 1004,
  2009. fieldName: "swift_proto_testing.fuzz.singular_uint64_ext"
  2010. )
  2011. public let SwiftProtoTesting_Fuzz_Extensions_singular_sint32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufSInt32>, SwiftProtoTesting_Fuzz_Message>(
  2012. _protobuf_fieldNumber: 1005,
  2013. fieldName: "swift_proto_testing.fuzz.singular_sint32_ext"
  2014. )
  2015. public let SwiftProtoTesting_Fuzz_Extensions_singular_sint64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufSInt64>, SwiftProtoTesting_Fuzz_Message>(
  2016. _protobuf_fieldNumber: 1006,
  2017. fieldName: "swift_proto_testing.fuzz.singular_sint64_ext"
  2018. )
  2019. public let SwiftProtoTesting_Fuzz_Extensions_singular_fixed32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufFixed32>, SwiftProtoTesting_Fuzz_Message>(
  2020. _protobuf_fieldNumber: 1007,
  2021. fieldName: "swift_proto_testing.fuzz.singular_fixed32_ext"
  2022. )
  2023. public let SwiftProtoTesting_Fuzz_Extensions_singular_fixed64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufFixed64>, SwiftProtoTesting_Fuzz_Message>(
  2024. _protobuf_fieldNumber: 1008,
  2025. fieldName: "swift_proto_testing.fuzz.singular_fixed64_ext"
  2026. )
  2027. public let SwiftProtoTesting_Fuzz_Extensions_singular_sfixed32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufSFixed32>, SwiftProtoTesting_Fuzz_Message>(
  2028. _protobuf_fieldNumber: 1009,
  2029. fieldName: "swift_proto_testing.fuzz.singular_sfixed32_ext"
  2030. )
  2031. public let SwiftProtoTesting_Fuzz_Extensions_singular_sfixed64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufSFixed64>, SwiftProtoTesting_Fuzz_Message>(
  2032. _protobuf_fieldNumber: 1010,
  2033. fieldName: "swift_proto_testing.fuzz.singular_sfixed64_ext"
  2034. )
  2035. public let SwiftProtoTesting_Fuzz_Extensions_singular_float_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufFloat>, SwiftProtoTesting_Fuzz_Message>(
  2036. _protobuf_fieldNumber: 1011,
  2037. fieldName: "swift_proto_testing.fuzz.singular_float_ext"
  2038. )
  2039. public let SwiftProtoTesting_Fuzz_Extensions_singular_double_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufDouble>, SwiftProtoTesting_Fuzz_Message>(
  2040. _protobuf_fieldNumber: 1012,
  2041. fieldName: "swift_proto_testing.fuzz.singular_double_ext"
  2042. )
  2043. public let SwiftProtoTesting_Fuzz_Extensions_singular_bool_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufBool>, SwiftProtoTesting_Fuzz_Message>(
  2044. _protobuf_fieldNumber: 1013,
  2045. fieldName: "swift_proto_testing.fuzz.singular_bool_ext"
  2046. )
  2047. public let SwiftProtoTesting_Fuzz_Extensions_singular_string_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufString>, SwiftProtoTesting_Fuzz_Message>(
  2048. _protobuf_fieldNumber: 1014,
  2049. fieldName: "swift_proto_testing.fuzz.singular_string_ext"
  2050. )
  2051. public let SwiftProtoTesting_Fuzz_Extensions_singular_bytes_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalExtensionField<SwiftProtobuf.ProtobufBytes>, SwiftProtoTesting_Fuzz_Message>(
  2052. _protobuf_fieldNumber: 1015,
  2053. fieldName: "swift_proto_testing.fuzz.singular_bytes_ext"
  2054. )
  2055. public let SwiftProtoTesting_Fuzz_Extensions_singular_enum_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalEnumExtensionField<SwiftProtoTesting_Fuzz_AnEnum>, SwiftProtoTesting_Fuzz_Message>(
  2056. _protobuf_fieldNumber: 1016,
  2057. fieldName: "swift_proto_testing.fuzz.singular_enum_ext"
  2058. )
  2059. public let SwiftProtoTesting_Fuzz_Extensions_SingularGroup_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalGroupExtensionField<SwiftProtoTesting_Fuzz_SingularGroup_ext>, SwiftProtoTesting_Fuzz_Message>(
  2060. _protobuf_fieldNumber: 1017,
  2061. fieldName: "swift_proto_testing.fuzz.singulargroup_ext"
  2062. )
  2063. public let SwiftProtoTesting_Fuzz_Extensions_singular_message_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalMessageExtensionField<SwiftProtoTesting_Fuzz_Message>, SwiftProtoTesting_Fuzz_Message>(
  2064. _protobuf_fieldNumber: 1019,
  2065. fieldName: "swift_proto_testing.fuzz.singular_message_ext"
  2066. )
  2067. /// Repeated
  2068. public let SwiftProtoTesting_Fuzz_Extensions_repeated_int32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufInt32>, SwiftProtoTesting_Fuzz_Message>(
  2069. _protobuf_fieldNumber: 1031,
  2070. fieldName: "swift_proto_testing.fuzz.repeated_int32_ext"
  2071. )
  2072. public let SwiftProtoTesting_Fuzz_Extensions_repeated_int64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufInt64>, SwiftProtoTesting_Fuzz_Message>(
  2073. _protobuf_fieldNumber: 1032,
  2074. fieldName: "swift_proto_testing.fuzz.repeated_int64_ext"
  2075. )
  2076. public let SwiftProtoTesting_Fuzz_Extensions_repeated_uint32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufUInt32>, SwiftProtoTesting_Fuzz_Message>(
  2077. _protobuf_fieldNumber: 1033,
  2078. fieldName: "swift_proto_testing.fuzz.repeated_uint32_ext"
  2079. )
  2080. public let SwiftProtoTesting_Fuzz_Extensions_repeated_uint64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufUInt64>, SwiftProtoTesting_Fuzz_Message>(
  2081. _protobuf_fieldNumber: 1034,
  2082. fieldName: "swift_proto_testing.fuzz.repeated_uint64_ext"
  2083. )
  2084. public let SwiftProtoTesting_Fuzz_Extensions_repeated_sint32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufSInt32>, SwiftProtoTesting_Fuzz_Message>(
  2085. _protobuf_fieldNumber: 1035,
  2086. fieldName: "swift_proto_testing.fuzz.repeated_sint32_ext"
  2087. )
  2088. public let SwiftProtoTesting_Fuzz_Extensions_repeated_sint64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufSInt64>, SwiftProtoTesting_Fuzz_Message>(
  2089. _protobuf_fieldNumber: 1036,
  2090. fieldName: "swift_proto_testing.fuzz.repeated_sint64_ext"
  2091. )
  2092. public let SwiftProtoTesting_Fuzz_Extensions_repeated_fixed32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufFixed32>, SwiftProtoTesting_Fuzz_Message>(
  2093. _protobuf_fieldNumber: 1037,
  2094. fieldName: "swift_proto_testing.fuzz.repeated_fixed32_ext"
  2095. )
  2096. public let SwiftProtoTesting_Fuzz_Extensions_repeated_fixed64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufFixed64>, SwiftProtoTesting_Fuzz_Message>(
  2097. _protobuf_fieldNumber: 1038,
  2098. fieldName: "swift_proto_testing.fuzz.repeated_fixed64_ext"
  2099. )
  2100. public let SwiftProtoTesting_Fuzz_Extensions_repeated_sfixed32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufSFixed32>, SwiftProtoTesting_Fuzz_Message>(
  2101. _protobuf_fieldNumber: 1039,
  2102. fieldName: "swift_proto_testing.fuzz.repeated_sfixed32_ext"
  2103. )
  2104. public let SwiftProtoTesting_Fuzz_Extensions_repeated_sfixed64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufSFixed64>, SwiftProtoTesting_Fuzz_Message>(
  2105. _protobuf_fieldNumber: 1040,
  2106. fieldName: "swift_proto_testing.fuzz.repeated_sfixed64_ext"
  2107. )
  2108. public let SwiftProtoTesting_Fuzz_Extensions_repeated_float_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufFloat>, SwiftProtoTesting_Fuzz_Message>(
  2109. _protobuf_fieldNumber: 1041,
  2110. fieldName: "swift_proto_testing.fuzz.repeated_float_ext"
  2111. )
  2112. public let SwiftProtoTesting_Fuzz_Extensions_repeated_double_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufDouble>, SwiftProtoTesting_Fuzz_Message>(
  2113. _protobuf_fieldNumber: 1042,
  2114. fieldName: "swift_proto_testing.fuzz.repeated_double_ext"
  2115. )
  2116. public let SwiftProtoTesting_Fuzz_Extensions_repeated_bool_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufBool>, SwiftProtoTesting_Fuzz_Message>(
  2117. _protobuf_fieldNumber: 1043,
  2118. fieldName: "swift_proto_testing.fuzz.repeated_bool_ext"
  2119. )
  2120. public let SwiftProtoTesting_Fuzz_Extensions_repeated_string_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufString>, SwiftProtoTesting_Fuzz_Message>(
  2121. _protobuf_fieldNumber: 1044,
  2122. fieldName: "swift_proto_testing.fuzz.repeated_string_ext"
  2123. )
  2124. public let SwiftProtoTesting_Fuzz_Extensions_repeated_bytes_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedExtensionField<SwiftProtobuf.ProtobufBytes>, SwiftProtoTesting_Fuzz_Message>(
  2125. _protobuf_fieldNumber: 1045,
  2126. fieldName: "swift_proto_testing.fuzz.repeated_bytes_ext"
  2127. )
  2128. public let SwiftProtoTesting_Fuzz_Extensions_repeated_enum_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedEnumExtensionField<SwiftProtoTesting_Fuzz_AnEnum>, SwiftProtoTesting_Fuzz_Message>(
  2129. _protobuf_fieldNumber: 1046,
  2130. fieldName: "swift_proto_testing.fuzz.repeated_enum_ext"
  2131. )
  2132. public let SwiftProtoTesting_Fuzz_Extensions_RepeatedGroup_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedGroupExtensionField<SwiftProtoTesting_Fuzz_RepeatedGroup_ext>, SwiftProtoTesting_Fuzz_Message>(
  2133. _protobuf_fieldNumber: 1047,
  2134. fieldName: "swift_proto_testing.fuzz.repeatedgroup_ext"
  2135. )
  2136. public let SwiftProtoTesting_Fuzz_Extensions_repeated_message_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.RepeatedMessageExtensionField<SwiftProtoTesting_Fuzz_Message>, SwiftProtoTesting_Fuzz_Message>(
  2137. _protobuf_fieldNumber: 1049,
  2138. fieldName: "swift_proto_testing.fuzz.repeated_message_ext"
  2139. )
  2140. /// Repeated Packed
  2141. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_int32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufInt32>, SwiftProtoTesting_Fuzz_Message>(
  2142. _protobuf_fieldNumber: 1061,
  2143. fieldName: "swift_proto_testing.fuzz.repeated_packed_int32_ext"
  2144. )
  2145. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_int64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufInt64>, SwiftProtoTesting_Fuzz_Message>(
  2146. _protobuf_fieldNumber: 1062,
  2147. fieldName: "swift_proto_testing.fuzz.repeated_packed_int64_ext"
  2148. )
  2149. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_uint32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufUInt32>, SwiftProtoTesting_Fuzz_Message>(
  2150. _protobuf_fieldNumber: 1063,
  2151. fieldName: "swift_proto_testing.fuzz.repeated_packed_uint32_ext"
  2152. )
  2153. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_uint64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufUInt64>, SwiftProtoTesting_Fuzz_Message>(
  2154. _protobuf_fieldNumber: 1064,
  2155. fieldName: "swift_proto_testing.fuzz.repeated_packed_uint64_ext"
  2156. )
  2157. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sint32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufSInt32>, SwiftProtoTesting_Fuzz_Message>(
  2158. _protobuf_fieldNumber: 1065,
  2159. fieldName: "swift_proto_testing.fuzz.repeated_packed_sint32_ext"
  2160. )
  2161. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sint64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufSInt64>, SwiftProtoTesting_Fuzz_Message>(
  2162. _protobuf_fieldNumber: 1066,
  2163. fieldName: "swift_proto_testing.fuzz.repeated_packed_sint64_ext"
  2164. )
  2165. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_fixed32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufFixed32>, SwiftProtoTesting_Fuzz_Message>(
  2166. _protobuf_fieldNumber: 1067,
  2167. fieldName: "swift_proto_testing.fuzz.repeated_packed_fixed32_ext"
  2168. )
  2169. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_fixed64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufFixed64>, SwiftProtoTesting_Fuzz_Message>(
  2170. _protobuf_fieldNumber: 1068,
  2171. fieldName: "swift_proto_testing.fuzz.repeated_packed_fixed64_ext"
  2172. )
  2173. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sfixed32_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufSFixed32>, SwiftProtoTesting_Fuzz_Message>(
  2174. _protobuf_fieldNumber: 1069,
  2175. fieldName: "swift_proto_testing.fuzz.repeated_packed_sfixed32_ext"
  2176. )
  2177. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_sfixed64_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufSFixed64>, SwiftProtoTesting_Fuzz_Message>(
  2178. _protobuf_fieldNumber: 1070,
  2179. fieldName: "swift_proto_testing.fuzz.repeated_packed_sfixed64_ext"
  2180. )
  2181. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_float_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufFloat>, SwiftProtoTesting_Fuzz_Message>(
  2182. _protobuf_fieldNumber: 1071,
  2183. fieldName: "swift_proto_testing.fuzz.repeated_packed_float_ext"
  2184. )
  2185. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_double_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufDouble>, SwiftProtoTesting_Fuzz_Message>(
  2186. _protobuf_fieldNumber: 1072,
  2187. fieldName: "swift_proto_testing.fuzz.repeated_packed_double_ext"
  2188. )
  2189. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_bool_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedExtensionField<SwiftProtobuf.ProtobufBool>, SwiftProtoTesting_Fuzz_Message>(
  2190. _protobuf_fieldNumber: 1073,
  2191. fieldName: "swift_proto_testing.fuzz.repeated_packed_bool_ext"
  2192. )
  2193. public let SwiftProtoTesting_Fuzz_Extensions_repeated_packed_enum_ext = SwiftProtobuf.MessageExtension<SwiftProtobuf.PackedEnumExtensionField<SwiftProtoTesting_Fuzz_AnEnum>, SwiftProtoTesting_Fuzz_Message>(
  2194. _protobuf_fieldNumber: 1074,
  2195. fieldName: "swift_proto_testing.fuzz.repeated_packed_enum_ext"
  2196. )
  2197. extension SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1 {
  2198. public enum Extensions {
  2199. public static let message_set_extension = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalMessageExtensionField<SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1>, SwiftProtoTesting_Fuzz_AMessageSetMessage>(
  2200. _protobuf_fieldNumber: 1547769,
  2201. fieldName: "swift_proto_testing.fuzz.AMessageSetMessageExtension1"
  2202. )
  2203. }
  2204. }
  2205. extension SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2 {
  2206. public enum Extensions {
  2207. public static let message_set_extension = SwiftProtobuf.MessageExtension<SwiftProtobuf.OptionalMessageExtensionField<SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2>, SwiftProtoTesting_Fuzz_AMessageSetMessage>(
  2208. _protobuf_fieldNumber: 4135312,
  2209. fieldName: "swift_proto_testing.fuzz.AMessageSetMessageExtension2"
  2210. )
  2211. }
  2212. }
  2213. // MARK: - Code below here is support for the SwiftProtobuf runtime.
  2214. fileprivate let _protobuf_package = "swift_proto_testing.fuzz"
  2215. extension SwiftProtoTesting_Fuzz_AnEnum: SwiftProtobuf._ProtoNameProviding {
  2216. public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{2}\0ZERO\0\u{1}ONE\0\u{1}TWO\0\u{1}THREE\0")
  2217. }
  2218. extension SwiftProtoTesting_Fuzz_Message: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
  2219. public static let protoMessageName: String = _protobuf_package + ".Message"
  2220. public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{3}singular_int32\0\u{3}singular_int64\0\u{3}singular_uint32\0\u{3}singular_uint64\0\u{3}singular_sint32\0\u{3}singular_sint64\0\u{3}singular_fixed32\0\u{3}singular_fixed64\0\u{3}singular_sfixed32\0\u{3}singular_sfixed64\0\u{3}singular_float\0\u{3}singular_double\0\u{3}singular_bool\0\u{3}singular_string\0\u{3}singular_bytes\0\u{3}singular_enum\0\u{7}SingularGroup\0\u{4}\u{2}singular_message\0\u{4}\u{c}repeated_int32\0\u{3}repeated_int64\0\u{3}repeated_uint32\0\u{3}repeated_uint64\0\u{3}repeated_sint32\0\u{3}repeated_sint64\0\u{3}repeated_fixed32\0\u{3}repeated_fixed64\0\u{3}repeated_sfixed32\0\u{3}repeated_sfixed64\0\u{3}repeated_float\0\u{3}repeated_double\0\u{3}repeated_bool\0\u{3}repeated_string\0\u{3}repeated_bytes\0\u{3}repeated_enum\0\u{7}RepeatedGroup\0\u{4}\u{2}repeated_message\0\u{4}\u{c}oneof_int32\0\u{3}oneof_int64\0\u{3}oneof_uint32\0\u{3}oneof_uint64\0\u{3}oneof_sint32\0\u{3}oneof_sint64\0\u{3}oneof_fixed32\0\u{3}oneof_fixed64\0\u{3}oneof_sfixed32\0\u{3}oneof_sfixed64\0\u{3}oneof_float\0\u{3}oneof_double\0\u{3}oneof_bool\0\u{3}oneof_string\0\u{3}oneof_bytes\0\u{3}oneof_enum\0\u{7}OneofGroup\0\u{4}\u{2}oneof_message\0\u{4}\u{2}repeated_packed_int32\0\u{3}repeated_packed_int64\0\u{3}repeated_packed_uint32\0\u{3}repeated_packed_uint64\0\u{3}repeated_packed_sint32\0\u{3}repeated_packed_sint64\0\u{3}repeated_packed_fixed32\0\u{3}repeated_packed_fixed64\0\u{3}repeated_packed_sfixed32\0\u{3}repeated_packed_sfixed64\0\u{3}repeated_packed_float\0\u{3}repeated_packed_double\0\u{3}repeated_packed_bool\0\u{3}repeated_packed_enum\0\u{4}\u{6}map_int32_int32\0\u{3}map_int32_int64\0\u{3}map_int32_uint32\0\u{3}map_int32_uint64\0\u{3}map_int32_sint32\0\u{3}map_int32_sint64\0\u{3}map_int32_fixed32\0\u{3}map_int32_fixed64\0\u{3}map_int32_sfixed32\0\u{3}map_int32_sfixed64\0\u{3}map_int32_float\0\u{3}map_int32_double\0\u{3}map_int32_bool\0\u{3}map_int32_string\0\u{3}map_int32_bytes\0\u{3}map_int32_AnEnum\0\u{3}map_int32_Message\0\u{3}map_int64_int32\0\u{3}map_int64_int64\0\u{3}map_int64_uint32\0\u{3}map_int64_uint64\0\u{3}map_int64_sint32\0\u{3}map_int64_sint64\0\u{3}map_int64_fixed32\0\u{3}map_int64_fixed64\0\u{3}map_int64_sfixed32\0\u{3}map_int64_sfixed64\0\u{3}map_int64_float\0\u{3}map_int64_double\0\u{3}map_int64_bool\0\u{3}map_int64_string\0\u{3}map_int64_bytes\0\u{3}map_int64_AnEnum\0\u{3}map_int64_Message\0\u{3}map_uint32_int32\0\u{3}map_uint32_int64\0\u{3}map_uint32_uint32\0\u{3}map_uint32_uint64\0\u{3}map_uint32_sint32\0\u{3}map_uint32_sint64\0\u{3}map_uint32_fixed32\0\u{3}map_uint32_fixed64\0\u{3}map_uint32_sfixed32\0\u{3}map_uint32_sfixed64\0\u{3}map_uint32_float\0\u{3}map_uint32_double\0\u{3}map_uint32_bool\0\u{3}map_uint32_string\0\u{3}map_uint32_bytes\0\u{3}map_uint32_AnEnum\0\u{3}map_uint32_Message\0\u{3}map_uint64_int32\0\u{3}map_uint64_int64\0\u{3}map_uint64_uint32\0\u{3}map_uint64_uint64\0\u{3}map_uint64_sint32\0\u{3}map_uint64_sint64\0\u{3}map_uint64_fixed32\0\u{3}map_uint64_fixed64\0\u{3}map_uint64_sfixed32\0\u{3}map_uint64_sfixed64\0\u{3}map_uint64_float\0\u{3}map_uint64_double\0\u{3}map_uint64_bool\0\u{3}map_uint64_string\0\u{3}map_uint64_bytes\0\u{3}map_uint64_AnEnum\0\u{3}map_uint64_Message\0\u{3}map_sint32_int32\0\u{3}map_sint32_int64\0\u{3}map_sint32_uint32\0\u{3}map_sint32_uint64\0\u{3}map_sint32_sint32\0\u{3}map_sint32_sint64\0\u{3}map_sint32_fixed32\0\u{3}map_sint32_fixed64\0\u{3}map_sint32_sfixed32\0\u{3}map_sint32_sfixed64\0\u{3}map_sint32_float\0\u{3}map_sint32_double\0\u{3}map_sint32_bool\0\u{3}map_sint32_string\0\u{3}map_sint32_bytes\0\u{3}map_sint32_AnEnum\0\u{3}map_sint32_Message\0\u{3}map_sint64_int32\0\u{3}map_sint64_int64\0\u{3}map_sint64_uint32\0\u{3}map_sint64_uint64\0\u{3}map_sint64_sint32\0\u{3}map_sint64_sint64\0\u{3}map_sint64_fixed32\0\u{3}map_sint64_fixed64\0\u{3}map_sint64_sfixed32\0\u{3}map_sint64_sfixed64\0\u{3}map_sint64_float\0\u{3}map_sint64_double\0\u{3}map_sint64_bool\0\u{3}map_sint64_string\0\u{3}map_sint64_bytes\0\u{3}map_sint64_AnEnum\0\u{3}map_sint64_Message\0\u{3}map_fixed32_int32\0\u{3}map_fixed32_int64\0\u{3}map_fixed32_uint32\0\u{3}map_fixed32_uint64\0\u{3}map_fixed32_sint32\0\u{3}map_fixed32_sint64\0\u{3}map_fixed32_fixed32\0\u{3}map_fixed32_fixed64\0\u{3}map_fixed32_sfixed32\0\u{3}map_fixed32_sfixed64\0\u{3}map_fixed32_float\0\u{3}map_fixed32_double\0\u{3}map_fixed32_bool\0\u{3}map_fixed32_string\0\u{3}map_fixed32_bytes\0\u{3}map_fixed32_AnEnum\0\u{3}map_fixed32_Message\0\u{3}map_fixed64_int32\0\u{3}map_fixed64_int64\0\u{3}map_fixed64_uint32\0\u{3}map_fixed64_uint64\0\u{3}map_fixed64_sint32\0\u{3}map_fixed64_sint64\0\u{3}map_fixed64_fixed32\0\u{3}map_fixed64_fixed64\0\u{3}map_fixed64_sfixed32\0\u{3}map_fixed64_sfixed64\0\u{3}map_fixed64_float\0\u{3}map_fixed64_double\0\u{3}map_fixed64_bool\0\u{3}map_fixed64_string\0\u{3}map_fixed64_bytes\0\u{3}map_fixed64_AnEnum\0\u{3}map_fixed64_Message\0\u{3}map_sfixed32_int32\0\u{3}map_sfixed32_int64\0\u{3}map_sfixed32_uint32\0\u{3}map_sfixed32_uint64\0\u{3}map_sfixed32_sint32\0\u{3}map_sfixed32_sint64\0\u{3}map_sfixed32_fixed32\0\u{3}map_sfixed32_fixed64\0\u{3}map_sfixed32_sfixed32\0\u{3}map_sfixed32_sfixed64\0\u{3}map_sfixed32_float\0\u{3}map_sfixed32_double\0\u{3}map_sfixed32_bool\0\u{3}map_sfixed32_string\0\u{3}map_sfixed32_bytes\0\u{3}map_sfixed32_AnEnum\0\u{3}map_sfixed32_Message\0\u{3}map_sfixed64_int32\0\u{3}map_sfixed64_int64\0\u{3}map_sfixed64_uint32\0\u{3}map_sfixed64_uint64\0\u{3}map_sfixed64_sint32\0\u{3}map_sfixed64_sint64\0\u{3}map_sfixed64_fixed32\0\u{3}map_sfixed64_fixed64\0\u{3}map_sfixed64_sfixed32\0\u{3}map_sfixed64_sfixed64\0\u{3}map_sfixed64_float\0\u{3}map_sfixed64_double\0\u{3}map_sfixed64_bool\0\u{3}map_sfixed64_string\0\u{3}map_sfixed64_bytes\0\u{3}map_sfixed64_AnEnum\0\u{3}map_sfixed64_Message\0\u{3}map_bool_int32\0\u{3}map_bool_int64\0\u{3}map_bool_uint32\0\u{3}map_bool_uint64\0\u{3}map_bool_sint32\0\u{3}map_bool_sint64\0\u{3}map_bool_fixed32\0\u{3}map_bool_fixed64\0\u{3}map_bool_sfixed32\0\u{3}map_bool_sfixed64\0\u{3}map_bool_float\0\u{3}map_bool_double\0\u{3}map_bool_bool\0\u{3}map_bool_string\0\u{3}map_bool_bytes\0\u{3}map_bool_AnEnum\0\u{3}map_bool_Message\0\u{4}V\u{3}wkt_any\0\u{3}wkt_api\0\u{3}wkt_duration\0\u{3}wkt_empty\0\u{3}wkt_field_mask\0\u{3}wkt_source_context\0\u{3}wkt_struct\0\u{3}wkt_timestamp\0\u{3}wkt_type\0\u{3}wkt_double_value\0\u{3}wkt_float_value\0\u{3}wkt_int64_value\0\u{3}wkt_uint64_value\0\u{3}wkt_int32_value\0\u{3}wkt_uint32_value\0\u{3}wkt_bool_value\0\u{3}wkt_string_value\0\u{3}wkt_bytes_value\0\u{4}S\u{1}singular_message_set\0\u{3}repeated_message_set\0")
  2221. fileprivate class _StorageClass {
  2222. var _singularInt32: Int32? = nil
  2223. var _singularInt64: Int64? = nil
  2224. var _singularUint32: UInt32? = nil
  2225. var _singularUint64: UInt64? = nil
  2226. var _singularSint32: Int32? = nil
  2227. var _singularSint64: Int64? = nil
  2228. var _singularFixed32: UInt32? = nil
  2229. var _singularFixed64: UInt64? = nil
  2230. var _singularSfixed32: Int32? = nil
  2231. var _singularSfixed64: Int64? = nil
  2232. var _singularFloat: Float? = nil
  2233. var _singularDouble: Double? = nil
  2234. var _singularBool: Bool? = nil
  2235. var _singularString: String? = nil
  2236. var _singularBytes: Data? = nil
  2237. var _singularEnum: SwiftProtoTesting_Fuzz_AnEnum? = nil
  2238. var _singularGroup: SwiftProtoTesting_Fuzz_Message.SingularGroup? = nil
  2239. var _singularMessage: SwiftProtoTesting_Fuzz_Message? = nil
  2240. var _repeatedInt32: [Int32] = []
  2241. var _repeatedInt64: [Int64] = []
  2242. var _repeatedUint32: [UInt32] = []
  2243. var _repeatedUint64: [UInt64] = []
  2244. var _repeatedSint32: [Int32] = []
  2245. var _repeatedSint64: [Int64] = []
  2246. var _repeatedFixed32: [UInt32] = []
  2247. var _repeatedFixed64: [UInt64] = []
  2248. var _repeatedSfixed32: [Int32] = []
  2249. var _repeatedSfixed64: [Int64] = []
  2250. var _repeatedFloat: [Float] = []
  2251. var _repeatedDouble: [Double] = []
  2252. var _repeatedBool: [Bool] = []
  2253. var _repeatedString: [String] = []
  2254. var _repeatedBytes: [Data] = []
  2255. var _repeatedEnum: [SwiftProtoTesting_Fuzz_AnEnum] = []
  2256. var _repeatedGroup: [SwiftProtoTesting_Fuzz_Message.RepeatedGroup] = []
  2257. var _repeatedMessage: [SwiftProtoTesting_Fuzz_Message] = []
  2258. var _o: SwiftProtoTesting_Fuzz_Message.OneOf_O?
  2259. var _repeatedPackedInt32: [Int32] = []
  2260. var _repeatedPackedInt64: [Int64] = []
  2261. var _repeatedPackedUint32: [UInt32] = []
  2262. var _repeatedPackedUint64: [UInt64] = []
  2263. var _repeatedPackedSint32: [Int32] = []
  2264. var _repeatedPackedSint64: [Int64] = []
  2265. var _repeatedPackedFixed32: [UInt32] = []
  2266. var _repeatedPackedFixed64: [UInt64] = []
  2267. var _repeatedPackedSfixed32: [Int32] = []
  2268. var _repeatedPackedSfixed64: [Int64] = []
  2269. var _repeatedPackedFloat: [Float] = []
  2270. var _repeatedPackedDouble: [Double] = []
  2271. var _repeatedPackedBool: [Bool] = []
  2272. var _repeatedPackedEnum: [SwiftProtoTesting_Fuzz_AnEnum] = []
  2273. var _mapInt32Int32: Dictionary<Int32,Int32> = [:]
  2274. var _mapInt32Int64: Dictionary<Int32,Int64> = [:]
  2275. var _mapInt32Uint32: Dictionary<Int32,UInt32> = [:]
  2276. var _mapInt32Uint64: Dictionary<Int32,UInt64> = [:]
  2277. var _mapInt32Sint32: Dictionary<Int32,Int32> = [:]
  2278. var _mapInt32Sint64: Dictionary<Int32,Int64> = [:]
  2279. var _mapInt32Fixed32: Dictionary<Int32,UInt32> = [:]
  2280. var _mapInt32Fixed64: Dictionary<Int32,UInt64> = [:]
  2281. var _mapInt32Sfixed32: Dictionary<Int32,Int32> = [:]
  2282. var _mapInt32Sfixed64: Dictionary<Int32,Int64> = [:]
  2283. var _mapInt32Float: Dictionary<Int32,Float> = [:]
  2284. var _mapInt32Double: Dictionary<Int32,Double> = [:]
  2285. var _mapInt32Bool: Dictionary<Int32,Bool> = [:]
  2286. var _mapInt32String: Dictionary<Int32,String> = [:]
  2287. var _mapInt32Bytes: Dictionary<Int32,Data> = [:]
  2288. var _mapInt32AnEnum: Dictionary<Int32,SwiftProtoTesting_Fuzz_AnEnum> = [:]
  2289. var _mapInt32Message: Dictionary<Int32,SwiftProtoTesting_Fuzz_Message> = [:]
  2290. var _mapInt64Int32: Dictionary<Int64,Int32> = [:]
  2291. var _mapInt64Int64: Dictionary<Int64,Int64> = [:]
  2292. var _mapInt64Uint32: Dictionary<Int64,UInt32> = [:]
  2293. var _mapInt64Uint64: Dictionary<Int64,UInt64> = [:]
  2294. var _mapInt64Sint32: Dictionary<Int64,Int32> = [:]
  2295. var _mapInt64Sint64: Dictionary<Int64,Int64> = [:]
  2296. var _mapInt64Fixed32: Dictionary<Int64,UInt32> = [:]
  2297. var _mapInt64Fixed64: Dictionary<Int64,UInt64> = [:]
  2298. var _mapInt64Sfixed32: Dictionary<Int64,Int32> = [:]
  2299. var _mapInt64Sfixed64: Dictionary<Int64,Int64> = [:]
  2300. var _mapInt64Float: Dictionary<Int64,Float> = [:]
  2301. var _mapInt64Double: Dictionary<Int64,Double> = [:]
  2302. var _mapInt64Bool: Dictionary<Int64,Bool> = [:]
  2303. var _mapInt64String: Dictionary<Int64,String> = [:]
  2304. var _mapInt64Bytes: Dictionary<Int64,Data> = [:]
  2305. var _mapInt64AnEnum: Dictionary<Int64,SwiftProtoTesting_Fuzz_AnEnum> = [:]
  2306. var _mapInt64Message: Dictionary<Int64,SwiftProtoTesting_Fuzz_Message> = [:]
  2307. var _mapUint32Int32: Dictionary<UInt32,Int32> = [:]
  2308. var _mapUint32Int64: Dictionary<UInt32,Int64> = [:]
  2309. var _mapUint32Uint32: Dictionary<UInt32,UInt32> = [:]
  2310. var _mapUint32Uint64: Dictionary<UInt32,UInt64> = [:]
  2311. var _mapUint32Sint32: Dictionary<UInt32,Int32> = [:]
  2312. var _mapUint32Sint64: Dictionary<UInt32,Int64> = [:]
  2313. var _mapUint32Fixed32: Dictionary<UInt32,UInt32> = [:]
  2314. var _mapUint32Fixed64: Dictionary<UInt32,UInt64> = [:]
  2315. var _mapUint32Sfixed32: Dictionary<UInt32,Int32> = [:]
  2316. var _mapUint32Sfixed64: Dictionary<UInt32,Int64> = [:]
  2317. var _mapUint32Float: Dictionary<UInt32,Float> = [:]
  2318. var _mapUint32Double: Dictionary<UInt32,Double> = [:]
  2319. var _mapUint32Bool: Dictionary<UInt32,Bool> = [:]
  2320. var _mapUint32String: Dictionary<UInt32,String> = [:]
  2321. var _mapUint32Bytes: Dictionary<UInt32,Data> = [:]
  2322. var _mapUint32AnEnum: Dictionary<UInt32,SwiftProtoTesting_Fuzz_AnEnum> = [:]
  2323. var _mapUint32Message: Dictionary<UInt32,SwiftProtoTesting_Fuzz_Message> = [:]
  2324. var _mapUint64Int32: Dictionary<UInt64,Int32> = [:]
  2325. var _mapUint64Int64: Dictionary<UInt64,Int64> = [:]
  2326. var _mapUint64Uint32: Dictionary<UInt64,UInt32> = [:]
  2327. var _mapUint64Uint64: Dictionary<UInt64,UInt64> = [:]
  2328. var _mapUint64Sint32: Dictionary<UInt64,Int32> = [:]
  2329. var _mapUint64Sint64: Dictionary<UInt64,Int64> = [:]
  2330. var _mapUint64Fixed32: Dictionary<UInt64,UInt32> = [:]
  2331. var _mapUint64Fixed64: Dictionary<UInt64,UInt64> = [:]
  2332. var _mapUint64Sfixed32: Dictionary<UInt64,Int32> = [:]
  2333. var _mapUint64Sfixed64: Dictionary<UInt64,Int64> = [:]
  2334. var _mapUint64Float: Dictionary<UInt64,Float> = [:]
  2335. var _mapUint64Double: Dictionary<UInt64,Double> = [:]
  2336. var _mapUint64Bool: Dictionary<UInt64,Bool> = [:]
  2337. var _mapUint64String: Dictionary<UInt64,String> = [:]
  2338. var _mapUint64Bytes: Dictionary<UInt64,Data> = [:]
  2339. var _mapUint64AnEnum: Dictionary<UInt64,SwiftProtoTesting_Fuzz_AnEnum> = [:]
  2340. var _mapUint64Message: Dictionary<UInt64,SwiftProtoTesting_Fuzz_Message> = [:]
  2341. var _mapSint32Int32: Dictionary<Int32,Int32> = [:]
  2342. var _mapSint32Int64: Dictionary<Int32,Int64> = [:]
  2343. var _mapSint32Uint32: Dictionary<Int32,UInt32> = [:]
  2344. var _mapSint32Uint64: Dictionary<Int32,UInt64> = [:]
  2345. var _mapSint32Sint32: Dictionary<Int32,Int32> = [:]
  2346. var _mapSint32Sint64: Dictionary<Int32,Int64> = [:]
  2347. var _mapSint32Fixed32: Dictionary<Int32,UInt32> = [:]
  2348. var _mapSint32Fixed64: Dictionary<Int32,UInt64> = [:]
  2349. var _mapSint32Sfixed32: Dictionary<Int32,Int32> = [:]
  2350. var _mapSint32Sfixed64: Dictionary<Int32,Int64> = [:]
  2351. var _mapSint32Float: Dictionary<Int32,Float> = [:]
  2352. var _mapSint32Double: Dictionary<Int32,Double> = [:]
  2353. var _mapSint32Bool: Dictionary<Int32,Bool> = [:]
  2354. var _mapSint32String: Dictionary<Int32,String> = [:]
  2355. var _mapSint32Bytes: Dictionary<Int32,Data> = [:]
  2356. var _mapSint32AnEnum: Dictionary<Int32,SwiftProtoTesting_Fuzz_AnEnum> = [:]
  2357. var _mapSint32Message: Dictionary<Int32,SwiftProtoTesting_Fuzz_Message> = [:]
  2358. var _mapSint64Int32: Dictionary<Int64,Int32> = [:]
  2359. var _mapSint64Int64: Dictionary<Int64,Int64> = [:]
  2360. var _mapSint64Uint32: Dictionary<Int64,UInt32> = [:]
  2361. var _mapSint64Uint64: Dictionary<Int64,UInt64> = [:]
  2362. var _mapSint64Sint32: Dictionary<Int64,Int32> = [:]
  2363. var _mapSint64Sint64: Dictionary<Int64,Int64> = [:]
  2364. var _mapSint64Fixed32: Dictionary<Int64,UInt32> = [:]
  2365. var _mapSint64Fixed64: Dictionary<Int64,UInt64> = [:]
  2366. var _mapSint64Sfixed32: Dictionary<Int64,Int32> = [:]
  2367. var _mapSint64Sfixed64: Dictionary<Int64,Int64> = [:]
  2368. var _mapSint64Float: Dictionary<Int64,Float> = [:]
  2369. var _mapSint64Double: Dictionary<Int64,Double> = [:]
  2370. var _mapSint64Bool: Dictionary<Int64,Bool> = [:]
  2371. var _mapSint64String: Dictionary<Int64,String> = [:]
  2372. var _mapSint64Bytes: Dictionary<Int64,Data> = [:]
  2373. var _mapSint64AnEnum: Dictionary<Int64,SwiftProtoTesting_Fuzz_AnEnum> = [:]
  2374. var _mapSint64Message: Dictionary<Int64,SwiftProtoTesting_Fuzz_Message> = [:]
  2375. var _mapFixed32Int32: Dictionary<UInt32,Int32> = [:]
  2376. var _mapFixed32Int64: Dictionary<UInt32,Int64> = [:]
  2377. var _mapFixed32Uint32: Dictionary<UInt32,UInt32> = [:]
  2378. var _mapFixed32Uint64: Dictionary<UInt32,UInt64> = [:]
  2379. var _mapFixed32Sint32: Dictionary<UInt32,Int32> = [:]
  2380. var _mapFixed32Sint64: Dictionary<UInt32,Int64> = [:]
  2381. var _mapFixed32Fixed32: Dictionary<UInt32,UInt32> = [:]
  2382. var _mapFixed32Fixed64: Dictionary<UInt32,UInt64> = [:]
  2383. var _mapFixed32Sfixed32: Dictionary<UInt32,Int32> = [:]
  2384. var _mapFixed32Sfixed64: Dictionary<UInt32,Int64> = [:]
  2385. var _mapFixed32Float: Dictionary<UInt32,Float> = [:]
  2386. var _mapFixed32Double: Dictionary<UInt32,Double> = [:]
  2387. var _mapFixed32Bool: Dictionary<UInt32,Bool> = [:]
  2388. var _mapFixed32String: Dictionary<UInt32,String> = [:]
  2389. var _mapFixed32Bytes: Dictionary<UInt32,Data> = [:]
  2390. var _mapFixed32AnEnum: Dictionary<UInt32,SwiftProtoTesting_Fuzz_AnEnum> = [:]
  2391. var _mapFixed32Message: Dictionary<UInt32,SwiftProtoTesting_Fuzz_Message> = [:]
  2392. var _mapFixed64Int32: Dictionary<UInt64,Int32> = [:]
  2393. var _mapFixed64Int64: Dictionary<UInt64,Int64> = [:]
  2394. var _mapFixed64Uint32: Dictionary<UInt64,UInt32> = [:]
  2395. var _mapFixed64Uint64: Dictionary<UInt64,UInt64> = [:]
  2396. var _mapFixed64Sint32: Dictionary<UInt64,Int32> = [:]
  2397. var _mapFixed64Sint64: Dictionary<UInt64,Int64> = [:]
  2398. var _mapFixed64Fixed32: Dictionary<UInt64,UInt32> = [:]
  2399. var _mapFixed64Fixed64: Dictionary<UInt64,UInt64> = [:]
  2400. var _mapFixed64Sfixed32: Dictionary<UInt64,Int32> = [:]
  2401. var _mapFixed64Sfixed64: Dictionary<UInt64,Int64> = [:]
  2402. var _mapFixed64Float: Dictionary<UInt64,Float> = [:]
  2403. var _mapFixed64Double: Dictionary<UInt64,Double> = [:]
  2404. var _mapFixed64Bool: Dictionary<UInt64,Bool> = [:]
  2405. var _mapFixed64String: Dictionary<UInt64,String> = [:]
  2406. var _mapFixed64Bytes: Dictionary<UInt64,Data> = [:]
  2407. var _mapFixed64AnEnum: Dictionary<UInt64,SwiftProtoTesting_Fuzz_AnEnum> = [:]
  2408. var _mapFixed64Message: Dictionary<UInt64,SwiftProtoTesting_Fuzz_Message> = [:]
  2409. var _mapSfixed32Int32: Dictionary<Int32,Int32> = [:]
  2410. var _mapSfixed32Int64: Dictionary<Int32,Int64> = [:]
  2411. var _mapSfixed32Uint32: Dictionary<Int32,UInt32> = [:]
  2412. var _mapSfixed32Uint64: Dictionary<Int32,UInt64> = [:]
  2413. var _mapSfixed32Sint32: Dictionary<Int32,Int32> = [:]
  2414. var _mapSfixed32Sint64: Dictionary<Int32,Int64> = [:]
  2415. var _mapSfixed32Fixed32: Dictionary<Int32,UInt32> = [:]
  2416. var _mapSfixed32Fixed64: Dictionary<Int32,UInt64> = [:]
  2417. var _mapSfixed32Sfixed32: Dictionary<Int32,Int32> = [:]
  2418. var _mapSfixed32Sfixed64: Dictionary<Int32,Int64> = [:]
  2419. var _mapSfixed32Float: Dictionary<Int32,Float> = [:]
  2420. var _mapSfixed32Double: Dictionary<Int32,Double> = [:]
  2421. var _mapSfixed32Bool: Dictionary<Int32,Bool> = [:]
  2422. var _mapSfixed32String: Dictionary<Int32,String> = [:]
  2423. var _mapSfixed32Bytes: Dictionary<Int32,Data> = [:]
  2424. var _mapSfixed32AnEnum: Dictionary<Int32,SwiftProtoTesting_Fuzz_AnEnum> = [:]
  2425. var _mapSfixed32Message: Dictionary<Int32,SwiftProtoTesting_Fuzz_Message> = [:]
  2426. var _mapSfixed64Int32: Dictionary<Int64,Int32> = [:]
  2427. var _mapSfixed64Int64: Dictionary<Int64,Int64> = [:]
  2428. var _mapSfixed64Uint32: Dictionary<Int64,UInt32> = [:]
  2429. var _mapSfixed64Uint64: Dictionary<Int64,UInt64> = [:]
  2430. var _mapSfixed64Sint32: Dictionary<Int64,Int32> = [:]
  2431. var _mapSfixed64Sint64: Dictionary<Int64,Int64> = [:]
  2432. var _mapSfixed64Fixed32: Dictionary<Int64,UInt32> = [:]
  2433. var _mapSfixed64Fixed64: Dictionary<Int64,UInt64> = [:]
  2434. var _mapSfixed64Sfixed32: Dictionary<Int64,Int32> = [:]
  2435. var _mapSfixed64Sfixed64: Dictionary<Int64,Int64> = [:]
  2436. var _mapSfixed64Float: Dictionary<Int64,Float> = [:]
  2437. var _mapSfixed64Double: Dictionary<Int64,Double> = [:]
  2438. var _mapSfixed64Bool: Dictionary<Int64,Bool> = [:]
  2439. var _mapSfixed64String: Dictionary<Int64,String> = [:]
  2440. var _mapSfixed64Bytes: Dictionary<Int64,Data> = [:]
  2441. var _mapSfixed64AnEnum: Dictionary<Int64,SwiftProtoTesting_Fuzz_AnEnum> = [:]
  2442. var _mapSfixed64Message: Dictionary<Int64,SwiftProtoTesting_Fuzz_Message> = [:]
  2443. var _mapBoolInt32: Dictionary<Bool,Int32> = [:]
  2444. var _mapBoolInt64: Dictionary<Bool,Int64> = [:]
  2445. var _mapBoolUint32: Dictionary<Bool,UInt32> = [:]
  2446. var _mapBoolUint64: Dictionary<Bool,UInt64> = [:]
  2447. var _mapBoolSint32: Dictionary<Bool,Int32> = [:]
  2448. var _mapBoolSint64: Dictionary<Bool,Int64> = [:]
  2449. var _mapBoolFixed32: Dictionary<Bool,UInt32> = [:]
  2450. var _mapBoolFixed64: Dictionary<Bool,UInt64> = [:]
  2451. var _mapBoolSfixed32: Dictionary<Bool,Int32> = [:]
  2452. var _mapBoolSfixed64: Dictionary<Bool,Int64> = [:]
  2453. var _mapBoolFloat: Dictionary<Bool,Float> = [:]
  2454. var _mapBoolDouble: Dictionary<Bool,Double> = [:]
  2455. var _mapBoolBool: Dictionary<Bool,Bool> = [:]
  2456. var _mapBoolString: Dictionary<Bool,String> = [:]
  2457. var _mapBoolBytes: Dictionary<Bool,Data> = [:]
  2458. var _mapBoolAnEnum: Dictionary<Bool,SwiftProtoTesting_Fuzz_AnEnum> = [:]
  2459. var _mapBoolMessage: Dictionary<Bool,SwiftProtoTesting_Fuzz_Message> = [:]
  2460. var _wktAny: SwiftProtobuf.Google_Protobuf_Any? = nil
  2461. var _wktApi: SwiftProtobuf.Google_Protobuf_Api? = nil
  2462. var _wktDuration: SwiftProtobuf.Google_Protobuf_Duration? = nil
  2463. var _wktEmpty: SwiftProtobuf.Google_Protobuf_Empty? = nil
  2464. var _wktFieldMask: SwiftProtobuf.Google_Protobuf_FieldMask? = nil
  2465. var _wktSourceContext: SwiftProtobuf.Google_Protobuf_SourceContext? = nil
  2466. var _wktStruct: SwiftProtobuf.Google_Protobuf_Struct? = nil
  2467. var _wktTimestamp: SwiftProtobuf.Google_Protobuf_Timestamp? = nil
  2468. var _wktType: SwiftProtobuf.Google_Protobuf_Type? = nil
  2469. var _wktDoubleValue: SwiftProtobuf.Google_Protobuf_DoubleValue? = nil
  2470. var _wktFloatValue: SwiftProtobuf.Google_Protobuf_FloatValue? = nil
  2471. var _wktInt64Value: SwiftProtobuf.Google_Protobuf_Int64Value? = nil
  2472. var _wktUint64Value: SwiftProtobuf.Google_Protobuf_UInt64Value? = nil
  2473. var _wktInt32Value: SwiftProtobuf.Google_Protobuf_Int32Value? = nil
  2474. var _wktUint32Value: SwiftProtobuf.Google_Protobuf_UInt32Value? = nil
  2475. var _wktBoolValue: SwiftProtobuf.Google_Protobuf_BoolValue? = nil
  2476. var _wktStringValue: SwiftProtobuf.Google_Protobuf_StringValue? = nil
  2477. var _wktBytesValue: SwiftProtobuf.Google_Protobuf_BytesValue? = nil
  2478. var _singularMessageSet: SwiftProtoTesting_Fuzz_AMessageSetMessage? = nil
  2479. var _repeatedMessageSet: [SwiftProtoTesting_Fuzz_AMessageSetMessage] = []
  2480. // This property is used as the initial default value for new instances of the type.
  2481. // The type itself is protecting the reference to its storage via CoW semantics.
  2482. // This will force a copy to be made of this reference when the first mutation occurs;
  2483. // hence, it is safe to mark this as `nonisolated(unsafe)`.
  2484. static nonisolated(unsafe) let defaultInstance = _StorageClass()
  2485. private init() {}
  2486. init(copying source: _StorageClass) {
  2487. _singularInt32 = source._singularInt32
  2488. _singularInt64 = source._singularInt64
  2489. _singularUint32 = source._singularUint32
  2490. _singularUint64 = source._singularUint64
  2491. _singularSint32 = source._singularSint32
  2492. _singularSint64 = source._singularSint64
  2493. _singularFixed32 = source._singularFixed32
  2494. _singularFixed64 = source._singularFixed64
  2495. _singularSfixed32 = source._singularSfixed32
  2496. _singularSfixed64 = source._singularSfixed64
  2497. _singularFloat = source._singularFloat
  2498. _singularDouble = source._singularDouble
  2499. _singularBool = source._singularBool
  2500. _singularString = source._singularString
  2501. _singularBytes = source._singularBytes
  2502. _singularEnum = source._singularEnum
  2503. _singularGroup = source._singularGroup
  2504. _singularMessage = source._singularMessage
  2505. _repeatedInt32 = source._repeatedInt32
  2506. _repeatedInt64 = source._repeatedInt64
  2507. _repeatedUint32 = source._repeatedUint32
  2508. _repeatedUint64 = source._repeatedUint64
  2509. _repeatedSint32 = source._repeatedSint32
  2510. _repeatedSint64 = source._repeatedSint64
  2511. _repeatedFixed32 = source._repeatedFixed32
  2512. _repeatedFixed64 = source._repeatedFixed64
  2513. _repeatedSfixed32 = source._repeatedSfixed32
  2514. _repeatedSfixed64 = source._repeatedSfixed64
  2515. _repeatedFloat = source._repeatedFloat
  2516. _repeatedDouble = source._repeatedDouble
  2517. _repeatedBool = source._repeatedBool
  2518. _repeatedString = source._repeatedString
  2519. _repeatedBytes = source._repeatedBytes
  2520. _repeatedEnum = source._repeatedEnum
  2521. _repeatedGroup = source._repeatedGroup
  2522. _repeatedMessage = source._repeatedMessage
  2523. _o = source._o
  2524. _repeatedPackedInt32 = source._repeatedPackedInt32
  2525. _repeatedPackedInt64 = source._repeatedPackedInt64
  2526. _repeatedPackedUint32 = source._repeatedPackedUint32
  2527. _repeatedPackedUint64 = source._repeatedPackedUint64
  2528. _repeatedPackedSint32 = source._repeatedPackedSint32
  2529. _repeatedPackedSint64 = source._repeatedPackedSint64
  2530. _repeatedPackedFixed32 = source._repeatedPackedFixed32
  2531. _repeatedPackedFixed64 = source._repeatedPackedFixed64
  2532. _repeatedPackedSfixed32 = source._repeatedPackedSfixed32
  2533. _repeatedPackedSfixed64 = source._repeatedPackedSfixed64
  2534. _repeatedPackedFloat = source._repeatedPackedFloat
  2535. _repeatedPackedDouble = source._repeatedPackedDouble
  2536. _repeatedPackedBool = source._repeatedPackedBool
  2537. _repeatedPackedEnum = source._repeatedPackedEnum
  2538. _mapInt32Int32 = source._mapInt32Int32
  2539. _mapInt32Int64 = source._mapInt32Int64
  2540. _mapInt32Uint32 = source._mapInt32Uint32
  2541. _mapInt32Uint64 = source._mapInt32Uint64
  2542. _mapInt32Sint32 = source._mapInt32Sint32
  2543. _mapInt32Sint64 = source._mapInt32Sint64
  2544. _mapInt32Fixed32 = source._mapInt32Fixed32
  2545. _mapInt32Fixed64 = source._mapInt32Fixed64
  2546. _mapInt32Sfixed32 = source._mapInt32Sfixed32
  2547. _mapInt32Sfixed64 = source._mapInt32Sfixed64
  2548. _mapInt32Float = source._mapInt32Float
  2549. _mapInt32Double = source._mapInt32Double
  2550. _mapInt32Bool = source._mapInt32Bool
  2551. _mapInt32String = source._mapInt32String
  2552. _mapInt32Bytes = source._mapInt32Bytes
  2553. _mapInt32AnEnum = source._mapInt32AnEnum
  2554. _mapInt32Message = source._mapInt32Message
  2555. _mapInt64Int32 = source._mapInt64Int32
  2556. _mapInt64Int64 = source._mapInt64Int64
  2557. _mapInt64Uint32 = source._mapInt64Uint32
  2558. _mapInt64Uint64 = source._mapInt64Uint64
  2559. _mapInt64Sint32 = source._mapInt64Sint32
  2560. _mapInt64Sint64 = source._mapInt64Sint64
  2561. _mapInt64Fixed32 = source._mapInt64Fixed32
  2562. _mapInt64Fixed64 = source._mapInt64Fixed64
  2563. _mapInt64Sfixed32 = source._mapInt64Sfixed32
  2564. _mapInt64Sfixed64 = source._mapInt64Sfixed64
  2565. _mapInt64Float = source._mapInt64Float
  2566. _mapInt64Double = source._mapInt64Double
  2567. _mapInt64Bool = source._mapInt64Bool
  2568. _mapInt64String = source._mapInt64String
  2569. _mapInt64Bytes = source._mapInt64Bytes
  2570. _mapInt64AnEnum = source._mapInt64AnEnum
  2571. _mapInt64Message = source._mapInt64Message
  2572. _mapUint32Int32 = source._mapUint32Int32
  2573. _mapUint32Int64 = source._mapUint32Int64
  2574. _mapUint32Uint32 = source._mapUint32Uint32
  2575. _mapUint32Uint64 = source._mapUint32Uint64
  2576. _mapUint32Sint32 = source._mapUint32Sint32
  2577. _mapUint32Sint64 = source._mapUint32Sint64
  2578. _mapUint32Fixed32 = source._mapUint32Fixed32
  2579. _mapUint32Fixed64 = source._mapUint32Fixed64
  2580. _mapUint32Sfixed32 = source._mapUint32Sfixed32
  2581. _mapUint32Sfixed64 = source._mapUint32Sfixed64
  2582. _mapUint32Float = source._mapUint32Float
  2583. _mapUint32Double = source._mapUint32Double
  2584. _mapUint32Bool = source._mapUint32Bool
  2585. _mapUint32String = source._mapUint32String
  2586. _mapUint32Bytes = source._mapUint32Bytes
  2587. _mapUint32AnEnum = source._mapUint32AnEnum
  2588. _mapUint32Message = source._mapUint32Message
  2589. _mapUint64Int32 = source._mapUint64Int32
  2590. _mapUint64Int64 = source._mapUint64Int64
  2591. _mapUint64Uint32 = source._mapUint64Uint32
  2592. _mapUint64Uint64 = source._mapUint64Uint64
  2593. _mapUint64Sint32 = source._mapUint64Sint32
  2594. _mapUint64Sint64 = source._mapUint64Sint64
  2595. _mapUint64Fixed32 = source._mapUint64Fixed32
  2596. _mapUint64Fixed64 = source._mapUint64Fixed64
  2597. _mapUint64Sfixed32 = source._mapUint64Sfixed32
  2598. _mapUint64Sfixed64 = source._mapUint64Sfixed64
  2599. _mapUint64Float = source._mapUint64Float
  2600. _mapUint64Double = source._mapUint64Double
  2601. _mapUint64Bool = source._mapUint64Bool
  2602. _mapUint64String = source._mapUint64String
  2603. _mapUint64Bytes = source._mapUint64Bytes
  2604. _mapUint64AnEnum = source._mapUint64AnEnum
  2605. _mapUint64Message = source._mapUint64Message
  2606. _mapSint32Int32 = source._mapSint32Int32
  2607. _mapSint32Int64 = source._mapSint32Int64
  2608. _mapSint32Uint32 = source._mapSint32Uint32
  2609. _mapSint32Uint64 = source._mapSint32Uint64
  2610. _mapSint32Sint32 = source._mapSint32Sint32
  2611. _mapSint32Sint64 = source._mapSint32Sint64
  2612. _mapSint32Fixed32 = source._mapSint32Fixed32
  2613. _mapSint32Fixed64 = source._mapSint32Fixed64
  2614. _mapSint32Sfixed32 = source._mapSint32Sfixed32
  2615. _mapSint32Sfixed64 = source._mapSint32Sfixed64
  2616. _mapSint32Float = source._mapSint32Float
  2617. _mapSint32Double = source._mapSint32Double
  2618. _mapSint32Bool = source._mapSint32Bool
  2619. _mapSint32String = source._mapSint32String
  2620. _mapSint32Bytes = source._mapSint32Bytes
  2621. _mapSint32AnEnum = source._mapSint32AnEnum
  2622. _mapSint32Message = source._mapSint32Message
  2623. _mapSint64Int32 = source._mapSint64Int32
  2624. _mapSint64Int64 = source._mapSint64Int64
  2625. _mapSint64Uint32 = source._mapSint64Uint32
  2626. _mapSint64Uint64 = source._mapSint64Uint64
  2627. _mapSint64Sint32 = source._mapSint64Sint32
  2628. _mapSint64Sint64 = source._mapSint64Sint64
  2629. _mapSint64Fixed32 = source._mapSint64Fixed32
  2630. _mapSint64Fixed64 = source._mapSint64Fixed64
  2631. _mapSint64Sfixed32 = source._mapSint64Sfixed32
  2632. _mapSint64Sfixed64 = source._mapSint64Sfixed64
  2633. _mapSint64Float = source._mapSint64Float
  2634. _mapSint64Double = source._mapSint64Double
  2635. _mapSint64Bool = source._mapSint64Bool
  2636. _mapSint64String = source._mapSint64String
  2637. _mapSint64Bytes = source._mapSint64Bytes
  2638. _mapSint64AnEnum = source._mapSint64AnEnum
  2639. _mapSint64Message = source._mapSint64Message
  2640. _mapFixed32Int32 = source._mapFixed32Int32
  2641. _mapFixed32Int64 = source._mapFixed32Int64
  2642. _mapFixed32Uint32 = source._mapFixed32Uint32
  2643. _mapFixed32Uint64 = source._mapFixed32Uint64
  2644. _mapFixed32Sint32 = source._mapFixed32Sint32
  2645. _mapFixed32Sint64 = source._mapFixed32Sint64
  2646. _mapFixed32Fixed32 = source._mapFixed32Fixed32
  2647. _mapFixed32Fixed64 = source._mapFixed32Fixed64
  2648. _mapFixed32Sfixed32 = source._mapFixed32Sfixed32
  2649. _mapFixed32Sfixed64 = source._mapFixed32Sfixed64
  2650. _mapFixed32Float = source._mapFixed32Float
  2651. _mapFixed32Double = source._mapFixed32Double
  2652. _mapFixed32Bool = source._mapFixed32Bool
  2653. _mapFixed32String = source._mapFixed32String
  2654. _mapFixed32Bytes = source._mapFixed32Bytes
  2655. _mapFixed32AnEnum = source._mapFixed32AnEnum
  2656. _mapFixed32Message = source._mapFixed32Message
  2657. _mapFixed64Int32 = source._mapFixed64Int32
  2658. _mapFixed64Int64 = source._mapFixed64Int64
  2659. _mapFixed64Uint32 = source._mapFixed64Uint32
  2660. _mapFixed64Uint64 = source._mapFixed64Uint64
  2661. _mapFixed64Sint32 = source._mapFixed64Sint32
  2662. _mapFixed64Sint64 = source._mapFixed64Sint64
  2663. _mapFixed64Fixed32 = source._mapFixed64Fixed32
  2664. _mapFixed64Fixed64 = source._mapFixed64Fixed64
  2665. _mapFixed64Sfixed32 = source._mapFixed64Sfixed32
  2666. _mapFixed64Sfixed64 = source._mapFixed64Sfixed64
  2667. _mapFixed64Float = source._mapFixed64Float
  2668. _mapFixed64Double = source._mapFixed64Double
  2669. _mapFixed64Bool = source._mapFixed64Bool
  2670. _mapFixed64String = source._mapFixed64String
  2671. _mapFixed64Bytes = source._mapFixed64Bytes
  2672. _mapFixed64AnEnum = source._mapFixed64AnEnum
  2673. _mapFixed64Message = source._mapFixed64Message
  2674. _mapSfixed32Int32 = source._mapSfixed32Int32
  2675. _mapSfixed32Int64 = source._mapSfixed32Int64
  2676. _mapSfixed32Uint32 = source._mapSfixed32Uint32
  2677. _mapSfixed32Uint64 = source._mapSfixed32Uint64
  2678. _mapSfixed32Sint32 = source._mapSfixed32Sint32
  2679. _mapSfixed32Sint64 = source._mapSfixed32Sint64
  2680. _mapSfixed32Fixed32 = source._mapSfixed32Fixed32
  2681. _mapSfixed32Fixed64 = source._mapSfixed32Fixed64
  2682. _mapSfixed32Sfixed32 = source._mapSfixed32Sfixed32
  2683. _mapSfixed32Sfixed64 = source._mapSfixed32Sfixed64
  2684. _mapSfixed32Float = source._mapSfixed32Float
  2685. _mapSfixed32Double = source._mapSfixed32Double
  2686. _mapSfixed32Bool = source._mapSfixed32Bool
  2687. _mapSfixed32String = source._mapSfixed32String
  2688. _mapSfixed32Bytes = source._mapSfixed32Bytes
  2689. _mapSfixed32AnEnum = source._mapSfixed32AnEnum
  2690. _mapSfixed32Message = source._mapSfixed32Message
  2691. _mapSfixed64Int32 = source._mapSfixed64Int32
  2692. _mapSfixed64Int64 = source._mapSfixed64Int64
  2693. _mapSfixed64Uint32 = source._mapSfixed64Uint32
  2694. _mapSfixed64Uint64 = source._mapSfixed64Uint64
  2695. _mapSfixed64Sint32 = source._mapSfixed64Sint32
  2696. _mapSfixed64Sint64 = source._mapSfixed64Sint64
  2697. _mapSfixed64Fixed32 = source._mapSfixed64Fixed32
  2698. _mapSfixed64Fixed64 = source._mapSfixed64Fixed64
  2699. _mapSfixed64Sfixed32 = source._mapSfixed64Sfixed32
  2700. _mapSfixed64Sfixed64 = source._mapSfixed64Sfixed64
  2701. _mapSfixed64Float = source._mapSfixed64Float
  2702. _mapSfixed64Double = source._mapSfixed64Double
  2703. _mapSfixed64Bool = source._mapSfixed64Bool
  2704. _mapSfixed64String = source._mapSfixed64String
  2705. _mapSfixed64Bytes = source._mapSfixed64Bytes
  2706. _mapSfixed64AnEnum = source._mapSfixed64AnEnum
  2707. _mapSfixed64Message = source._mapSfixed64Message
  2708. _mapBoolInt32 = source._mapBoolInt32
  2709. _mapBoolInt64 = source._mapBoolInt64
  2710. _mapBoolUint32 = source._mapBoolUint32
  2711. _mapBoolUint64 = source._mapBoolUint64
  2712. _mapBoolSint32 = source._mapBoolSint32
  2713. _mapBoolSint64 = source._mapBoolSint64
  2714. _mapBoolFixed32 = source._mapBoolFixed32
  2715. _mapBoolFixed64 = source._mapBoolFixed64
  2716. _mapBoolSfixed32 = source._mapBoolSfixed32
  2717. _mapBoolSfixed64 = source._mapBoolSfixed64
  2718. _mapBoolFloat = source._mapBoolFloat
  2719. _mapBoolDouble = source._mapBoolDouble
  2720. _mapBoolBool = source._mapBoolBool
  2721. _mapBoolString = source._mapBoolString
  2722. _mapBoolBytes = source._mapBoolBytes
  2723. _mapBoolAnEnum = source._mapBoolAnEnum
  2724. _mapBoolMessage = source._mapBoolMessage
  2725. _wktAny = source._wktAny
  2726. _wktApi = source._wktApi
  2727. _wktDuration = source._wktDuration
  2728. _wktEmpty = source._wktEmpty
  2729. _wktFieldMask = source._wktFieldMask
  2730. _wktSourceContext = source._wktSourceContext
  2731. _wktStruct = source._wktStruct
  2732. _wktTimestamp = source._wktTimestamp
  2733. _wktType = source._wktType
  2734. _wktDoubleValue = source._wktDoubleValue
  2735. _wktFloatValue = source._wktFloatValue
  2736. _wktInt64Value = source._wktInt64Value
  2737. _wktUint64Value = source._wktUint64Value
  2738. _wktInt32Value = source._wktInt32Value
  2739. _wktUint32Value = source._wktUint32Value
  2740. _wktBoolValue = source._wktBoolValue
  2741. _wktStringValue = source._wktStringValue
  2742. _wktBytesValue = source._wktBytesValue
  2743. _singularMessageSet = source._singularMessageSet
  2744. _repeatedMessageSet = source._repeatedMessageSet
  2745. }
  2746. }
  2747. fileprivate mutating func _uniqueStorage() -> _StorageClass {
  2748. if !isKnownUniquelyReferenced(&_storage) {
  2749. _storage = _StorageClass(copying: _storage)
  2750. }
  2751. return _storage
  2752. }
  2753. public var isInitialized: Bool {
  2754. if !_protobuf_extensionFieldValues.isInitialized {return false}
  2755. return withExtendedLifetime(_storage) { (_storage: _StorageClass) in
  2756. if let v = _storage._singularMessage, !v.isInitialized {return false}
  2757. if !SwiftProtobuf.Internal.areAllInitialized(_storage._repeatedMessage) {return false}
  2758. if let v = _storage._o, !v.isInitialized {return false}
  2759. if !SwiftProtobuf.Internal.areAllInitialized(_storage._mapInt32Message) {return false}
  2760. if !SwiftProtobuf.Internal.areAllInitialized(_storage._mapInt64Message) {return false}
  2761. if !SwiftProtobuf.Internal.areAllInitialized(_storage._mapUint32Message) {return false}
  2762. if !SwiftProtobuf.Internal.areAllInitialized(_storage._mapUint64Message) {return false}
  2763. if !SwiftProtobuf.Internal.areAllInitialized(_storage._mapSint32Message) {return false}
  2764. if !SwiftProtobuf.Internal.areAllInitialized(_storage._mapSint64Message) {return false}
  2765. if !SwiftProtobuf.Internal.areAllInitialized(_storage._mapFixed32Message) {return false}
  2766. if !SwiftProtobuf.Internal.areAllInitialized(_storage._mapFixed64Message) {return false}
  2767. if !SwiftProtobuf.Internal.areAllInitialized(_storage._mapSfixed32Message) {return false}
  2768. if !SwiftProtobuf.Internal.areAllInitialized(_storage._mapSfixed64Message) {return false}
  2769. if !SwiftProtobuf.Internal.areAllInitialized(_storage._mapBoolMessage) {return false}
  2770. if let v = _storage._singularMessageSet, !v.isInitialized {return false}
  2771. if !SwiftProtobuf.Internal.areAllInitialized(_storage._repeatedMessageSet) {return false}
  2772. return true
  2773. }
  2774. }
  2775. public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
  2776. _ = _uniqueStorage()
  2777. try withExtendedLifetime(_storage) { (_storage: _StorageClass) in
  2778. while let fieldNumber = try decoder.nextFieldNumber() {
  2779. // The use of inline closures is to circumvent an issue where the compiler
  2780. // allocates stack space for every case branch when no optimizations are
  2781. // enabled. https://github.com/apple/swift-protobuf/issues/1034
  2782. switch fieldNumber {
  2783. case 1: try { try decoder.decodeSingularInt32Field(value: &_storage._singularInt32) }()
  2784. case 2: try { try decoder.decodeSingularInt64Field(value: &_storage._singularInt64) }()
  2785. case 3: try { try decoder.decodeSingularUInt32Field(value: &_storage._singularUint32) }()
  2786. case 4: try { try decoder.decodeSingularUInt64Field(value: &_storage._singularUint64) }()
  2787. case 5: try { try decoder.decodeSingularSInt32Field(value: &_storage._singularSint32) }()
  2788. case 6: try { try decoder.decodeSingularSInt64Field(value: &_storage._singularSint64) }()
  2789. case 7: try { try decoder.decodeSingularFixed32Field(value: &_storage._singularFixed32) }()
  2790. case 8: try { try decoder.decodeSingularFixed64Field(value: &_storage._singularFixed64) }()
  2791. case 9: try { try decoder.decodeSingularSFixed32Field(value: &_storage._singularSfixed32) }()
  2792. case 10: try { try decoder.decodeSingularSFixed64Field(value: &_storage._singularSfixed64) }()
  2793. case 11: try { try decoder.decodeSingularFloatField(value: &_storage._singularFloat) }()
  2794. case 12: try { try decoder.decodeSingularDoubleField(value: &_storage._singularDouble) }()
  2795. case 13: try { try decoder.decodeSingularBoolField(value: &_storage._singularBool) }()
  2796. case 14: try { try decoder.decodeSingularStringField(value: &_storage._singularString) }()
  2797. case 15: try { try decoder.decodeSingularBytesField(value: &_storage._singularBytes) }()
  2798. case 16: try { try decoder.decodeSingularEnumField(value: &_storage._singularEnum) }()
  2799. case 17: try { try decoder.decodeSingularGroupField(value: &_storage._singularGroup) }()
  2800. case 19: try { try decoder.decodeSingularMessageField(value: &_storage._singularMessage) }()
  2801. case 31: try { try decoder.decodeRepeatedInt32Field(value: &_storage._repeatedInt32) }()
  2802. case 32: try { try decoder.decodeRepeatedInt64Field(value: &_storage._repeatedInt64) }()
  2803. case 33: try { try decoder.decodeRepeatedUInt32Field(value: &_storage._repeatedUint32) }()
  2804. case 34: try { try decoder.decodeRepeatedUInt64Field(value: &_storage._repeatedUint64) }()
  2805. case 35: try { try decoder.decodeRepeatedSInt32Field(value: &_storage._repeatedSint32) }()
  2806. case 36: try { try decoder.decodeRepeatedSInt64Field(value: &_storage._repeatedSint64) }()
  2807. case 37: try { try decoder.decodeRepeatedFixed32Field(value: &_storage._repeatedFixed32) }()
  2808. case 38: try { try decoder.decodeRepeatedFixed64Field(value: &_storage._repeatedFixed64) }()
  2809. case 39: try { try decoder.decodeRepeatedSFixed32Field(value: &_storage._repeatedSfixed32) }()
  2810. case 40: try { try decoder.decodeRepeatedSFixed64Field(value: &_storage._repeatedSfixed64) }()
  2811. case 41: try { try decoder.decodeRepeatedFloatField(value: &_storage._repeatedFloat) }()
  2812. case 42: try { try decoder.decodeRepeatedDoubleField(value: &_storage._repeatedDouble) }()
  2813. case 43: try { try decoder.decodeRepeatedBoolField(value: &_storage._repeatedBool) }()
  2814. case 44: try { try decoder.decodeRepeatedStringField(value: &_storage._repeatedString) }()
  2815. case 45: try { try decoder.decodeRepeatedBytesField(value: &_storage._repeatedBytes) }()
  2816. case 46: try { try decoder.decodeRepeatedEnumField(value: &_storage._repeatedEnum) }()
  2817. case 47: try { try decoder.decodeRepeatedGroupField(value: &_storage._repeatedGroup) }()
  2818. case 49: try { try decoder.decodeRepeatedMessageField(value: &_storage._repeatedMessage) }()
  2819. case 61: try {
  2820. var v: Int32?
  2821. try decoder.decodeSingularInt32Field(value: &v)
  2822. if let v = v {
  2823. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2824. _storage._o = .oneofInt32(v)
  2825. }
  2826. }()
  2827. case 62: try {
  2828. var v: Int64?
  2829. try decoder.decodeSingularInt64Field(value: &v)
  2830. if let v = v {
  2831. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2832. _storage._o = .oneofInt64(v)
  2833. }
  2834. }()
  2835. case 63: try {
  2836. var v: UInt32?
  2837. try decoder.decodeSingularUInt32Field(value: &v)
  2838. if let v = v {
  2839. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2840. _storage._o = .oneofUint32(v)
  2841. }
  2842. }()
  2843. case 64: try {
  2844. var v: UInt64?
  2845. try decoder.decodeSingularUInt64Field(value: &v)
  2846. if let v = v {
  2847. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2848. _storage._o = .oneofUint64(v)
  2849. }
  2850. }()
  2851. case 65: try {
  2852. var v: Int32?
  2853. try decoder.decodeSingularSInt32Field(value: &v)
  2854. if let v = v {
  2855. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2856. _storage._o = .oneofSint32(v)
  2857. }
  2858. }()
  2859. case 66: try {
  2860. var v: Int64?
  2861. try decoder.decodeSingularSInt64Field(value: &v)
  2862. if let v = v {
  2863. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2864. _storage._o = .oneofSint64(v)
  2865. }
  2866. }()
  2867. case 67: try {
  2868. var v: UInt32?
  2869. try decoder.decodeSingularFixed32Field(value: &v)
  2870. if let v = v {
  2871. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2872. _storage._o = .oneofFixed32(v)
  2873. }
  2874. }()
  2875. case 68: try {
  2876. var v: UInt64?
  2877. try decoder.decodeSingularFixed64Field(value: &v)
  2878. if let v = v {
  2879. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2880. _storage._o = .oneofFixed64(v)
  2881. }
  2882. }()
  2883. case 69: try {
  2884. var v: Int32?
  2885. try decoder.decodeSingularSFixed32Field(value: &v)
  2886. if let v = v {
  2887. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2888. _storage._o = .oneofSfixed32(v)
  2889. }
  2890. }()
  2891. case 70: try {
  2892. var v: Int64?
  2893. try decoder.decodeSingularSFixed64Field(value: &v)
  2894. if let v = v {
  2895. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2896. _storage._o = .oneofSfixed64(v)
  2897. }
  2898. }()
  2899. case 71: try {
  2900. var v: Float?
  2901. try decoder.decodeSingularFloatField(value: &v)
  2902. if let v = v {
  2903. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2904. _storage._o = .oneofFloat(v)
  2905. }
  2906. }()
  2907. case 72: try {
  2908. var v: Double?
  2909. try decoder.decodeSingularDoubleField(value: &v)
  2910. if let v = v {
  2911. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2912. _storage._o = .oneofDouble(v)
  2913. }
  2914. }()
  2915. case 73: try {
  2916. var v: Bool?
  2917. try decoder.decodeSingularBoolField(value: &v)
  2918. if let v = v {
  2919. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2920. _storage._o = .oneofBool(v)
  2921. }
  2922. }()
  2923. case 74: try {
  2924. var v: String?
  2925. try decoder.decodeSingularStringField(value: &v)
  2926. if let v = v {
  2927. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2928. _storage._o = .oneofString(v)
  2929. }
  2930. }()
  2931. case 75: try {
  2932. var v: Data?
  2933. try decoder.decodeSingularBytesField(value: &v)
  2934. if let v = v {
  2935. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2936. _storage._o = .oneofBytes(v)
  2937. }
  2938. }()
  2939. case 76: try {
  2940. var v: SwiftProtoTesting_Fuzz_AnEnum?
  2941. try decoder.decodeSingularEnumField(value: &v)
  2942. if let v = v {
  2943. if _storage._o != nil {try decoder.handleConflictingOneOf()}
  2944. _storage._o = .oneofEnum(v)
  2945. }
  2946. }()
  2947. case 77: try {
  2948. var v: SwiftProtoTesting_Fuzz_Message.OneofGroup?
  2949. var hadOneofValue = false
  2950. if let current = _storage._o {
  2951. hadOneofValue = true
  2952. if case .oneofGroup(let m) = current {v = m}
  2953. }
  2954. try decoder.decodeSingularGroupField(value: &v)
  2955. if let v = v {
  2956. if hadOneofValue {try decoder.handleConflictingOneOf()}
  2957. _storage._o = .oneofGroup(v)
  2958. }
  2959. }()
  2960. case 79: try {
  2961. var v: SwiftProtoTesting_Fuzz_Message?
  2962. var hadOneofValue = false
  2963. if let current = _storage._o {
  2964. hadOneofValue = true
  2965. if case .oneofMessage(let m) = current {v = m}
  2966. }
  2967. try decoder.decodeSingularMessageField(value: &v)
  2968. if let v = v {
  2969. if hadOneofValue {try decoder.handleConflictingOneOf()}
  2970. _storage._o = .oneofMessage(v)
  2971. }
  2972. }()
  2973. case 81: try { try decoder.decodeRepeatedInt32Field(value: &_storage._repeatedPackedInt32) }()
  2974. case 82: try { try decoder.decodeRepeatedInt64Field(value: &_storage._repeatedPackedInt64) }()
  2975. case 83: try { try decoder.decodeRepeatedUInt32Field(value: &_storage._repeatedPackedUint32) }()
  2976. case 84: try { try decoder.decodeRepeatedUInt64Field(value: &_storage._repeatedPackedUint64) }()
  2977. case 85: try { try decoder.decodeRepeatedSInt32Field(value: &_storage._repeatedPackedSint32) }()
  2978. case 86: try { try decoder.decodeRepeatedSInt64Field(value: &_storage._repeatedPackedSint64) }()
  2979. case 87: try { try decoder.decodeRepeatedFixed32Field(value: &_storage._repeatedPackedFixed32) }()
  2980. case 88: try { try decoder.decodeRepeatedFixed64Field(value: &_storage._repeatedPackedFixed64) }()
  2981. case 89: try { try decoder.decodeRepeatedSFixed32Field(value: &_storage._repeatedPackedSfixed32) }()
  2982. case 90: try { try decoder.decodeRepeatedSFixed64Field(value: &_storage._repeatedPackedSfixed64) }()
  2983. case 91: try { try decoder.decodeRepeatedFloatField(value: &_storage._repeatedPackedFloat) }()
  2984. case 92: try { try decoder.decodeRepeatedDoubleField(value: &_storage._repeatedPackedDouble) }()
  2985. case 93: try { try decoder.decodeRepeatedBoolField(value: &_storage._repeatedPackedBool) }()
  2986. case 94: try { try decoder.decodeRepeatedEnumField(value: &_storage._repeatedPackedEnum) }()
  2987. case 100: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufInt32>.self, value: &_storage._mapInt32Int32) }()
  2988. case 101: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufInt64>.self, value: &_storage._mapInt32Int64) }()
  2989. case 102: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufUInt32>.self, value: &_storage._mapInt32Uint32) }()
  2990. case 103: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufUInt64>.self, value: &_storage._mapInt32Uint64) }()
  2991. case 104: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufSInt32>.self, value: &_storage._mapInt32Sint32) }()
  2992. case 105: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufSInt64>.self, value: &_storage._mapInt32Sint64) }()
  2993. case 106: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufFixed32>.self, value: &_storage._mapInt32Fixed32) }()
  2994. case 107: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufFixed64>.self, value: &_storage._mapInt32Fixed64) }()
  2995. case 108: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufSFixed32>.self, value: &_storage._mapInt32Sfixed32) }()
  2996. case 109: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufSFixed64>.self, value: &_storage._mapInt32Sfixed64) }()
  2997. case 110: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufFloat>.self, value: &_storage._mapInt32Float) }()
  2998. case 111: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufDouble>.self, value: &_storage._mapInt32Double) }()
  2999. case 112: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufBool>.self, value: &_storage._mapInt32Bool) }()
  3000. case 113: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufString>.self, value: &_storage._mapInt32String) }()
  3001. case 114: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufBytes>.self, value: &_storage._mapInt32Bytes) }()
  3002. case 115: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufInt32,SwiftProtoTesting_Fuzz_AnEnum>.self, value: &_storage._mapInt32AnEnum) }()
  3003. case 116: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufInt32,SwiftProtoTesting_Fuzz_Message>.self, value: &_storage._mapInt32Message) }()
  3004. case 117: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufInt32>.self, value: &_storage._mapInt64Int32) }()
  3005. case 118: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufInt64>.self, value: &_storage._mapInt64Int64) }()
  3006. case 119: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufUInt32>.self, value: &_storage._mapInt64Uint32) }()
  3007. case 120: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufUInt64>.self, value: &_storage._mapInt64Uint64) }()
  3008. case 121: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufSInt32>.self, value: &_storage._mapInt64Sint32) }()
  3009. case 122: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufSInt64>.self, value: &_storage._mapInt64Sint64) }()
  3010. case 123: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufFixed32>.self, value: &_storage._mapInt64Fixed32) }()
  3011. case 124: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufFixed64>.self, value: &_storage._mapInt64Fixed64) }()
  3012. case 125: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufSFixed32>.self, value: &_storage._mapInt64Sfixed32) }()
  3013. case 126: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufSFixed64>.self, value: &_storage._mapInt64Sfixed64) }()
  3014. case 127: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufFloat>.self, value: &_storage._mapInt64Float) }()
  3015. case 128: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufDouble>.self, value: &_storage._mapInt64Double) }()
  3016. case 129: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufBool>.self, value: &_storage._mapInt64Bool) }()
  3017. case 130: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufString>.self, value: &_storage._mapInt64String) }()
  3018. case 131: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufBytes>.self, value: &_storage._mapInt64Bytes) }()
  3019. case 132: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufInt64,SwiftProtoTesting_Fuzz_AnEnum>.self, value: &_storage._mapInt64AnEnum) }()
  3020. case 133: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufInt64,SwiftProtoTesting_Fuzz_Message>.self, value: &_storage._mapInt64Message) }()
  3021. case 134: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufInt32>.self, value: &_storage._mapUint32Int32) }()
  3022. case 135: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufInt64>.self, value: &_storage._mapUint32Int64) }()
  3023. case 136: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufUInt32>.self, value: &_storage._mapUint32Uint32) }()
  3024. case 137: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufUInt64>.self, value: &_storage._mapUint32Uint64) }()
  3025. case 138: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufSInt32>.self, value: &_storage._mapUint32Sint32) }()
  3026. case 139: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufSInt64>.self, value: &_storage._mapUint32Sint64) }()
  3027. case 140: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufFixed32>.self, value: &_storage._mapUint32Fixed32) }()
  3028. case 141: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufFixed64>.self, value: &_storage._mapUint32Fixed64) }()
  3029. case 142: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufSFixed32>.self, value: &_storage._mapUint32Sfixed32) }()
  3030. case 143: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufSFixed64>.self, value: &_storage._mapUint32Sfixed64) }()
  3031. case 144: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufFloat>.self, value: &_storage._mapUint32Float) }()
  3032. case 145: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufDouble>.self, value: &_storage._mapUint32Double) }()
  3033. case 146: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufBool>.self, value: &_storage._mapUint32Bool) }()
  3034. case 147: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufString>.self, value: &_storage._mapUint32String) }()
  3035. case 148: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufBytes>.self, value: &_storage._mapUint32Bytes) }()
  3036. case 149: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufUInt32,SwiftProtoTesting_Fuzz_AnEnum>.self, value: &_storage._mapUint32AnEnum) }()
  3037. case 150: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufUInt32,SwiftProtoTesting_Fuzz_Message>.self, value: &_storage._mapUint32Message) }()
  3038. case 151: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufInt32>.self, value: &_storage._mapUint64Int32) }()
  3039. case 152: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufInt64>.self, value: &_storage._mapUint64Int64) }()
  3040. case 153: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufUInt32>.self, value: &_storage._mapUint64Uint32) }()
  3041. case 154: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufUInt64>.self, value: &_storage._mapUint64Uint64) }()
  3042. case 155: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufSInt32>.self, value: &_storage._mapUint64Sint32) }()
  3043. case 156: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufSInt64>.self, value: &_storage._mapUint64Sint64) }()
  3044. case 157: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufFixed32>.self, value: &_storage._mapUint64Fixed32) }()
  3045. case 158: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufFixed64>.self, value: &_storage._mapUint64Fixed64) }()
  3046. case 159: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufSFixed32>.self, value: &_storage._mapUint64Sfixed32) }()
  3047. case 160: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufSFixed64>.self, value: &_storage._mapUint64Sfixed64) }()
  3048. case 161: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufFloat>.self, value: &_storage._mapUint64Float) }()
  3049. case 162: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufDouble>.self, value: &_storage._mapUint64Double) }()
  3050. case 163: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufBool>.self, value: &_storage._mapUint64Bool) }()
  3051. case 164: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufString>.self, value: &_storage._mapUint64String) }()
  3052. case 165: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufBytes>.self, value: &_storage._mapUint64Bytes) }()
  3053. case 166: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufUInt64,SwiftProtoTesting_Fuzz_AnEnum>.self, value: &_storage._mapUint64AnEnum) }()
  3054. case 167: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufUInt64,SwiftProtoTesting_Fuzz_Message>.self, value: &_storage._mapUint64Message) }()
  3055. case 168: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufInt32>.self, value: &_storage._mapSint32Int32) }()
  3056. case 169: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufInt64>.self, value: &_storage._mapSint32Int64) }()
  3057. case 170: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufUInt32>.self, value: &_storage._mapSint32Uint32) }()
  3058. case 171: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufUInt64>.self, value: &_storage._mapSint32Uint64) }()
  3059. case 172: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufSInt32>.self, value: &_storage._mapSint32Sint32) }()
  3060. case 173: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufSInt64>.self, value: &_storage._mapSint32Sint64) }()
  3061. case 174: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufFixed32>.self, value: &_storage._mapSint32Fixed32) }()
  3062. case 175: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufFixed64>.self, value: &_storage._mapSint32Fixed64) }()
  3063. case 176: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufSFixed32>.self, value: &_storage._mapSint32Sfixed32) }()
  3064. case 177: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufSFixed64>.self, value: &_storage._mapSint32Sfixed64) }()
  3065. case 178: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufFloat>.self, value: &_storage._mapSint32Float) }()
  3066. case 179: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufDouble>.self, value: &_storage._mapSint32Double) }()
  3067. case 180: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufBool>.self, value: &_storage._mapSint32Bool) }()
  3068. case 181: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufString>.self, value: &_storage._mapSint32String) }()
  3069. case 182: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufBytes>.self, value: &_storage._mapSint32Bytes) }()
  3070. case 183: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufSInt32,SwiftProtoTesting_Fuzz_AnEnum>.self, value: &_storage._mapSint32AnEnum) }()
  3071. case 184: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufSInt32,SwiftProtoTesting_Fuzz_Message>.self, value: &_storage._mapSint32Message) }()
  3072. case 185: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufInt32>.self, value: &_storage._mapSint64Int32) }()
  3073. case 186: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufInt64>.self, value: &_storage._mapSint64Int64) }()
  3074. case 187: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufUInt32>.self, value: &_storage._mapSint64Uint32) }()
  3075. case 188: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufUInt64>.self, value: &_storage._mapSint64Uint64) }()
  3076. case 189: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufSInt32>.self, value: &_storage._mapSint64Sint32) }()
  3077. case 190: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufSInt64>.self, value: &_storage._mapSint64Sint64) }()
  3078. case 191: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufFixed32>.self, value: &_storage._mapSint64Fixed32) }()
  3079. case 192: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufFixed64>.self, value: &_storage._mapSint64Fixed64) }()
  3080. case 193: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufSFixed32>.self, value: &_storage._mapSint64Sfixed32) }()
  3081. case 194: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufSFixed64>.self, value: &_storage._mapSint64Sfixed64) }()
  3082. case 195: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufFloat>.self, value: &_storage._mapSint64Float) }()
  3083. case 196: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufDouble>.self, value: &_storage._mapSint64Double) }()
  3084. case 197: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufBool>.self, value: &_storage._mapSint64Bool) }()
  3085. case 198: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufString>.self, value: &_storage._mapSint64String) }()
  3086. case 199: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufBytes>.self, value: &_storage._mapSint64Bytes) }()
  3087. case 200: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufSInt64,SwiftProtoTesting_Fuzz_AnEnum>.self, value: &_storage._mapSint64AnEnum) }()
  3088. case 201: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufSInt64,SwiftProtoTesting_Fuzz_Message>.self, value: &_storage._mapSint64Message) }()
  3089. case 202: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufInt32>.self, value: &_storage._mapFixed32Int32) }()
  3090. case 203: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufInt64>.self, value: &_storage._mapFixed32Int64) }()
  3091. case 204: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufUInt32>.self, value: &_storage._mapFixed32Uint32) }()
  3092. case 205: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufUInt64>.self, value: &_storage._mapFixed32Uint64) }()
  3093. case 206: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufSInt32>.self, value: &_storage._mapFixed32Sint32) }()
  3094. case 207: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufSInt64>.self, value: &_storage._mapFixed32Sint64) }()
  3095. case 208: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufFixed32>.self, value: &_storage._mapFixed32Fixed32) }()
  3096. case 209: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufFixed64>.self, value: &_storage._mapFixed32Fixed64) }()
  3097. case 210: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufSFixed32>.self, value: &_storage._mapFixed32Sfixed32) }()
  3098. case 211: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufSFixed64>.self, value: &_storage._mapFixed32Sfixed64) }()
  3099. case 212: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufFloat>.self, value: &_storage._mapFixed32Float) }()
  3100. case 213: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufDouble>.self, value: &_storage._mapFixed32Double) }()
  3101. case 214: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufBool>.self, value: &_storage._mapFixed32Bool) }()
  3102. case 215: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufString>.self, value: &_storage._mapFixed32String) }()
  3103. case 216: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufBytes>.self, value: &_storage._mapFixed32Bytes) }()
  3104. case 217: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufFixed32,SwiftProtoTesting_Fuzz_AnEnum>.self, value: &_storage._mapFixed32AnEnum) }()
  3105. case 218: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufFixed32,SwiftProtoTesting_Fuzz_Message>.self, value: &_storage._mapFixed32Message) }()
  3106. case 219: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufInt32>.self, value: &_storage._mapFixed64Int32) }()
  3107. case 220: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufInt64>.self, value: &_storage._mapFixed64Int64) }()
  3108. case 221: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufUInt32>.self, value: &_storage._mapFixed64Uint32) }()
  3109. case 222: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufUInt64>.self, value: &_storage._mapFixed64Uint64) }()
  3110. case 223: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufSInt32>.self, value: &_storage._mapFixed64Sint32) }()
  3111. case 224: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufSInt64>.self, value: &_storage._mapFixed64Sint64) }()
  3112. case 225: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufFixed32>.self, value: &_storage._mapFixed64Fixed32) }()
  3113. case 226: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufFixed64>.self, value: &_storage._mapFixed64Fixed64) }()
  3114. case 227: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufSFixed32>.self, value: &_storage._mapFixed64Sfixed32) }()
  3115. case 228: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufSFixed64>.self, value: &_storage._mapFixed64Sfixed64) }()
  3116. case 229: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufFloat>.self, value: &_storage._mapFixed64Float) }()
  3117. case 230: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufDouble>.self, value: &_storage._mapFixed64Double) }()
  3118. case 231: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufBool>.self, value: &_storage._mapFixed64Bool) }()
  3119. case 232: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufString>.self, value: &_storage._mapFixed64String) }()
  3120. case 233: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufBytes>.self, value: &_storage._mapFixed64Bytes) }()
  3121. case 234: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufFixed64,SwiftProtoTesting_Fuzz_AnEnum>.self, value: &_storage._mapFixed64AnEnum) }()
  3122. case 235: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufFixed64,SwiftProtoTesting_Fuzz_Message>.self, value: &_storage._mapFixed64Message) }()
  3123. case 236: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufInt32>.self, value: &_storage._mapSfixed32Int32) }()
  3124. case 237: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufInt64>.self, value: &_storage._mapSfixed32Int64) }()
  3125. case 238: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufUInt32>.self, value: &_storage._mapSfixed32Uint32) }()
  3126. case 239: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufUInt64>.self, value: &_storage._mapSfixed32Uint64) }()
  3127. case 240: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufSInt32>.self, value: &_storage._mapSfixed32Sint32) }()
  3128. case 241: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufSInt64>.self, value: &_storage._mapSfixed32Sint64) }()
  3129. case 242: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufFixed32>.self, value: &_storage._mapSfixed32Fixed32) }()
  3130. case 243: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufFixed64>.self, value: &_storage._mapSfixed32Fixed64) }()
  3131. case 244: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufSFixed32>.self, value: &_storage._mapSfixed32Sfixed32) }()
  3132. case 245: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufSFixed64>.self, value: &_storage._mapSfixed32Sfixed64) }()
  3133. case 246: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufFloat>.self, value: &_storage._mapSfixed32Float) }()
  3134. case 247: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufDouble>.self, value: &_storage._mapSfixed32Double) }()
  3135. case 248: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufBool>.self, value: &_storage._mapSfixed32Bool) }()
  3136. case 249: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufString>.self, value: &_storage._mapSfixed32String) }()
  3137. case 250: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufBytes>.self, value: &_storage._mapSfixed32Bytes) }()
  3138. case 251: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtoTesting_Fuzz_AnEnum>.self, value: &_storage._mapSfixed32AnEnum) }()
  3139. case 252: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtoTesting_Fuzz_Message>.self, value: &_storage._mapSfixed32Message) }()
  3140. case 253: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufInt32>.self, value: &_storage._mapSfixed64Int32) }()
  3141. case 254: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufInt64>.self, value: &_storage._mapSfixed64Int64) }()
  3142. case 255: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufUInt32>.self, value: &_storage._mapSfixed64Uint32) }()
  3143. case 256: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufUInt64>.self, value: &_storage._mapSfixed64Uint64) }()
  3144. case 257: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufSInt32>.self, value: &_storage._mapSfixed64Sint32) }()
  3145. case 258: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufSInt64>.self, value: &_storage._mapSfixed64Sint64) }()
  3146. case 259: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufFixed32>.self, value: &_storage._mapSfixed64Fixed32) }()
  3147. case 260: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufFixed64>.self, value: &_storage._mapSfixed64Fixed64) }()
  3148. case 261: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufSFixed32>.self, value: &_storage._mapSfixed64Sfixed32) }()
  3149. case 262: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufSFixed64>.self, value: &_storage._mapSfixed64Sfixed64) }()
  3150. case 263: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufFloat>.self, value: &_storage._mapSfixed64Float) }()
  3151. case 264: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufDouble>.self, value: &_storage._mapSfixed64Double) }()
  3152. case 265: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufBool>.self, value: &_storage._mapSfixed64Bool) }()
  3153. case 266: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufString>.self, value: &_storage._mapSfixed64String) }()
  3154. case 267: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufBytes>.self, value: &_storage._mapSfixed64Bytes) }()
  3155. case 268: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtoTesting_Fuzz_AnEnum>.self, value: &_storage._mapSfixed64AnEnum) }()
  3156. case 269: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtoTesting_Fuzz_Message>.self, value: &_storage._mapSfixed64Message) }()
  3157. case 270: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufInt32>.self, value: &_storage._mapBoolInt32) }()
  3158. case 271: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufInt64>.self, value: &_storage._mapBoolInt64) }()
  3159. case 272: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufUInt32>.self, value: &_storage._mapBoolUint32) }()
  3160. case 273: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufUInt64>.self, value: &_storage._mapBoolUint64) }()
  3161. case 274: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufSInt32>.self, value: &_storage._mapBoolSint32) }()
  3162. case 275: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufSInt64>.self, value: &_storage._mapBoolSint64) }()
  3163. case 276: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufFixed32>.self, value: &_storage._mapBoolFixed32) }()
  3164. case 277: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufFixed64>.self, value: &_storage._mapBoolFixed64) }()
  3165. case 278: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufSFixed32>.self, value: &_storage._mapBoolSfixed32) }()
  3166. case 279: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufSFixed64>.self, value: &_storage._mapBoolSfixed64) }()
  3167. case 280: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufFloat>.self, value: &_storage._mapBoolFloat) }()
  3168. case 281: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufDouble>.self, value: &_storage._mapBoolDouble) }()
  3169. case 282: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufBool>.self, value: &_storage._mapBoolBool) }()
  3170. case 283: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufString>.self, value: &_storage._mapBoolString) }()
  3171. case 284: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufBytes>.self, value: &_storage._mapBoolBytes) }()
  3172. case 285: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufBool,SwiftProtoTesting_Fuzz_AnEnum>.self, value: &_storage._mapBoolAnEnum) }()
  3173. case 286: try { try decoder.decodeMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufBool,SwiftProtoTesting_Fuzz_Message>.self, value: &_storage._mapBoolMessage) }()
  3174. case 500: try { try decoder.decodeSingularMessageField(value: &_storage._wktAny) }()
  3175. case 501: try { try decoder.decodeSingularMessageField(value: &_storage._wktApi) }()
  3176. case 502: try { try decoder.decodeSingularMessageField(value: &_storage._wktDuration) }()
  3177. case 503: try { try decoder.decodeSingularMessageField(value: &_storage._wktEmpty) }()
  3178. case 504: try { try decoder.decodeSingularMessageField(value: &_storage._wktFieldMask) }()
  3179. case 505: try { try decoder.decodeSingularMessageField(value: &_storage._wktSourceContext) }()
  3180. case 506: try { try decoder.decodeSingularMessageField(value: &_storage._wktStruct) }()
  3181. case 507: try { try decoder.decodeSingularMessageField(value: &_storage._wktTimestamp) }()
  3182. case 508: try { try decoder.decodeSingularMessageField(value: &_storage._wktType) }()
  3183. case 509: try { try decoder.decodeSingularMessageField(value: &_storage._wktDoubleValue) }()
  3184. case 510: try { try decoder.decodeSingularMessageField(value: &_storage._wktFloatValue) }()
  3185. case 511: try { try decoder.decodeSingularMessageField(value: &_storage._wktInt64Value) }()
  3186. case 512: try { try decoder.decodeSingularMessageField(value: &_storage._wktUint64Value) }()
  3187. case 513: try { try decoder.decodeSingularMessageField(value: &_storage._wktInt32Value) }()
  3188. case 514: try { try decoder.decodeSingularMessageField(value: &_storage._wktUint32Value) }()
  3189. case 515: try { try decoder.decodeSingularMessageField(value: &_storage._wktBoolValue) }()
  3190. case 516: try { try decoder.decodeSingularMessageField(value: &_storage._wktStringValue) }()
  3191. case 517: try { try decoder.decodeSingularMessageField(value: &_storage._wktBytesValue) }()
  3192. case 600: try { try decoder.decodeSingularMessageField(value: &_storage._singularMessageSet) }()
  3193. case 601: try { try decoder.decodeRepeatedMessageField(value: &_storage._repeatedMessageSet) }()
  3194. case 1000..<2001:
  3195. try { try decoder.decodeExtensionField(values: &_protobuf_extensionFieldValues, messageType: SwiftProtoTesting_Fuzz_Message.self, fieldNumber: fieldNumber) }()
  3196. default: break
  3197. }
  3198. }
  3199. }
  3200. }
  3201. public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
  3202. try withExtendedLifetime(_storage) { (_storage: _StorageClass) in
  3203. // The use of inline closures is to circumvent an issue where the compiler
  3204. // allocates stack space for every if/case branch local when no optimizations
  3205. // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
  3206. // https://github.com/apple/swift-protobuf/issues/1182
  3207. try { if let v = _storage._singularInt32 {
  3208. try visitor.visitSingularInt32Field(value: v, fieldNumber: 1)
  3209. } }()
  3210. try { if let v = _storage._singularInt64 {
  3211. try visitor.visitSingularInt64Field(value: v, fieldNumber: 2)
  3212. } }()
  3213. try { if let v = _storage._singularUint32 {
  3214. try visitor.visitSingularUInt32Field(value: v, fieldNumber: 3)
  3215. } }()
  3216. try { if let v = _storage._singularUint64 {
  3217. try visitor.visitSingularUInt64Field(value: v, fieldNumber: 4)
  3218. } }()
  3219. try { if let v = _storage._singularSint32 {
  3220. try visitor.visitSingularSInt32Field(value: v, fieldNumber: 5)
  3221. } }()
  3222. try { if let v = _storage._singularSint64 {
  3223. try visitor.visitSingularSInt64Field(value: v, fieldNumber: 6)
  3224. } }()
  3225. try { if let v = _storage._singularFixed32 {
  3226. try visitor.visitSingularFixed32Field(value: v, fieldNumber: 7)
  3227. } }()
  3228. try { if let v = _storage._singularFixed64 {
  3229. try visitor.visitSingularFixed64Field(value: v, fieldNumber: 8)
  3230. } }()
  3231. try { if let v = _storage._singularSfixed32 {
  3232. try visitor.visitSingularSFixed32Field(value: v, fieldNumber: 9)
  3233. } }()
  3234. try { if let v = _storage._singularSfixed64 {
  3235. try visitor.visitSingularSFixed64Field(value: v, fieldNumber: 10)
  3236. } }()
  3237. try { if let v = _storage._singularFloat {
  3238. try visitor.visitSingularFloatField(value: v, fieldNumber: 11)
  3239. } }()
  3240. try { if let v = _storage._singularDouble {
  3241. try visitor.visitSingularDoubleField(value: v, fieldNumber: 12)
  3242. } }()
  3243. try { if let v = _storage._singularBool {
  3244. try visitor.visitSingularBoolField(value: v, fieldNumber: 13)
  3245. } }()
  3246. try { if let v = _storage._singularString {
  3247. try visitor.visitSingularStringField(value: v, fieldNumber: 14)
  3248. } }()
  3249. try { if let v = _storage._singularBytes {
  3250. try visitor.visitSingularBytesField(value: v, fieldNumber: 15)
  3251. } }()
  3252. try { if let v = _storage._singularEnum {
  3253. try visitor.visitSingularEnumField(value: v, fieldNumber: 16)
  3254. } }()
  3255. try { if let v = _storage._singularGroup {
  3256. try visitor.visitSingularGroupField(value: v, fieldNumber: 17)
  3257. } }()
  3258. try { if let v = _storage._singularMessage {
  3259. try visitor.visitSingularMessageField(value: v, fieldNumber: 19)
  3260. } }()
  3261. if !_storage._repeatedInt32.isEmpty {
  3262. try visitor.visitRepeatedInt32Field(value: _storage._repeatedInt32, fieldNumber: 31)
  3263. }
  3264. if !_storage._repeatedInt64.isEmpty {
  3265. try visitor.visitRepeatedInt64Field(value: _storage._repeatedInt64, fieldNumber: 32)
  3266. }
  3267. if !_storage._repeatedUint32.isEmpty {
  3268. try visitor.visitRepeatedUInt32Field(value: _storage._repeatedUint32, fieldNumber: 33)
  3269. }
  3270. if !_storage._repeatedUint64.isEmpty {
  3271. try visitor.visitRepeatedUInt64Field(value: _storage._repeatedUint64, fieldNumber: 34)
  3272. }
  3273. if !_storage._repeatedSint32.isEmpty {
  3274. try visitor.visitRepeatedSInt32Field(value: _storage._repeatedSint32, fieldNumber: 35)
  3275. }
  3276. if !_storage._repeatedSint64.isEmpty {
  3277. try visitor.visitRepeatedSInt64Field(value: _storage._repeatedSint64, fieldNumber: 36)
  3278. }
  3279. if !_storage._repeatedFixed32.isEmpty {
  3280. try visitor.visitRepeatedFixed32Field(value: _storage._repeatedFixed32, fieldNumber: 37)
  3281. }
  3282. if !_storage._repeatedFixed64.isEmpty {
  3283. try visitor.visitRepeatedFixed64Field(value: _storage._repeatedFixed64, fieldNumber: 38)
  3284. }
  3285. if !_storage._repeatedSfixed32.isEmpty {
  3286. try visitor.visitRepeatedSFixed32Field(value: _storage._repeatedSfixed32, fieldNumber: 39)
  3287. }
  3288. if !_storage._repeatedSfixed64.isEmpty {
  3289. try visitor.visitRepeatedSFixed64Field(value: _storage._repeatedSfixed64, fieldNumber: 40)
  3290. }
  3291. if !_storage._repeatedFloat.isEmpty {
  3292. try visitor.visitRepeatedFloatField(value: _storage._repeatedFloat, fieldNumber: 41)
  3293. }
  3294. if !_storage._repeatedDouble.isEmpty {
  3295. try visitor.visitRepeatedDoubleField(value: _storage._repeatedDouble, fieldNumber: 42)
  3296. }
  3297. if !_storage._repeatedBool.isEmpty {
  3298. try visitor.visitRepeatedBoolField(value: _storage._repeatedBool, fieldNumber: 43)
  3299. }
  3300. if !_storage._repeatedString.isEmpty {
  3301. try visitor.visitRepeatedStringField(value: _storage._repeatedString, fieldNumber: 44)
  3302. }
  3303. if !_storage._repeatedBytes.isEmpty {
  3304. try visitor.visitRepeatedBytesField(value: _storage._repeatedBytes, fieldNumber: 45)
  3305. }
  3306. if !_storage._repeatedEnum.isEmpty {
  3307. try visitor.visitRepeatedEnumField(value: _storage._repeatedEnum, fieldNumber: 46)
  3308. }
  3309. if !_storage._repeatedGroup.isEmpty {
  3310. try visitor.visitRepeatedGroupField(value: _storage._repeatedGroup, fieldNumber: 47)
  3311. }
  3312. if !_storage._repeatedMessage.isEmpty {
  3313. try visitor.visitRepeatedMessageField(value: _storage._repeatedMessage, fieldNumber: 49)
  3314. }
  3315. switch _storage._o {
  3316. case .oneofInt32?: try {
  3317. guard case .oneofInt32(let v)? = _storage._o else { preconditionFailure() }
  3318. try visitor.visitSingularInt32Field(value: v, fieldNumber: 61)
  3319. }()
  3320. case .oneofInt64?: try {
  3321. guard case .oneofInt64(let v)? = _storage._o else { preconditionFailure() }
  3322. try visitor.visitSingularInt64Field(value: v, fieldNumber: 62)
  3323. }()
  3324. case .oneofUint32?: try {
  3325. guard case .oneofUint32(let v)? = _storage._o else { preconditionFailure() }
  3326. try visitor.visitSingularUInt32Field(value: v, fieldNumber: 63)
  3327. }()
  3328. case .oneofUint64?: try {
  3329. guard case .oneofUint64(let v)? = _storage._o else { preconditionFailure() }
  3330. try visitor.visitSingularUInt64Field(value: v, fieldNumber: 64)
  3331. }()
  3332. case .oneofSint32?: try {
  3333. guard case .oneofSint32(let v)? = _storage._o else { preconditionFailure() }
  3334. try visitor.visitSingularSInt32Field(value: v, fieldNumber: 65)
  3335. }()
  3336. case .oneofSint64?: try {
  3337. guard case .oneofSint64(let v)? = _storage._o else { preconditionFailure() }
  3338. try visitor.visitSingularSInt64Field(value: v, fieldNumber: 66)
  3339. }()
  3340. case .oneofFixed32?: try {
  3341. guard case .oneofFixed32(let v)? = _storage._o else { preconditionFailure() }
  3342. try visitor.visitSingularFixed32Field(value: v, fieldNumber: 67)
  3343. }()
  3344. case .oneofFixed64?: try {
  3345. guard case .oneofFixed64(let v)? = _storage._o else { preconditionFailure() }
  3346. try visitor.visitSingularFixed64Field(value: v, fieldNumber: 68)
  3347. }()
  3348. case .oneofSfixed32?: try {
  3349. guard case .oneofSfixed32(let v)? = _storage._o else { preconditionFailure() }
  3350. try visitor.visitSingularSFixed32Field(value: v, fieldNumber: 69)
  3351. }()
  3352. case .oneofSfixed64?: try {
  3353. guard case .oneofSfixed64(let v)? = _storage._o else { preconditionFailure() }
  3354. try visitor.visitSingularSFixed64Field(value: v, fieldNumber: 70)
  3355. }()
  3356. case .oneofFloat?: try {
  3357. guard case .oneofFloat(let v)? = _storage._o else { preconditionFailure() }
  3358. try visitor.visitSingularFloatField(value: v, fieldNumber: 71)
  3359. }()
  3360. case .oneofDouble?: try {
  3361. guard case .oneofDouble(let v)? = _storage._o else { preconditionFailure() }
  3362. try visitor.visitSingularDoubleField(value: v, fieldNumber: 72)
  3363. }()
  3364. case .oneofBool?: try {
  3365. guard case .oneofBool(let v)? = _storage._o else { preconditionFailure() }
  3366. try visitor.visitSingularBoolField(value: v, fieldNumber: 73)
  3367. }()
  3368. case .oneofString?: try {
  3369. guard case .oneofString(let v)? = _storage._o else { preconditionFailure() }
  3370. try visitor.visitSingularStringField(value: v, fieldNumber: 74)
  3371. }()
  3372. case .oneofBytes?: try {
  3373. guard case .oneofBytes(let v)? = _storage._o else { preconditionFailure() }
  3374. try visitor.visitSingularBytesField(value: v, fieldNumber: 75)
  3375. }()
  3376. case .oneofEnum?: try {
  3377. guard case .oneofEnum(let v)? = _storage._o else { preconditionFailure() }
  3378. try visitor.visitSingularEnumField(value: v, fieldNumber: 76)
  3379. }()
  3380. case .oneofGroup?: try {
  3381. guard case .oneofGroup(let v)? = _storage._o else { preconditionFailure() }
  3382. try visitor.visitSingularGroupField(value: v, fieldNumber: 77)
  3383. }()
  3384. case .oneofMessage?: try {
  3385. guard case .oneofMessage(let v)? = _storage._o else { preconditionFailure() }
  3386. try visitor.visitSingularMessageField(value: v, fieldNumber: 79)
  3387. }()
  3388. case nil: break
  3389. }
  3390. if !_storage._repeatedPackedInt32.isEmpty {
  3391. try visitor.visitPackedInt32Field(value: _storage._repeatedPackedInt32, fieldNumber: 81)
  3392. }
  3393. if !_storage._repeatedPackedInt64.isEmpty {
  3394. try visitor.visitPackedInt64Field(value: _storage._repeatedPackedInt64, fieldNumber: 82)
  3395. }
  3396. if !_storage._repeatedPackedUint32.isEmpty {
  3397. try visitor.visitPackedUInt32Field(value: _storage._repeatedPackedUint32, fieldNumber: 83)
  3398. }
  3399. if !_storage._repeatedPackedUint64.isEmpty {
  3400. try visitor.visitPackedUInt64Field(value: _storage._repeatedPackedUint64, fieldNumber: 84)
  3401. }
  3402. if !_storage._repeatedPackedSint32.isEmpty {
  3403. try visitor.visitPackedSInt32Field(value: _storage._repeatedPackedSint32, fieldNumber: 85)
  3404. }
  3405. if !_storage._repeatedPackedSint64.isEmpty {
  3406. try visitor.visitPackedSInt64Field(value: _storage._repeatedPackedSint64, fieldNumber: 86)
  3407. }
  3408. if !_storage._repeatedPackedFixed32.isEmpty {
  3409. try visitor.visitPackedFixed32Field(value: _storage._repeatedPackedFixed32, fieldNumber: 87)
  3410. }
  3411. if !_storage._repeatedPackedFixed64.isEmpty {
  3412. try visitor.visitPackedFixed64Field(value: _storage._repeatedPackedFixed64, fieldNumber: 88)
  3413. }
  3414. if !_storage._repeatedPackedSfixed32.isEmpty {
  3415. try visitor.visitPackedSFixed32Field(value: _storage._repeatedPackedSfixed32, fieldNumber: 89)
  3416. }
  3417. if !_storage._repeatedPackedSfixed64.isEmpty {
  3418. try visitor.visitPackedSFixed64Field(value: _storage._repeatedPackedSfixed64, fieldNumber: 90)
  3419. }
  3420. if !_storage._repeatedPackedFloat.isEmpty {
  3421. try visitor.visitPackedFloatField(value: _storage._repeatedPackedFloat, fieldNumber: 91)
  3422. }
  3423. if !_storage._repeatedPackedDouble.isEmpty {
  3424. try visitor.visitPackedDoubleField(value: _storage._repeatedPackedDouble, fieldNumber: 92)
  3425. }
  3426. if !_storage._repeatedPackedBool.isEmpty {
  3427. try visitor.visitPackedBoolField(value: _storage._repeatedPackedBool, fieldNumber: 93)
  3428. }
  3429. if !_storage._repeatedPackedEnum.isEmpty {
  3430. try visitor.visitPackedEnumField(value: _storage._repeatedPackedEnum, fieldNumber: 94)
  3431. }
  3432. if !_storage._mapInt32Int32.isEmpty {
  3433. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufInt32>.self, value: _storage._mapInt32Int32, fieldNumber: 100)
  3434. }
  3435. if !_storage._mapInt32Int64.isEmpty {
  3436. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufInt64>.self, value: _storage._mapInt32Int64, fieldNumber: 101)
  3437. }
  3438. if !_storage._mapInt32Uint32.isEmpty {
  3439. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufUInt32>.self, value: _storage._mapInt32Uint32, fieldNumber: 102)
  3440. }
  3441. if !_storage._mapInt32Uint64.isEmpty {
  3442. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufUInt64>.self, value: _storage._mapInt32Uint64, fieldNumber: 103)
  3443. }
  3444. if !_storage._mapInt32Sint32.isEmpty {
  3445. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufSInt32>.self, value: _storage._mapInt32Sint32, fieldNumber: 104)
  3446. }
  3447. if !_storage._mapInt32Sint64.isEmpty {
  3448. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufSInt64>.self, value: _storage._mapInt32Sint64, fieldNumber: 105)
  3449. }
  3450. if !_storage._mapInt32Fixed32.isEmpty {
  3451. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufFixed32>.self, value: _storage._mapInt32Fixed32, fieldNumber: 106)
  3452. }
  3453. if !_storage._mapInt32Fixed64.isEmpty {
  3454. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufFixed64>.self, value: _storage._mapInt32Fixed64, fieldNumber: 107)
  3455. }
  3456. if !_storage._mapInt32Sfixed32.isEmpty {
  3457. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufSFixed32>.self, value: _storage._mapInt32Sfixed32, fieldNumber: 108)
  3458. }
  3459. if !_storage._mapInt32Sfixed64.isEmpty {
  3460. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufSFixed64>.self, value: _storage._mapInt32Sfixed64, fieldNumber: 109)
  3461. }
  3462. if !_storage._mapInt32Float.isEmpty {
  3463. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufFloat>.self, value: _storage._mapInt32Float, fieldNumber: 110)
  3464. }
  3465. if !_storage._mapInt32Double.isEmpty {
  3466. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufDouble>.self, value: _storage._mapInt32Double, fieldNumber: 111)
  3467. }
  3468. if !_storage._mapInt32Bool.isEmpty {
  3469. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufBool>.self, value: _storage._mapInt32Bool, fieldNumber: 112)
  3470. }
  3471. if !_storage._mapInt32String.isEmpty {
  3472. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufString>.self, value: _storage._mapInt32String, fieldNumber: 113)
  3473. }
  3474. if !_storage._mapInt32Bytes.isEmpty {
  3475. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt32,SwiftProtobuf.ProtobufBytes>.self, value: _storage._mapInt32Bytes, fieldNumber: 114)
  3476. }
  3477. if !_storage._mapInt32AnEnum.isEmpty {
  3478. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufInt32,SwiftProtoTesting_Fuzz_AnEnum>.self, value: _storage._mapInt32AnEnum, fieldNumber: 115)
  3479. }
  3480. if !_storage._mapInt32Message.isEmpty {
  3481. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufInt32,SwiftProtoTesting_Fuzz_Message>.self, value: _storage._mapInt32Message, fieldNumber: 116)
  3482. }
  3483. if !_storage._mapInt64Int32.isEmpty {
  3484. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufInt32>.self, value: _storage._mapInt64Int32, fieldNumber: 117)
  3485. }
  3486. if !_storage._mapInt64Int64.isEmpty {
  3487. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufInt64>.self, value: _storage._mapInt64Int64, fieldNumber: 118)
  3488. }
  3489. if !_storage._mapInt64Uint32.isEmpty {
  3490. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufUInt32>.self, value: _storage._mapInt64Uint32, fieldNumber: 119)
  3491. }
  3492. if !_storage._mapInt64Uint64.isEmpty {
  3493. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufUInt64>.self, value: _storage._mapInt64Uint64, fieldNumber: 120)
  3494. }
  3495. if !_storage._mapInt64Sint32.isEmpty {
  3496. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufSInt32>.self, value: _storage._mapInt64Sint32, fieldNumber: 121)
  3497. }
  3498. if !_storage._mapInt64Sint64.isEmpty {
  3499. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufSInt64>.self, value: _storage._mapInt64Sint64, fieldNumber: 122)
  3500. }
  3501. if !_storage._mapInt64Fixed32.isEmpty {
  3502. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufFixed32>.self, value: _storage._mapInt64Fixed32, fieldNumber: 123)
  3503. }
  3504. if !_storage._mapInt64Fixed64.isEmpty {
  3505. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufFixed64>.self, value: _storage._mapInt64Fixed64, fieldNumber: 124)
  3506. }
  3507. if !_storage._mapInt64Sfixed32.isEmpty {
  3508. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufSFixed32>.self, value: _storage._mapInt64Sfixed32, fieldNumber: 125)
  3509. }
  3510. if !_storage._mapInt64Sfixed64.isEmpty {
  3511. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufSFixed64>.self, value: _storage._mapInt64Sfixed64, fieldNumber: 126)
  3512. }
  3513. if !_storage._mapInt64Float.isEmpty {
  3514. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufFloat>.self, value: _storage._mapInt64Float, fieldNumber: 127)
  3515. }
  3516. if !_storage._mapInt64Double.isEmpty {
  3517. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufDouble>.self, value: _storage._mapInt64Double, fieldNumber: 128)
  3518. }
  3519. if !_storage._mapInt64Bool.isEmpty {
  3520. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufBool>.self, value: _storage._mapInt64Bool, fieldNumber: 129)
  3521. }
  3522. if !_storage._mapInt64String.isEmpty {
  3523. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufString>.self, value: _storage._mapInt64String, fieldNumber: 130)
  3524. }
  3525. if !_storage._mapInt64Bytes.isEmpty {
  3526. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufInt64,SwiftProtobuf.ProtobufBytes>.self, value: _storage._mapInt64Bytes, fieldNumber: 131)
  3527. }
  3528. if !_storage._mapInt64AnEnum.isEmpty {
  3529. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufInt64,SwiftProtoTesting_Fuzz_AnEnum>.self, value: _storage._mapInt64AnEnum, fieldNumber: 132)
  3530. }
  3531. if !_storage._mapInt64Message.isEmpty {
  3532. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufInt64,SwiftProtoTesting_Fuzz_Message>.self, value: _storage._mapInt64Message, fieldNumber: 133)
  3533. }
  3534. if !_storage._mapUint32Int32.isEmpty {
  3535. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufInt32>.self, value: _storage._mapUint32Int32, fieldNumber: 134)
  3536. }
  3537. if !_storage._mapUint32Int64.isEmpty {
  3538. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufInt64>.self, value: _storage._mapUint32Int64, fieldNumber: 135)
  3539. }
  3540. if !_storage._mapUint32Uint32.isEmpty {
  3541. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufUInt32>.self, value: _storage._mapUint32Uint32, fieldNumber: 136)
  3542. }
  3543. if !_storage._mapUint32Uint64.isEmpty {
  3544. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufUInt64>.self, value: _storage._mapUint32Uint64, fieldNumber: 137)
  3545. }
  3546. if !_storage._mapUint32Sint32.isEmpty {
  3547. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufSInt32>.self, value: _storage._mapUint32Sint32, fieldNumber: 138)
  3548. }
  3549. if !_storage._mapUint32Sint64.isEmpty {
  3550. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufSInt64>.self, value: _storage._mapUint32Sint64, fieldNumber: 139)
  3551. }
  3552. if !_storage._mapUint32Fixed32.isEmpty {
  3553. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufFixed32>.self, value: _storage._mapUint32Fixed32, fieldNumber: 140)
  3554. }
  3555. if !_storage._mapUint32Fixed64.isEmpty {
  3556. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufFixed64>.self, value: _storage._mapUint32Fixed64, fieldNumber: 141)
  3557. }
  3558. if !_storage._mapUint32Sfixed32.isEmpty {
  3559. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufSFixed32>.self, value: _storage._mapUint32Sfixed32, fieldNumber: 142)
  3560. }
  3561. if !_storage._mapUint32Sfixed64.isEmpty {
  3562. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufSFixed64>.self, value: _storage._mapUint32Sfixed64, fieldNumber: 143)
  3563. }
  3564. if !_storage._mapUint32Float.isEmpty {
  3565. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufFloat>.self, value: _storage._mapUint32Float, fieldNumber: 144)
  3566. }
  3567. if !_storage._mapUint32Double.isEmpty {
  3568. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufDouble>.self, value: _storage._mapUint32Double, fieldNumber: 145)
  3569. }
  3570. if !_storage._mapUint32Bool.isEmpty {
  3571. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufBool>.self, value: _storage._mapUint32Bool, fieldNumber: 146)
  3572. }
  3573. if !_storage._mapUint32String.isEmpty {
  3574. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufString>.self, value: _storage._mapUint32String, fieldNumber: 147)
  3575. }
  3576. if !_storage._mapUint32Bytes.isEmpty {
  3577. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt32,SwiftProtobuf.ProtobufBytes>.self, value: _storage._mapUint32Bytes, fieldNumber: 148)
  3578. }
  3579. if !_storage._mapUint32AnEnum.isEmpty {
  3580. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufUInt32,SwiftProtoTesting_Fuzz_AnEnum>.self, value: _storage._mapUint32AnEnum, fieldNumber: 149)
  3581. }
  3582. if !_storage._mapUint32Message.isEmpty {
  3583. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufUInt32,SwiftProtoTesting_Fuzz_Message>.self, value: _storage._mapUint32Message, fieldNumber: 150)
  3584. }
  3585. if !_storage._mapUint64Int32.isEmpty {
  3586. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufInt32>.self, value: _storage._mapUint64Int32, fieldNumber: 151)
  3587. }
  3588. if !_storage._mapUint64Int64.isEmpty {
  3589. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufInt64>.self, value: _storage._mapUint64Int64, fieldNumber: 152)
  3590. }
  3591. if !_storage._mapUint64Uint32.isEmpty {
  3592. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufUInt32>.self, value: _storage._mapUint64Uint32, fieldNumber: 153)
  3593. }
  3594. if !_storage._mapUint64Uint64.isEmpty {
  3595. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufUInt64>.self, value: _storage._mapUint64Uint64, fieldNumber: 154)
  3596. }
  3597. if !_storage._mapUint64Sint32.isEmpty {
  3598. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufSInt32>.self, value: _storage._mapUint64Sint32, fieldNumber: 155)
  3599. }
  3600. if !_storage._mapUint64Sint64.isEmpty {
  3601. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufSInt64>.self, value: _storage._mapUint64Sint64, fieldNumber: 156)
  3602. }
  3603. if !_storage._mapUint64Fixed32.isEmpty {
  3604. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufFixed32>.self, value: _storage._mapUint64Fixed32, fieldNumber: 157)
  3605. }
  3606. if !_storage._mapUint64Fixed64.isEmpty {
  3607. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufFixed64>.self, value: _storage._mapUint64Fixed64, fieldNumber: 158)
  3608. }
  3609. if !_storage._mapUint64Sfixed32.isEmpty {
  3610. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufSFixed32>.self, value: _storage._mapUint64Sfixed32, fieldNumber: 159)
  3611. }
  3612. if !_storage._mapUint64Sfixed64.isEmpty {
  3613. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufSFixed64>.self, value: _storage._mapUint64Sfixed64, fieldNumber: 160)
  3614. }
  3615. if !_storage._mapUint64Float.isEmpty {
  3616. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufFloat>.self, value: _storage._mapUint64Float, fieldNumber: 161)
  3617. }
  3618. if !_storage._mapUint64Double.isEmpty {
  3619. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufDouble>.self, value: _storage._mapUint64Double, fieldNumber: 162)
  3620. }
  3621. if !_storage._mapUint64Bool.isEmpty {
  3622. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufBool>.self, value: _storage._mapUint64Bool, fieldNumber: 163)
  3623. }
  3624. if !_storage._mapUint64String.isEmpty {
  3625. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufString>.self, value: _storage._mapUint64String, fieldNumber: 164)
  3626. }
  3627. if !_storage._mapUint64Bytes.isEmpty {
  3628. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufUInt64,SwiftProtobuf.ProtobufBytes>.self, value: _storage._mapUint64Bytes, fieldNumber: 165)
  3629. }
  3630. if !_storage._mapUint64AnEnum.isEmpty {
  3631. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufUInt64,SwiftProtoTesting_Fuzz_AnEnum>.self, value: _storage._mapUint64AnEnum, fieldNumber: 166)
  3632. }
  3633. if !_storage._mapUint64Message.isEmpty {
  3634. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufUInt64,SwiftProtoTesting_Fuzz_Message>.self, value: _storage._mapUint64Message, fieldNumber: 167)
  3635. }
  3636. if !_storage._mapSint32Int32.isEmpty {
  3637. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufInt32>.self, value: _storage._mapSint32Int32, fieldNumber: 168)
  3638. }
  3639. if !_storage._mapSint32Int64.isEmpty {
  3640. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufInt64>.self, value: _storage._mapSint32Int64, fieldNumber: 169)
  3641. }
  3642. if !_storage._mapSint32Uint32.isEmpty {
  3643. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufUInt32>.self, value: _storage._mapSint32Uint32, fieldNumber: 170)
  3644. }
  3645. if !_storage._mapSint32Uint64.isEmpty {
  3646. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufUInt64>.self, value: _storage._mapSint32Uint64, fieldNumber: 171)
  3647. }
  3648. if !_storage._mapSint32Sint32.isEmpty {
  3649. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufSInt32>.self, value: _storage._mapSint32Sint32, fieldNumber: 172)
  3650. }
  3651. if !_storage._mapSint32Sint64.isEmpty {
  3652. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufSInt64>.self, value: _storage._mapSint32Sint64, fieldNumber: 173)
  3653. }
  3654. if !_storage._mapSint32Fixed32.isEmpty {
  3655. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufFixed32>.self, value: _storage._mapSint32Fixed32, fieldNumber: 174)
  3656. }
  3657. if !_storage._mapSint32Fixed64.isEmpty {
  3658. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufFixed64>.self, value: _storage._mapSint32Fixed64, fieldNumber: 175)
  3659. }
  3660. if !_storage._mapSint32Sfixed32.isEmpty {
  3661. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufSFixed32>.self, value: _storage._mapSint32Sfixed32, fieldNumber: 176)
  3662. }
  3663. if !_storage._mapSint32Sfixed64.isEmpty {
  3664. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufSFixed64>.self, value: _storage._mapSint32Sfixed64, fieldNumber: 177)
  3665. }
  3666. if !_storage._mapSint32Float.isEmpty {
  3667. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufFloat>.self, value: _storage._mapSint32Float, fieldNumber: 178)
  3668. }
  3669. if !_storage._mapSint32Double.isEmpty {
  3670. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufDouble>.self, value: _storage._mapSint32Double, fieldNumber: 179)
  3671. }
  3672. if !_storage._mapSint32Bool.isEmpty {
  3673. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufBool>.self, value: _storage._mapSint32Bool, fieldNumber: 180)
  3674. }
  3675. if !_storage._mapSint32String.isEmpty {
  3676. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufString>.self, value: _storage._mapSint32String, fieldNumber: 181)
  3677. }
  3678. if !_storage._mapSint32Bytes.isEmpty {
  3679. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt32,SwiftProtobuf.ProtobufBytes>.self, value: _storage._mapSint32Bytes, fieldNumber: 182)
  3680. }
  3681. if !_storage._mapSint32AnEnum.isEmpty {
  3682. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufSInt32,SwiftProtoTesting_Fuzz_AnEnum>.self, value: _storage._mapSint32AnEnum, fieldNumber: 183)
  3683. }
  3684. if !_storage._mapSint32Message.isEmpty {
  3685. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufSInt32,SwiftProtoTesting_Fuzz_Message>.self, value: _storage._mapSint32Message, fieldNumber: 184)
  3686. }
  3687. if !_storage._mapSint64Int32.isEmpty {
  3688. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufInt32>.self, value: _storage._mapSint64Int32, fieldNumber: 185)
  3689. }
  3690. if !_storage._mapSint64Int64.isEmpty {
  3691. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufInt64>.self, value: _storage._mapSint64Int64, fieldNumber: 186)
  3692. }
  3693. if !_storage._mapSint64Uint32.isEmpty {
  3694. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufUInt32>.self, value: _storage._mapSint64Uint32, fieldNumber: 187)
  3695. }
  3696. if !_storage._mapSint64Uint64.isEmpty {
  3697. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufUInt64>.self, value: _storage._mapSint64Uint64, fieldNumber: 188)
  3698. }
  3699. if !_storage._mapSint64Sint32.isEmpty {
  3700. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufSInt32>.self, value: _storage._mapSint64Sint32, fieldNumber: 189)
  3701. }
  3702. if !_storage._mapSint64Sint64.isEmpty {
  3703. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufSInt64>.self, value: _storage._mapSint64Sint64, fieldNumber: 190)
  3704. }
  3705. if !_storage._mapSint64Fixed32.isEmpty {
  3706. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufFixed32>.self, value: _storage._mapSint64Fixed32, fieldNumber: 191)
  3707. }
  3708. if !_storage._mapSint64Fixed64.isEmpty {
  3709. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufFixed64>.self, value: _storage._mapSint64Fixed64, fieldNumber: 192)
  3710. }
  3711. if !_storage._mapSint64Sfixed32.isEmpty {
  3712. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufSFixed32>.self, value: _storage._mapSint64Sfixed32, fieldNumber: 193)
  3713. }
  3714. if !_storage._mapSint64Sfixed64.isEmpty {
  3715. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufSFixed64>.self, value: _storage._mapSint64Sfixed64, fieldNumber: 194)
  3716. }
  3717. if !_storage._mapSint64Float.isEmpty {
  3718. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufFloat>.self, value: _storage._mapSint64Float, fieldNumber: 195)
  3719. }
  3720. if !_storage._mapSint64Double.isEmpty {
  3721. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufDouble>.self, value: _storage._mapSint64Double, fieldNumber: 196)
  3722. }
  3723. if !_storage._mapSint64Bool.isEmpty {
  3724. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufBool>.self, value: _storage._mapSint64Bool, fieldNumber: 197)
  3725. }
  3726. if !_storage._mapSint64String.isEmpty {
  3727. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufString>.self, value: _storage._mapSint64String, fieldNumber: 198)
  3728. }
  3729. if !_storage._mapSint64Bytes.isEmpty {
  3730. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSInt64,SwiftProtobuf.ProtobufBytes>.self, value: _storage._mapSint64Bytes, fieldNumber: 199)
  3731. }
  3732. if !_storage._mapSint64AnEnum.isEmpty {
  3733. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufSInt64,SwiftProtoTesting_Fuzz_AnEnum>.self, value: _storage._mapSint64AnEnum, fieldNumber: 200)
  3734. }
  3735. if !_storage._mapSint64Message.isEmpty {
  3736. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufSInt64,SwiftProtoTesting_Fuzz_Message>.self, value: _storage._mapSint64Message, fieldNumber: 201)
  3737. }
  3738. if !_storage._mapFixed32Int32.isEmpty {
  3739. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufInt32>.self, value: _storage._mapFixed32Int32, fieldNumber: 202)
  3740. }
  3741. if !_storage._mapFixed32Int64.isEmpty {
  3742. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufInt64>.self, value: _storage._mapFixed32Int64, fieldNumber: 203)
  3743. }
  3744. if !_storage._mapFixed32Uint32.isEmpty {
  3745. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufUInt32>.self, value: _storage._mapFixed32Uint32, fieldNumber: 204)
  3746. }
  3747. if !_storage._mapFixed32Uint64.isEmpty {
  3748. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufUInt64>.self, value: _storage._mapFixed32Uint64, fieldNumber: 205)
  3749. }
  3750. if !_storage._mapFixed32Sint32.isEmpty {
  3751. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufSInt32>.self, value: _storage._mapFixed32Sint32, fieldNumber: 206)
  3752. }
  3753. if !_storage._mapFixed32Sint64.isEmpty {
  3754. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufSInt64>.self, value: _storage._mapFixed32Sint64, fieldNumber: 207)
  3755. }
  3756. if !_storage._mapFixed32Fixed32.isEmpty {
  3757. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufFixed32>.self, value: _storage._mapFixed32Fixed32, fieldNumber: 208)
  3758. }
  3759. if !_storage._mapFixed32Fixed64.isEmpty {
  3760. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufFixed64>.self, value: _storage._mapFixed32Fixed64, fieldNumber: 209)
  3761. }
  3762. if !_storage._mapFixed32Sfixed32.isEmpty {
  3763. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufSFixed32>.self, value: _storage._mapFixed32Sfixed32, fieldNumber: 210)
  3764. }
  3765. if !_storage._mapFixed32Sfixed64.isEmpty {
  3766. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufSFixed64>.self, value: _storage._mapFixed32Sfixed64, fieldNumber: 211)
  3767. }
  3768. if !_storage._mapFixed32Float.isEmpty {
  3769. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufFloat>.self, value: _storage._mapFixed32Float, fieldNumber: 212)
  3770. }
  3771. if !_storage._mapFixed32Double.isEmpty {
  3772. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufDouble>.self, value: _storage._mapFixed32Double, fieldNumber: 213)
  3773. }
  3774. if !_storage._mapFixed32Bool.isEmpty {
  3775. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufBool>.self, value: _storage._mapFixed32Bool, fieldNumber: 214)
  3776. }
  3777. if !_storage._mapFixed32String.isEmpty {
  3778. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufString>.self, value: _storage._mapFixed32String, fieldNumber: 215)
  3779. }
  3780. if !_storage._mapFixed32Bytes.isEmpty {
  3781. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed32,SwiftProtobuf.ProtobufBytes>.self, value: _storage._mapFixed32Bytes, fieldNumber: 216)
  3782. }
  3783. if !_storage._mapFixed32AnEnum.isEmpty {
  3784. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufFixed32,SwiftProtoTesting_Fuzz_AnEnum>.self, value: _storage._mapFixed32AnEnum, fieldNumber: 217)
  3785. }
  3786. if !_storage._mapFixed32Message.isEmpty {
  3787. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufFixed32,SwiftProtoTesting_Fuzz_Message>.self, value: _storage._mapFixed32Message, fieldNumber: 218)
  3788. }
  3789. if !_storage._mapFixed64Int32.isEmpty {
  3790. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufInt32>.self, value: _storage._mapFixed64Int32, fieldNumber: 219)
  3791. }
  3792. if !_storage._mapFixed64Int64.isEmpty {
  3793. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufInt64>.self, value: _storage._mapFixed64Int64, fieldNumber: 220)
  3794. }
  3795. if !_storage._mapFixed64Uint32.isEmpty {
  3796. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufUInt32>.self, value: _storage._mapFixed64Uint32, fieldNumber: 221)
  3797. }
  3798. if !_storage._mapFixed64Uint64.isEmpty {
  3799. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufUInt64>.self, value: _storage._mapFixed64Uint64, fieldNumber: 222)
  3800. }
  3801. if !_storage._mapFixed64Sint32.isEmpty {
  3802. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufSInt32>.self, value: _storage._mapFixed64Sint32, fieldNumber: 223)
  3803. }
  3804. if !_storage._mapFixed64Sint64.isEmpty {
  3805. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufSInt64>.self, value: _storage._mapFixed64Sint64, fieldNumber: 224)
  3806. }
  3807. if !_storage._mapFixed64Fixed32.isEmpty {
  3808. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufFixed32>.self, value: _storage._mapFixed64Fixed32, fieldNumber: 225)
  3809. }
  3810. if !_storage._mapFixed64Fixed64.isEmpty {
  3811. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufFixed64>.self, value: _storage._mapFixed64Fixed64, fieldNumber: 226)
  3812. }
  3813. if !_storage._mapFixed64Sfixed32.isEmpty {
  3814. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufSFixed32>.self, value: _storage._mapFixed64Sfixed32, fieldNumber: 227)
  3815. }
  3816. if !_storage._mapFixed64Sfixed64.isEmpty {
  3817. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufSFixed64>.self, value: _storage._mapFixed64Sfixed64, fieldNumber: 228)
  3818. }
  3819. if !_storage._mapFixed64Float.isEmpty {
  3820. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufFloat>.self, value: _storage._mapFixed64Float, fieldNumber: 229)
  3821. }
  3822. if !_storage._mapFixed64Double.isEmpty {
  3823. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufDouble>.self, value: _storage._mapFixed64Double, fieldNumber: 230)
  3824. }
  3825. if !_storage._mapFixed64Bool.isEmpty {
  3826. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufBool>.self, value: _storage._mapFixed64Bool, fieldNumber: 231)
  3827. }
  3828. if !_storage._mapFixed64String.isEmpty {
  3829. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufString>.self, value: _storage._mapFixed64String, fieldNumber: 232)
  3830. }
  3831. if !_storage._mapFixed64Bytes.isEmpty {
  3832. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufFixed64,SwiftProtobuf.ProtobufBytes>.self, value: _storage._mapFixed64Bytes, fieldNumber: 233)
  3833. }
  3834. if !_storage._mapFixed64AnEnum.isEmpty {
  3835. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufFixed64,SwiftProtoTesting_Fuzz_AnEnum>.self, value: _storage._mapFixed64AnEnum, fieldNumber: 234)
  3836. }
  3837. if !_storage._mapFixed64Message.isEmpty {
  3838. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufFixed64,SwiftProtoTesting_Fuzz_Message>.self, value: _storage._mapFixed64Message, fieldNumber: 235)
  3839. }
  3840. if !_storage._mapSfixed32Int32.isEmpty {
  3841. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufInt32>.self, value: _storage._mapSfixed32Int32, fieldNumber: 236)
  3842. }
  3843. if !_storage._mapSfixed32Int64.isEmpty {
  3844. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufInt64>.self, value: _storage._mapSfixed32Int64, fieldNumber: 237)
  3845. }
  3846. if !_storage._mapSfixed32Uint32.isEmpty {
  3847. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufUInt32>.self, value: _storage._mapSfixed32Uint32, fieldNumber: 238)
  3848. }
  3849. if !_storage._mapSfixed32Uint64.isEmpty {
  3850. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufUInt64>.self, value: _storage._mapSfixed32Uint64, fieldNumber: 239)
  3851. }
  3852. if !_storage._mapSfixed32Sint32.isEmpty {
  3853. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufSInt32>.self, value: _storage._mapSfixed32Sint32, fieldNumber: 240)
  3854. }
  3855. if !_storage._mapSfixed32Sint64.isEmpty {
  3856. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufSInt64>.self, value: _storage._mapSfixed32Sint64, fieldNumber: 241)
  3857. }
  3858. if !_storage._mapSfixed32Fixed32.isEmpty {
  3859. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufFixed32>.self, value: _storage._mapSfixed32Fixed32, fieldNumber: 242)
  3860. }
  3861. if !_storage._mapSfixed32Fixed64.isEmpty {
  3862. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufFixed64>.self, value: _storage._mapSfixed32Fixed64, fieldNumber: 243)
  3863. }
  3864. if !_storage._mapSfixed32Sfixed32.isEmpty {
  3865. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufSFixed32>.self, value: _storage._mapSfixed32Sfixed32, fieldNumber: 244)
  3866. }
  3867. if !_storage._mapSfixed32Sfixed64.isEmpty {
  3868. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufSFixed64>.self, value: _storage._mapSfixed32Sfixed64, fieldNumber: 245)
  3869. }
  3870. if !_storage._mapSfixed32Float.isEmpty {
  3871. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufFloat>.self, value: _storage._mapSfixed32Float, fieldNumber: 246)
  3872. }
  3873. if !_storage._mapSfixed32Double.isEmpty {
  3874. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufDouble>.self, value: _storage._mapSfixed32Double, fieldNumber: 247)
  3875. }
  3876. if !_storage._mapSfixed32Bool.isEmpty {
  3877. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufBool>.self, value: _storage._mapSfixed32Bool, fieldNumber: 248)
  3878. }
  3879. if !_storage._mapSfixed32String.isEmpty {
  3880. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufString>.self, value: _storage._mapSfixed32String, fieldNumber: 249)
  3881. }
  3882. if !_storage._mapSfixed32Bytes.isEmpty {
  3883. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtobuf.ProtobufBytes>.self, value: _storage._mapSfixed32Bytes, fieldNumber: 250)
  3884. }
  3885. if !_storage._mapSfixed32AnEnum.isEmpty {
  3886. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtoTesting_Fuzz_AnEnum>.self, value: _storage._mapSfixed32AnEnum, fieldNumber: 251)
  3887. }
  3888. if !_storage._mapSfixed32Message.isEmpty {
  3889. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufSFixed32,SwiftProtoTesting_Fuzz_Message>.self, value: _storage._mapSfixed32Message, fieldNumber: 252)
  3890. }
  3891. if !_storage._mapSfixed64Int32.isEmpty {
  3892. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufInt32>.self, value: _storage._mapSfixed64Int32, fieldNumber: 253)
  3893. }
  3894. if !_storage._mapSfixed64Int64.isEmpty {
  3895. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufInt64>.self, value: _storage._mapSfixed64Int64, fieldNumber: 254)
  3896. }
  3897. if !_storage._mapSfixed64Uint32.isEmpty {
  3898. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufUInt32>.self, value: _storage._mapSfixed64Uint32, fieldNumber: 255)
  3899. }
  3900. if !_storage._mapSfixed64Uint64.isEmpty {
  3901. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufUInt64>.self, value: _storage._mapSfixed64Uint64, fieldNumber: 256)
  3902. }
  3903. if !_storage._mapSfixed64Sint32.isEmpty {
  3904. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufSInt32>.self, value: _storage._mapSfixed64Sint32, fieldNumber: 257)
  3905. }
  3906. if !_storage._mapSfixed64Sint64.isEmpty {
  3907. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufSInt64>.self, value: _storage._mapSfixed64Sint64, fieldNumber: 258)
  3908. }
  3909. if !_storage._mapSfixed64Fixed32.isEmpty {
  3910. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufFixed32>.self, value: _storage._mapSfixed64Fixed32, fieldNumber: 259)
  3911. }
  3912. if !_storage._mapSfixed64Fixed64.isEmpty {
  3913. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufFixed64>.self, value: _storage._mapSfixed64Fixed64, fieldNumber: 260)
  3914. }
  3915. if !_storage._mapSfixed64Sfixed32.isEmpty {
  3916. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufSFixed32>.self, value: _storage._mapSfixed64Sfixed32, fieldNumber: 261)
  3917. }
  3918. if !_storage._mapSfixed64Sfixed64.isEmpty {
  3919. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufSFixed64>.self, value: _storage._mapSfixed64Sfixed64, fieldNumber: 262)
  3920. }
  3921. if !_storage._mapSfixed64Float.isEmpty {
  3922. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufFloat>.self, value: _storage._mapSfixed64Float, fieldNumber: 263)
  3923. }
  3924. if !_storage._mapSfixed64Double.isEmpty {
  3925. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufDouble>.self, value: _storage._mapSfixed64Double, fieldNumber: 264)
  3926. }
  3927. if !_storage._mapSfixed64Bool.isEmpty {
  3928. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufBool>.self, value: _storage._mapSfixed64Bool, fieldNumber: 265)
  3929. }
  3930. if !_storage._mapSfixed64String.isEmpty {
  3931. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufString>.self, value: _storage._mapSfixed64String, fieldNumber: 266)
  3932. }
  3933. if !_storage._mapSfixed64Bytes.isEmpty {
  3934. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtobuf.ProtobufBytes>.self, value: _storage._mapSfixed64Bytes, fieldNumber: 267)
  3935. }
  3936. if !_storage._mapSfixed64AnEnum.isEmpty {
  3937. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtoTesting_Fuzz_AnEnum>.self, value: _storage._mapSfixed64AnEnum, fieldNumber: 268)
  3938. }
  3939. if !_storage._mapSfixed64Message.isEmpty {
  3940. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufSFixed64,SwiftProtoTesting_Fuzz_Message>.self, value: _storage._mapSfixed64Message, fieldNumber: 269)
  3941. }
  3942. if !_storage._mapBoolInt32.isEmpty {
  3943. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufInt32>.self, value: _storage._mapBoolInt32, fieldNumber: 270)
  3944. }
  3945. if !_storage._mapBoolInt64.isEmpty {
  3946. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufInt64>.self, value: _storage._mapBoolInt64, fieldNumber: 271)
  3947. }
  3948. if !_storage._mapBoolUint32.isEmpty {
  3949. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufUInt32>.self, value: _storage._mapBoolUint32, fieldNumber: 272)
  3950. }
  3951. if !_storage._mapBoolUint64.isEmpty {
  3952. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufUInt64>.self, value: _storage._mapBoolUint64, fieldNumber: 273)
  3953. }
  3954. if !_storage._mapBoolSint32.isEmpty {
  3955. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufSInt32>.self, value: _storage._mapBoolSint32, fieldNumber: 274)
  3956. }
  3957. if !_storage._mapBoolSint64.isEmpty {
  3958. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufSInt64>.self, value: _storage._mapBoolSint64, fieldNumber: 275)
  3959. }
  3960. if !_storage._mapBoolFixed32.isEmpty {
  3961. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufFixed32>.self, value: _storage._mapBoolFixed32, fieldNumber: 276)
  3962. }
  3963. if !_storage._mapBoolFixed64.isEmpty {
  3964. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufFixed64>.self, value: _storage._mapBoolFixed64, fieldNumber: 277)
  3965. }
  3966. if !_storage._mapBoolSfixed32.isEmpty {
  3967. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufSFixed32>.self, value: _storage._mapBoolSfixed32, fieldNumber: 278)
  3968. }
  3969. if !_storage._mapBoolSfixed64.isEmpty {
  3970. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufSFixed64>.self, value: _storage._mapBoolSfixed64, fieldNumber: 279)
  3971. }
  3972. if !_storage._mapBoolFloat.isEmpty {
  3973. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufFloat>.self, value: _storage._mapBoolFloat, fieldNumber: 280)
  3974. }
  3975. if !_storage._mapBoolDouble.isEmpty {
  3976. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufDouble>.self, value: _storage._mapBoolDouble, fieldNumber: 281)
  3977. }
  3978. if !_storage._mapBoolBool.isEmpty {
  3979. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufBool>.self, value: _storage._mapBoolBool, fieldNumber: 282)
  3980. }
  3981. if !_storage._mapBoolString.isEmpty {
  3982. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufString>.self, value: _storage._mapBoolString, fieldNumber: 283)
  3983. }
  3984. if !_storage._mapBoolBytes.isEmpty {
  3985. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMap<SwiftProtobuf.ProtobufBool,SwiftProtobuf.ProtobufBytes>.self, value: _storage._mapBoolBytes, fieldNumber: 284)
  3986. }
  3987. if !_storage._mapBoolAnEnum.isEmpty {
  3988. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufEnumMap<SwiftProtobuf.ProtobufBool,SwiftProtoTesting_Fuzz_AnEnum>.self, value: _storage._mapBoolAnEnum, fieldNumber: 285)
  3989. }
  3990. if !_storage._mapBoolMessage.isEmpty {
  3991. try visitor.visitMapField(fieldType: SwiftProtobuf._ProtobufMessageMap<SwiftProtobuf.ProtobufBool,SwiftProtoTesting_Fuzz_Message>.self, value: _storage._mapBoolMessage, fieldNumber: 286)
  3992. }
  3993. try { if let v = _storage._wktAny {
  3994. try visitor.visitSingularMessageField(value: v, fieldNumber: 500)
  3995. } }()
  3996. try { if let v = _storage._wktApi {
  3997. try visitor.visitSingularMessageField(value: v, fieldNumber: 501)
  3998. } }()
  3999. try { if let v = _storage._wktDuration {
  4000. try visitor.visitSingularMessageField(value: v, fieldNumber: 502)
  4001. } }()
  4002. try { if let v = _storage._wktEmpty {
  4003. try visitor.visitSingularMessageField(value: v, fieldNumber: 503)
  4004. } }()
  4005. try { if let v = _storage._wktFieldMask {
  4006. try visitor.visitSingularMessageField(value: v, fieldNumber: 504)
  4007. } }()
  4008. try { if let v = _storage._wktSourceContext {
  4009. try visitor.visitSingularMessageField(value: v, fieldNumber: 505)
  4010. } }()
  4011. try { if let v = _storage._wktStruct {
  4012. try visitor.visitSingularMessageField(value: v, fieldNumber: 506)
  4013. } }()
  4014. try { if let v = _storage._wktTimestamp {
  4015. try visitor.visitSingularMessageField(value: v, fieldNumber: 507)
  4016. } }()
  4017. try { if let v = _storage._wktType {
  4018. try visitor.visitSingularMessageField(value: v, fieldNumber: 508)
  4019. } }()
  4020. try { if let v = _storage._wktDoubleValue {
  4021. try visitor.visitSingularMessageField(value: v, fieldNumber: 509)
  4022. } }()
  4023. try { if let v = _storage._wktFloatValue {
  4024. try visitor.visitSingularMessageField(value: v, fieldNumber: 510)
  4025. } }()
  4026. try { if let v = _storage._wktInt64Value {
  4027. try visitor.visitSingularMessageField(value: v, fieldNumber: 511)
  4028. } }()
  4029. try { if let v = _storage._wktUint64Value {
  4030. try visitor.visitSingularMessageField(value: v, fieldNumber: 512)
  4031. } }()
  4032. try { if let v = _storage._wktInt32Value {
  4033. try visitor.visitSingularMessageField(value: v, fieldNumber: 513)
  4034. } }()
  4035. try { if let v = _storage._wktUint32Value {
  4036. try visitor.visitSingularMessageField(value: v, fieldNumber: 514)
  4037. } }()
  4038. try { if let v = _storage._wktBoolValue {
  4039. try visitor.visitSingularMessageField(value: v, fieldNumber: 515)
  4040. } }()
  4041. try { if let v = _storage._wktStringValue {
  4042. try visitor.visitSingularMessageField(value: v, fieldNumber: 516)
  4043. } }()
  4044. try { if let v = _storage._wktBytesValue {
  4045. try visitor.visitSingularMessageField(value: v, fieldNumber: 517)
  4046. } }()
  4047. try { if let v = _storage._singularMessageSet {
  4048. try visitor.visitSingularMessageField(value: v, fieldNumber: 600)
  4049. } }()
  4050. if !_storage._repeatedMessageSet.isEmpty {
  4051. try visitor.visitRepeatedMessageField(value: _storage._repeatedMessageSet, fieldNumber: 601)
  4052. }
  4053. try visitor.visitExtensionFields(fields: _protobuf_extensionFieldValues, start: 1000, end: 2001)
  4054. }
  4055. try unknownFields.traverse(visitor: &visitor)
  4056. }
  4057. public static func ==(lhs: SwiftProtoTesting_Fuzz_Message, rhs: SwiftProtoTesting_Fuzz_Message) -> Bool {
  4058. if lhs._storage !== rhs._storage {
  4059. let storagesAreEqual: Bool = withExtendedLifetime((lhs._storage, rhs._storage)) { (_args: (_StorageClass, _StorageClass)) in
  4060. let _storage = _args.0
  4061. let rhs_storage = _args.1
  4062. if _storage._singularInt32 != rhs_storage._singularInt32 {return false}
  4063. if _storage._singularInt64 != rhs_storage._singularInt64 {return false}
  4064. if _storage._singularUint32 != rhs_storage._singularUint32 {return false}
  4065. if _storage._singularUint64 != rhs_storage._singularUint64 {return false}
  4066. if _storage._singularSint32 != rhs_storage._singularSint32 {return false}
  4067. if _storage._singularSint64 != rhs_storage._singularSint64 {return false}
  4068. if _storage._singularFixed32 != rhs_storage._singularFixed32 {return false}
  4069. if _storage._singularFixed64 != rhs_storage._singularFixed64 {return false}
  4070. if _storage._singularSfixed32 != rhs_storage._singularSfixed32 {return false}
  4071. if _storage._singularSfixed64 != rhs_storage._singularSfixed64 {return false}
  4072. if _storage._singularFloat != rhs_storage._singularFloat {return false}
  4073. if _storage._singularDouble != rhs_storage._singularDouble {return false}
  4074. if _storage._singularBool != rhs_storage._singularBool {return false}
  4075. if _storage._singularString != rhs_storage._singularString {return false}
  4076. if _storage._singularBytes != rhs_storage._singularBytes {return false}
  4077. if _storage._singularEnum != rhs_storage._singularEnum {return false}
  4078. if _storage._singularGroup != rhs_storage._singularGroup {return false}
  4079. if _storage._singularMessage != rhs_storage._singularMessage {return false}
  4080. if _storage._repeatedInt32 != rhs_storage._repeatedInt32 {return false}
  4081. if _storage._repeatedInt64 != rhs_storage._repeatedInt64 {return false}
  4082. if _storage._repeatedUint32 != rhs_storage._repeatedUint32 {return false}
  4083. if _storage._repeatedUint64 != rhs_storage._repeatedUint64 {return false}
  4084. if _storage._repeatedSint32 != rhs_storage._repeatedSint32 {return false}
  4085. if _storage._repeatedSint64 != rhs_storage._repeatedSint64 {return false}
  4086. if _storage._repeatedFixed32 != rhs_storage._repeatedFixed32 {return false}
  4087. if _storage._repeatedFixed64 != rhs_storage._repeatedFixed64 {return false}
  4088. if _storage._repeatedSfixed32 != rhs_storage._repeatedSfixed32 {return false}
  4089. if _storage._repeatedSfixed64 != rhs_storage._repeatedSfixed64 {return false}
  4090. if _storage._repeatedFloat != rhs_storage._repeatedFloat {return false}
  4091. if _storage._repeatedDouble != rhs_storage._repeatedDouble {return false}
  4092. if _storage._repeatedBool != rhs_storage._repeatedBool {return false}
  4093. if _storage._repeatedString != rhs_storage._repeatedString {return false}
  4094. if _storage._repeatedBytes != rhs_storage._repeatedBytes {return false}
  4095. if _storage._repeatedEnum != rhs_storage._repeatedEnum {return false}
  4096. if _storage._repeatedGroup != rhs_storage._repeatedGroup {return false}
  4097. if _storage._repeatedMessage != rhs_storage._repeatedMessage {return false}
  4098. if _storage._o != rhs_storage._o {return false}
  4099. if _storage._repeatedPackedInt32 != rhs_storage._repeatedPackedInt32 {return false}
  4100. if _storage._repeatedPackedInt64 != rhs_storage._repeatedPackedInt64 {return false}
  4101. if _storage._repeatedPackedUint32 != rhs_storage._repeatedPackedUint32 {return false}
  4102. if _storage._repeatedPackedUint64 != rhs_storage._repeatedPackedUint64 {return false}
  4103. if _storage._repeatedPackedSint32 != rhs_storage._repeatedPackedSint32 {return false}
  4104. if _storage._repeatedPackedSint64 != rhs_storage._repeatedPackedSint64 {return false}
  4105. if _storage._repeatedPackedFixed32 != rhs_storage._repeatedPackedFixed32 {return false}
  4106. if _storage._repeatedPackedFixed64 != rhs_storage._repeatedPackedFixed64 {return false}
  4107. if _storage._repeatedPackedSfixed32 != rhs_storage._repeatedPackedSfixed32 {return false}
  4108. if _storage._repeatedPackedSfixed64 != rhs_storage._repeatedPackedSfixed64 {return false}
  4109. if _storage._repeatedPackedFloat != rhs_storage._repeatedPackedFloat {return false}
  4110. if _storage._repeatedPackedDouble != rhs_storage._repeatedPackedDouble {return false}
  4111. if _storage._repeatedPackedBool != rhs_storage._repeatedPackedBool {return false}
  4112. if _storage._repeatedPackedEnum != rhs_storage._repeatedPackedEnum {return false}
  4113. if _storage._mapInt32Int32 != rhs_storage._mapInt32Int32 {return false}
  4114. if _storage._mapInt32Int64 != rhs_storage._mapInt32Int64 {return false}
  4115. if _storage._mapInt32Uint32 != rhs_storage._mapInt32Uint32 {return false}
  4116. if _storage._mapInt32Uint64 != rhs_storage._mapInt32Uint64 {return false}
  4117. if _storage._mapInt32Sint32 != rhs_storage._mapInt32Sint32 {return false}
  4118. if _storage._mapInt32Sint64 != rhs_storage._mapInt32Sint64 {return false}
  4119. if _storage._mapInt32Fixed32 != rhs_storage._mapInt32Fixed32 {return false}
  4120. if _storage._mapInt32Fixed64 != rhs_storage._mapInt32Fixed64 {return false}
  4121. if _storage._mapInt32Sfixed32 != rhs_storage._mapInt32Sfixed32 {return false}
  4122. if _storage._mapInt32Sfixed64 != rhs_storage._mapInt32Sfixed64 {return false}
  4123. if _storage._mapInt32Float != rhs_storage._mapInt32Float {return false}
  4124. if _storage._mapInt32Double != rhs_storage._mapInt32Double {return false}
  4125. if _storage._mapInt32Bool != rhs_storage._mapInt32Bool {return false}
  4126. if _storage._mapInt32String != rhs_storage._mapInt32String {return false}
  4127. if _storage._mapInt32Bytes != rhs_storage._mapInt32Bytes {return false}
  4128. if _storage._mapInt32AnEnum != rhs_storage._mapInt32AnEnum {return false}
  4129. if _storage._mapInt32Message != rhs_storage._mapInt32Message {return false}
  4130. if _storage._mapInt64Int32 != rhs_storage._mapInt64Int32 {return false}
  4131. if _storage._mapInt64Int64 != rhs_storage._mapInt64Int64 {return false}
  4132. if _storage._mapInt64Uint32 != rhs_storage._mapInt64Uint32 {return false}
  4133. if _storage._mapInt64Uint64 != rhs_storage._mapInt64Uint64 {return false}
  4134. if _storage._mapInt64Sint32 != rhs_storage._mapInt64Sint32 {return false}
  4135. if _storage._mapInt64Sint64 != rhs_storage._mapInt64Sint64 {return false}
  4136. if _storage._mapInt64Fixed32 != rhs_storage._mapInt64Fixed32 {return false}
  4137. if _storage._mapInt64Fixed64 != rhs_storage._mapInt64Fixed64 {return false}
  4138. if _storage._mapInt64Sfixed32 != rhs_storage._mapInt64Sfixed32 {return false}
  4139. if _storage._mapInt64Sfixed64 != rhs_storage._mapInt64Sfixed64 {return false}
  4140. if _storage._mapInt64Float != rhs_storage._mapInt64Float {return false}
  4141. if _storage._mapInt64Double != rhs_storage._mapInt64Double {return false}
  4142. if _storage._mapInt64Bool != rhs_storage._mapInt64Bool {return false}
  4143. if _storage._mapInt64String != rhs_storage._mapInt64String {return false}
  4144. if _storage._mapInt64Bytes != rhs_storage._mapInt64Bytes {return false}
  4145. if _storage._mapInt64AnEnum != rhs_storage._mapInt64AnEnum {return false}
  4146. if _storage._mapInt64Message != rhs_storage._mapInt64Message {return false}
  4147. if _storage._mapUint32Int32 != rhs_storage._mapUint32Int32 {return false}
  4148. if _storage._mapUint32Int64 != rhs_storage._mapUint32Int64 {return false}
  4149. if _storage._mapUint32Uint32 != rhs_storage._mapUint32Uint32 {return false}
  4150. if _storage._mapUint32Uint64 != rhs_storage._mapUint32Uint64 {return false}
  4151. if _storage._mapUint32Sint32 != rhs_storage._mapUint32Sint32 {return false}
  4152. if _storage._mapUint32Sint64 != rhs_storage._mapUint32Sint64 {return false}
  4153. if _storage._mapUint32Fixed32 != rhs_storage._mapUint32Fixed32 {return false}
  4154. if _storage._mapUint32Fixed64 != rhs_storage._mapUint32Fixed64 {return false}
  4155. if _storage._mapUint32Sfixed32 != rhs_storage._mapUint32Sfixed32 {return false}
  4156. if _storage._mapUint32Sfixed64 != rhs_storage._mapUint32Sfixed64 {return false}
  4157. if _storage._mapUint32Float != rhs_storage._mapUint32Float {return false}
  4158. if _storage._mapUint32Double != rhs_storage._mapUint32Double {return false}
  4159. if _storage._mapUint32Bool != rhs_storage._mapUint32Bool {return false}
  4160. if _storage._mapUint32String != rhs_storage._mapUint32String {return false}
  4161. if _storage._mapUint32Bytes != rhs_storage._mapUint32Bytes {return false}
  4162. if _storage._mapUint32AnEnum != rhs_storage._mapUint32AnEnum {return false}
  4163. if _storage._mapUint32Message != rhs_storage._mapUint32Message {return false}
  4164. if _storage._mapUint64Int32 != rhs_storage._mapUint64Int32 {return false}
  4165. if _storage._mapUint64Int64 != rhs_storage._mapUint64Int64 {return false}
  4166. if _storage._mapUint64Uint32 != rhs_storage._mapUint64Uint32 {return false}
  4167. if _storage._mapUint64Uint64 != rhs_storage._mapUint64Uint64 {return false}
  4168. if _storage._mapUint64Sint32 != rhs_storage._mapUint64Sint32 {return false}
  4169. if _storage._mapUint64Sint64 != rhs_storage._mapUint64Sint64 {return false}
  4170. if _storage._mapUint64Fixed32 != rhs_storage._mapUint64Fixed32 {return false}
  4171. if _storage._mapUint64Fixed64 != rhs_storage._mapUint64Fixed64 {return false}
  4172. if _storage._mapUint64Sfixed32 != rhs_storage._mapUint64Sfixed32 {return false}
  4173. if _storage._mapUint64Sfixed64 != rhs_storage._mapUint64Sfixed64 {return false}
  4174. if _storage._mapUint64Float != rhs_storage._mapUint64Float {return false}
  4175. if _storage._mapUint64Double != rhs_storage._mapUint64Double {return false}
  4176. if _storage._mapUint64Bool != rhs_storage._mapUint64Bool {return false}
  4177. if _storage._mapUint64String != rhs_storage._mapUint64String {return false}
  4178. if _storage._mapUint64Bytes != rhs_storage._mapUint64Bytes {return false}
  4179. if _storage._mapUint64AnEnum != rhs_storage._mapUint64AnEnum {return false}
  4180. if _storage._mapUint64Message != rhs_storage._mapUint64Message {return false}
  4181. if _storage._mapSint32Int32 != rhs_storage._mapSint32Int32 {return false}
  4182. if _storage._mapSint32Int64 != rhs_storage._mapSint32Int64 {return false}
  4183. if _storage._mapSint32Uint32 != rhs_storage._mapSint32Uint32 {return false}
  4184. if _storage._mapSint32Uint64 != rhs_storage._mapSint32Uint64 {return false}
  4185. if _storage._mapSint32Sint32 != rhs_storage._mapSint32Sint32 {return false}
  4186. if _storage._mapSint32Sint64 != rhs_storage._mapSint32Sint64 {return false}
  4187. if _storage._mapSint32Fixed32 != rhs_storage._mapSint32Fixed32 {return false}
  4188. if _storage._mapSint32Fixed64 != rhs_storage._mapSint32Fixed64 {return false}
  4189. if _storage._mapSint32Sfixed32 != rhs_storage._mapSint32Sfixed32 {return false}
  4190. if _storage._mapSint32Sfixed64 != rhs_storage._mapSint32Sfixed64 {return false}
  4191. if _storage._mapSint32Float != rhs_storage._mapSint32Float {return false}
  4192. if _storage._mapSint32Double != rhs_storage._mapSint32Double {return false}
  4193. if _storage._mapSint32Bool != rhs_storage._mapSint32Bool {return false}
  4194. if _storage._mapSint32String != rhs_storage._mapSint32String {return false}
  4195. if _storage._mapSint32Bytes != rhs_storage._mapSint32Bytes {return false}
  4196. if _storage._mapSint32AnEnum != rhs_storage._mapSint32AnEnum {return false}
  4197. if _storage._mapSint32Message != rhs_storage._mapSint32Message {return false}
  4198. if _storage._mapSint64Int32 != rhs_storage._mapSint64Int32 {return false}
  4199. if _storage._mapSint64Int64 != rhs_storage._mapSint64Int64 {return false}
  4200. if _storage._mapSint64Uint32 != rhs_storage._mapSint64Uint32 {return false}
  4201. if _storage._mapSint64Uint64 != rhs_storage._mapSint64Uint64 {return false}
  4202. if _storage._mapSint64Sint32 != rhs_storage._mapSint64Sint32 {return false}
  4203. if _storage._mapSint64Sint64 != rhs_storage._mapSint64Sint64 {return false}
  4204. if _storage._mapSint64Fixed32 != rhs_storage._mapSint64Fixed32 {return false}
  4205. if _storage._mapSint64Fixed64 != rhs_storage._mapSint64Fixed64 {return false}
  4206. if _storage._mapSint64Sfixed32 != rhs_storage._mapSint64Sfixed32 {return false}
  4207. if _storage._mapSint64Sfixed64 != rhs_storage._mapSint64Sfixed64 {return false}
  4208. if _storage._mapSint64Float != rhs_storage._mapSint64Float {return false}
  4209. if _storage._mapSint64Double != rhs_storage._mapSint64Double {return false}
  4210. if _storage._mapSint64Bool != rhs_storage._mapSint64Bool {return false}
  4211. if _storage._mapSint64String != rhs_storage._mapSint64String {return false}
  4212. if _storage._mapSint64Bytes != rhs_storage._mapSint64Bytes {return false}
  4213. if _storage._mapSint64AnEnum != rhs_storage._mapSint64AnEnum {return false}
  4214. if _storage._mapSint64Message != rhs_storage._mapSint64Message {return false}
  4215. if _storage._mapFixed32Int32 != rhs_storage._mapFixed32Int32 {return false}
  4216. if _storage._mapFixed32Int64 != rhs_storage._mapFixed32Int64 {return false}
  4217. if _storage._mapFixed32Uint32 != rhs_storage._mapFixed32Uint32 {return false}
  4218. if _storage._mapFixed32Uint64 != rhs_storage._mapFixed32Uint64 {return false}
  4219. if _storage._mapFixed32Sint32 != rhs_storage._mapFixed32Sint32 {return false}
  4220. if _storage._mapFixed32Sint64 != rhs_storage._mapFixed32Sint64 {return false}
  4221. if _storage._mapFixed32Fixed32 != rhs_storage._mapFixed32Fixed32 {return false}
  4222. if _storage._mapFixed32Fixed64 != rhs_storage._mapFixed32Fixed64 {return false}
  4223. if _storage._mapFixed32Sfixed32 != rhs_storage._mapFixed32Sfixed32 {return false}
  4224. if _storage._mapFixed32Sfixed64 != rhs_storage._mapFixed32Sfixed64 {return false}
  4225. if _storage._mapFixed32Float != rhs_storage._mapFixed32Float {return false}
  4226. if _storage._mapFixed32Double != rhs_storage._mapFixed32Double {return false}
  4227. if _storage._mapFixed32Bool != rhs_storage._mapFixed32Bool {return false}
  4228. if _storage._mapFixed32String != rhs_storage._mapFixed32String {return false}
  4229. if _storage._mapFixed32Bytes != rhs_storage._mapFixed32Bytes {return false}
  4230. if _storage._mapFixed32AnEnum != rhs_storage._mapFixed32AnEnum {return false}
  4231. if _storage._mapFixed32Message != rhs_storage._mapFixed32Message {return false}
  4232. if _storage._mapFixed64Int32 != rhs_storage._mapFixed64Int32 {return false}
  4233. if _storage._mapFixed64Int64 != rhs_storage._mapFixed64Int64 {return false}
  4234. if _storage._mapFixed64Uint32 != rhs_storage._mapFixed64Uint32 {return false}
  4235. if _storage._mapFixed64Uint64 != rhs_storage._mapFixed64Uint64 {return false}
  4236. if _storage._mapFixed64Sint32 != rhs_storage._mapFixed64Sint32 {return false}
  4237. if _storage._mapFixed64Sint64 != rhs_storage._mapFixed64Sint64 {return false}
  4238. if _storage._mapFixed64Fixed32 != rhs_storage._mapFixed64Fixed32 {return false}
  4239. if _storage._mapFixed64Fixed64 != rhs_storage._mapFixed64Fixed64 {return false}
  4240. if _storage._mapFixed64Sfixed32 != rhs_storage._mapFixed64Sfixed32 {return false}
  4241. if _storage._mapFixed64Sfixed64 != rhs_storage._mapFixed64Sfixed64 {return false}
  4242. if _storage._mapFixed64Float != rhs_storage._mapFixed64Float {return false}
  4243. if _storage._mapFixed64Double != rhs_storage._mapFixed64Double {return false}
  4244. if _storage._mapFixed64Bool != rhs_storage._mapFixed64Bool {return false}
  4245. if _storage._mapFixed64String != rhs_storage._mapFixed64String {return false}
  4246. if _storage._mapFixed64Bytes != rhs_storage._mapFixed64Bytes {return false}
  4247. if _storage._mapFixed64AnEnum != rhs_storage._mapFixed64AnEnum {return false}
  4248. if _storage._mapFixed64Message != rhs_storage._mapFixed64Message {return false}
  4249. if _storage._mapSfixed32Int32 != rhs_storage._mapSfixed32Int32 {return false}
  4250. if _storage._mapSfixed32Int64 != rhs_storage._mapSfixed32Int64 {return false}
  4251. if _storage._mapSfixed32Uint32 != rhs_storage._mapSfixed32Uint32 {return false}
  4252. if _storage._mapSfixed32Uint64 != rhs_storage._mapSfixed32Uint64 {return false}
  4253. if _storage._mapSfixed32Sint32 != rhs_storage._mapSfixed32Sint32 {return false}
  4254. if _storage._mapSfixed32Sint64 != rhs_storage._mapSfixed32Sint64 {return false}
  4255. if _storage._mapSfixed32Fixed32 != rhs_storage._mapSfixed32Fixed32 {return false}
  4256. if _storage._mapSfixed32Fixed64 != rhs_storage._mapSfixed32Fixed64 {return false}
  4257. if _storage._mapSfixed32Sfixed32 != rhs_storage._mapSfixed32Sfixed32 {return false}
  4258. if _storage._mapSfixed32Sfixed64 != rhs_storage._mapSfixed32Sfixed64 {return false}
  4259. if _storage._mapSfixed32Float != rhs_storage._mapSfixed32Float {return false}
  4260. if _storage._mapSfixed32Double != rhs_storage._mapSfixed32Double {return false}
  4261. if _storage._mapSfixed32Bool != rhs_storage._mapSfixed32Bool {return false}
  4262. if _storage._mapSfixed32String != rhs_storage._mapSfixed32String {return false}
  4263. if _storage._mapSfixed32Bytes != rhs_storage._mapSfixed32Bytes {return false}
  4264. if _storage._mapSfixed32AnEnum != rhs_storage._mapSfixed32AnEnum {return false}
  4265. if _storage._mapSfixed32Message != rhs_storage._mapSfixed32Message {return false}
  4266. if _storage._mapSfixed64Int32 != rhs_storage._mapSfixed64Int32 {return false}
  4267. if _storage._mapSfixed64Int64 != rhs_storage._mapSfixed64Int64 {return false}
  4268. if _storage._mapSfixed64Uint32 != rhs_storage._mapSfixed64Uint32 {return false}
  4269. if _storage._mapSfixed64Uint64 != rhs_storage._mapSfixed64Uint64 {return false}
  4270. if _storage._mapSfixed64Sint32 != rhs_storage._mapSfixed64Sint32 {return false}
  4271. if _storage._mapSfixed64Sint64 != rhs_storage._mapSfixed64Sint64 {return false}
  4272. if _storage._mapSfixed64Fixed32 != rhs_storage._mapSfixed64Fixed32 {return false}
  4273. if _storage._mapSfixed64Fixed64 != rhs_storage._mapSfixed64Fixed64 {return false}
  4274. if _storage._mapSfixed64Sfixed32 != rhs_storage._mapSfixed64Sfixed32 {return false}
  4275. if _storage._mapSfixed64Sfixed64 != rhs_storage._mapSfixed64Sfixed64 {return false}
  4276. if _storage._mapSfixed64Float != rhs_storage._mapSfixed64Float {return false}
  4277. if _storage._mapSfixed64Double != rhs_storage._mapSfixed64Double {return false}
  4278. if _storage._mapSfixed64Bool != rhs_storage._mapSfixed64Bool {return false}
  4279. if _storage._mapSfixed64String != rhs_storage._mapSfixed64String {return false}
  4280. if _storage._mapSfixed64Bytes != rhs_storage._mapSfixed64Bytes {return false}
  4281. if _storage._mapSfixed64AnEnum != rhs_storage._mapSfixed64AnEnum {return false}
  4282. if _storage._mapSfixed64Message != rhs_storage._mapSfixed64Message {return false}
  4283. if _storage._mapBoolInt32 != rhs_storage._mapBoolInt32 {return false}
  4284. if _storage._mapBoolInt64 != rhs_storage._mapBoolInt64 {return false}
  4285. if _storage._mapBoolUint32 != rhs_storage._mapBoolUint32 {return false}
  4286. if _storage._mapBoolUint64 != rhs_storage._mapBoolUint64 {return false}
  4287. if _storage._mapBoolSint32 != rhs_storage._mapBoolSint32 {return false}
  4288. if _storage._mapBoolSint64 != rhs_storage._mapBoolSint64 {return false}
  4289. if _storage._mapBoolFixed32 != rhs_storage._mapBoolFixed32 {return false}
  4290. if _storage._mapBoolFixed64 != rhs_storage._mapBoolFixed64 {return false}
  4291. if _storage._mapBoolSfixed32 != rhs_storage._mapBoolSfixed32 {return false}
  4292. if _storage._mapBoolSfixed64 != rhs_storage._mapBoolSfixed64 {return false}
  4293. if _storage._mapBoolFloat != rhs_storage._mapBoolFloat {return false}
  4294. if _storage._mapBoolDouble != rhs_storage._mapBoolDouble {return false}
  4295. if _storage._mapBoolBool != rhs_storage._mapBoolBool {return false}
  4296. if _storage._mapBoolString != rhs_storage._mapBoolString {return false}
  4297. if _storage._mapBoolBytes != rhs_storage._mapBoolBytes {return false}
  4298. if _storage._mapBoolAnEnum != rhs_storage._mapBoolAnEnum {return false}
  4299. if _storage._mapBoolMessage != rhs_storage._mapBoolMessage {return false}
  4300. if _storage._wktAny != rhs_storage._wktAny {return false}
  4301. if _storage._wktApi != rhs_storage._wktApi {return false}
  4302. if _storage._wktDuration != rhs_storage._wktDuration {return false}
  4303. if _storage._wktEmpty != rhs_storage._wktEmpty {return false}
  4304. if _storage._wktFieldMask != rhs_storage._wktFieldMask {return false}
  4305. if _storage._wktSourceContext != rhs_storage._wktSourceContext {return false}
  4306. if _storage._wktStruct != rhs_storage._wktStruct {return false}
  4307. if _storage._wktTimestamp != rhs_storage._wktTimestamp {return false}
  4308. if _storage._wktType != rhs_storage._wktType {return false}
  4309. if _storage._wktDoubleValue != rhs_storage._wktDoubleValue {return false}
  4310. if _storage._wktFloatValue != rhs_storage._wktFloatValue {return false}
  4311. if _storage._wktInt64Value != rhs_storage._wktInt64Value {return false}
  4312. if _storage._wktUint64Value != rhs_storage._wktUint64Value {return false}
  4313. if _storage._wktInt32Value != rhs_storage._wktInt32Value {return false}
  4314. if _storage._wktUint32Value != rhs_storage._wktUint32Value {return false}
  4315. if _storage._wktBoolValue != rhs_storage._wktBoolValue {return false}
  4316. if _storage._wktStringValue != rhs_storage._wktStringValue {return false}
  4317. if _storage._wktBytesValue != rhs_storage._wktBytesValue {return false}
  4318. if _storage._singularMessageSet != rhs_storage._singularMessageSet {return false}
  4319. if _storage._repeatedMessageSet != rhs_storage._repeatedMessageSet {return false}
  4320. return true
  4321. }
  4322. if !storagesAreEqual {return false}
  4323. }
  4324. if lhs.unknownFields != rhs.unknownFields {return false}
  4325. if lhs._protobuf_extensionFieldValues != rhs._protobuf_extensionFieldValues {return false}
  4326. return true
  4327. }
  4328. }
  4329. extension SwiftProtoTesting_Fuzz_Message.SingularGroup: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
  4330. public static let protoMessageName: String = SwiftProtoTesting_Fuzz_Message.protoMessageName + ".SingularGroup"
  4331. public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{4}\u{12}group_field\0")
  4332. public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
  4333. while let fieldNumber = try decoder.nextFieldNumber() {
  4334. // The use of inline closures is to circumvent an issue where the compiler
  4335. // allocates stack space for every case branch when no optimizations are
  4336. // enabled. https://github.com/apple/swift-protobuf/issues/1034
  4337. switch fieldNumber {
  4338. case 18: try { try decoder.decodeSingularInt32Field(value: &self._groupField) }()
  4339. default: break
  4340. }
  4341. }
  4342. }
  4343. public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
  4344. // The use of inline closures is to circumvent an issue where the compiler
  4345. // allocates stack space for every if/case branch local when no optimizations
  4346. // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
  4347. // https://github.com/apple/swift-protobuf/issues/1182
  4348. try { if let v = self._groupField {
  4349. try visitor.visitSingularInt32Field(value: v, fieldNumber: 18)
  4350. } }()
  4351. try unknownFields.traverse(visitor: &visitor)
  4352. }
  4353. public static func ==(lhs: SwiftProtoTesting_Fuzz_Message.SingularGroup, rhs: SwiftProtoTesting_Fuzz_Message.SingularGroup) -> Bool {
  4354. if lhs._groupField != rhs._groupField {return false}
  4355. if lhs.unknownFields != rhs.unknownFields {return false}
  4356. return true
  4357. }
  4358. }
  4359. extension SwiftProtoTesting_Fuzz_Message.RepeatedGroup: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
  4360. public static let protoMessageName: String = SwiftProtoTesting_Fuzz_Message.protoMessageName + ".RepeatedGroup"
  4361. public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{4}0group_field\0")
  4362. public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
  4363. while let fieldNumber = try decoder.nextFieldNumber() {
  4364. // The use of inline closures is to circumvent an issue where the compiler
  4365. // allocates stack space for every case branch when no optimizations are
  4366. // enabled. https://github.com/apple/swift-protobuf/issues/1034
  4367. switch fieldNumber {
  4368. case 48: try { try decoder.decodeSingularInt32Field(value: &self._groupField) }()
  4369. default: break
  4370. }
  4371. }
  4372. }
  4373. public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
  4374. // The use of inline closures is to circumvent an issue where the compiler
  4375. // allocates stack space for every if/case branch local when no optimizations
  4376. // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
  4377. // https://github.com/apple/swift-protobuf/issues/1182
  4378. try { if let v = self._groupField {
  4379. try visitor.visitSingularInt32Field(value: v, fieldNumber: 48)
  4380. } }()
  4381. try unknownFields.traverse(visitor: &visitor)
  4382. }
  4383. public static func ==(lhs: SwiftProtoTesting_Fuzz_Message.RepeatedGroup, rhs: SwiftProtoTesting_Fuzz_Message.RepeatedGroup) -> Bool {
  4384. if lhs._groupField != rhs._groupField {return false}
  4385. if lhs.unknownFields != rhs.unknownFields {return false}
  4386. return true
  4387. }
  4388. }
  4389. extension SwiftProtoTesting_Fuzz_Message.OneofGroup: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
  4390. public static let protoMessageName: String = SwiftProtoTesting_Fuzz_Message.protoMessageName + ".OneofGroup"
  4391. public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{4}N\u{1}group_field\0")
  4392. public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
  4393. while let fieldNumber = try decoder.nextFieldNumber() {
  4394. // The use of inline closures is to circumvent an issue where the compiler
  4395. // allocates stack space for every case branch when no optimizations are
  4396. // enabled. https://github.com/apple/swift-protobuf/issues/1034
  4397. switch fieldNumber {
  4398. case 78: try { try decoder.decodeSingularInt32Field(value: &self._groupField) }()
  4399. default: break
  4400. }
  4401. }
  4402. }
  4403. public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
  4404. // The use of inline closures is to circumvent an issue where the compiler
  4405. // allocates stack space for every if/case branch local when no optimizations
  4406. // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
  4407. // https://github.com/apple/swift-protobuf/issues/1182
  4408. try { if let v = self._groupField {
  4409. try visitor.visitSingularInt32Field(value: v, fieldNumber: 78)
  4410. } }()
  4411. try unknownFields.traverse(visitor: &visitor)
  4412. }
  4413. public static func ==(lhs: SwiftProtoTesting_Fuzz_Message.OneofGroup, rhs: SwiftProtoTesting_Fuzz_Message.OneofGroup) -> Bool {
  4414. if lhs._groupField != rhs._groupField {return false}
  4415. if lhs.unknownFields != rhs.unknownFields {return false}
  4416. return true
  4417. }
  4418. }
  4419. extension SwiftProtoTesting_Fuzz_AMessageSetMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
  4420. public static let protoMessageName: String = _protobuf_package + ".AMessageSetMessage"
  4421. public static let _protobuf_nameMap = SwiftProtobuf._NameMap()
  4422. public var isInitialized: Bool {
  4423. if !_protobuf_extensionFieldValues.isInitialized {return false}
  4424. return true
  4425. }
  4426. public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
  4427. try decoder.decodeExtensionFieldsAsMessageSet(values: &_protobuf_extensionFieldValues, messageType: SwiftProtoTesting_Fuzz_AMessageSetMessage.self)
  4428. }
  4429. public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
  4430. try visitor.visitExtensionFieldsAsMessageSet(fields: _protobuf_extensionFieldValues, start: 4, end: 2147483647)
  4431. try unknownFields.traverse(visitor: &visitor)
  4432. }
  4433. public static func ==(lhs: SwiftProtoTesting_Fuzz_AMessageSetMessage, rhs: SwiftProtoTesting_Fuzz_AMessageSetMessage) -> Bool {
  4434. if lhs.unknownFields != rhs.unknownFields {return false}
  4435. if lhs._protobuf_extensionFieldValues != rhs._protobuf_extensionFieldValues {return false}
  4436. return true
  4437. }
  4438. }
  4439. extension SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
  4440. public static let protoMessageName: String = _protobuf_package + ".AMessageSetMessageExtension1"
  4441. public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{4}\u{a}a_string\0")
  4442. public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
  4443. while let fieldNumber = try decoder.nextFieldNumber() {
  4444. // The use of inline closures is to circumvent an issue where the compiler
  4445. // allocates stack space for every case branch when no optimizations are
  4446. // enabled. https://github.com/apple/swift-protobuf/issues/1034
  4447. switch fieldNumber {
  4448. case 10: try { try decoder.decodeSingularStringField(value: &self._aString) }()
  4449. default: break
  4450. }
  4451. }
  4452. }
  4453. public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
  4454. // The use of inline closures is to circumvent an issue where the compiler
  4455. // allocates stack space for every if/case branch local when no optimizations
  4456. // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
  4457. // https://github.com/apple/swift-protobuf/issues/1182
  4458. try { if let v = self._aString {
  4459. try visitor.visitSingularStringField(value: v, fieldNumber: 10)
  4460. } }()
  4461. try unknownFields.traverse(visitor: &visitor)
  4462. }
  4463. public static func ==(lhs: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1, rhs: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension1) -> Bool {
  4464. if lhs._aString != rhs._aString {return false}
  4465. if lhs.unknownFields != rhs.unknownFields {return false}
  4466. return true
  4467. }
  4468. }
  4469. extension SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
  4470. public static let protoMessageName: String = _protobuf_package + ".AMessageSetMessageExtension2"
  4471. public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{4}\u{14}an_int32\0")
  4472. public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
  4473. while let fieldNumber = try decoder.nextFieldNumber() {
  4474. // The use of inline closures is to circumvent an issue where the compiler
  4475. // allocates stack space for every case branch when no optimizations are
  4476. // enabled. https://github.com/apple/swift-protobuf/issues/1034
  4477. switch fieldNumber {
  4478. case 20: try { try decoder.decodeSingularInt32Field(value: &self._anInt32) }()
  4479. default: break
  4480. }
  4481. }
  4482. }
  4483. public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
  4484. // The use of inline closures is to circumvent an issue where the compiler
  4485. // allocates stack space for every if/case branch local when no optimizations
  4486. // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
  4487. // https://github.com/apple/swift-protobuf/issues/1182
  4488. try { if let v = self._anInt32 {
  4489. try visitor.visitSingularInt32Field(value: v, fieldNumber: 20)
  4490. } }()
  4491. try unknownFields.traverse(visitor: &visitor)
  4492. }
  4493. public static func ==(lhs: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2, rhs: SwiftProtoTesting_Fuzz_AMessageSetMessageExtension2) -> Bool {
  4494. if lhs._anInt32 != rhs._anInt32 {return false}
  4495. if lhs.unknownFields != rhs.unknownFields {return false}
  4496. return true
  4497. }
  4498. }
  4499. extension SwiftProtoTesting_Fuzz_SingularGroup_ext: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
  4500. public static let protoMessageName: String = _protobuf_package + ".SingularGroup_ext"
  4501. public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{4}z\u{f}group_field\0")
  4502. public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
  4503. while let fieldNumber = try decoder.nextFieldNumber() {
  4504. // The use of inline closures is to circumvent an issue where the compiler
  4505. // allocates stack space for every case branch when no optimizations are
  4506. // enabled. https://github.com/apple/swift-protobuf/issues/1034
  4507. switch fieldNumber {
  4508. case 1018: try { try decoder.decodeSingularInt32Field(value: &self._groupField) }()
  4509. default: break
  4510. }
  4511. }
  4512. }
  4513. public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
  4514. // The use of inline closures is to circumvent an issue where the compiler
  4515. // allocates stack space for every if/case branch local when no optimizations
  4516. // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
  4517. // https://github.com/apple/swift-protobuf/issues/1182
  4518. try { if let v = self._groupField {
  4519. try visitor.visitSingularInt32Field(value: v, fieldNumber: 1018)
  4520. } }()
  4521. try unknownFields.traverse(visitor: &visitor)
  4522. }
  4523. public static func ==(lhs: SwiftProtoTesting_Fuzz_SingularGroup_ext, rhs: SwiftProtoTesting_Fuzz_SingularGroup_ext) -> Bool {
  4524. if lhs._groupField != rhs._groupField {return false}
  4525. if lhs.unknownFields != rhs.unknownFields {return false}
  4526. return true
  4527. }
  4528. }
  4529. extension SwiftProtoTesting_Fuzz_RepeatedGroup_ext: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding {
  4530. public static let protoMessageName: String = _protobuf_package + ".RepeatedGroup_ext"
  4531. public static let _protobuf_nameMap = SwiftProtobuf._NameMap(bytecode: "\0\u{4}X\u{10}group_field\0")
  4532. public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
  4533. while let fieldNumber = try decoder.nextFieldNumber() {
  4534. // The use of inline closures is to circumvent an issue where the compiler
  4535. // allocates stack space for every case branch when no optimizations are
  4536. // enabled. https://github.com/apple/swift-protobuf/issues/1034
  4537. switch fieldNumber {
  4538. case 1048: try { try decoder.decodeSingularInt32Field(value: &self._groupField) }()
  4539. default: break
  4540. }
  4541. }
  4542. }
  4543. public func traverse<V: SwiftProtobuf.Visitor>(visitor: inout V) throws {
  4544. // The use of inline closures is to circumvent an issue where the compiler
  4545. // allocates stack space for every if/case branch local when no optimizations
  4546. // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and
  4547. // https://github.com/apple/swift-protobuf/issues/1182
  4548. try { if let v = self._groupField {
  4549. try visitor.visitSingularInt32Field(value: v, fieldNumber: 1048)
  4550. } }()
  4551. try unknownFields.traverse(visitor: &visitor)
  4552. }
  4553. public static func ==(lhs: SwiftProtoTesting_Fuzz_RepeatedGroup_ext, rhs: SwiftProtoTesting_Fuzz_RepeatedGroup_ext) -> Bool {
  4554. if lhs._groupField != rhs._groupField {return false}
  4555. if lhs.unknownFields != rhs.unknownFields {return false}
  4556. return true
  4557. }
  4558. }