?  PNG ?%k25u25%fgd5n!?  PNG ?%k25u25%fgd5n!PK     \ o	  o	  
  scanner.pynu [        """JSON token scanner
"""
import re
try:
    from _json import make_scanner as c_make_scanner
except ImportError:
    c_make_scanner = None

__all__ = ['make_scanner']

NUMBER_RE = re.compile(
    r'(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]?\d+)?',
    (re.VERBOSE | re.MULTILINE | re.DOTALL))

def py_make_scanner(context):
    parse_object = context.parse_object
    parse_array = context.parse_array
    parse_string = context.parse_string
    match_number = NUMBER_RE.match
    strict = context.strict
    parse_float = context.parse_float
    parse_int = context.parse_int
    parse_constant = context.parse_constant
    object_hook = context.object_hook
    object_pairs_hook = context.object_pairs_hook
    memo = context.memo

    def _scan_once(string, idx):
        try:
            nextchar = string[idx]
        except IndexError:
            raise StopIteration(idx)

        if nextchar == '"':
            return parse_string(string, idx + 1, strict)
        elif nextchar == '{':
            return parse_object((string, idx + 1), strict,
                _scan_once, object_hook, object_pairs_hook, memo)
        elif nextchar == '[':
            return parse_array((string, idx + 1), _scan_once)
        elif nextchar == 'n' and string[idx:idx + 4] == 'null':
            return None, idx + 4
        elif nextchar == 't' and string[idx:idx + 4] == 'true':
            return True, idx + 4
        elif nextchar == 'f' and string[idx:idx + 5] == 'false':
            return False, idx + 5

        m = match_number(string, idx)
        if m is not None:
            integer, frac, exp = m.groups()
            if frac or exp:
                res = parse_float(integer + (frac or '') + (exp or ''))
            else:
                res = parse_int(integer)
            return res, m.end()
        elif nextchar == 'N' and string[idx:idx + 3] == 'NaN':
            return parse_constant('NaN'), idx + 3
        elif nextchar == 'I' and string[idx:idx + 8] == 'Infinity':
            return parse_constant('Infinity'), idx + 8
        elif nextchar == '-' and string[idx:idx + 9] == '-Infinity':
            return parse_constant('-Infinity'), idx + 9
        else:
            raise StopIteration(idx)

    def scan_once(string, idx):
        try:
            return _scan_once(string, idx)
        finally:
            memo.clear()

    return scan_once

make_scanner = c_make_scanner or py_make_scanner
PK     \탭>  >  
  encoder.pynu [        """Implementation of JSONEncoder
"""
import re

try:
    from _json import encode_basestring_ascii as c_encode_basestring_ascii
except ImportError:
    c_encode_basestring_ascii = None
try:
    from _json import encode_basestring as c_encode_basestring
except ImportError:
    c_encode_basestring = None
try:
    from _json import make_encoder as c_make_encoder
except ImportError:
    c_make_encoder = None

ESCAPE = re.compile(r'[\x00-\x1f\\"\b\f\n\r\t]')
ESCAPE_ASCII = re.compile(r'([\\"]|[^\ -~])')
HAS_UTF8 = re.compile(b'[\x80-\xff]')
ESCAPE_DCT = {
    '\\': '\\\\',
    '"': '\\"',
    '\b': '\\b',
    '\f': '\\f',
    '\n': '\\n',
    '\r': '\\r',
    '\t': '\\t',
}
for i in range(0x20):
    ESCAPE_DCT.setdefault(chr(i), '\\u{0:04x}'.format(i))
    #ESCAPE_DCT.setdefault(chr(i), '\\u%04x' % (i,))

INFINITY = float('inf')

def py_encode_basestring(s):
    """Return a JSON representation of a Python string

    """
    def replace(match):
        return ESCAPE_DCT[match.group(0)]
    return '"' + ESCAPE.sub(replace, s) + '"'


encode_basestring = (c_encode_basestring or py_encode_basestring)


def py_encode_basestring_ascii(s):
    """Return an ASCII-only JSON representation of a Python string

    """
    def replace(match):
        s = match.group(0)
        try:
            return ESCAPE_DCT[s]
        except KeyError:
            n = ord(s)
            if n < 0x10000:
                return '\\u{0:04x}'.format(n)
                #return '\\u%04x' % (n,)
            else:
                # surrogate pair
                n -= 0x10000
                s1 = 0xd800 | ((n >> 10) & 0x3ff)
                s2 = 0xdc00 | (n & 0x3ff)
                return '\\u{0:04x}\\u{1:04x}'.format(s1, s2)
    return '"' + ESCAPE_ASCII.sub(replace, s) + '"'


encode_basestring_ascii = (
    c_encode_basestring_ascii or py_encode_basestring_ascii)

class JSONEncoder(object):
    """Extensible JSON <http://json.org> encoder for Python data structures.

    Supports the following objects and types by default:

    +-------------------+---------------+
    | Python            | JSON          |
    +===================+===============+
    | dict              | object        |
    +-------------------+---------------+
    | list, tuple       | array         |
    +-------------------+---------------+
    | str               | string        |
    +-------------------+---------------+
    | int, float        | number        |
    +-------------------+---------------+
    | True              | true          |
    +-------------------+---------------+
    | False             | false         |
    +-------------------+---------------+
    | None              | null          |
    +-------------------+---------------+

    To extend this to recognize other objects, subclass and implement a
    ``.default()`` method with another method that returns a serializable
    object for ``o`` if possible, otherwise it should call the superclass
    implementation (to raise ``TypeError``).

    """
    item_separator = ', '
    key_separator = ': '
    def __init__(self, *, skipkeys=False, ensure_ascii=True,
            check_circular=True, allow_nan=True, sort_keys=False,
            indent=None, separators=None, default=None):
        """Constructor for JSONEncoder, with sensible defaults.

        If skipkeys is false, then it is a TypeError to attempt
        encoding of keys that are not str, int, float or None.  If
        skipkeys is True, such items are simply skipped.

        If ensure_ascii is true, the output is guaranteed to be str
        objects with all incoming non-ASCII characters escaped.  If
        ensure_ascii is false, the output can contain non-ASCII characters.

        If check_circular is true, then lists, dicts, and custom encoded
        objects will be checked for circular references during encoding to
        prevent an infinite recursion (which would cause an OverflowError).
        Otherwise, no such check takes place.

        If allow_nan is true, then NaN, Infinity, and -Infinity will be
        encoded as such.  This behavior is not JSON specification compliant,
        but is consistent with most JavaScript based encoders and decoders.
        Otherwise, it will be a ValueError to encode such floats.

        If sort_keys is true, then the output of dictionaries will be
        sorted by key; this is useful for regression tests to ensure
        that JSON serializations can be compared on a day-to-day basis.

        If indent is a non-negative integer, then JSON array
        elements and object members will be pretty-printed with that
        indent level.  An indent level of 0 will only insert newlines.
        None is the most compact representation.

        If specified, separators should be an (item_separator, key_separator)
        tuple.  The default is (', ', ': ') if *indent* is ``None`` and
        (',', ': ') otherwise.  To get the most compact JSON representation,
        you should specify (',', ':') to eliminate whitespace.

        If specified, default is a function that gets called for objects
        that can't otherwise be serialized.  It should return a JSON encodable
        version of the object or raise a ``TypeError``.

        """

        self.skipkeys = skipkeys
        self.ensure_ascii = ensure_ascii
        self.check_circular = check_circular
        self.allow_nan = allow_nan
        self.sort_keys = sort_keys
        self.indent = indent
        if separators is not None:
            self.item_separator, self.key_separator = separators
        elif indent is not None:
            self.item_separator = ','
        if default is not None:
            self.default = default

    def default(self, o):
        """Implement this method in a subclass such that it returns
        a serializable object for ``o``, or calls the base implementation
        (to raise a ``TypeError``).

        For example, to support arbitrary iterators, you could
        implement default like this::

            def default(self, o):
                try:
                    iterable = iter(o)
                except TypeError:
                    pass
                else:
                    return list(iterable)
                # Let the base class default method raise the TypeError
                return JSONEncoder.default(self, o)

        """
        raise TypeError("Object of type '%s' is not JSON serializable" %
                        o.__class__.__name__)

    def encode(self, o):
        """Return a JSON string representation of a Python data structure.

        >>> from json.encoder import JSONEncoder
        >>> JSONEncoder().encode({"foo": ["bar", "baz"]})
        '{"foo": ["bar", "baz"]}'

        """
        # This is for extremely simple cases and benchmarks.
        if isinstance(o, str):
            if self.ensure_ascii:
                return encode_basestring_ascii(o)
            else:
                return encode_basestring(o)
        # This doesn't pass the iterator directly to ''.join() because the
        # exceptions aren't as detailed.  The list call should be roughly
        # equivalent to the PySequence_Fast that ''.join() would do.
        chunks = self.iterencode(o, _one_shot=True)
        if not isinstance(chunks, (list, tuple)):
            chunks = list(chunks)
        return ''.join(chunks)

    def iterencode(self, o, _one_shot=False):
        """Encode the given object and yield each string
        representation as available.

        For example::

            for chunk in JSONEncoder().iterencode(bigobject):
                mysocket.write(chunk)

        """
        if self.check_circular:
            markers = {}
        else:
            markers = None
        if self.ensure_ascii:
            _encoder = encode_basestring_ascii
        else:
            _encoder = encode_basestring

        def floatstr(o, allow_nan=self.allow_nan,
                _repr=float.__repr__, _inf=INFINITY, _neginf=-INFINITY):
            # Check for specials.  Note that this type of test is processor
            # and/or platform-specific, so do tests which don't depend on the
            # internals.

            if o != o:
                text = 'NaN'
            elif o == _inf:
                text = 'Infinity'
            elif o == _neginf:
                text = '-Infinity'
            else:
                return _repr(o)

            if not allow_nan:
                raise ValueError(
                    "Out of range float values are not JSON compliant: " +
                    repr(o))

            return text


        if (_one_shot and c_make_encoder is not None
                and self.indent is None):
            _iterencode = c_make_encoder(
                markers, self.default, _encoder, self.indent,
                self.key_separator, self.item_separator, self.sort_keys,
                self.skipkeys, self.allow_nan)
        else:
            _iterencode = _make_iterencode(
                markers, self.default, _encoder, self.indent, floatstr,
                self.key_separator, self.item_separator, self.sort_keys,
                self.skipkeys, _one_shot)
        return _iterencode(o, 0)

def _make_iterencode(markers, _default, _encoder, _indent, _floatstr,
        _key_separator, _item_separator, _sort_keys, _skipkeys, _one_shot,
        ## HACK: hand-optimized bytecode; turn globals into locals
        ValueError=ValueError,
        dict=dict,
        float=float,
        id=id,
        int=int,
        isinstance=isinstance,
        list=list,
        str=str,
        tuple=tuple,
        _intstr=int.__str__,
    ):

    if _indent is not None and not isinstance(_indent, str):
        _indent = ' ' * _indent

    def _iterencode_list(lst, _current_indent_level):
        if not lst:
            yield '[]'
            return
        if markers is not None:
            markerid = id(lst)
            if markerid in markers:
                raise ValueError("Circular reference detected")
            markers[markerid] = lst
        buf = '['
        if _indent is not None:
            _current_indent_level += 1
            newline_indent = '\n' + _indent * _current_indent_level
            separator = _item_separator + newline_indent
            buf += newline_indent
        else:
            newline_indent = None
            separator = _item_separator
        first = True
        for value in lst:
            if first:
                first = False
            else:
                buf = separator
            if isinstance(value, str):
                yield buf + _encoder(value)
            elif value is None:
                yield buf + 'null'
            elif value is True:
                yield buf + 'true'
            elif value is False:
                yield buf + 'false'
            elif isinstance(value, int):
                # Subclasses of int/float may override __str__, but we still
                # want to encode them as integers/floats in JSON. One example
                # within the standard library is IntEnum.
                yield buf + _intstr(value)
            elif isinstance(value, float):
                # see comment above for int
                yield buf + _floatstr(value)
            else:
                yield buf
                if isinstance(value, (list, tuple)):
                    chunks = _iterencode_list(value, _current_indent_level)
                elif isinstance(value, dict):
                    chunks = _iterencode_dict(value, _current_indent_level)
                else:
                    chunks = _iterencode(value, _current_indent_level)
                yield from chunks
        if newline_indent is not None:
            _current_indent_level -= 1
            yield '\n' + _indent * _current_indent_level
        yield ']'
        if markers is not None:
            del markers[markerid]

    def _iterencode_dict(dct, _current_indent_level):
        if not dct:
            yield '{}'
            return
        if markers is not None:
            markerid = id(dct)
            if markerid in markers:
                raise ValueError("Circular reference detected")
            markers[markerid] = dct
        yield '{'
        if _indent is not None:
            _current_indent_level += 1
            newline_indent = '\n' + _indent * _current_indent_level
            item_separator = _item_separator + newline_indent
            yield newline_indent
        else:
            newline_indent = None
            item_separator = _item_separator
        first = True
        if _sort_keys:
            items = sorted(dct.items(), key=lambda kv: kv[0])
        else:
            items = dct.items()
        for key, value in items:
            if isinstance(key, str):
                pass
            # JavaScript is weakly typed for these, so it makes sense to
            # also allow them.  Many encoders seem to do something like this.
            elif isinstance(key, float):
                # see comment for int/float in _make_iterencode
                key = _floatstr(key)
            elif key is True:
                key = 'true'
            elif key is False:
                key = 'false'
            elif key is None:
                key = 'null'
            elif isinstance(key, int):
                # see comment for int/float in _make_iterencode
                key = _intstr(key)
            elif _skipkeys:
                continue
            else:
                raise TypeError("key " + repr(key) + " is not a string")
            if first:
                first = False
            else:
                yield item_separator
            yield _encoder(key)
            yield _key_separator
            if isinstance(value, str):
                yield _encoder(value)
            elif value is None:
                yield 'null'
            elif value is True:
                yield 'true'
            elif value is False:
                yield 'false'
            elif isinstance(value, int):
                # see comment for int/float in _make_iterencode
                yield _intstr(value)
            elif isinstance(value, float):
                # see comment for int/float in _make_iterencode
                yield _floatstr(value)
            else:
                if isinstance(value, (list, tuple)):
                    chunks = _iterencode_list(value, _current_indent_level)
                elif isinstance(value, dict):
                    chunks = _iterencode_dict(value, _current_indent_level)
                else:
                    chunks = _iterencode(value, _current_indent_level)
                yield from chunks
        if newline_indent is not None:
            _current_indent_level -= 1
            yield '\n' + _indent * _current_indent_level
        yield '}'
        if markers is not None:
            del markers[markerid]

    def _iterencode(o, _current_indent_level):
        if isinstance(o, str):
            yield _encoder(o)
        elif o is None:
            yield 'null'
        elif o is True:
            yield 'true'
        elif o is False:
            yield 'false'
        elif isinstance(o, int):
            # see comment for int/float in _make_iterencode
            yield _intstr(o)
        elif isinstance(o, float):
            # see comment for int/float in _make_iterencode
            yield _floatstr(o)
        elif isinstance(o, (list, tuple)):
            yield from _iterencode_list(o, _current_indent_level)
        elif isinstance(o, dict):
            yield from _iterencode_dict(o, _current_indent_level)
        else:
            if markers is not None:
                markerid = id(o)
                if markerid in markers:
                    raise ValueError("Circular reference detected")
                markers[markerid] = o
            o = _default(o)
            yield from _iterencode(o, _current_indent_level)
            if markers is not None:
                del markers[markerid]
    return _iterencode
PK     \=տ    %  __pycache__/tool.cpython-36.opt-1.pycnu [        3

  \m                 @   s>   d Z ddlZddlZddlZddlZdd Zedkr:e  dS )a  Command-line tool to validate and pretty-print JSON

Usage::

    $ echo '{"json":"obj"}' | python -m json.tool
    {
        "json": "obj"
    }
    $ echo '{ 1.2:3.4}' | python -m json.tool
    Expecting property name enclosed in double quotes: line 1 column 3 (char 2)

    Nc        	   "   C   s  d} d}t j| |d}|jddt j dd |jddt jd	d
d |jddddd |j }|jphtj}|jpttj	}|j
}|V y$|rtj|}ntj|tjd}W n* tk
r } zt|W Y d d }~X nX W d Q R X |" tj|||dd |jd W d Q R X d S )Nzpython -m json.toolzZA simple command line interface for json module to validate and pretty-print JSON objects.)progdescriptioninfile?z-a JSON file to be validated or pretty-printed)nargstypehelpoutfilewz%write the output of infile to outfilez--sort-keys
store_trueFz5sort the output of dictionaries alphabetically by key)actiondefaultr   )Zobject_pairs_hook   )	sort_keysindent
)argparseArgumentParseradd_argumentZFileType
parse_argsr   sysstdinr	   stdoutr   jsonloadcollectionsOrderedDict
ValueError
SystemExitdumpwrite)	r   r   parserZoptionsr   r	   r   obje r$   !/usr/lib64/python3.6/json/tool.pymain   s0    
$r&   __main__)__doc__r   r   r   r   r&   __name__r$   r$   r$   r%   <module>   s   PK     \    (  __pycache__/scanner.cpython-36.opt-1.pycnu [        3

  \o	                 @   sj   d Z ddlZyddlmZ W n ek
r4   dZY nX dgZejdejej	B ej
B Zdd ZepdeZdS )zJSON token scanner
    N)make_scannerr   z)(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]?\d+)?c                sv   | j 	| j| j
