<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
B
    VXY                 @   s0   d Z dgZdd ZdddZG dd deZdS )	z!Error classes used by simplejson
JSONDecodeErrorc             C   s>   |  dd|d }|dkr$|d }n|| dd| }||fS )N
       )countrindex)docposlinenocolno r   D/opt/alt/python37/lib64/python3.7/site-packages/simplejson/errors.pylinecol   s
    
r   Nc       	      C   sn   t ||\}}| dt|||d  } |d krFd}|| |||f S t ||\}}d}|| ||||||f S )Nz%rr   z%s: line %d column %d (char %d)z8%s: line %d column %d - line %d column %d (char %d - %d))r   replacerepr)	msgr   r   endr	   r
   fmt	endlinenoendcolnor   r   r   errmsg   s    r   c               @   s"   e Zd ZdZd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
    end: The end index of doc where parsing failed (may be None)
    lineno: The line corresponding to pos
    colno: The column corresponding to pos
    endlineno: The line corresponding to end (may be None)
    endcolno: The column corresponding to end (may be None)

    Nc          	   C   sn   t | t||||d || _|| _|| _|| _t||\| _| _	|d k	r^t||\| _
| _nd\| _
| _d S )N)r   )NN)
ValueError__init__r   r   r   r   r   r   r	   r
   r   r   )selfr   r   r   r   r   r   r   r   (   s    zJSONDecodeError.__init__c             C   s   | j | j| j| j| jffS )N)	__class__r   r   r   r   )r   r   r   r   
__reduce__4   s    zJSONDecodeError.__reduce__)N)__name__
__module____qualname____doc__r   r   r   r   r   r   r      s   
)N)r   __all__r   r   r   r   r   r   r   r   <module>   s   	
