úÎ!øÎ&      !"#$%None*9;F_akÒ json-syntax^A key-value pair in a JSON object. The name of this type is taken from section 4 of RFC 7159. json-syntaxªExceptions that can happen while parsing JSON. Do not pattern match on values of this type. New data constructors may be added at any time without a major version bump. json-syntaxZThe JSON syntax tree described by the ABNF in RFC 7159. Notable design decisions include:True and False³ are their own data constructors rather than being lumped together under a data constructor for boolean values. This improves performance when decoding the syntax tree to a Bool.Object€ uses an association list rather than a hash map. This is the data type that key-value pairs can be parsed into most cheaply.Object and Array both use & rather than using  SmallArrayx or cons-list directly. This a middle ground between those two types. We get the efficent use of cache lines that  SmallArray& offers, and we get the worst-case O(1)X appends that cons-list offers. Users will typically fold over the elements with the Foldable instance of &%, although there are functions in  Data.Chunks- that efficently perform other operations. json-syntax/Decode a JSON syntax tree from a byte sequence.  '      !"#$%&'()*)json-syntax-0.1.0.0-4h3IJ2Ssu0yuk6synpYzPJsonMemberkeyvalueSyntaxException EmptyInput ExpectedColonExpectedCommaOrRightBracket ExpectedFalse ExpectedNull ExpectedQuoteExpectedQuoteOrRightBrace ExpectedTrueIncompleteArrayIncompleteEscapeSequenceIncompleteObjectIncompleteStringInvalidEscapeSequence InvalidLeader InvalidNumber LeadingZeroUnexpectedLeftoversValueObjectArrayStringNumberNullTrueFalsedecode$fEqSyntaxException$fShowSyntaxException$fExceptionSyntaxException $fEqMember $fShowMember $fEqValue $fShowValue+array-chunks-0.1.1.0-LXva4PMkBEJ7VUtN7lt5zL Data.ChunksChunks