tj| j| j| j| j| j	| j
| j 	
fdd  fdd}|S )Nc                s  y| | }W n t k
r(   t|Y nX |dkrB
| |d S |dkrd	| |d f S |dkr~| |d f S |dkr| ||d  dkrd |d fS |dkr| ||d  d	krd
|d fS |dko| ||d  dk rd|d fS | |}|d k	rX|j \}}}|s&|rD||p2d |p<d }n|}||j fS |dkr| ||d  dkrd|d fS |dkr| ||d  dkrd|d fS |dkr| ||d  dkrd|d fS t|d S )N"   {[n   ZnullttrueTf   ZfalseF N   ZNaNI   ZInfinity-	   z	-Infinity)
IndexErrorStopIterationgroupsend)stringidxZnextcharmZintegerZfracZexpres)
_scan_oncematch_numbermemoobject_hookobject_pairs_hookparse_arrayparse_constantparse_float	parse_intparse_objectparse_stringstrict $/usr/lib64/python3.6/json/scanner.pyr      s>    

   z#py_make_scanner.<locals>._scan_oncec          
      s   z
 | |S j   X d S )N)clear)r   r   )r   r   r(   r)   	scan_onceA   s    
z"py_make_scanner.<locals>.scan_once)r%   r!   r&   	NUMBER_REmatchr'   r#   r$   r"   r   r    r   )contextr+   r(   )r   r   r   r   r    r!   r"   r#   r$   r%   r&   r'   r)   py_make_scanner   s    "%r/   )__doc__reZ_jsonr   Zc_make_scannerImportError__all__compileVERBOSE	MULTILINEDOTALLr,   r/   r(   r(   r(   r)   <module>   s   
:PK     \    (  __pycache__/encoder.cpython-36.opt-2.pycnu [        3

  \>              "   @   s>  d dl Z yd dlmZ W n ek
r0   dZY nX yd dlmZ W n ek
rZ   dZY nX yd dlmZ W n ek
r   dZY nX e j	dZ
e j	dZe j	dZdd	d
dddddZx&edD ]Zejeedje qW edZdd ZepeZdd ZepeZG dd deZeeeeeeeee ej!f
ddZ"dS )    N)encode_basestring_ascii)encode_basestring)make_encoderz[\x00-\x1f\\"\b\f\n\r\t]z([\\"]|[^\ -~])s   [-]z\\z\"z\bz\fz\nz\rz\t)\"
	    z	\u{0:04x}infc             C   s   dd }dt j||  d S )Nc             S   s   t | jd S )Nr   )
ESCAPE_DCTgroup)match r   $/usr/lib64/python3.6/json/encoder.pyreplace(   s    z%py_encode_basestring.<locals>.replacer   )ESCAPEsub)sr   r   r   r   py_encode_basestring$   s    r   c             C   s   dd }dt j||  d S )Nc             S   sv   | j d}yt| S  tk
rp   t|}|dk r<dj|S |d8 }d|d? d@ B }d|d@ B }dj||S Y nX d S )	Nr   i   z	\u{0:04x}i   
   i  i   z\u{0:04x}\u{1:04x})r   r   KeyErrorordformat)r   r   ns1s2r   r   r   r   4   s    

z+py_encode_basestring_ascii.<locals>.replacer   )ESCAPE_ASCIIr   )r   r   r   r   r   py_encode_basestring_ascii0   s    r    c            	   @   sJ   e Zd ZdZdZdddddddddddZd	d
 Zdd ZdddZdS )JSONEncoderz, z: FTN)skipkeysensure_asciicheck_circular	allow_nan	sort_keysindent
separatorsdefaultc      	      C   sZ   || _ || _|| _|| _|| _|| _|d k	r:|\| _| _n|d k	rHd| _|d k	rV|| _d S )N,)	r"   r#   r$   r%   r&   r'   item_separatorkey_separatorr)   )	selfr"   r#   r$   r%   r&   r'   r(   r)   r   r   r   __init__h   s    +zJSONEncoder.__init__c             C   s   t d|jj d S )Nz,Object of type '%s' is not JSON serializable)	TypeError	__class____name__)r-   or   r   r   r)      s    zJSONEncoder.defaultc             C   sN   t |tr | jrt|S t|S | j|dd}t |ttfsDt|}dj|S )NT)	_one_shot )	
isinstancestrr#   r   r   
iterencodelisttuplejoin)r-   r2   chunksr   r   r   encode   s    	
zJSONEncoder.encodec             C   s   | j ri }nd }| jrt}nt}| jtjtt fdd}|rvtd k	rv| j	d krvt|| j
|| j	| j| j| j| j| j	}n&t|| j
|| j	|| j| j| j| j|
}||dS )Nc             S   sJ   | | krd}n$| |krd}n| |kr*d}n|| S |sFt dt|  |S )NZNaNZInfinityz	-Infinityz2Out of range float values are not JSON compliant: )
ValueErrorrepr)r2   r%   Z_reprZ_infZ_neginftextr   r   r   floatstr   s    z(JSONEncoder.iterencode.<locals>.floatstrr   )r$   r#   r   r   r%   float__repr__INFINITYc_make_encoderr'   r)   r,   r+   r&   r"   _make_iterencode)r-   r2   r3   markers_encoderr@   _iterencoder   r   r   r7      s&    


zJSONEncoder.iterencode)F)	r1   
__module____qualname__r+   r,   r.   r)   r<   r7   r   r   r   r   r!   I   s   6r!   c                s   d k	r rd  	fdd	 	
fdd 	fddS )N c       	      3   s  | sdV  d S d k	r6| }|kr. d| |< d}d k	rh|d7 }d|  }| }||7 }nd }}d}x| D ]}|rd}n|}|r|| V  qz|d kr|d V  qz|dkr|d	 V  qz|dkr|d
 V  qz|r|| V  qz|
r|| V  qz|V  |fr:||}n"|	rR||}n
||}|E d H  qzW |d k	r|d8 }d|  V  dV  d k	r|= d S )Nz[]zCircular reference detected[   r	   TFnulltruefalse]r   )	Zlst_current_indent_levelmarkeridZbufnewline_indentZ	separatorfirstvaluer;   )r=   rG   	_floatstr_indent_intstr_item_separatorrH   _iterencode_dict_iterencode_listdictrA   idintr5   r8   rF   r6   r9   r   r   r\     s\    






