ÿØÿà JFIF    ÿÛ „ ( %!1!%*+...983,7(-.- PK]fE..XS.pmnu6$=head1 NAME JSON::XS - JSON serialising/deserialising, done correctly and fast =encoding utf-8 JSON::XS - 正しくて高速な JSON シリアライザ/デシリアライザ (http://fleur.hio.jp/perldoc/mix/lib/JSON/XS.html) =head1 SYNOPSIS use JSON::XS; # exported functions, they croak on error # and expect/generate UTF-8 $utf8_encoded_json_text = encode_json $perl_hash_or_arrayref; $perl_hash_or_arrayref = decode_json $utf8_encoded_json_text; # OO-interface $coder = JSON::XS->new->ascii->pretty->allow_nonref; $pretty_printed_unencoded = $coder->encode ($perl_scalar); $perl_scalar = $coder->decode ($unicode_json_text); # Note that JSON version 2.0 and above will automatically use JSON::XS # if available, at virtually no speed overhead either, so you should # be able to just: use JSON; # and do the same things, except that you have a pure-perl fallback now. =head1 DESCRIPTION This module converts Perl data structures to JSON and vice versa. Its primary goal is to be I and its secondary goal is to be I. To reach the latter goal it was written in C. See MAPPING, below, on how JSON::XS maps perl values to JSON values and vice versa. =head2 FEATURES =over =item * correct Unicode handling This module knows how to handle Unicode, documents how and when it does so, and even documents what "correct" means. =item * round-trip integrity When you serialise a perl data structure using only data types supported by JSON and Perl, the deserialised data structure is identical on the Perl level. (e.g. the string "2.0" doesn't suddenly become "2" just because it looks like a number). There I minor exceptions to this, read the MAPPING section below to learn about those. =item * strict checking of JSON correctness There is no guessing, no generating of illegal JSON texts by default, and only JSON is accepted as input by default (the latter is a security feature). =item * fast Compared to other JSON modules and other serialisers such as Storable, this module usually compares favourably in terms of speed, too. =item * simple to use This module has both a simple functional interface as well as an object oriented interface. =item * reasonably versatile output formats You can choose between the most compact guaranteed-single-line format possible (nice for simple line-based protocols), a pure-ASCII format (for when your transport is not 8-bit clean, still supports the whole Unicode range), or a pretty-printed format (for when you want to read that stuff). Or you can combine those features in whatever way you like. =back =cut package JSON::XS; use common::sense; our $VERSION = '4.03'; our @ISA = qw(Exporter); our @EXPORT = qw(encode_json decode_json); use Exporter; use XSLoader; use Types::Serialiser (); =head1 FUNCTIONAL INTERFACE The following convenience methods are provided by this module. They are exported by default: =over =item $json_text = encode_json $perl_scalar Converts the given Perl data structure to a UTF-8 encoded, binary string (that is, the string contains octets only). Croaks on error. This function call is functionally identical to: $json_text = JSON::XS->new->utf8->encode ($perl_scalar) Except being faster. =item $perl_scalar = decode_json $json_text The opposite of C: expects a UTF-8 (binary) string and tries to parse that as a UTF-8 encoded JSON text, returning the resulting reference. Croaks on error. This function call is functionally identical to: $perl_scalar = JSON::XS->new->utf8->decode ($json_text) Except being faster. =back =head1 A FEW NOTES ON UNICODE AND PERL Since this often leads to confusion, here are a few very clear words on how Unicode works in Perl, modulo bugs. =over =item 1. Perl strings can store characters with ordinal values > 255. This enables you to store Unicode characters as single characters in a Perl string - very natural. =item 2. Perl does I associate an encoding with your strings. ... until you force it to, e.g. when matching it against a regex, or printing the scalar to a file, in which case Perl either interprets your string as locale-encoded text, octets/binary, or as Unicode, depending on various settings. In no case is an encoding stored together with your data, it is I that decides encoding, not any magical meta data. =item 3. The internal utf-8 flag has no meaning with regards to the encoding of your string. Just ignore that flag unless you debug a Perl bug, a module written in XS or want to dive into the internals of perl. Otherwise it will only confuse you, as, despite the name, it says nothing about how your string is encoded. You can have Unicode strings with that flag set, with that flag clear, and you can have binary data with that flag set and that flag clear. Other possibilities exist, too. If you didn't know about that flag, just the better, pretend it doesn't exist. =item 4. A "Unicode String" is simply a string where each character can be validly interpreted as a Unicode code point. If you have UTF-8 encoded data, it is no longer a Unicode string, but a Unicode string encoded in UTF-8, giving you a binary string. =item 5. A string containing "high" (> 255) character values is I a UTF-8 string. It's a fact. Learn to live with it. =back I hope this helps :) =head1 OBJECT-ORIENTED INTERFACE The object oriented interface lets you configure your own encoding or decoding style, within the limits of supported formats. =over =item $json = new JSON::XS Creates a new JSON::XS object that can be used to de/encode JSON strings. All boolean flags described below are by default I (with the exception of C, which defaults to I since version C<4.0>). The mutators for flags all return the JSON object again and thus calls can be chained: my $json = JSON::XS->new->utf8->space_after->encode ({a => [1,2]}) => {"a": [1, 2]} =item $json = $json->ascii ([$enable]) =item $enabled = $json->get_ascii If C<$enable> is true (or missing), then the C method will not generate characters outside the code range C<0..127> (which is ASCII). Any Unicode characters outside that range will be escaped using either a single \uXXXX (BMP characters) or a double \uHHHH\uLLLLL escape sequence, as per RFC4627. The resulting encoded JSON text can be treated as a native Unicode string, an ascii-encoded, latin1-encoded or UTF-8 encoded string, or any other superset of ASCII. If C<$enable> is false, then the C method will not escape Unicode characters unless required by the JSON syntax or other flags. This results in a faster and more compact format. See also the section I later in this document. The main use for this flag is to produce JSON texts that can be transmitted over a 7-bit channel, as the encoded JSON texts will not contain any 8 bit characters. JSON::XS->new->ascii (1)->encode ([chr 0x10401]) => ["\ud801\udc01"] =item $json = $json->latin1 ([$enable]) =item $enabled = $json->get_latin1 If C<$enable> is true (or missing), then the C method will encode the resulting JSON text as latin1 (or iso-8859-1), escaping any characters outside the code range C<0..255>. The resulting string can be treated as a latin1-encoded JSON text or a native Unicode string. The C method will not be affected in any way by this flag, as C by default expects Unicode, which is a strict superset of latin1. If C<$enable> is false, then the C method will not escape Unicode characters unless required by the JSON syntax or other flags. See also the section I later in this document. The main use for this flag is efficiently encoding binary data as JSON text, as most octets will not be escaped, resulting in a smaller encoded size. The disadvantage is that the resulting JSON text is encoded in latin1 (and must correctly be treated as such when storing and transferring), a rare encoding for JSON. It is therefore most useful when you want to store data structures known to contain binary data efficiently in files or databases, not when talking to other JSON encoders/decoders. JSON::XS->new->latin1->encode (["\x{89}\x{abc}"] => ["\x{89}\\u0abc"] # (perl syntax, U+abc escaped, U+89 not) =item $json = $json->utf8 ([$enable]) =item $enabled = $json->get_utf8 If C<$enable> is true (or missing), then the C method will encode the JSON result into UTF-8, as required by many protocols, while the C method expects to be handed a UTF-8-encoded string. Please note that UTF-8-encoded strings do not contain any characters outside the range C<0..255>, they are thus useful for bytewise/binary I/O. In future versions, enabling this option might enable autodetection of the UTF-16 and UTF-32 encoding families, as described in RFC4627. If C<$enable> is false, then the C method will return the JSON string as a (non-encoded) Unicode string, while C expects thus a Unicode string. Any decoding or encoding (e.g. to UTF-8 or UTF-16) needs to be done yourself, e.g. using the Encode module. See also the section I later in this document. Example, output UTF-16BE-encoded JSON: use Encode; $jsontext = encode "UTF-16BE", JSON::XS->new->encode ($object); Example, decode UTF-32LE-encoded JSON: use Encode; $object = JSON::XS->new->decode (decode "UTF-32LE", $jsontext); =item $json = $json->pretty ([$enable]) This enables (or disables) all of the C, C and C (and in the future possibly more) flags in one call to generate the most readable (or most compact) form possible. Example, pretty-print some simple structure: my $json = JSON::XS->new->pretty(1)->encode ({a => [1,2]}) => { "a" : [ 1, 2 ] } =item $json = $json->indent ([$enable]) =item $enabled = $json->get_indent If C<$enable> is true (or missing), then the C method will use a multiline format as output, putting every array member or object/hash key-value pair into its own line, indenting them properly. If C<$enable> is false, no newlines or indenting will be produced, and the resulting JSON text is guaranteed not to contain any C. This setting has no effect when decoding JSON texts. =item $json = $json->space_before ([$enable]) =item $enabled = $json->get_space_before If C<$enable> is true (or missing), then the C method will add an extra optional space before the C<:> separating keys from values in JSON objects. If C<$enable> is false, then the C method will not add any extra space at those places. This setting has no effect when decoding JSON texts. You will also most likely combine this setting with C. Example, space_before enabled, space_after and indent disabled: {"key" :"value"} =item $json = $json->space_after ([$enable]) =item $enabled = $json->get_space_after If C<$enable> is true (or missing), then the C method will add an extra optional space after the C<:> separating keys from values in JSON objects and extra whitespace after the C<,> separating key-value pairs and array members. If C<$enable> is false, then the C method will not add any extra space at those places. This setting has no effect when decoding JSON texts. Example, space_before and indent disabled, space_after enabled: {"key": "value"} =item $json = $json->relaxed ([$enable]) =item $enabled = $json->get_relaxed If C<$enable> is true (or missing), then C will accept some extensions to normal JSON syntax (see below). C will not be affected in any way. I. I suggest only to use this option to parse application-specific files written by humans (configuration files, resource files etc.) If C<$enable> is false (the default), then C will only accept valid JSON texts. Currently accepted extensions are: =over =item * list items can have an end-comma JSON I array elements and key-value pairs with commas. This can be annoying if you write JSON texts manually and want to be able to quickly append elements, so this extension accepts comma at the end of such items not just between them: [ 1, 2, <- this comma not normally allowed ] { "k1": "v1", "k2": "v2", <- this comma not normally allowed } =item * shell-style '#'-comments Whenever JSON allows whitespace, shell-style comments are additionally allowed. They are terminated by the first carriage-return or line-feed character, after which more white-space and comments are allowed. [ 1, # this comment not allowed in JSON # neither this one... ] =item * literal ASCII TAB characters in strings Literal ASCII TAB characters are now allowed in strings (and treated as C<\t>). [ "Hello\tWorld", "HelloWorld", # literal would not normally be allowed ] =back =item $json = $json->canonical ([$enable]) =item $enabled = $json->get_canonical If C<$enable> is true (or missing), then the C method will output JSON objects by sorting their keys. This is adding a comparatively high overhead. If C<$enable> is false, then the C method will output key-value pairs in the order Perl stores them (which will likely change between runs of the same script, and can change even within the same run from 5.18 onwards). This option is useful if you want the same data structure to be encoded as the same JSON text (given the same overall settings). If it is disabled, the same hash might be encoded differently even if contains the same data, as key-value pairs have no inherent ordering in Perl. This setting has no effect when decoding JSON texts. This setting has currently no effect on tied hashes. =item $json = $json->allow_nonref ([$enable]) =item $enabled = $json->get_allow_nonref Unlike other boolean options, this opotion is enabled by default beginning with version C<4.0>. See L for the gory details. If C<$enable> is true (or missing), then the C method can convert a non-reference into its corresponding string, number or null JSON value, which is an extension to RFC4627. Likewise, C will accept those JSON values instead of croaking. If C<$enable> is false, then the C method will croak if it isn't passed an arrayref or hashref, as JSON texts must either be an object or array. Likewise, C will croak if given something that is not a JSON object or array. Example, encode a Perl scalar as JSON value without enabled C, resulting in an error: JSON::XS->new->allow_nonref (0)->encode ("Hello, World!") => hash- or arrayref expected... =item $json = $json->allow_unknown ([$enable]) =item $enabled = $json->get_allow_unknown If C<$enable> is true (or missing), then C will I throw an exception when it encounters values it cannot represent in JSON (for example, filehandles) but instead will encode a JSON C value. Note that blessed objects are not included here and are handled separately by c. If C<$enable> is false (the default), then C will throw an exception when it encounters anything it cannot encode as JSON. This option does not affect C in any way, and it is recommended to leave it off unless you know your communications partner. =item $json = $json->allow_blessed ([$enable]) =item $enabled = $json->get_allow_blessed See L for details. If C<$enable> is true (or missing), then the C method will not barf when it encounters a blessed reference that it cannot convert otherwise. Instead, a JSON C value is encoded instead of the object. If C<$enable> is false (the default), then C will throw an exception when it encounters a blessed object that it cannot convert otherwise. This setting has no effect on C. =item $json = $json->convert_blessed ([$enable]) =item $enabled = $json->get_convert_blessed See L for details. If C<$enable> is true (or missing), then C, upon encountering a blessed object, will check for the availability of the C method on the object's class. If found, it will be called in scalar context and the resulting scalar will be encoded instead of the object. The C method may safely call die if it wants. If C returns other blessed objects, those will be handled in the same way. C must take care of not causing an endless recursion cycle (== crash) in this case. The name of C was chosen because other methods called by the Perl core (== not by the user of the object) are usually in upper case letters and to avoid collisions with any C function or method. If C<$enable> is false (the default), then C will not consider this type of conversion. This setting has no effect on C. =item $json = $json->allow_tags ([$enable]) =item $enabled = $json->get_allow_tags See L for details. If C<$enable> is true (or missing), then C, upon encountering a blessed object, will check for the availability of the C method on the object's class. If found, it will be used to serialise the object into a nonstandard tagged JSON value (that JSON decoders cannot decode). It also causes C to parse such tagged JSON values and deserialise them via a call to the C method. If C<$enable> is false (the default), then C will not consider this type of conversion, and tagged JSON values will cause a parse error in C, as if tags were not part of the grammar. =item $json->boolean_values ([$false, $true]) =item ($false, $true) = $json->get_boolean_values By default, JSON booleans will be decoded as overloaded C<$Types::Serialiser::false> and C<$Types::Serialiser::true> objects. With this method you can specify your own boolean values for decoding - on decode, JSON C will be decoded as a copy of C<$false>, and JSON C will be decoded as C<$true> ("copy" here is the same thing as assigning a value to another variable, i.e. C<$copy = $false>). Calling this method without any arguments will reset the booleans to their default values. C will return both C<$false> and C<$true> values, or the empty list when they are set to the default. =item $json = $json->filter_json_object ([$coderef->($hashref)]) When C<$coderef> is specified, it will be called from C each time it decodes a JSON object. The only argument is a reference to the newly-created hash. If the code reference returns a single scalar (which need not be a reference), this value (or rather a copy of it) is inserted into the deserialised data structure. If it returns an empty list (NOTE: I C, which is a valid scalar), the original deserialised hash will be inserted. This setting can slow down decoding considerably. When C<$coderef> is omitted or undefined, any existing callback will be removed and C will not change the deserialised hash in any way. Example, convert all JSON objects into the integer 5: my $js = JSON::XS->new->filter_json_object (sub { 5 }); # returns [5] $js->decode ('[{}]') # throw an exception because allow_nonref is not enabled # so a lone 5 is not allowed. $js->decode ('{"a":1, "b":2}'); =item $json = $json->filter_json_single_key_object ($key [=> $coderef->($value)]) Works remotely similar to C, but is only called for JSON objects having a single key named C<$key>. This C<$coderef> is called before the one specified via C, if any. It gets passed the single value in the JSON object. If it returns a single value, it will be inserted into the data structure. If it returns nothing (not even C but the empty list), the callback from C will be called next, as if no single-key callback were specified. If C<$coderef> is omitted or undefined, the corresponding callback will be disabled. There can only ever be one callback for a given key. As this callback gets called less often then the C one, decoding speed will not usually suffer as much. Therefore, single-key objects make excellent targets to serialise Perl objects into, especially as single-key JSON objects are as close to the type-tagged value concept as JSON gets (it's basically an ID/VALUE tuple). Of course, JSON does not support this in any way, so you need to make sure your data never looks like a serialised Perl hash. Typical names for the single object key are C<__class_whatever__>, or C<$__dollars_are_rarely_used__$> or C<}ugly_brace_placement>, or even things like C<__class_md5sum(classname)__>, to reduce the risk of clashing with real hashes. Example, decode JSON objects of the form C<< { "__widget__" => } >> into the corresponding C<< $WIDGET{} >> object: # return whatever is in $WIDGET{5}: JSON::XS ->new ->filter_json_single_key_object (__widget__ => sub { $WIDGET{ $_[0] } }) ->decode ('{"__widget__": 5') # this can be used with a TO_JSON method in some "widget" class # for serialisation to json: sub WidgetBase::TO_JSON { my ($self) = @_; unless ($self->{id}) { $self->{id} = ..get..some..id..; $WIDGET{$self->{id}} = $self; } { __widget__ => $self->{id} } } =item $json = $json->shrink ([$enable]) =item $enabled = $json->get_shrink Perl usually over-allocates memory a bit when allocating space for strings. This flag optionally resizes strings generated by either C or C to their minimum size possible. This can save memory when your JSON texts are either very very long or you have many short strings. It will also try to downgrade any strings to octet-form if possible: perl stores strings internally either in an encoding called UTF-X or in octet-form. The latter cannot store everything but uses less space in general (and some buggy Perl or C code might even rely on that internal representation being used). The actual definition of what shrink does might change in future versions, but it will always try to save space at the expense of time. If C<$enable> is true (or missing), the string returned by C will be shrunk-to-fit, while all strings generated by C will also be shrunk-to-fit. If C<$enable> is false, then the normal perl allocation algorithms are used. If you work with your data, then this is likely to be faster. In the future, this setting might control other things, such as converting strings that look like integers or floats into integers or floats internally (there is no difference on the Perl level), saving space. =item $json = $json->max_depth ([$maximum_nesting_depth]) =item $max_depth = $json->get_max_depth Sets the maximum nesting level (default C<512>) accepted while encoding or decoding. If a higher nesting level is detected in JSON text or a Perl data structure, then the encoder and decoder will stop and croak at that point. Nesting level is defined by number of hash- or arrayrefs that the encoder needs to traverse to reach a given point or the number of C<{> or C<[> characters without their matching closing parenthesis crossed to reach a given character in a string. Setting the maximum depth to one disallows any nesting, so that ensures that the object is only a single hash/object or array. If no argument is given, the highest possible setting will be used, which is rarely useful. Note that nesting is implemented by recursion in C. The default value has been chosen to be as large as typical operating systems allow without crashing. See SECURITY CONSIDERATIONS, below, for more info on why this is useful. =item $json = $json->max_size ([$maximum_string_size]) =item $max_size = $json->get_max_size Set the maximum length a JSON text may have (in bytes) where decoding is being attempted. The default is C<0>, meaning no limit. When C is called on a string that is longer then this many bytes, it will not attempt to decode the string but throw an exception. This setting has no effect on C (yet). If no argument is given, the limit check will be deactivated (same as when C<0> is specified). See SECURITY CONSIDERATIONS, below, for more info on why this is useful. =item $json_text = $json->encode ($perl_scalar) Converts the given Perl value or data structure to its JSON representation. Croaks on error. =item $perl_scalar = $json->decode ($json_text) The opposite of C: expects a JSON text and tries to parse it, returning the resulting simple scalar or reference. Croaks on error. =item ($perl_scalar, $characters) = $json->decode_prefix ($json_text) This works like the C method, but instead of raising an exception when there is trailing garbage after the first JSON object, it will silently stop parsing there and return the number of characters consumed so far. This is useful if your JSON texts are not delimited by an outer protocol and you need to know where the JSON text ends. JSON::XS->new->decode_prefix ("[1] the tail") => ([1], 3) =back =head1 INCREMENTAL PARSING In some cases, there is the need for incremental parsing of JSON texts. While this module always has to keep both JSON text and resulting Perl data structure in memory at one time, it does allow you to parse a JSON stream incrementally. It does so by accumulating text until it has a full JSON object, which it then can decode. This process is similar to using C to see if a full JSON object is available, but is much more efficient (and can be implemented with a minimum of method calls). JSON::XS will only attempt to parse the JSON text once it is sure it has enough text to get a decisive result, using a very simple but truly incremental parser. This means that it sometimes won't stop as early as the full parser, for example, it doesn't detect mismatched parentheses. The only thing it guarantees is that it starts decoding as soon as a syntactically valid JSON text has been seen. This means you need to set resource limits (e.g. C) to ensure the parser will stop parsing in the presence if syntax errors. The following methods implement this incremental parser. =over =item [void, scalar or list context] = $json->incr_parse ([$string]) This is the central parsing function. It can both append new text and extract objects from the stream accumulated so far (both of these functions are optional). If C<$string> is given, then this string is appended to the already existing JSON fragment stored in the C<$json> object. After that, if the function is called in void context, it will simply return without doing anything further. This can be used to add more text in as many chunks as you want. If the method is called in scalar context, then it will try to extract exactly I JSON object. If that is successful, it will return this object, otherwise it will return C. If there is a parse error, this method will croak just as C would do (one can then use C to skip the erroneous part). This is the most common way of using the method. And finally, in list context, it will try to extract as many objects from the stream as it can find and return them, or the empty list otherwise. For this to work, there must be no separators (other than whitespace) between the JSON objects or arrays, instead they must be concatenated back-to-back. If an error occurs, an exception will be raised as in the scalar context case. Note that in this case, any previously-parsed JSON texts will be lost. Example: Parse some JSON arrays/objects in a given string and return them. my @objs = JSON::XS->new->incr_parse ("[5][7][1,2]"); =item $lvalue_string = $json->incr_text This method returns the currently stored JSON fragment as an lvalue, that is, you can manipulate it. This I works when a preceding call to C in I successfully returned an object. Under all other circumstances you must not call this function (I mean it. although in simple tests it might actually work, it I fail under real world conditions). As a special exception, you can also call this method before having parsed anything. That means you can only use this function to look at or manipulate text before or after complete JSON objects, not while the parser is in the middle of parsing a JSON object. This function is useful in two cases: a) finding the trailing text after a JSON object or b) parsing multiple JSON objects separated by non-JSON text (such as commas). =item $json->incr_skip This will reset the state of the incremental parser and will remove the parsed text from the input buffer so far. This is useful after C died, in which case the input buffer and incremental parser state is left unchanged, to skip the text parsed so far and to reset the parse state. The difference to C is that only text until the parse error occurred is removed. =item $json->incr_reset This completely resets the incremental parser, that is, after this call, it will be as if the parser had never parsed anything. This is useful if you want to repeatedly parse JSON objects and want to ignore any trailing data, which means you have to reset the parser after each successful decode. =back =head2 LIMITATIONS The incremental parser is a non-exact parser: it works by gathering as much text as possible that I be a valid JSON text, followed by trying to decode it. That means it sometimes needs to read more data than strictly necessary to diagnose an invalid JSON text. For example, after parsing the following fragment, the parser I stop with an error, as this fragment I be the beginning of a valid JSON text: [, In reality, hopwever, the parser might continue to read data until a length limit is exceeded or it finds a closing bracket. =head2 EXAMPLES Some examples will make all this clearer. First, a simple example that works similarly to C: We want to decode the JSON object at the start of a string and identify the portion after the JSON object: my $text = "[1,2,3] hello"; my $json = new JSON::XS; my $obj = $json->incr_parse ($text) or die "expected JSON object or array at beginning of string"; my $tail = $json->incr_text; # $tail now contains " hello" Easy, isn't it? Now for a more complicated example: Imagine a hypothetical protocol where you read some requests from a TCP stream, and each request is a JSON array, without any separation between them (in fact, it is often useful to use newlines as "separators", as these get interpreted as whitespace at the start of the JSON text, which makes it possible to test said protocol with C...). Here is how you'd do it (it is trivial to write this in an event-based manner): my $json = new JSON::XS; # read some data from the socket while (sysread $socket, my $buf, 4096) { # split and decode as many requests as possible for my $request ($json->incr_parse ($buf)) { # act on the $request } } Another complicated example: Assume you have a string with JSON objects or arrays, all separated by (optional) comma characters (e.g. C<[1],[2], [3]>). To parse them, we have to skip the commas between the JSON texts, and here is where the lvalue-ness of C comes in useful: my $text = "[1],[2], [3]"; my $json = new JSON::XS; # void context, so no parsing done $json->incr_parse ($text); # now extract as many objects as possible. note the # use of scalar context so incr_text can be called. while (my $obj = $json->incr_parse) { # do something with $obj # now skip the optional comma $json->incr_text =~ s/^ \s* , //x; } Now lets go for a very complex example: Assume that you have a gigantic JSON array-of-objects, many gigabytes in size, and you want to parse it, but you cannot load it into memory fully (this has actually happened in the real world :). Well, you lost, you have to implement your own JSON parser. But JSON::XS can still help you: You implement a (very simple) array parser and let JSON decode the array elements, which are all full JSON objects on their own (this wouldn't work if the array elements could be JSON numbers, for example): my $json = new JSON::XS; # open the monster open my $fh, "incr_parse ($buf); # void context, so no parsing # Exit the loop once we found and removed(!) the initial "[". # In essence, we are (ab-)using the $json object as a simple scalar # we append data to. last if $json->incr_text =~ s/^ \s* \[ //x; } # now we have the skipped the initial "[", so continue # parsing all the elements. for (;;) { # in this loop we read data until we got a single JSON object for (;;) { if (my $obj = $json->incr_parse) { # do something with $obj last; } # add more data sysread $fh, my $buf, 65536 or die "read error: $!"; $json->incr_parse ($buf); # void context, so no parsing } # in this loop we read data until we either found and parsed the # separating "," between elements, or the final "]" for (;;) { # first skip whitespace $json->incr_text =~ s/^\s*//; # if we find "]", we are done if ($json->incr_text =~ s/^\]//) { print "finished.\n"; exit; } # if we find ",", we can continue with the next element if ($json->incr_text =~ s/^,//) { last; } # if we find anything else, we have a parse error! if (length $json->incr_text) { die "parse error near ", $json->incr_text; } # else add more data sysread $fh, my $buf, 65536 or die "read error: $!"; $json->incr_parse ($buf); # void context, so no parsing } This is a complex example, but most of the complexity comes from the fact that we are trying to be correct (bear with me if I am wrong, I never ran the above example :). =head1 MAPPING This section describes how JSON::XS maps Perl values to JSON values and vice versa. These mappings are designed to "do the right thing" in most circumstances automatically, preserving round-tripping characteristics (what you put in comes out as something equivalent). For the more enlightened: note that in the following descriptions, lowercase I refers to the Perl interpreter, while uppercase I refers to the abstract Perl language itself. =head2 JSON -> PERL =over =item object A JSON object becomes a reference to a hash in Perl. No ordering of object keys is preserved (JSON does not preserve object key ordering itself). =item array A JSON array becomes a reference to an array in Perl. =item string A JSON string becomes a string scalar in Perl - Unicode codepoints in JSON are represented by the same codepoints in the Perl string, so no manual decoding is necessary. =item number A JSON number becomes either an integer, numeric (floating point) or string scalar in perl, depending on its range and any fractional parts. On the Perl level, there is no difference between those as Perl handles all the conversion details, but an integer may take slightly less memory and might represent more values exactly than floating point numbers. If the number consists of digits only, JSON::XS will try to represent it as an integer value. If that fails, it will try to represent it as a numeric (floating point) value if that is possible without loss of precision. Otherwise it will preserve the number as a string value (in which case you lose roundtripping ability, as the JSON number will be re-encoded to a JSON string). Numbers containing a fractional or exponential part will always be represented as numeric (floating point) values, possibly at a loss of precision (in which case you might lose perfect roundtripping ability, but the JSON number will still be re-encoded as a JSON number). Note that precision is not accuracy - binary floating point values cannot represent most decimal fractions exactly, and when converting from and to floating point, JSON::XS only guarantees precision up to but not including the least significant bit. =item true, false These JSON atoms become C and C, respectively. They are overloaded to act almost exactly like the numbers C<1> and C<0>. You can check whether a scalar is a JSON boolean by using the C function (after C, of course). =item null A JSON null atom becomes C in Perl. =item shell-style comments (C<< # I >>) As a nonstandard extension to the JSON syntax that is enabled by the C setting, shell-style comments are allowed. They can start anywhere outside strings and go till the end of the line. =item tagged values (C<< (I)I >>). Another nonstandard extension to the JSON syntax, enabled with the C setting, are tagged values. In this implementation, the I must be a perl package/class name encoded as a JSON string, and the I must be a JSON array encoding optional constructor arguments. See L, below, for details. =back =head2 PERL -> JSON The mapping from Perl to JSON is slightly more difficult, as Perl is a truly typeless language, so we can only guess which JSON type is meant by a Perl value. =over =item hash references Perl hash references become JSON objects. As there is no inherent ordering in hash keys (or JSON objects), they will usually be encoded in a pseudo-random order. JSON::XS can optionally sort the hash keys (determined by the I flag), so the same datastructure will serialise to the same JSON text (given same settings and version of JSON::XS), but this incurs a runtime overhead and is only rarely useful, e.g. when you want to compare some JSON text against another for equality. =item array references Perl array references become JSON arrays. =item other references Other unblessed references are generally not allowed and will cause an exception to be thrown, except for references to the integers C<0> and C<1>, which get turned into C and C atoms in JSON. Since C uses the boolean model from L, you can also C and then use C and C to improve readability. use Types::Serialiser; encode_json [\0, Types::Serialiser::true] # yields [false,true] =item Types::Serialiser::true, Types::Serialiser::false These special values from the L module become JSON true and JSON false values, respectively. You can also use C<\1> and C<\0> directly if you want. =item blessed objects Blessed objects are not directly representable in JSON, but C allows various ways of handling objects. See L, below, for details. =item simple scalars Simple Perl scalars (any scalar that is not a reference) are the most difficult objects to encode: JSON::XS will encode undefined scalars as JSON C values, scalars that have last been used in a string context before encoding as JSON strings, and anything else as number value: # dump as number encode_json [2] # yields [2] encode_json [-3.0e17] # yields [-3e+17] my $value = 5; encode_json [$value] # yields [5] # used as string, so dump as string print $value; encode_json [$value] # yields ["5"] # undef becomes null encode_json [undef] # yields [null] You can force the type to be a JSON string by stringifying it: my $x = 3.1; # some variable containing a number "$x"; # stringified $x .= ""; # another, more awkward way to stringify print $x; # perl does it for you, too, quite often You can force the type to be a JSON number by numifying it: my $x = "3"; # some variable containing a string $x += 0; # numify it, ensuring it will be dumped as a number $x *= 1; # same thing, the choice is yours. You can not currently force the type in other, less obscure, ways. Tell me if you need this capability (but don't forget to explain why it's needed :). Note that numerical precision has the same meaning as under Perl (so binary to decimal conversion follows the same rules as in Perl, which can differ to other languages). Also, your perl interpreter might expose extensions to the floating point numbers of your platform, such as infinities or NaN's - these cannot be represented in JSON, and it is an error to pass those in. =back =head2 OBJECT SERIALISATION As JSON cannot directly represent Perl objects, you have to choose between a pure JSON representation (without the ability to deserialise the object automatically again), and a nonstandard extension to the JSON syntax, tagged values. =head3 SERIALISATION What happens when C encounters a Perl object depends on the C, C and C settings, which are used in this order: =over =item 1. C is enabled and the object has a C method. In this case, C uses the L object serialisation protocol to create a tagged JSON value, using a nonstandard extension to the JSON syntax. This works by invoking the C method on the object, with the first argument being the object to serialise, and the second argument being the constant string C to distinguish it from other serialisers. The C method can return any number of values (i.e. zero or more). These values and the paclkage/classname of the object will then be encoded as a tagged JSON value in the following format: ("classname")[FREEZE return values...] e.g.: ("URI")["http://www.google.com/"] ("MyDate")[2013,10,29] ("ImageData::JPEG")["Z3...VlCg=="] For example, the hypothetical C C method might use the objects C and C members to encode the object: sub My::Object::FREEZE { my ($self, $serialiser) = @_; ($self->{type}, $self->{id}) } =item 2. C is enabled and the object has a C method. In this case, the C method of the object is invoked in scalar context. It must return a single scalar that can be directly encoded into JSON. This scalar replaces the object in the JSON text. For example, the following C method will convert all L objects to JSON strings when serialised. The fatc that these values originally were L objects is lost. sub URI::TO_JSON { my ($uri) = @_; $uri->as_string } =item 3. C is enabled. The object will be serialised as a JSON null value. =item 4. none of the above If none of the settings are enabled or the respective methods are missing, C throws an exception. =back =head3 DESERIALISATION For deserialisation there are only two cases to consider: either nonstandard tagging was used, in which case C decides, or objects cannot be automatically be deserialised, in which case you can use postprocessing or the C or C callbacks to get some real objects our of your JSON. This section only considers the tagged value case: I a tagged JSON object is encountered during decoding and C is disabled, a parse error will result (as if tagged values were not part of the grammar). If C is enabled, C will look up the C method of the package/classname used during serialisation (it will not attempt to load the package as a Perl module). If there is no such method, the decoding will fail with an error. Otherwise, the C method is invoked with the classname as first argument, the constant string C as second argument, and all the values from the JSON array (the values originally returned by the C method) as remaining arguments. The method must then return the object. While technically you can return any Perl scalar, you might have to enable the C setting to make that work in all cases, so better return an actual blessed reference. As an example, let's implement a C function that regenerates the C from the C example earlier: sub My::Object::THAW { my ($class, $serialiser, $type, $id) = @_; $class->new (type => $type, id => $id) } =head1 ENCODING/CODESET FLAG NOTES The interested reader might have seen a number of flags that signify encodings or codesets - C, C and C. There seems to be some confusion on what these do, so here is a short comparison: C controls whether the JSON text created by C (and expected by C) is UTF-8 encoded or not, while C and C only control whether C escapes character values outside their respective codeset range. Neither of these flags conflict with each other, although some combinations make less sense than others. Care has been taken to make all flags symmetrical with respect to C and C, that is, texts encoded with any combination of these flag values will be correctly decoded when the same flags are used - in general, if you use different flag settings while encoding vs. when decoding you likely have a bug somewhere. Below comes a verbose discussion of these flags. Note that a "codeset" is simply an abstract set of character-codepoint pairs, while an encoding takes those codepoint numbers and I them, in our case into octets. Unicode is (among other things) a codeset, UTF-8 is an encoding, and ISO-8859-1 (= latin 1) and ASCII are both codesets I encodings at the same time, which can be confusing. =over =item C flag disabled When C is disabled (the default), then C/C generate and expect Unicode strings, that is, characters with high ordinal Unicode values (> 255) will be encoded as such characters, and likewise such characters are decoded as-is, no changes to them will be done, except "(re-)interpreting" them as Unicode codepoints or Unicode characters, respectively (to Perl, these are the same thing in strings unless you do funny/weird/dumb stuff). This is useful when you want to do the encoding yourself (e.g. when you want to have UTF-16 encoded JSON texts) or when some other layer does the encoding for you (for example, when printing to a terminal using a filehandle that transparently encodes to UTF-8 you certainly do NOT want to UTF-8 encode your data first and have Perl encode it another time). =item C flag enabled If the C-flag is enabled, C/C will encode all characters using the corresponding UTF-8 multi-byte sequence, and will expect your input strings to be encoded as UTF-8, that is, no "character" of the input string must have any value > 255, as UTF-8 does not allow that. The C flag therefore switches between two modes: disabled means you will get a Unicode string in Perl, enabled means you get a UTF-8 encoded octet/binary string in Perl. =item C or C flags enabled With C (or C) enabled, C will escape characters with ordinal values > 255 (> 127 with C) and encode the remaining characters as specified by the C flag. If C is disabled, then the result is also correctly encoded in those character sets (as both are proper subsets of Unicode, meaning that a Unicode string with all character values < 256 is the same thing as a ISO-8859-1 string, and a Unicode string with all character values < 128 is the same thing as an ASCII string in Perl). If C is enabled, you still get a correct UTF-8-encoded string, regardless of these flags, just some more characters will be escaped using C<\uXXXX> then before. Note that ISO-8859-1-I strings are not compatible with UTF-8 encoding, while ASCII-encoded strings are. That is because the ISO-8859-1 encoding is NOT a subset of UTF-8 (despite the ISO-8859-1 I being a subset of Unicode), while ASCII is. Surprisingly, C will ignore these flags and so treat all input values as governed by the C flag. If it is disabled, this allows you to decode ISO-8859-1- and ASCII-encoded strings, as both strict subsets of Unicode. If it is enabled, you can correctly decode UTF-8 encoded strings. So neither C nor C are incompatible with the C flag - they only govern when the JSON output engine escapes a character or not. The main use for C is to relatively efficiently store binary data as JSON, at the expense of breaking compatibility with most JSON decoders. The main use for C is to force the output to not contain characters with values > 127, which means you can interpret the resulting string as UTF-8, ISO-8859-1, ASCII, KOI8-R or most about any character set and 8-bit-encoding, and still get the same data structure back. This is useful when your channel for JSON transfer is not 8-bit clean or the encoding might be mangled in between (e.g. in mail), and works because ASCII is a proper subset of most 8-bit and multibyte encodings in use in the world. =back =head2 JSON and ECMAscript JSON syntax is based on how literals are represented in javascript (the not-standardised predecessor of ECMAscript) which is presumably why it is called "JavaScript Object Notation". However, JSON is not a subset (and also not a superset of course) of ECMAscript (the standard) or javascript (whatever browsers actually implement). If you want to use javascript's C function to "parse" JSON, you might run into parse errors for valid JSON texts, or the resulting data structure might not be queryable: One of the problems is that U+2028 and U+2029 are valid characters inside JSON strings, but are not allowed in ECMAscript string literals, so the following Perl fragment will not output something that can be guaranteed to be parsable by javascript's C: use JSON::XS; print encode_json [chr 0x2028]; The right fix for this is to use a proper JSON parser in your javascript programs, and not rely on C (see for example Douglas Crockford's F parser). If this is not an option, you can, as a stop-gap measure, simply encode to ASCII-only JSON: use JSON::XS; print JSON::XS->new->ascii->encode ([chr 0x2028]); Note that this will enlarge the resulting JSON text quite a bit if you have many non-ASCII characters. You might be tempted to run some regexes to only escape U+2028 and U+2029, e.g.: # DO NOT USE THIS! my $json = JSON::XS->new->utf8->encode ([chr 0x2028]); $json =~ s/\xe2\x80\xa8/\\u2028/g; # escape U+2028 $json =~ s/\xe2\x80\xa9/\\u2029/g; # escape U+2029 print $json; Note that I: the above only works for U+2028 and U+2029 and thus only for fully ECMAscript-compliant parsers. Many existing javascript implementations, however, have issues with other characters as well - using C naively simply I cause problems. Another problem is that some javascript implementations reserve some property names for their own purposes (which probably makes them non-ECMAscript-compliant). For example, Iceweasel reserves the C<__proto__> property name for its own purposes. If that is a problem, you could parse try to filter the resulting JSON output for these property strings, e.g.: $json =~ s/"__proto__"\s*:/"__proto__renamed":/g; This works because C<__proto__> is not valid outside of strings, so every occurrence of C<"__proto__"\s*:> must be a string used as property name. If you know of other incompatibilities, please let me know. =head2 JSON and YAML You often hear that JSON is a subset of YAML. This is, however, a mass hysteria(*) and very far from the truth (as of the time of this writing), so let me state it clearly: I that works in all cases. If you really must use JSON::XS to generate YAML, you should use this algorithm (subject to change in future versions): my $to_yaml = JSON::XS->new->utf8->space_after (1); my $yaml = $to_yaml->encode ($ref) . "\n"; This will I generate JSON texts that also parse as valid YAML. Please note that YAML has hardcoded limits on (simple) object key lengths that JSON doesn't have and also has different and incompatible unicode character escape syntax, so you should make sure that your hash keys are noticeably shorter than the 1024 "stream characters" YAML allows and that you do not have characters with codepoint values outside the Unicode BMP (basic multilingual page). YAML also does not allow C<\/> sequences in strings (which JSON::XS does not I generate, but other JSON generators might). There might be other incompatibilities that I am not aware of (or the YAML specification has been changed yet again - it does so quite often). In general you should not try to generate YAML with a JSON generator or vice versa, or try to parse JSON with a YAML parser or vice versa: chances are high that you will run into severe interoperability problems when you least expect it. =over =item (*) I have been pressured multiple times by Brian Ingerson (one of the authors of the YAML specification) to remove this paragraph, despite him acknowledging that the actual incompatibilities exist. As I was personally bitten by this "JSON is YAML" lie, I refused and said I will continue to educate people about these issues, so others do not run into the same problem again and again. After this, Brian called me a (quote)I(unquote). In my opinion, instead of pressuring and insulting people who actually clarify issues with YAML and the wrong statements of some of its proponents, I would kindly suggest reading the JSON spec (which is not that difficult or long) and finally make YAML compatible to it, and educating users about the changes, instead of spreading lies about the real compatibility for many I and trying to silence people who point out that it isn't true. Addendum/2009: the YAML 1.2 spec is still incompatible with JSON, even though the incompatibilities have been documented (and are known to Brian) for many years and the spec makes explicit claims that YAML is a superset of JSON. It would be so easy to fix, but apparently, bullying people and corrupting userdata is so much easier. =back =head2 SPEED It seems that JSON::XS is surprisingly fast, as shown in the following tables. They have been generated with the help of the C program in the JSON::XS distribution, to make it easy to compare on your own system. First comes a comparison between various modules using a very short single-line JSON string (also available at L). {"method": "handleMessage", "params": ["user1", "we were just talking"], "id": null, "array":[1,11,234,-5,1e5,1e7, 1, 0]} It shows the number of encodes/decodes per second (JSON::XS uses the functional interface, while JSON::XS/2 uses the OO interface with pretty-printing and hashkey sorting enabled, JSON::XS/3 enables shrink. JSON::DWIW/DS uses the deserialise function, while JSON::DWIW::FJ uses the from_json method). Higher is better: module | encode | decode | --------------|------------|------------| JSON::DWIW/DS | 86302.551 | 102300.098 | JSON::DWIW/FJ | 86302.551 | 75983.768 | JSON::PP | 15827.562 | 6638.658 | JSON::Syck | 63358.066 | 47662.545 | JSON::XS | 511500.488 | 511500.488 | JSON::XS/2 | 291271.111 | 388361.481 | JSON::XS/3 | 361577.931 | 361577.931 | Storable | 66788.280 | 265462.278 | --------------+------------+------------+ That is, JSON::XS is almost six times faster than JSON::DWIW on encoding, about five times faster on decoding, and over thirty to seventy times faster than JSON's pure perl implementation. It also compares favourably to Storable for small amounts of data. Using a longer test string (roughly 18KB, generated from Yahoo! Locals search API (L). module | encode | decode | --------------|------------|------------| JSON::DWIW/DS | 1647.927 | 2673.916 | JSON::DWIW/FJ | 1630.249 | 2596.128 | JSON::PP | 400.640 | 62.311 | JSON::Syck | 1481.040 | 1524.869 | JSON::XS | 20661.596 | 9541.183 | JSON::XS/2 | 10683.403 | 9416.938 | JSON::XS/3 | 20661.596 | 9400.054 | Storable | 19765.806 | 10000.725 | --------------+------------+------------+ Again, JSON::XS leads by far (except for Storable which non-surprisingly decodes a bit faster). On large strings containing lots of high Unicode characters, some modules (such as JSON::PC) seem to decode faster than JSON::XS, but the result will be broken due to missing (or wrong) Unicode handling. Others refuse to decode or encode properly, so it was impossible to prepare a fair comparison table for that case. =head1 SECURITY CONSIDERATIONS When you are using JSON in a protocol, talking to untrusted potentially hostile creatures requires relatively few measures. First of all, your JSON decoder should be secure, that is, should not have any buffer overflows. Obviously, this module should ensure that and I am trying hard on making that true, but you never know. Second, you need to avoid resource-starving attacks. That means you should limit the size of JSON texts you accept, or make sure then when your resources run out, that's just fine (e.g. by using a separate process that can crash safely). The size of a JSON text in octets or characters is usually a good indication of the size of the resources required to decode it into a Perl structure. While JSON::XS can check the size of the JSON text, it might be too late when you already have it in memory, so you might want to check the size before you accept the string. Third, JSON::XS recurses using the C stack when decoding objects and arrays. The C stack is a limited resource: for instance, on my amd64 machine with 8MB of stack size I can decode around 180k nested arrays but only 14k nested JSON objects (due to perl itself recursing deeply on croak to free the temporary). If that is exceeded, the program crashes. To be conservative, the default nesting limit is set to 512. If your process has a smaller stack, you should adjust this setting accordingly with the C method. Something else could bomb you, too, that I forgot to think of. In that case, you get to keep the pieces. I am always open for hints, though... Also keep in mind that JSON::XS might leak contents of your Perl data structures in its error messages, so when you serialise sensitive information you might want to make sure that exceptions thrown by JSON::XS will not end up in front of untrusted eyes. If you are using JSON::XS to return packets to consumption by JavaScript scripts in a browser you should have a look at L to see whether you are vulnerable to some common attack vectors (which really are browser design bugs, but it is still you who will have to deal with it, as major browser developers care only for features, not about getting security right). =head2 "OLD" VS. "NEW" JSON (RFC4627 VS. RFC7159) JSON originally required JSON texts to represent an array or object - scalar values were explicitly not allowed. This has changed, and versions of JSON::XS beginning with C<4.0> reflect this by allowing scalar values by default. One reason why one might not want this is that this removes a fundamental property of JSON texts, namely that they are self-delimited and self-contained, or in other words, you could take any number of "old" JSON texts and paste them together, and the result would be unambiguously parseable: [1,3]{"k":5}[][null] # four JSON texts, without doubt By allowing scalars, this property is lost: in the following example, is this one JSON text (the number 12) or two JSON texts (the numbers 1 and 2): 12 # could be 12, or 1 and 2 Another lost property of "old" JSON is that no lookahead is required to know the end of a JSON text, i.e. the JSON text definitely ended at the last C<]> or C<}> character, there was no need to read extra characters. For example, a viable network protocol with "old" JSON was to simply exchange JSON texts without delimiter. For "new" JSON, you have to use a suitable delimiter (such as a newline) after every JSON text or ensure you never encode/decode scalar values. Most protocols do work by only transferring arrays or objects, and the easiest way to avoid problems with the "new" JSON definition is to explicitly disallow scalar values in your encoder and decoder: $json_coder = JSON::XS->new->allow_nonref (0) This is a somewhat unhappy situation, and the blame can fully be put on JSON's inmventor, Douglas Crockford, who unilaterally changed the format in 2006 without consulting the IETF, forcing the IETF to either fork the format or go with it (as I was told, the IETF wasn't amused). =head1 RELATIONSHIP WITH I-JSON JSON is a somewhat sloppily-defined format - it carries around obvious Javascript baggage, such as not really defining number range, probably because Javascript only has one type of numbers: IEEE 64 bit floats ("binary64"). For this reaosn, RFC7493 defines "Internet JSON", which is a restricted subset of JSON that is supposedly more interoperable on the internet. While C does not offer specific support for I-JSON, it of course accepts valid I-JSON and by default implements some of the limitations of I-JSON, such as parsing numbers as perl numbers, which are usually a superset of binary64 numbers. To generate I-JSON, follow these rules: =over =item * always generate UTF-8 I-JSON must be encoded in UTF-8, the default for C. =item * numbers should be within IEEE 754 binary64 range Basically all existing perl installations use binary64 to represent floating point numbers, so all you need to do is to avoid large integers. =item * objects must not have duplicate keys This is trivially done, as C does not allow duplicate keys. =item * do not generate scalar JSON texts, use C<< ->allow_nonref (0) >> I-JSON strongly requests you to only encode arrays and objects into JSON. =item * times should be strings in ISO 8601 format There are a myriad of modules on CPAN dealing with ISO 8601 - search for C on CPAN and use one. =item * encode binary data as base64 While it's tempting to just dump binary data as a string (and let C do the escaping), for I-JSON, it's I to encode binary data as base64. =back There are some other considerations - read RFC7493 for the details if interested. =head1 INTEROPERABILITY WITH OTHER MODULES C uses the L module to provide boolean constants. That means that the JSON true and false values will be comaptible to true and false values of other modules that do the same, such as L and L. =head1 INTEROPERABILITY WITH OTHER JSON DECODERS As long as you only serialise data that can be directly expressed in JSON, C is incapable of generating invalid JSON output (modulo bugs, but C has found more bugs in the official JSON testsuite (1) than the official JSON testsuite has found in C (0)). When you have trouble decoding JSON generated by this module using other decoders, then it is very likely that you have an encoding mismatch or the other decoder is broken. When decoding, C is strict by default and will likely catch all errors. There are currently two settings that change this: C makes C accept (but not generate) some non-standard extensions, and C will allow you to encode and decode Perl objects, at the cost of not outputting valid JSON anymore. =head2 TAGGED VALUE SYNTAX AND STANDARD JSON EN/DECODERS When you use C to use the extended (and also nonstandard and invalid) JSON syntax for serialised objects, and you still want to decode the generated When you want to serialise objects, you can run a regex to replace the tagged syntax by standard JSON arrays (it only works for "normal" package names without comma, newlines or single colons). First, the readable Perl version: # if your FREEZE methods return no values, you need this replace first: $json =~ s/\( \s* (" (?: [^\\":,]+|\\.|::)* ") \s* \) \s* \[\s*\]/[$1]/gx; # this works for non-empty constructor arg lists: $json =~ s/\( \s* (" (?: [^\\":,]+|\\.|::)* ") \s* \) \s* \[/[$1,/gx; And here is a less readable version that is easy to adapt to other languages: $json =~ s/\(\s*("([^\\":,]+|\\.|::)*")\s*\)\s*\[/[$1,/g; Here is an ECMAScript version (same regex): json = json.replace (/\(\s*("([^\\":,]+|\\.|::)*")\s*\)\s*\[/g, "[$1,"); Since this syntax converts to standard JSON arrays, it might be hard to distinguish serialised objects from normal arrays. You can prepend a "magic number" as first array element to reduce chances of a collision: $json =~ s/\(\s*("([^\\":,]+|\\.|::)*")\s*\)\s*\[/["XU1peReLzT4ggEllLanBYq4G9VzliwKF",$1,/g; And after decoding the JSON text, you could walk the data structure looking for arrays with a first element of C. The same approach can be used to create the tagged format with another encoder. First, you create an array with the magic string as first member, the classname as second, and constructor arguments last, encode it as part of your JSON structure, and then: $json =~ s/\[\s*"XU1peReLzT4ggEllLanBYq4G9VzliwKF"\s*,\s*("([^\\":,]+|\\.|::)*")\s*,/($1)[/g; Again, this has some limitations - the magic string must not be encoded with character escapes, and the constructor arguments must be non-empty. =head1 (I-)THREADS This module is I guaranteed to be ithread (or MULTIPLICITY-) safe and there are no plans to change this. Note that perl's builtin so-called threads/ithreads are officially deprecated and should not be used. =head1 THE PERILS OF SETLOCALE Sometimes people avoid the Perl locale support and directly call the system's setlocale function with C. This breaks both perl and modules such as JSON::XS, as stringification of numbers no longer works correctly (e.g. C<$x = 0.1; print "$x"+1> might print C<1>, and JSON::XS might output illegal JSON as JSON::XS relies on perl to stringify numbers). The solution is simple: don't call C, or use it for only those categories you need, such as C or C. If you need C, you should enable it only around the code that actually needs it (avoiding stringification of numbers), and restore it afterwards. =head1 SOME HISTORY At the time this module was created there already were a number of JSON modules available on CPAN, so what was the reason to write yet another JSON module? While it seems there are many JSON modules, none of them correctly handled all corner cases, and in most cases their maintainers are unresponsive, gone missing, or not listening to bug reports for other reasons. Beginning with version 2.0 of the JSON module, when both JSON and JSON::XS are installed, then JSON will fall back on JSON::XS (this can be overridden) with no overhead due to emulation (by inheriting constructor and methods). If JSON::XS is not available, it will fall back to the compatible JSON::PP module as backend, so using JSON instead of JSON::XS gives you a portable JSON API that can be fast when you need it and doesn't require a C compiler when that is a problem. Somewhere around version 3, this module was forked into C, because its maintainer had serious trouble understanding JSON and insisted on a fork with many bugs "fixed" that weren't actually bugs, while spreading FUD about this module without actually giving any details on his accusations. You be the judge, but in my personal opinion, if you want quality, you will stay away from dangerous forks like that. =head1 BUGS While the goal of this module is to be correct, that unfortunately does not mean it's bug-free, only that I think its design is bug-free. If you keep reporting bugs they will be fixed swiftly, though. Please refrain from using rt.cpan.org or any other bug reporting service. I put the contact address into my modules for a reason. =cut BEGIN { *true = \$Types::Serialiser::true; *true = \&Types::Serialiser::true; *false = \$Types::Serialiser::false; *false = \&Types::Serialiser::false; *is_bool = \&Types::Serialiser::is_bool; *JSON::XS::Boolean:: = *Types::Serialiser::Boolean::; } XSLoader::load "JSON::XS", $VERSION; =head1 SEE ALSO The F command line utility for quick experiments. =head1 AUTHOR Marc Lehmann http://home.schmorp.de/ =cut 1 PK]{;Syck.pmnu6$package JSON::Syck; use strict; use Exporter; use YAML::Syck (); our $VERSION = '1.47'; our @EXPORT_OK = qw( Load Dump LoadFile DumpFile DumpInto ); our @ISA = qw/Exporter/; *Load = \&YAML::Syck::LoadJSON; *Dump = \&YAML::Syck::DumpJSON; sub DumpFile { my $file = shift; if ( YAML::Syck::_is_glob($file) ) { if ( tied(*$file) ) { # Tied filehandles (IO::String, IO::Scalar, etc.) don't support # C-level PerlIO_write. Fall back to Perl-level print. print $file YAML::Syck::DumpJSON( $_[0] ) or die "Error writing to filehandle $file: $!\n"; } else { my $err = YAML::Syck::DumpJSONFile( $_[0], $file ); if ($err) { $! = 0 + $err; die "Error writing to filehandle $file: $!\n"; } } } else { open( my $fh, '>', $file ) or die "Cannot write to $file: $!"; my $err = YAML::Syck::DumpJSONFile( $_[0], $fh ); if ($err) { $! = 0 + $err; die "Error writing to file $file: $!\n"; } close $fh or die "Error writing to file $file: $!\n"; } return 1; } sub LoadFile { my $file = shift; if ( YAML::Syck::_is_glob($file) ) { YAML::Syck::LoadJSON( do { local $/; <$file> } ); } else { if ( !-e $file || -z $file ) { die("'$file' is non-existent or empty"); } open( my $fh, '<', $file ) or die "Cannot read from $file: $!"; YAML::Syck::LoadJSON( do { local $/; <$fh> } ); } } sub DumpInto { my $bufref = shift; ( ref $bufref ) or die "DumpInto not given reference to output buffer\n"; YAML::Syck::DumpJSONInto( $_[0], $bufref ); 1; } $JSON::Syck::ImplicitTyping = 1; $JSON::Syck::MaxDepth = 512; $JSON::Syck::Headless = 1; $JSON::Syck::ImplicitUnicode = 0; $JSON::Syck::SingleQuote = 0; 1; __END__ =head1 NAME JSON::Syck - JSON is YAML (but consider using L instead!) =head1 SYNOPSIS use JSON::Syck; # no exports by default my $data = JSON::Syck::Load($json); my $json = JSON::Syck::Dump($data); # $file can be an IO object, or a filename my $data = JSON::Syck::LoadFile($file); JSON::Syck::DumpFile($file, $data); # Dump into a pre-existing buffer my $json; JSON::Syck::DumpInto(\$json, $data); =head1 DESCRIPTION JSON::Syck is a syck implementation of JSON parsing and generation. Because JSON is YAML (L), using syck gives you a fast and memory-efficient parser and dumper for JSON data representation. However, a newer module L, has since emerged. It is more flexible, efficient and robust, so please consider using it instead of this module. =head1 DIFFERENCE WITH JSON You might want to know the difference between the I module and this one. Since JSON is a pure-perl module and JSON::Syck is based on libsyck, JSON::Syck is supposed to be very fast and memory efficient. See chansen's benchmark table at L JSON.pm comes with dozens of ways to do the same thing and lots of options, while JSON::Syck doesn't. There's only C and C. Oh, and JSON::Syck doesn't use camelCase method names :-) =head1 REFERENCES =head2 SCALAR REFERENCE For now, when you pass a scalar reference to JSON::Syck, it dereferences to get the actual scalar value. JSON::Syck raises an exception when you pass in circular references. If you want to serialize self referencing stuff, you should use YAML which supports it. =head2 SUBROUTINE REFERENCE When you pass subroutine reference, JSON::Syck dumps it as null. =head1 UTF-8 FLAGS By default this module doesn't touch any of utf-8 flags set in strings, and assumes UTF-8 bytes to be passed and emit. However, when you set C<$JSON::Syck::ImplicitUnicode> to 1, this module properly decodes UTF-8 binaries and sets UTF-8 flag everywhere, as in: JSON (UTF-8 bytes) => Perl (UTF-8 flagged) JSON (UTF-8 flagged) => Perl (UTF-8 flagged) Perl (UTF-8 bytes) => JSON (UTF-8 flagged) Perl (UTF-8 flagged) => JSON (UTF-8 flagged) By default, JSON::Syck::Dump will only transverse up to 512 levels of a datastructure in order to avoid an infinite loop when it is presented with an circular reference. However, you can set C<$JSON::Syck::MaxDepth> to a larger value if you have very complex structures. Unfortunately, there's no implicit way to dump Perl UTF-8 flagged data structure to utf-8 encoded JSON. To do this, simply use Encode module, e.g.: use Encode; use JSON::Syck qw(Dump); my $json = encode_utf8( Dump($data) ); Alternatively you can use Encode::JavaScript::UCS to encode Unicode strings as in I<%uXXXX> form. use Encode; use Encode::JavaScript::UCS; use JSON::Syck qw(Dump); my $json_unicode_escaped = encode( 'JavaScript-UCS', Dump($data) ); =head1 QUOTING According to the JSON specification, all JSON strings are to be double-quoted. However, when embedding JavaScript in HTML attributes, it may be more convenient to use single quotes. Set C<$JSON::Syck::SingleQuote> to 1 will make both C and C expect single-quoted string literals. =head1 BUGS Dumping into tied (or other magic variables) with C might not work properly in all cases. When dumping with C, spacing differs from C (extra spaces after colons and a trailing newline) because C uses the C-level serializer directly. =head1 SEE ALSO L, L =head1 AUTHORS Audrey Tang Ecpan@audreyt.orgE Tatsuhiko Miyagawa Emiyagawa@gmail.comE =head1 COPYRIGHT Copyright 2005-2009 by Audrey Tang Ecpan@audreyt.orgE. This software is released under the MIT license cited below. The F code bundled with this library is released by "why the lucky stiff", under a BSD-style license. See the F file for details. =head2 The "MIT" License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =cut PK][RR XS/Boolean.pmnu6$=head1 NAME JSON::XS::Boolean - dummy module providing JSON::XS::Boolean =head1 SYNOPSIS # do not "use" yourself =head1 DESCRIPTION This module exists only to provide overload resolution for Storable and similar modules. It's only needed for compatibility with data serialised (by other modules such as Storable) that was decoded by JSON::XS versions before 3.0. Since 3.0, JSON::PP::Boolean has replaced it. Support for JSON::XS::Boolean will be removed in a future release. =cut use JSON::XS (); 1; =head1 AUTHOR Marc Lehmann http://home.schmorp.de/ =cut PKh]5c state-c.rinu[U:RDoc::Attr[iI" state:ETI"JSON::state;TI"RW;T: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"RSets or Returns the JSON generator state class that is used by JSON. This is ;TI"Heither JSON::Ext::Generator::State or JSON::Pure::Generator::State:;To:RDoc::Markup::Verbatim; [I"0JSON.state # => JSON::Ext::Generator::State;T: @format0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0T@I" JSON;TcRDoc::NormalModule0PKh]o ParserError/cdesc-ParserError.rinu[U:RDoc::NormalClass[iI"ParserError:ETI"JSON::ParserError;TI"JSON::JSONError;To:RDoc::Markup::Document: @parts[o;;[o:RDoc::Markup::Paragraph;[I"7This exception is raised if a parser error occurs.;T: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0; 0; 0[[[[[I" class;T[[: public[[:protected[[: private[[I" instance;T[[; [[; [[;[[[U:RDoc::Context::Section[i0o;;[; 0; 0[I" ext/json/lib/json/common.rb;TI" JSON;TcRDoc::NormalModulePKh]generator-c.rinu[U:RDoc::Attr[iI"generator:ETI"JSON::generator;TI"R;T: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"EReturns the JSON generator module that is used by JSON. This is ;TI":either JSON::Ext::Generator or JSON::Pure::Generator:;To:RDoc::Markup::Verbatim; [I"-JSON.generator # => JSON::Ext::Generator;T: @format0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0T@I" JSON;TcRDoc::NormalModule0PKh]wbbcreate_id-c.rinu[U:RDoc::AnyMethod[iI"create_id:ETI"JSON::create_id;TT: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I",Returns the current create identifier. ;TI"See also JSON.create_id=.;T: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below000[I"();T@FI" JSON;TcRDoc::NormalModule00PKh] %5b%5d-c.rinu[U:RDoc::AnyMethod[iI"[]:ETI" JSON::[];TT: privateo:RDoc::Markup::Document: @parts[ o:RDoc::Markup::Paragraph; [I"If +object+ is a \String, ;TI"Ccalls JSON.parse with +object+ and +opts+ (see method #parse):;To:RDoc::Markup::Verbatim; [I"json = '[0, 1, null]' ;TI" JSON[json]# => [0, 1, nil] ;T: @format0o; ; [I"TOtherwise, calls JSON.generate with +object+ and +opts+ (see method #generate):;To; ; [I"ruby = [0, 1, nil] ;TI"!JSON[ruby] # => '[0,1,null]';T; 0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0I"-JSON[object] -> new_array or new_string ;T0[I"(object, opts = {});T@FI" JSON;TcRDoc::NormalModule00PKh]create_fast_state-c.rinu[U:RDoc::AnyMethod[iI"create_fast_state:ETI"JSON::create_fast_state;TT: privateo:RDoc::Markup::Document: @parts[: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below000[I"();T@ FI" JSON;TcRDoc::NormalModule00PKh](Сload_file-i.rinu[U:RDoc::AnyMethod[iI"load_file:ETI"JSON#load_file;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I" Calls:;To:RDoc::Markup::Verbatim; [I""parse(File.read(path), opts) ;T: @format0o; ; [I"See method #parse.;T: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0I"-JSON.load_file(path, opts={}) -> object ;T0[I"(filespec, opts = {});T@FI" JSON;TcRDoc::NormalModule00PKh]MYbb dump-i.rinu[U:RDoc::AnyMethod[iI" dump:ETI"JSON#dump;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"]Dumps +obj+ as a \JSON string, i.e. calls generate on the object and returns the result.;To:RDoc::Markup::BlankLineo; ; [I"MThe default options can be changed via method JSON.dump_default_options.;T@o:RDoc::Markup::List: @type: BULLET: @items[o:RDoc::Markup::ListItem: @label0; [o; ; [I"@Argument +io+, if given, should respond to method +write+; ;TI"Athe \JSON \String is written to +io+, and +io+ is returned. ;TI"9If +io+ is not given, the \JSON \String is returned.;To;;0; [o; ; [I"TArgument +limit+, if given, is passed to JSON.generate as option +max_nesting+.;T@S:RDoc::Markup::Rule: weighti@o; ; [I"UWhen argument +io+ is not given, returns the \JSON \String generated from +obj+:;To:RDoc::Markup::Verbatim; [I";obj = {foo: [0, 1], bar: {baz: 2, bat: 3}, bam: :bad} ;TI"json = JSON.dump(obj) ;TI"Ojson # => "{\"foo\":[0,1],\"bar\":{\"baz\":2,\"bat\":3},\"bam\":\"bad\"}" ;T: @format0o; ; [I"TWhen argument +io+ is given, writes the \JSON \String to +io+ and returns +io+:;To;; [ I"path = 't.json' ;TI"$File.open(path, 'w') do |file| ;TI" JSON.dump(obj, file) ;TI"&end # => # ;TI"puts File.read(path) ;T;0o; ; [I" Output:;To;; [I"6{"foo":[0,1],"bar":{"baz":2,"bat":3},"bam":"bad"};T;0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0I"+JSON.dump(obj, io = nil, limit = nil) ;T0[I"#(obj, anIO = nil, limit = nil);T@9FI" JSON;TcRDoc::NormalModule00PKh] 'nnfast_generate-i.rinu[U:RDoc::AnyMethod[iI"fast_generate:ETI"JSON#fast_generate;TF: privateo:RDoc::Markup::Document: @parts[ o:RDoc::Markup::Paragraph; [I"5Arguments +obj+ and +opts+ here are the same as ;TI"1arguments +obj+ and +opts+ in JSON.generate.;To:RDoc::Markup::BlankLineo; ; [I"7By default, generates \JSON data without checking ;TI"Vfor circular references in +obj+ (option +max_nesting+ set to +false+, disabled).;T@o; ; [I"?Raises an exception if +obj+ contains circular references:;To:RDoc::Markup::Verbatim; [I"*a = []; b = []; a.push(b); b.push(a) ;TI"7# Raises SystemStackError (stack level too deep): ;TI"JSON.fast_generate(a);T: @format0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0I"1JSON.fast_generate(obj, opts) -> new_string ;T0[I"(obj, opts = nil);T@FI" JSON;TcRDoc::NormalModule00PKh]HZ&&load_default_options-c.rinu[U:RDoc::Attr[iI"load_default_options:ETI"JSON::load_default_options;TI"RW;T: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"?Sets or returns default options for the JSON.load method. ;TI"Initially:;To:RDoc::Markup::Verbatim; [I"&opts = JSON.load_default_options ;TI"copts # => {:max_nesting=>false, :allow_nan=>true, :allow_blank=>true, :create_additions=>true};T: @format0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0T@I" JSON;TcRDoc::NormalModule0PKh]!9b''pretty_generate-i.rinu[U:RDoc::AnyMethod[iI"pretty_generate:ETI"JSON#pretty_generate;TF: privateo:RDoc::Markup::Document: @parts[ o:RDoc::Markup::Paragraph; [I"5Arguments +obj+ and +opts+ here are the same as ;TI"1arguments +obj+ and +opts+ in JSON.generate.;To:RDoc::Markup::BlankLineo; ; [I"Default options are:;To:RDoc::Markup::Verbatim; [ I"{ ;TI"$ indent: ' ', # Two spaces ;TI"# space: ' ', # One space ;TI"! array_nl: "\n", # Newline ;TI"! object_nl: "\n" # Newline ;TI"} ;T: @format0o; ; [I" Example:;To; ; [I"6obj = {foo: [:bar, :baz], bat: {bam: 0, bad: 1}} ;TI"&json = JSON.pretty_generate(obj) ;TI"puts json ;T; 0o; ; [I" Output:;To; ; [I"{ ;TI" "foo": [ ;TI" "bar", ;TI" "baz" ;TI" ], ;TI" "bat": { ;TI" "bam": 0, ;TI" "bad": 1 ;TI" } ;TI"};T; 0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0I"9JSON.pretty_generate(obj, opts = nil) -> new_string ;T0[I"(obj, opts = nil);T@2FI" JSON;TcRDoc::NormalModule00PKh]wa restore-i.rinu[U:RDoc::AnyMethod[iI" restore:ETI"JSON#restore;TF: privateo:RDoc::Markup::Document: @parts[: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below000[I"'(source, proc = nil, options = {});T@ FI" JSON;TcRDoc::NormalModule0[@FI" load;TPKh]`dload_file%21-i.rinu[U:RDoc::AnyMethod[iI"load_file!:ETI"JSON#load_file!;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I" Calls:;To:RDoc::Markup::Verbatim; [I"(JSON.parse!(File.read(path, opts)) ;T: @format0o; ; [I"See method #parse!;T: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0I"&JSON.load_file!(path, opts = {}) ;T0[I"(filespec, opts = {});T@FI" JSON;TcRDoc::NormalModule00PKh] create_id%3d-c.rinu[U:RDoc::AnyMethod[iI"create_id=:ETI"JSON::create_id=;TT: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"JSets create identifier, which is used to decide if the _json_create_ ;TI"Ehook of a class should be called; initial value is +json_class+:;To:RDoc::Markup::Verbatim; [I"%JSON.create_id # => 'json_class';T: @format0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below000[I"(new_value);T@FI" JSON;TcRDoc::NormalModule00PKh]0..JSONError/cdesc-JSONError.rinu[U:RDoc::NormalClass[iI"JSONError:ETI"JSON::JSONError;TI"StandardError;To:RDoc::Markup::Document: @parts[o;;[o:RDoc::Markup::Paragraph;[I"(The base exception for JSON errors.;T: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0; 0; 0[[[[[I" class;T[[: public[[:protected[[: private[[I" wrap;TI" ext/json/lib/json/common.rb;T[I" instance;T[[; [[; [[;[[[U:RDoc::Context::Section[i0o;;[; 0; 0[I" ext/json/lib/json/common.rb;TI" JSON;TcRDoc::NormalModulePKh]JSONError/wrap-c.rinu[U:RDoc::AnyMethod[iI" wrap:ETI"JSON::JSONError::wrap;TT: privateo:RDoc::Markup::Document: @parts[: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below000[I"(exception);T@ FI"JSONError;TcRDoc::NormalClass00PKh]Ҵdump_default_options-c.rinu[U:RDoc::Attr[iI"dump_default_options:ETI"JSON::dump_default_options;TI"RW;T: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"CSets or returns the default options for the JSON.dump method. ;TI"Initially:;To:RDoc::Markup::Verbatim; [I"&opts = JSON.dump_default_options ;TI"Lopts # => {:max_nesting=>false, :allow_nan=>true, :escape_slash=>false};T: @format0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0T@I" JSON;TcRDoc::NormalModule0PKh]nӤ4CircularDatastructure/cdesc-CircularDatastructure.rinu[U:RDoc::NormalClass[iI"CircularDatastructure:ETI" JSON::CircularDatastructure;TI"JSON::NestingError;To:RDoc::Markup::Document: @parts[: @file0:0@omit_headings_from_table_of_contents_below0[[[[[I" class;T[[: public[[:protected[[: private[[I" instance;T[[; [[; [[; [[[U:RDoc::Context::Section[i0o;;[; 0; 0[I" ext/json/lib/json/common.rb;TI" JSON;TcRDoc::NormalModulePKh]#L! generate-i.rinu[U:RDoc::AnyMethod[iI" generate:ETI"JSON#generate;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I";Returns a \String containing the generated \JSON data.;To:RDoc::Markup::BlankLineo; ; [I"7See also JSON.fast_generate, JSON.pretty_generate.;T@o; ; [I"@Argument +obj+ is the Ruby object to be converted to \JSON.;T@o; ; [I"PArgument +opts+, if given, contains a \Hash of options for the generation. ;TI"ESee {Generating Options}[#module-JSON-label-Generating+Options].;T@S:RDoc::Markup::Rule: weighti@o; ; [I"IWhen +obj+ is an \Array, returns a \String containing a \JSON array:;To:RDoc::Markup::Verbatim; [I"*obj = ["foo", 1.0, true, false, nil] ;TI"json = JSON.generate(obj) ;TI"-json # => '["foo",1.0,true,false,null]' ;T: @format0o; ; [I"HWhen +obj+ is a \Hash, returns a \String containing a \JSON object:;To;; [I")obj = {foo: 0, bar: 's', baz: :bat} ;TI"json = JSON.generate(obj) ;TI"1json # => '{"foo":0,"bar":"s","baz":"bat"}' ;T;0o; ; [I"=For examples of generating from other Ruby objects, see ;TI"b{Generating \JSON from Other Objects}[#module-JSON-label-Generating+JSON+from+Other+Objects].;T@S; ; i@o; ; [I"CRaises an exception if any formatting option is not a \String.;T@o; ; [I"?Raises an exception if +obj+ contains circular references:;To;; [I"*a = []; b = []; a.push(b); b.push(a) ;TI"?# Raises JSON::NestingError (nesting of 100 is too deep): ;TI"JSON.generate(a);T;0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0I"2JSON.generate(obj, opts = nil) -> new_string ;T0[I"(obj, opts = nil);T@:FI" JSON;TcRDoc::NormalModule00PKh]`3dd cdesc-JSON.rinu[U:RDoc::NormalModule[iI" JSON:ET@0o:RDoc::Markup::Document: @parts[ o;;[: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0o;;[S:RDoc::Markup::Heading: leveli: textI"(JavaScript \Object Notation (\JSON);To:RDoc::Markup::BlankLineo:RDoc::Markup::Paragraph;[I"4\JSON is a lightweight data-interchange format.;T@o;;[I"+A \JSON value is one of the following:;To:RDoc::Markup::List: @type: BULLET: @items[ o:RDoc::Markup::ListItem: @label0;[o;;[I")Double-quoted text: "foo".;To;;0;[o;;[I""Number: +1+, +1.0+, +2.0e2+.;To;;0;[o;;[I"Boolean: +true+, +false+.;To;;0;[o;;[I"Null: +null+.;To;;0;[o;;[I"D\Array: an ordered list of values, enclosed by square brackets:;To:RDoc::Markup::Verbatim;[I"/["foo", 1, 1.0, 2.0e2, true, false, null] ;T: @format0o;;0;[o;;[I"J\Object: a collection of name/value pairs, enclosed by curly braces; ;TI"&each name is double-quoted text; ;TI"(the values may be any \JSON values:;To;;[I"R{"a": "foo", "b": 1, "c": 1.0, "d": 2.0e2, "e": true, "f": false, "g": null} ;T;0o;;[I"MA \JSON array or object may contain nested arrays, objects, and scalars ;TI"to any depth:;To;;[I"5{"foo": {"bar": 1, "baz": 2}, "bat": [0, 1, 2]} ;TI"([{"foo": 0, "bar": 1}, ["baz", 2]] ;T;0S; ; i; I"Using \Module \JSON;T@o;;[I"=To make module \JSON available in your code, begin with:;To;;[I"require 'json' ;T;0o;;[I"6All examples here assume that this has been done.;T@S; ; i; I"Parsing \JSON;T@o;;[I"9You can parse a \String containing \JSON data using ;TI"either of two methods:;To;;;;[o;;0;[o;;[I"&JSON.parse(source, opts);To;;0;[o;;[I"'JSON.parse!(source, opts);T@o;;[I" where;To;;;;[o;;0;[o;;[I"+source+ is a Ruby object.;To;;0;[o;;[I"1+opts+ is a \Hash object containing options ;TI";that control both input allowed and output formatting.;T@o;;[ I",The difference between the two methods ;TI"+is that JSON.parse! omits some checks ;TI"1and may not be safe for some +source+ data; ;TI"0use it only for data from trusted sources. ;TI">Use the safer method JSON.parse for less trusted sources.;T@S; ; i ; I"Parsing \JSON Arrays;T@o;;[I"QWhen +source+ is a \JSON array, JSON.parse by default returns a Ruby \Array:;To;;[ I"8json = '["foo", 1, 1.0, 2.0e2, true, false, null]' ;TI"ruby = JSON.parse(json) ;TI"8ruby # => ["foo", 1, 1.0, 200.0, true, false, nil] ;TI"ruby.class # => Array ;T;0o;;[I"EThe \JSON array may contain nested arrays, objects, and scalars ;TI"to any depth:;To;;[I"1json = '[{"foo": 0, "bar": 1}, ["baz", 2]]' ;TI">JSON.parse(json) # => [{"foo"=>0, "bar"=>1}, ["baz", 2]] ;T;0S; ; i ; I"Parsing \JSON \Objects;T@o;;[I"SWhen the source is a \JSON object, JSON.parse by default returns a Ruby \Hash:;To;;[ I"[json = '{"a": "foo", "b": 1, "c": 1.0, "d": 2.0e2, "e": true, "f": false, "g": null}' ;TI"ruby = JSON.parse(json) ;TI"[ruby # => {"a"=>"foo", "b"=>1, "c"=>1.0, "d"=>200.0, "e"=>true, "f"=>false, "g"=>nil} ;TI"ruby.class # => Hash ;T;0o;;[I"FThe \JSON object may contain nested arrays, objects, and scalars ;TI"to any depth:;To;;[I">json = '{"foo": {"bar": 1, "baz": 2}, "bat": [0, 1, 2]}' ;TI"KJSON.parse(json) # => {"foo"=>{"bar"=>1, "baz"=>2}, "bat"=>[0, 1, 2]} ;T;0S; ; i ; I"Parsing \JSON Scalars;T@o;;[I"AWhen the source is a \JSON scalar (not an array or object), ;TI"&JSON.parse returns a Ruby scalar.;T@o;;[I" \String:;To;;[I" ruby = JSON.parse('"foo"') ;TI"ruby # => 'foo' ;TI"ruby.class # => String ;T;0o;;[I"\Integer:;To;;[I"ruby = JSON.parse('1') ;TI"ruby # => 1 ;TI"ruby.class # => Integer ;T;0o;;[I" \Float:;To;;[ I"ruby = JSON.parse('1.0') ;TI"ruby # => 1.0 ;TI"ruby.class # => Float ;TI" ruby = JSON.parse('2.0e2') ;TI"ruby # => 200 ;TI"ruby.class # => Float ;T;0o;;[I" Boolean:;To;;[ I"ruby = JSON.parse('true') ;TI"ruby # => true ;TI"ruby.class # => TrueClass ;TI" ruby = JSON.parse('false') ;TI"ruby # => false ;TI" ruby.class # => FalseClass ;T;0o;;[I" Null:;To;;[I"ruby = JSON.parse('null') ;TI"ruby # => nil ;TI"ruby.class # => NilClass ;T;0S; ; i ; I"Parsing Options;T@S; ; i ; I"Input Options;T@o;;[I"ROption +max_nesting+ (\Integer) specifies the maximum nesting depth allowed; ;TI"Bdefaults to +100+; specify +false+ to disable depth checking.;T@o;;[I"With the default, +false+:;To;;[I"#source = '[0, [1, [2, [3]]]]' ;TI"ruby = JSON.parse(source) ;TI""ruby # => [0, [1, [2, [3]]]] ;T;0o;;[I"Too deep:;To;;[I"=# Raises JSON::NestingError (nesting of 2 is too deep): ;TI"*JSON.parse(source, {max_nesting: 1}) ;T;0o;;[I"Bad value:;To;;[I"H# Raises TypeError (wrong argument type Symbol (expected Fixnum)): ;TI"-JSON.parse(source, {max_nesting: :foo}) ;T;0S:RDoc::Markup::Rule: weighti@o;;[I"=Option +allow_nan+ (boolean) specifies whether to allow ;TI"3NaN, Infinity, and MinusInfinity in +source+; ;TI"defaults to +false+.;T@o;;[I"With the default, +false+:;To;;[ I"D# Raises JSON::ParserError (225: unexpected token at '[NaN]'): ;TI"JSON.parse('[NaN]') ;TI"I# Raises JSON::ParserError (232: unexpected token at '[Infinity]'): ;TI"JSON.parse('[Infinity]') ;TI"J# Raises JSON::ParserError (248: unexpected token at '[-Infinity]'): ;TI"JSON.parse('[-Infinity]') ;T;0o;;[I" Allow:;To;;[I"+source = '[NaN, Infinity, -Infinity]' ;TI"2ruby = JSON.parse(source, {allow_nan: true}) ;TI"*ruby # => [NaN, Infinity, -Infinity] ;T;0S; ; i ; I"Output Options;T@o;;[I"NOption +symbolize_names+ (boolean) specifies whether returned \Hash keys ;TI"should be Symbols; ;TI"'defaults to +false+ (use Strings).;T@o;;[I"With the default, +false+:;To;;[I"Isource = '{"a": "foo", "b": 1.0, "c": true, "d": false, "e": null}' ;TI"ruby = JSON.parse(source) ;TI"Gruby # => {"a"=>"foo", "b"=>1.0, "c"=>true, "d"=>false, "e"=>nil} ;T;0o;;[I"Use Symbols:;To;;[I"8ruby = JSON.parse(source, {symbolize_names: true}) ;TI"Bruby # => {:a=>"foo", :b=>1.0, :c=>true, :d=>false, :e=>nil} ;T;0S;;i@o;;[I"HOption +object_class+ (\Class) specifies the Ruby class to be used ;TI"for each \JSON object; ;TI"defaults to \Hash.;T@o;;[I"With the default, \Hash:;To;;[I"Isource = '{"a": "foo", "b": 1.0, "c": true, "d": false, "e": null}' ;TI"ruby = JSON.parse(source) ;TI"ruby.class # => Hash ;T;0o;;[I"Use class \OpenStruct:;To;;[I";ruby = JSON.parse(source, {object_class: OpenStruct}) ;TI"Druby # => # ;T;0S;;i@o;;[I"GOption +array_class+ (\Class) specifies the Ruby class to be used ;TI"for each \JSON array; ;TI"defaults to \Array.;T@o;;[I"With the default, \Array:;To;;[I"0source = '["foo", 1.0, true, false, null]' ;TI"ruby = JSON.parse(source) ;TI"ruby.class # => Array ;T;0o;;[I"Use class \Set:;To;;[I"3ruby = JSON.parse(source, {array_class: Set}) ;TI"6ruby # => # ;T;0S;;i@o;;[I"^Option +create_additions+ (boolean) specifies whether to use \JSON additions in parsing. ;TI">See {\JSON Additions}[#module-JSON-label-JSON+Additions].;T@S; ; i; I"Generating \JSON;T@o;;[I"7To generate a Ruby \String containing \JSON data, ;TI";use method JSON.generate(source, opts), where;To;;;;[o;;0;[o;;[I"+source+ is a Ruby object.;To;;0;[o;;[I"1+opts+ is a \Hash object containing options ;TI";that control both input allowed and output formatting.;T@S; ; i ; I"!Generating \JSON from Arrays;T@o;;[I"=When the source is a Ruby \Array, JSON.generate returns ;TI"(a \String containing a \JSON array:;To;;[I"ruby = [0, 's', :foo] ;TI" json = JSON.generate(ruby) ;TI"json # => '[0,"s","foo"]' ;T;0o;;[I"JThe Ruby \Array array may contain nested arrays, hashes, and scalars ;TI"to any depth:;To;;[I"*ruby = [0, [1, 2], {foo: 3, bar: 4}] ;TI" json = JSON.generate(ruby) ;TI"-json # => '[0,[1,2],{"foo":3,"bar":4}]' ;T;0S; ; i ; I"!Generating \JSON from Hashes;T@o;;[I" '{"foo":0,"bar":"s","baz":"bat"}' ;T;0o;;[I"IThe Ruby \Hash array may contain nested arrays, hashes, and scalars ;TI"to any depth:;To;;[I" '{"foo":[0,1],"bar":{"baz":2,"bat":3},"bam":"bad"}' ;T;0S; ; i ; I"(Generating \JSON from Other Objects;T@o;;[I"7When the source is neither an \Array nor a \Hash, ;TI"Athe generated \JSON data depends on the class of the source.;T@o;;[I"IWhen the source is a Ruby \Integer or \Float, JSON.generate returns ;TI")a \String containing a \JSON number:;To;;[I"!JSON.generate(42) # => '42' ;TI"%JSON.generate(0.42) # => '0.42' ;T;0o;;[I">When the source is a Ruby \String, JSON.generate returns ;TI">a \String containing a \JSON string (with double-quotes):;To;;[I"1JSON.generate('A string') # => '"A string"' ;T;0o;;[I"HWhen the source is +true+, +false+ or +nil+, JSON.generate returns ;TI"8a \String containing the corresponding \JSON token:;To;;[I"%JSON.generate(true) # => 'true' ;TI"'JSON.generate(false) # => 'false' ;TI"$JSON.generate(nil) # => 'null' ;T;0o;;[I"AWhen the source is none of the above, JSON.generate returns ;TI"Fa \String containing a \JSON string representation of the source:;To;;[I"&JSON.generate(:foo) # => '"foo"' ;TI"0JSON.generate(Complex(0, 0)) # => '"0+0i"' ;TI"1JSON.generate(Dir.new('.')) # => '"#"' ;T;0S; ; i ; I"Generating Options;T@S; ; i ; I"Input Options;T@o;;[I"4Option +allow_nan+ (boolean) specifies whether ;TI"A+NaN+, +Infinity+, and -Infinity may be generated; ;TI"defaults to +false+.;T@o;;[I"With the default, +false+:;To;;[ I"C# Raises JSON::GeneratorError (920: NaN not allowed in JSON): ;TI"JSON.generate(JSON::NaN) ;TI"H# Raises JSON::GeneratorError (917: Infinity not allowed in JSON): ;TI"#JSON.generate(JSON::Infinity) ;TI"I# Raises JSON::GeneratorError (917: -Infinity not allowed in JSON): ;TI"(JSON.generate(JSON::MinusInfinity) ;T;0o;;[I" Allow:;To;;[I"@ruby = [Float::NaN, Float::Infinity, Float::MinusInfinity] ;TI"JJSON.generate(ruby, allow_nan: true) # => '[NaN,Infinity,-Infinity]' ;T;0S;;i@o;;[I"IOption +max_nesting+ (\Integer) specifies the maximum nesting depth ;TI"!in +obj+; defaults to +100+.;T@o;;[I"With the default, +100+:;To;;[I"obj = [[[[[[0]]]]]] ;TI"-JSON.generate(obj) # => '[[[[[[0]]]]]]' ;T;0o;;[I"Too deep:;To;;[I"=# Raises JSON::NestingError (nesting of 2 is too deep): ;TI"(JSON.generate(obj, max_nesting: 2) ;T;0S; ; i ; I"Output Options;T@o;;[I">The default formatting options generate the most compact ;TI"8\JSON data, all on one line and with no whitespace.;T@o;;[I"6You can use these formatting options to generate ;TI"9\JSON data in a more open format, using whitespace. ;TI"#See also JSON.pretty_generate.;T@o;;;;[ o;;0;[o;;[I"HOption +array_nl+ (\String) specifies a string (usually a newline) ;TI"Wto be inserted after each \JSON array; defaults to the empty \String, ''.;To;;0;[o;;[I"IOption +object_nl+ (\String) specifies a string (usually a newline) ;TI"Xto be inserted after each \JSON object; defaults to the empty \String, ''.;To;;0;[o;;[ I"KOption +indent+ (\String) specifies the string (usually spaces) to be ;TI"Gused for indentation; defaults to the empty \String, ''; ;TI"1defaults to the empty \String, ''; ;TI"Mhas no effect unless options +array_nl+ or +object_nl+ specify newlines.;To;;0;[o;;[I"IOption +space+ (\String) specifies a string (usually a space) to be ;TI";inserted after the colon in each \JSON object's pair; ;TI"0defaults to the empty \String, ''.;To;;0;[o;;[I"POption +space_before+ (\String) specifies a string (usually a space) to be ;TI"''.;T@o;;[I"CIn this example, +obj+ is used first to generate the shortest ;TI"H\JSON data (no whitespace), then again with all formatting options ;TI"specified:;T@o;;[I"6obj = {foo: [:bar, :baz], bat: {bam: 0, bad: 1}} ;TI"json = JSON.generate(obj) ;TI"puts 'Compact:', json ;TI"opts = { ;TI" array_nl: "\n", ;TI" object_nl: "\n", ;TI" indent: ' ', ;TI" space_before: ' ', ;TI" space: ' ' ;TI"} ;TI",puts 'Open:', JSON.generate(obj, opts) ;T;0o;;[I" Output:;To;;[I"Compact: ;TI"3{"foo":["bar","baz"],"bat":{"bam":0,"bad":1}} ;TI" Open: ;TI"{ ;TI" "foo" : [ ;TI" "bar", ;TI" "baz" ;TI"], ;TI" "bat" : { ;TI" "bam" : 0, ;TI" "bad" : 1 ;TI" } ;TI"} ;T;0S; ; i; I"\JSON Additions;T@o;;[I"MWhen you "round trip" a non-\String object from Ruby to \JSON and back, ;TI"Byou have a new \String, instead of the object you began with:;To;;[ I"ruby0 = Range.new(0, 2) ;TI"!json = JSON.generate(ruby0) ;TI"json # => '0..2"' ;TI"ruby1 = JSON.parse(json) ;TI"ruby1 # => '0..2' ;TI"ruby1.class # => String ;T;0o;;[I"DYou can use \JSON _additions_ to preserve the original object. ;TI";The addition is an extension of a ruby class, so that:;To;;;;[o;;0;[o;;[I"@\JSON.generate stores more information in the \JSON string.;To;;0;[o;;[I"9\JSON.parse, called with option +create_additions+, ;TI":uses that information to create a proper Ruby object.;T@o;;[I"The \JSON module includes additions for certain classes. ;TI"*You can also craft custom additions. ;TI"LSee {Custom \JSON Additions}[#module-JSON-label-Custom+JSON+Additions].;T@S; ; i; I"Built-in Additions;T@o;;[I">The \JSON module includes additions for certain classes. ;TI".To use an addition, +require+ its source:;To;;;;[o;;0;[o;;[I"7BigDecimal: require 'json/add/bigdecimal';To;;0;[o;;[I"1Complex: require 'json/add/complex';To;;0;[o;;[I"+Date: require 'json/add/date';To;;0;[o;;[I"4DateTime: require 'json/add/date_time';To;;0;[o;;[I"5Exception: require 'json/add/exception';To;;0;[o;;[I"4OpenStruct: require 'json/add/ostruct';To;;0;[o;;[I"-Range: require 'json/add/range';To;;0;[o;;[I"3Rational: require 'json/add/rational';To;;0;[o;;[I"/Regexp: require 'json/add/regexp';To;;0;[o;;[I")Set: require 'json/add/set';To;;0;[o;;[I"/Struct: require 'json/add/struct';To;;0;[o;;[I"/Symbol: require 'json/add/symbol';To;;0;[o;;[I"+Time: require 'json/add/time';T@o;;[I"7To reduce punctuation clutter, the examples below ;TI"Jshow the generated \JSON via +puts+, rather than the usual +inspect+,;T@o;;[I"\BigDecimal:;To;;[ I"#require 'json/add/bigdecimal' ;TI"!ruby0 = BigDecimal(0) # 0.0 ;TI"Ljson = JSON.generate(ruby0) # {"json_class":"BigDecimal","b":"27:0.0"} ;TI" BigDecimal ;T;0o;;[I"\Complex:;To;;[ I" require 'json/add/complex' ;TI""ruby0 = Complex(1+0i) # 1+0i ;TI"Hjson = JSON.generate(ruby0) # {"json_class":"Complex","r":1,"i":0} ;TI"=ruby1 = JSON.parse(json, create_additions: true) # 1+0i ;TI"ruby1.class # Complex ;T;0o;;[I" \Date:;To;;[ I"require 'json/add/date' ;TI"%ruby0 = Date.today # 2020-05-02 ;TI"]json = JSON.generate(ruby0) # {"json_class":"Date","y":2020,"m":5,"d":2,"sg":2299161.0} ;TI"Cruby1 = JSON.parse(json, create_additions: true) # 2020-05-02 ;TI"ruby1.class # Date ;T;0o;;[I"\DateTime:;To;;[ I""require 'json/add/date_time' ;TI"6ruby0 = DateTime.now # 2020-05-02T10:38:13-05:00 ;TI"~json = JSON.generate(ruby0) # {"json_class":"DateTime","y":2020,"m":5,"d":2,"H":10,"M":38,"S":13,"of":"-5/24","sg":2299161.0} ;TI"Rruby1 = JSON.parse(json, create_additions: true) # 2020-05-02T10:38:13-05:00 ;TI"ruby1.class # DateTime ;T;0o;;[I"=\Exception (and its subclasses including \RuntimeError):;To;;[I""require 'json/add/exception' ;TI"4ruby0 = Exception.new('A message') # A message ;TI"Wjson = JSON.generate(ruby0) # {"json_class":"Exception","m":"A message","b":null} ;TI"Bruby1 = JSON.parse(json, create_additions: true) # A message ;TI"ruby1.class # Exception ;TI"Cruby0 = RuntimeError.new('Another message') # Another message ;TI"`json = JSON.generate(ruby0) # {"json_class":"RuntimeError","m":"Another message","b":null} ;TI"Hruby1 = JSON.parse(json, create_additions: true) # Another message ;TI" ruby1.class # RuntimeError ;T;0o;;[I"\OpenStruct:;To;;[ I" require 'json/add/ostruct' ;TI"iruby0 = OpenStruct.new(name: 'Matz', language: 'Ruby') # # ;TI"ejson = JSON.generate(ruby0) # {"json_class":"OpenStruct","t":{"name":"Matz","language":"Ruby"}} ;TI"cruby1 = JSON.parse(json, create_additions: true) # # ;TI"ruby1.class # OpenStruct ;T;0o;;[I" \Range:;To;;[ I"require 'json/add/range' ;TI"$ruby0 = Range.new(0, 2) # 0..2 ;TI"Jjson = JSON.generate(ruby0) # {"json_class":"Range","a":[0,2,false]} ;TI"=ruby1 = JSON.parse(json, create_additions: true) # 0..2 ;TI"ruby1.class # Range ;T;0o;;[I"\Rational:;To;;[ I"!require 'json/add/rational' ;TI""ruby0 = Rational(1, 3) # 1/3 ;TI"Ijson = JSON.generate(ruby0) # {"json_class":"Rational","n":1,"d":3} ;TI" ;TI"Djson = JSON.generate(ruby0) # {"json_class":"Set","a":[0,1,2]} ;TI"Jruby1 = JSON.parse(json, create_additions: true) # # ;TI"ruby1.class # Set ;T;0o;;[I" \Struct:;To;;[ I"require 'json/add/struct' ;TI"7Customer = Struct.new(:name, :address) # Customer ;TI"cruby0 = Customer.new("Dave", "123 Main") # # ;TI"Ujson = JSON.generate(ruby0) # {"json_class":"Customer","v":["Dave","123 Main"]} ;TI"kruby1 = JSON.parse(json, create_additions: true) # # ;TI"ruby1.class # Customer ;T;0o;;[I" \Symbol:;To;;[ I"require 'json/add/symbol' ;TI"ruby0 = :foo # foo ;TI"Ejson = JSON.generate(ruby0) # {"json_class":"Symbol","s":"foo"} ;TI" self.class.name, ;TI"+ 'a' => [ bar, baz ] ;TI" }.to_json(*args) ;TI" end ;TI"P # Deserialize JSON string by constructing new Foo object with arguments. ;TI"$ def self.json_create(object) ;TI" new(*object['a']) ;TI" end ;TI" end ;T;0o;;[I"Demonstration:;To;;[I"require 'json' ;TI"/# This Foo object has no custom addition. ;TI"foo0 = Foo.new(0, 1) ;TI"!json0 = JSON.generate(foo0) ;TI"obj0 = JSON.parse(json0) ;TI"!# Lood the custom addition. ;TI"%require_relative 'foo_addition' ;TI")# This foo has the custom addition. ;TI"foo1 = Foo.new(0, 1) ;TI"!json1 = JSON.generate(foo1) ;TI"6obj1 = JSON.parse(json1, create_additions: true) ;TI"# Make a nice display. ;TI"display = <" (String) ;TI"I With custom addition: {"json_class":"Foo","a":[0,1]} (String) ;TI"Parsed JSON: ;TI"F Without custom addition: "#" (String) ;TI"O With custom addition: # (Foo);T;0; I"ext/json/lib/json.rb;T; 0o;;[; I" ext/json/lib/json/common.rb;T; 0o;;[; I"ext/json/lib/json/ext.rb;T; 0o;;[; I"(ext/json/lib/json/generic_object.rb;T; 0o;;[; I"!ext/json/lib/json/version.rb;T; 0o;;[; I"ext/json/parser/parser.c;T; 0; 0; 0[ [ I"dump_default_options;TI"RW;T: privateTI" ext/json/lib/json/common.rb;T[ I"generator;TI"R;T;T@[ I"load_default_options;T@;T@[ I" parser;T@;T@[ I" state;T@;T@[ U:RDoc::Constant[iI"DEFAULT_CREATE_ID;TI"JSON::DEFAULT_CREATE_ID;T;0o;;[; @; 0@@cRDoc::NormalModule0U;[iI"CREATE_ID_TLS_KEY;TI"JSON::CREATE_ID_TLS_KEY;T;0o;;[; @; 0@@@0U;[iI"NaN;TI"JSON::NaN;T: public0o;;[; @; 0@@@0U;[iI" Infinity;TI"JSON::Infinity;T;0o;;[; @; 0@@@0U;[iI"MinusInfinity;TI"JSON::MinusInfinity;T;0o;;[; @; 0@@@0U;[iI"JSON_LOADED;TI"JSON::JSON_LOADED;T;0o;;[; @; 0@@@0U;[iI" VERSION;TI"JSON::VERSION;T;0o;;[o;;[I"JSON version;T; @; 0@@@0[[[I" class;T[[;[[:protected[[;[ [I"[];T@[I"create_fast_state;T@[I"create_id;T@[I"create_id=;T@[I"create_pretty_state;T@[I" iconv;T@[I" restore;T@[I" instance;T[[;[[;[[;[[I" dump;T@[I"fast_generate;T@[I" generate;T@[I" load;T@[I"load_file;T@[I"load_file!;T@[I" parse;T@[I" parse!;T@[I"pretty_generate;T@[@@[[U:RDoc::Context::Section[i0o;;[; 0; 0[I"#ext/json/generator/generator.c;TI"ext/json/lib/json.rb;TI"(ext/json/lib/json/add/bigdecimal.rb;TI"%ext/json/lib/json/add/complex.rb;TI""ext/json/lib/json/add/date.rb;TI"'ext/json/lib/json/add/date_time.rb;TI"'ext/json/lib/json/add/exception.rb;TI"%ext/json/lib/json/add/ostruct.rb;TI"#ext/json/lib/json/add/range.rb;TI"&ext/json/lib/json/add/rational.rb;TI"$ext/json/lib/json/add/regexp.rb;TI"!ext/json/lib/json/add/set.rb;TI"$ext/json/lib/json/add/struct.rb;TI"$ext/json/lib/json/add/symbol.rb;TI""ext/json/lib/json/add/time.rb;TI" ext/json/lib/json/common.rb;TI"ext/json/lib/json/ext.rb;TI"(ext/json/lib/json/generic_object.rb;TI"!ext/json/lib/json/version.rb;TI"ext/json/parser/parser.c;T@cRDoc::TopLevelPKh]H GenericObject/json_create-c.rinu[U:RDoc::AnyMethod[iI"json_create:ETI"%JSON::GenericObject::json_create;TT: privateo:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below000[I" (data);T@ FI"GenericObject;TcRDoc::NormalClass00PKh]ml  $GenericObject/json_creatable%3f-c.rinu[U:RDoc::AnyMethod[iI"json_creatable?:ETI")JSON::GenericObject::json_creatable?;TT: privateo:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below000[I"();T@ FI"GenericObject;TcRDoc::NormalClass00PKh]ij  GenericObject/%5b%5d-i.rinu[U:RDoc::AnyMethod[iI"[]:ETI"JSON::GenericObject#[];TF: privateo:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below000[I" (name);T@ FI"GenericObject;TcRDoc::NormalClass00PKh]eKb''GenericObject/load-c.rinu[U:RDoc::AnyMethod[iI" load:ETI"JSON::GenericObject::load;TT: privateo:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below000[I"$(source, proc = nil, opts = {});T@ FI"GenericObject;TcRDoc::NormalClass00PKh]e*GenericObject/as_json-i.rinu[U:RDoc::AnyMethod[iI" as_json:ETI" JSON::GenericObject#as_json;TF: privateo:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below000[I"(*);T@ FI"GenericObject;TcRDoc::NormalClass00PKh]wuGenericObject/to_json-i.rinu[U:RDoc::AnyMethod[iI" to_json:ETI" JSON::GenericObject#to_json;TF: privateo:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below000[I" (*a);T@ FI"GenericObject;TcRDoc::NormalClass00PKh].GenericObject/to_hash-i.rinu[U:RDoc::AnyMethod[iI" to_hash:ETI" JSON::GenericObject#to_hash;TF: privateo:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below000[I"();T@ FI"GenericObject;TcRDoc::NormalClass00PKh]!GenericObject/from_hash-c.rinu[U:RDoc::AnyMethod[iI"from_hash:ETI"#JSON::GenericObject::from_hash;TT: privateo:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below000[I" (object);T@ FI"GenericObject;TcRDoc::NormalClass00PKh]TR GenericObject/%5b%5d%3d-i.rinu[U:RDoc::AnyMethod[iI"[]=:ETI"JSON::GenericObject#[]=;TF: privateo:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below000[I"(name, value);T@ FI"GenericObject;TcRDoc::NormalClass00PKh] GenericObject/%7c-i.rinu[U:RDoc::AnyMethod[iI"|:ETI"JSON::GenericObject#|;TF: privateo:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below000[I" (other);T@ FI"GenericObject;TcRDoc::NormalClass00PKh]N6gJ$GenericObject/cdesc-GenericObject.rinu[U:RDoc::NormalClass[iI"GenericObject:ETI"JSON::GenericObject;TI"OpenStruct;To:RDoc::Markup::Document: @parts[o;;[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below0; 0; 0[[[[[I" class;T[[: public[[:protected[[: private[ [I" dump;TI"(ext/json/lib/json/generic_object.rb;T[I"from_hash;T@[I"json_creatable?;T@[I"json_create;T@[I" load;T@[I" instance;T[[; [[; [[; [ [I"[];T@[I"[]=;T@[I" as_json;T@[I" to_hash;T@[I" to_json;T@[I"|;T@[[U:RDoc::Context::Section[i0o;;[; 0; 0[I"(ext/json/lib/json/generic_object.rb;TI" JSON;TcRDoc::NormalModulePKh]GenericObject/dump-c.rinu[U:RDoc::AnyMethod[iI" dump:ETI"JSON::GenericObject::dump;TT: privateo:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below000[I"(obj, *args);T@ FI"GenericObject;TcRDoc::NormalClass00PKh]!GenericObject/json_creatable-c.rinu[U:RDoc::Attr[iI"json_creatable:ETI"(JSON::GenericObject::json_creatable;TI"W;T: publico:RDoc::Markup::Document: @parts[: @fileI"(ext/json/lib/json/generic_object.rb;T:0@omit_headings_from_table_of_contents_below0T@ I"JSON::GenericObject;TcRDoc::NormalClass0PKh]RuD parser-c.rinu[U:RDoc::Attr[iI" parser:ETI"JSON::parser;TI"R;T: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"HReturns the JSON parser class that is used by JSON. This is either ;TI"-JSON::Ext::Parser or JSON::Pure::Parser:;To:RDoc::Markup::Verbatim; [I"'JSON.parser # => JSON::Ext::Parser;T: @format0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0T@I" JSON;TcRDoc::NormalModule0PKh]O))&GeneratorError/cdesc-GeneratorError.rinu[U:RDoc::NormalClass[iI"GeneratorError:ETI"JSON::GeneratorError;TI"JSON::JSONError;To:RDoc::Markup::Document: @parts[o;;[o:RDoc::Markup::Paragraph;[I"FThis exception is raised if a generator or unparser error occurs.;T: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0; 0; 0[[[[[I" class;T[[: public[[:protected[[: private[[I" instance;T[[; [[; [[;[[[U:RDoc::Context::Section[i0o;;[; 0; 0[I" ext/json/lib/json/common.rb;TI" JSON;TcRDoc::NormalModulePKh]&֩FF iconv-c.rinu[U:RDoc::AnyMethod[iI" iconv:ETI"JSON::iconv;TT: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"(Encodes string using String.encode.;T: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below000[I"(to, from, string);T@FI" JSON;TcRDoc::NormalModule00PKh]4~  create_pretty_state-c.rinu[U:RDoc::AnyMethod[iI"create_pretty_state:ETI"JSON::create_pretty_state;TT: privateo:RDoc::Markup::Document: @parts[: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below000[I"();T@ FI" JSON;TcRDoc::NormalModule00PKh]3 Q4MissingUnicodeSupport/cdesc-MissingUnicodeSupport.rinu[U:RDoc::NormalClass[iI"MissingUnicodeSupport:ETI" JSON::MissingUnicodeSupport;TI"JSON::JSONError;To:RDoc::Markup::Document: @parts[o;;[o:RDoc::Markup::Paragraph;[I"PThis exception is raised if the required unicode support is missing on the ;TI"Hsystem. Usually this means that the iconv library is not installed.;T: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0; 0; 0[[[[[I" class;T[[: public[[:protected[[: private[[I" instance;T[[; [[; [[;[[[U:RDoc::Context::Section[i0o;;[; 0; 0[I" ext/json/lib/json/common.rb;TI" JSON;TcRDoc::NormalModulePKh]7 N load-i.rinu[U:RDoc::AnyMethod[iI" load:ETI"JSON#load;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"DReturns the Ruby objects created by parsing the given +source+.;To:RDoc::Markup::BlankLineo:RDoc::Markup::List: @type: BULLET: @items[o:RDoc::Markup::ListItem: @label0; [o; ; [I"@Argument +source+ must be, or be convertible to, a \String:;To; ; ;;[ o;;0; [o; ; [I"7If +source+ responds to instance method +to_str+, ;TI"/source.to_str becomes the source.;To;;0; [o; ; [I"6If +source+ responds to instance method +to_io+, ;TI"3source.to_io.read becomes the source.;To;;0; [o; ; [I"5If +source+ responds to instance method +read+, ;TI"-source.read becomes the source.;To;;0; [o; ; [I"SIf both of the following are true, source becomes the \String 'null':;To; ; ;;[o;;0; [o; ; [I"3Option +allow_blank+ specifies a truthy value.;To;;0; [o; ; [I"MThe source, as defined above, is +nil+ or the empty \String ''.;To;;0; [o; ; [I",Otherwise, +source+ remains the source.;To;;0; [o; ; [ I"KArgument +proc+, if given, must be a \Proc that accepts one argument. ;TI"IIt will be called recursively with each result (depth-first order). ;TI"See details below. ;TI"MBEWARE: This method is meant to serialise data from trusted user input, ;TI"Plike from your own database server or clients under your control, it could ;TI"Hbe dangerous to allow untrusted users to pass JSON sources into it.;To;;0; [o; ; [I"MArgument +opts+, if given, contains a \Hash of options for the parsing. ;TI"@See {Parsing Options}[#module-JSON-label-Parsing+Options]. ;TI"NThe default options can be changed via method JSON.load_default_options=.;T@S:RDoc::Markup::Rule: weighti@o; ; [I"SWhen no +proc+ is given, modifies +source+ as above and returns the result of ;TI"/parse(source, opts); see #parse.;T@o; ; [I"#Source for following examples:;To:RDoc::Markup::Verbatim; [I"source = <<-EOT ;TI"{ ;TI""name": "Dave", ;TI" "age" :40, ;TI" "hats": [ ;TI" "Cattleman's", ;TI" "Panama", ;TI" "Tophat" ;TI" ] ;TI"} ;TI" EOT ;T: @format0o; ; [I"Load a \String:;To;; [I"ruby = JSON.load(source) ;TI"Xruby # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]} ;T;0o; ; [I"Load an \IO object:;To;; [I"require 'stringio' ;TI".object = JSON.load(StringIO.new(source)) ;TI"Zobject # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]} ;T;0o; ; [I"Load a \File object:;To;; [ I"path = 't.json' ;TI"File.write(path, source) ;TI"File.open(path) do |file| ;TI" JSON.load(file) ;TI"Wend # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]} ;T;0S;;i@o; ; [I"When +proc+ is given:;To; ; ;;[ o;;0; [o; ; [I" Modifies +source+ as above.;To;;0; [o; ; [I"AGets the +result+ from calling parse(source, opts).;To;;0; [o; ; [I"-Recursively calls proc(result).;To;;0; [o; ; [I"Returns the final result.;T@o; ; [I" Example:;To;; [-I"require 'json' ;TI" ;TI"%# Some classes for the example. ;TI"class Base ;TI"" def initialize(attributes) ;TI"" @attributes = attributes ;TI" end ;TI" end ;TI"class User < Base; end ;TI"class Account < Base; end ;TI"class Admin < Base; end ;TI"# The JSON source. ;TI"json = <<-EOF ;TI"{ ;TI" "users": [ ;TI"N {"type": "User", "username": "jane", "email": "jane@example.com"}, ;TI"M {"type": "User", "username": "john", "email": "john@example.com"} ;TI" ], ;TI" "accounts": [ ;TI"Q {"account": {"type": "Account", "paid": true, "account_id": "1234"}}, ;TI"Q {"account": {"type": "Account", "paid": false, "account_id": "1235"}} ;TI" ], ;TI"8 "admins": {"type": "Admin", "password": "0wn3d"} ;TI"} ;TI" EOF ;TI"# Deserializer method. ;TI"Cdef deserialize_obj(obj, safe_types = %w(User Account Admin)) ;TI"- type = obj.is_a?(Hash) && obj["type"] ;TI"I safe_types.include?(type) ? Object.const_get(type).new(obj) : obj ;TI" end ;TI"# Call to JSON.load ;TI"(ruby = JSON.load(json, proc {|obj| ;TI" case obj ;TI" when Hash ;TI"7 obj.each {|k, v| obj[k] = deserialize_obj v } ;TI" when Array ;TI"+ obj.map! {|v| deserialize_obj v } ;TI" end ;TI"}) ;TI" pp ruby ;T;0o; ; [I" Output:;To;; [I"{"users"=> ;TI"# [#"User", "username"=>"jane", "email"=>"jane@example.com"}>, ;TI"$ #"User", "username"=>"john", "email"=>"john@example.com"}>], ;TI" "accounts"=> ;TI" [{"account"=> ;TI") #"Account", "paid"=>true, "account_id"=>"1234"}>}, ;TI" {"account"=> ;TI") #"Account", "paid"=>false, "account_id"=>"1235"}>}], ;TI" "admins"=> ;TI"# #"Admin", "password"=>"0wn3d"}>};T;0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0I";JSON.load(source, proc = nil, options = {}) -> object ;T0[[I" restore;To;; [;@;0I"'(source, proc = nil, options = {});T@FI" JSON;TcRDoc::NormalModule00PKh]tExt/Parser/source-i.rinu[U:RDoc::AnyMethod[iI" source:ETI"JSON::Ext::Parser#source;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"OReturns a copy of the current _source_ string, that was used to construct ;TI"this Parser.;T: @fileI"ext/json/parser/parser.c;T:0@omit_headings_from_table_of_contents_below0I"source() ;T0[I"();T@FI" Parser;TcRDoc::NormalClass00PKh] dExt/Parser/new-c.rinu[U:RDoc::AnyMethod[iI"new:ETI"JSON::Ext::Parser::new;TT: privateo:RDoc::Markup::Document: @parts[ o:RDoc::Markup::Paragraph; [I"FCreates a new JSON::Ext::Parser instance for the string _source_.;To:RDoc::Markup::BlankLineo; ; [I"FCreates a new JSON::Ext::Parser instance for the string _source_.;T@o; ; [I"MIt will be configured by the _opts_ hash. _opts_ can have the following ;TI" keys:;T@o; ; [I"(_opts_ can have the following keys:;To:RDoc::Markup::List: @type: BULLET: @items[ o:RDoc::Markup::ListItem: @label0; [o; ; [I"L*max_nesting*: The maximum depth of nesting allowed in the parsed data ;TI"Mstructures. Disable depth checking with :max_nesting => false|nil|0, it ;TI"defaults to 100.;To;;0; [o; ; [I"G*allow_nan*: If set to true, allow NaN, Infinity and -Infinity in ;TI"Ndefiance of RFC 4627 to be parsed by the Parser. This option defaults to ;TI" false.;To;;0; [o; ; [ I"F*symbolize_names*: If set to true, returns symbols for the names ;TI"G(keys) in a JSON object. Otherwise strings are returned, which is ;TI"?also the default. It's not possible to use this option in ;TI"4conjunction with the *create_additions* option.;To;;0; [o; ; [I"D*create_additions*: If set to false, the Parser doesn't create ;TI"Madditions even if a matching class and create_id was found. This option ;TI"defaults to false.;To;;0; [o; ; [I"%*object_class*: Defaults to Hash;To;;0; [o; ; [I"%*array_class*: Defaults to Array;T: @fileI"ext/json/parser/parser.c;T:0@omit_headings_from_table_of_contents_below0I"new(source, opts => {}) ;T0[I"(p1, p2 = {});T@BFI" Parser;TcRDoc::NormalClass00PKh]%%%Ext/Parser/cdesc-Parser.rinu[U:RDoc::NormalClass[iI" Parser:ETI"JSON::Ext::Parser;TI" Object;To:RDoc::Markup::Document: @parts[o;;[ o:RDoc::Markup::Paragraph;[I"PThis is the JSON parser implemented as a C extension. It can be configured ;TI"to be used by setting;To:RDoc::Markup::BlankLineo:RDoc::Markup::Verbatim;[I"%JSON.parser = JSON::Ext::Parser ;T: @format0o; ;[I"%with the method parser= in JSON.;T: @fileI"ext/json/parser/parser.c;T:0@omit_headings_from_table_of_contents_below0; 0;0[[[[[I" class;T[[: public[[:protected[[: private[[I"new;TI"ext/json/parser/parser.c;T[I" instance;T[[;[[;[[;[[I" parse;T@)[I" source;T@)[[U:RDoc::Context::Section[i0o;;[; 0;0[I"#ext/json/generator/generator.c;TI"JSON::Ext;TcRDoc::NormalModulePKh]`Ext/Parser/parse-i.rinu[U:RDoc::AnyMethod[iI" parse:ETI"JSON::Ext::Parser#parse;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"IParses the current JSON text _source_ and returns the complete data ;TI"structure as a result.;T: @fileI"ext/json/parser/parser.c;T:0@omit_headings_from_table_of_contents_below0I" parse() ;T0[I"();T@FI" Parser;TcRDoc::NormalClass00PKh]Ext/cdesc-Ext.rinu[U:RDoc::NormalModule[iI"Ext:ETI"JSON::Ext;T0o:RDoc::Markup::Document: @parts[o;;[: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0o;;[o:RDoc::Markup::Paragraph;[I"EThis module holds all the modules/classes that implement JSON's ;TI"#functionality as C extensions.;T; I"ext/json/lib/json/ext.rb;T; 0o;;[; I"ext/json/parser/parser.c;T; 0; 0; 0[[[[[I" class;T[[: public[[:protected[[: private[[I" instance;T[[; [[; [[;[[[U:RDoc::Context::Section[i0o;;[; 0; 0[I"#ext/json/generator/generator.c;TI"ext/json/lib/json/ext.rb;TI" JSON;TcRDoc::NormalModulePKh]} Ext/Generator/cdesc-Generator.rinu[U:RDoc::NormalModule[iI"Generator:ETI"JSON::Ext::Generator;T0o:RDoc::Markup::Document: @parts[o;;[ o:RDoc::Markup::Paragraph;[I"HThis is the JSON generator implemented as a C extension. It can be ;TI"%configured to be used by setting;To:RDoc::Markup::BlankLineo:RDoc::Markup::Verbatim;[I"+JSON.generator = JSON::Ext::Generator ;T: @format0o; ;[I"(with the method generator= in JSON.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0; 0;0[[[[[I" class;T[[: public[[:protected[[: private[[I" instance;T[[;[[;[[;[[[U:RDoc::Context::Section[i0o;;[; 0;0[I"#ext/json/generator/generator.c;TI"JSON::Ext;TcRDoc::NormalModulePKh]V^5"Ext/Generator/State/configure-i.rinu[U:RDoc::AnyMethod[iI"configure:ETI"*JSON::Ext::Generator::State#configure;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"DConfigure this State instance with the Hash _opts_, and return ;TI" itself.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"configure(opts) ;T0[[I" merge;T@ I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]qҕ"Ext/Generator/State/indent%3d-i.rinu[U:RDoc::AnyMethod[iI" indent=:ETI"(JSON::Ext::Generator::State#indent=;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"DSets the string that is used to indent levels in the JSON text.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"indent=(indent) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]dl@!Ext/Generator/State/space%3d-i.rinu[U:RDoc::AnyMethod[iI" space=:ETI"'JSON::Ext::Generator::State#space=;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"\Sets _space_ to the string that is used to insert a space between the tokens in a JSON ;TI" string.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"space=(space) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]W1Ext/Generator/State/buffer_initial_length%3d-i.rinu[U:RDoc::AnyMethod[iI"buffer_initial_length=:ETI"7JSON::Ext::Generator::State#buffer_initial_length=;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"NThis sets the initial length of the buffer to +length+, if +length+ > 0, ;TI"'otherwise its value isn't changed.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"$buffer_initial_length=(length) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]MExt/Generator/State/merge-i.rinu[U:RDoc::AnyMethod[iI" merge:ETI"&JSON::Ext::Generator::State#merge;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"DConfigure this State instance with the Hash _opts_, and return ;TI" itself.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below000[I" (p1);T@FI" State;TcRDoc::NormalClass0[I" JSON::Ext::Generator::State;TFI"configure;TPKh]H.ZyyExt/Generator/State/depth-i.rinu[U:RDoc::AnyMethod[iI" depth:ETI"&JSON::Ext::Generator::State#depth;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"FThis integer returns the current depth of data structure nesting.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I" depth ;T0[I"();T@FI" State;TcRDoc::NormalClass00PKh]1f%Ext/Generator/State/new-c.rinu[U:RDoc::AnyMethod[iI"new:ETI"%JSON::Ext::Generator::State::new;TT: privateo:RDoc::Markup::Document: @parts[ o:RDoc::Markup::Paragraph; [I";Instantiates a new State object, configured by _opts_.;To:RDoc::Markup::BlankLineo; ; [I"(_opts_ can have the following keys:;T@o:RDoc::Markup::List: @type: BULLET: @items[ o:RDoc::Markup::ListItem: @label0; [o; ; [I"<*indent*: a string used to indent levels (default: ''),;To;;0; [o; ; [I"K*space*: a string that is put after, a : or , delimiter (default: ''),;To;;0; [o; ; [I"R*space_before*: a string that is put before a : pair delimiter (default: ''),;To;;0; [o; ; [I"Q*object_nl*: a string that is put at the end of a JSON object (default: ''),;To;;0; [o; ; [I"O*array_nl*: a string that is put at the end of a JSON array (default: ''),;To;;0; [o; ; [I"A*allow_nan*: true if NaN, Infinity, and -Infinity should be ;TI"Fgenerated, otherwise an exception is thrown, if these values are ;TI"1encountered. This options defaults to false.;To;;0; [o; ; [I"K*ascii_only*: true if only ASCII characters should be generated. This ;TI"option defaults to false.;To;;0; [o; ; [I"I*buffer_initial_length*: sets the initial length of the generator's ;TI"internal buffer.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"new(opts = {}) ;T0[I"(p1 = v1);T@@FI" State;TcRDoc::NormalClass00PKh]^JD'%Ext/Generator/State/object_nl%3d-i.rinu[U:RDoc::AnyMethod[iI"object_nl=:ETI"+JSON::Ext::Generator::State#object_nl=;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"JThis string is put at the end of a line that holds a JSON object (or ;TI" Hash).;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"object_nl=(object_nl) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh])v.Ext/Generator/State/buffer_initial_length-i.rinu[U:RDoc::AnyMethod[iI"buffer_initial_length:ETI"6JSON::Ext::Generator::State#buffer_initial_length;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"CThis integer returns the current initial length of the buffer.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"buffer_initial_length ;T0[I"();T@FI" State;TcRDoc::NormalClass00PKh]H*y%Ext/Generator/State/allow_nan%3f-i.rinu[U:RDoc::AnyMethod[iI"allow_nan?:ETI"+JSON::Ext::Generator::State#allow_nan?;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"RReturns true, if NaN, Infinity, and -Infinity should be generated, otherwise ;TI"returns false.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"allow_nan? ;T0[I"();T@FI" State;TcRDoc::NormalClass00PKh]ɝk22#Ext/Generator/State/from_state-c.rinu[U:RDoc::AnyMethod[iI"from_state:ETI",JSON::Ext::Generator::State::from_state;TT: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"LCreates a State object from _opts_, which ought to be Hash to create a ;TI"Jnew State instance configured by _opts_, something else to create an ;TI"Munconfigured instance. If _opts_ is a State object, it is just returned.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"from_state(opts) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]U]ccExt/Generator/State/%5b%5d-i.rinu[U:RDoc::AnyMethod[iI"[]:ETI"#JSON::Ext::Generator::State#[];TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"1Returns the value returned by method +name+.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"[](name) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]S'Ext/Generator/State/max_nesting%3d-i.rinu[U:RDoc::AnyMethod[iI"max_nesting=:ETI"-JSON::Ext::Generator::State#max_nesting=;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"QThis sets the maximum level of data structure nesting in the generated JSON ;TI"Kto the integer depth, max_nesting = 0 if no maximum should be checked.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"max_nesting=(depth) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]JS.$Ext/Generator/State/array_nl%3d-i.rinu[U:RDoc::AnyMethod[iI"array_nl=:ETI"*JSON::Ext::Generator::State#array_nl=;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"EThis string is put at the end of a line that holds a JSON array.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"array_nl=(array_nl) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]9 (Ext/Generator/State/escape_slash%3d-i.rinu[U:RDoc::AnyMethod[iI"escape_slash=:ETI".JSON::Ext::Generator::State#escape_slash=;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"EThis sets whether or not the forward slashes will be escaped in ;TI"the json output.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"escape_slash=(depth) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]iOi%Ext/Generator/State/escape_slash-i.rinu[U:RDoc::AnyMethod[iI"escape_slash:ETI"-JSON::Ext::Generator::State#escape_slash;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"EIf this boolean is true, the forward slashes will be escaped in ;TI"the json output.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"escape_slash ;T0[[I"escape_slash?;T@ I"();T@FI" State;TcRDoc::NormalClass00PKh]_|E Ext/Generator/State/to_hash-i.rinu[U:RDoc::AnyMethod[iI" to_hash:ETI"(JSON::Ext::Generator::State#to_hash;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"IReturns the configuration instance variables as a hash, that can be ;TI"$passed to the configure method.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below000[I"();T@FI" State;TcRDoc::NormalClass0[I" JSON::Ext::Generator::State;TFI" to_h;TPKh]C*Ext/Generator/State/check_circular%3f-i.rinu[U:RDoc::AnyMethod[iI"check_circular?:ETI"0JSON::Ext::Generator::State#check_circular?;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"BReturns true, if circular data structures should be checked, ;TI"otherwise returns false.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"check_circular? ;T0[I"();T@FI" State;TcRDoc::NormalClass00PKh]̠%Ext/Generator/State/space_before-i.rinu[U:RDoc::AnyMethod[iI"space_before:ETI"-JSON::Ext::Generator::State#space_before;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"VReturns the string that is used to insert a space before the ':' in JSON objects.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"space_before() ;T0[I"();T@FI" State;TcRDoc::NormalClass00PKh]l ff"Ext/Generator/State/%5b%5d%3d-i.rinu[U:RDoc::AnyMethod[iI"[]=:ETI"$JSON::Ext::Generator::State#[]=;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"&Sets the attribute name to value.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"[]=(name, value) ;T0[I" (p1, p2);T@FI" State;TcRDoc::NormalClass00PKh]LUF!Ext/Generator/State/generate-i.rinu[U:RDoc::AnyMethod[iI" generate:ETI")JSON::Ext::Generator::State#generate;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"GGenerates a valid JSON document from object +obj+ and returns the ;TI"Kresult. If no valid JSON document can be created this method raises a ;TI"GeneratorError exception.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"generate(obj) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]!Ext/Generator/State/array_nl-i.rinu[U:RDoc::AnyMethod[iI" array_nl:ETI")JSON::Ext::Generator::State#array_nl;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"EThis string is put at the end of a line that holds a JSON array.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"array_nl() ;T0[I"();T@FI" State;TcRDoc::NormalClass00PKh] (:"Ext/Generator/State/object_nl-i.rinu[U:RDoc::AnyMethod[iI"object_nl:ETI"*JSON::Ext::Generator::State#object_nl;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"JThis string is put at the end of a line that holds a JSON object (or ;TI" Hash).;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"object_nl() ;T0[I"();T@FI" State;TcRDoc::NormalClass00PKh]r8&Ext/Generator/State/ascii_only%3f-i.rinu[U:RDoc::AnyMethod[iI"ascii_only?:ETI",JSON::Ext::Generator::State#ascii_only?;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"KReturns true, if only ASCII characters should be generated. Otherwise ;TI"returns false.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"ascii_only? ;T0[I"();T@FI" State;TcRDoc::NormalClass00PKh]t۵(Ext/Generator/State/initialize_copy-i.rinu[U:RDoc::AnyMethod[iI"initialize_copy:ETI"0JSON::Ext::Generator::State#initialize_copy;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"RInitializes this object from orig if it can be duplicated/cloned and returns ;TI"it.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"initialize_copy(orig) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]9Ext/Generator/State/indent-i.rinu[U:RDoc::AnyMethod[iI" indent:ETI"'JSON::Ext::Generator::State#indent;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"GReturns the string that is used to indent levels in the JSON text.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"indent() ;T0[I"();T@FI" State;TcRDoc::NormalClass00PKh]Ext/Generator/State/to_h-i.rinu[U:RDoc::AnyMethod[iI" to_h:ETI"%JSON::Ext::Generator::State#to_h;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"IReturns the configuration instance variables as a hash, that can be ;TI"$passed to the configure method.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I" to_h ;T0[[I" to_hash;T@ I"();T@FI" State;TcRDoc::NormalClass00PKh]ې(Ext/Generator/State/space_before%3d-i.rinu[U:RDoc::AnyMethod[iI"space_before=:ETI".JSON::Ext::Generator::State#space_before=;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"SSets the string that is used to insert a space before the ':' in JSON objects.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"!space_before=(space_before) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]~~"Ext/Generator/State/cdesc-State.rinu[U:RDoc::NormalClass[iI" State:ETI" JSON::Ext::Generator::State;TI" Object;To:RDoc::Markup::Document: @parts[o;;[: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0; 0; 0[[[[[I" class;T[[: public[[:protected[[: private[[I"from_state;TI"#ext/json/generator/generator.c;T[I"new;T@[I" instance;T[[; [[; [[; [#[I"[];T@[I"[]=;T@[I"allow_nan?;T@[I" array_nl;T@[I"array_nl=;T@[I"ascii_only?;T@[I"buffer_initial_length;T@[I"buffer_initial_length=;T@[I"check_circular?;T@[I"configure;T@[I" depth;T@[I" depth=;T@[I"escape_slash;T@[I"escape_slash=;T@[I"escape_slash?;T@[I" generate;T@[I" indent;T@[I" indent=;T@[I"initialize_copy;T@[I"max_nesting;T@[I"max_nesting=;T@[I" merge;T@[I"object_nl;T@[I"object_nl=;T@[I" space;T@[I" space=;T@[I"space_before;T@[I"space_before=;T@[I" to_h;T@[I" to_hash;T@[[U:RDoc::Context::Section[i0o;;[; 0; 0[I"#ext/json/generator/generator.c;TI"JSON::Ext::Generator;TcRDoc::NormalModulePKh]$we!Ext/Generator/State/depth%3d-i.rinu[U:RDoc::AnyMethod[iI" depth=:ETI"'JSON::Ext::Generator::State#depth=;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"QThis sets the maximum level of data structure nesting in the generated JSON ;TI"Kto the integer depth, max_nesting = 0 if no maximum should be checked.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"depth=(depth) ;T0[I" (p1);T@FI" State;TcRDoc::NormalClass00PKh]ACExt/Generator/State/space-i.rinu[U:RDoc::AnyMethod[iI" space:ETI"&JSON::Ext::Generator::State#space;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"TReturns the string that is used to insert a space between the tokens in a JSON ;TI" string.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I" space() ;T0[I"();T@FI" State;TcRDoc::NormalClass00PKh]ue(Ext/Generator/State/escape_slash%3f-i.rinu[U:RDoc::AnyMethod[iI"escape_slash?:ETI".JSON::Ext::Generator::State#escape_slash?;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"EIf this boolean is true, the forward slashes will be escaped in ;TI"the json output.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below000[I"();T@FI" State;TcRDoc::NormalClass0[I" JSON::Ext::Generator::State;TFI"escape_slash;TPKh]1O$Ext/Generator/State/max_nesting-i.rinu[U:RDoc::AnyMethod[iI"max_nesting:ETI",JSON::Ext::Generator::State#max_nesting;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"IThis integer returns the maximum level of data structure nesting in ;TI"Bthe generated JSON, max_nesting = 0 if no maximum is checked.;T: @fileI"#ext/json/generator/generator.c;T:0@omit_headings_from_table_of_contents_below0I"max_nesting ;T0[I"();T@FI" State;TcRDoc::NormalClass00PKh]'<   restore-c.rinu[U:RDoc::AnyMethod[iI" restore:ETI"JSON::restore;TT: privateo:RDoc::Markup::Document: @parts[: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below000[I"'(source, proc = nil, options = {});T@ FI" JSON;TcRDoc::NormalModule0[@FI" load;TPKh]*=;; parse%21-i.rinu[U:RDoc::AnyMethod[iI" parse!:ETI"JSON#parse!;TF: privateo:RDoc::Markup::Document: @parts[ o:RDoc::Markup::Paragraph; [I" Calls;To:RDoc::Markup::Verbatim; [I"parse(source, opts) ;T: @format0o; ; [I"0with +source+ and possibly modified +opts+.;To:RDoc::Markup::BlankLineo; ; [I"!Differences from JSON.parse:;To:RDoc::Markup::List: @type: BULLET: @items[o:RDoc::Markup::ListItem: @label0; [o; ; [I"AOption +max_nesting+, if not provided, defaults to +false+, ;TI"/which disables checking for nesting depth.;To;;0; [o; ; [I"=Option +allow_nan+, if not provided, defaults to +true+.;T: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0I")JSON.parse!(source, opts) -> object ;T0[I"(source, opts = {});T@%FI" JSON;TcRDoc::NormalModule00PKh]-;;"NestingError/cdesc-NestingError.rinu[U:RDoc::NormalClass[iI"NestingError:ETI"JSON::NestingError;TI"JSON::ParserError;To:RDoc::Markup::Document: @parts[o;;[o:RDoc::Markup::Paragraph;[I"NThis exception is raised if the nesting of parsed data structures is too ;TI" deep.;T: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0; 0; 0[[[[[I" class;T[[: public[[:protected[[: private[[I" instance;T[[; [[; [[;[[[U:RDoc::Context::Section[i0o;;[; 0; 0[I" ext/json/lib/json/common.rb;TI" JSON;TcRDoc::NormalModulePKh]1úpp parse-i.rinu[U:RDoc::AnyMethod[iI" parse:ETI"JSON#parse;TF: privateo:RDoc::Markup::Document: @parts[o:RDoc::Markup::Paragraph; [I"DReturns the Ruby objects created by parsing the given +source+.;To:RDoc::Markup::BlankLineo; ; [I"9Argument +source+ contains the \String to be parsed.;T@o; ; [I"MArgument +opts+, if given, contains a \Hash of options for the parsing. ;TI"?See {Parsing Options}[#module-JSON-label-Parsing+Options].;T@S:RDoc::Markup::Rule: weighti@o; ; [I";When +source+ is a \JSON array, returns a Ruby \Array:;To:RDoc::Markup::Verbatim; [ I"0source = '["foo", 1.0, true, false, null]' ;TI"ruby = JSON.parse(source) ;TI".ruby # => ["foo", 1.0, true, false, nil] ;TI"ruby.class # => Array ;T: @format0o; ; [I";When +source+ is a \JSON object, returns a Ruby \Hash:;To;; [ I"Isource = '{"a": "foo", "b": 1.0, "c": true, "d": false, "e": null}' ;TI"ruby = JSON.parse(source) ;TI"Gruby # => {"a"=>"foo", "b"=>1.0, "c"=>true, "d"=>false, "e"=>nil} ;TI"ruby.class # => Hash ;T;0o; ; [I";For examples of parsing for all \JSON data types, see ;TI"6{Parsing \JSON}[#module-JSON-label-Parsing+JSON].;T@o; ; [I" Parses nested JSON objects:;To;; [I"source = <<-EOT ;TI"{ ;TI""name": "Dave", ;TI" "age" :40, ;TI" "hats": [ ;TI" "Cattleman's", ;TI" "Panama", ;TI" "Tophat" ;TI" ] ;TI"} ;TI" EOT ;TI"ruby = JSON.parse(source) ;TI"Xruby # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]} ;T;0S; ; i@o; ; [I"7Raises an exception if +source+ is not valid JSON:;To;; [I"?# Raises JSON::ParserError (783: unexpected token at ''): ;TI"JSON.parse('');T;0: @fileI" ext/json/lib/json/common.rb;T:0@omit_headings_from_table_of_contents_below0I"(JSON.parse(source, opts) -> object ;T0[I"(source, opts = {});T@GFI" JSON;TcRDoc::NormalModule00PKl]o XS/.packlistnu[/usr/local/bin/cpanel_json_xs /usr/local/lib64/perl5/Cpanel/JSON/XS.pm /usr/local/lib64/perl5/Cpanel/JSON/XS/Boolean.pm /usr/local/lib64/perl5/Cpanel/JSON/XS/Type.pm /usr/local/lib64/perl5/auto/Cpanel/JSON/XS/XS.so /usr/local/share/man/man1/cpanel_json_xs.1 /usr/local/share/man/man3/Cpanel::JSON::XS.3pm /usr/local/share/man/man3/Cpanel::JSON::XS::Boolean.3pm /usr/local/share/man/man3/Cpanel::JSON::XS::Type.3pm PKl]TQXS/XS.sonu7mELF>.@@8 @%$8989 P:P:!P:! h:h:!h:!888$$999 Std999 Ptd)))QtdRtdP:P:!P:!GNU.@9#|q pP  psBE|>uqXfx @IVel9Uyoer @/l.Eof Nx#Q1U5A%`', b7F"C "@!5@!b ` )@!__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizelibpthread.so.0memcmpPerl_sv_growPerl_sv_2pv_flags__stack_chk_failPerl_hv_commonstrtodPerl_sv_free2PL_thr_keypthread_getspecificPerl_sv_cmp_flagsPerl_newSVpvn_flagsPerl_sv_derived_fromPerl_croak_nocontextPerl_croak_xs_usagePerl_sv_newmortalPerl_sv_setiv_mgPerl_sv_2iv_flagsPerl_stack_growPerl_sv_2uv_flagsPerl_sv_chopPerl_sv_setuv_mgPerl_warn_nocontextPerl_newSVPerl_gv_stashpvPerl_newRV_noincPerl_sv_blessPerl_sv_2mortalPerl_gv_stashpvnPerl_push_scopePerl_newSVpvnPerl_load_modulePerl_pop_scopestrlenPerl_get_cvn_flagsPerl_call_svPerl_markstack_growPerl_utf8_lengthPerl_get_svPerl_newSVpvmemcpyPerl_utf8n_to_uvuniPerl_newSVsv__sprintf_chkPL_hexdigitPerl_hv_placeholders_getPerl_newSV_typePerl_newRVPerl_amagic_callPerl_sv_copypv_flagsPerl_mg_getPerl_sv_pvutf8n_forcePerl_mg_setPerl_sv_taintedPerl_sv_setsv_flagsPerl_hv_common_key_lenPerl_av_pushPerl_av_lenPerl_gv_stashsvPerl_gv_fetchmethod_autoloadPerl_savetmpsPerl_av_fetchPerl_free_tmpsPerl_sv_catpvn_flagsPerl_eval_svPerl_newSVivPerl_grok_numberPerl_newSVnvPerl_gv_add_by_typePerl_sv_2bool_flagsPerl_hv_iterinitPerl_hv_iternext_flagsPerl_hv_iterkeysvPerl_av_extendPerl_av_storePerl_newSVuvPerl_sv_utf8_upgrade_flags_growPerl_sv_upgradePerl_sv_utf8_downgradePerl_save_vptrPerl_pv_uni_displaymemmovePerl_block_gimmePL_utf8skipstrcmpgcvtstrchrmodf__snprintf_chkPerl_sv_2nv_flagsPL_nanPL_infPerl_call_methodmemsetPerl_hv_itervalqsortPerl_safesysfreePerl_safesyscallocPerl_mg_findPerl_safesysreallocboot_Cpanel__JSON__XSPerl_xs_handshakePerl_newXS_deffilePerl_apply_attrs_stringPerl_newXS_flagsPerl_my_cxt_initPerl_newCONSTSUBPerl_get_cvPerl_xs_boot_epiloglibperl.so.5.26libc.so.6_edata__bss_start_endGLIBC_2.2.5GLIBC_2.14GLIBC_2.4GLIBC_2.3.4U ui :Fii Qui :ti [P:!.X:!.`:!`:!?!?!?!+?!=?!\?!]?!c?!h?!l!4>!5>!6>!7 >!8(>!90>!:8>!;@>!<H>!>P>!?X>!@`>!Ah>!Bp>!Cx>!D>!E>!F>!G>!H>!I>!J>!K>!L>!M>!N>!O>!P>!Q>!R>!S>!T?!U?!V?!W?!X ?!Y(?!Z0?![8?!^@?!_H?!`P?!aX?!b`?!dh?!ep?!fx?!g?!h?!i?!j?!k?!m?!n?!oHH!HtH5J!%K!hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4h5h6h7qh8ah9Qh:Ah;1h<!h=h>h?h@hAhBhChDhEhFhGqhHahIQhJAhK1hL!hMhNhOhPhQhRhShThUhVhWqhXahYQhZAh[1h\!h]h^h_h`hahbhchdhehf%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!D%!DH=!H!H9tH!Ht H=!H5!H)HHH?HHtH}!HtfD=y!u+UH=Z!Ht H= !dQ!]wHHwH9s9I&A$ wIsH9vHHfD#t f.GtH9vHP EtH HA w MIIAHH9wUSHHHHyH@HcOHcPHpH9HHHGH)DDH[]HH H9NvfUHSHHHvH+nHHH9HCHTFu HH9QseHsHFHHHHVH@HDHCH[]ff.HV dH%(HD$1ʃ wFH$t5 uBHHPHFH$Hu1t 0t+H|$dH3<%(uHÐH1H$1Ht&:xCDIHIH8x'L9uE1HjAPAH1j$H(A?-t 1@HH1fW9H@HtVvV@ff.H HcN!HoxHHp0H@0HtF u<t%= tVvVf;ff.H !ATIUHS8HHEH8H@HHt HcPu@HhI$H8HHHHt HcQuCHqHH߹[]A\CLH HLHH yH@UHSHHH !8HUH HHIHRHqHRH1[]ff.ATUSHGxHHHPHWxHWHchHH)HHHcL$LH2F HNAt~Lcg !H H9JHH9t!HOHt>HSLHHHHAHx8ueH@0H8HHDHHCLH[]A\ÐHCH@ DtH=1DH=Y1 f.H=i1HH5AUATUSHHHGxHHPHWxHWHchHH)HH7HG@#HHHGL,HcH4L$F HNALc !H H9JHH9tHHPt\HSHHHHAJl"PEAE t}IUAE LmLcL#H[]A\A]@HCH@ DtH=1DH=1f.HSILHM~HH5YfAWAVAUATUSHHHGxL?HPLHWxHcHGIDjHH)HUgMcJ4V HNALc !H H9JHH9t#HHHCJHJLqAMcJ4F % =HH@ HHcAFEHC HI)L)HHCIwJIGH3H[]A\A]A^A_JP ftH=1DH=91f.ofDH#MfDLLHeITHH5iH=E1~ff.AUATUSHHHGxHHPHWxHWHchHH)HH7HG@#HHHGL,HcH4L$F HNALc!H H9JHH9tHHt\HSHHHHAJl"HcPAE t}IUAE LmLcL#H[]A\A]@HCH@ DtH=<1=DH=y1*f.HSILH~HH5fAWAVAUATUSHHHGxL?HPLHWxHWHcIDhHH)HE7McJ4F HNALc,!H H9JHH9tHHgt{HSJHHLq1~$AMcJ4F % =~H@ HcIFHC HI)L)H~vHCIwJIGH3H[]A\A]A^A_@HCJ@ DtH=1DH=1fH3t@LLH%IoHH5>Nff.AWAVAUATUSHHHGxL?HPLHWxHWHcIDhHH)HE7McJ4F HNALc!H H9JHH9tHtHt{HSJHHLq~ AMcJ4F % =uH@ HcAFHC HI)L)H~wHCIwJIGH3H[]A\A]A^A_DHCJ@ DtH=1DH=A1fHufDLLHInHH5ff.AUATUSHHHHCxL#HPLHSxHSHchHH)HHHcH4F HVBHHc=!H Dh(H HHH9tHH%HCHtIHPHjHS ID$H)H~`DmHhHPHEHPL#H[]A\A]@ DtH=1DH=1fHHH-L`H5 [ff.AWAVAUATUSHHHHCxL+HPLHSxHcHCIDbHH)HUMcJ4V HNAHLc!H9Dz(H JHH9t#HzHHCJHJLAANHcH4ȋF % =HP AAD!AHcHS HI)L)HHSIEJIUHH[]A\A]A^A_JP ftH=1DH=)1f.AD ADA\HLD$LD$*fLLH=I;H5ifATUSHHHCxHKH3HPHSxHchHH)HHHcH4L$F HVBLc H H:JHH9tHHtiHKHHPHjHU8Ht9Hu0F % =u}HFHHHE8E@EDHKJD!H[]A\f.HCH@ DtH=<1=DH=y1*f.1ҹHqHU8Hu0kH5AUATUSHHHGxHHPHWxHWHchHH)HH7HG@#HHHGL,HcH4L$F HNALc% H H9JHH9tH H`t\HSHHHHIAE Jl"Qt~IUAE LmLcL#H[]A\A]DHCH@ DtH=1DH=1f. HSILHm}HH5.ifAUATUSHHHGxHHPHWxHWHchHH)HH7HG@#HHHGL,HcH4L$F HNALc H H9JHH9tH}Ht\HSHHHHIAE Jl"Qt~IUAE LmLcL#H[]A\A]DHCH@ DtH=,1-DH=i1f.{HSILH}HH5fAWAVAUATUSHHHGxL/HPLHWxHcHGIDbHH)HUgMcJ4V HNALc H H9JHH9t#HHWHCJHJLyANHcH4ȋF % =H@ H=1KHcHS HI)L)HHSIEJIUHH[]A\A]A^A_JP tH=|1}DH=1jf.AGwfHLfDLLHI\HH5>ff.AWAVAUATUSHHHHCxH+HKHPHHSxHcPHH)HHTHcLeH4ыF % =L~HcL H PHL,fHIƋ@ %_DAF IF@@@@ @0HH@HNOSJHC L)HHJSON::XSI3WHCpanel::I3H tRLHbILHLHHHHKID$H+H[]A\A]A^A_@AuMm1HIfLLH-IHh?H5UDU 1HSHHH5~!H9t1ɺH5nH1H9H[]HL VIxJJI x=DBOEx.DRO ExH HHH IHL L fHHHff.UHSHHCt>Hc' H H HHH9QH9Q@ H9Q H[]fH(¸yCuH1[]ff.AVIAUIATUSHL'H5?H#E1E11H¾1HHHHCxHPHSxH;LH+CHHC L)HLIl$LHHID$HC H)H~LmH HH+H5HߺHH+H߅x HE@ u:[L]A\A]A^fD#HEH [HE]A\A]A^HHHuHfDHHLLH=IDH6HHr HDHHHHHÐAVIAUIATMUHSHF tCHH@ HEI$S AEyC t,HH@ I$HE[]A\A]A^@191HLs̐AVAUATUHH5jSHHHEH5o1ɺHHEH5U1ɺHHEH5;HHDH}HE0Hc H H5˹HL4кILh@ I$H:AM Hc H5HAL$ Le H L4кILh@ tKI$H:tAAM H1AL$ H5:Le( HE0H []A\A]A^%LHAD$ Ae IV_D%LHAD$ Ae IV7fHES7HHoxYHc HHpH HHH2ooHNoP V H@0HF0[AWAVAUATUSL$HH $L9uHhE1T$HDLd$@H|$H(HD$8Ht$dH4%(H$X@1D$ HD$(LEIL6\R_+HUHLI$@H9ULuD9u'%L)MyIEHxHpH;H9w4HHH9HBHTAEuH9sH|$LIEHxI}HLIEHXD$8E3MMAE IU%_DAE IEH@D$ tAM HD$L0fUBHD$@NHD$HUH5HEHMH5H rH|$HHuH H7<HI$@HUHH9|fIL)MH|$HLIHD$HH(LpHHL HmIIGII }\q}ugHD$HH(HII.HH$HzI HMN$LHHD$ H CLH ? CLH? CL؃? CB HUHH. HUHH HUHH HUHHHUHHHD$@PHD$L0E0HHU0HcHM0HcH}H|$HHuHH7<LKfHD$@t''HUHHCHUHH0HD$H5rHpHD$E1H(H$X@dH3<%(LHh@[]A\A]A^A_Ht$NxL<  HUHLHD$@H5iLHppfDHvHHt$ H)H><EDHPH9HPH\HHPH"fHPH9HPH\HHPH\wCSHPH9HPH\HHPH/=DHsH~H)HHHDHTFu HH9PsLHL$lHsHL$H~HHHHNHRHTHSHPHD$(dH3%( H8[]A\A]A^A_DHHPH9SqHPHH\HHPHrsHHPH9SsHPHH\HHPHf;HHPH9ScHPHH\HHPHnHHPH9SHPHH\HHPHtHHPH9S.HPHH\HHPHbT$Ct ĀHD$ IĀIUIH;HG H9C DIH%I H wDE1H Hl$ LH)HA>A}O?UMHD$ ? LcL9kp ĀD$ HLHIkLA?LHɀHHPHHsHNH)IHHHBITFu HH9PsLTHsHNJ)HHHNHRHTHSHsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHSHHPH9SHPH\HHPHH xH HAHLAHB*HHHH HHPH9SHPLHH \HHPHuHHBHH   H HQHLHH HQHLAHB(HHJH tHLHHPHD(RHvIL+vLHH9HBITFu HH9QsL{HsHFLHHHVH@HDHCHsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHS*HsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHSoHsIŹL+nLHHHBITFu HH9QsLSHsHFLHHHNHRHTHS-HsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHS:HsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHS%HL$HLEAA-H|$ ICKHsHNH)IHHHBITFu HH9PsLHsHNJ)HHHNHRHTHSHT$ HLHHHPHUHl$ u&HsLFL)HH HH HBHTFu HH;PvLHL$OHsHL$LFI<H;HHVH@HDHCHsH~H)HHHHBHTFu HH;PvLHL$HsHL$H~HHHHNHRHTHSHsHH+NHHHHBHTFu H>H;WvLHL$uHsHL$HFHHHHNHRHTHSIw2LH LA?HL?ɀʀHPHPwHIgLHHLH ?ɀHLA?H?ɀHLɀH%LH=Z1{HH=1jDAUATIUHSHHHHxH;~$H;HH"1)ALHHBHHHH;KYH "C u-HHHH;KsDH :C@H[]A\A]DHHHH;KH HHHH;KrHsIĿL+fLHHDITFu H>H9WsHHsHFLHHHHHvHRHTHSZfHHHH;KH H[]A\A]fDHvIAL+nLHIDITFu LI9PsHL$ HsL$ HFLHxHHHvHRHTHSqDHsIĿL+fLHHDITFu H>H9WsHHsHFLHHHHHvHRHTHSEfDHsIĿL+fLHHDITFu H>H9WsH9HsHFLHHHHHvHRHTHSfDHsIĿL+fLHHDITFu H>H9WsHѿHsHFLHHHHHvHRHTHSfDAWAVAUATUSHHHGxL?HPLHWxHcHGIDbHH)HU)McJ4V HNAAULc HcHH;WvL葹HsHFHHHHHHvHRHTHSfDHsHſH+nHHHDHTFu H>H;WvL)HsHFHHHHHHvHRHTHSfDH$E1HLAVIAVsDLLŹAF aH,$IM+E 2AH $ALHLkfDMufD@ }%9= I$Md$H@H$HLPHHLAHJH "H $LHLHHPH"HcUQULLHL0IxLLM&MA?+E H5LǶt=H5sL诶t%H5`L藶t A?-infyHELH0wbC]z<NH5LG7H5L+H5ؒLE1EHHLmLLb DHLLL荹AD$ 覴HL{LH`HL@ % =t]VLH;1LH EHH5HDH= H1肶AAiLH޶H@E1HLHnHLE1HOLLDHsHL(~LHcH@f.AWIAVAUATUSHhHdH%(HD$X1 A@HH A_H$AGhAGhA;GM7IwI9AA$H&AAЀ I H L裶LHHD$(胱IH9t"HHL(E@MtAUAUM7A<} A"|$߁|$߁|$D߁\$@HD|$ ID\$D\$E<"3I1M7INfjA@8ILH)HD$H=^HE1HAjL$ LHt$.IXZMD$08IwIFIH9A~:JIFIH9A>:AN:"HIH9 A$ * H&H H9vHIf.HHHt Hװ"LLWH@H|$XdH3<%(HHh[]A\A]A^A_f.HH OHAGhAGhA;GIIwH9I&A$ +mIcH9vHIDHFH)H~ ;falsoH1IG-DF@HVHHH9 %A$I&< 6IH9sHIH؀-u HCHK00 HIJЀ v.߀EH)IHtHL<-cA H5DHcH>DFHHHt H轮'LL=HDHFH)HO;nullCHHHt HjI$8LZHfHFH)H_;trueSHc H HL,HHt HAG@}I$hLH%DHٖ1IGfDH$HtZ L~LHH$_IH9t"HHLE@MtAUAUI&I8]{E1Ht1L֬H4$LHIĮLLLfHtCHHL裮IIwH9SA$р HzIGHtSSAoh11LLIHZ@ %L-I8)QHI1LLIH@ H@x H$Hc I$ LH4$H,a1LLHD$OI$H1HHLέHD$H/LLID$xHID$xI;$lHHL$I+T$HHID$ H)HH9HCLsHD$HE0HCHD$HH~^1Lt$L4$Ll$ IHfLLLMHJDII9uHD$LLt$Ll$ HHD$HD$LI$HD$H@HpήA`NOSJI$AVgAVLLHCHHtCI$ID$XI9D$PL@HD$(Hv#O ]n,\HPIH9A$< &IH9vHI<# ]AGHIIH9HIQHf.Iu LtH@HPI@0< ZfHIHЀ v:kIFIL9A<@<\@@DT$E@8ui@E1Mt<1LL\$8ɢHLHjL$ IA$Ht$8I蓦^_L\$8LLLL\$89IHtaL$ t|$0L\$8 L$H4$HLvIIwH9sO$ HIGH$HP P@} ,uLpM7I9R$AЀ v H&HL9vIM7#uAGUH9w:t,HI w HHH҃H9wH9Q @LLHHHE1E11jHLjjHt$ H HID$ IIWH9sGA$ H~IGfH&HLd:uHIH9s7A$ w#H&HsH9sHIDE1Mt91L6HE1E1j1HLPHD$HjHt$H0H LT$0LLLH t$ „T$t M HE1E11jHLPjHt$ עH SSF@#AGH9vHPf@I Hп w LHH׃HH9wf.$р SA>:O/@#A>:#WAGH9v@Hp@t+I7H w LHH׃HH9wH9@8#'AGH9vHpf@I7H w LHH׃HH9wf.<#H9sHCD@IHÿ w LHH׃HH9wf.#?AG4H9vHP @I Hп w LHH׃HH9wf.#?EL9IF t,IIƺ w LHH҃HL9w@L9GIM7;H`{IG1nfDH&HH9HItAGH9HPfD@I Hп w LHH׃HH9wfH&HeHHIPHȍr@ 'H1IGAGH9 HBfD@!IH¿ w LHH׃HH9wf.HHy1IGfDH1HFfDHIGHIG{eHc_ H HL,HHt H[AG@tI$PLDH|@Iu(L,Hd@HxE1IGDP9T$<"t<'^<''DI1M7@HLHHIIGNAkH×DHcH>CSi'SiS4PCkdHcHL耞HxCSi/SkdS4PCSkd0C4BCCPs0Ha1IGfDAGI9sIFfDIIƺ w HHH҃HL9wZH-wIGD$DD$ E1ۅHE1A HjL$ LHt$襜AYAZLMtACDD$@E~A{ `ICx RHIGMDIsHLL\$0TL\$0HLL$H4$MYT$@AgD$@LL1苜LL{HHIPHDL$DEDD$ E1EHE1E11jHLjjHt$ šH LpMtAF|$@A~ IFx fDH1IGDtHHz Hff.@(H4$L耛HLpAGH9HP EI HA w IIIAHH9wH1IG&HpI7HHHsIGCLLؚRHL)HLLL訚1LٚH@H+HI1HLdHLϔOHNHC80?F IHIIMƉn<IIUHhH9s HAHAE1ɺLH覒D$H$AG u%IHyHWoH9QeDAoEAoMAoU Ao]0Aoe@$D$x$$$IGHD$`IHBH$HD$pHD$hDŽ$L$xHD$`Ht$hH9|$xA$I& IH9vHHD$`fHHzLHHH蜒INj@ <hLH辏Sf1LHD$H$xfDLH#'LHt$`HIMHD$`IW1H9rI7H~HHHH)H9HFH<$I $M D$yuAF 'IvH諮|$HL荑H$dH3%(H[]A\A]A^A_@HmHD$`Ht$hH9s(|$xA$I& 6hH9u4>u/H<$BH$I)GIHh"@#HlHD$pAVAVH<$HMg蠒HT$`HHo()l$op)t$ ox )|$0oh0)l$@op@)t$PH;T$hI+WAG tLH_HHt$pH=k1蹏fH$@H$I)GIHhH@H9r HHD$` w LHH҃H9w@IH9wHHD$`iAVAVH=y1fDAG ZIE8H$HIIO<HϺHL$H5jTHL$AEH$ƒAEIJHUIGL$HPAO Ae6fDHL-UjHD$P@HHHD$HT$`HL$hHAHHH)AH)HT$`H;T$hsE % =LmI+WAG tLH@HHt$pLH=vx1藍!H9r JHHD$` w LHH҃H9wHH=w1;LH-1ҹHHnHT$`I;LHHc[9OLH5hHIAEƒAEJL$K1蚌Ht9tf9t f9LH5hH<$#f.AUATUSHHHxLHKdH%(HD$h1HCxMHPHSxHcLHpHI)EI(LHDPA[HcHcHL,I)LŃrHcH4HcLLd$fDL$HD$HD$AD$AD$,AD$HCJ@ DtH=|e1}DH=e1jf.H< ~<#AFDDA lDAn@HHFx}wPIcL>>tKAFDH<"u"~fDt,HHp@<"a<\u~HFuAFDHIVH+qIv8H9s HAV@AFD<L;Iv0E1LLHUHS IHH)HL@Iv0LxHHD$HVI)F8AF@AFDHnHC@"<„(fDL;HD$dH3%(H([]A\A]A^A_fDA t&Eu @H< uAVDWAVD@H8<hfDEF@HAFDE2DHT$LHHT$IfDH؂IwHHAIF81ɺLHAD$ @A~@A~@WAV@A;VH=g1蕀DAFDDHA DAFDHqA~@WAV@*HD111ɺLH^IF8HIV0HrH= HHD H HHuH)IV81H5\HIIF0HHHLD$X|LD$?fDAFD^~HuIF8HH@]HHHfDHP@%IGHH=si1}@El$ EAA MD$A@ %=  IHHt @ AG % =DIoD% =It$HDH=i1}@I$H@ HAG HhI9 HPI9 AA xE1%IWB E% = IHPIGHT$@HD$Ht$1Hz '/H5jH{~HL$@HT$HIHAxLHAHWxLH`}LHHHFL0MAF $ < HH0HHF % =HHPHT$@LvA>+OHHHH}HELHT$@H|$HD$izHUHD$@Lu.H€t AG HF AG HhI9teHPI9u<t IHH@HwHIG80E1HHH Uvk@nuYu<t%=  E Ao % =!IGHƉH=i1yfMgAD$ Щ) (  LH~3E  @LHzHHyLHߋ@ % = zHHy1HHwHH=mf1yfD<%= E1HHH>THD$HdH3%(XHX[]A\A]A^A_E1HD$0HD$8D$, IHR D$,HT$8HT$0?HD$8HxH=;Ld$8HH|HELuDHD$DA1A-HEA)HEEihDҍJ0@AC@HUHU@΍y0@%@:@HUHU@΍y0@%@:@HUHUy0@:1@%HUHU0HEHPHU@EnAG @cMgLLuLIHHLhHD$LuHE~{HELHPHUL"EG A HHHHC{HEHPHU"HEE ufI@(/HHD$zHEED$HD$HEHD$0f(fT tf. t~ f.fH~AHJtHD$D$Ht$vLuA>infA>nanA>-EEo A@tIGLHHD$kt#EL"sIAeLDsHEL.sHH|$.sHj.0Cf H]HrHJD}]f(fT rsf. sw f.Lt$AnullAFLu@LHUuAL$ DA NIWr A1 EH{vHHtP IAG  :DHt_EIH|$@@(qf.erLgqIH]f.I9 AG  @q% =iIMgH@HD$@HHwHEHPHUL"EG HL$@A HHtHHwHEHPHU"JMgAD$ Щx LH߃   wzbE1HHHM@ILd$0IwHLHPq|HT$0HD$,H9cHHT$8HT$0oEe @H5a`HqtIWAHIILHHn8LHAHj`nLHUsLHw}`NOSJHHFL MAD$  u<t  I$HH@H@LH=$M1;q]f.H|$0xHHxuHET$,LuHD$LL$8LML1H8mHHE`DHH@HRHDH0HDxt H6H1HH=4M11LH[qH*L AD$ D&AG % =IGHH=\1oDA~infA~nanE]<b < <EAG @IGLHHD$PnIHHL`HD$HEHD$HEsHELHPHUHT$"EG A RIMgH@HD$@HL$8HT$,LHLD$0辎D$,DLL$0LK LHHJ+DHT$@1LHmHT$@HD$9DE LHpHHnLHߋ@ % =oHHn1HHlHH=]1n@AG D1LH[mwfD1LH>lEl$ HE]<W <LH5jLuHH HjHhHPI9HHqHEE1HPHUHG"K1HLHHI\LjIvLHHBD1HL$8HT$,MLHxD$,HIHH@H]LH=]H1tl@tIHz yIff.@(afDHT$@1LHvjIfDƒT$, H?HT$@H.jHT$@IpIWB(EHL"M1ɺ H5EHsi1ɺHH5EHD$XiI9E1L;d$AG % =]IH@HD$@MgA<$+mA<$NaNA<$nanA<$infH5\FLiQHD$@HHHPHoH}HT$@LjHD$@HEHEEHCXH9CP HgtIHz Iff.@(fDL1HhHfDAG % =oMoAl$ % =:It$LH=8V1iHHT$0HT$8gfDE1f/%h'hʁ 1LHeHH0HHF % =MHHPHT$@LfA<$+5 HHHmH}HT$@LPhHD$@HEHELHpiAD$ HHFmHEE1HPHUHC"TA~n H!}  H Hc5:} I<$H4HH9NAH9NAEH9N|E ut O  t H $ff.G(|@MoAEH Hc {| H IUHH9Q@H9Q@@u H9QHEHPH9U HPHU"AE % =/ IEHx E1 HAHHbHEHPH9UHuH+FIHHDITFu HH9Ps HfHuHFLHEHHNHRHTHU@1LH#cK1HhH@L0Hc5I{ H I $HL1L9r@L9r@@L9rE@f8;LHgHHfLHߋ@ % = gHHlf1HH:d(D% =uiH TL1HcH1LHcI{Hz fWcLHaHHߺ2H5LOgIWHAIILHHaLHAH@a HT$@H+fA>Nat[fA>nafA>intSHD$@A>-infHP'Hs fW\fHT$@1LH\IA~NuA~fuHr IHl$@kUt@I$1ɺ HH5/8L([I9tu1ɺH5!8H[I9tZUЀ}1LHHELHGH&HID$80[LHHrwH8HHfLHYHE1111LHmYLLHYIHuH+FIHHDITFu HH9Ps H[HuHFLHEHHNHRHTHUAG % =u`IoD% =u9ID$HHD1H=I:\HcJDD AE111LHkZ븹1LHWZEt$ HHE]HT$@1LH.ZIAG 3HL#]HZHCxHHCxH;LH+SHHC L)HM|$IHL#H58DXHH0LhH\F AAA< t~HCxL+HHCxH;WLH+SHHC L)HM}IEH]7L+H5M7HHDAWHL8HH=tSHHqH@Hv!A\HVDFH=HFE180A*t9t HHz u HE1ff.@(ADE1H^VDE1LLHVINH[$IHl$@LLHSVIHH]L,6HIH}1UHEHH]IL5LE1HHH 3=aI$1H@t*HH@HRHDH0HtxtH6HtHH=G1XHZ'LLHaUIHYZHHXH@F1LHVYHHXH@$1LHV@1LHzVYHHXH@O1LHJVpYHHUXLHߋ@ % =GYHH,X1HHUHH=0E1WIH|$@@(wUf.U1HLEo HHI\I$1H@t*HH@HRHDH0HtxtH6HtHH=E1VXHHmWH@JE1111VH=D1VLHEXHH*WH@AWAVAUATUSHdH%(H$1F9FhA HHII<H$ HHHH;K H LH{CXVD$D$ AE t7^E1A1LHOTHuLHDd$ VD$ H$|$ @HD$D$E11LHSIHwH|$IcAH NjD$L9D$uIWHcB_D D$fkUuWAE uMH;HSHGH99 H}H$dH3%(HĨ[]A\A]A^A_f.1LH3SIHtC@ChL|$@L|$MMgAD$IHcATHHمLED$H<$D$rAE IWLHH21LHRIH HHHH;KH ,C@GHHHH;K H C-DchDc H;McJ'H9CL QL#MgAD$MD$AP % =u7IM`H@ HHPH;SH CHT$LƹHLD$fQLD$IHD$@AP CkhDHB@ % D$;HLE1jHt$A HTZYH0 L0AE _LLHTHJf.HsIĿL+fLHHDITFu H>H;WvHYQHsHFLHHHHHvHRHTHSfDD;d$  Hct$ ~7D\$EDT$H|$H _YHUEHDNCDd$ Ht$@ChHt$(ALl$ Lt$Ht$IcLH9WsH1LHsHFLHHHHHvHRHTHSfDHH@QHHPH ChH;HSD`DchCDc McJ'H9GL JH;HSLH;]HsIL+vLHL9IBITFu HH9PsH[KHsH~LH;HHVH@HDHCt@HsHH+NHHL9IBHTFu HH;PvHHL$JHsHL$H~HH;HHVH@HDHC f.HsHNH)IHHDITFu HH;PvHJHsHNJ!HHHNHRHTHSHPDHsIĿL+fLHHDITFu H>H9WsH!JHsHFLHHHHHvHRHTHSfDHsIL+fLHHDITFu HH;QvHIHsH~LHGH;HHNHRHTHSefDL4$M@HH@HRHDH0H8@t H6H%HH=:H$DHsIĿL+fLHHDITFu H>H;WvHHHsHFLHHHHHvHRHTHSfDHsH~H)IHHDITFu HH9PsHyHHsH~J7HHHNHRHTHSHP^DHHo)D$@oH)L$PoP )T$`oX0)\$po`@d$x)$JHGHHJDL$HD$@H HPHct$ H|$HEHXOHD_EHEXH9EPHEMLHIHHHLH@ % =lIHHH1HHoFIA^ % =IvLH=41GH'Ia]IHHBHLhfIHH2@(HH@HIHLHH It HHHpH=#$1ɺLHGHHL AD$ u<t LMt$AV %HsIƿL+vLHHDITFu H>H9WsHEHsHFLHHHHHvHRHTHSLH=6oFMMFLH=6UFL1HDHHsIL+nLHL9IBITFu HH;PvH6EHsH~LH;HHVH@HDHC]L1H-DHPGHH5FL`LH1GHHFLH@ % =tz GHHE1HHCIA^ % =u/IFHL1H=10ELHEAD$ 1LHiCFHHwEL`H=,1DB|$H!T$ DH5!H=4HD1DLH7FHHELH@ % =FHHD1HHBHH=W41PDLHEHHDLH@ % =EHHD1HH_BIA\$ % =u4ID$HL1H=0CYEHH>DH@T1LHB,EHHDLhff.AWIHAVAUATUHSH(HT$H $@IAGA9Gh; H$@ <E1 IHHI;OI[MAGhAGh1HI9Ht$1HHCIMt1HLHCHtHH$AGMH $ILHI9~IHHI;OI,AG@gIHHI;OHI I9PI?IWAGAohHGH9 I]H([]A\A]A^A_AOhAO I?HcHI9G[Hʾ HL$?HL$IME1LHHr IHPI;WI @I?IWK@H$L@A@  H$L$ o< zH$HHHt @Ht$HmBHHRAHt$H@ % =BBHH'A1HH>IDc D% =]HsLDH=J-1c@IwIL+FLHHDITFu H>H;Wv!HLD$T?IwLD$HFLHHIHHvHRHTIW@HGH9cI AGhI?IWXA_hAGA_ HcHH9Hھ =IIWHI@IHHI;O9I |@IwIL+VLHH9HBITFu HH9Ps'HLT$HL$Y>IwLT$HL$H~LI?HHVH@HDIG5IwHH+^HHHDHTFu HH9QsH=IwH^HHCI?HHNHRHTIWfDIwHÿH+^HHHDHTFu H>H9WsH=IwHFHHHIHHvHRHTIWfDHH@HRHDH0H@t H6HH H=/E1f.IwH~H)HHHDHTFu HH9PsHHL$HH=Ht$H@ % =,>HH=1HHS;IH4$^ % =HvLH=)1HH0=LhH4$H9I9L,$H$jIwIL+FLHHDITFu H>H;Wv!HLD$y;IwLD$HFLHHIHHvHRHTIWIHHBH HRHIHLHHIt HHHrH=€uj1ɺLHH9WsH7:IwHFHHHIHHvHRHTIWeIwIL+fLHH9HBITFu HH9PsH9IwH~LI?HHVH@HDIGIwHH+^HHHDHTFu HH9QsHy9IwH^HHCI?HHNHRHTIW;H޹1Hl8HH4$1HQ8Ht;HHY:L`HHU:C 4Ht$H@;HH%:Ht$H@ % =ti;HH91HH7IH4$^ % =uHFHL1H=%:9H4$1H7:HH9L`H=8 19Ht$H:HHi9Ht$H@ % =t3]:HHB91HH7HH=^)18*:HH9H@Ht$H :HH8Ht$H@ % =9HH81HH6IDc D% =HCHLD1H=$7C % =H[Ht$Hk9HHP8Ht$H@ % =tfD9HH)81HH5HHH=z(171HH5V8HH7Lh"8HH7H@H޹1H5H;AUIATIUHSHHdH%(HD$x1uF uHv\TdooK HoS o[0oc@D$L$(T$8\$Hd$X4HH 7HD$HPH$HHQL$D$hHT$-HT$pHLL` _HD$HH DLD$HT$H$H H+BHAHD$HHPHAD$t6H\$uFH|$xdH3<%(H,HĈ[]A\A]HD$H D$H\$tHH2HHxHwH9pw=H\$fDH=&1b5fH$HHH;L$sIH $ $DHpH{6HCDHҁHDHt$HAH~H)HHIDHTFu LI9PsH3Ht$H~HHHH$HHRHTHT$PL2ff.USHHHhH LCdH%(HD$X1HCxIHPHSxHcLHpII)EI(LHDPAHcHcHI4H)HH8~ HcI HfH;HD$ HBLBB,BH55"H@(-HH>H5="H@(f-HH>H5E"H@( F-HH>H5M"H@(@&-HHl>H5 H@( -HHL>H5 H@(,HH,>H5"H@(,HH >H5"H@(,HH=H5"H@(,HH=H5-"H@(f,HH=H5 H@(F,HH=H5 H@(&,HHl=H5 H@(,HHL=H5!H@(+HH,=H5 H@(+HH =H5!H@(+HHH5 )HHpWH5 t)HHXH5 ^)E1HL H SHH5 )E1HLx HH )HyH5 @(f)E1HL HH HH5q @(5)E1LV H HHHWH5] @()8HH5E= H@(%HHHHߺH52 B&H߾Hb*H- HHH%H߾@*H HHHk%H߾*H HHHI%H߾)HHHH'%H߾)HHHH%H߾)HHHH$H߾)HHHH$H߾t)HHHH$H߾R)HHHH}$H߾0)HHHH[$HߺH5$7)HHHH2$HߺH5[)HHH|H $HߺH5e(HHHjH#HH5^1%DHHH\[]A\$HHselfCpanel::JSON::XSself, infnan_mode= 1self, max_size= 0self, max_depth= 0x80000000ULself, enable= 1self, val= INDENT_STEPklassMath::BigIntMath::BigFloatEncodeEncode::decodeJSON::PP::BooleanJSON::XS::BooleanMojo::JSON::_BoolCpanel::JSON::XS::trueCpanel::JSON::XS::false'"' expectedsurrogate pair expectedself, cb= &PL_sv_undefself, cb= &PL_sv_yes\u%04x\u%04xself, key, cb= &PL_sv_undefreferencenullNaNnan-inf'"' or ''' expectedDuplicate keys not allowed':' expectedHash key too large) expected after tagTHAW");%-p'true' expected'false' expected'null' expected(end of string)UTF-32UTF-16%s, at character offset %dgarbage after JSON objectself, jsonstr, typesv= NULLself, jsonstr= 0bceilbflooris_negative%lu%ldFREEZETO_JSONCpanel::JSON::XS::Type::AnyOftied scalar, typesv= &PL_sv_undef4.39v5.26.0XS.cCpanel::JSON::XS::CLONECpanel::JSON::XS::ENDCpanel::JSON::XS::newCpanel::JSON::XS::allow_tagsCpanel::JSON::XS::asciiCpanel::JSON::XS::binaryCpanel::JSON::XS::canonicalCpanel::JSON::XS::indentCpanel::JSON::XS::latin1Cpanel::JSON::XS::prettyCpanel::JSON::XS::relaxedCpanel::JSON::XS::shrinkCpanel::JSON::XS::space_afterCpanel::JSON::XS::utf8Cpanel::JSON::XS::get_asciiCpanel::JSON::XS::get_binaryCpanel::JSON::XS::get_indentCpanel::JSON::XS::get_latin1Cpanel::JSON::XS::get_relaxedCpanel::JSON::XS::get_shrinkCpanel::JSON::XS::get_utf8Cpanel::JSON::XS::max_depthCpanel::JSON::XS::max_sizeCpanel::JSON::XS::sort_byCpanel::JSON::XS::encodeCpanel::JSON::XS::decodeCpanel::JSON::XS::incr_parseCpanel::JSON::XS::incr_textlvalueCpanel::JSON::XS::incr_skipCpanel::JSON::XS::incr_resetCpanel::JSON::XS::DESTROY$;$Cpanel::JSON::XS::_to_jsonCpanel::JSON::XS::encode_json$;$$Cpanel::JSON::XS::_from_jsonCpanel::JSON::XS::decode_jsonCpanel::JSON::XS::TypeJSON_TYPE_BOOLJSON_TYPE_INTJSON_TYPE_FLOATJSON_TYPE_STRINGJSON_TYPE_NULLJSON_TYPE_INT_OR_NULLJSON_TYPE_BOOL_OR_NULLJSON_TYPE_FLOAT_OR_NULLJSON_TYPE_STRING_OR_NULLJSON_TYPE_CAN_BE_NULLJSON_TYPE_ARRAYOF_CLASSJSON_TYPE_HASHOF_CLASSJSON_TYPE_ANYOF_CLASSstring is not of type Cpanel::JSON::XS. You need to create the object with newobject is not of type Cpanel::JSON::XSincr_text can not be called when the incremental parser already started parsinginvalid stringify_infnan mode %d. Must be 0, 1, 2 or 3The acceptable range of indent_length() is 0 to 15.exactly four hexadecimal digits expectedillegal backslash escape sequence in stringillegal hex character in non-binary stringexactly two hexadecimal digits expectedillegal octal character in non-binary stringexactly three octal digits expectedillegal unicode character in binary stringmissing low surrogate character in surrogate pairmissing high surrogate character in surrogate pairmalformed UTF-8 character in JSON stringunexpected end of string while parsing JSON stringinvalid character encountered while parsing JSON stringmalformed or illegal unicode character in string [%.11s], cannot convert to JSONout of range codepoint (0x%lx) encountered, unrepresentable in JSONcannot encode reference to scalar '%s' unless the scalar is 0 or 1 without allow_unknownencountered %s '%s', but allow_blessed, allow_stringify or TO_JSON/FREEZE method missingmalformed JSON string, neither tag, array, object, number, string or atomjson text or perl structure exceeds maximum nesting level (max_depth set too low?), or ] expected while parsing arrayInvalid dupkeys_as_arrayref hash key, or } expected while parsing object/hashmalformed JSON string, neither array, object, number, string or atommalformed JSON string, (tag) must be a stringmalformed JSON string, tag value must be an arraycannot decode perl-object (package does not exist)cannot decode perl-object (package does not have a THAW method)malformed number (leading zero must not be followed by another digit)malformed number (no digits after initial minus)malformed number (no digits after decimal point)malformed number (no digits after exp sign)require Math::BigInt && return Math::BigInt->new("require Math::BigFloat && return Math::BigFloat->new("attempted decode of JSON text of %lu bytes size, but max_size is set to %lu%s, at character offset %d (before "%s")JSON text must be an object or array (but found number, string, true, false or null, use allow_nonref to allow this)jsonstr, allow_nonref= NULL, typesv= NULLtype for '%s' was not specifiedencountered object '%s', but neither allow_blessed, convert_blessed nor allow_tags settings are enabled (or TO_JSON/FREEZE method missing)incorrectly constructed anyof type (%s, 0x%x) was specified for '%s'no scalar alternative in anyof was specified for '%s'encountered type (%s, 0x%x) was specified for '%s'encountered object '%s', but convert_blessed is not enabledcannot encode reference to scalar '%s' unless the scalar is 0 or 1encountered %s, but does not represent booleanrequire Math::BigFloat && Math::BigFloat->new("invalid stringify_infnan mode %c. Must be 0, 1, 2 or 3my $obj; require Math::BigFloat && ($obj = Math::BigFloat->new("")) && ($obj->is_negative ? $obj->bceil : $obj->bfloor);%s::FREEZE method returned same object as was passed instead of a new one%s::TO_JSON method returned same object as was passed instead of a new oneencountered %s, but JSON can only represent references to arrays or hashesencountered perl type (%s,0x%x) that JSON cannot handle, check your input datano hash alternative in anyof was specified for '%s'Unstable %shash key counts %d vs %d in subsequent runsno type was specified for hash key '%s'Cpanel::JSON::XS::Type::HashOfno array alternative in anyof was specified for '%s'array '%s' has different number of elements as in specified type '%s'Cpanel::JSON::XS::Type::ArrayOfhash- or arrayref expected (not a simple scalar, use allow_nonref to allow this)self, scalar, typesv= &PL_sv_undefCpanel::JSON::XS::allow_barekeyCpanel::JSON::XS::allow_bignumCpanel::JSON::XS::allow_blessedCpanel::JSON::XS::allow_dupkeysCpanel::JSON::XS::allow_nonrefCpanel::JSON::XS::allow_singlequoteCpanel::JSON::XS::allow_stringifyCpanel::JSON::XS::allow_unknownCpanel::JSON::XS::convert_blessedCpanel::JSON::XS::dupkeys_as_arrayrefCpanel::JSON::XS::escape_slashCpanel::JSON::XS::require_typesCpanel::JSON::XS::space_beforeCpanel::JSON::XS::type_all_stringCpanel::JSON::XS::unblessed_boolCpanel::JSON::XS::get_allow_barekeyCpanel::JSON::XS::get_allow_bignumCpanel::JSON::XS::get_allow_blessedCpanel::JSON::XS::get_allow_dupkeysCpanel::JSON::XS::get_allow_nonrefCpanel::JSON::XS::get_allow_singlequoteCpanel::JSON::XS::get_allow_stringifyCpanel::JSON::XS::get_allow_tagsCpanel::JSON::XS::get_allow_unknownCpanel::JSON::XS::get_canonicalCpanel::JSON::XS::get_convert_blessedCpanel::JSON::XS::get_dupkeys_as_arrayrefCpanel::JSON::XS::get_escape_slashCpanel::JSON::XS::get_require_typesCpanel::JSON::XS::get_space_afterCpanel::JSON::XS::get_space_beforeCpanel::JSON::XS::get_type_all_stringCpanel::JSON::XS::get_unblessed_boolCpanel::JSON::XS::indent_lengthCpanel::JSON::XS::get_indent_lengthCpanel::JSON::XS::get_max_depthCpanel::JSON::XS::get_max_sizeCpanel::JSON::XS::stringify_infnanCpanel::JSON::XS::get_stringify_infnanCpanel::JSON::XS::filter_json_objectCpanel::JSON::XS::filter_json_single_key_objectCpanel::JSON::XS::decode_prefix....................................................................-.......-...-.-,..,:L:::99\SlVlVlVlVlUdTlVlVlVlVTlVlVTTTTTTTTTTlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVlVSlVlVlVlVlVlVlVlVlVlV4TlVlVlVlVlVlVlVUlVlVlVlVlVUlVlVlVlVlVlVP]]]T]]\]]hhhhJh|ށЁH(XX"-inf"  ;7H 4\hh8 8X `   T((txhhhh$ t(!!x# #(+h-h/ 0H 2x > @ C K Xm u w` y X{ D Ȫ HT zRx $`FJ w?:*3$"Dp\$p\HEAD {AA$tQDG UAAD z B $`XDqB B(J0ID,TW%0e,D(MDD ` ABH $tEEDG lCA,-FAA  ABB 8FBA A(G0 (A ABBE HDFBB B(A0A8G@  8A0A(B BBBH 8T FBA A(G0 (A ABBE H, FBB B(A0A8G@ 8A0A(B BBBE H FBB B(A0A8G@ 8A0A(B BBBF 8( EFBA A(J0 (A ABBI HdFBB B(A0A8JP 8A0A(B BBBI ,hFAA  ABK 8FBA A(G0 (A ABBF 8 FBA A(G0 (A ABBF HXtFBB B(A0A8G@ 8A0A(B BBBH HFBB B(A0A8J@) 8A0A(B BBBE $\PAKD {CAr0,rADD B AAC ]CAL`<BEE A(A0 (D BBBG Q (E BBBD |/\O<BEE D(D0@ (A BBBE <BLB A(K0E (A BBBH Hd]ESTdBBB B(A0A8H Q D 8A0A(B BBBH H#FBB B(A0A8G@# 8A0A(B BBBF H$FBB B(A0A8G@% 8A0A(B BBBD ,TH&7FAA  ABJ ,X'FAA J ABK H)k BFB B(D0D8Gp 8A0A(B BBBF L<4BBD D(G@y (A ABBF  (A ABBG hP6FBB B(A0A8GPXI`IhBpNPp 8A0A(B BBBD LXL`GhBpRPH9BBB E(D0D8GP 8A0A(B BBBH  @!BEB B(A0A8DNUA 8A0A(B BBBK k H[AJHBNHIGNxJGBNNSBJHBN1IJEIGBBNL aBBB B(A0A8G 8A0A(B BBBE <\ hFBA A(JX (A ABBF H kFBB B(A0A8GPR 8A0A(B BBBG H $mtFBB B(A0A8G@ 8A0A(B BBBH H4 Xn#FBB B(A0A8G` 8A0A(B BBBC L K  o L m:\''1U<<<F QQ[ X? ;C B:Q  ?6  }! ff. 3EQ #>I (>    ' `02 2 < -2G G Q uB\ \ f Eq q {       , A V    "  7  L  a  v    7)> ?Q y !* {2  G H & L 2 L > L I P ]  \: ' - L ^I. G0 ;5  = G> @  /A C ~$ P'E ( J 0 >N48 -P@@ [H 8\X (]h 7j x X L d LSJ 8 ~/UJ 8 ~1 ~ 14q DG6 ~ N)7 ~I q  -d:>.d =  d F t ~ iD > b% $$ d d I$ e t f~  g~ 2 h t A k ]F  dI  tI ~8  d! D  F d: G t\J H~B! ! XE! N*!9 9! - !!  o L~-!%T !' XE!( N*!)9 9!*- !+ DIR"`?IV#veUV#wLNV#E9l$ ~#/ OP#1 op(% _ %2 A)%2 A%K &%NJ0%E   %E ~>%E H%E 0%E F%E %E ;%E %1" %1#COP#2  copP&y_ &z2A)&z2A&zK&&zNJ!0&zE  ! &zE !~>&zE !H&zE !0&zE !F&zE !&zE !;&zE &z1"&z1#&}W2$l &NJ(F& d0$& $28%& $2<~,&S@]6& SH#8   `%E _ %2 A)%2 A%K &%NJ0%E   %E ~>%E H%E 0%E F%E %E ;%E %1" %1# % 2( ;% 20/%NJ8>%$2@% KH! %-LP3% 2XX'#< RHP%_ %2A)%2A%K&%NJ!0%E  ! %E !~>%E !H%E !0%E !F%E !%E !;%E %1"%1#% 2(;% 20#% 28% 2@&% 2Ha#G " #$ 7'#2#Iop'$2 8'%2 ''2 G'(2 #'*?b( ',20 '-24 H'/Eb8 '02@ '12D "'32H C'4P $'5X 30'6` &'8$2h !':Ebp (F'<Ebx '=Eb 'A1 v'Cv :'E2 *'HK ='K,C 'L,C v7'N2 ;G'O2 F'^2 '`1 K'a1 >'b2 /'n1 4'u1 1G'z2 N+'{2 7'}wV '~2 9'Kb ='2$G'e$H '2$1 '2$',C$#'Qb $@ 'Wb($G-'J0$h#'$8$*'$P$ '$h$G1'F1$ 'F1%ISv'2$']b$9'2%Ina'$c' $z' $,'2 $M('2(%Irs'20$'28$f'2@$6'2H$'P$H'2X$SG'2`$C'2h$'2p$'Tx$L"'T$9'pS$+$'2`$A'8h$p'2p$C'2x$n'2$/'2$'2$D'd$b '$3'2$E'1$h '2$'2$_;'2$'2&'cb&v ':a& '/:a&!'=a&>'?t&I'@d& 'B$2&FC'D$2&'F~&c'I~&m'Jt & 'K2(&?'L20&??'M28&@,'Nd@&@'OH&'P2P&L'Q2X&'T2`&: 'Usbh&ZB'Vp&9'X2x&\'Y2y&e'Z2z&S'[2{&('\2|&']2}&'^2~&'_2& 'ad&'b2&5%'d&'f2&d'h2&Z'l2&D'o~&m'pyb&'s2&'t2&v'u2&>'v2&n'w2&6K'z2&C'}2&F4'2& '2&pH'2&q'2&&'2&n?'2&'2&'b & '28&''2@&F'2H&&&'2P&'2X&!'2`& '2h&'2p&9D'2x&?%'d&EM'=&='2&h '2&`/'2&'2&{.'wV&E'~&'~&3'd&@'b&h:'d&'2&''2&*'2 '~&#'2&L'2&@'2&2'2&'~&X'2&E'2&4A'b&Q:'2&='b&' & '=p&'Jx&'NJ&L'NJ&1'=&:'~&'$2&1*'2&'2&k'2&'2&L'&!'&v'{&<'{'Ian' $2&FK' $2&,'$2&+'$2&K8'$2&<'t& 'd&H%'l5&R'!b&k8'#52`&'%$2d&e'']h&YA')2p&>'+2x&'',NJ& '.NJ&4'/NJ&0I'1NJ& '3NJ&D'6d&('7&'8&p'9$2&4@':1&$';2&C'=1&7'>2&7?'F2&E'G2& 'L`&Y2'N2&'SS&Z'W~&o,'Y2&=='[d&B'\2&'a2&%'b2&4'c2 &F'd2 &'f2 &'g2 &$4'j2 &K'k2( &'l20 &H9'm28 &)'n2@ &?'o2H &2'p2P &1'rbX &zI'sb &RH'tb( &:'u2 &r''v2 &)'w2 &4'x2 &)'y2 &4#'z2 &F'|2 &L4'}E &;'~ &'b &L'1 &@'2 &J'2 &='2 &r#'2 &E'b &,'2 &B'- & '2( &?'20 &~ 'b8 &+'NJ@ &'NJH &?'bP &t6'2X &'2` & 'T5h &87'bp &'bx &H'2 &'2 &G'2 &0'2 &4('2 &'2 &']a &X'2 &P3'2 &#H' &'] &1'] &!+'] &m0'] &,'] &t '^ &` '2 &#.'2 & '2 & '2 &''2 &'2( &?'b0 &L'b8 &f' a@ &!E'a &mI' b &' ~ & "']] &W&'"c &tL'-'/ SV#O $$sv('% y4(- .($2  ($2 (6AV#P 3%av(t% y4(u: .($2  ($2 (9HV#Q %hv(% y4(: .($2  ($2 ({:CV#R %cv(& y4(9 .($2  ($2 (k9{=#S &Z (b&y4(8.($2 ($2 (;GP#T n&gpP) ' }F) 2 *) HJ =) = -) $2 ) $2 @) 2 <) 2( >) =0 N ) 28=)E@-)E@ .) <HGV#U )'gv(j' y4(e9 .($2  ($2 (8 io('y4(;.($2 ($2 (;#W '`&?'1&CPW7F`&(T& 1(& 1=& 2T& 2& 20& 2 v9& wV:M& ,C*& & 2(4&+V00#Z ( 50*) /* < * X _C* 2 !L* o ;+* 1 "*  * 2 =* d(XPV#[ ) xpv (Z)*8(2x-(<((<A#\ g)(()*8(2x-(<((=tG(f<  #] ) ((**8(2x-(<(((=+(f< a#^ +*,0(**8(2x-(<((M=tG( f< (( #<(#_ *p0(**8(2x-(<((r=tG(f< ((#<(#b  + J(+ Z+ *8+ 2 x-+ < a<+  lG+  /+ 2 #c g+  ,+ *8, 2 x-,< 3, K,#d +g0(4,*8(52x-(5<(5(5=tG(6f< ((7#<(#e &, 0x2(q e8(r e@2(s eH^E(t dP=9(u 2X#(v d`F(w 2h>(x dpk (y 2x <(z o({ 1 0#i .. @* . n* &X )G* &X $* EX C* &X lB* &X J* sX( A* X0 * &X8ANY#j .(any#/)# -)>"#2)D#2)g#2)#2)#2) #2)6!#d)1#t)A# 2)# $2)# e)$# v)D# )7# 2)B# o2)_D# 2c>#{/~H#|F]D#}[U #~ -0#l /5=0#,0.#L]# v# vz#W]#F] #F](#m 90#((b09(c2?(dv1(e2(f2U%(g2 n #q 0 ?.0 a.  .&J %.' $2 :.( $2PAD#r '%^#s 0 (.+F1 e.,  K.-J +..  q./NJ b%.0 $2 } #t S1 \ 0.L1 L.Md >.M2 ).MJ :.M$2 6.M$2 J/.M$2 F.M~$ 3.M1( .M1)I8/SU8/-1I16/k1U16/92I32/~2U32/E$2*$2 02E2+:2F/E2/< $2o2-d29#w 6-K#y $222''%t%222-2 J01l4 ?03~ 06 d .07 d bA08 d :09 d 30: d( 0; d0 $0< d8 s"0= d@ 0@ dH q0A dP 0B dX B60D4` G0F4h l60H~p 0I~t .0J x =0M9 0NS %0O4 U@0Q4 H0Y _#0[4 0\4 I0]4 0^ - I0_  I0`~ y 0b4!J12,0+G42 o4 Lx4\#44 o4 L24l4624Y 2443 ~ 5+5V35 43 ~U35!4<C5^_4>T575Q4Ng5C57&565ZD6 2_.6 d^.6 246 256x5-E(76.,.E".%.~'.B..-. .w=.6 .Q . . .j ...7G(5HE(N6he, 6 ?,$ 8 o,% < ,);QHEK(6hek ,-6 7,.$2 h,/2 >,54(E7Z(d(e!(v8(~ (2 (8F(2(8;(8 (8 @178 *872 x-7< 7 7k? 4+7I@ F7`?( .720 F7$28 *7@ \7H E7P D7O@X 7/7$2` D7$2d /;7-h 7$2p 37$2t "#7U@x 7t 7d $72 07 K7 7 &7&7E#27E  t 7=E78C6b&H5(e9Z(d(e!(v8(~ (2 (8F(2(8;(8 (8+(9Z(d(e!(v8(~ (2 (8F(2(8;(8 (8,(u:Z(d(e!(v8(~ (2 (8F(2(8;(8 (8*(:Z(d(e!(v8(~ (2 (8F(2(8;(8 (8Z+/(;)Z(d)(e)!(v)8()~ (2) (8)F(2)(8);(8) (8,/(#<)Z(d)(e)!(v)8()~ (2) (8)F(2)(8);(8) (801(f<)Z!( )=( 2)9( W2)J( 20G(<)1( e)::( v)I( <)( 260L(<)1( <)N,( (/(=)=$()(d/((=)=$()(d/(M=)=$()(d/(r=)=$()(d/(=)=$()(d/(5=)=$(5)(5d8;(: $2=2=%=0/(_>)=$(_)(_d/(l5>)-(m5>)D(n -T 4F>+;>-8F> s7> ?71 7 1 1:7 2s7W> G(7&> 7'  7(  7) 2 {7* 2 7+  57-? $?7. 1 [)7/? >? L ;7:T? %7; #end7<  #7C ;7D?&`?7?=$77d -+h7D@ xF7@ 7@ K75A B7OA s7eA `L7A( N 7A0 H7A8 7A@ y/7!BH 7OAP jC7FBX uF7B`?D@>T?@17E7 W 7@ =7 t e7@67g@1`?@22$2@12@2f?ddd2-$2@1d/A2f?2dd02/A@@12OA2f?;AeA2f?UAA2f?22kAA2f?2A$AA12A2f?A2A12A2f?2202A12!B2f?A02B1-@B2f?@B,0'B1`?B22~2I@`?B$2$22LB2P7h &C3rex7i &C=7j,C$7l2 7nd07o  K7p ( 7q 0.7r<83pos7s @7t 1H[@y:7uB2 7| C:7}C7~C7D 7 d2CA x7C6&7 ~7 d3u7PQIC"#7\Dd 7]J&7^Dx&~H7^"DC77?C7 227:DDF7C27 |DDF7C 7 $237 $2 3cp7D2 7DDF7C 7 $237 $2 3cp7D7D>2@7EDF7C 7 $237 $2 3cp7D47 $27 2? 7E 3me7D(7 E07 $287 2< 7 2>212@7FDF7Cb7C47$CP 7`?3cp7D )I7D$7$2(3B7D07d827WFDF7C@7 297 2 3me7D2 7 FDF7 C7 C7  2J7 d27F3val7 ~2878GDF7Cb7C3me7D3B7D3cp7D  7 2$ 7 ~('7" ~,7# d02(7&GDF7(C;-7)C3cp7*D)I7+D7, d@7- 2 7. 2$2`71kHDF73C3c174 ~3c274~ 3cp75D 76 $2377 $2P878 2'79 2  7: 2$3A7;D(3B7;D03me7<D8E7=kH@ 7>kHN 1{H L 2h7AQI7B $23cp7CD 7D $237E $2 3c17F ~3c27F~$=7G d'7H d '7I ~(3min7J ~,3max7J~03A7KD83B7KD@E7LkHH 7MkHV/h7J)77D):7 2C4yes7!D)V 7 :D)7|D)17D)<7E)37F)*47WF)7F)@-7$F)F7/8G){7?G)7N{HA 7QC J/J L #7_C#9KLj'G. .!J K:."J .# J .$ J00.JKD. J.%JJZJJF1.MJO;.M2+.M=-K=$--d-7K4-2;-.-YK)-2-=-{K&5-2dB-<-K;-=--% KH%NJsv%2iv%euv%vA%K12K2KK/%-L)%%2)D% NJ),%2/% RL)v$% 2)/%  NJ [+0:1L :3 d ;.:4 d &@:6  =F:7  ;:8 d b&:9 d A:: d( < ;*L 0;, d X+;- d +;.  {@;/ t$;h P>jd >k I>qPx>ud>v  U>yL(>zdHB>{ P>}PX#> `%>da$> '>Po>>~>d> :> 4>d> *1>PF7>~dF>k &zG>d&S> &!>Q&D>RL&>dH&D> P& > QX&>% `&->d&/4> &K>Q&>M&>d&> &">Q&>Q&8> &m>Q&3>"Q&> &>"Q &-3>d(& > 0&7>d8&I> @&J3> ~HLL  k RL% M '>&N2,&]Qj<,'2$,(  .,EQ R,F Q F=,G 2,H 2 L,I 2 7,J $2]Q12Q22$2Q }1H,M`R L,O2 %,S2 I,T2 G,U $2 ,V $2 ,W`R #isa,X2( W*,Y20 ,Z=8 ,[ $2@Q5,gR,h <K,i R< !8,lS ,mfR ),n 2 ,o 8 ,p 2 /,x 2 y1,yS # ,{$2( &,|$2, x,$20Q & jS H&!jS oC&"_ /&&# ~ H&$ 2 &%2Sa &(S_&Sr8|S.(&'S &( 2t&* J3cv&+ =4&- 2G&. 2 *)(&3@T &4 2t&6 J3cv&7 =3gv&9 2@&: 2 60&uT &v 2`)&x 2k/&y 2M&z 23cv&{ = C;&|T(pS/&T4svp& 24gv& 22&T3ary& 23ix& e2&U:& 23ix& e2&?U3cur& e3end& e2&fU3cur& 23end& 2/&U4ary&T)[&T)K=&U)vC&?UH0&U& U-&T3&2;&fU& J(E:&+VG&24& 2/0&wV)&S)?&S)&&@T)@&U)0&V GX&PWOC& 1& 1& 2 & 2& U8& & d\& 2 9&  2(5-&  d0 -&  d8B &  d@,&  -H4&`?P/`&@uW)F(&A') G&B}V90&WX& 2&W&WA&W& 2 ('& 2$& 2(Z& 2,'uW0&uW1~&X22< X1$2EX22<,X1~sX22<22KX1~X2<@ByX. ? X#val? 5 =&? k ? 2 ? = ?X #(?7Y ?7Y ? 2 ,? d G? d ? 2 X}#? XH?"] 9?&] )<?'5 /?(~ ?+~ ?-~ [?.] ?/](#ps?0]0 09?4 28 2 ?5 2< ? ?6 d@ &?7 dH 8?8 1P _-?9 1Q '?; 1R 3?< 2S )?= 2T I?> 2X ;?? 2` 9?@ 2h +!?A 2p c,?B 2r ?C 2t <?D 2x %?E 2 /?F 2 1'?G v #2`##F>B#F>y#F>D0#F> -`+#x`#F> `+JE#` #C^8&*E#a.[.s.C.]*.;.7.*n!#5GH#F*a3pad#G*a $:a L)#PGaMa]a22k=#ajapa12a222+#fK+#gaa12a22#hGa1#iaa1~a2d5Q#l'^#s2b3fn#t 23ptr#u ->#vb.2X/JJ:] dsb L~ eb L2b$2 -b L 2b L 2b L 1b L /2(QZ5)- 2c L"7#2K#2@5b3@&5 aSc+?@Hc akc+ @c`c @E2 1c+c,@ c 2c+c7@ c^@ C^- @ c 1c+c8@ c .A&u2A(2:A-2$A129A421AKl5BALl5'AXu2A[ybHA\~?A]~m*Aae)7Aeu2DAfu2AiAu2)Au27JA~,A~K6Aag9A2AvC&Au2A$bA2 -2e LA"e48#4]#6]-EB='f.y. ..+..'...:.( .2 . .tJ .& .4. C. .7.Q0..B.3. <.61.U".K#.H.8.J2.8..D 7f L'f4BB7f .Xf LHfB Xf 1yf Lif#N yf 2f+f(#bf#cf=!#dfQ#efy0#ffe@#gf-ECh.".oD..!.2 .D.C.%%.".E .* .n .!( .9 ...-%.".6.!. ...".6.!. .....>3.D+ .B'!.9".' #.2$.%.(&.pE'.2(. ).D*.+./,.-.@.../.?0..1.=2.3.=4.5.m6.A*7.l8.@*9.z:.W/;.><.>=.P!>. ?.) @.KA.k)B.E.C.ED.E.F.#G.M H.<I.KJ. K/#Zh4nv#Z4u8#Zhh 1h L1#Zh/#[(i4nv#[4u8#[hi#[(iD:]28 i/2)L22/2SF2 J2(420Gi9:J~ @!:E j.0.#. #.#.#.82P j?$2P$2$2)  92}C2 3"2(VL20L 8+~@--DI-E5$2H8 j2xp 8k3curr d3ends d3svt2suj6v$2h)wvp xj2p k3cur d3end d3err s j@ $2h $2l], Ek Zk Lk9( k (; ` < 2=cv=kg> ~?ax 2@*4 2?sp 2(&@ 2NL9F YAs?cv=Asl?_p -/-A tl?_p -TRAPtm?_p  -ywAt1m?_p  -AtOm?_p  -Atmm?_p -Aum?_p -  A@um?_p -20Apum?_p -WUAum?_p -|zAun?_p -Av!n?_p -A0v?n?_p -A`v]n?_p -Av{n?_p! -53Avn?_p# -ZXAvn?_p% -}A wn?_p' -APwn?_p) -Awo?_p+ -Aw/o?_p- -  AwMo?_p/ -8 6 Axko?_p1 -] [ A@xo?_p3 - Apxo?_p5 - Axo?_p7 - Axo?_p9 - Ayp?_p; -  A0yp?_p= -; 9 A`y=p?_p? -` ^ Ay[p?_pA - Ayyp?_pC - Ayp?_pE - A zp?_pG - APzp?_pI -  Azp?_pK -> < Azq?_pM -c a Az-q?_pO - A{Kq?_pQ - A@{iq?_pS - Ap{q?_pU - A{q?_pW -  A{q?_pY -A ? A|q?_p[ -f d A0|q?_p] - A`|r?_p_ - A|;r?_pa - A|Yr?_pc - A|wr?_pe -  A }r?_pg -D B AP}r?_pi -i g A}r?_p - A}r?_p - A} s?_p - A~+s?_p - BI]sCUsCT ^CQ PMBIsCUsCT vCQ 1BIsCUsCT CQ @FBIsCUsCT CQ =B I%tCUsCT 8CQ =B*IWtCUsCT XCQ =BJItCUsCT xCQ =BjItCUsCT CQ =BItCUsCT CQ =BIuCUsCT CQ =BIQuCUsCT CQ =BIuCUsCT CQ =B IuCUsCT CQ =B*IuCUsCT CQ =BJIvCUsCT CQ =BjIKvCUsCT (CQ =BI}vCUsCT PCQ =BIvCUsCT xCQ =BIvCUsCT  CQ =BIwCUsCT % CQ =B IEwCUsCT > CQ =B*IwwCUsCT W CQ =BJIwCUsCT CQ =BjIwCUsCT q CQ =BI xCUsCT  CQ =BI?xCUsCT CQ =BIqxCUsCT CQ =BIxCUsCT CQ =B IxCUsCT  CQ =B*IyCUsCT (CQ <BJI9yCUsCT PCQ <BjIkyCUsCT xCQ <BIyCUsCT CQ <BIyCUsCT CQ <BIzCUsCT CQ <BI3zCUsCT  CQ <B IezCUsCT @ CQ <B*IzCUsCT h CQ <BJIzCUsCT  CQ <BjIzCUsCT  CQ <BI-{CUsCT  CQ <BI_{CUsCT  CQ <BI{CUsCT  CQ <BI{CUsCT !CQ <B I{CUsCT  CQ <B*I'|CUsCT  CQ <BJIY|CUsCT 2 CQ <BjI|CUsCT 0!CQ <BI|CUsCT P CQ <BI|CUsCT X!CQ <BI!}CUsCT !CQ <BIS}CUsCT !CQ <B I}CUsCT !CQ <B*I}CUsCT m CQ <BJI}CUsCT !CQ pDB`I~CUsCT "CQ BBvIM~CUsCT  CQ ;BI~CUsCT @"CQ PABI~CUsCT  CQ `9BI~CUsCT `"CQ 7BICUsCT "CQ 5BIGCUsCT "CQ `4BIyCUsCT  CQ @WBICUsCT "CQ `UB&ICUsCT "CQ jB<ICUsCT  CQ BRIACUsCT  CQ BhIsCUsCT (#CQ СB~ICUsCT  CQ 0BI׀CUsCT ( CQ 03BVCUsCT CR D CX0BI@CUsCT K CQ ?BIrCUsCT g CQ @YBICUsCT  CQ ZBbCUsCT  CQ CR YCX  CY0BJbFCUsCT  CQ CR YCX  CY0B{bCUsCT  CQ CR YCX  CY0DbCUsCT  CQ CR YCX  CY0A@~@.8 2$ @- \ZA~\?_p -DoCUsCT ( CQ0B|CUsCT @!CQ8BƁCUsB΃CUsCT  CQFCR1BCUsCT1BCUsCTvCQ 2 B 3CUsCT2B5^CUsCTvCQ A BB{CUsCT3BWCUsCTvCQ O BdÄCUsCT4ByCUsCTvCQ _ B CUsCT B8CUsCTvCQ p BWCUsCT BCUsCTvCQ  BCUsCT B̅CUsCTvCQ  BCUsCT BCUsCTvCQ  B5CUsCT B#`CUsCTvCQ  B0CUsCT BECUsCTvCQ  BYԆCUsCT xCQOBnCUsCTvCQ  B)CUsCT CQNBTCUsCTvCQ  B~CUsCT  CQMDCUsCTvCQ " BCU  CTsCQ YCR QCX LEʍCUUiFX< 2=cv= > ~?sp 2?ax 2@*4 2z@ 2?ix2wGH?_p-A @3@+E2@02aW@%2Hp@9saj~I@@b JNK AJ!J95J yqB#މCUsCT}CQ|CR0BC׍CUsCR1B_CUsCQ0DCUsCQ2IB? \JSB{CT L¡FI.< 2=cv=qg> ~?sp 2?ax 2@*4 2@ 2?ix2Gn?_p-AqX@2sk@%2H@r9sTjI@<rU JNK<rJ!JB@J hfB/=CUsCQwD׍CUsCR1IBq JSLDCT /F*kZ'< k2=cvk=!> m~?spm 2?axm 2@*4m 2* @m 2A@Aq ' @-s  MN_pC -MN_pE -MN_pG -M̍N_pI -Ii[E -J \!X!J!!OP!!D5\CUsI[G J  ""JZ"V"OP""DB\CUsI[0I J ""J##O@PZ#T#D+\CUsI\ pC PJ ##J##OP $$DO\CUsB[uCUsCQ B[!CU 8 D\!CU  G[ ۏ@q$$IBZm JS$$Dc\CUTCT jF?F@Y7Q< F2$$=cvF=;%1%> H~?spH 2%%?axH 2%%@*4H 2D&:&@H 2'&Aڑ@AL '''@-N ( (MN_p7 -IY`7 zJ v(r(J((OpP((DfZCUsBYCUsCQ BKZ!CU 8 D^Z!CU  GZ @fq8)6)IBDYH .JS^)\)DwZCUTCT F ?h5<  2))=cv =))> "~?sp" 2m*g*?ax" 2**@*4" 2#++@" 2++Aœ@A& ',,@-( W,U,Bs@PCUsCQ B@.hCUsBA!CU 8 BA!CU  D/A;CUsCQ0CR2G@@Aq,,IB?" JS,,DHACT FBL03- < 2,,=cv=b-X-> ~?sp 2--?ax 2.-@*4 2V.L.Q 2AQ`(2@A '//@- t/n/G3 ?@ q00B3dCUsCQ B#4!CU 8 B64!CU  DN4!CU  IB43 JS(0&0D]4CUTCT F8?0#< ?2S0K0=cv?=00> A~?spA 2U111?axA 232@*4A 23y3@A 244A`C@AG '44@+EH255@-J 5}5ACӗRlen?str66?cur8646I.CJWt6r6JK66J?66D HCT|BSCUsD ;CUsCT|CQCR2AD?sv2769H@1df7d7Ie DJs77HDP988SSTSD!CU pBۨCUsCQ~CR}CX0B".ʘCUsB׍CUsCR1D?!CU I\7 E"9Jy99Jn: :B٥^CUsCQ BL`CUsCTCQ0B`CUsCT|CQ0Bç!ÙCU 8 B֧!CU  BȩmCUsB(mCUsB?y*CUsBbRCUsCT|CQ2CR0B"zCUsCTCQ2CR0DCUsCT .CQ0IBX CA ʚJS::BNCUTCT LSFT7 С͝<  2::=cv =;;> ~?sp 2;;?ax 2k<c<@*4 2<<@ 2C===AAp@A '==@+E2==@%2&>$>@- M>I>A B?sv2>>9HUN VmVmJy??J`Q?O?DCUsCT~BʢCUsCT~CRwBҜCUsBCUsD׍CUsCTvCQvCR2B5CUsCQ Bc!TCU 8 Dv!CU  IBA JSv?t?BCUTCT LF>At< 2??=cv= @@> ~?sp 2@@?ax 2nAhA@*4 2AA@ 23B-BABq@A '~B|B@+E2BB@%2UCSC@- |CxCBTCUsCQ BCUsCT~CR0B!8CU 8 B!WCU  D׍CUsCR1IḄB JSCCD$CUTCT Ft< 2 DD=cv=vDlD> ~?sp 2DD?ax 2EE@*4 2)F#F@ 2FFA`s\@A 'FF@2G G@%2GG@- GGBCUsCQ B/CUsCT~B!#CU 8 B&!BCU  DC׍CUsCR1IBs JSNHLHDTCUTCT F<xj< x2yHqH=cvx=HH> z~?spz 2kIWI?axz 2jJdJ@*4z 2JJ@z 2/K)KA@A '|KxK?key2KK?cb2+L%L@- xLtLGl ?_p -LLDlCUsCT<Gl#;N_p-DlCUsCQCR0CX0CY0Gle?_p-MMIl ƣJ ?M;MJyMuMOPPMMDCmCUsBykCUsCQ Bkǎ CUsCT}Bk8CUsCQCR0CX0CY0BSl!WCU 8 Bfl!vCU  BlԎCUsD3m׍CUsCTCQCR1IBjz ݤJSNMDTmCUTCT }FAJ`Ul< J2,N$N=cvJ=NN> L~?spL 2O O?axL 2PP@*4L 2UPOP@L 2PPA @AR 'QQ?cbS2TQNQ@-U QQG%V?_pv -3R/RI)V`v yJ mRiRJRROPRRD(WCUsBUCUsCQ BV!CU 8 BV!ܦCU  BVǎCUsCT|DW׍CUsCTCQCR1IB|UL IJS/S-SD ~?sp 2JT8T?ax 24U.U@*4 2U}U@ 2UUA@A" 'FVBV?cb#2V|V@-% VVGX?_pj -aW]WI X`j J WWJWWOPX XD YCUsBW CUsCQ BX!)CU 8 BX!HCU  BXǎfCUsCT~D Y׍CUsCT}CQ}CR1IB\W JS]X[XD4YCUTCT [F)`4< 2XX=cv=XX> ~?sp 2YY?ax 2YY@*4 2OZGZ@ 2ZZA`@`(~[[@!&2[[@A '\ \@- 5\3\A@m es\o\D5CUsCT}B5:CUsCQ B5!YCU 8 B5!xCU  L5GZ5@q\\IBd4 ګJS\\D5CUTCT Fi&5< 2\\=cv=e][]> ~?sp 2]]?ax 2^^@*4 2%__@ 2__A@A '__@Ie7`3`@- s`m`B6CUsCQ BC7!0CU 8 BV7!OCU  B}7lCUsCQ2B7׍CUsCTCQCR1D7!CU IB 6 ڭJSa`D7CUTCT F7"< 2,a$a=cv=aa> ~?sp 2=b7b?ax 2bb@*4 2bb@ 2ccA@`(~5d3d@!&2dd^d@A 'dd@- ddA:@m eeeDC9CUsCT}B8_CUsCQ B9!~CU 8 B9!CU  L%9G8֯@qKeIeIB7p JSqeoeDW9CUTCT F `9< 2ee=cv=fe> ~?sp 2fzf?ax 2TgNg@*4 2gg@ 2 b~?spb 2jj?axb 2jj@*4b 2Ek=k@b 2kkA@`(f$2ll@!&g2ll@Ah '(m$m@-j am_mA8@{z vmmDBCUsCT}BB]CUsCQ BB!|CU 8 BB!CU  LBGIBԳ@|qmmIBTA@b JSnnDBCUTCT F<6;< 62Gn?n=cv6=nn> 8~?sp8 25o%o?ax8 2oo@*48 2PpHp@8 2ppA@A> '4q0q9P?$2P@-A pqjqB;.CUsCQ B;<!MCU 8 BN<!lCU  B]<CUsCQ2D{<׍CUsCTCQCR1IB;8 صJSqqD<CUTCT =FB < 2)r!r=cv=rr> ~?sp 2:s4s?ax 2ss@*4 2ss@ 2ttAP@`($26u0u@!&2uu@A 'uu@-  v vA8@{/ vLvFvDSDCUsCT}BC]CUsCQ BD!|CU 8 B&D!CU  L5DGCԷ@1qvvIBB JSvvDgDCUTCT FpD < 2vv=cv=[wQw> ~?sp 2ww?ax 2xx@*4 2y y@ 2yyA Թ@A 'yy?val~ z z@- 4z.zB E4CUsCQ BeE"SCU 8BE!rCU 8 BE!CU  BECUsCQ2DF׍CUsCT}CQ}CR1IBD JSzzD2FCUTCT kF6<E< 2zz=cv=X{L{> ~?sp 2{{?ax 2||@*4 2||@ 2}}?ix2?~3~G<?_p-~~A@A 'ok@- B;=]CUsCQ B=!|CU 8 B=!CU  D=׍CUsCT|xCQ|xCR1IB<` JSD=CT F$=< 2=cv=ym> ~?sp 2?ax 2݁Ձ@*4 2A;@ 2?ix2 G3>?_p-A`ٽ@A '@8@~@- ńÄB>XCUsCQ BS?!wCU 8 Bf?!CU  B?CUsCQ2D?׍CUsCT}CQ}CR1IB> JSD?CT [Fa1z@F< z2,$=cvz=> |~?sp| 2C7?ax| 2цdž@*4| 2VJ@| 2:.A Q@; d60@- ?pv2։ΉI@F  tJN42KF J!YWJ~J BF/CUsCTPBNG<CUsCTCQ1B\GIӿCUsCT~BjGVCUsCQ}BuG CUsBG;+CUsCQ0CR2DG׍CUsCT|CQ|CR1IB_F` | zJSˊɊDGCT FJ`1e< `2=cv`=/+> b~?spb 2jhNaxb 2Q*4b 2Qb 2A@@- ?sv2MiN_p -WÄ11 J܄ڋ؋JЄX1PB:Y2KB1b JSFw;KPM]e< K2Όƌ=cvK=1-> M~?spM 2ljNaxM 2Q*4M 2QM 2A ?@- @- -UdMM! J܍ڍJJu(&BgM/)CUsCT7EMƁCUUKBTM M JSMKZ8 [A 'Np\,; \@l \d.\&M ]lY20< Y2p< KY2bFeJA9OP>P_> V!V!I> J JnhO>PDCUsCT~I0 `?3J  JEAOp?P{DKCUsCT~Bڗ[CUsCTCQ2CR0BǎyCUsCTB$CUsBBCUsCTCQ3B]`CUsCTCQ0BSCUsCTB"CUsCT~CQ~B38CUsCT~BR!WCU HB!|CU CTvB!CU0L֞`/+2"[ + 2[W(+[ K+,2[H+;Nsp-2Q.2MQD@EbaN_pJ -]'2pu!<  2˜=dec,<%"2$\2J$A=@- B{CU|CTvCQ1B3{ǎCU|CT|DǎCU|Gf@- BōOCU|CTvCQ1B܍ǎnCU|CT|DǎCU|Iu@ $JGJ̪JH@ PPPPe_PP"P/~P<vfPINPVTcbl"PqUDuCT<Iu"UJO#P _P# V!V!b~#P|DMvCU|CT<Iv#]zJ J O#PICDCU|CT}b$Pb%P PPPPP&"bd'8Pep`Pr,Iw'nJ O@(PJD_( V!V!b(PI% )J6cazPbP) P3/DCU|CT;Bϔ0CU|CTCQ2B]CU|CTCQ0CRDǏCU|CTD ԏCU|CT~CQsCR~CX CY0Iw) JmkO)P_@* V!V!BwԏBCU|CT~CQsCR~CX8CY0B/`CU|CT~BԏCU|CTCQsCR~CX$CY~B7"CU|CTCQ~BjgCU|CTwCQsCR~BlCU|DgCU|CTwCQsCR~CXOp*P6Iڇ+J2*O+P_P, V!V!I<,JO,P!_, V!V!I  -eJ [WJO0-PDБCU|CTsI%&`-J642c#ZRaP([Wc4Z P5DgCU|CT;B|CU|CTCQ2BDCU|CTCQ0CR~DǏCU|CTBCU|CTCQv8$8&BŇCU|CT~CQsCR0CX0CY0B/CU|CT0BCU|CTCQsCR0CX0CY0BLj"0CU|CTB eCU|CT~CQsCR0CX0CY0BCU|CT~CQsCR~CX~CY~BdCU|CTsBCU|D#CU|CT~CQsCR0CX0CY0I݆-# ^JO-P;3_ . V!V!KjP. JO.P_/ V!V!b0/PdPP)ECb6/ P;nhDzCU|U% p >J6BnVCU|BnCU|BRCU|CTsBkCU|CQ3BǎCU|Dj׍CU|CTvCQvCR1I/yOJ J1-O/PogDCU|CTwb 0zPP<6bp0PP97b0Pb\DCU|U%  UJ6BnCU|B1CU|BOCU|CTsBlCU|CQ3BDCU|BCU|B׍CU|CTvCQvCR1D#!CU0B !CU|CTvB-.CU|CTvCQ0B;!8CU|CTvBO;VCU|CT~DpCU|CR0CX0CY0B]vICU|CTBxvHCU|CTvCQ}CR2BICU|CT~BځԎCU|CT~DUCU|CTvUsIxIx}JJDYxCU|CTCQ"I>x0$gJj.J]JP H0PwPPTR|cx 2PG1DxCT;Ix1J,(O1Phb_02 V!V!b`2PDr{CU|CT;I{2%J JA=O2P}wDhCU|CT}b2~PPI|`3  J{O3P_04 V!V!I~`4 JsmO4P_4 V!V!B{/CU|CT}B{?CU|CTwCQ}B |"cCU|CTCQ}D|CU|CTsIR|5%J 95JsoO05PDCU|CTsB{ICU|CTwB{H-CU|CTvCQ}CR2BgIKCU|CTsDxUCU|CTvI8y`5$JJG/H`5P[;PSIOy6JO6PJD_ 7 V!V!bP7PPP{uPP\XPP*P7mMbC7PHDCU|Id~08#J )%Jc_O@8PDCU|CT~cz~JP{U%~~  J6B}bCU|CTwB!}nCU|CT~CQ0BB}{CU|CQ CR0BX}nCU|B`}CU|B~DCU|CT~CQ}CR1BR~aCU|CQ2B~CU|CT}B~CU|BCU|Dw׍CU|CTsCQsI΂p87J 93JO8PDŐCU|CT~I8J &"J`\O@9PDCU|CT}B|"CU|CTCQ0B|CUL|D|"CU|CTCQ0I y 9J7!J*JO)H9PDPQ`8S^bg: PlbyP;d~PBCU|CTsCQ} $ &CRDOCU|b;<ePI; vJ KGJO<PDCU|CTvBaCU|CT XCQ2B~CU|CTvCQsCX2BCU|CTvCQ CR3CX2B"CU|CTvCQ2DCU|CQ0Bz_CU|CTvCQ2BQwCU|BCU|BCU|BԃCU|BCU|BCU|DCU|CTsb@<MeP I<J JO<PD CU|CTvc=#PLHP(c5AP6W%HH J6BeGCU|CT CQ6BpCU|CTvCQsCX2BCU|CTvCQ CR3CX2BCU|CTvCQ2BL!CU "CTsB CU|CQ0B̒-CU|CTsCQ0DCU|CTsCQ2BFpCU|CTvCQ3B`CUsDhȐCU|UFczczJeJXDszCU|CTCQ'BIxCTvCQ4Bcz:CTvCQ4BzYCTvCQ BzǎxCU|CT|Lk`@D2[  2fdecNtag2Nval2\2JMQ-Nav 2Ni NlenQ.8 2Nsv 2QD 2Nsp2MVQDEbMhN_p-MzN_p-aN_p -MN_p-aN_p-`g G2g[ G 2fdecG[%G"2NsvI2NhvJ2QM@K2QEL2Q-MM~Qj-N~QO~Qs)P~QQ~Q-Ro\2JxM~N_pJ -MN_pY-MN_p]-MQMe ~aQ}2Q%~2Q2NpdNedQA2MdQK2M#N_p-MCNav2aN_p"-MUN_p-aN_p-aNkeydNlen$2aNrv2MN_p-aNav2aN_p"-MNcb48Nhe48aNspA2Q'B2MQDEEbaN_pU-MXNsp] 2Q'^2MIQDa EbaN_pp -aN_py-F +0X>< +2A;=hv+2=key+#d=len+,$2NF<+52?i-$23+@E/~D(1CQ0CRQCX R `2 [  2fdec[%"2Nav2QN<2QE2\2J$MN_p -MN_p-MN_p-MQ 2Q% 2aN_p%-`;2F[ ; 2fdec;[%;#2Q=~Q%> d\2JMNlenz ~MNuv vQ  ~aQ 2Npv 2MN_p -aNsp 2Q:2aN_p-aQ 2Npv 2MN_p-aNsp2Q: 2aN_p-`E52s[ 52fdec5`!/2[ / 2fdec/]!L 2M< L 2=decL mQ<-L %o?svN 2&@EO ~@1P d?chQ -3g2J)2RA0 RbufV ~?curW d  A ?c~ -  K5O0 *JG2*JG2*H0PTP`VTPl}ySyA?c oKQp !JJHpP7-PP P( S%A?lo v?hi vIP (cJJHPlbKP uJJ-'HPzB6P6CUuCTt^uDP6CUu^uA 9R* ~KR  JJGAJV݀JЀKSp  JB@JlhJV݀JЀOp eDSՐCU~CTvCQ~vCR~H?len%GN`d?cur rnIdN FJJJuDNCT|CQsDNSCU~CT}DPCU~CT|CQsBTCU~CT .CQ0LKU o5L @`= v/fdec= Nd1? eNd2? eNd3? eNcur@ /\2JG -`-. vfdec. Nd10 SNd20 SNcur1 /\2J8 `4  vfdec Nd1 SNd2 SNd3 SNd4 SNcur /\2J) Z* fdec aNch oZ&- /fdec ]J 2 S<  2>6< 2Js|xK}pTJ}J}J},(K}pJ ~fbJ~J}h*8gP~DtSCUvI q J897J+b^bDpqPEB`CUvCTsCQ1L B/CUvCT BCUvBS&CUvCTwCQ|CR}B!ECU LFR`?(,<  2=enc,f 2 =sv"2""<%*2P$$@em&;&@@~(j(ix?~@)>~+k+\, . APE~?svt76..Bv`]CUsCTvCR|D^Y<CUsCTvCR|AK[@.82Y/O/@F=d//AL@B82 0 0@>230/0BCUsCQ0CR0BC!%CU Bo!PCU CQvCR}B`nCUsCT|B;CUsCT|CQ0CR2B;CUsCTCQ0CR2D&;CUsCTCQ0CR2B<!CU  CQ}CRvBb;6CUsCTCQ0CR2D;CUsCT|CQ0CR2A`L@*( ~0i0@Z dU22@qd44@/  o7w7?nv 9k9@= ~;;AO7Rlen?str d= =D;CUsCTCQCR0AM0Rlen/?str0dn=X=?pv12i>a>Q22@ 3~>>MN_pE-G ?spO2??Id"N]7J??J??Ju??D'CU~CT~B\CUsCT~CR0BCUsCT CQ/B3CUsCT~CQ~CX2BPCUsCT~CQ CR3CX2B` CUsCT~CQ2Bk(CUsCT~B}FCUsCTvB;pCUsCTCQCR0B̾!CU "CT~Br;CUsCQCR2BCUsCQ0BCUsCT~CQ0BCCUsCT~CQ2Do!CU0G4lNz dDCCU?CT~G9 ?l3 @@I.O4 JWS@Q@JKx@v@J?@@DHCU~CT~CQ|DCU~GP?strJ d@@?lenK A@K}@ON J}%A#AJ}NAJAJ}AAD}CUsCTvCQ1AN9 1T G%"QHIa dW…%b JAAV߅VӅB̵!@CU~CTeB!^CU~CTEB!~CU~CT.BS-CUD-CUU…WW0 JAAV߅JӅ B BU…= CJ2B0BJ߅XBVBJӅBBU… ? JBBV߅JӅBBU…; J C CV߅JӅ2C0CB״}CUsCTvCQ/B9CU~CTB95CU~CTBEEXCUsCTCQ0BrpCUsD!CU @AQI@Zi dcCUC@qi dDCRuvm vRivn e9 o ~AT @.8t 2DD@u ~E E@9v ~~EvEAU Rlenz ?str{ dEEAU< ?sp 2KF-F@ ~G~GAU@D EbGGDCUsAU!?_sv !2GGBCUsCQ2DRCUsCQ0A VT@D EbZHVHDCUsBnlCUsBCUsBRCUsCT CQ2BRCUsCT| $0.(CQ2Bv׍ CUsCT|CQ|CR1D׍CUsCT}CQ}CR1Udxx  JHHJHHJuHHDCT|U`*  JIIJ}2I0IJqXIVID_CTFCQ1U`   U J~I|IJ}IIJqIIUs  JsIIJsJJJsDJBJJsrJpJJsJJD3sCUsCTvCQ ;CR1CX0B\c CU|CT CQ5Bx}7 CUsCTvBr;a CUsCTCQCR0B} CUsCTvCQFD }CUsCTvCQFB CUsCT CQCR0APSh@  ~JJA TRlen ?str dLKHK?pv 2KKQ 2M N_p -G ?sp 2LLUd//(  JLLJLLJuLLD@CT|B7 CUsCT xCQ@B>Z CUsCT|CX2B[ CUsCT|CQ CR8CX2Bk CUsCT|CQ2Bv CUsCT|B! CU "CT|BCUsCT|CQ0B/}7CUsCTvBbCUsCT XCQ2B0CUsCT|CX2BMCUsCT|CQ CR3CX2Bd;CUsCQCR2B(CUsCQ0DbCUsCT|CQ2B9CUsCR|D,CUsCTCQCRCX|G?iO 2ML?uP $2GM9M@Q oN N?nzQ oNND}CUsCTvCQ6Gz?strv d8O6O?lenw ]O[OI}=Sz J}OOJ}OOJ}OODB}CUsCTvCQ1U}mm| J}PPJ}DPBPJ}iPgPD}}CUsCTvCQ1DmsCUsCTvU`aa'r JPPJ}PPJqPPD_CU~CTFCQ1CR U`PPq JQQJ}5Q3QJq[QYQB9CU~CT|BH}CUsCTvCQFDB,CUsCTCQCRCXA`V?str dQ~QRlen I}V J}QQJ}QQJ}RRDϷ}CUsCTvCQ1D*;CUsCTCQCR0U 0xJ,-R)RJfRdRX0P8RRPERRPRRRP_RRPl"S SUzEE6QJGSESJmSkSXE6PSSB[$CUsCT CQCR0IM-pE Ju-SSJh-UxUJ[-=WWHEP-XXP-YYP-[Zb-@GCP-.]]b-pHP- ^]P-^^P-a`K`P-_aQab- IIP-aaD[CUsI}lPI J}EbCbJ}lbjbJ}bbD|}CUsCTvCQ1I}I J}bbJ}bbJ}ccD}CUsCTvCQ1I} I oJ}'c%cJ}NcLcJ}scqcD}CUsCTvCQ1I}.I J}ccJ}ccJ}ccD8}CUsCTvCQ1I}M J 3J} ddJ}0d.dJ}UdSdDW}CUsCTvCQ1I}PJ  J}zdxdJ}ddJ}ddD}CUsCTvCQ1U} J}ddJ}eeJ}7e5eD}CUsCTvCQ1BCUsBn3CUsBKCUsBEhCUsCQ3B sCUsCTvBSCUsCTvCR~BBCUsBc׍CUsCT}CQ}CR2DC!CU b-JP-peZeb .JPP .\fVfDCUsBnhCUsBCUsBCUsCQ2B,SCUsCTvCRsB׍CUsCT}CQ}CR1D!CU PUzDD@06JffJffXD@PggBaCUsCT CQCR0B!CU B ǏCUsCT|B+CUsBIǏ5CUsCT|BTMCUsBf;oCUsCQ0CR2B{CUsCT~CQ CR0B{{CUsCT~CQ CR0B.CUsCTvCQ|CR0B.!CUsCTvCQCR1L0ǏD;CUsU.= JH.UgSgJ;.zgxgJ..ggXPT.ggDW~CUsCT|Ib.K J.ggJ.ggJ.'h#hJ.ah]hJt.hhI PKJ,hhJyj[jHPKP8kkPEkkPR llP_\lXlPlllDCUsCT|CQ2B۱ǏCUsCT|BCUsBǏCUsCT|B0CUsB!;RCUsCQ0CR2B2!qCU BͼǏCUsCT|BؼCUsBǏCUsCT|BCUsB;CUsCQ0CR2B$!CU B.BCUsCTvCQ|LǏBgCUsLǏDCUsI -b P@$J3-llJ&-rnXnJ-oyoH PP?-ppUs ] x Jsq}qJsqqJsqqJsqqJsrrDsCUsCTvCQ CR4CX0I.XQz JH.CrArJ;.hrfrJ..rrHQPT.rrD]W~CUsCT|Usnn"e !JsrrJsrrJs#s!sJsQsOsJsvstsDsCUsCTvCQ CR5CX0Ib.0Qt{"J.ssJ. ttJ.qtitJ.ttJt.9u1uI Q["J,uuJ'v#vHQP8av]vPEvvPRvvP_wwPlOwKwDCCUsCT|CQ0B"CUsCTCQ0BǏ"CUsCT|B "CUsB'Ǐ"CUsCT|B2 #CUsBD;,#CUsCQ0CR2BU!K#CU XL`ǏBkp#CUsBǏ#CUsCT|B#CUsB;#CUsCQ0CR2B!#CU LHǏBS $CUsBǏ*$CUsCT|DCUsUsPP$JswwJswwJswwJsxwJs&x$xDjsCUsCTvCQ CR4CX0IsV Q%JsKxIxJsqxoxJsxxJsxxJsxxDsCUsCTvU}$ %J}y yJ}6y4yJ}[yYyD }CUsCTvCQ1I}ݽ W !&J}y~yJ}yyJ}yyD}CUsCTvCQ1Is `W ~&JsyyJszzJs=z;zJskzizJszzI}jW &J}zzJ}zzJ}{zDz}CUsCTvCQ1Ib.wW A*J.*{${J.|{v{J.{{J.||Jt.l|f|U ww8'J,||J }}Xw8P8W}S}PE}}PR}}P_ ~~PlG~A~I} X (J}~~J}~~J}>8K}PXJ ~J~J}h*k\P~;7DSCUsIsX )JssqJsJsJsJsDsCUsCTvCQ CR4CX0U}r )J}75J}^\J}W}iJ ~J~΁́J}h* WP~DTSCUsUs ~*JsRPJsxvJsJŝʂJsD sCUsCTvCQ CR5DCUsCT}CQ2Bg!*CU CQvB*CU~B*CUsB{+CUsCT|B0+CUsCT BH+CUsB0`+CTBix+CU~B@+CU~B!+CU LB!+CU  CQ~CRvB5;,CUsCT|CQ0CR2BI;7,CUsCTCQ0CR2B;_,CUsCTCQ0CR2B;,CUsCTCQ0CR2DV;CUsCTCQ0CR28kZp,[  2fsv2[  ybfiv,,fuv4-evZPM-[ P2fencP,fsvP$2NsvtR 76ZN.[  2fenc,frv"2Nsvt 76QD2Nsv2aQ.8 2M-Q- Nsp 2Q'~Q~aQD EbaNsp 2aQD Eb`~b.[ 2fenc,fsv(2QTI~`4~.[ 2fenc,fsv(2[)>0~[KF~FE `mY<< 2B=enc, =sv(2q<30~Ӈ?str d;Rlen ?pv 2@  76M/N_pQ-Ac2?rvY 2qeM/N_pY-M/N_pm -M/N_pp-U%n nY0J6Inpw0J JVRO@PDupCU}CTvI}`rpj 0J}J}J}A?Dpr}CU}CTsCQ1U}rrl G1J}fdJ}J}Dr}CU}CTsCQ1Irm 1J ُՏJOPQID#tCU}CTvBnǏ1CU}CTvBnj1CU}CTvCQ}CR:CX9Brs$2CU}CTsCQ|CX1BrvH2CU}CT|CQwD3tCU}CT|Mu2N_p-M2N_p-Usnn,!3JsJsؐ֐JsJs,*JsQODnsCU}CTsCQ CR4CX0I}vo3J}xtJ}J}K}vo@J ~*&J~fbJ}h*qhP~ؒ֒DGqSCU}I}op4J}J}=9J}wsK}oJ ~J~J}'#h*phP~_]DpSCU}UsxqxqP-5JsJsJsДΔJsJs#!DqsCU}CTsCQ CR4CX0IqQ5J JFJOP•DrCU}CT~Iss  "6Js#!JsIGJsomJsJs–DtsCU}CTsCQ CR3CX0Ustt 6JsJs  Js31Jsa_JsDusCU}CTsCQ CR3CX0Usuu V7JsJsїϗJsJs%#JsJHD!usCU}CTsCQ CR4CX0Us1u1u 7JsomJsJsJsJs DHusCU}CTsCQ CR4Bm8CU}CT .CQ0Bn?8CU}CT .CQ0Boh8CU}CT~CQvCR2Bos8CU}CTsCQCX1BoǏ8CU}CTvBo8CU}BpǏ8CU}CTvBp8CU}B"p;9CU}CQ0CR2B3p!>9CU `BCp\9CU}CTvB^pv9CU}CT~CQwBpǏ9CU}CTvBp9CU}CT~CR2BqU9CU}CT~Brs:CU}CTsCQCX1B)sc2:CUCT CQ3BAsc\:CUCT CQ3BYsc:CUCT CQ3Bys:CU}Bsc:CUCT CQ3Bsc:CUCT CQ3Bsc;CUCT CQ3Bt:;CU}CT~LJtBUtǏe;CU}CTvB`t};CU}BztǏ;CU}CTvBt;CU}Bt;;CU}CQ0CR2Bt!;CU LtǏBt<CU}B,u7<CU}CT~LRuǏD]uCU}FYKY<  2w1=enc,T&=hv"27<%*2$@M@2ǥ?he8Afl?@.82@F=dH`g@B8 2CA@>!2jfB x=CUvCQ2CR0BǏ=CUvCT}B=CUvBǏ=CUvCT}B=CUvB;>CUvCQ0CR2B!1>CU CQsCR|BO>CUvCT|B7;w>CUvCT~CQ0CR2L>ǏBI>CUvBǏ>CUvCT}B>CUvBǏ>CUvCT}B?CUvB;*?CUvCQ0CR2B!I?CU @LwǏDCUvAg@@.882@F=9d BWǏ?CUvCT}Bb?CUvBǏ?CUvCT}B @CUvB;-@CUvCQ0CR2B!X@CU  CQsCR}LsǏB~}@CUvD;CUvCT|CQ0CR2A YK?iN2^D@'N2n9"O Y{?hesP 8߭@Q ~rA0ZgK@ g~G`0A?svl2Bq/~ACUvCT z $ &3$D|CUvG4B?he1v8۱ױBACU1CTHBACU1CTFBBCUvCT}CQD<;CUvCTA@`CRcopzBpnfBCUvBx~BCUvB{BCUvCTvBBCUzCT z $ &CQ8CR22z0.(BCCUvDiCUvA[I?keyd!@L2IJA`C@>2]YBԏCCUvCTzCQ~CR}CX CY0D!CU CT~I_\nDJ_J_ J_TPJ_H\P_ҴδO_]d_zP ` D5;CUvCT}CQzCR2IUs`]EJpsHBJcsKUs]=JpsJcsO}s]P~s^TI}]CdEJ ~۶׶J~J}OKh*`P~DSCUvW DJ!JѷϷJ DđCT CQ}Ir_^HJr&JrI}_^[FJ}J}PLJ}K}_^J ~ĹJ~J}:6h*hP~rpD?SCUvIsp_^GJsJsӺϺKsp _PJs  JsGCK}p0_TJ}}J}J}K}p`_J ~1-J~miJ}h*hP~ݼDSCUvKr_YJrJrUQK,s_`JGsJ:sɽŽK}_LJ}J}A=J}{wK}_J ~J~J}+'h*`bP~caDSCUvB[ICUvCTsCQ~CR}BESAICUvCTsCRzLNϑBVϑfICUBSICUvCTsCRzBVICUvCTzCQDiSCUvCTsCRzIsP[ JJsJsĿKs[PJsJs!W}(TJ}FDJ}ljJ}D}CUvCTsCQ1B.JCUvCT}CQ0BKCUzCT z $ &CQ8CR2p/z0.(D!CU xCT).z0.(CQzCR|B8!KCUvCT}Bq.KCUvCT}CQ0B!KCUvCT}DܑCU}CTPAaRR?keyd@L2(AfL@>2BԏlLCUvCTzCQ|CRzCX CY0D!CU CT|I_ b:MJ_ J_J_J_QKHbP_O_cd_zP `D:;CUvCTzCQzCR2IUsPcNJps+%JcsztKUsc=JpsJcsO}scP~s=7I}cC0NJ ~J~J}h*@pP~B>DzSCUvW DJ!|zJJ DđCT CQ|IrGdQJrJroeI}Gd[OJ}J} J}ZVK}GdJ ~J~J} h*hP~B@DSCUvIrqeYPJrieJrK,sqe`JGsJ:sK}q eLJ}QMJ}J}K}q PeJ ~J~?;J}yuh*XhP~DSCUvKse^JsJsKsePJsLHJsK}eTJ}J}J}62K} eJ ~plJ~J}h*hP~ DSCUvB[QCUvCTsCQ|CRzB.SRCUvCTsCR~B;.1RCUvCT}CQ0DCUvCT}CQI} XH SJ}ZVJ}J}K} XJ ~ J~HDJ}~h*hP~DOSCUvIUs3p`3iTJpsJcsznKUs`=JpsJcs=9O}s`P~sysI}`CTJ ~J~J}A=h*\P~ywD:SCUvW DJ!JJ DđCT CQ|I}:a"UJ}J}PLJ}K}:@aJ ~J~J}:6h*hP~rpDSCUvIspa UJsJsKsaPJs  Js0.W}(TJ}USJ}{yJ}D}CUvCTsCQ1IsP0f VJsJsKspfPJs;7JsuqK}pfTJ}J}J}%!D}CUvCTsCQ1L%!B.VCUvCT}CQ0BǏWCUvCT}B WCUvBǏ>WCUvCT}BVWCUvB1;xWCUvCQ0CR2Ba!WCU  CQsCR|Bs;WCUvCT~CQ0CR2LǏBWCUvB]!XCU pLbBǏ:XCUvCT}BRXCUvB$ǏpXCUvCT}B/XCUvBA;XCUvCQ0CR2Br!XCU  CQsCR}B;XCUvCT|CQ0CR2LǏDCUv 8/Y L?]8~2EY=a[a[=b)[@ 2L2E%3CR0]*~2]Z=a[*$=b)[~v@ 2L,2j20ZCR2B2HZCUsD2CUs]~p/H[=a_[EA=b_*[~?cmp~?a8?b8?la 0,?lb hfL/Fg_<  2=enc,+=key$d:J}|xJ}K}iPJ ~J~,(J}fbh*jhP~D7jSCUvD.hsCUvCTsCQ|Z&`[ 2fhe8fkey#t[L-EbQE~aNlenNsv 2F%f] r< f 2=encf,( =avf"2<%f*2@N<h2?ii ?leniA oHc@.8t2$@F=udwqHo@B8x2@>y2BKaCUvCQ1CR0B{iaCUvCTsBǏaCUvCTBaCUvBǏaCUvCTBaCUvB;aCUvCQ0CR2B!&bCU CQsCR|B;ObCUvCTwCQ0CR2L ǏB+tbCUvBLǏbCUvCTBWbCUvBsǏbCUvCTB~bCUvB;cCUvCQ0CR2B!%cCU LǏDCUvAod@.82+#@F=dBcǏcCUvCTBncCUvBǏcCUvCTBcCUvB; dCUvCQ0CR2B!8dCU  CQ|CR}LǏB]dCUvD4;CUvCTsCQ0CR2Api\j?svp2Gd@E2DCUvCT}CQsCR0IUs0j PfJpsJcs KUs`pj=Jps]YJcsO}sjP~sI}ojCeJ ~C=J~J}h*xP~DSCUvW}}DJ!B>J|zJ DđCT CQIrk uiJrJrJ@I}k[>gJ}J}J}51K}kJ ~okJ~J}h*pP~DSCUvIr lY[hJr[WJrK,s0l`JGsJ:s K}@lLJ}C?J}}J}K} lJ ~J~1-J}kgh*lP~DSCUvKsl^JsJsKs lPJsUQJsK} lTJ}J}J}?;K}mJ ~yuJ~J}h*mP~+%DSCUvUs  jJsxvJsJsJsJsDsCUvCTCQ CR4CX0B:jCUvCTCQsCR0DSCUvCTCRwI}% hkJ}>:J}|xJ}K}%PhJ ~J~,(J}fbh*hP~DSCUvIsEh2lJsJsKshPJsc_JsK}iTJ}J}J}MIK}@iJ ~J~J}h*bP~53D9SCUvIs 0mOmJs^XJsKsPmPJsJs40K}PmTJ}njJ}J}K}PmJ ~J~ZVJ}h*bP~DSCUvIUs7 n-nJpsJcsD>KUs`n=JpsJcsO}s`nP~sI}nCEnJ ~[WJ~J}h*d\P~DSCUvW DJ!,*JQOJ xvDđCT CQsI}7nfoJ}J}J}K}7nJ ~RNJ~J}h*PhP~DSCUvBboCUvCTBǏoCUvCTBoCUvB0ǏoCUvCTB;oCUvBM;pCUvCQ0CR2B!CpCU  CQsCR|BbbpCUvCTwBO;pCUvCTwCQ0CR2L\ǏBgpCUvB?!pCU pBǏpCUvCTBqCUvBǏ'qCUvCTB?qCUvB ;aqCUvCQ0CR2BA!qCU  CQ|CR}BeǏqCUvCTBpqCUvBǏqCUvCTBqCUvB;rCUvCQ0CR2B!CrCU 0CQsB;krCUvCTsCQ0CR2LǏBrCUvLǏBrCUvD;CUvCTsCQ0CR2Z=EYs[ Y2fencY,ZP,s[ P 2fencP,ZJUs[ J2fencJ,Z6=s[ =2fenc=,aQ2A ~ZB7s[ 72fenc7 ,fstr71flen7=[37F~Fp\k }<  2/#=enc,=str%d5=len1L F <3:~  ?end d6 0 A(}?ch-  A0x9R*?uchv:  I"`uJJJOGJ݀JЀK e  J+)JUQJJ݀JЀO P$"D3eՐCU|CTvCQvCRI}_ 8vJ ~KGJ~J}h*epP~D!fSCU|I_vJJHJxvD`CT1CQ CR pCX}I`*)BwJJ:*HPWrgrgBuJJXrgBPKCI}a0wJ ~J~ J}FBh*NfmP~|DfSCU|I} b`6xJ ~J~  J}GCh*flP~}DfSCU|B`}YxCU|CTsCQ=Bb}|xCU|CTsCQ1Be}xCU|CTsBg!xCU CT}Dg!CU CTvI}\ [yJ ~J~J}3/h*]pP~oiD^SCU|I}8]yJ ~J~J}40h*`cP~njDaSCU|I}`]OzJ ~J~J}h*DacP~XTDaSCU|I}] zJ ~J~J}h*JecP~B>DeSCU|I}`^PC{J ~|xJ~J}h*cbP~*(DdSCU|I}^{J ~QMJ~J}h*ccP~DWcSCU|I}^7|J ~;7J~wsJ}h*DdcP~DdSCU|I}_|J ~%!J~a]J}h*dcP~DdSCU|K}@_J ~ J~KGJ}h*ccP~DcSCU|I}\}J ~J~g _ J}  h*b\P~Y!W!DbSCU|LgZ}[  2fenc,fch#oZ {*~[ {2fenc{,flen{ aNcur`\~W~[ \2[\2]PIE~@0 < E2!|!=svE2!!?svtG 76V"P"A~RlenK`?pvL d""D0;CQwCR0L0`07~z[ 72fsv72Q-9Q;2Q*<2Q$=2Q.8>2`0~[ 02fsv02Q.822]#@1,N=s""@#Cg#c#?neg~##jL1'1CUUCT0D_1'CUU#CT0`a![ 2fsv2[H*`u/fsu/fchu#vQwv` v[  2fs #/flen -[  6~[R* GSaNc5vZv+T[  2fsv2aQA`72[  2[F=Q-Nsv2Nrv2`2Ɓ[s'F K@<  2##=cxtQ$I$ITL0 Js$$Jf%$H0 P:%6%Pv%p%P%%B6L3CUsCT CQ1D9MVCUsCT|ITLp ]Js%%JfK&E&Hp P&&P&&P!''BL3ACUsCT CQ1DMVCUsCT|BKCUsCT CQ@CR1BKCUsCT CQACR1BKCUsCT CQACR0BKCUsCT CQACR0DL@CUsCT CQ0Z8\[s'`!Efsfoff$1`moeÄ[ o2fao$fbo1k l 2msv2nrc $2kJ%l 2msv2anrc$2opK2Bmsv2o2`l  2pvA~m__sAjm__nAlAqp"~…m__s"jl"qpkdl9kjlkl$kpq(>-.l9>-lW>~l$>p_'-dl9'-l'[l$'p5-l9/lal$r.sUHP_'W'_@ V!V!r}/tKJ}''J~''J ~O(K(HpP~((L 0Srp1%J((J ((HP/)')Y1rzGP6J))VP))BH CUvCT CQCR0r@HrVVP**P**P%+!+Pp+n+P++Sr*~Hr~J<~,+VI~VI~U HH0fiJ,,,J,,XH0P8,,PE,,PR%-#-P_K-I-Pls-o-DIW~CTsr@IJ--JK.?.J..Jf/d/P//Pv0t0b` P00DJCUsb ^P00DJMCUsCT CQ>CR BYInvCUsBmICUsCT CQ6BIZ̊CUsCT2CR0CX0CY0BICUsBInCUsBICU~BI2CUsCT~B-JOCUsCQ2LFJL]JBJ׍CUsCTvCQvCR1DJ׍CUsCT|CQ|CR1rNJ/]J`*1"1Jy11VmVmKJ J11JK2E2J22jJyNCUULJyr,KIJ, 33J,33J,33J,l4b4J,44I,>K 5J,^5Z5J,55J,55J, 66J,F6B6D}KCU~CTsCQ0DgKCQ0tE/ uEt>>E2 t  EtG?G?Et""E~tEt%%EXtE tEt Et**En t]4]4E~ tyDyDEbv&J&Jt))EF t0<0<E tEtccE tCCE w_UFtEP t@@Eh u""Et((Et<<Et t$$E tdJdJE tEtJJEt'#'#E t..EtAAE t!0!0Ez t.H.HE ts<s<E tE1 tE1t22EtNNE{tV9V9Et--E w2(Ft E tttE! t}}E t E t++EU u\=\=Eu//Et11EtEuEtb+b+Et  EB t++Et;;Et00EtEEEtKKEt E( tEuGJGJEt{{Etx(x(EEu""Et$,$,EtwwE t}+}+EetEtEtvvE6w5+Ft++E t33Et GqtJJHuBBHukEkEInuH tE t::EwIIFuEt-5-5E t@@E9 t]']'E t""E tBBEt%%G; wq(g(Ft&&E tn.n.Et  J`t''E tFFE u22H@ w8.Fu!!Gut Et!!E t@@Et_H_HE% $ > &I: ; 9 I$ >  7I I  : ; 9  : ; 9 I8 I !I/  : ; 9  : ; 9  : ; 9 I< : ; 9  : ; 9 I'I4: ;9 I?<&4: ; 9 I?< : ;9  : ;9 I8  : ; 9 : ; 9 I: ;9 I: ;9 I : ; 9  : ; 9 I 8  : ;9 ! : ;9 I 8 " : ;9 # : ; 9 I8 $ : ; 9 I8% : ; 9 I8& : ;9 I8' : ;9 I8( : ;9 ) : ;9 I*5I+!,: ; 9 -> I: ; 9 .( / : ;9 0 : ;9 1'I2 : ;9 3 : ;9 I8 4 : ;9 I5!I/6 : ;9 7 : ; 9 I 88> I: ;9 94: ;9 I:> I: ;9 ;.?: ;9 '@B<: ;9 IB=: ;9 IB>.?: ;9 'I<?4: ;9 IB@4: ;9 IBA UB1CBD1EB1F.: ;9 '@BG H UI1RBUX YW J1BK1RBUX YW L1M N4: ;9 IO 1UP41BQ4: ;9 IR4: ;9 IS 1T 1U1RBX YW V1W1RBX YW X YB1Z.: ;9 ' [: ;9 I\ : ;9 ].: ;9 'I@B^1B_1UX YW `.: ;9 'I a b 1Uc 1d41e41f: ;9 Ig : ;9 h 1i4: ;9 I jB1k.: ; 9 ' l: ; 9 Im: ; 9 In4: ; 9 Io.: ; 9 'I p.?: ; 9 'I 4qr.1@Bs1t.?<n: ;9 u.?<n: ; 9 v.?<nw.?<n: ; : /usr/lib64/perl5/CORE/usr/include/bits/usr/include/sys/usr/include/bits/types/usr/lib/gcc/x86_64-redhat-linux/8/include/usr/include/usr/include/netinetXS.xsinline.hXS.cstring_fortified.hstdio2.htypes.htypes.htime_t.hstddef.h__sigset_t.hstruct_timespec.hthread-shared-types.hpthreadtypes.hstdint-uintn.h__locale_t.hlocale_t.hsetjmp.hsetjmp.h__sigval_t.hsiginfo_t.hsignal.hunistd.hgetopt_core.hsockaddr.hsocket.hin.hstat.htime.htime.herrno.hnetdb.hnetdb.hdirent.hdirent.hperl.hmath.hop.hcop.hintrpvar.hsv.hgv.hmg.hav.hhv.hcv.hpad.hhandy.hstruct_FILE.hFILE.hstdio.hsys_errlist.hperlio.hiperlsys.hperly.hregexp.hutf8.hutil.hpwd.hgrp.hcrypt.hshadow.hreentr.hparser.hopcode.hperlvars.hmg_vtable.hoverload.hppport.hproto.hstdlib.hstring.hmathcalls.hpthread.h . <J=Xg    X=7.i  Y rXr of>Y ;=;>tKz _;=I KIMJ 9= >JK-Y[f}Etz(x<Rx'RJKX=$4<LX K; pX>Z,J    g = WZX YtXXXlJ xRKtJW S<<..] sg X v m J  Jz{Y=Y<#&9J#&9J#&9X#&9XK GM= F>j9r<t<  lX  >Tf"h$tH.t $^fy< /WMj I/.>=[./KJ xD =;JJkY ? J.xtY z P J.lJX<<.b<2f9.<~ J<  J L#JJYXX d  dJ  KIJ    ~tJ<     WK t=J#X&9#&9 Y IL :=  / J<   ? >   .X?JI=  3#Xw #=+t6JJ/i  mJ i J /= t < /= t < /=  f />X(/9<,JJJ[(/9<,JJJV(/9<,JJJY(/9<,JJJU(/9<,JJJ  X  J<.2J<<2J<<2 Y IK I=I ?E*JOqX$2.!J.JJX  Y ;=3J0 t~J<~XoAJ9h<<J<  hXtX=<>2~XXt2i<JX/J"KJ i LH 1H=XXX ~XJK  V )J<V# )JV< J )< VJ< )JJu<  |<  > J: L: ?:/J ~'gJ"J=$4<Ȑ'gJ"J=$4<ȐEt$'t=$<5u's=$<;t=IBJ''H=$<'t=$<5t'tg$<;tBt'<g$<;t=IBJ'H L : >: ?:=JZ> |<mCyJ J =/ t < == >H J < ==  g>XiX}mE}t 0 }.<0f}<<0J0<.}mEt  <<g}mEtf  <<X )~~mEt  <<}mEth'J6=$4<Ȭ)~~mEt  <<X }'J<(/=$4<'J<g=$4<'Jg=$4<'Jg=$4<#K  V )J<V# )JV< J )< VJ< )JJu<   Z  = [   [w <Jyf < 0   =f cY=<<Y   <vZ JJJgrKYYYL<Z =WXIKXJLk X.XJ.JfYK!Lbh_KW2W&WW< ` /  KX  X < < 1   = =dY=<<    <OKtcYKK+tK= ~tJ#,<&Z&YJ&=X.[X=[ t.  u <tyXX    =f  `=<<     Y vuyX J 0   =7?  Y rZ o>KIY ;>< t J= JK <<Yfv <tyXf    =f t7v XtvyXf <   =7.  Y U+<Z&J"J[ JLa=<<  o> ;=;><  0   X=f  u.  u o>Y ;=;> t s o>< ;=;><  o>t ;=;><  o>< ;=;><  o>ȐK ;=;>       v.7s?  .t o>Ȃ ;=;>7u  J< <t~.Jy o>Ȃ ;=;><7   't Y.J t.J_XX)  IK =Y Yu tmt<J } x  I /~ .XX {4<Z*;H t~.Jy o>Ȃ ;=;> tJ\J<!JaJ!=aYY!"?I=+)a  f_.XXX . jX<#JbJ!KbYY!"?IJ } t .JXBcXX o>< ;=;>  t ~.JXy. XbXbX XuX} JcX  e =\ H >9KXXeKZM ??Lci`YK.J=WK"tJX~XTtJX|r XXy=fp.   =7f  Y<0 <>( rt 0 XK-/X s kbtf* ..JLXr XXy=fp.   X=f  X` r   ]KIY W><7  J ]KIY W>< ^<""]X !   =&J/&;=I uX.6Xfx YX  Ks Q#  .JQ< .< Q<< .<J= IuJ><LH<><<N< < yJZ|  X(JZX |X |X %XXX J < IK< =J yJ<fX  y X  Z|  X(J XT< |X |X %XX  #  y.,X<f tt$XX С| K; T#  *JU<  *< UJ< *JJu<  $tHtpgX@XgXX   JJ   (X?g>/XKXt  |  p  p      J $ L==J @==J@<ۭK oJYYo X#J~ fXJ ~J  p ` XJ> u/y    YXJ + JsJxL X> " <  $ fx }<      ;YI K YX      YI Kc Z2=;J2%<K%; K  {fJ..J<WJ.t5.WEJ>JK>-UJ <J.<J<WJ.X5<WE<>JK>-UJ <J.<J<WJ.X5<WE<>JK>-UJ <.5fJXW<>XWJ><UJ .<5X> J 0, r<  KW K KrY  J r<  r<<  r J<   J9{ $ YM YJ Zh LnXf .J  9  J0,< #K    n % RXn t vJtfv:>Jh<X+(  .  J  q J q<< s  r J~ K  X>  ~f ~Z  y"    X<Y  X@@<oXX J < <{~t #tNE K Yk +/ztJtJX%=XUJX   J 0,< t<  K  tY  J t<  tX<  ;K k t f(~   XJ8t~ X Jn J     rJ ~~t<  sX(  |ft | J~. ~~!XKh|   J  g".0Y. Y0$X %<< =l ? z X#vJV?KXsX.}w( <~+==J@<k >X{J rJ ~~t<  sX,X ~~yyJL>$H.     7Jxy"v$H ymE  < { < {f ymE'uJt"tK$4<JX}yyJL>$H. < 1    $X'~ < : |t>><" {J  f<v ++(| Xt mJ<m< J=!!~.  JIK X~n JX   J HJn JX[.{K/XJ~f< X 9;X JWKM  U?\ r: =u  jJf yI g< y J< E E " XyI g< yI g< y J<t>*< Y> jxJ y<< }y J<.  - (IKy f :>X JMJ~@ r>u  j<f  M ?Zd;:Jb{_4_zJ g   yX{yJhttlvXK ~xK=gX@XgX . J,,,JKJxD$` fZ==J! q X.XX zXXXK zXXm JJvm u b Jb. <bf tbf  s XXXX {Xf  Uzff~X / afX X +( .X { I/ ;g sg  X  | W{/z.f2|mEt  <|f< [K  J v = =I[ \   f fXX lu  hJJ >  XJ3"|t{mEJ  <<  Z.  Z|<$}J< |} K <.}fJ}<< J|~mE<J  <<< zj~mEt  <<< | ~<~<EJw  <}JXY ffr~mEt  <X |$ J'J.<7{'J<g=$4<   }<"~X"X L~X~J}X<K~ K <<~fJ~Jtz.Bf7}mEt  <<ZJ  LZY<LJ<> s[< < yJZ|   (tZ< |(X W-V--V++p $ &3$q"+ ,v $ &3$q" ,,v $ &3$u",?,v $ &3$s"--v $ &3$q"++up $ &3$q8+ ,uv $ &3$q8 ,,uv $ &3$u8,?,sv $ &3$s8--sv $ &3$q8X,-V>--V+,@! $ &3$u",?,@! $ &3$s",,T]-d-T,,S]-j-S,,Q,,t]-d-Q,,Tj-q-T,,Sj-w-S,,Q,,tj-q-Q,,TS-Z-T,,SS-]-S,,Q,,tS-Z-Q>-S-Tw-~-T>-S-Sw--SC-K-QK-N-tN-S-qw-~-Q,-0++Up**U*S+SS+W+UW++Sp**T*+T++T++U++Tt*v*u**P*+VW++V++V**p $ &3$q"**v $ &3$q"**v $ &3$u"**v $ &3$s"++v $ &3$q"**up $ &3$q8**uv $ &3$q8**uv $ &3$u8**sv $ &3$s8++sv $ &3$q8+T+V++V**@! $ &3$u"**@! $ &3$s"+++T++T+++S++S +(+Q(+++t++QF+W+0t**UUSUxS)T)UlTlwUwxTuslws47P7VFVlxV7;p $ &3$r";v $ &3$r"lwv $ &3$r"7;sp $ &3$r8;sv $ &3$r8lwsv $ &3$r8VFlVN@! $ &3$s"0U4S`U+S+/r}/S`T~T~TUTdfuP,V/Vp $ &3$q"v $ &3$q"v $ &3$u"v $ &3$s"~v $ &3$q"PrfyPy}r@! $ &3$u"@! $ &3$p"@! $ &3$s" /1dU`vvUvzSzzUz}S`vvTvo}To}y}Ty}}}U}}}Tvv]v|x}v $ &3$xx_xy}v $ &3$yz_z-zP-zz_zzUz#{_#{{}v $ &3${9|_9||}v $ &3$||P|}_}a}}v $ &3$a}o}_o}~}]~}}_vvPv$w\$w7wxy\o}~}\vvp $ &3$q"vw| $ &3$q"ww| $ &3$s"o}}}| $ &3$q"v|xVxyV#{{V9||V}a}Vo}~}V!wx^yz^zo}^~}}^3ww\#{E{\]{{\9||\}a}\vv@! $ &3$u"vv@! $ &3$p"vw@! $ &3$s"w\x\wxUxxt#-x8x-x9x\-x1xtu"1x8xUzzPz!zX||X||MzQzQxx^yy^zz^{#{^{9|^||^xxTyCyTCyPyPPyTyTTyhyPhyyTyyPyyTyyPyyTzzT{#{T{{P{{t{+|P+|9|T||Tg||P||p||P}}P}a}Rg|{|T{||Q}"}T"},}P,}a}QvvUssUshtShtrtUrttSscsTcstTttTttUttT(s\s_\ssv $ &3$ttVtS<S<TS<u>Tu>>T>>U>>T<L<_L<5=v $ &3$D=D=_D=L=L=d=_d=e=Ue=K>v $ &3$f>k>Pk>u>v $ &3$u>>_1<5<Q5<^=\e=>\5<9<q $ &3$p"9<<| $ &3$p"u>>| $ &3$p"@<5=Ve=K>Vk>>V<b=^=u>^L<q< } $ &3$p"q<< q $ &3$p"<< } $ &3$p"<*=]==] >6>]L<<@! $ &3$u"<<@! $ &3$s"->6>P>>Tk>r>T>>Tk>r>T>>Sk>u>S>>Q>>tk>r>Q<1<U&'U''S''U'l(S&&T&](T](g(Tg(k(Uk(l(T&&_&'v $ &3$''_''''T',(v $ &3$F(K(PK(](v $ &3$](l(_&&Q&']'l(]&&q $ &3$p"&('} $ &3$p"](k(} $ &3$p"&'V',(VK(l(VA''^(](^U''\( (\'(](\&'@! $ &3$u"''@! $ &3$q"'('@! $ &3$s"Y'p'TK(W(TY'p'TK(W(TY'p'SK(](Sa'm'Qm'p'tK(W(Q&&Up((U()S))U)d*Sp((T(U*TU*_*T_*c*Uc*d*T((]()}v $ &3$))]))}))P)$*}v $ &3$>*C*PC*U*}v $ &3$U*d*]((Q()\)d*\((q $ &3$p"()| $ &3$p"U*c*| $ &3$p"()V)$*VC*d*V!))_)U*_5))^)*^*U*^((@! $ &3$u"((@! $ &3$q"()@! $ &3$s"9)P)TC*O*T9)P)TC*O*T9)P)SC*U*SA)M)QM)P)tC*O*Q((UUSUSTTTTTUTuYVVPYVVVp $ &3$q"v $ &3$q"v $ &3$q"v $ &3$q"up $ &3$q8uv $ &3$q8sv $ &3$q8sv $ &3$q8Pc r#E]]]Pcr?@! $ &3$s"]QQ1U U?S?IUIS sTsTTUT<l_lv $ &3$''_'//ITIv $ &3$P_v $ &3$QUQUD]I]UYq $ &3$p"Y} $ &3$p"} $ &3$p"`VIVVF^^^ PPl@! $ &3$u"@! $ &3$q"@! $ &3$s"<QU [ U[  S U S [ T[ F TF T TT x Tx T U T  u Va x V' * P* V a Vx V* . p $ &3$q". [ v $ &3$q"F T v $ &3$q"x v $ &3$q"* . up $ &3$q8. [ uv $ &3$q8F T sv $ &3$q8x sv $ &3$q8 r#[ ] F ]a x ] r[ @! $ &3$s" Qa r Q 1 ' U  U S U " S T  T  T ! U! " T _ w v $ &3$ _  T v $ &3$  P " _ P ] " ] p $ &3$q" ! } $ &3$q"! ( } $ &3$s" ! } $ &3$q" w V V " V= ^  ^  @! $ &3$u"  @! $ &3$p" ( @! $ &3$s" UUSUSTTTTTUTuMuVVPMVVVp $ &3$q"v $ &3$q"v $ &3$q"v $ &3$q"up $ &3$q8uv $ &3$q8sv $ &3$q8sv $ &3$q8DRrRuQQ]]]@DrDRR/@! $ &3$s"MP r PuQQy1U0 U 9 S9 C UC S0 T T T U TL | _|  v $ &3$! ! _! ) ) C TC v $ &3$ P _a e Pe > ]C ]e i p $ &3$q"i } $ &3$q" } $ &3$s" } $ &3$q"p  VC V V @ ^~ ^| @! $ &3$u" @! $ &3$p" @! $ &3$s"L a UkUkSUSkTkVTVdTdTTUTuVqV7:P:VqVV:>p $ &3$q">kv $ &3$q"Vdv $ &3$q"v $ &3$q":>up $ &3$q8>kuv $ &3$q8Vdsv $ &3$q8sv $ &3$q8rQqQk]V]q]rRk@! $ &3$s" r QqQ 17UUSUbSTSTS]T]aUabT]}v $ &3$]}P2}v $ &3$NSPSb]Q\~b\q $ &3$p"8| $ &3$p"Sa| $ &3$p"V2VSbVQ_S_~P@! $ &3$u""@! $ &3$q""8@! $ &3$s"U U Sr}S TBUB T TUT \|xPp|x P \ PVV Vp $ &3$q".v $ &3$q".jv $ &3$s" v $ &3$q"|qp $ &3$8.|qv $ &3$8.j|v $ &3$s8 |qv $ &3$8t#(Bu#(BPp(PjT#( t#(u#(tBuBPPPjT tuV Vj@! $ &3$s" S 4U4NSNXUXS vTvUTTUT?o]o'}v $ &3$66]6>}>XPX}v $ &3$P]TXQXQ\QU~X\X\q $ &3$p"\| $ &3$p"| $ &3$p"c'VXVVcvt#(vu#(q(T#(t#(u#(cvtvuQTtuXXXQo@! $ &3$s"?TSpUSUSpTUTUTUTV\|\PVPQQ s##Qp $ &3$r"q $ &3$r"q $ &3$r"q $ &3$s"s# $ &3$s"q $ &3$r"vrp $ &3$8vrq $ &3$8vrq $ &3$8vq $ &3$s8vs# $ &3$s8vrq $ &3$8___]]] P^^^ >P 'P '0 'PS4U45UT5TuP4T4T4U45U#Q#&t&'q'4QUUSUUTTuTP8PTU`hhUhtkStkkUkoSooUooUopSppUppS`hhTh'j_'jAjTAjWj_WjZjTZjk_ko_ooQoo_ooPoo_ooTooTop_`hhQhk]kkQk2n]2nnQnHo]HoooQooo]ooQooQop]`hhRh'j\'jHjRHjk\kkRk;l\;llRl"n\"nnRnHo\HoooRooo\ooRooRop\`hhXh'j^'jHjXHjj^jlXll^llXl4m^4mmXmn^n$oX$o5o^5ooXoo^ooXooXop^ppXjjPjk^kkPkk^k)l^)l4l0ll04mYm^n$o^5oHo^pp0h'jVwjkVkHlVl"nVnHoVoooVopVhi0'jj0mn0nn3$o5o0op0hi0'jj0mn0nnR$o5o0oo0ooRop0mmRmn}ooRopRHlOlPOllV"nnVHoooVll_llQllSnn_nnQnnSi'j~jj~l4m~ij~jj~ll~.kMk^Ymm^ooo^.kEkSkk~k l~4mYm~n$o~kk~k l~4mBm~nn~l4l^ll^5oHo^l4lSllS5oHoSl%lQ%l)l~5oBoQYmtm^ooo^YmtmSoooSdmpmQpmtm~oozoQFGUGVI\VIxIUxII\IIUIIUI3J\3JJUJJ\J=KU=KkK\kKKUKK\KKUKK\KGLUGLkL\kLLULP\PqQUqQ ]\ ]]U]]\]]U]o^\o^^U^^\^^U^}`\}``U`b\bbUbXc\XcjcUjcg\ggUgSh\FFTFVI_VItITtII_IITIITI3J_3JJTJJ_JKTKkK_kKKTKK_KKTKK_KCLTCLkL_kLLTLM_MMUM ]_ ]]T]]_]]T]o^_o^^T^^_^^T^,__,_C_UC_}`_}``T`Sh_FFQFHVH#HS#HVI]VIIVIIQIkLVkLLQLMVMMQM:NV:NOQOQVQ|RQ|RRVRR]RSQSSVS6TQ6TUVUVQVW]WWQW[][]V]"]Q"]Q]]Q]]V]]]]C_VC__]_`V`a]aaQab]bbVbbQbXc]XcjcVjcc]ccVccQcc]ceQee]eeQeeVe9f]9f|fQ|ffVff]f%gQ%gwg]wggVggQgg]gShQ3LkL]PP]^,_]FHVH#HS#HVI]OOVRR]RSQVW]WWQW[]\ ]V"]Q]]]]]V^o^V^^VC__]`a]ab]bbQbXc]jcc]ccVcc]AdyeQee]e9f]|ffVff]fgQ%gwg]ggQgg]hJhQFFTFVI_OO_RS_V[_\ ]_"]Q]_]]_V^o^_^^_C___`a_ab_bXc_jcc_cc_cc_Adye_ee_e9f_|fg_%gwg_gg_gg_hJh_FGUGVI\OO\RS\V[\\ ]\"]Q]\]]\V^o^\^^\C__\`a\ab\bXc\jcc\cc\cc\Adye\ee\e9f\|fg\%gwg\gg\gg\hJh\RRPRSSAdyeSffSffPfgSggShJhS G GP GHwHH~HVIwOOwRSwV+Ww+WOW~OWXwXX~XYwYY~YZwZ=Z~=Z[w\ ]w"]Q]w]]wV^o^w^^wC__w`awa?a~?aawa0bw0bRb~RbbwbXcwjccwccwccwAddwdd~dyeweewe9fw|fgw%g>gw>gWg~WgwgwggwggwhJhw GG0GGPGGOO0\ ]0V^o^0^^0cc|ff0GGPGG]cc] G Hs@=$ HHu@=$OOs@=$\ ]s@=$V^o^s@=$^^s@=$ccs@=$|ffs@=$ G Hs@<$ HHu@<$OOs@<$\ ]s@<$V^o^s@<$^^s@<$ccs@<$|ffs@<$ G Hs@C$ HHu@C$OOs@C$\ ]s@C$V^o^s@C$^^s@C$ccs@C$|ffs@C$ G Hs@F$ HHu@F$OOs@F$\ ]s@F$V^o^s@F$^^s@F$ccs@F$|ffs@F$  G Hs@G$ HHu@G$#HVIOOs@G$RRVWW[\ ]s@G$"]Q]]]V^o^s@G$^^s@G$C__`aaa0abbXcjccccs@G$cceee9f|ffs@G$ff%gbgbgwg0gg G#H"#HVIVOO"RRVVWVW[V\ ]""]Q]V]]VV^o^"^^"C__V`aVabVbXcVjccVcc"ccVeeVe9fV|ff"ffV%gwgVggV G GP GHwHH~HVIwOOwRSwV+Ww+WOW~OWXwXX~XYwYY~YZwZ=Z~=Z[w\ ]w"]Q]w]]wV^o^w^^wC__w`awa?a~?aawa0bw0bRb~RbbwbXcwjccwccwccwAddwdd~dyeweewe9fw|fgw%g>gw>gWg~WgwgwggwggwhJhwG`G_\ ]_V^o^_NG`GP\\P\\QV^o^PGGPGGccGG]cc]GG\cc\GGQGG}ccQSHHQV WQXXQv__0``QjWWPY8ZPaaPeeP%g3gPSHVI0VHW0HWLWPLWTW^bWfWQfWW^X>Y0YYY0YYPYYYYZTZa[0q[[0"]Q]0]]0`a0aa^ bb0cXc0jc}c0e9f0ff0gg0SHH0HVI[V W0 W&W[&WTWX Y0 Y.Y^YYTZ^TZ[[[a[^q[[^"]Q][]]^`Ba0Basa[ bVb0Vbb^bc^cXc[jc}c^ee^ee[e4f4f9fPff^ffP%gwg^gg0SHWHWHVI^VW^XX^TZ[^"]Q]^`sa^cXc^e9f^WHHRV WRXXR``RHHXY~xHVIS WWSTZ[S"]Q]S`saSaaScXcSe9fSHHPHVI~ WW~TZ[~"]Q]~``P`sa~aa~cXc~e9f~IVI_TZZ_%IHIQTZuZQuZwZp;aiaPeePBaLa[eePe9feePe9fHH_ZZRZZQZZQ"]<]QccQccRXXPX.YSYYTZS[a[Sq[[S]]S bbSbcSjc}cSeeSffS%gwgS Y.Y_[a[_]]_jc}c_Y.Y[[]]lYY_q[[_zYYRq[[R=ZTZSbcS=ZTZ\bc\@ZLZQLZOZsOZTZqbbQVb`b^ffPffffPffRR_ XUX_a[q[_``_RRP!XGXP``P``QWW_UXX_>YYY_a b_WWUXoX>YYY+SsSVsS}Sv}SSVSSvp $ &3$SSVffvxfgVggVggPggVSSPFSgSPggPggPSSSWWwbbPbbwWW\bb\WWQWWw#WWqbbQAdd0ddPdye]hJh]fdjdPjdye^hJh^ddVdeveOeVOeUevp $ &3$XeyeVhEhVEhJhP+eUePddP"h)hP*h/hPFeOeSyII_yII\I3JVLMVOPV|RRV6TFTV6\\VQ]]V]V^V^^VccVIITI3J_LM_OP_|RR_6TFT_6\\_Q]]_]V^_^^_cc_IIUI3J\LM\OP\|RR\6TFT\6\\\Q]]\]V^\^^\cc\IIPI3JSLMSOPS|RRS6TFTS6\\SQ]]S]V^S^^SccSI3J0LL0LLPLMwOPw|RRw6\\0Q]]w]V^w^^0ccwLLPLL]cc]IIPI3JSLMSOPS|RRS6TFTS6\\SQ]]S]V^S^^SccSI3J_6\\_ J%JQ6\]\Q]\_\pLLPLLwccwLL]cc]LL\cc\LLQLL}ccQ:MLMPM'M0'M+MP+MM]OP]Q]]]]V^]MMwM_O P_PP_Q]]_hMqMRqMwMQO PQPPQQ]p]Qp]r]R"PhP_PP_]V^_6P:PR:PJPPXPhPP]^P^^RMMS6TATSMM\6TAT\MMQMMs6T@TQhJJTJJ_MM_MMUMO_S6T_[6\_^^T,_C_U___aa_yee_ee_g%g_hJJUJJ\MO\S6T\[6\\^^U,_C_\__\aa\yee\ee\g%g\hJJ0MM0MMPM O^ OOsO_O~SSPS6T^[6\0^^0,_C_^__^aa^yee^ee^g%g^hJJ0MM0MNPNO]O_OSS0S6T][6\0^^0,_C_0__]aa]yee]ee]g%g]JJTJJ_[6\_JJP[[P[[s:NOVyeeVeeVg%gV:N>NT>NOwyeeweewg%gwNO0OVO]VO_OVLNPNpPNO~#yee~#ee~#g%g~#QNqNPyeePOOSwNNPNO~ee~eePee~g%g~UNNSNNsNNPNO~O3O }3$s"#3O?O }3$s"#?OVO }3$s"#VO_O v3$s"#OOSOOPOO|yeeSeeSeePeeSg%gSNNPggP g%gPOO^gg^OO\gg\OOQOO~ggQOOSOOSST^^^0aa^ST\^^Uaa\TTQTT~aaQT6T]aa]T6T\aa\T+TQ+T1T}1T6TqaaQJkKVPQVQ|RQFTUVUVQ]]V__V_`VbbVbbQXcjcVccQcAdQeeV9f|fQwggVggQghQJKTKkK_P|R_FTV_]]T]]_____}`_}``Tbb_Xcjc_cc_cAd_ee_9f|f_wgg_gg_gh_J=KU=KkK\PqQUqQ|R\FTV\]]U__\_}`\}``UbbUbb\XcjcUcc\cAd\ee\9f|f\wgg\gg\gh\JkK0PQ0QQ1aQkR1FTeV0]]0_`0bb1Xcjc0cc1dAd1ee09f|f0wgg0gg0gh0JJSJJPJkKSPRSFTTSTTSTTSTUS U US%UVS]]S__S_`S``SbbSXcacS1dAdSeeSwggShhS-KkK]FT\U]\UU}s-)_}`]ee}s-)wgg]8USUPwg~gPUUPUeVV9f|fVggVghVUUVhhVUU\hh\UUQUUvhhQQQPQkRVbbVccVdAdVQQV1dAdVQQ\1dAd\QQQQQv1d;dQqVxVPxVVQVVSxVVSxVVSKK_KK\WUW]U]hUWTW]T]hTQQQWRW]Q]hQOROWXW]R]hRLXLSwSWPW]X]hX)0)4pq#99pq9>pq#A0AWY]h0UUUb#~b##U##~##U#$~$$U$%~%&U&&~&&U&v&~v&{&U{&&~?T?b#~b##T##~##T#$~$$T$%~%&T&&~&&T&v&~v&{&T{&&~UQUb#~b#j#_j##Q##~##_#$~$$_$%~%&_&&~&&_&v&~v&{&Q{&&~?U0Ua ]a n _n C!]H!m#]#%]%%P%v&]{&&]?U0U!~!@"1@"b#~##~#$~n$s$1s$$~$$~$$1P%%~%%1%%~&&~&+&~+&a&1a&v&~{&&~ ]^^n ^ Q !TH!H!^!!u#!!u@"@"^@"O"vO"T"VT"T"^T"c"vc"h"Vh"h"^h"w"vw"|"V|"|"^|""v""V""^""v""V"+#^+#:#v:#?#V?#?#^?#M#vM#R#VR#R#^##^\$_$p1$v"_$s$vp"s$$^P%h%Qh%h%^%&^a&v&V{&&Q]lQlPQn t Qt w Pw vH!Q!vQ!T!v~@"C"vT"W"vh"k"v|""v""v""v#.#v?#A#vR#b#v##P##Q#$P$ $pB $4$v$+%vh%o%Po%%q %%v%%~& &v &&~U]\]uSusSn S s &!SH!"S"@"s|@"@"S@"K"sK"T"ST"_"s_"h"Sh"s"ss"|"S|""s""S""s"+#S+#6#s6#?#S?#I#sI#m#S##S##s#?$S?$?$sp"?$R$sp"#R$b$sp"s$$S$$s$$S$$s}$%S%C&SC&a&s~a&v&S{&&S P{&&P P ~P%h%~{&&U P qt" q("P%U%PU%\% qt"\%c%q(" R QP%h%Q ##P""P"#~s$$~""P" #v0 $ &s$x$Px$$v0 $ &$$~0 $ &" #Q" #R""p""~" #^s$$^ !!Pa&f&Pf&v&qm!!P!![!@"[$$P$$[%%P%%[%%P%%P%%[&&P&+&[+&O&Pa&v&[!@"[$$P$$[%%P+&O&P!"S"@"s|$$S$$s$$s~%%S+&8&S8&C&sC&\&s$$p<%!$${<%!$$ {6%?!$$ {?!8&O&p6%! !;"[ !!S!"s""s} !"{B%!"!" {<%?!!"0" {6%?!0";" {?!$4$~$,%~$4$r $%r %+%~# $4$Q$+%Q+%,% ~v$4$~$,%~$,%~$%r %+%~# $+%Q+%,% ~v$,%~n S&!H!S%%SU}#  S  \  }u"  UPUVUVPT\T\PQOSOQSCQCpSpQPR]R]T\\UVDOW+WcWDOV+VcV+WcW+VcV+:c:+WcW+VcV1c1WcWVcV}S~V+CV+<T}}U}SUSSUSSU\S\aUatStyUyS U 'S',U,ϥS}}T}@V@lTlnVnTVTSVS[T[VT2V2RTRuVuTVۖTۖ V 6T6SVSgTgVT-V-DTDϥV}}Q}_S_S_Q_ґ__#Q#j_w_ Z_ZfQf6_6SQS,_,sQs_Qϥ_}}R}~\l\m \b\&\&*P*S\S_R_e\1s\\э\Վ@\y\B\ޒ\\ʕ\\\\\D[\t\}~0~x0xPmvPvQbQe0Ës00э0z0ՎQy020ޒ000×QQ060S00D[0t0}0mm0mp /`00Ã0e0PY05F0Ës00эT0z0y020ޒ0000 00#0j0iܞ0 #0Zf000ʢ0h00D0,s00}0mm0m 1/`00b1Ã0e0PY05F0Ës00эT0z0Վ@1y0B120ޒ00ʕ100×1 001#0j0iܞ0 #0Zf000ʢ0h00D0,s00~~TTэTyT(P(@xËϋPϋ$xzxt T$X%6PR\P-0dm1ȅ0э0Tz00020͓ؓ1ʕ00ݗ0H0010U1UZ0Zi1M0MVUVd~dm~ȅ0P~e~s@~э0Tz0Վ~@y~0020ޒ~͓0ʕ00ݗ0ݗ~ H~H0Θ~N~i0,~~R0RVPVddmȅ"0"KPKSSPes@э0Tz0Վ@y0020ޒP͓0ʕ00ݗ0ݗP HH0ΘNi0,m0ȅ0e0s03э0Tz0Վ2@y00020ޒ0͓0ʕ000H0Θ3N1i0,0m ȅ Braэ Tz   2 ͓ aʕ  ݗ H  aU UZaZi m\ȅ(\(d0S\э\Tz\\\2\ޒ0͓\ʕ\\ݗ\ݗ0H\i\͓ؓ^ʝ^7i^ ~h^Tc~~~2~ʕ~~×ݗ~Hx~x^UbPb^TTDPTcPPPpxPssRVQRW^RVUVW~#P#H\$\$^#U#$~@@\0"T0VU0S3S35vՎ7Վ (Ў^ЎՎvΘ6Θ^4N64I^J^Ë^{^v_ov v9IvUXPX~PË~{Pv_ov v9Ivΐ\\ |p) |~) |~)0011Cґ\ʢ\h\\|\&P&]}ӡ]ӡӡPӡڡpxڡP]\\ң]ף]d\\ҠPP&dTTTTsPףޣP\v  F v9I 9IF9IvIh0Ih1Ih ;IhVIhSNPPbPP-@PwPE\\_bPb\ETQTPT\TPpx%P%Ess_o_p\_ov2[\[bPm\PĄ|2$|"ĄքPք|2$|" 5P |2$|" 5 5zQrPRDŽuPDŽRuP R20TʄTلT tr!0.N\`]m"mqTqVmqUqS"VS F^{ {F{^!\GU\"VSE~V~PV~~E~u~SZ~u~QZ~u~qZ~u~qZ~u~q]~u~]u~~u~~Su~~]_T__ ___#Qj_iܞ_ #_ZfQ_6SQ_ʢ_h__[t_,sQQVTVV VV#VjViܞV #VZfVV6SVVʢVhVV[tV,sVVSTSS SS#SjSiܞS #SZfSS6SSSʢShSS[tS,sSSӂQQQp(| p | ә| ٙP#~Pj^itPԞמPמܞ~Zf~~6S~~ʢ^h^,s~~\!\!%T%T\t\txTx\ \\\C\C[Qiܞ\ #\Zf\\6S\\ʢ\h\T\[_T_t\,s\\<^^^Ԟܞ^Zf^^6S^^,s^^P#Zf6S,sC]CL}LP}PpTptut}]p $ &3$P#]Zf]]P6S]],s]]P_1||Λ1|#1|Zf_6S_,0P0s__P#_Zf_6S_,0P0s__6PPP(VSښ"ښVښS9^"9^V9^S^})^}V^}S}#[}#V}#SΛ]ΛVΛS#,#V#S]}*]*CPCGpxG[Pʢ]PhlPls]֜PPPt\ #\tS #S] #]ɂ\ɂVɂSԂP0 0\ \V VS St\txTx\ \\j\iܞ\ #\Zf\\6S\\ʢ\h\[_T_t\,s\\S S#SjSiܞS #SZfSS6SSSʢShS[tS,sSSQ Qq qq qq q^ ^ _P]_]\5F_B_\ʕ_\#\ܞ\f\T\T\swTw\ϥ\ VPV5FVBVVʕVV#VܞVfVVsVϥV SPS5FSBSSʕSS#SܞSfSSsSϥSeQ=Q=pQ#-Qܞp| frpQ /0 /4 /  /V /S\VSP05 VS00ܞ0f011ܞ1f1\\ܞ\f\VVܞVfVSSܞSfS\\#\ܞ\f\ϥ\$SS$TT$tt$tt$tt$RR04 VSȓ͓0ȓ͓5ȓ͓ ȓ͓Vȓ͓S,@",@V,@S ;" ;V ;S;@0;@4;@ ;@V;@Sȓ"ȓVȓS1#Z110#Z00]#Z]]V#ZVVS#ZSS]#Z]]S#ZSSRΟRrΟrrΟrrΟrQ}Ο}ߔ"#Z""ߔV#ZVVߔS#ZSSߔ11ߔVVߔSSP\'>0'>4'> '>V'>S>">V>S>1>V>S`dPd\#?0#?5#? #?V#?S>?U? ?] ?4?U4?l?]l?q?Uq??U? @] @@U@@]@AUA0A]0A4AU4AcA]cAnAUnAzE]zEEUEE]EEUEF]FFUF}F]}FFUFF]>>T>g?Sg?q?Tq?FS>>Q>4?V4?q?Qq??V? @Q @@V@@Q@0AV0A4AT4AAVAAQAAVA:BQ:BGBVGBBQBRCVRCDQDCEVCEzEQzEEVEETEEVEFQFFTF}FV}FFTFFV>>R>4?\4?q?Rq??\? @R @A\AARARC\RCDRDCE\CEzERzEE\EFRFF\>4?0q?t@0t@@_@A0AB_BB0BRC_RCC0CD\DD0DCE_CEXE\XEuE0zEF0F}F_}FF0>?0? ?P ?4?0q??0??P? @\ @$@0$@E@PE@@^@{A0{AA^AA\AAPARC^RC[CP[CC\DD\DCE^XEuE\zEE0EF\FF0F}F^}FF0>>Q>?r ?4?Qq??Q @@Q@ @r @ AQcArAQzEEQ??P? @VAAVRCDVCEuEVEFV??V? @VAAV? @]AA]?@Q@@v@ @qAAQCC"CCSCC]CC"CCSCC]CDVCEXEVCD]CEXE]CCQCCvCDqCEREQ4?N?04?N?44?N? 4?N?S4?N?]@@"AB"@@SABS@@]AB]@@1:BB1@@S:BBS@@]:BB]PBBV@@"A:B"@@SA:BS@@]A:B]@@1A:B1@@SA:BS@@]A:B]A:BVBB0BB4BB BBSBB]BB^D(D^BB]D(D]BBQBB~BBqD"DQE3E0E3E3E3E E3ESE3E]F7F0F7F3F7F F7FSF7F]7FQF07FQF47FQF 7FQFS7FQF]aF}F0aF}F4aF}F aF}FSaF}F]Х<U<cVcgUgGVGTUTVUVIUIVU?V?CUCVUVUVUVUiVimUmVUUVUOVOSUSVUϸVϸӸUӸVХ<T<STխSխThShTS5T5STS@T@USUiTiSTTySyTSϸTϸSХ"Q"c]cgTgG]GTTTc]cQ}]}Q]z]TЭ]ЭQ5]5z Q lzl]Q]SzS?]?CTC]T]Q]z]Q]T]Ti]imTm]QQ]TO]OSTSt]tQT]ϸQϸӸTӸ]QХ<R<c^}^^zPIRI\5^5z lzl^\^SzS ^ \^\ܴRܴE^E\z^ \ ^5\@^@U\U^RR^\<0<jwwөzөwzw0w w0 w 0w0w 0 w500w0 P G_ȧPȧ\n_nzPzr_rP___5\5C_S_S_P_ ___ _5_P_ƴP8x x p Tp'8X9JPĶζPm|P|~$/P/~W[t[qTڦ0 \ | | G\\rԪ\||\S \\\txPxz0\Gzzrݪzݪ\z5\ l\S\S zz\ztʦ{ʦڦPڦGzzrzzPzPz{5z lz zzzzt0Gzzrzz05z lz zzzz¦0EzEGPzPrzz0zS zzzP#'P'gz"^^BP^s^߬^5?^^"ū]]EPPs]5]S]]PP ū__5_S__ B8Cs8C B#Cs#C BVsV.>QKPQ$E]Ps]SS lSVV lVūS lSūV lVū̫ ss ̫R] DRDl]ҫ] l]ҫS lSҫV lVl^] sūS߬S5SSSSūV߬V5VSVV,5,S5SV5V151S5SV5VH^SSSVSVSSSVSV:S:SSSVSV1S1SSSVSVPS^߬SS߬VV߬SS߬VV׬  ׬SS׬VVѬ11ѬSSѬVV^ĪϪSSĪϪVVSV:SV\$/\\ \.P.èz$/P/OzrzְCzz zѩP Pn_/_O}__ _$K/KO}K$K/KO}K$V/VO}V!Q*/Q$XOiXi}zSSlְSVVlְVèSlְSèVlְVę̀ ss ̨\lְ\Ҩ\lְ\ҨSlְSҨVlְV{Rz\ swèS/OSrSְCSSwèV/OVrVְCVVw,r,wSrSwVrVw1r1wSrSwVrV r\èSSèVVèSSèVV  SSVV11SSVV\/OSְCS/OVְCV/OSְCS/OVְCV/O:ְC:/OSְCS/OVְCV/A1ְC1/ASְCS/AVְCVPC\<Y{C{<YSCS<YVCV<M1C1<MSCS<MVCVX\cSTϯ SS5SScVUϯ VV5VVٯ S5Sٯ V5Vٯޯs |ޯ \5\\5\S5SV5V@]\ sj}}}j}SSj}VVjw11jwSSjwVV\ŧЧS5SŧЧV5V5S5V5:5S5V}SS}VV S5S V5V :5: S5S V5V)U)PVPUU-T-OSOUT.TP@WUWjVj U@[T[\T \_cPcSU SUUTTPutQVR9*9U*99V99U9M:VM:R:UR:;V949T499S99T9L:SL:R:TR:;S949Q49o9\o9R:QR:l:Ql::\:;Q949R49R:RR::R::L:;R9E9"R::"949T49E9SR::S9*9U*9E9VR::V9491R::1949TR::S9*9U*949VR::Vi::]^9u9":*;"^9u9S:*;S^9u9V:*;V^9o91:*;1^9o9S:*;S^9o9V:*;V:*;\{99:9.::{99S9.:S{99V9.:V{9919.:1{99S9.:S{99V9.:V9.:\99S;;S99V;;V99 ;; 99S;;S99V;;V991;;199S;;S99V;;V;;\.:L:SL:R:T*;;S.:M:VM:R:U*;;V.:G: *;; .:G:S*;;S.:G:V*;;V.:A:1*;;1.:A:S*;;S.:A:V*;;V@;;\UVUVU[V[_U_VUVUVUKVKOUOVUVUVUVUVUV!U!MVT_TM_QMR~w~QwQ S JwJSw!S!wSw%S%-w-2R2RwRlSlwSowoSS3HSU0U]] 0 J]J0]ɿ0ɿԿsW]W202R]Rq000>S>DsDgS S SxSSWSSPg\\ ż\x\\\R\\\K_\aC\q\M\]wQwx%2xqTqXPPwPwJWPWwtT^ƹPƹg^ ^ ^x^^W^R^ǹϹPӹ޹_Ǻ_x_ӹ޹VǺVxVк_x_кVxV  RFRF\RFRF\_x_VxVFZF\R M_ _ |__W_MV V |VVWV, |,_ |_V |V1 |1_ |_V |V KXK`)M_W_)MVWV)M_W_)MVWV)D W )D_W_)DVWV):1W1):_W_):VWV&X&; __ VV __ VV :: __ VV11__VVþǾPǾRк0к4к к_кVUl[J[Ul_J_UlVJVUf1J1Uf_J_UfVJVJSu__2_uVV2V_2_V2V:2:_2_V2V121_2_V2VBSMb_|_R_MbV|VRV|_R_|VRV|:R:|_R_|VRV|1R1|_R_|VRV/Sgg___ggVVV__VV sռSSżSSż__żVV\żҼSżҼ żѼgz]x]gz_x_gzVxVgt1x1gt_x_gtVxVS--U-/\//U/3\3 4U 4 9\--T-/S//T/ 9S--Q-/V//V//v//V//v/0V0,0v,0Q0VQ0d0vd00V00v0 9V--R34R4L4R--X---3X3$4X$4L4L4 9X-/_//QR"/ 9_-0.]B.u.]..]..].e/]//]//]/0]10I0]i00]00]L1`1]`11v2$2]$2K2vt22]22vL4_4]_44v44]44v55]5L5vt55]55v55]56v:6b6vz66]66v0 1] 1"1}11]11Q23]33P:33]33Q33]l6u6Pu6z6]6s8]s8w8Q88]88R88]89P99]R11:6l6R11p :6?6p ?6b6 s R1~1Q~11v:6b6Qb6l6vR11V:6l6VR11\:6l6\:6l6:6?6p ?6b6 s :6b6Qb6l6v:6l6V:6l6\l6l6P01<7~7<01S7~7S01\7~7\7(7P(7P7RP7^71>1 p1=1s11]11QW8s8]s8w8Q88]88R11P1 2p 2 2QW8`8P`8l8pl88p88Q88P11}6%!11q6%!`8l8}<%!l8s8 }6%?!s8w8 q6%?!88]88R88P88p88p88p88Q88}B%!88 }<%?!88 }6%?!88 r6%?!224~77422S~77S22\~77\77P77R77:3K367W86:3K3S7W8S:3K3\7W8\7*8R*8;8.*.1.e/1.*.S.e/S.*.\.e/\ //P/3/R3/A/h.u.22t22h.u.S2t2Sh.u.\2t2\$2(2P(2t2]..2t222..St22S..\t22\22P22]..2z662..Sz66S..\z66\66P66]//25t52//S5t5S//\5t5\"5t5]//2L442//SL44S//\L44\_4c4Pc44]/02t552/0St55S/0\t55\55P55]10I025:6210I0S5:6S10I0\5:6\55P5:6]i002452i00S45Si00\45\44P45]--R-3R34R4 9R--T-/S//T/ 9S--U-/\//U/3\3 4U 4 9\3L4^pUUU UpTTT TRRt Pp{U{|U||U|uUU#p ap|0|1USU}STVT}V@ Cn @SCnS\^Cn^ipPp\Cn\m]Cn] C USCS^C^P\C\]C],Q:EQF_Q_ap:U:dUTbSbdT"Q"dQcVUUTTQtqQ >U>oVopU3nSPq("u("Pq("Rq("u#("Xu#("YsQuq|QU=V=>U>GUGaVabU7S7V7R7r7r7r2Q27spUwSwUSUSpT^T^T^pQ]P]Q]p \ )V)1v1{VVvxVP\P]kPQQPQM\PUU&U&/UQQQ/QT"T"&Q tq" P&PUU&U&/U0TUT^UU^0TTTSTS0TQT]QQ]0TRTVRRV0TXT\XX\n]]n\\nVVnSSn^^ EPV ]5ddhlrz~*@ Y 59<@CJNQl  :`     $ ' A { h { h k s z  E I L P S W [ a |    4 X 8;EI 8<?CFMQTo#*Ip")4N lyDHMu!%(047Q 0xV  > ''319<M'+.n@Hp H"'GXX p b##%%v&{&&"'GL#n$%P%"'GL$4$4$@$%%%,%"'GL%%%,%LX P%h%%%%&{&&LX P%\%_%h% #!H!   !!"#s$$$$& & &&" #s$$$$H!@"$%%%%%&v&!" "@"$$$%%%+&C&K&a&!" "@"&&&&&&&&&''''''`(Y'p'P(`(^'p'P(`((((((((((y)|)))))X*9)P)H*X*>)P)H*X*t*t*x*|******++++F+h++++++++++++++++++X,X,,,,,,,,,,,,,,-@-@-@-@--,,,,]-j-,,,,j-w-,,,,S-]-@-@-@-S-w----3L4-4.=.h//3L49---.0.4.0223:6z669---.R11:6:6?6c6i6l6---.:6:6?6c6i6l6017~711 11"1>11 2W888822~77:3K37W8.*..h/h.u.2t2..t22..z66//5t5//L4400t5580I05:6p004599#9496999B9E9X::99#949X::^9u9:0;^9o9:0;{9990:{9990:9999;;99;;0:0:0:G:0;;0:A:0;;<<< <#<*<.<1<L<*=-=1=8=V=p=x>>>k>x>>>k>x>?????@AAXCCCDHEuEEF?@AA?@AACCCCCDHEXECDHEXE@@@@@BB@@@BB@@A@B@@A@BBBBBD(DEEE3EFGG`IMMOPRSSSSSVWW=Z=Z=Z=Z[\](]X]]]`^p^^^H__`BaBaaaVbVbbbXcjccccccAd7e7eFeFeyeeeeee9f|fg%gwggggghShFGG GG`G\]`^p^.GLGLG`G\]`^p^1G7G\\pG}GGGGGccGGccHH H(H(H`IRRVWW=Z=Z=Z=Z[(]X]]]H__`BaBaaaVbVbbbXcjcccceeeee9fff%gwgggHH H(HSH`IVWX@Y`Y=Z=Z=Z=Z[(]X]]]`BaBaa bVbVbbbXcjc}ceeeee9fff%gwgggHH H(HuH`IWWWWXZ[(]X]` aaBaBasaaacXce9fHH H(HI`IXZZHH H(HI%I%I`IXZZI%IlZZHHaBaBasae9f;a?aBaLaeeeeHHZZZZ(]X]cXcZZZZZZ(]X]cXcZZcXcX@Y`YYY=Z=Z=Z=ZXZ[[]]saa b b#bVbVbbbcjc}ceeeeff%gwggg Y.Y[x[]]jc}cYYY.Y[x[]]jc}cYY[P[lYYx[[qYzYzYYx[[qYzY[[=Z=Z=ZXZbcNbRbVb`bRR XXX``RRXXXXX``XX``WWXXX@Y`Ya bWWWWXXX@Y`Ya bWWhXX$SSSSSSfggg8SbSggWWbbWWbbAd7e7eFeFeyehShd7e7eFeFeyehShdd"h/hI8JLLLMMMPPRR6TFT@\\X]]^`^^^ccI8J@\\I J J8J@\\J JT\\LLLLLLccLLccLLMMPPRRX]]^`^LLMMwMP PPPX]]LL]MfMfMwMP PPPX]]]MfMc]]"PhP^`^+P4P4PhP^`^+P4P ^`^MM6TATMM6TAThJJMOOOOOOOOOSSSSSTT6T[@\^^^^0_H___aayeeeeg%gtJxJJJ[@\JJJJ[@\JJ[@\ NOOOOOOOOOSSyeeeeg%gNNNNg%gOOOOggSSST^^aaSTaaT+T-T6TaaaaT+T-T6TaaaaJpKPQQRFTUUV]^___`bbXcjccccAdee9f|fwgggggh'KpKFTUUeV_`ee9f|fwgggggh%U\Uwgg}UUUeV9f|fggghUUhhUUhhQQQReVVbbcccAdQQ1dAdQQ1dAdLpLPPi0jjjl8miii0jjjl8miil8mkkl l8m`mn$okkkkl l8m`mn$okkn$olll)l8oPo4ll(nnPopo`m`m`mtmpoomnooopKpOpRp]p`pcpppppptqqrpmqmqtqqqqPr`rrpppqqqqrppppppqqqqqr(s,s/s:s>sAs\sssssStttsssssPtPtSttttttuu uuu,uuuuuuvHvvvvvvvvoxuxxxx{zzr}w\x({P{-x-x1x9xxxxxyRzzz{({{@||}a}r}xxyyyyzz{({{@|||g||}a}}~~~hXґ- #**wiܞ #Zf6Sʢh-[t,s~~ґ#**wiܞ #Zf6Sʢh[t,sґ#jwZf6S,s 2ښ9MS^MS^lr}lr}Λ**jʢhʜ- pȋx8D[xXD[pȅhx@X؎@ȏ8ޒ͓ʕ ΘNi,dXhȏ8ؓʕ×H@HRW͆Xh@, (-0͓ؓ UZi$0P8PHʕ#ܞfsϥpv7Hܞf$Ãȅ8PȋXȏhґ-ΘNwʢhQ\mvyɉ8ȏh-ΘNw38-ΘNȐґʢhґšˡʢhšˡƠddhkףƈ!@XHh !,œȓ͓ !)18;!)18;@œȓ#Zߔߔ'><PVYH<MHPVcPx 8p ¦¦ʦϦԦPx 8p ĪϪԪ٪ݪ 8pXԪ٪ݪ 17;>B xԪ٪ݪ xpūp̫ϫҫp8X88XXѬ X cjϯ5ٯ55j}jwŧЧ88ԧ0000xpH ԧ!$0Pԧ0Ppèp̨ϨҨpw00000PxHwxwx00000PH0AHߩ CIr Ķ CI'rĶ g(go5UlPUfPu2222)))):>D Wӹ޹ǺǺǺ)))):>D W))))):>DW):W PbRRRRggżgzgtIQW%2aoIQaomPɿRlDO0h0h0hh00044H00044H EHLPVllsvls%),03:>A\0x+.::KNZZknzz +.::KNZZknzz +.::KNZZknzz +.::KNZZknzz +.::KNZZknzz +.::KNZZknzz +.::KNZZknIIVYzz 8`x 8X ! ! ' . )+9P:!X:!`:!h:!hLX0NMc|6n}"~0# vV|PK]fE..XS.pmnu6$PK]{;cSyck.pmnu6$PK][RR i,XS/Boolean.pmnu6$PKh]5c .state-c.rinu[PKh]o +1ParserError/cdesc-ParserError.rinu[PKh]3generator-c.rinu[PKh]wbb5create_id-c.rinu[PKh] O7%5b%5d-c.rinu[PKh]B:create_fast_state-c.rinu[PKh](С;load_file-i.rinu[PKh]MYbb =dump-i.rinu[PKh] 'nn4Dfast_generate-i.rinu[PKh]HZ&&Gload_default_options-c.rinu[PKh]!9b''SJpretty_generate-i.rinu[PKh]wa Nrestore-i.rinu[PKh]`dPload_file%21-i.rinu[PKh] )Rcreate_id%3d-c.rinu[PKh]0..kTJSONError/cdesc-JSONError.rinu[PKh]VJSONError/wrap-c.rinu[PKh]Ҵ+Xdump_default_options-c.rinu[PKh]nӤ4ZCircularDatastructure/cdesc-CircularDatastructure.rinu[PKh]#L! \generate-i.rinu[PKh]`3dd |ccdesc-JSON.rinu[PKh]H GenericObject/json_create-c.rinu[PKh]ml  $GenericObject/json_creatable%3f-c.rinu[PKh]ij  GenericObject/%5b%5d-i.rinu[PKh]eKb''GenericObject/load-c.rinu[PKh]e*SGenericObject/as_json-i.rinu[PKh]wuGenericObject/to_json-i.rinu[PKh].GenericObject/to_hash-i.rinu[PKh]!aGenericObject/from_hash-c.rinu[PKh]TR GenericObject/%5b%5d%3d-i.rinu[PKh] %GenericObject/%7c-i.rinu[PKh]N6gJ$sGenericObject/cdesc-GenericObject.rinu[PKh]yGenericObject/dump-c.rinu[PKh]!GenericObject/json_creatable-c.rinu[PKh]RuD <parser-c.rinu[PKh]O))&CGeneratorError/cdesc-GeneratorError.rinu[PKh]&֩FF iconv-c.rinu[PKh]4~  Bcreate_pretty_state-c.rinu[PKh]3 Q4MissingUnicodeSupport/cdesc-MissingUnicodeSupport.rinu[PKh]7 N load-i.rinu[PKh]tExt/Parser/source-i.rinu[PKh] dYExt/Parser/new-c.rinu[PKh]%%%?Ext/Parser/cdesc-Parser.rinu[PKh]`Ext/Parser/parse-i.rinu[PKh] Ext/cdesc-Ext.rinu[PKh]} _ Ext/Generator/cdesc-Generator.rinu[PKh]V^5"Ext/Generator/State/configure-i.rinu[PKh]qҕ"Ext/Generator/State/indent%3d-i.rinu[PKh]dl@!iExt/Generator/State/space%3d-i.rinu[PKh]W1cExt/Generator/State/buffer_initial_length%3d-i.rinu[PKh]MExt/Generator/State/merge-i.rinu[PKh]H.ZyyExt/Generator/State/depth-i.rinu[PKh]1f%oExt/Generator/State/new-c.rinu[PKh]^JD'%x"Ext/Generator/State/object_nl%3d-i.rinu[PKh])v.s$Ext/Generator/State/buffer_initial_length-i.rinu[PKh]H*y%w&Ext/Generator/State/allow_nan%3f-i.rinu[PKh]ɝk22#u(Ext/Generator/State/from_state-c.rinu[PKh]U]cc*Ext/Generator/State/%5b%5d-i.rinu[PKh]S',Ext/Generator/State/max_nesting%3d-i.rinu[PKh]JS.$.Ext/Generator/State/array_nl%3d-i.rinu[PKh]9 (0Ext/Generator/State/escape_slash%3d-i.rinu[PKh]iOi%2Ext/Generator/State/escape_slash-i.rinu[PKh]_|E 4Ext/Generator/State/to_hash-i.rinu[PKh]C*7Ext/Generator/State/check_circular%3f-i.rinu[PKh]̠%9Ext/Generator/State/space_before-i.rinu[PKh]l ff" ;Ext/Generator/State/%5b%5d%3d-i.rinu[PKh]LUF!<Ext/Generator/State/generate-i.rinu[PKh]! ?Ext/Generator/State/array_nl-i.rinu[PKh] (:"@Ext/Generator/State/object_nl-i.rinu[PKh]r8&BExt/Generator/State/ascii_only%3f-i.rinu[PKh]t۵(DExt/Generator/State/initialize_copy-i.rinu[PKh]9FExt/Generator/State/indent-i.rinu[PKh]HExt/Generator/State/to_h-i.rinu[PKh]ې(JExt/Generator/State/space_before%3d-i.rinu[PKh]~~"LExt/Generator/State/cdesc-State.rinu[PKh]$we!qQExt/Generator/State/depth%3d-i.rinu[PKh]ACSExt/Generator/State/space-i.rinu[PKh]ue(UExt/Generator/State/escape_slash%3f-i.rinu[PKh]1O$WExt/Generator/State/max_nesting-i.rinu[PKh]'<   Yrestore-c.rinu[PKh]*=;; ([parse%21-i.rinu[PKh]-;;"^NestingError/cdesc-NestingError.rinu[PKh]1úpp -aparse-i.rinu[PKl]o hXS/.packlistnu[PKl]TQjXS/XS.sonu7mPKWWT