<h      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~                   ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e fg None"#&'01;=>?ADEKOQVZ AThe Default class has the default-default values of types. See  Dhttp://code.google.com/apis/protocolbuffers/docs/proto.html#optional and also note that h types have a  that is the first one in the .protot file (there is always at least one value). Instances of this for messages hold any default value defined in the .proto file.  is where the  MessageAPI function getVal* looks when an optional field is not set.The X is never undefined or an error to evalute. This makes it much more useful compared to  mergeEmpty=. In a default message all Optional field values are set to i& and Repeated field values are empty.The  class is not a j,  mergeEmpty# is not a left or right unit like k. The default C is to take the second parameter and discard the first one. The  defaults to foldl associativity.NOTE:  mergeEmpty6 has been removed in protocol buffers version 2. Use h instead. New strict fields would mean that required fields in messages will be automatic errors with  mergeEmpty.^ is the right-biased merge of two values. A message (or group) is merged recursively. Required field are always taken from the second message. Optional field values are taken from the most defined message or the second message if both are set. Repeated fields have the sequences concatenated. Note that strings and bytes are NOT concatenated. is " F.foldl mergeAppend defaultValue d and this default definition is not overridden in any of the code except for the (Seq a) instance.J is the Int64 size type associated with the lazy bytestrings used in the Put and Get monads.Z is the Int32 assoicated with a EnumValueDescriptorProto and is in the range 0 to 2^31-1.!! is the integer associated with the FieldDescriptorProto's Type. The allowed range is currently 1 to 18, as shown below (excerpt from descritor.proto) / // 0 is reserved for errors. // Order is weird for historical reasons. TYPE_DOUBLE = 1; TYPE_FLOAT = 2; TYPE_INT64 = 3; // Not ZigZag encoded. Negative numbers // take 10 bytes. Use TYPE_SINT64 if negative // values are likely. TYPE_UINT64 = 4; TYPE_INT32 = 5; // Not ZigZag encoded. Negative numbers // take 10 bytes. Use TYPE_SINT32 if negative // values are likely. TYPE_FIXED64 = 6; TYPE_FIXED32 = 7; TYPE_BOOL = 8; TYPE_STRING = 9; TYPE_GROUP = 10; // Tag-delimited aggregate. TYPE_MESSAGE = 11; // Length-delimited aggregate. // New in version 2. TYPE_BYTES = 12; TYPE_UINT32 = 13; TYPE_ENUM = 14; TYPE_SFIXED32 = 15; TYPE_SFIXED64 = 16; TYPE_SINT32 = 17; // Uses ZigZag encoding. TYPE_SINT64 = 18; // Uses ZigZag encoding.$$l is the 3 bit wire encoding value, and is currently in the range 0 to 5, leaving 6 and 7 currently invalid.0 Varint; : int32, int64, uint32, uint64, sint32, sint64, bool, enum1 64-bit : fixed64, sfixed64, double2 Length-delimited# : string, bytes, embedded messages3  Start group : groups (deprecated)4  End group : groups (deprecated)5 32-bit : fixed32, sfixed32, float'' is the field number which can be in the range 1 to 2^29-1 but the value from 19000 to 19999 are forbidden (so sayeth Google).**7 is the 32 bit value with the upper 29 bits being the ' and the lower 3 bits being the $-- is used to mark  \ values that (should) contain valid utf8 encoded strings. This type is used to represent  TYPE_STRING values.&  !"#$%&'()*+,-./0123&-. *+,'()$%&!"# 01/23 !"#$%&'()*+,-.None"#&'01;=>?ADEKOQVDlm? is supposed to allow the execution of the monad to be halted, awaiting more input. The computation is supposed to continue normally if this returns True, and is supposed to halt without calling suspend again if this returns False. All future calls to suspend will return False automatically and no nothing else.CThese semantics are too specialized to let this escape this module. runs the todoK action and then rewinds only the BinaryParser state. Any new input from m or changes from b are kept. Changes to the user state (MonadState) are kept. The MonadWriter output is retained.XIf an error is thrown then the entire monad state is reset to last catchError as usual. runs the todo action. If the action returns i0 then the BinaryParser state is rewound (as in ). If the action return nK then the BinaryParser is not rewound, and lookAheadM acts as an identity.XIf an error is thrown then the entire monad state is reset to last catchError as usual. runs the todo action. If the action returns o0 then the BinaryParser state is rewound (as in ). If the action return pK then the BinaryParser is not rewound, and lookAheadE acts as an identity.XIf an error is thrown then the entire monad state is reset to last catchError as usual. is the simple executorl is the simple executor, and will not ask for any continuation because this lazy bytestring is all the input0Get the input currently available to the parser. replaces the bytestream past the current # of read bytes. This will also affect pending MonadError handler and MonadPlus branches. I think all pending branches have to have fewer bytesRead than the current one. If this is wrong then an error will be thrown. WARNING :  is still untested. Keep calling m until Nothing is passed to the ~Y continuation. This ensures all the data has been loaded into the state of the parser.q3Call suspend and throw and error with the provided msg$ if Nothing has been passed to the ~% continuation. Otherwise return ().check that there are at least nM bytes available in the input. This will suspend if there is to little data.Pull n] bytes from the input, as a lazy ByteString. This will suspend if there is too little data.rr causes the most recent catchError to be discarded, i.e. this reduces the stack of error handlers by removing the top one. These are the same handlers which Alternative(( |)) and MonadPlus(mplus) use. This is useful to commit to the current branch and let the garbage collector release the suspended handler and its hold on the earlier input.Discard the next m bytesReturn the number of & so far. Initially 0, never negative.Return the number of bytes ( before the current input runs out and m might be called.#Return True if the number of bytes ? is 0. Any futher attempts to read an empty parser will call m. which might result in more input to consume. Compare with sReturn True if the input is exhausted and will never be added to. Returns False if there is input left to consume. Compare with uget the longest prefix of the input where the high bit is set as well as following byte. This made getVarInt slower.Nget the longest prefix of the input where all the bytes satisfy the predicate.Pull n2 bytes from the input, as a strict ByteString. This will suspend if there is too little data. If the result spans multiple lazy chunks then the result occupies a freshly allocated strict bytestring, otherwise it fits in a single chunk and refers to the same immutable memory block as the whole chunk.sI use "splitAt" without tolerating too few bytes, so write a Maybe version. This is the only place I invoke L.Chunk as constructor instead of pattern matching. I claim that the first argument cannot be empty.&z{}~|&z{|}~lmztuvwxyz{|}~{|}~None"#&'01;=>?ADEKOQV~The  transformation has instances for several combiantions of input and output. These allow one to construct the Haskell types of MNameFMNamePMName and FNameFFName'PFName out of the protobuf types INameDINameLFIName. Currently, all the Haskell instances are for the String base type.NThis is used to abstract over Utf8 and String. The important entry point is . ensures the DIName is returns a list of non-empty a with all  characters removed@Parsed Haskell name ending with FName. Good constructor to use.?Parsed Haskell name ending with MName. Good contructor to use.-Full Haskell field name: MNames separated by , ending with a field.Full Haskell module name: MNames separated by , ending with a module&Fully qualified identifier: repeated ( then identifier)W separated identifier which may or may start with a dot. There are never two or more 5s in a row. There is always at least one identifier."Contains one field name, non-empty#Contains one module name, non-emptyContains one identifier name examines the  and prepend a  if absent, promoting it to a .Typed Typed Typed jRight (True,_) means the input is a FIName. Right (False,_) means the input is a DIName (without leading )0This creates useful error messages for the user.jRight (True,_) means the input is a FIName. Right (False,_) means the input is a DIName (without leading )0This creates useful error messages for the user.'Return list of nonempty Utf8, with all  removed)Return list of nonempty String, with all  removedU is a set of strings which are Haskell keywords and should not be valid field names.I do not protect these values: "mdo","foreign","rec","proc" ( GHC manual section 8.3.16 ) because I do not anticipate using these extensions in the generated Haskell code.44 None"#&'01;=>?ADEKOQVThis is obtained via  on the stored  output of the JC in the module file. It is used in getting messages from the wire.Must not inspect argument#GThe String is the Haskell name to write into the generated source files++ projects Double/Float to Rational or a special IEEE type. This is needed to track protobuf-2.3.0 which allows nan and inf and -inf default values.00` stores the parsed default from the proto file in a form that will make a nice literal in the Language.Haskell.Exts.Syntax code generation by hprotoc.BNote that Utf8 labeled byte sequences have been stripped to just  0 here as this is sufficient for code generation.2On 25 August 2010 20:12, George van den Driessche  georgevdd@google.com} sent Chris Kuklewicz a patch to MakeReflections.parseDefEnum to ensure that HsDef'Enum holds the mangled form of the name.:4Used for writing and reading if packedTag is Nothing;0used for reading when Just {} instead of wireTag<.Bytes required in the Varint formatted wireTag?"True if repeated is the field type@1True if packed would be valid for this field typeA;fromEnum of Text.DescriptorProtos.FieldDescriptorProto.TypeB!Set for Messages,Groups,and EnumsCcrappy, but not escaped, thingDnice parsed thingFF> is used in getting messages from the wire. It supplies the J of precomposed wire tags that must be found in the message as well as a T of all allowed tags (including known extension fields and all required wire tags).KExtension fields not in the allowedTags set are still loaded, but only as  + blobs that will have to interpreted later.YAblank protobufName, maybe blank haskellPrefix and/or parentModuleZpath to haskell module[$filename without path of .proto file\top level keys]all messages and groups^ all enumsc9fully qualified name using "package" prefix (no mangling)d;Haskell specific prefix to module hierarchy (e.g. Text.Foo)e0.proto specified namespace (like Com.Google.Bar)hBThis is fully qualified name data type for code generation. The k was possibly specified on the hprotoc command line. The l1 is a combination of the module prefix from the '.proto'* file and any nested levels of definition.CThe name components are likely to have been mangled to ensure the m& started with an uppercase letter, in  ['A'..'Z'] .j9fully qualified name using "package" prefix (no mangling)k;Haskell specific prefix to module hierarchy (e.g. Text.Foo)l0.proto specified namespace (like Com.Google.Bar)nnM is used by the generated code to create a ProtoName with less newtype noise.Must not inspect argumentMust not inspect argumentMust not inspect argumentZ !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKQRLMNOPSTUVWXYZ[\]^_`abcdefghijklmnopZhijklmabcdefgWXYZ[\]^_`JKLMNOPQRSTUV6789:;<=>?@ABCDE012345+,-./ !"#FGHI$%&'()*nop  !"#$%&'()*+,-./0123456789:;<=>?@ABCDFGHIJ KLMNOPQRSTUVW XYZ[\]^_`abcdefghijklmNone"#&'01;<=>?ADEKOQVz"Printable and readable field typesPrintable and readable messages/This writes message as text-format protobuf to qThis reads message as text-format protobuf from any Parsec-compatible source. Input must be completely consumed.  None"#&'01;=>?ADEKOQV&The R class is for internal use, and may change. If there is a mis-match between the ! and the type of b) then you will get a failure at runtime.8Users should stick to the message functions defined in  Text.ProtocolBuffers.WireMessage and exported to use user by Text.ProtocolBuffers#. These are less likely to change.This computes the size of the message's fields with tags on the wire with no initial tag or length (in bytes). This is also the length of the message as placed between group start and stop tags.3This computes the size of the message fields as in  and add the length of the encoded size to the total. Thus this is the the length of the message including the encoded length header, but without any leading tag.This computes the size of the 9 and then adds the length an initial tag with the given '.This is   applied to . It result in a   with a length of  bytes.This is   applied to . It results in a   with a length of  bytes.DThis writes just the message's fields with tags to the wire. This  4 monad can be composed and eventually executed with  .This is actually  wirePut 10 msg tThis writes the encoded length of the message's fields and then the message's fields with tags to the wire. This  6 monad can be composed and eventually executed with  .This is actually  wirePut 11 msg /This writes an encoded wire tag with the given 't and then the encoded length of the message's fields and then the message's fields with tags to the wire. This  6 monad can be composed and eventually executed with  .This consumes the  ' to decode a message. It assumes the   is merely a sequence of the tagged fields of the message, and consumes until a group stop tag is detected or the entire input is consumed. Any  3 past the end of the stop tag is returned as well.This is  applied to .This  applied to .This first reads the encoded length of the message and will then succeed when it has consumed precisely this many additional bytes. The  # after this point will be returned.XThis reads the tagged message fields until the stop tag or the end of input is reached.This is actually  wireGet 10 msg ;This reads the encoded message length and then the message.This is actually  wireGet 11 msg 'This reads a wire tag (must be of type '2' ) to get the 'W. Then the encoded message length is read, followed by the message itself. Both the ' and the message are returned.3This allows for incremental reading and processing.This is  with the o results converted to  calls and the trailing  O discarded. This use of runtime errors is discouraged, but may be convenient.Used in generated code.Used in generated code.Used in generated code.Used in generated code.Used in generated code.Used in generated code.Used in generated code.Used in generated code.Used in generated code.Used in generated code.WUsed by generated code getBareMessageWith assumes the wireTag for the message, if it existed, has already been read. getBareMessageWith assumes that it does needs to read the Varint encoded length of the message. getBareMessageWith will consume the entire ByteString it is operating on, or until it finds any STOP_GROUP tag (wireType == 4)]This reads in the raw bytestring corresponding to an field known only through the wiretag's ' and $.'After a group start tag with the given 'O this will skip ahead in the stream past the end tag of that group. Used by K to help compule the length of an unknown field when loading an extension.> z> z  None"#&'01;=>?ADEKOQV,This is a suposedly opaque typekMessages that can store unknown fields implement this interface. UnknownField is a supposedly opaque type."This is used by the generated code"This is used by the generated code"This is used by the generated code   None"#&'01;=>?ADEKOQVcvAccess data in a message. The first argument is always the message. The second argument can be one of 4 categories.YThe field name of a required field acts a simple retrieval of the data from the message.vThe field name of an optional field will retreive the data if it is set or lookup the default value if it is not set.JThe field name of a repeated field always retrieves the (possibly empty)  of values.A Key for an optional or repeated value will act as the field name does above, but if there is a type mismatch or parse error it will use the defaultValue for optional types and an empty sequence for repeated types.-Check whether data is present in the message.Required fields always return .2Optional fields return whether a value is present.Repeated field return 0 if there are no values, otherwise they return .Keys return as optional or repeated, but checks only if the field # is present. This assumes that there are no collisions where more that one key refers to the same field number of this message type.The , and  GPWitness GADTs use " as a shorthand for many classes.The 1 class has three functions for user of the API: , , and . The  is used in generated code.'There are two instances of this class, " for optional message fields and o for repeated message fields. This class allows for uniform treatment of these two kinds of extension fields.:Change or clear the value of a key in a message. Passing i" with an optional key or an empty w with a repeated key clears the value. This function thus maintains the invariant that having a field number in the  0 map means that the field is set and not empty.AThis should be only way to set the contents of a extension field.3Access the key in the message. Optional have type (Key Maybe msg v) and return type  (Maybe v)" while repeated fields have type (Key Seq msg v) and return type (Seq v).=There are a few sources of errors with the lookup of the key:5It may find unparsed bytes from loading the message. j will attempt to parse the bytes as the key's value type, and may fail. The parsing is done with the  parseWireExt. method (which is not exported to user API).<The wrong optional-key versus repeated-key type is a failure9The wrong type of the value might be found in the map andcause a failureaThe failures above should only happen if two different keys are used with the same field number.9 abstracts the operations of storing and retrieving the  W from the message, and provides the reflection needed to know the valid field numbers.This only used internally. |ExtField is a newtype'd map from the numeric FieldId key to the ExtFieldValue. This allows for the needed class instances.'For making a Data instance for ExtField$kThe WireType is used to ensure the Seq is homogeneous. The ByteString is the unparsed input after the tag.)The )} is needed to distinguish the packed repeated format from the repeated format. This is only used in the phantom type of Key.The  is another specialization of Dynamic and is used in ' for repeated fields.The  is my specialization of Dynamic<. It hides the type with an existential. This is used in & for optional fields.,The , data type is used with the A class to put, get, and clear external fields of messages. The , can also be used with the  MessagesAPIW to get a possibly default value and to check whether a key has been set in a message.The , type (opaque to the user) has a phantom type of Maybe or Seq that corresponds to Optional or Repeated fields. And a second phantom type that matches the message type it must be used with. The third type parameter corresponds to the Haskell value type.The ,\ is a GADT that puts all the needed class instances into scope. The actual content is the ' ( numeric key), the ! (for sanity checks), and Maybe v! (a non-standard default value).When code is generated all of the known keys are taken into account in the deserialization from the wire. Unknown extension fields are read as a collection of raw byte sequences. If a key is then presented it will be used to parse the bytes.There is no guarantee for what happens if two Keys disagree about the type of a field; in particular there may be undefined values and runtime errors. The data constructor for ,O has to be exported to the generated code, but is not exposed to the user by Text.ProtocolBuffers..=This allows reflection, in this case it gives the numerical 'A of the key, from 1 to 2^29-1 (excluding 19,000 through 19,999)./2This allows reflection, in this case it gives the !& enumeration value (1 to 18) of the /Text.DescriptorProtos.FieldDescriptorProto.Type of the field.0/This will return the default value for a given ,, which is set in the '.proto' file, or if unset it is the  of that type.1Used only in gfoldl for Data instance of ExtField=Used only in gfoldl and gunfold for Data instance of ExtField=Used only in gfoldl and gunfold for Data instance of ExtField=Used only in gfoldl and gunfold for Data instance of ExtField1cwireKeyToUnPacked is used to load a repeated packed format into a repeated non-packed extension key2_wireKeyToPacked is used to load a repeated unpacked format into a repeated packed extension keyused by  and  for the  instance is an intermediate handler between parseWireExt* and applyGet. This does not know whether the EP will result in a single r or repeat r, so it always returns a Seq. It may also realize that there is a mismatch between the desired FieldType and the WireTypeConverts the the { into an * type and enforces consumption of entire   . Used by  and 7 to process raw wire input that has been stored in an  .used by  and  for the  instance3"This is used by the generated code4`This is used by the generated code. The data is serialized in order of increasing field number.6get a value from the wire into the message's ExtField. This is used by generated code for extensions that were not known at compile time.$ !"#$%&'()*+,-./0123456$./0,-)*+"#346512 !$%&'(  !"#$%&'()*+,-None"#&'01;=>?ADEKOQV  !"#$%&'()*+,-./0123 !"#FGJRhijklmn ),-123456fg fg  None"#&'01;=>?ADEKOQV !$'*-./01z !"#0123456789:;<=>?@ABCDEJKQRLMNOPSTUVWXYZ[\]^_`hijklmn,./0    ! " #$%&'(&)*&)+,-.,-/01203403506789:;<=>>?@@ABBCDDEFFGHHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./001234456789:;<=>?@ABCDEEFGHIJKLMNOPQRSTTUVWWXYZ[\]^_`abccdefghijkllmnopqrrstuvwxyz{|}~            ! " # $ % & ' ( ( ) ) * + , - . / / 0 1 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h ijklmnopqrstutvwxyz{|}~~&)            t    -protocol-buffers-2.4.8-AHN4Trglrk37ZVXfAlvIvsText.ProtocolBuffers.BasicText.ProtocolBuffers.Header Text.ProtocolBuffers.WireMessageText.ProtocolBuffers.Get Text.ProtocolBuffers.Identifiers Text.ProtocolBuffers.Reflections Text.ProtocolBuffers.TextMessageText.ProtocolBuffers.UnknownText.ProtocolBuffers.ExtensionsText.ProtocolBuffersghc-prim GHC.TypesBoolDoubleFloatbaseGHC.IntInt32Int64GHC.BaseMaybeGHC.WordWord32Word64 Data.Maybe fromMaybeapbytestring-0.10.8.2Data.ByteString.Lazy.Internal ByteStringbinary-0.8.5.1Data.Binary.PutputLazyByteStringrunPutPutData.ByteString.Lazy.Char8packcontainers-0.5.10.2Data.Sequence.InternalSeqData.Set.InternalfromDistinctAscListmember mtl-2.2.1-DscMMmDQUE6GBfOSl4qMUHControl.Monad.Error.Class catchError throwError$parsec-3.1.11-Jx0X6lpzdHgC5NMoYR1Rc5Text.Parsec.CharspacesText.Parsec.CombinatorsepEndBychoiceText.Parsec.PrimtryDefault defaultValue Mergeable mergeAppend mergeConcatWireSizeEnumCode getEnumCode FieldType getFieldTypeWireType getWireTypeFieldId getFieldIdWireTag getWireTagUtf8utf8 isValidUTF8toUtf8 uToString uFromString $fMonoidUtf8$fSemigroupUtf8 $fShowUtf8 $fReadUtf8$fBoundedFieldId$fBoundedWireType$fBoundedFieldType$fBoundedEnumCode $fDefaultUtf8$fDefaultByteString $fDefaultSeq$fDefaultMaybe $fDefaultBool$fDefaultDouble$fDefaultFloat$fDefaultInt32$fDefaultInt64$fDefaultWord32$fDefaultWord64$fMergeableWord64$fMergeableWord32$fMergeableInt64$fMergeableInt32$fMergeableFloat$fMergeableDouble$fMergeableByteString$fMergeableUtf8$fMergeableBool$fMergeableSeq$fMergeableMaybe $fDataUtf8$fEqUtf8 $fOrdUtf8 $fEqWireTag $fOrdWireTag $fEnumWireTag $fReadWireTag $fShowWireTag $fNumWireTag $fBitsWireTag$fBoundedWireTag $fDataWireTag $fEqFieldId $fOrdFieldId $fEnumFieldId $fReadFieldId $fShowFieldId $fNumFieldId $fDataFieldId $fIxFieldId $fEqWireType $fOrdWireType$fEnumWireType$fReadWireType$fShowWireType $fNumWireType$fDataWireType $fEqFieldType$fOrdFieldType$fEnumFieldType$fReadFieldType$fShowFieldType$fNumFieldType$fDataFieldType $fEqEnumCode $fOrdEnumCode$fReadEnumCode$fShowEnumCode $fNumEnumCode$fDataEnumCodeGetResultFailedFinishedPartialdecode7unrolleddecode7 decode7size lookAhead lookAheadM lookAheadErunGet runGetAll getAvailable putAvailablesuspendUntilComplete ensureBytesgetLazyByteStringskip bytesRead remainingisEmpty isReallyEmpty highBitRunspanOf getByteString getWordhostgetWord8 getWord16be getWord16le getWord16host getWord32be getWord32le getWord32host getWord64be getWord64le getWord64host getStorable $fShowResult$fShowFrameStack$fAlternativeGet$fApplicativeGet$fMonadPlusGet$fMonadError[]Get $fMonadGet $fFunctorGet$fMonadSuspendGet$fShowSManglemangleDottedunconsconsdotvalidIvalidDIsplitPFNamePMNameFFNameffNameFMNamefmNameFINamefiNameDINamediNameFNamefNameMNamemNameINameiNameunulltoString fromStringjoinPMjoinPFdifisplitDIsplitFIsplitFM promoteDI promoteFI promoteFM promoteFFdotFMdotFFfqAppend checkDIString checkDIUtf8 $fShowIName $fReadIName $fShowMName $fReadMName $fShowFName $fReadFName $fShowDIName $fReadDIName $fShowFIName $fReadFIName $fShowFMName $fReadFMName $fShowFFName $fReadFFName $fDotted[] $fDottedUtf8$fMangleFINamePFName$fMangleDINamePFName$fMangleFINamePMName$fMangleDINamePMName$fMangleMNameFName$fMangleINameFName$fMangleINameFName0$fMangleFNameMName$fMangleINameMName$fMangleINameMName0 $fDataIName $fEqIName $fOrdIName $fDataMName $fEqMName $fOrdMName $fDataFName $fEqFName $fOrdFName $fDataDIName $fEqDIName $fOrdDIName $fDataFIName $fEqFIName $fOrdFIName $fDataFMName $fEqFMName $fOrdFMName $fDataFFName $fEqFFName $fOrdFFName $fShowPMName $fDataPMName $fReadPMName $fEqPMName $fOrdPMName $fShowPFName $fDataPFName $fReadPFName $fEqPFName $fOrdPFNameReflectDescriptorgetMessageInforeflectDescriptorInfo ReflectEnum reflectEnumreflectEnumInfo parentOfEnum EnumInfoAppEnumInfoenumName enumFilePath enumValues OneofInfo oneofName oneofFName oneofFilePath oneofFieldsoneofMakeLenses SomeRealFloat SRF'RationalSRF'nanSRF'ninfSRF'inf HsDefault HsDef'BoolHsDef'ByteStringHsDef'RealFloat HsDef'Integer HsDef'Enum FieldInfo fieldName fieldNumberwireTag packedTag wireTagLengthisPacked isRequired canRepeat mightPacktypeCodetypeName hsRawDefault hsDefaultKeyInfoGetMessageInfo requiredTags allowedTagsDescriptorInfodescName descFilePathisGroupfields descOneofskeys extRanges knownKeys storeUnknown lazyFields makeLenses ProtoInfoprotoMod protoFilePath protoSource extensionKeysmessagesenumsoneofs knownKeyMap ProtoFName protobufName'haskellPrefix' parentModule' baseName'baseNamePrefix' ProtoName protobufName haskellPrefix parentModulebaseNamemakePNFtoRFfromRF$fShowProtoName$fReadProtoName $fEqProtoName$fOrdProtoName$fDataProtoName$fShowProtoFName$fReadProtoFName$fEqProtoFName$fOrdProtoFName$fDataProtoFName$fShowGetMessageInfo$fReadGetMessageInfo$fEqGetMessageInfo$fOrdGetMessageInfo$fDataGetMessageInfo$fShowSomeRealFloat$fReadSomeRealFloat$fEqSomeRealFloat$fOrdSomeRealFloat$fDataSomeRealFloat$fShowHsDefault$fReadHsDefault $fEqHsDefault$fOrdHsDefault$fDataHsDefault$fShowFieldInfo$fReadFieldInfo $fEqFieldInfo$fOrdFieldInfo$fDataFieldInfo$fShowOneofInfo$fReadOneofInfo $fEqOneofInfo$fOrdOneofInfo$fDataOneofInfo$fShowDescriptorInfo$fReadDescriptorInfo$fEqDescriptorInfo$fOrdDescriptorInfo$fDataDescriptorInfo$fShowEnumInfo$fReadEnumInfo $fEqEnumInfo $fOrdEnumInfo$fDataEnumInfo$fShowProtoInfo$fReadProtoInfo $fEqProtoInfo$fOrdProtoInfo$fDataProtoInfoTextTypetellTgetTTextMsgtextPuttextGettellShowtellSubMessagemessagePutTextgetRead getSubMessagemessageGetText $fTextTypeSeq$fTextTypeMaybe$fTextTypeByteString$fTextTypeUtf8$fTextTypeFloat$fTextTypeDouble$fTextTypeBool$fTextTypeWord64$fTextTypeWord32$fTextTypeInt64$fTextTypeInt32WirewireSizewirePutwireGet wireGetPacked messageSizemessageWithLengthSizemessageAsFieldSize messagePutmessageWithLengthPut messagePutMmessageWithLengthPutMmessageAsFieldPutM messageGetmessageWithLengthGet messageGetMmessageWithLengthGetMmessageAsFieldGetM getFromBS runGetOnLazyprependMessageSize wirePutReq wirePutOpt wirePutRep wirePutPacked wireSizeReq wireSizeOpt wireSizeRepwireSizePackedputSizetoPackedWireTag toWireTag mkWireTag splitWireTag fieldIdOfwireGetPackedEnumgetMessageWithgetBareMessageWith unknownFieldunknowncastWord32ToFloatcastFloatToWord32castWord64ToDoublecastDoubleToWord64 wireSizeErr wirePutErr wireGetErr wireGetEnum size'WireTag zzEncode32 zzEncode64 zzDecode32 zzDecode64 getVarInt putVarUIntwireGetFromWire toWireType $fWireInt$fWireByteString $fWireUtf8 $fWireBool $fWireWord32 $fWireWord64 $fWireInt32 $fWireInt64 $fWireFloat $fWireDoubleUnknownFieldValueUFV UnknownFieldUnknownMessagegetUnknownFieldputUnknownFieldwireSizeUnknownFieldwirePutUnknownField catch'Unknown$fDefaultUnknownField$fMergeableUnknownField$fEqUnknownFieldValue$fOrdUnknownFieldValue$fShowUnknownFieldValue$fReadUnknownFieldValue$fDataUnknownFieldValue$fEqUnknownField$fOrdUnknownField$fShowUnknownField$fReadUnknownField$fDataUnknownField MessageAPIgetValisSetGPBExtKeyputExtgetExtclearExt wireGetKey ExtendMessage getExtField putExtFieldvalidExtRangesExtFieldEP ExtFieldValue ExtFromWire ExtOptional ExtRepeated ExtPacked PackedSeq unPackedSeqKey getKeyFieldIdgetKeyFieldTypegetKeyDefaultValuewireGetKeyToUnPackedwireGetKeyToPackedwireSizeExtFieldwirePutExtField notExtension loadExtension $fGPBWord64 $fGPBWord32 $fGPBInt64 $fGPBInt32 $fGPBFloat $fGPBDouble $fGPBUtf8$fGPBByteString $fGPBBool$fShowGPDynSeq $fOrdGPDynSeq $fEqGPDynSeq $fShowGPDyn $fOrdGPDyn $fEqGPDyn$fDefaultExtField$fMergeableExtField$fDataExtField$fExtendMessageDummyMessageType$fExtKeyPackedSeq $fExtKeySeq $fExtKeyMaybe$fEqExtFieldValue $fShowKey$fMessageAPImsg(->)Word64$fMessageAPImsg(->)Word32$fMessageAPImsg(->)Int64$fMessageAPImsg(->)Int32$fMessageAPImsg(->)Float$fMessageAPImsg(->)Double$fMessageAPImsg(->)Utf8$fMessageAPImsg(->)ByteString$fMessageAPImsgKeySeq$fMessageAPImsgKeyv$fMessageAPImsg(->)Seq$fMessageAPImsg(->)a$fDataEP$fEqEP$fOrdEP$fShowEP$fDataExtDataPair$fShowExtDataPair$fOrdExtFieldValue$fShowExtFieldValue $fEqExtField $fOrdExtField$fShowExtFieldappendemptyBSGHC.EnumEnumNothingMonoidmempty MonadSuspendsuspendJust Data.EitherLeftRight suspendMsgdiscardInnerHandler splitAtOrDieunGet FrameStack ErrorFrame HandlerFrameT2TUTU'OKT3S_top_currentconsumed. splitUtf8 splitStringreserved Text.ReadreadGHC.ShowshowSetStringGHC.Errerror skipGroupTrueFalse ExtDataPairGPDynSeqGPDyn dataToList dataFromList ty_ExtField con_ExtFieldparseWireExtMaybe chooseGetapplyGetEitherparseWireExtSeq Data.DataDatagfoldlgunfoldtoConstr dataTypeOf dataCast1 dataCast2gmapTgmapQlgmapQrgmapQgmapQigmapMgmapMpgmapMo