z*_make_iterencode.<locals>._iterencode_listc       
      3   sL  | sdV  d S d k	r6| }|kr. d| |< dV  d k	rh|d7 }d|  }| }|V  nd }}d}rt | j dd d	}n| j }xx|D ]n\}}|rnr|rȈ|}n^|dkrd
}nP|dkrd}nB|d krd}n4|r|}n
rqntdt| d |r2d}n|V  |V  	V  |r`|V  q|d krrdV  q|dkrd
V  q|dkrdV  q|r|V  q|rƈ|V  q|fr||}	n"|r||}	n
||}	|	E d H  qW |d k	r2|d8 }d|  V  dV  d k	rH|= d S )Nz{}zCircular reference detected{rM   r	   Tc             S   s   | d S )Nr   r   )Zkvr   r   r   <lambda>a  s    z<_make_iterencode.<locals>._iterencode_dict.<locals>.<lambda>)keyrO   FrP   rN   zkey z is not a string})sorteditemsr/   r>   )
ZdctrR   rS   rT   r+   rU   re   rb   rV   r;   )r=   rG   rW   rX   rY   rZ   rH   r[   r\   _key_separator	_skipkeys
_sort_keysr]   rA   r^   r_   r5   r8   rF   r6   r9   r   r   r[   M  s    










z*_make_iterencode.<locals>._iterencode_dictc             3   s   | r| V  n| d kr&dV  n| dkr6dV  n| dkrFdV  n| r\| V  n| 	rr| V  n| fr| |E d H  nj| r| |E d H  nNd k	rֈ
| }|krΈ d| |< | } | |E d H  d k	r|= d S )NrN   TrO   FrP   zCircular reference detectedr   )r2   rR   rS   )r=   _defaultrG   rW   rY   rH   r[   r\   r]   rA   r^   r_   r5   r8   rF   r6   r9   r   r   rH     s2    



z%_make_iterencode.<locals>._iterencoder   )rF   ri   rG   rX   rW   rf   rZ   rh   rg   r3   r=   r]   rA   r^   r_   r5   r8   r6   r9   rY   r   )r=   ri   rG   rW   rX   rY   rZ   rH   r[   r\   rf   rg   rh   r]   rA   r^   r_   r5   r8   rF   r6   r9   r   rE     s    .84O,rE   )#reZ_jsonr   Zc_encode_basestring_asciiImportErrorr   Zc_encode_basestringr   rD   compiler   r   ZHAS_UTF8r   rangei
setdefaultchrr   rA   rC   r   r    objectr!   r=   r]   r^   r_   r5   r8   r6   r9   __str__rE   r   r   r   r   <module>   sR   





	
 >PK     \.kW&  &  (  __pycache__/decoder.cpython-36.opt-1.pycnu [        3

  \)1                 @   s  d Z ddlZddlmZ yddlmZ W n ek
r@   dZY nX ddgZej	ej
B ejB ZedZedZed	ZG d
d deZeeedZejdeZdddddddddZdd ZdeejfddZepeZejdeZdZdejefddZejefdd ZG d!d deZdS )"zImplementation of JSONDecoder
    N)scanner)
scanstringJSONDecoderJSONDecodeErrornaninfz-infc               @   s    e Zd ZdZdd Zdd ZdS )r   a   Subclass of ValueError with the following additional properties:

    msg: The unformatted error message
    doc: The JSON document being parsed
    pos: The start index of doc where parsing failed
    lineno: The line corresponding to pos
    colno: The column corresponding to pos

    c             C   sb   |j dd|d }||jdd| }d||||f }tj| | || _|| _|| _|| _|| _d S )N
r      z%s: line %d column %d (char %d))	countrfind
ValueError__init__msgdocposlinenocolno)selfr   r   r   r   r   errmsg r   $/usr/lib64/python3.6/json/decoder.pyr      s    zJSONDecodeError.__init__c             C   s   | j | j| j| jffS )N)	__class__r   r   r   )r   r   r   r   
__reduce__*   s    zJSONDecodeError.__reduce__N)__name__
__module____qualname____doc__r   r   r   r   r   r   r      s   	)z	-InfinityZInfinityNaNz(.*?)(["\\\x00-\x1f])"\/r   	)r   r   r    bfnrtc             C   s`   | |d |d  }t |dkrL|d dkrLy
t|dS  tk
rJ   Y nX d}t|| |d S )Nr	         ZxX   zInvalid \uXXXX escape)lenintr   r   )sr   escr   r   r   r   _decode_uXXXX;   s    
r1   Tc             C   s  g }|j }|d }x|| |}|dkr4td| ||j }|j \}	}
|	rT||	 |
dkr`P n.|
dkr|rdj|
}t|| |n
||
 qy| | }W n  tk
r   td| |Y nX |dkry|| }W n* tk
r   dj|}t|| |Y nX |d7 }nt| |}|d	7 }d
|  ko.dkn  r| ||d  dkrt| |d }d|  kondkn  rd|d
 d> |d B  }|d7 }t|}|| qW dj	||fS )a  Scan the string s for a JSON string. End is the index of the
    character in s after the quote that started the JSON string.
    Unescapes all valid JSON string escape sequences and raises ValueError
    on attempt to decode an invalid string. If strict is False then literal
    control characters are allowed in the string.

    Returns a tuple of the decoded string and the index of the character in s
    after the end quote.r	   NzUnterminated string starting atr   r   z"Invalid control character {0!r} atuzInvalid \escape: {0!r}r*   i   i     z\ui   i  i   
       )
appendr   endgroupsformat
IndexErrorKeyErrorr1   chrjoin)r/   r8   strictZ_bZ_mZchunks_appendZbeginchunkZcontent
terminatorr   r0   charZuniZuni2r   r   r   py_scanstringE   sP    






2rD   z
[ \t\n\r]*z 	
c          #   C   s  | \}}	g }
|
j }|d kri }|j}||	|	d  }|dkr||krb|||	j }	||	|	d  }|dkr|d k	r||
}||	d fS i }
|d k	r||
}
|
|	d fS |dkrtd||	|	d7 }	xt||	|\}}	|||}||	|	d  dkr&|||	j }	||	|	d  dkr&td||	|	d7 }	y:||	 |krf|	d7 }	||	 |krf|||	d j }	W n tk
r~   Y nX y|||	\}}	W n4 tk
r } ztd||jd W Y d d }~X nX |||f y0||	 }||kr|||	d j }	||	 }W n tk
r   d}Y nX |	d7 }	|dkr6P n|d	krPtd
||	d |||	j }	||	|	d  }|	d7 }	|dkrtd||	d qW |d k	r||
}||	fS t|
}
|d k	r||
}
|
|	fS )Nr	   r   }z1Expecting property name enclosed in double quotes:zExpecting ':' delimiterzExpecting valuer6   ,zExpecting ',' delimiter)	r7   
setdefaultr8   r   r   r;   StopIterationvaluedict)	s_and_endr?   	scan_onceobject_hookobject_pairs_hookmemo_w_wsr/   r8   ZpairsZpairs_appendZmemo_getnextcharresultkeyrJ   errr   r   r   
JSONObject   s    

"





rW   c             C   sz  | \}}g }|||d  }||krF|||d j  }|||d  }|dkrZ||d fS |j}xy|||\}	}W n2 tk
r }
 ztd||
jd W Y d d }
~
X nX ||	 |||d  }||kr|||d j  }|||d  }|d7 }|dkrP n|dkrtd||d y:|| |krT|d7 }|| |krT|||d j  }W qd tk
rl   Y qdX qdW ||fS )Nr	   ]zExpecting valuerG   zExpecting ',' delimiter)r8   r7   rI   r   rJ   r;   )rL   rM   rQ   rR   r/   r8   valuesrS   r@   rJ   rV   r   r   r   	JSONArray   s@    "


rZ   c               @   s@   e Zd ZdZdddddddddZejfddZdd
dZdS )r   a  Simple JSON <http://json.org> decoder

    Performs the following translations in decoding by default:

    +---------------+-------------------+
    | JSON          | Python            |
    +===============+===================+
    | object        | dict              |
    +---------------+-------------------+
    | array         | list              |
    +---------------+-------------------+
    | string        | str               |
    +---------------+-------------------+
    | number (int)  | int               |
    +---------------+-------------------+
    | number (real) | float             |
    +---------------+-------------------+
    | true          | True              |
    +---------------+-------------------+
    | false         | False             |
    +---------------+-------------------+
    | null          | None              |
    +---------------+-------------------+

    It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as
    their corresponding ``float`` values, which is outside the JSON spec.

    NT)rN   parse_float	parse_intparse_constantr?   rO   c            C   sZ   || _ |pt| _|pt| _|p"tj| _|| _|| _	t
| _t| _t| _i | _tj| | _dS )aD  ``object_hook``, if specified, will be called with the result
        of every JSON object decoded and its return value will be used in
        place of the given ``dict``.  This can be used to provide custom
        deserializations (e.g. to support JSON-RPC class hinting).

        ``object_pairs_hook``, if specified will be called with the result of
        every JSON object decoded with an ordered list of pairs.  The return
        value of ``object_pairs_hook`` will be used instead of the ``dict``.
        This feature can be used to implement custom decoders that rely on the
        order that the key and value pairs are decoded (for example,
        collections.OrderedDict will remember the order of insertion). If
        ``object_hook`` is also defined, the ``object_pairs_hook`` takes
        priority.

        ``parse_float``, if specified, will be called with the string
        of every JSON float to be decoded. By default this is equivalent to
        float(num_str). This can be used to use another datatype or parser
        for JSON floats (e.g. decimal.Decimal).

        ``parse_int``, if specified, will be called with the string
        of every JSON int to be decoded. By default this is equivalent to
        int(num_str). This can be used to use another datatype or parser
        for JSON integers (e.g. float).

        ``parse_constant``, if specified, will be called with one of the
        following strings: -Infinity, Infinity, NaN.
        This can be used to raise an exception if invalid JSON numbers
        are encountered.

        If ``strict`` is false (true is the default), then control
        characters will be allowed inside strings.  Control characters in
        this context are those with character codes in the 0-31 range,
        including ``'\t'`` (tab), ``'\n'``, ``'\r'`` and ``'\0'``.

        N)rN   floatr[   r.   r\   
_CONSTANTS__getitem__r]   r?   rO   rW   Zparse_objectrZ   Zparse_arrayr   Zparse_stringrP   r   Zmake_scannerrM   )r   rN   r[   r\   r]   r?   rO   r   r   r   r     s    &

zJSONDecoder.__init__c             C   sF   | j |||dj d\}}|||j }|t|krBtd|||S )zlReturn the Python representation of ``s`` (a ``str`` instance
        containing a JSON document).

        r   )idxz
Extra data)
raw_decoder8   r-   r   )r   r/   rQ   objr8   r   r   r   decodeN  s
    zJSONDecoder.decoder   c             C   sP   y| j ||\}}W n2 tk
rF } ztd||jdW Y dd}~X nX ||fS )a=  Decode a JSON document from ``s`` (a ``str`` beginning with
        a JSON document) and return a 2-tuple of the Python
        representation and the index in ``s`` where the document ended.

        This can be used to decode a JSON document from a string that may
        have extraneous data at the end.

        zExpecting valueN)rM   rI   r   rJ   )r   r/   ra   rc   r8   rV   r   r   r   rb   Y  s
    	"zJSONDecoder.raw_decode)r   )	r   r   r   r   r   
WHITESPACEmatchrd   rb   r   r   r   r   r      s   1) r   reZjsonr   Z_jsonr   Zc_scanstringImportError__all__VERBOSE	MULTILINEDOTALLFLAGSr^   r   ZPosInfZNegInfr   r   r_   compileZSTRINGCHUNKZ	BACKSLASHr1   rf   rD   re   ZWHITESPACE_STRrW   rZ   objectr   r   r   r   r   <module>   s6   

;P%PK     \    "  __pycache__/scanner.cpython-36.pycnu [        3

  \o	                 @   sj   d Z ddlZyddlmZ W n ek
r4   dZY nX dgZejdejej	B ej
B Zdd ZepdeZdS )zJSON token scanner
    N)make_scannerr   z)(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]?\d+)?c                sv   | j 	| j| j
tj| j| j| j| j| j	| j
| j 	
fdd  fdd}|S )Nc                s  y| | }W n t k
r(   t|Y nX |dkrB
| |d S |dkrd	| |d f S |dkr~| |d f S |dkr| ||d  dkrd |d fS |dkr| ||d  d	krd
|d fS |dko| ||d  dk rd|d fS | |}|d k	rX|j \}}}|s&|rD||p2d |p<d }n|}||j fS |dkr| ||d  dkrd|d fS |dkr| ||d  dkrd|d fS |dkr| ||d  dkrd|d fS t|d S )N"   {[n   ZnullttrueTf   ZfalseF N   ZNaNI   ZInfinity-	   z	-Infinity)
IndexErrorStopIterationgroupsend)stringidxZnextcharmZintegerZfracZexpres)
_scan_oncematch_numbermemoobject_hookobject_pairs_hookparse_arrayparse_constantparse_float	parse_intparse_objectparse_stringstrict $/usr/lib64/python3.6/json/scanner.pyr      s>    

   z#py_make_scanner.<locals>._scan_oncec          
      s   z
 | |S j   X d S )N)clear)r   r   )r   r   r(   r)   	scan_onceA   s    
z"py_make_scanner.<locals>.scan_once)r%   r!   r&   	NUMBER_REmatchr'   r#   r$   r"   r   r    r   )contextr+   r(   )r   r   r   r   r    r!   r"   r#   r$   r%   r&   r'   r)   py_make_scanner   s    "%r/   )__doc__reZ_jsonr   Zc_make_scannerImportError__all__compileVERBOSE	MULTILINEDOTALLr,   r/   r(   r(   r(   r)   <module>   s   
:PK     \f	n    (  __pycache__/decoder.cpython-36.opt-2.pycnu [        3

  \)1                 @   s  d dl Z d dlmZ yd dlmZ W n ek
r<   dZY nX ddgZe je j	B e j
B ZedZedZedZG d	d deZeeed
Ze jdeZdddddddddZdd ZdeejfddZepeZe jdeZdZdejefddZejefddZG d d deZdS )!    N)scanner)
scanstringJSONDecoderJSONDecodeErrornaninfz-infc               @   s   e Zd Zdd Zdd ZdS )r   c             C   sb   |j dd|d }||jdd| }d||||f }tj| | || _|| _|| _|| _|| _d S )N
r      z%s: line %d column %d (char %d))	countrfind
ValueError__init__msgdocposlinenocolno)selfr   r   r   r   r   errmsg r   $/usr/lib64/python3.6/json/decoder.pyr      s    zJSONDecodeError.__init__c             C   s   | j | j| j| jffS )N)	__class__r   r   r   )r   r   r   r   
__reduce__*   s    zJSONDecodeError.__reduce__N)__name__
__module____qualname__r   r   r   r   r   r   r      s   )z	-InfinityZInfinityNaNz(.*?)(["\\\x00-\x1f])"\/r   	)r   r   r   bfnrtc             C   s`   | |d |d  }t |dkrL|d dkrLy
t|dS  tk
rJ   Y nX d}t|| |d S )Nr	         ZxX   zInvalid \uXXXX escape)lenintr   r   )sr   escr   r   r   r   _decode_uXXXX;   s    
r0   Tc             C   s  g }|j }|d }x|| |}|d kr4td| ||j }|j \}	}
|	rT||	 |
dkr`P n.|
dkr|rdj|
}t|| |n
||
 qy| | }W n  tk
r   td| |Y nX |dkry|| }W n* tk
r   dj|}t|| |Y nX |d7 }nt| |}|d7 }d	|  ko.d
kn  r| ||d  dkrt| |d }d|  kondkn  rd|d	 d> |d B  }|d7 }t|}|| qW dj	||fS )Nr	   zUnterminated string starting atr   r   z"Invalid control character {0!r} atuzInvalid \escape: {0!r}r)   i   i     z\ui   i  i   
       )
appendr   endgroupsformat
IndexErrorKeyErrorr0   chrjoin)r.   r7   strictZ_bZ_mZchunks_appendZbeginchunkZcontent
terminatorr   r/   charZuniZuni2r   r   r   py_scanstringE   sP    






2rC   z
[ \t\n\r]*z 	
c          #   C   s  | \}}	g }
|
j }|d kri }|j}||	|	d  }|dkr||krb|||	j }	||	|	d  }|dkr|d k	r||
}||	d fS i }
|d k	r||
}
|
|	d fS |dkrtd||	|	d7 }	xt||	|\}}	|||}||	|	d  dkr&|||	j }	||	|	d  dkr&td||	|	d7 }	y:||	 |krf|	d7 }	||	 |krf|||	d j }	W n tk
r~   Y nX y|||	\}}	W n4 tk
r } ztd||jd W Y d d }~X nX |||f y0||	 }||kr|||	d j }	||	 }W n tk
r   d}Y nX |	d7 }	|dkr6P n|d	krPtd
||	d |||	j }	||	|	d  }|	d7 }	|dkrtd||	d qW |d k	r||
}||	fS t|
}
|d k	r||
}
|
|	fS )Nr	   r   }z1Expecting property name enclosed in double quotes:zExpecting ':' delimiterzExpecting valuer5   ,zExpecting ',' delimiter)	r6   
setdefaultr7   r   r   r:   StopIterationvaluedict)	s_and_endr>   	scan_onceobject_hookobject_pairs_hookmemo_w_wsr.   r7   ZpairsZpairs_appendZmemo_getnextcharresultkeyrI   errr   r   r   
JSONObject   s    

"





rV   c             C   sz  | \}}g }|||d  }||krF|||d j  }|||d  }|dkrZ||d fS |j}xy|||\}	}W n2 tk
r }
 ztd||
jd W Y d d }
~
X nX ||	 |||d  }||kr|||d j  }|||d  }|d7 }|dkrP n|dkrtd||d y:|| |krT|d7 }|| |krT|||d j  }W qd tk
rl   Y qdX qdW ||fS )Nr	   ]zExpecting valuerF   zExpecting ',' delimiter)r7   r6   rH   r   rI   r:   )rK   rL   rP   rQ   r.   r7   valuesrR   r?   rI   rU   r   r   r   	JSONArray   s@    "


rY   c               @   s<   e Zd ZdddddddddZejfddZdd	d
ZdS )r   NT)rM   parse_float	parse_intparse_constantr>   rN   c            C   sZ   || _ |pt| _|pt| _|p"tj| _|| _|| _	t
| _t| _t| _i | _tj| | _d S )N)rM   floatrZ   r-   r[   
_CONSTANTS__getitem__r\   r>   rN   rV   Zparse_objectrY   Zparse_arrayr   Zparse_stringrO   r   Zmake_scannerrL   )r   rM   rZ   r[   r\   r>   rN   r   r   r   r     s    &

zJSONDecoder.__init__c             C   sF   | j |||dj d\}}|||j }|t|krBtd|||S )Nr   )idxz
Extra data)
raw_decoder7   r,   r   )r   r.   rP   objr7   r   r   r   decodeN  s
    zJSONDecoder.decoder   c             C   sP   y| j ||\}}W n2 tk
rF } ztd||jd W Y d d }~X nX ||fS )NzExpecting value)rL   rH   r   rI   )r   r.   r`   rb   r7   rU   r   r   r   ra   Y  s
    	"zJSONDecoder.raw_decode)r   )r   r   r   r   
WHITESPACEmatchrc   ra   r   r   r   r   r      s
   1)reZjsonr   Z_jsonr   Zc_scanstringImportError__all__VERBOSE	MULTILINEDOTALLFLAGSr]   r   ZPosInfZNegInfr   r   r^   compileZSTRINGCHUNKZ	BACKSLASHr0   re   rC   rd   ZWHITESPACE_STRrV   rY   objectr   r   r   r   r   <module>   s4   

;P%PK     \ީi    %  __pycache__/tool.cpython-36.opt-2.pycnu [        3

  \m                 @   s:   d dl Z d dlZd dlZd dlZdd Zedkr6e  dS )    Nc        	   "   C   s  d} d}t j| |d}|jddt j dd |jddt jd	d
d |jddddd |j }|jphtj}|jpttj	}|j
}|V y$|rtj|}ntj|tjd}W n* tk
r } zt|W Y d d }~X nX W d Q R X |" tj|||dd |jd W d Q R X d S )Nzpython -m json.toolzZA simple command line interface for json module to validate and pretty-print JSON objects.)progdescriptioninfile?z-a JSON file to be validated or pretty-printed)nargstypehelpoutfilewz%write the output of infile to outfilez--sort-keys
store_trueFz5sort the output of dictionaries alphabetically by key)actiondefaultr   )Zobject_pairs_hook   )	sort_keysindent
)argparseArgumentParseradd_argumentZFileType
parse_argsr   sysstdinr	   stdoutr   jsonloadcollectionsOrderedDict
ValueError
SystemExitdumpwrite)	r   r   parserZoptionsr   r	   r   obje r$   !/usr/lib64/python3.6/json/tool.pymain   s0    
$r&   __main__)r   r   r   r   r&   __name__r$   r$   r$   r%   <module>   s   PK     \NTM+  +  (  __pycache__/encoder.cpython-36.opt-1.pycnu [        3

  \>              "   @   sB  d Z ddlZyddlmZ W n ek
r4   dZY nX yddlmZ W n ek
r^   dZY nX yddlmZ	 W n ek
r   dZ	Y nX ej
dZej
dZej
dZd	d
ddddddZx&edD ]Zejeedje qW edZdd ZepeZdd ZepeZG dd deZeeeeeeee e!ej"f
ddZ#dS )zImplementation of JSONEncoder
    N)encode_basestring_ascii)encode_basestring)make_encoderz[\x00-\x1f\\"\b\f\n\r\t]z([\\"]|[^\ -~])s   [-]z\\z\"z\bz\fz\nz\rz\t)\"
	    z	\u{0:04x}infc             C   s   dd }dt j||  d S )z5Return a JSON representation of a Python string

    c             S   s   t | jd S )Nr   )
ESCAPE_DCTgroup)match r   $/usr/lib64/python3.6/json/encoder.pyreplace(   s    z%py_encode_basestring.<locals>.replacer   )ESCAPEsub)sr   r   r   r   py_encode_basestring$   s    r   c             C   s   dd }dt j||  d S )zAReturn an ASCII-only JSON representation of a Python string

    c             S   sv   | j d}yt| S  tk
rp   t|}|dk r<dj|S |d8 }d|d? d@ B }d|d@ B }dj||S Y nX d S )	Nr   i   z	\u{0:04x}i   
   i  i   z\u{0:04x}\u{1:04x})r   r   KeyErrorordformat)r   r   ns1s2r   r   r   r   4   s    

z+py_encode_basestring_ascii.<locals>.replacer   )ESCAPE_ASCIIr   )r   r   r   r   r   py_encode_basestring_ascii0   s    r    c            	   @   sN   e Zd ZdZdZdZddddddddddd	Zd
d Zdd ZdddZ	dS )JSONEncoderaZ  Extensible JSON <http://json.org> encoder for Python data structures.

    Supports the following objects and types by default:

    +-------------------+---------------+
    | Python            | JSON          |
    +===================+===============+
    | dict              | object        |
    +-------------------+---------------+
    | list, tuple       | array         |
    +-------------------+---------------+
    | str               | string        |
    +-------------------+---------------+
    | int, float        | number        |
    +-------------------+---------------+
    | True              | true          |
    +-------------------+---------------+
    | False             | false         |
    +-------------------+---------------+
    | None              | null          |
    +-------------------+---------------+

    To extend this to recognize other objects, subclass and implement a
    ``.default()`` method with another method that returns a serializable
    object for ``o`` if possible, otherwise it should call the superclass
    implementation (to raise ``TypeError``).

    z, z: FTN)skipkeysensure_asciicheck_circular	allow_nan	sort_keysindent
separatorsdefaultc      	      C   sZ   || _ || _|| _|| _|| _|| _|dk	r:|\| _| _n|dk	rHd| _|dk	rV|| _dS )a  Constructor for JSONEncoder, with sensible defaults.

        If skipkeys is false, then it is a TypeError to attempt
        encoding of keys that are not str, int, float or None.  If
        skipkeys is True, such items are simply skipped.

        If ensure_ascii is true, the output is guaranteed to be str
        objects with all incoming non-ASCII characters escaped.  If
        ensure_ascii is false, the output can contain non-ASCII characters.

        If check_circular is true, then lists, dicts, and custom encoded
        objects will be checked for circular references during encoding to
        prevent an infinite recursion (which would cause an OverflowError).
        Otherwise, no such check takes place.

        If allow_nan is true, then NaN, Infinity, and -Infinity will be
        encoded as such.  This behavior is not JSON specification compliant,
        but is consistent with most JavaScript based encoders and decoders.
        Otherwise, it will be a ValueError to encode such floats.

        If sort_keys is true, then the output of dictionaries will be
        sorted by key; this is useful for regression tests to ensure
        that JSON serializations can be compared on a day-to-day basis.

        If indent is a non-negative integer, then JSON array
        elements and object members will be pretty-printed with that
        indent level.  An indent level of 0 will only insert newlines.
        None is the most compact representation.

        If specified, separators should be an (item_separator, key_separator)
        tuple.  The default is (', ', ': ') if *indent* is ``None`` and
        (',', ': ') otherwise.  To get the most compact JSON representation,
        you should specify (',', ':') to eliminate whitespace.

        If specified, default is a function that gets called for objects
        that can't otherwise be serialized.  It should return a JSON encodable
        version of the object or raise a ``TypeError``.

        N,)	r"   r#   r$   r%   r&   r'   item_separatorkey_separatorr)   )	selfr"   r#   r$   r%   r&   r'   r(   r)   r   r   r   __init__h   s    +zJSONEncoder.__init__c             C   s   t d|jj dS )al  Implement this method in a subclass such that it returns
        a serializable object for ``o``, or calls the base implementation
        (to raise a ``TypeError``).

        For example, to support arbitrary iterators, you could
        implement default like this::

            def default(self, o):
                try:
                    iterable = iter(o)
                except TypeError:
                    pass
                else:
                    return list(iterable)
                # Let the base class default method raise the TypeError
                return JSONEncoder.default(self, o)

        z,Object of type '%s' is not JSON serializableN)	TypeError	__class____name__)r-   or   r   r   r)      s    zJSONEncoder.defaultc             C   sN   t |tr | jrt|S t|S | j|dd}t |ttfsDt|}dj|S )zReturn a JSON string representation of a Python data structure.

        >>> from json.encoder import JSONEncoder
        >>> JSONEncoder().encode({"foo": ["bar", "baz"]})
        '{"foo": ["bar", "baz"]}'

        T)	_one_shot )	
