
    ^i                         d Z ddlZ ej                  d      Z ej                  d      Z ej                  d      Z ej                  dj                  d dD                    Zy)	aA  
Terminal escape sequence patterns.

This module provides regex patterns for matching terminal escape sequences. All patterns match
sequences that begin with ESC (``\x1b``). Before calling re.match with these patterns, callers
should first check that the character at the current position is ESC for optimal performance.
    Nz\x1b\[[\x30-\x3f]*[\x20-\x2f]*[\x40-\x7e]|\x1b\][^\x07\x1b]*(?:\x07|\x1b\\)|\x1b_[^\x1b\x07]*(?:\x07|\x1b\\)|\x1bP[^\x1b\x07]*(?:\x07|\x1b\\)|\x1b\^[^\x1b\x07]*(?:\x07|\x1b\\)|\x1b[()].|\x1b[\x40-\x5f]|\x1b[78=>g]z\x1b\[(\d*)Cz\x1b\[(\d*)D|c              #   (   K   | ]
  }d | d  yw)z(?:)N ).0_patterns     ^/home/ubuntu/crypto_trading_bot/.venv/lib/python3.12/site-packages/wcwidth/escape_sequences.py	<genexpr>r
   .   s      8s8*A s   )z\x1b\[\d+;\d+rz
\x1b\[\d*Kz
\x1b\[\d*Jz
\x1b\[\d*Gz\x1b\[\d+;\d+Hz
\x1b\[\d*Hz
\x1b\[\d*Az
\x1b\[\d*Bz
\x1b\[\d*Pz
\x1b\[\d*Mz
\x1b\[\d*Lz
\x1b\[\d*@z
\x1b\[\d+Xz
\x1b\[\d*Sz
\x1b\[\d*Tz
\x1b\[\d*dz\x1b\[\?1049[hl]z\x1b\[\?47[hl]z\x1b8z\x1bDz\x1bM)__doc__recompileZERO_WIDTH_PATTERNCURSOR_RIGHT_SEQUENCECURSOR_LEFT_SEQUENCEjoinINDETERMINATE_EFFECT_SEQUENCEr       r	   <module>r      s{    
  RZZ ( #

?3  "rzz/2  !+

HH  0  ! r   