isinstancestrr#   r   r   
iterencodelisttuplejoin)r-   r2   chunksr   r   r   encode   s    	
zJSONEncoder.encodec             C   s   | j ri }nd}| jrt}nt}| jtjtt fdd}|rvtdk	rv| j	dkrvt|| j
|| j	| j| j| j| j| j	}n&t|| j
|| j	|| j| j| j| j|
}||dS )zEncode the given object and yield each string
        representation as available.

        For example::

            for chunk in JSONEncoder().iterencode(bigobject):
                mysocket.write(chunk)

        Nc             S   sJ   | | krd}n$| |krd}n| |kr*d}n|| S |sFt dt|  |S )NZNaNZInfinityz	-Infinityz2Out of range float values are not JSON compliant: )
ValueErrorrepr)r2   r%   Z_reprZ_infZ_neginftextr   r   r   floatstr   s    z(JSONEncoder.iterencode.<locals>.floatstrr   )r$   r#   r   r   r%   float__repr__INFINITYc_make_encoderr'   r)   r,   r+   r&   r"   _make_iterencode)r-   r2   r3   markers_encoderr@   _iterencoder   r   r   r7      s&    


zJSONEncoder.iterencode)F)
r1   
__module____qualname____doc__r+   r,   r.   r)   r<   r7   r   r   r   r   r!   I   s   6r!   c                s   d k	r rd  	fdd	 	
fdd 	fddS )N c       	      3   s  | sdV  d S d k	r6| }|kr. d| |< d}d k	rh|d7 }d|  }| }||7 }nd }}d}x| D ]}|rd}n|}|r|| V  qz|d kr|d V  qz|dkr|d	 V  qz|dkr|d
 V  qz|r|| V  qz|
r|| V  qz|V  |fr:||}n"|	rR||}n
||}|E d H  qzW |d k	r|d8 }d|  V  dV  d k	r|= d S )Nz[]zCircular reference detected[   r	   TFnulltruefalse]r   )	Zlst_current_indent_levelmarkeridZbufnewline_indentZ	separatorfirstvaluer;   )r=   rG   	_floatstr_indent_intstr_item_separatorrH   _iterencode_dict_iterencode_listdictrA   idintr5   r8   rF   r6   r9   r   r   r]     s\    






z*_make_iterencode.<locals>._iterencode_listc       
      3   sL  | sdV  d S d k	r6| }|kr. d| |< dV  d k	rh|d7 }d|  }| }|V  nd }}d}rt | j dd d	}n| j }xx|D ]n\}}|rnr|rȈ|}n^|dkrd
}nP|dkrd}nB|d krd}n4|r|}n
rqntdt| d |r2d}n|V  |V  	V  |r`|V  q|d krrdV  q|dkrd
V  q|dkrdV  q|r|V  q|rƈ|V  q|fr||}	n"|r||}	n
||}	|	E d H  qW |d k	r2|d8 }d|  V  dV  d k	rH|= d S )Nz{}zCircular reference detected{rN   r	   Tc             S   s   | d S )Nr   r   )Zkvr   r   r   <lambda>a  s    z<_make_iterencode.<locals>._iterencode_dict.<locals>.<lambda>)keyrP   FrQ   rO   zkey z is not a string})sorteditemsr/   r>   )
ZdctrS   rT   rU   r+   rV   rf   rc   rW   r;   )r=   rG   rX   rY   rZ   r[   rH   r\   r]   _key_separator	_skipkeys
_sort_keysr^   rA   r_   r`   r5   r8   rF   r6   r9   r   r   r\   M  s    










z*_make_iterencode.<locals>._iterencode_dictc             3   s   | r| V  n| d kr&dV  n| dkr6dV  n| dkrFdV  n| r\| V  n| 	rr| V  n| fr| |E d H  nj| r| |E d H  nNd k	rֈ
| }|krΈ d| |< | } | |E d H  d k	r|= d S )NrO   TrP   FrQ   zCircular reference detectedr   )r2   rS   rT   )r=   _defaultrG   rX   rZ   rH   r\   r]   r^   rA   r_   r`   r5   r8   rF   r6   r9   r   r   rH     s2    



z%_make_iterencode.<locals>._iterencoder   )rF   rj   rG   rY   rX   rg   r[   ri   rh   r3   r=   r^   rA   r_   r`   r5   r8   r6   r9   rZ   r   )r=   rj   rG   rX   rY   rZ   r[   rH   r\   r]   rg   rh   ri   r^   rA   r_   r`   r5   r8   rF   r6   r9   r   rE     s    .84O,rE   )$rK   reZ_jsonr   Zc_encode_basestring_asciiImportErrorr   Zc_encode_basestringr   rD   compiler   r   ZHAS_UTF8r   rangei
setdefaultchrr   rA   rC   r   r    objectr!   r=   r^   r_   r`   r5   r8   r6   r9   __str__rE   r   r   r   r   <module>   sT   





	
 >PK     \]    (  __pycache__/scanner.cpython-36.opt-2.pycnu [        3

  \o	                 @   sf   d dl Z yd dlmZ W n ek
r0   dZY nX dgZe jde je jB e j	B Z
dd Zep`eZdS )    N)make_scannerr   z)(-?(?:0|[1-9]\d*))(\.\d+)?([eE][-+]?\d+)?c                sv   | j 	| j| j
tj| j| j| j| j| j	| j
| j 	
fdd  fdd}|S )Nc                s  y| | }W n t k
r(   t|Y nX |dkrB
| |d S |dkrd	| |d f S |dkr~| |d f S |dkr| ||d  dkrd |d fS |dkr| ||d  d	krd
|d fS |dko| ||d  dk rd|d fS | |}|d k	rX|j \}}}|s&|rD||p2d |p<d }n|}||j fS |dkr| ||d  dkrd|d fS |dkr| ||d  dkrd|d fS |dkr| ||d  dkrd|d fS t|d S )N"   {[n   ZnullttrueTf   ZfalseF N   ZNaNI   ZInfinity-	   z	-Infinity)
IndexErrorStopIterationgroupsend)stringidxZnextcharmZintegerZfracZexpres)
_scan_oncematch_numbermemoobject_hookobject_pairs_hookparse_arrayparse_constantparse_float	parse_intparse_objectparse_stringstrict $/usr/lib64/python3.6/json/scanner.pyr      s>    

   z#py_make_scanner.<locals>._scan_oncec          
      s   z
 | |S j   X d S )N)clear)r   r   )r   r   r(   r)   	scan_onceA   s    
z"py_make_scanner.<locals>.scan_once)r%   r!   r&   	NUMBER_REmatchr'   r#   r$   r"   r   r    r   )contextr+   r(   )r   r   r   r   r    r!   r"   r#   r$   r%   r&   r'   r)   py_make_scanner   s    "%r/   )reZ_jsonr   Zc_make_scannerImportError__all__compileVERBOSE	MULTILINEDOTALLr,   r/   r(   r(   r(   r)   <module>   s   
:PK     \~tc1  c1  )  __pycache__/__init__.cpython-36.opt-1.pycnu [        3

  \<8              
   @   s   d Z dZdddddddgZd	Zd
dlmZmZ d
dlmZ ddl	Z	eddddddddZ
dddddddddd	ddZdddddddddd	ddZedddZdd ZdddddddddZddddddddddZdS )a  JSON (JavaScript Object Notation) <http://json.org> is a subset of
JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data
interchange format.

:mod:`json` exposes an API familiar to users of the standard library
:mod:`marshal` and :mod:`pickle` modules.  It is derived from a
version of the externally maintained simplejson library.

Encoding basic Python object hierarchies::

    >>> import json
    >>> json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])
    '["foo", {"bar": ["baz", null, 1.0, 2]}]'
    >>> print(json.dumps("\"foo\bar"))
    "\"foo\bar"
    >>> print(json.dumps('\u1234'))
    "\u1234"
    >>> print(json.dumps('\\'))
    "\\"
    >>> print(json.dumps({"c": 0, "b": 0, "a": 0}, sort_keys=True))
    {"a": 0, "b": 0, "c": 0}
    >>> from io import StringIO
    >>> io = StringIO()
    >>> json.dump(['streaming API'], io)
    >>> io.getvalue()
    '["streaming API"]'

Compact encoding::

    >>> import json
    >>> from collections import OrderedDict
    >>> mydict = OrderedDict([('4', 5), ('6', 7)])
    >>> json.dumps([1,2,3,mydict], separators=(',', ':'))
    '[1,2,3,{"4":5,"6":7}]'

Pretty printing::

    >>> import json
    >>> print(json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4))
    {
        "4": 5,
        "6": 7
    }

Decoding JSON::

    >>> import json
    >>> obj = ['foo', {'bar': ['baz', None, 1.0, 2]}]
    >>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]') == obj
    True
    >>> json.loads('"\\"foo\\bar"') == '"foo\x08ar'
    True
    >>> from io import StringIO
    >>> io = StringIO('["streaming API"]')
    >>> json.load(io)[0] == 'streaming API'
    True

Specializing JSON object decoding::

    >>> import json
    >>> def as_complex(dct):
    ...     if '__complex__' in dct:
    ...         return complex(dct['real'], dct['imag'])
    ...     return dct
    ...
    >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
    ...     object_hook=as_complex)
    (1+2j)
    >>> from decimal import Decimal
    >>> json.loads('1.1', parse_float=Decimal) == Decimal('1.1')
    True

Specializing JSON object encoding::

    >>> import json
    >>> def encode_complex(obj):
    ...     if isinstance(obj, complex):
    ...         return [obj.real, obj.imag]
    ...     raise TypeError(repr(obj) + " is not JSON serializable")
    ...
    >>> json.dumps(2 + 1j, default=encode_complex)
    '[2.0, 1.0]'
    >>> json.JSONEncoder(default=encode_complex).encode(2 + 1j)
    '[2.0, 1.0]'
    >>> ''.join(json.JSONEncoder(default=encode_complex).iterencode(2 + 1j))
    '[2.0, 1.0]'


Using json.tool from the shell to validate and pretty-print::

    $ echo '{"json":"obj"}' | python -m json.tool
    {
        "json": "obj"
    }
    $ echo '{ 1.2:3.4}' | python -m json.tool
    Expecting property name enclosed in double quotes: line 1 column 3 (char 2)
z2.0.9dumpdumpsloadloadsJSONDecoderJSONDecodeErrorJSONEncoderzBob Ippolito <bob@redivi.com>   )r   r   )r       NFT)skipkeysensure_asciicheck_circular	allow_nanindent
separatorsdefault)	r
   r   r   r   clsr   r   r   	sort_keysc   	         K   s   | rJ|rJ|rJ|rJ|dkrJ|dkrJ|dkrJ|	dkrJ|
 rJ| rJt j| }n2|dkrVt}|f |||||||	|
d|j| }x|D ]}|j| qW dS )a  Serialize ``obj`` as a JSON formatted stream to ``fp`` (a
    ``.write()``-supporting file-like object).

    If ``skipkeys`` is true then ``dict`` keys that are not basic types
    (``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped
    instead of raising a ``TypeError``.

    If ``ensure_ascii`` is false, then the strings written to ``fp`` can
    contain non-ASCII characters if they appear in strings contained in
    ``obj``. Otherwise, all such characters are escaped in JSON strings.

    If ``check_circular`` is false, then the circular reference check
    for container types will be skipped and a circular reference will
    result in an ``OverflowError`` (or worse).

    If ``allow_nan`` is false, then it will be a ``ValueError`` to
    serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``)
    in strict compliance of the JSON specification, instead of using the
    JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).

    If ``indent`` is a non-negative integer, then JSON array elements and
    object members will be pretty-printed with that indent level. An indent
    level of 0 will only insert newlines. ``None`` is the most compact
    representation.

    If specified, ``separators`` should be an ``(item_separator, key_separator)``
    tuple.  The default is ``(', ', ': ')`` if *indent* is ``None`` and
    ``(',', ': ')`` otherwise.  To get the most compact JSON representation,
    you should specify ``(',', ':')`` to eliminate whitespace.

    ``default(obj)`` is a function that should return a serializable version
    of obj or raise TypeError. The default simply raises TypeError.

    If *sort_keys* is true (default: ``False``), then the output of
    dictionaries will be sorted by key.

    To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the
    ``.default()`` method to serialize additional types), specify it with
    the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.

    N)r
   r   r   r   r   r   r   r   )_default_encoder
iterencoder   write)objfpr
   r   r   r   r   r   r   r   r   kwiterablechunk r   %/usr/lib64/python3.6/json/__init__.pyr   x   s    -

c   	         K   sz   | rH|rH|rH|rH|dkrH|dkrH|dkrH|dkrH|	 rH|
 rHt j| S |dkrTt}|f ||||||||	d|
j| S )au  Serialize ``obj`` to a JSON formatted ``str``.

    If ``skipkeys`` is true then ``dict`` keys that are not basic types
    (``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped
    instead of raising a ``TypeError``.

    If ``ensure_ascii`` is false, then the return value can contain non-ASCII
    characters if they appear in strings contained in ``obj``. Otherwise, all
    such characters are escaped in JSON strings.

    If ``check_circular`` is false, then the circular reference check
    for container types will be skipped and a circular reference will
    result in an ``OverflowError`` (or worse).

    If ``allow_nan`` is false, then it will be a ``ValueError`` to
    serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``) in
    strict compliance of the JSON specification, instead of using the
    JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).

    If ``indent`` is a non-negative integer, then JSON array elements and
    object members will be pretty-printed with that indent level. An indent
    level of 0 will only insert newlines. ``None`` is the most compact
    representation.

    If specified, ``separators`` should be an ``(item_separator, key_separator)``
    tuple.  The default is ``(', ', ': ')`` if *indent* is ``None`` and
    ``(',', ': ')`` otherwise.  To get the most compact JSON representation,
    you should specify ``(',', ':')`` to eliminate whitespace.

    ``default(obj)`` is a function that should return a serializable version
    of obj or raise TypeError. The default simply raises TypeError.

    If *sort_keys* is true (default: ``False``), then the output of
    dictionaries will be sorted by key.

    To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the
    ``.default()`` method to serialize additional types), specify it with
    the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.

    N)r
   r   r   r   r   r   r   r   )r   encoder   )r   r
   r   r   r   r   r   r   r   r   r   r   r   r   r      s    ,


)object_hookobject_pairs_hookc             C   s   | j }|tjtjfrdS |tjtjfr.dS |tjr<dS t| dkr| d s`| d r\dS dS | d s| d	 sx| d
 r|dS dS n$t| d	kr| d sdS | d sdS dS )Nzutf-32zutf-16z	utf-8-sig   r	   r   z	utf-16-bez	utf-32-be      z	utf-16-lez	utf-32-lezutf-8)
startswithcodecsBOM_UTF32_BEBOM_UTF32_LEBOM_UTF16_BEBOM_UTF16_LEBOM_UTF8len)bZbstartswithr   r   r   detect_encoding   s$    
r,   )r   r   parse_float	parse_intparse_constantr   c         	   K   s"   t | j f||||||d|S )a%  Deserialize ``fp`` (a ``.read()``-supporting file-like object containing
    a JSON document) to a Python object.

    ``object_hook`` is an optional function that will be called with the
    result of any object literal decode (a ``dict``). The return value of
    ``object_hook`` will be used instead of the ``dict``. This feature
    can be used to implement custom decoders (e.g. JSON-RPC class hinting).

    ``object_pairs_hook`` is an optional function that will be called with the
    result of any object literal decoded with an ordered list of pairs.  The
    return value of ``object_pairs_hook`` will be used instead of the ``dict``.
    This feature can be used to implement custom decoders that rely on the
    order that the key and value pairs are decoded (for example,
    collections.OrderedDict will remember the order of insertion). If
    ``object_hook`` is also defined, the ``object_pairs_hook`` takes priority.

    To use a custom ``JSONDecoder`` subclass, specify it with the ``cls``
    kwarg; otherwise ``JSONDecoder`` is used.

    )r   r   r-   r.   r/   r   )r   read)r   r   r   r-   r.   r/   r   r   r   r   r   r     s    
)encodingr   r   r-   r.   r/   r   c      	      K   s   t | tr"| jdrRtd| dn0t | ttfsBtdj| jj	| j
t| d} |dkr|dkr|dkr|dkr|dkr|dkr| rtj
| S |dkrt}|dk	r||d< |dk	r||d< |dk	r||d	< |dk	r||d
< |dk	r||d< |f |j
| S )a   Deserialize ``s`` (a ``str``, ``bytes`` or ``bytearray`` instance
    containing a JSON document) to a Python object.

    ``object_hook`` is an optional function that will be called with the
    result of any object literal decode (a ``dict``). The return value of
    ``object_hook`` will be used instead of the ``dict``. This feature
    can be used to implement custom decoders (e.g. JSON-RPC class hinting).

    ``object_pairs_hook`` is an optional function that will be called with the
    result of any object literal decoded with an ordered list of pairs.  The
    return value of ``object_pairs_hook`` will be used instead of the ``dict``.
    This feature can be used to implement custom decoders that rely on the
    order that the key and value pairs are decoded (for example,
    collections.OrderedDict will remember the order of insertion). If
    ``object_hook`` is also defined, the ``object_pairs_hook`` takes priority.

    ``parse_float``, if specified, will be called with the string
    of every JSON float to be decoded. By default this is equivalent to
    float(num_str). This can be used to use another datatype or parser
    for JSON floats (e.g. decimal.Decimal).

    ``parse_int``, if specified, will be called with the string
    of every JSON int to be decoded. By default this is equivalent to
    int(num_str). This can be used to use another datatype or parser
    for JSON integers (e.g. float).

    ``parse_constant``, if specified, will be called with one of the
    following strings: -Infinity, Infinity, NaN.
    This can be used to raise an exception if invalid JSON numbers
    are encountered.

    To use a custom ``JSONDecoder`` subclass, specify it with the ``cls``
    kwarg; otherwise ``JSONDecoder`` is used.

    The ``encoding`` argument is ignored and deprecated.

    u   ﻿z-Unexpected UTF-8 BOM (decode using utf-8-sig)r	   z9the JSON object must be str, bytes or bytearray, not {!r}surrogatepassNr   r   r-   r.   r/   )
isinstancestrr#   r   bytes	bytearray	TypeErrorformat	__class____name__decoder,   _default_decoderr   )	sr1   r   r   r-   r.   r/   r   r   r   r   r   r   .  s2    '



)__doc____version____all__
__author__decoderr   r   encoderr   r$   r   r   r   r<   r,   r   r   r   r   r   r   <module>a   s6   
=8PK     \.kW&  &  "  __pycache__/decoder.cpython-36.pycnu [        3

  \)1                 @   s  d Z ddlZddlmZ yddlmZ W n ek
r@   dZY nX ddgZej	ej
B ejB ZedZedZed	ZG d
d deZeeedZejdeZdddddddddZdd ZdeejfddZepeZejdeZdZdejefddZejefdd ZG d!d deZdS )"zImplementation of JSONDecoder
    N)scanner)
scanstringJSONDecoderJSONDecodeErrornaninfz-infc               @   s    e Zd ZdZdd Zdd ZdS )r   a   Subclass of ValueError with the following additional properties:

    msg: The unformatted error message
    doc: The JSON document being parsed
    pos: The start index of doc where parsing failed
    lineno: The line corresponding to pos
    colno: The column corresponding to pos

    c             C   sb   |j dd|d }||jdd| }d||||f }tj| | || _|| _|| _|| _|| _d S )N
r      z%s: line %d column %d (char %d))	countrfind
ValueError__init__msgdocposlinenocolno)selfr   r   r   r   r   errmsg r   $/usr/lib64/python3.6/json/decoder.pyr      s    zJSONDecodeError.__init__c             C   s   | j | j| j| jffS )N)	__class__r   r   r   )r   r   r   r   
__reduce__*   s    zJSONDecodeError.__reduce__N)__name__
__module____qualname____doc__r   r   r   r   r   r   r      s   	)z	-InfinityZInfinityNaNz(.*?)(["\\\x00-\x1f])"\/r   	)r   r   r    bfnrtc             C   s`   | |d |d  }t |dkrL|d dkrLy
t|dS  tk
rJ   Y nX d}t|| |d S )Nr	         ZxX   zInvalid \uXXXX escape)lenintr   r   )sr   escr   r   r   r   _decode_uXXXX;   s    
r1   Tc             C   s  g }|j }|d }x|| |}|dkr4td| ||j }|j \}	}
|	rT||	 |
dkr`P n.|
dkr|rdj|
}t|| |n
||
 qy| | }W n  tk
r   td| |Y nX |dkry|| }W n* tk
r   dj|}t|| |Y nX |d7 }nt| |}|d	7 }d
|  ko.dkn  r| ||d  dkrt| |d }d|  kondkn  rd|d
 d> |d B  }|d7 }t|}|| qW dj	||fS )a  Scan the string s for a JSON string. End is the index of the
    character in s after the quote that started the JSON string.
    Unescapes all valid JSON string escape sequences and raises ValueError
    on attempt to decode an invalid string. If strict is False then literal
    control characters are allowed in the string.

    Returns a tuple of the decoded string and the index of the character in s
    after the end quote.r	   NzUnterminated string starting atr   r   z"Invalid control character {0!r} atuzInvalid \escape: {0!r}r*   i   i     z\ui   i  i   
       )
appendr   endgroupsformat
IndexErrorKeyErrorr1   chrjoin)r/   r8   strictZ_bZ_mZchunks_appendZbeginchunkZcontent
terminatorr   r0   charZuniZuni2r   r   r   py_scanstringE   sP    






2rD   z
[ \t\n\r]*z 	
c          #   C   s  | \}}	g }
|
j }|d kri }|j}||	|	d  }|dkr||krb|||	j }	||	|	d  }|dkr|d k	r||
}||	d fS i }
|d k	r||
}
|
|	d fS |dkrtd||	|	d7 }	xt||	|\}}	|||}||	|	d  dkr&|||	j }	||	|	d  dkr&td||	|	d7 }	y:||	 |krf|	d7 }	||	 |krf|||	d j }	W n tk
r~   Y nX y|||	\}}	W n4 tk
r } ztd||jd W Y d d }~X nX |||f y0||	 }||kr|||	d j }	||	 }W n tk
r   d}Y nX |	d7 }	|dkr6P n|d	krPtd
||	d |||	j }	||	|	d  }|	d7 }	|dkrtd||	d qW |d k	r||
}||	fS t|
}
|d k	r||
}
|
|	fS )Nr	   r   }z1Expecting property name enclosed in double quotes:zExpecting ':' delimiterzExpecting valuer6   ,zExpecting ',' delimiter)	r7   
setdefaultr8   r   r   r;   StopIterationvaluedict)	s_and_endr?   	scan_onceobject_hookobject_pairs_hookmemo_w_wsr/   r8   ZpairsZpairs_appendZmemo_getnextcharresultkeyrJ   errr   r   r   
JSONObject   s    

"





rW   c             C   sz  | \}}g }|||d  }||krF|||d j  }|||d  }|dkrZ||d fS |j}xy|||\}	}W n2 tk
r }
 ztd||
jd W Y d d }
~
X nX ||	 |||d  }||kr|||d j  }|||d  }|d7 }|dkrP n|dkrtd||d y:|| |krT|d7 }|| |krT|||d j  }W qd tk
rl   Y qdX qdW ||fS )Nr	   ]zExpecting valuerG   zExpecting ',' delimiter)r8   r7   rI   r   rJ   r;   )rL   rM   rQ   rR   r/   r8   valuesrS   r@   rJ   rV   r   r   r   	JSONArray   s@    "


rZ   c               @   s@   e Zd ZdZdddddddddZejfddZdd
dZdS )r   a  Simple JSON <http://json.org> decoder

    Performs the following translations in decoding by default:

    +---------------+-------------------+
    | JSON          | Python            |
    +===============+===================+
    | object        | dict              |
    +---------------+-------------------+
    | array         | list              |
    +---------------+-------------------+
    | string        | str               |
    +---------------+-------------------+
    | number (int)  | int               |
    +---------------+-------------------+
    | number (real) | float             |
    +---------------+-------------------+
    | true          | True              |
    +---------------+-------------------+
    | false         | False             |
    +---------------+-------------------+
    | null          | None              |
    +---------------+-------------------+

    It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as
    their corresponding ``float`` values, which is outside the JSON spec.

    NT)rN   parse_float	parse_intparse_constantr?   rO   c            C   sZ   || _ |pt| _|pt| _|p"tj| _|| _|| _	t
| _t| _t| _i | _tj| | _dS )aD  ``object_hook``, if specified, will be called with the result
        of every JSON object decoded and its return value will be used in
        place of the given ``dict``.  This can be used to provide custom
        deserializations (e.g. to support JSON-RPC class hinting).

        ``object_pairs_hook``, if specified will be called with the result of
        every JSON object decoded with an ordered list of pairs.  The return
        value of ``object_pairs_hook`` will be used instead of the ``dict``.
        This feature can be used to implement custom decoders that rely on the
        order that the key and value pairs are decoded (for example,
        collections.OrderedDict will remember the order of insertion). If
        ``object_hook`` is also defined, the ``object_pairs_hook`` takes
        priority.

        ``parse_float``, if specified, will be called with the string
        of every JSON float to be decoded. By default this is equivalent to
        float(num_str). This can be used to use another datatype or parser
        for JSON floats (e.g. decimal.Decimal).

        ``parse_int``, if specified, will be called with the string
        of every JSON int to be decoded. By default this is equivalent to
        int(num_str). This can be used to use another datatype or parser
        for JSON integers (e.g. float).

        ``parse_constant``, if specified, will be called with one of the
        following strings: -Infinity, Infinity, NaN.
        This can be used to raise an exception if invalid JSON numbers
        are encountered.

        If ``strict`` is false (true is the default), then control
        characters will be allowed inside strings.  Control characters in
        this context are those with character codes in the 0-31 range,
        including ``'\t'`` (tab), ``'\n'``, ``'\r'`` and ``'\0'``.

        N)rN   floatr[   r.   r\   
_CONSTANTS__getitem__r]   r?   rO   rW   Zparse_objectrZ   Zparse_arrayr   Zparse_stringrP   r   Zmake_scannerrM   )r   rN   r[   r\   r]   r?   rO   r   r   r   r     s    &

zJSONDecoder.__init__c             C   sF   | j |||dj d\}}|||j }|t|krBtd|||S )zlReturn the Python representation of ``s`` (a ``str`` instance
        containing a JSON document).

        r   )idxz
Extra data)
raw_decoder8   r-   r   )r   r/   rQ   objr8   r   r   r   decodeN  s
    zJSONDecoder.decoder   c             C   sP   y| j ||\}}W n2 tk
rF } ztd||jdW Y dd}~X nX ||fS )a=  Decode a JSON document from ``s`` (a ``str`` beginning with
        a JSON document) and return a 2-tuple of the Python
        representation and the index in ``s`` where the document ended.

        This can be used to decode a JSON document from a string that may
        have extraneous data at the end.

        zExpecting valueN)rM   rI   r   rJ   )r   r/   ra   rc   r8   rV   r   r   r   rb   Y  s
    	"zJSONDecoder.raw_decode)r   )	r   r   r   r   r   
WHITESPACEmatchrd   rb   r   r   r   r   r      s   1) r   reZjsonr   Z_jsonr   Zc_scanstringImportError__all__VERBOSE	MULTILINEDOTALLFLAGSr^   r   ZPosInfZNegInfr   r   r_   compileZSTRINGCHUNKZ	BACKSLASHr1   rf   rD   re   ZWHITESPACE_STRrW   rZ   objectr   r   r   r   r   <module>   s6   

;P%PK     \NTM+  +  "  __pycache__/encoder.cpython-36.pycnu [        3

  \>              "   @   sB  d Z ddlZyddlmZ W n ek
r4   dZY nX yddlmZ W n ek
r^   dZY nX yddlmZ	 W n ek
r   dZ	Y nX ej
dZej
dZej
dZd	d
ddddddZx&edD ]Zejeedje qW edZdd ZepeZdd ZepeZG dd deZeeeeeeee e!ej"f
ddZ#dS )zImplementation of JSONEncoder
    N)encode_basestring_ascii)encode_basestring)make_encoderz[\x00-\x1f\\"\b\f\n\r\t]z([\\"]|[^\ -~])s   [-]z\\z\"z\bz\fz\nz\rz\t)\"
	    z	\u{0:04x}infc             C   s   dd }dt j||  d S )z5Return a JSON representation of a Python string

    c             S   s   t | jd S )Nr   )
ESCAPE_DCTgroup)match r   $/usr/lib64/python3.6/json/encoder.pyreplace(   s    z%py_encode_basestring.<locals>.replacer   )ESCAPEsub)sr   r   r   r   py_encode_basestring$   s    r   c             C   s   dd }dt j||  d S )zAReturn an ASCII-only JSON representation of a Python string

    c             S   sv   | j d}yt| S  tk
rp   t|}|dk r<dj|S |d8 }d|d? d@ B }d|d@ B }dj||S Y nX d S )	Nr   i   z	\u{0:04x}i   
   i  i   z\u{0:04x}\u{1:04x})r   r   KeyErrorordformat)r   r   ns1s2r   r   r   r   4   s    

z+py_encode_basestring_ascii.<locals>.replacer   )ESCAPE_ASCIIr   )r   r   r   r   r   py_encode_basestring_ascii0   s    r    c            	   @   sN   e Zd ZdZdZdZddddddddddd	Zd
d Zdd ZdddZ	dS )JSONEncoderaZ  Extensible JSON <http://json.org> encoder for Python data structures.

    Supports the following objects and types by default:

    +-------------------+---------------+
    | Python            | JSON          |
    +===================+===============+
    | dict              | object        |
    +-------------------+---------------+
    | list, tuple       | array         |
    +-------------------+---------------+
    | str               | string        |
    +-------------------+---------------+
    | int, float        | number        |
    +-------------------+---------------+
    | True              | true          |
    +-------------------+---------------+
    | False             | false         |
    +-------------------+---------------+
    | None              | null          |
    +-------------------+---------------+

    To extend this to recognize other objects, subclass and implement a
    ``.default()`` method with another method that returns a serializable
    object for ``o`` if possible, otherwise it should call the superclass
    implementation (to raise ``TypeError``).

    z, z: FTN)skipkeysensure_asciicheck_circular	allow_nan	sort_keysindent
separatorsdefaultc      	      C   sZ   || _ || _|| _|| _|| _|| _|dk	r:|\| _| _n|dk	rHd| _|dk	rV|| _dS )a  Constructor for JSONEncoder, with sensible defaults.

        If skipkeys is false, then it is a TypeError to attempt
        encoding of keys that are not str, int, float or None.  If
        skipkeys is True, such items are simply skipped.

        If ensure_ascii is true, the output is guaranteed to be str
        objects with all incoming non-ASCII characters escaped.  If
        ensure_ascii is false, the output can contain non-ASCII characters.

        If check_circular is true, then lists, dicts, and custom encoded
        objects will be checked for circular references during encoding to
        prevent an infinite recursion (which would cause an OverflowError).
        Otherwise, no such check takes place.

        If allow_nan is true, then NaN, Infinity, and -Infinity will be
        encoded as such.  This behavior is not JSON specification compliant,
        but is consistent with most JavaScript based encoders and decoders.
        Otherwise, it will be a ValueError to encode such floats.

        If sort_keys is true, then the output of dictionaries will be
        sorted by key; this is useful for regression tests to ensure
        that JSON serializations can be compared on a day-to-day basis.

        If indent is a non-negative integer, then JSON array
        elements and object members will be pretty-printed with that
        indent level.  An indent level of 0 will only insert newlines.
        None is the most compact representation.

        If specified, separators should be an (item_separator, key_separator)
        tuple.  The default is (', ', ': ') if *indent* is ``None`` and
        (',', ': ') otherwise.  To get the most compact JSON representation,
        you should specify (',', ':') to eliminate whitespace.

        If specified, default is a function that gets called for objects
        that can't otherwise be serialized.  It should return a JSON encodable
        version of the object or raise a ``TypeError``.

        N,)	r"   r#   r$   r%   r&   r'   item_separatorkey_separatorr)   )	selfr"   r#   r$   r%   r&   r'   r(   r)   r   r   r   __init__h   s    +zJSONEncoder.__init__c             C   s   t d|jj dS )al  Implement this method in a subclass such that it returns
        a serializable object for ``o``, or calls the base implementation
        (to raise a ``TypeError``).

        For example, to support arbitrary iterators, you could
        implement default like this::

            def default(self, o):
                try:
                    iterable = iter(o)
                except TypeError:
                    pass
                else:
                    return list(iterable)
                # Let the base class default method raise the TypeError
                return JSONEncoder.default(self, o)

        z,Object of type '%s' is not JSON serializableN)	TypeError	__class____name__)r-   or   r   r   r)      s    zJSONEncoder.defaultc             C   sN   t |tr | jrt|S t|S | j|dd}t |ttfsDt|}dj|S )zReturn a JSON string representation of a Python data structure.

        >>> from json.encoder import JSONEncoder
        >>> JSONEncoder().encode({"foo": ["bar", "baz"]})
        '{"foo": ["bar", "baz"]}'

        T)	_one_shot )	
isinstancestrr#   r   r   
iterencodelisttuplejoin)r-   r2   chunksr   r   r   encode   s    	
zJSONEncoder.encodec             C   s   | j ri }nd}| jrt}nt}| jtjtt fdd}|rvtdk	rv| j	dkrvt|| j
|| j	| j| j| j| j| j	}n&t|| j
|| j	|| j| j| j| j|
}||dS )zEncode the given object and yield each string
        representation as available.

        For example::

            for chunk in JSONEncoder().iterencode(bigobject):
                mysocket.write(chunk)

        Nc             S   sJ   | | krd}n$| |krd}n| |kr*d}n|| S |sFt dt|  |S )NZNaNZInfinityz	-Infinityz2Out of range float values are not JSON compliant: )
ValueErrorrepr)r2   r%   Z_reprZ_infZ_neginftextr   r   r   floatstr   s    z(JSONEncoder.iterencode.<locals>.floatstrr   )r$   r#   r   r   r%   float__repr__INFINITYc_make_encoderr'   r)   r,   r+   r&   r"   _make_iterencode)r-   r2   r3   markers_encoderr@   _iterencoder   r   r   r7      s&    


zJSONEncoder.iterencode)F)
r1   
__module____qualname____doc__r+   r,   r.   r)   r<   r7   r   r   r   r   r!   I   s   6r!   c                s   d k	r rd  	fdd	 	
fdd 	fddS )N c       	      3   s  | sdV  d S d k	r6| }|kr. d| |< d}d k	rh|d7 }d|  }| }||7 }nd }}d}x| D ]}|rd}n|}|r|| V  qz|d kr|d V  qz|dkr|d	 V  qz|dkr|d
 V  qz|r|| V  qz|
r|| V  qz|V  |fr:||}n"|	rR||}n
||}|E d H  qzW |d k	r|d8 }d|  V  dV  d k	r|= d S )Nz[]zCircular reference detected[   r	   TFnulltruefalse]r   )	Zlst_current_indent_levelmarkeridZbufnewline_indentZ	separatorfirstvaluer;   )r=   rG   	_floatstr_indent_intstr_item_separatorrH   _iterencode_dict_iterencode_listdictrA   idintr5   r8   rF   r6   r9   r   r   r]     s\    






z*_make_iterencode.<locals>._iterencode_listc       
      3   sL  | sdV  d S d k	r6| }|kr. d| |< dV  d k	rh|d7 }d|  }| }|V  nd }}d}rt | j dd d	}n| j }xx|D ]n\}}|rnr|rȈ|}n^|dkrd
}nP|dkrd}nB|d krd}n4|r|}n
rqntdt| d |r2d}n|V  |V  	V  |r`|V  q|d krrdV  q|dkrd
V  q|dkrdV  q|r|V  q|rƈ|V  q|fr||}	n"|r||}	n
||}	|	E d H  qW |d k	r2|d8 }d|  V  dV  d k	rH|= d S )Nz{}zCircular reference detected{rN   r	   Tc             S   s   | d S )Nr   r   )Zkvr   r   r   <lambda>a  s    z<_make_iterencode.<locals>._iterencode_dict.<locals>.<lambda>)keyrP   FrQ   rO   zkey z is not a string})sorteditemsr/   r>   )
ZdctrS   rT   rU   r+   rV   rf   rc   rW   r;   )r=   rG   rX   rY   rZ   r[   rH   r\   r]   _key_separator	_skipkeys
_sort_keysr^   rA   r_   r`   r5   r8   rF   r6   r9   r   r   r\   M  s    










z*_make_iterencode.<locals>._iterencode_dictc             3   s   | r| V  n| d kr&dV  n| dkr6dV  n| dkrFdV  n| r\| V  n| 	rr| V  n| fr| |E d H  nj| r| |E d H  nNd k	rֈ
| }|krΈ d| |< | } | |E d H  d k	r|= d S )NrO   TrP   FrQ   zCircular reference detectedr   )r2   rS   rT   )r=   _defaultrG   rX   rZ   rH   r\   r]   r^   rA   r_   r`   r5   r8   rF   r6   r9   r   r   rH     s2    



z%_make_iterencode.<locals>._iterencoder   )rF   rj   rG   rY   rX   rg   r[   ri   rh   r3   r=   r^   rA   r_   r`   r5   r8   r6   r9   rZ   r   )r=   rj   rG   rX   rY   rZ   r[   rH   r\   r]   rg   rh   ri   r^   rA   r_   r`   r5   r8   rF   r6   r9   r   rE     s    .84O,rE   )$rK   reZ_jsonr   Zc_encode_basestring_asciiImportErrorr   Zc_encode_basestringr   rD   compiler   r   ZHAS_UTF8r   rangei
setdefaultchrr   rA   rC   r   r    objectr!   r=   r^   r_   r`   r5   r8   r6   r9   __str__rE   r   r   r   r   <module>   sT   





	
 >PK     \=տ      __pycache__/tool.cpython-36.pycnu [        3

  \m                 @   s>   d Z ddlZddlZddlZddlZdd Zedkr:e  dS )a  Command-line tool to validate and pretty-print JSON

Usage::

    $ echo '{"json":"obj"}' | python -m json.tool
    {
        "json": "obj"
    }
    $ echo '{ 1.2:3.4}' | python -m json.tool
    Expecting property name enclosed in double quotes: line 1 column 3 (char 2)

    Nc        	   "   C   s  d} d}t j| |d}|jddt j dd |jddt jd	d
d |jddddd |j }|jphtj}|jpttj	}|j
}|V y$|rtj|}ntj|tjd}W n* tk
r } zt|W Y d d }~X nX W d Q R X |" tj|||dd |jd W d Q R X d S )Nzpython -m json.toolzZA simple command line interface for json module to validate and pretty-print JSON objects.)progdescriptioninfile?z-a JSON file to be validated or pretty-printed)nargstypehelpoutfilewz%write the output of infile to outfilez--sort-keys
store_trueFz5sort the output of dictionaries alphabetically by key)actiondefaultr   )Zobject_pairs_hook   )	sort_keysindent
)argparseArgumentParseradd_argumentZFileType
parse_argsr   sysstdinr	   stdoutr   jsonloadcollectionsOrderedDict
ValueError
SystemExitdumpwrite)	r   r   parserZoptionsr   r	   r   obje r$   !/usr/lib64/python3.6/json/tool.pymain   s0    
$r&   __main__)__doc__r   r   r   r   r&   __name__r$   r$   r$   r%   <module>   s   PK     \~tc1  c1  #  __pycache__/__init__.cpython-36.pycnu [        3

  \<8              
   @   s   d Z dZdddddddgZd	Zd
dlmZmZ d
dlmZ ddl	Z	eddddddddZ
dddddddddd	ddZdddddddddd	ddZedddZdd ZdddddddddZddddddddddZdS )a  JSON (JavaScript Object Notation) <http://json.org> is a subset of
JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data
interchange format.

:mod:`json` exposes an API familiar to users of the standard library
:mod:`marshal` and :mod:`pickle` modules.  It is derived from a
version of the externally maintained simplejson library.

Encoding basic Python object hierarchies::

    >>> import json
    >>> json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])
    '["foo", {"bar": ["baz", null, 1.0, 2]}]'
    >>> print(json.dumps("\"foo\bar"))
    "\"foo\bar"
    >>> print(json.dumps('\u1234'))
    "\u1234"
    >>> print(json.dumps('\\'))
    "\\"
    >>> print(json.dumps({"c": 0, "b": 0, "a": 0}, sort_keys=True))
    {"a": 0, "b": 0, "c": 0}
    >>> from io import StringIO
    >>> io = StringIO()
    >>> json.dump(['streaming API'], io)
    >>> io.getvalue()
    '["streaming API"]'

Compact encoding::

    >>> import json
    >>> from collections import OrderedDict
    >>> mydict = OrderedDict([('4', 5), ('6', 7)])
    >>> json.dumps([1,2,3,mydict], separators=(',', ':'))
    '[1,2,3,{"4":5,"6":7}]'

Pretty printing::

    >>> import json
    >>> print(json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4))
    {
        "4": 5,
        "6": 7
    }

Decoding JSON::

    >>> import json
    >>> obj = ['foo', {'bar': ['baz', None, 1.0, 2]}]
    >>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]') == obj
    True
    >>> json.loads('"\\"foo\\bar"') == '"foo\x08ar'
    True
    >>> from io import StringIO
    >>> io = StringIO('["streaming API"]')
    >>> json.load(io)[0] == 'streaming API'
    True

Specializing JSON object decoding::

    >>> import json
    >>> def as_complex(dct):
    ...     if '__complex__' in dct:
    ...         return complex(dct['real'], dct['imag'])
    ...     return dct
    ...
    >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
    ...     object_hook=as_complex)
    (1+2j)
    >>> from decimal import Decimal
    >>> json.loads('1.1', parse_float=Decimal) == Decimal('1.1')
    True

Specializing JSON object encoding::

    >>> import json
    >>> def encode_complex(obj):
    ...     if isinstance(obj, complex):
    ...         return [obj.real, obj.imag]
    ...     raise TypeError(repr(obj) + " is not JSON serializable")
    ...
    >>> json.dumps(2 + 1j, default=encode_complex)
    '[2.0, 1.0]'
    >>> json.JSONEncoder(default=encode_complex).encode(2 + 1j)
    '[2.0, 1.0]'
    >>> ''.join(json.JSONEncoder(default=encode_complex).iterencode(2 + 1j))
    '[2.0, 1.0]'


Using json.tool from the shell to validate and pretty-print::

    $ echo '{"json":"obj"}' | python -m json.tool
    {
        "json": "obj"
    }
    $ echo '{ 1.2:3.4}' | python -m json.tool
    Expecting property name enclosed in double quotes: line 1 column 3 (char 2)
z2.0.9dumpdumpsloadloadsJSONDecoderJSONDecodeErrorJSONEncoderzBob Ippolito <bob@redivi.com>   )r   r   )r       NFT)skipkeysensure_asciicheck_circular	allow_nanindent
separatorsdefault)	r
   r   r   r   clsr   r   r   	sort_keysc   	         K   s   | rJ|rJ|rJ|rJ|dkrJ|dkrJ|dkrJ|	dkrJ|
 rJ| rJt j| }n2|dkrVt}|f |||||||	|
d|j| }x|D ]}|j| qW dS )a  Serialize ``obj`` as a JSON formatted stream to ``fp`` (a
    ``.write()``-supporting file-like object).

    If ``skipkeys`` is true then ``dict`` keys that are not basic types
    (``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped
    instead of raising a ``TypeError``.

    If ``ensure_ascii`` is false, then the strings written to ``fp`` can
    contain non-ASCII characters if they appear in strings contained in
    ``obj``. Otherwise, all such characters are escaped in JSON strings.

    If ``check_circular`` is false, then the circular reference check
    for container types will be skipped and a circular reference will
    result in an ``OverflowError`` (or worse).

    If ``allow_nan`` is false, then it will be a ``ValueError`` to
    serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``)
    in strict compliance of the JSON specification, instead of using the
    JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).

    If ``indent`` is a non-negative integer, then JSON array elements and
    object members will be pretty-printed with that indent level. An indent
    level of 0 will only insert newlines. ``None`` is the most compact
    representation.

    If specified, ``separators`` should be an ``(item_separator, key_separator)``
    tuple.  The default is ``(', ', ': ')`` if *indent* is ``None`` and
    ``(',', ': ')`` otherwise.  To get the most compact JSON representation,
    you should specify ``(',', ':')`` to eliminate whitespace.

    ``default(obj)`` is a function that should return a serializable version
    of obj or raise TypeError. The default simply raises TypeError.

    If *sort_keys* is true (default: ``False``), then the output of
    dictionaries will be sorted by key.

    To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the
    ``.default()`` method to serialize additional types), specify it with
    the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.

    N)r
   r   r   r   r   r   r   r   )_default_encoder
iterencoder   write)objfpr
   r   r   r   r   r   r   r   r   kwiterablechunk r   %/usr/lib64/python3.6/json/__init__.pyr   x   s    -

c   	         K   sz   | rH|rH|rH|rH|dkrH|dkrH|dkrH|dkrH|	 rH|
 rHt j| S |dkrTt}|f ||||||||	d|
j| S )au  Serialize ``obj`` to a JSON formatted ``str``.

    If ``skipkeys`` is true then ``dict`` keys that are not basic types
    (``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped
    instead of raising a ``TypeError``.

    If ``ensure_ascii`` is false, then the return value can contain non-ASCII
    characters if they appear in strings contained in ``obj``. Otherwise, all
    such characters are escaped in JSON strings.

    If ``check_circular`` is false, then the circular reference check
    for container types will be skipped and a circular reference will
    result in an ``OverflowError`` (or worse).

    If ``allow_nan`` is false, then it will be a ``ValueError`` to
    serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``) in
    strict compliance of the JSON specification, instead of using the
    JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).

    If ``indent`` is a non-negative integer, then JSON array elements and
    object members will be pretty-printed with that indent level. An indent
    level of 0 will only insert newlines. ``None`` is the most compact
    representation.

    If specified, ``separators`` should be an ``(item_separator, key_separator)``
    tuple.  The default is ``(', ', ': ')`` if *indent* is ``None`` and
    ``(',', ': ')`` otherwise.  To get the most compact JSON representation,
    you should specify ``(',', ':')`` to eliminate whitespace.

    ``default(obj)`` is a function that should return a serializable version
    of obj or raise TypeError. The default simply raises TypeError.

    If *sort_keys* is true (default: ``False``), then the output of
    dictionaries will be sorted by key.

    To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the
    ``.default()`` method to serialize additional types), specify it with
    the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.

    N)r
   r   r   r   r   r   r   r   )r   encoder   )r   r
   r   r   r   r   r   r   r   r   r   r   r   r   r      s    ,


)object_hookobject_pairs_hookc             C   s   | j }|tjtjfrdS |tjtjfr.dS |tjr<dS t| dkr| d s`| d r\dS dS | d s| d	 sx| d
 r|dS dS n$t| d	kr| d sdS | d sdS dS )Nzutf-32zutf-16z	utf-8-sig   r	   r   z	utf-16-bez	utf-32-be      z	utf-16-lez	utf-32-lezutf-8)
startswithcodecsBOM_UTF32_BEBOM_UTF32_LEBOM_UTF16_BEBOM_UTF16_LEBOM_UTF8len)bZbstartswithr   r   r   detect_encoding   s$    
r,   )r   r   parse_float	parse_intparse_constantr   c         	   K   s"   t | j f||||||d|S )a%  Deserialize ``fp`` (a ``.read()``-supporting file-like object containing
    a JSON document) to a Python object.

    ``object_hook`` is an optional function that will be called with the
    result of any object literal decode (a ``dict``). The return value of
    ``object_hook`` will be used instead of the ``dict``. This feature
    can be used to implement custom decoders (e.g. JSON-RPC class hinting).

    ``object_pairs_hook`` is an optional function that will be called with the
    result of any object literal decoded with an ordered list of pairs.  The
    return value of ``object_pairs_hook`` will be used instead of the ``dict``.
    This feature can be used to implement custom decoders that rely on the
    order that the key and value pairs are decoded (for example,
    collections.OrderedDict will remember the order of insertion). If
    ``object_hook`` is also defined, the ``object_pairs_hook`` takes priority.

    To use a custom ``JSONDecoder`` subclass, specify it with the ``cls``
    kwarg; otherwise ``JSONDecoder`` is used.

    )r   r   r-   r.   r/   r   )r   read)r   r   r   r-   r.   r/   r   r   r   r   r   r     s    
)encodingr   r   r-   r.   r/   r   c      	      K   s   t | tr"| jdrRtd| dn0t | ttfsBtdj| jj	| j
t| d} |dkr|dkr|dkr|dkr|dkr|dkr| rtj
| S |dkrt}|dk	r||d< |dk	r||d< |dk	r||d	< |dk	r||d
< |dk	r||d< |f |j
| S )a   Deserialize ``s`` (a ``str``, ``bytes`` or ``bytearray`` instance
    containing a JSON document) to a Python object.

    ``object_hook`` is an optional function that will be called with the
    result of any object literal decode (a ``dict``). The return value of
    ``object_hook`` will be used instead of the ``dict``. This feature
    can be used to implement custom decoders (e.g. JSON-RPC class hinting).

    ``object_pairs_hook`` is an optional function that will be called with the
    result of any object literal decoded with an ordered list of pairs.  The
    return value of ``object_pairs_hook`` will be used instead of the ``dict``.
    This feature can be used to implement custom decoders that rely on the
    order that the key and value pairs are decoded (for example,
    collections.OrderedDict will remember the order of insertion). If
    ``object_hook`` is also defined, the ``object_pairs_hook`` takes priority.

    ``parse_float``, if specified, will be called with the string
    of every JSON float to be decoded. By default this is equivalent to
    float(num_str). This can be used to use another datatype or parser
    for JSON floats (e.g. decimal.Decimal).

    ``parse_int``, if specified, will be called with the string
    of every JSON int to be decoded. By default this is equivalent to
    int(num_str). This can be used to use another datatype or parser
    for JSON integers (e.g. float).

    ``parse_constant``, if specified, will be called with one of the
    following strings: -Infinity, Infinity, NaN.
    This can be used to raise an exception if invalid JSON numbers
    are encountered.

    To use a custom ``JSONDecoder`` subclass, specify it with the ``cls``
    kwarg; otherwise ``JSONDecoder`` is used.

    The ``encoding`` argument is ignored and deprecated.

    u   ﻿z-Unexpected UTF-8 BOM (decode using utf-8-sig)r	   z9the JSON object must be str, bytes or bytearray, not {!r}surrogatepassNr   r   r-   r.   r/   )
isinstancestrr#   r   bytes	bytearray	TypeErrorformat	__class____name__decoder,   _default_decoderr   )	sr1   r   r   r-   r.   r/   r   r   r   r   r   r   .  s2    '



)__doc____version____all__
__author__decoderr   r   encoderr   r$   r   r   r   r<   r,   r   r   r   r   r   r   <module>a   s6   
=8PK     \;)    )  __pycache__/__init__.cpython-36.opt-2.pycnu [        3

  \<8              
   @   s   d Z dddddddgZdZd	d
lmZmZ d	dlmZ ddlZeddddddddZ	dddddddddd	ddZ
dddddddddd	ddZedddZdd ZdddddddddZddddddddddZdS )z2.0.9dumpdumpsloadloadsJSONDecoderJSONDecodeErrorJSONEncoderzBob Ippolito <bob@redivi.com>   )r   r   )r       NFT)skipkeysensure_asciicheck_circular	allow_nanindent
separatorsdefault)	r
   r   r   r   clsr   r   r   	sort_keysc   	         K   s   | rJ|rJ|rJ|rJ|d krJ|d krJ|d krJ|	d krJ|
 rJ| rJt j| }n2|d krVt}|f |||||||	|
d|j| }x|D ]}|j| qW d S )N)r
   r   r   r   r   r   r   r   )_default_encoder
iterencoder   write)objfpr
   r   r   r   r   r   r   r   r   kwiterablechunk r   %/usr/lib64/python3.6/json/__init__.pyr   x   s    -

c   	         K   sz   | rH|rH|rH|rH|d krH|d krH|d krH|d krH|	 rH|
 rHt j| S |d krTt}|f ||||||||	d|
j| S )N)r
   r   r   r   r   r   r   r   )r   encoder   )r   r
   r   r   r   r   r   r   r   r   r   r   r   r   r      s    ,


)object_hookobject_pairs_hookc             C   s   | j }|tjtjfrdS |tjtjfr.dS |tjr<dS t| dkr| d s`| d r\dS dS | d s| d	 sx| d
 r|dS dS n$t| d	kr| d sdS | d sdS dS )Nzutf-32zutf-16z	utf-8-sig   r	   r   z	utf-16-bez	utf-32-be      z	utf-16-lez	utf-32-lezutf-8)
startswithcodecsBOM_UTF32_BEBOM_UTF32_LEBOM_UTF16_BEBOM_UTF16_LEBOM_UTF8len)bZbstartswithr   r   r   detect_encoding   s$    
r,   )r   r   parse_float	parse_intparse_constantr   c         	   K   s"   t | j f||||||d|S )N)r   r   r-   r.   r/   r   )r   read)r   r   r   r-   r.   r/   r   r   r   r   r   r     s    
)encodingr   r   r-   r.   r/   r   c      	      K   s   t | tr"| jdrRtd| dn0t | ttfsBtdj| jj	| j
t| d} |d kr|d kr|d kr|d kr|d kr|d kr| rtj
| S |d krt}|d k	r||d< |d k	r||d< |d k	r||d< |d k	r||d	< |d k	r||d
< |f |j
| S )Nu   ﻿z-Unexpected UTF-8 BOM (decode using utf-8-sig)r	   z9the JSON object must be str, bytes or bytearray, not {!r}surrogatepassr   r   r-   r.   r/   )
isinstancestrr#   r   bytes	bytearray	TypeErrorformat	__class____name__decoder,   _default_decoderr   )	sr1   r   r   r-   r.   r/   r   r   r   r   r   r   .  s2    '



)__version____all__
__author__decoderr   r   encoderr   r$   r   r   r   r<   r,   r   r   r   r   r   r   <module>b   s4   
=8PK     \m~0)1  )1  
  decoder.pynu [        """Implementation of JSONDecoder
"""
import re

from json import scanner
try:
    from _json import scanstring as c_scanstring
except ImportError:
    c_scanstring = None

__all__ = ['JSONDecoder', 'JSONDecodeError']

FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL

NaN = float('nan')
PosInf = float('inf')
NegInf = float('-inf')


class JSONDecodeError(ValueError):
    """Subclass of ValueError with the following additional properties:

    msg: The unformatted error message
    doc: The JSON document being parsed
    pos: The start index of doc where parsing failed
    lineno: The line corresponding to pos
    colno: The column corresponding to pos

    """
    # Note that this exception is used from _json
    def __init__(self, msg, doc, pos):
        lineno = doc.count('\n', 0, pos) + 1
        colno = pos - doc.rfind('\n', 0, pos)
        errmsg = '%s: line %d column %d (char %d)' % (msg, lineno, colno, pos)
        ValueError.__init__(self, errmsg)
        self.msg = msg
        self.doc = doc
        self.pos = pos
        self.lineno = lineno
        self.colno = colno

    def __reduce__(self):
        return self.__class__, (self.msg, self.doc, self.pos)


_CONSTANTS = {
    '-Infinity': NegInf,
    'Infinity': PosInf,
    'NaN': NaN,
}


STRINGCHUNK = re.compile(r'(.*?)(["\\\x00-\x1f])', FLAGS)
BACKSLASH = {
    '"': '"', '\\': '\\', '/': '/',
    'b': '\b', 'f': '\f', 'n': '\n', 'r': '\r', 't': '\t',
}

def _decode_uXXXX(s, pos):
    esc = s[pos + 1:pos + 5]
    if len(esc) == 4 and esc[1] not in 'xX':
        try:
            return int(esc, 16)
        except ValueError:
            pass
    msg = "Invalid \\uXXXX escape"
    raise JSONDecodeError(msg, s, pos)

def py_scanstring(s, end, strict=True,
        _b=BACKSLASH, _m=STRINGCHUNK.match):
    """Scan the string s for a JSON string. End is the index of the
    character in s after the quote that started the JSON string.
    Unescapes all valid JSON string escape sequences and raises ValueError
    on attempt to decode an invalid string. If strict is False then literal
    control characters are allowed in the string.

    Returns a tuple of the decoded string and the index of the character in s
    after the end quote."""
    chunks = []
    _append = chunks.append
    begin = end - 1
    while 1:
        chunk = _m(s, end)
        if chunk is None:
            raise JSONDecodeError("Unterminated string starting at", s, begin)
        end = chunk.end()
        content, terminator = chunk.groups()
        # Content is contains zero or more unescaped string characters
        if content:
            _append(content)
        # Terminator is the end of string, a literal control character,
        # or a backslash denoting that an escape sequence follows
        if terminator == '"':
            break
        elif terminator != '\\':
            if strict:
                #msg = "Invalid control character %r at" % (terminator,)
                msg = "Invalid control character {0!r} at".format(terminator)
                raise JSONDecodeError(msg, s, end)
            else:
                _append(terminator)
                continue
        try:
            esc = s[end]
        except IndexError:
            raise JSONDecodeError("Unterminated string starting at", s, begin)
        # If not a unicode escape sequence, must be in the lookup table
        if esc != 'u':
            try:
                char = _b[esc]
            except KeyError:
                msg = "Invalid \\escape: {0!r}".format(esc)
                raise JSONDecodeError(msg, s, end)
            end += 1
        else:
            uni = _decode_uXXXX(s, end)
            end += 5
            if 0xd800 <= uni <= 0xdbff and s[end:end + 2] == '\\u':
                uni2 = _decode_uXXXX(s, end + 1)
                if 0xdc00 <= uni2 <= 0xdfff:
                    uni = 0x10000 + (((uni - 0xd800) << 10) | (uni2 - 0xdc00))
                    end += 6
            char = chr(uni)
        _append(char)
    return ''.join(chunks), end


# Use speedup if available
scanstring = c_scanstring or py_scanstring

WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS)
WHITESPACE_STR = ' \t\n\r'


def JSONObject(s_and_end, strict, scan_once, object_hook, object_pairs_hook,
               memo=None, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
    s, end = s_and_end
    pairs = []
    pairs_append = pairs.append
    # Backwards compatibility
    if memo is None:
        memo = {}
    memo_get = memo.setdefault
    # Use a slice to prevent IndexError from being raised, the following
    # check will raise a more specific ValueError if the string is empty
    nextchar = s[end:end + 1]
    # Normally we expect nextchar == '"'
    if nextchar != '"':
        if nextchar in _ws:
            end = _w(s, end).end()
            nextchar = s[end:end + 1]
        # Trivial empty object
        if nextchar == '}':
            if object_pairs_hook is not None:
                result = object_pairs_hook(pairs)
                return result, end + 1
            pairs = {}
            if object_hook is not None:
                pairs = object_hook(pairs)
            return pairs, end + 1
        elif nextchar != '"':
            raise JSONDecodeError(
                "Expecting property name enclosed in double quotes", s, end)
    end += 1
    while True:
        key, end = scanstring(s, end, strict)
        key = memo_get(key, key)
        # To skip some function call overhead we optimize the fast paths where
        # the JSON key separator is ": " or just ":".
        if s[end:end + 1] != ':':
            end = _w(s, end).end()
            if s[end:end + 1] != ':':
                raise JSONDecodeError("Expecting ':' delimiter", s, end)
        end += 1

        try:
            if s[end] in _ws:
                end += 1
                if s[end] in _ws:
                    end = _w(s, end + 1).end()
        except IndexError:
            pass

        try:
            value, end = scan_once(s, end)
        except StopIteration as err:
            raise JSONDecodeError("Expecting value", s, err.value) from None
        pairs_append((key, value))
        try:
            nextchar = s[end]
            if nextchar in _ws:
                end = _w(s, end + 1).end()
                nextchar = s[end]
        except IndexError:
            nextchar = ''
        end += 1

        if nextchar == '}':
            break
        elif nextchar != ',':
            raise JSONDecodeError("Expecting ',' delimiter", s, end - 1)
        end = _w(s, end).end()
        nextchar = s[end:end + 1]
        end += 1
        if nextchar != '"':
            raise JSONDecodeError(
                "Expecting property name enclosed in double quotes", s, end - 1)
    if object_pairs_hook is not None:
        result = object_pairs_hook(pairs)
        return result, end
    pairs = dict(pairs)
    if object_hook is not None:
        pairs = object_hook(pairs)
    return pairs, end

def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR):
    s, end = s_and_end
    values = []
    nextchar = s[end:end + 1]
    if nextchar in _ws:
        end = _w(s, end + 1).end()
        nextchar = s[end:end + 1]
    # Look-ahead for trivial empty array
    if nextchar == ']':
        return values, end + 1
    _append = values.append
    while True:
        try:
            value, end = scan_once(s, end)
        except StopIteration as err:
            raise JSONDecodeError("Expecting value", s, err.value) from None
        _append(value)
        nextchar = s[end:end + 1]
        if nextchar in _ws:
            end = _w(s, end + 1).end()
            nextchar = s[end:end + 1]
        end += 1
        if nextchar == ']':
            break
        elif nextchar != ',':
            raise JSONDecodeError("Expecting ',' delimiter", s, end - 1)
        try:
            if s[end] in _ws:
                end += 1
                if s[end] in _ws:
                    end = _w(s, end + 1).end()
        except IndexError:
            pass

    return values, end


class JSONDecoder(object):
    """Simple JSON <http://json.org> decoder

    Performs the following translations in decoding by default:

    +---------------+-------------------+
    | JSON          | Python            |
    +===============+===================+
    | object        | dict              |
    +---------------+-------------------+
    | array         | list              |
    +---------------+-------------------+
    | string        | str               |
    +---------------+-------------------+
    | number (int)  | int               |
    +---------------+-------------------+
    | number (real) | float             |
    +---------------+-------------------+
    | true          | True              |
    +---------------+-------------------+
    | false         | False             |
    +---------------+-------------------+
    | null          | None              |
    +---------------+-------------------+

    It also understands ``NaN``, ``Infinity``, and ``-Infinity`` as
    their corresponding ``float`` values, which is outside the JSON spec.

    """

    def __init__(self, *, object_hook=None, parse_float=None,
            parse_int=None, parse_constant=None, strict=True,
            object_pairs_hook=None):
        """``object_hook``, if specified, will be called with the result
        of every JSON object decoded and its return value will be used in
        place of the given ``dict``.  This can be used to provide custom
        deserializations (e.g. to support JSON-RPC class hinting).

        ``object_pairs_hook``, if specified will be called with the result of
        every JSON object decoded with an ordered list of pairs.  The return
        value of ``object_pairs_hook`` will be used instead of the ``dict``.
        This feature can be used to implement custom decoders that rely on the
        order that the key and value pairs are decoded (for example,
        collections.OrderedDict will remember the order of insertion). If
        ``object_hook`` is also defined, the ``object_pairs_hook`` takes
        priority.

        ``parse_float``, if specified, will be called with the string
        of every JSON float to be decoded. By default this is equivalent to
        float(num_str). This can be used to use another datatype or parser
        for JSON floats (e.g. decimal.Decimal).

        ``parse_int``, if specified, will be called with the string
        of every JSON int to be decoded. By default this is equivalent to
        int(num_str). This can be used to use another datatype or parser
        for JSON integers (e.g. float).

        ``parse_constant``, if specified, will be called with one of the
        following strings: -Infinity, Infinity, NaN.
        This can be used to raise an exception if invalid JSON numbers
        are encountered.

        If ``strict`` is false (true is the default), then control
        characters will be allowed inside strings.  Control characters in
        this context are those with character codes in the 0-31 range,
        including ``'\\t'`` (tab), ``'\\n'``, ``'\\r'`` and ``'\\0'``.

        """
        self.object_hook = object_hook
        self.parse_float = parse_float or float
        self.parse_int = parse_int or int
        self.parse_constant = parse_constant or _CONSTANTS.__getitem__
        self.strict = strict
        self.object_pairs_hook = object_pairs_hook
        self.parse_object = JSONObject
        self.parse_array = JSONArray
        self.parse_string = scanstring
        self.memo = {}
        self.scan_once = scanner.make_scanner(self)


    def decode(self, s, _w=WHITESPACE.match):
        """Return the Python representation of ``s`` (a ``str`` instance
        containing a JSON document).

        """
        obj, end = self.raw_decode(s, idx=_w(s, 0).end())
        end = _w(s, end).end()
        if end != len(s):
            raise JSONDecodeError("Extra data", s, end)
        return obj

    def raw_decode(self, s, idx=0):
        """Decode a JSON document from ``s`` (a ``str`` beginning with
        a JSON document) and return a 2-tuple of the Python
        representation and the index in ``s`` where the document ended.

        This can be used to decode a JSON document from a string that may
        have extraneous data at the end.

        """
        try:
            obj, end = self.scan_once(s, idx)
        except StopIteration as err:
            raise JSONDecodeError("Expecting value", s, err.value) from None
        return obj, end
PK     \<8  <8    __init__.pynu [        r"""JSON (JavaScript Object Notation) <http://json.org> is a subset of
JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data
interchange format.

:mod:`json` exposes an API familiar to users of the standard library
:mod:`marshal` and :mod:`pickle` modules.  It is derived from a
version of the externally maintained simplejson library.

Encoding basic Python object hierarchies::

    >>> import json
    >>> json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])
    '["foo", {"bar": ["baz", null, 1.0, 2]}]'
    >>> print(json.dumps("\"foo\bar"))
    "\"foo\bar"
    >>> print(json.dumps('\u1234'))
    "\u1234"
    >>> print(json.dumps('\\'))
    "\\"
    >>> print(json.dumps({"c": 0, "b": 0, "a": 0}, sort_keys=True))
    {"a": 0, "b": 0, "c": 0}
    >>> from io import StringIO
    >>> io = StringIO()
    >>> json.dump(['streaming API'], io)
    >>> io.getvalue()
    '["streaming API"]'

Compact encoding::

    >>> import json
    >>> from collections import OrderedDict
    >>> mydict = OrderedDict([('4', 5), ('6', 7)])
    >>> json.dumps([1,2,3,mydict], separators=(',', ':'))
    '[1,2,3,{"4":5,"6":7}]'

Pretty printing::

    >>> import json
    >>> print(json.dumps({'4': 5, '6': 7}, sort_keys=True, indent=4))
    {
        "4": 5,
        "6": 7
    }

Decoding JSON::

    >>> import json
    >>> obj = ['foo', {'bar': ['baz', None, 1.0, 2]}]
    >>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]') == obj
    True
    >>> json.loads('"\\"foo\\bar"') == '"foo\x08ar'
    True
    >>> from io import StringIO
    >>> io = StringIO('["streaming API"]')
    >>> json.load(io)[0] == 'streaming API'
    True

Specializing JSON object decoding::

    >>> import json
    >>> def as_complex(dct):
    ...     if '__complex__' in dct:
    ...         return complex(dct['real'], dct['imag'])
    ...     return dct
    ...
    >>> json.loads('{"__complex__": true, "real": 1, "imag": 2}',
    ...     object_hook=as_complex)
    (1+2j)
    >>> from decimal import Decimal
    >>> json.loads('1.1', parse_float=Decimal) == Decimal('1.1')
    True

Specializing JSON object encoding::

    >>> import json
    >>> def encode_complex(obj):
    ...     if isinstance(obj, complex):
    ...         return [obj.real, obj.imag]
    ...     raise TypeError(repr(obj) + " is not JSON serializable")
    ...
    >>> json.dumps(2 + 1j, default=encode_complex)
    '[2.0, 1.0]'
    >>> json.JSONEncoder(default=encode_complex).encode(2 + 1j)
    '[2.0, 1.0]'
    >>> ''.join(json.JSONEncoder(default=encode_complex).iterencode(2 + 1j))
    '[2.0, 1.0]'


Using json.tool from the shell to validate and pretty-print::

    $ echo '{"json":"obj"}' | python -m json.tool
    {
        "json": "obj"
    }
    $ echo '{ 1.2:3.4}' | python -m json.tool
    Expecting property name enclosed in double quotes: line 1 column 3 (char 2)
"""
__version__ = '2.0.9'
__all__ = [
    'dump', 'dumps', 'load', 'loads',
    'JSONDecoder', 'JSONDecodeError', 'JSONEncoder',
]

__author__ = 'Bob Ippolito <bob@redivi.com>'

from .decoder import JSONDecoder, JSONDecodeError
from .encoder import JSONEncoder
import codecs

_default_encoder = JSONEncoder(
    skipkeys=False,
    ensure_ascii=True,
    check_circular=True,
    allow_nan=True,
    indent=None,
    separators=None,
    default=None,
)

def dump(obj, fp, *, skipkeys=False, ensure_ascii=True, check_circular=True,
        allow_nan=True, cls=None, indent=None, separators=None,
        default=None, sort_keys=False, **kw):
    """Serialize ``obj`` as a JSON formatted stream to ``fp`` (a
    ``.write()``-supporting file-like object).

    If ``skipkeys`` is true then ``dict`` keys that are not basic types
    (``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped
    instead of raising a ``TypeError``.

    If ``ensure_ascii`` is false, then the strings written to ``fp`` can
    contain non-ASCII characters if they appear in strings contained in
    ``obj``. Otherwise, all such characters are escaped in JSON strings.

    If ``check_circular`` is false, then the circular reference check
    for container types will be skipped and a circular reference will
    result in an ``OverflowError`` (or worse).

    If ``allow_nan`` is false, then it will be a ``ValueError`` to
    serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``)
    in strict compliance of the JSON specification, instead of using the
    JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).

    If ``indent`` is a non-negative integer, then JSON array elements and
    object members will be pretty-printed with that indent level. An indent
    level of 0 will only insert newlines. ``None`` is the most compact
    representation.

    If specified, ``separators`` should be an ``(item_separator, key_separator)``
    tuple.  The default is ``(', ', ': ')`` if *indent* is ``None`` and
    ``(',', ': ')`` otherwise.  To get the most compact JSON representation,
    you should specify ``(',', ':')`` to eliminate whitespace.

    ``default(obj)`` is a function that should return a serializable version
    of obj or raise TypeError. The default simply raises TypeError.

    If *sort_keys* is true (default: ``False``), then the output of
    dictionaries will be sorted by key.

    To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the
    ``.default()`` method to serialize additional types), specify it with
    the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.

    """
    # cached encoder
    if (not skipkeys and ensure_ascii and
        check_circular and allow_nan and
        cls is None and indent is None and separators is None and
        default is None and not sort_keys and not kw):
        iterable = _default_encoder.iterencode(obj)
    else:
        if cls is None:
            cls = JSONEncoder
        iterable = cls(skipkeys=skipkeys, ensure_ascii=ensure_ascii,
            check_circular=check_circular, allow_nan=allow_nan, indent=indent,
            separators=separators,
            default=default, sort_keys=sort_keys, **kw).iterencode(obj)
    # could accelerate with writelines in some versions of Python, at
    # a debuggability cost
    for chunk in iterable:
        fp.write(chunk)


def dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True,
        allow_nan=True, cls=None, indent=None, separators=None,
        default=None, sort_keys=False, **kw):
    """Serialize ``obj`` to a JSON formatted ``str``.

    If ``skipkeys`` is true then ``dict`` keys that are not basic types
    (``str``, ``int``, ``float``, ``bool``, ``None``) will be skipped
    instead of raising a ``TypeError``.

    If ``ensure_ascii`` is false, then the return value can contain non-ASCII
    characters if they appear in strings contained in ``obj``. Otherwise, all
    such characters are escaped in JSON strings.

    If ``check_circular`` is false, then the circular reference check
    for container types will be skipped and a circular reference will
    result in an ``OverflowError`` (or worse).

    If ``allow_nan`` is false, then it will be a ``ValueError`` to
    serialize out of range ``float`` values (``nan``, ``inf``, ``-inf``) in
    strict compliance of the JSON specification, instead of using the
    JavaScript equivalents (``NaN``, ``Infinity``, ``-Infinity``).

    If ``indent`` is a non-negative integer, then JSON array elements and
    object members will be pretty-printed with that indent level. An indent
    level of 0 will only insert newlines. ``None`` is the most compact
    representation.

    If specified, ``separators`` should be an ``(item_separator, key_separator)``
    tuple.  The default is ``(', ', ': ')`` if *indent* is ``None`` and
    ``(',', ': ')`` otherwise.  To get the most compact JSON representation,
    you should specify ``(',', ':')`` to eliminate whitespace.

    ``default(obj)`` is a function that should return a serializable version
    of obj or raise TypeError. The default simply raises TypeError.

    If *sort_keys* is true (default: ``False``), then the output of
    dictionaries will be sorted by key.

    To use a custom ``JSONEncoder`` subclass (e.g. one that overrides the
    ``.default()`` method to serialize additional types), specify it with
    the ``cls`` kwarg; otherwise ``JSONEncoder`` is used.

    """
    # cached encoder
    if (not skipkeys and ensure_ascii and
        check_circular and allow_nan and
        cls is None and indent is None and separators is None and
        default is None and not sort_keys and not kw):
        return _default_encoder.encode(obj)
    if cls is None:
        cls = JSONEncoder
    return cls(
        skipkeys=skipkeys, ensure_ascii=ensure_ascii,
        check_circular=check_circular, allow_nan=allow_nan, indent=indent,
        separators=separators, default=default, sort_keys=sort_keys,
        **kw).encode(obj)


_default_decoder = JSONDecoder(object_hook=None, object_pairs_hook=None)


def detect_encoding(b):
    bstartswith = b.startswith
    if bstartswith((codecs.BOM_UTF32_BE, codecs.BOM_UTF32_LE)):
        return 'utf-32'
    if bstartswith((codecs.BOM_UTF16_BE, codecs.BOM_UTF16_LE)):
        return 'utf-16'
    if bstartswith(codecs.BOM_UTF8):
        return 'utf-8-sig'

    if len(b) >= 4:
        if not b[0]:
            # 00 00 -- -- - utf-32-be
            # 00 XX -- -- - utf-16-be
            return 'utf-16-be' if b[1] else 'utf-32-be'
        if not b[1]:
            # XX 00 00 00 - utf-32-le
            # XX 00 00 XX - utf-16-le
            # XX 00 XX -- - utf-16-le
            return 'utf-16-le' if b[2] or b[3] else 'utf-32-le'
    elif len(b) == 2:
        if not b[0]:
            # 00 XX - utf-16-be
            return 'utf-16-be'
        if not b[1]:
            # XX 00 - utf-16-le
            return 'utf-16-le'
    # default
    return 'utf-8'


def load(fp, *, cls=None, object_hook=None, parse_float=None,
        parse_int=None, parse_constant=None, object_pairs_hook=None, **kw):
    """Deserialize ``fp`` (a ``.read()``-supporting file-like object containing
    a JSON document) to a Python object.

    ``object_hook`` is an optional function that will be called with the
    result of any object literal decode (a ``dict``). The return value of
    ``object_hook`` will be used instead of the ``dict``. This feature
    can be used to implement custom decoders (e.g. JSON-RPC class hinting).

    ``object_pairs_hook`` is an optional function that will be called with the
    result of any object literal decoded with an ordered list of pairs.  The
    return value of ``object_pairs_hook`` will be used instead of the ``dict``.
    This feature can be used to implement custom decoders that rely on the
    order that the key and value pairs are decoded (for example,
    collections.OrderedDict will remember the order of insertion). If
    ``object_hook`` is also defined, the ``object_pairs_hook`` takes priority.

    To use a custom ``JSONDecoder`` subclass, specify it with the ``cls``
    kwarg; otherwise ``JSONDecoder`` is used.

    """
    return loads(fp.read(),
        cls=cls, object_hook=object_hook,
        parse_float=parse_float, parse_int=parse_int,
        parse_constant=parse_constant, object_pairs_hook=object_pairs_hook, **kw)


def loads(s, *, encoding=None, cls=None, object_hook=None, parse_float=None,
        parse_int=None, parse_constant=None, object_pairs_hook=None, **kw):
    """Deserialize ``s`` (a ``str``, ``bytes`` or ``bytearray`` instance
    containing a JSON document) to a Python object.

    ``object_hook`` is an optional function that will be called with the
    result of any object literal decode (a ``dict``). The return value of
    ``object_hook`` will be used instead of the ``dict``. This feature
    can be used to implement custom decoders (e.g. JSON-RPC class hinting).

    ``object_pairs_hook`` is an optional function that will be called with the
    result of any object literal decoded with an ordered list of pairs.  The
    return value of ``object_pairs_hook`` will be used instead of the ``dict``.
    This feature can be used to implement custom decoders that rely on the
    order that the key and value pairs are decoded (for example,
    collections.OrderedDict will remember the order of insertion). If
    ``object_hook`` is also defined, the ``object_pairs_hook`` takes priority.

    ``parse_float``, if specified, will be called with the string
    of every JSON float to be decoded. By default this is equivalent to
    float(num_str). This can be used to use another datatype or parser
    for JSON floats (e.g. decimal.Decimal).

    ``parse_int``, if specified, will be called with the string
    of every JSON int to be decoded. By default this is equivalent to
    int(num_str). This can be used to use another datatype or parser
    for JSON integers (e.g. float).

    ``parse_constant``, if specified, will be called with one of the
    following strings: -Infinity, Infinity, NaN.
    This can be used to raise an exception if invalid JSON numbers
    are encountered.

    To use a custom ``JSONDecoder`` subclass, specify it with the ``cls``
    kwarg; otherwise ``JSONDecoder`` is used.

    The ``encoding`` argument is ignored and deprecated.

    """
    if isinstance(s, str):
        if s.startswith('\ufeff'):
            raise JSONDecodeError("Unexpected UTF-8 BOM (decode using utf-8-sig)",
                                  s, 0)
    else:
        if not isinstance(s, (bytes, bytearray)):
            raise TypeError('the JSON object must be str, bytes or bytearray, '
                            'not {!r}'.format(s.__class__.__name__))
        s = s.decode(detect_encoding(s), 'surrogatepass')

    if (cls is None and object_hook is None and
            parse_int is None and parse_float is None and
            parse_constant is None and object_pairs_hook is None and not kw):
        return _default_decoder.decode(s)
    if cls is None:
        cls = JSONDecoder
    if object_hook is not None:
        kw['object_hook'] = object_hook
    if object_pairs_hook is not None:
        kw['object_pairs_hook'] = object_pairs_hook
    if parse_float is not None:
        kw['parse_float'] = parse_float
    if parse_int is not None:
        kw['parse_int'] = parse_int
    if parse_constant is not None:
        kw['parse_constant'] = parse_constant
    return cls(**kw).decode(s)
PK     \m  m    tool.pynu [        r"""Command-line tool to validate and pretty-print JSON

Usage::

    $ echo '{"json":"obj"}' | python -m json.tool
    {
        "json": "obj"
    }
    $ echo '{ 1.2:3.4}' | python -m json.tool
    Expecting property name enclosed in double quotes: line 1 column 3 (char 2)

"""
import argparse
import collections
import json
import sys


def main():
    prog = 'python -m json.tool'
    description = ('A simple command line interface for json module '
                   'to validate and pretty-print JSON objects.')
    parser = argparse.ArgumentParser(prog=prog, description=description)
    parser.add_argument('infile', nargs='?', type=argparse.FileType(),
                        help='a JSON file to be validated or pretty-printed')
    parser.add_argument('outfile', nargs='?', type=argparse.FileType('w'),
                        help='write the output of infile to outfile')
    parser.add_argument('--sort-keys', action='store_true', default=False,
                        help='sort the output of dictionaries alphabetically by key')
    options = parser.parse_args()

    infile = options.infile or sys.stdin
    outfile = options.outfile or sys.stdout
    sort_keys = options.sort_keys
    with infile:
        try:
            if sort_keys:
                obj = json.load(infile)
            else:
                obj = json.load(infile,
                                object_pairs_hook=collections.OrderedDict)
        except ValueError as e:
            raise SystemExit(e)
    with outfile:
        json.dump(obj, outfile, sort_keys=sort_keys, indent=4)
        outfile.write('\n')


if __name__ == '__main__':
    main()
PK       \ o	  o	  
                scanner.pynu [        PK       \탭>  >  
            	  encoder.pynu [        PK       \=տ    %            wH  __pycache__/tool.cpython-36.opt-1.pycnu [        PK       \    (            N  __pycache__/scanner.cpython-36.opt-1.pycnu [        PK       \    (            V  __pycache__/encoder.cpython-36.opt-2.pycnu [        PK       \.kW&  &  (            7r  __pycache__/decoder.cpython-36.opt-1.pycnu [        PK       \    "            t  __pycache__/scanner.cpython-36.pycnu [        PK       \f	n    (            z  __pycache__/decoder.cpython-36.opt-2.pycnu [        PK       \ީi    %              __pycache__/tool.cpython-36.opt-2.pycnu [        PK       \NTM+  +  (              __pycache__/encoder.cpython-36.opt-1.pycnu [        PK       \]    (              __pycache__/scanner.cpython-36.opt-2.pycnu [        PK       \~tc1  c1  )              __pycache__/__init__.cpython-36.opt-1.pycnu [        PK       \.kW&  &  "            # __pycache__/decoder.cpython-36.pycnu [        PK       \NTM+  +  "            J __pycache__/encoder.cpython-36.pycnu [        PK       \=տ                9w __pycache__/tool.cpython-36.pycnu [        PK       \~tc1  c1  #            } __pycache__/__init__.cpython-36.pycnu [        PK       \;)    )            I __pycache__/__init__.cpython-36.opt-2.pycnu [        PK       \m~0)1  )1  
            O decoder.pynu [        PK       \<8  <8               __init__.pynu [        PK       \m  m              )% too