https://t.me/RX1948
Server : Apache
System : Linux iad1-shared-b8-43 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
User : dh_edsupp ( 6597262)
PHP Version : 8.2.26
Disable Function : NONE
Directory :  /lib/python3/dist-packages/pygments/lexers/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //lib/python3/dist-packages/pygments/lexers/__pycache__/esoteric.cpython-310.pyc
o

���a�(�@s�dZddlmZmZmZmZddlmZmZm	Z	m
Z
mZmZm
Z
mZmZmZgd�ZGdd�de�ZGdd�de�ZGd	d
�d
e�ZGdd�de�ZGd
d�de�ZGdd�de�ZdS)z�
    pygments.lexers.esoteric
    ~~~~~~~~~~~~~~~~~~~~~~~~

    Lexers for esoteric languages.

    :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details.
�)�
RegexLexer�include�words�bygroups)
�Text�Comment�Operator�Keyword�Name�String�Number�Punctuation�Error�
Whitespace)�BrainfuckLexer�BefungeLexer�RedcodeLexer�CAmkESLexer�
CapDLLexer�
AheuiLexerc@s�eZdZdZdZddgZddgZdgZdej	fd	ej
fd
ejfdefgde
d
fdefed�gde
dfde
dfed�gd�Zdd�ZdS)rze
    Lexer for the esoteric `BrainFuck <http://www.muppetlabs.com/~breadbox/bf/>`_
    language.
    �	Brainfuck�	brainfuck�bfz*.bfz*.bzapplication/x-brainfuckz[.,]+z[+-]+z[<>]+z[^.,+\-<>\[\]]+z\[�loopz\]�commonz#pushz#pop)r�rootrcCs�d}d}tdt|��}|d|�D]}|dks|dkr|d7}|dks'|dkr+|d7}q|d	|kr4d
S|d	|kr<d
Sd}d|vrF|d7}|S)
z]It's safe to assume that a program which mostly consists of + -
        and < > is brainfuck.r�N�+�-��<�>g�?g�?z[-]g�?)�max�len)�text�plus_minus_count�greater_less_count�range_to_check�c�result�r*�:/usr/lib/python3/dist-packages/pygments/lexers/esoteric.py�analyse_text2s"�zBrainfuckLexer.analyse_textN)�__name__�
__module__�__qualname__�__doc__�name�aliases�	filenames�	mimetypesr
�Tag�Builtin�Variablerr	rr�tokensr,r*r*r*r+rs*����rc@s�eZdZdZdZdgZdgZdgZddefde	fd	e
jfd
e
jfde
fde
jfd
ejfdejfdefde
fdefdefgiZdS)rz{
    Lexer for the esoteric `Befunge <http://en.wikipedia.org/wiki/Befunge>`_
    language.

    .. versionadded:: 0.7
    �Befunge�befungez	*.befungezapplication/x-befungerz[0-9a-f]z	[+*/%!`-]z[<>^v?\[\]rxjk]z	[:\\$.,n]z[|_mw]z[{}]z".*?"z\'.z[#;]z
[pg&~=@iotsy]z[()A-Z]�\s+N)r-r.r/r0r1r2r3r4rrr
r7r6r	r5r�Double�Singlerrr8r*r*r*r+rLs*��rc@s�eZdZdZdZddgZddgZddeee	j
e�fd	efd
e	fde	fdefd
efe
ddd�efe
ddd�ejfdejfe
ddd�ejfdee	j
ee	j
�fdee	j
ee	j
�fdejfdefdejfdefdejfdefgiZdS)rz�
    Basic lexer for the input language for the
    `CAmkES <https://sel4.systems/CAmkES/>`_ component platform.

    .. versionadded:: 2.1
    �CAmkES�camkes�idl4z*.camkesz*.idl4r�^(\s*)(#.*)(\n)r;�/\*(.|\n)*?\*/z//.*$z
[\[(){},.;\]]z[~!%^&*+=|?:<>/-])"�assembly�	attribute�	component�composition�
configuration�
connection�	connector�consumes�control�dataport�Dataport�	Dataports�emits�event�Event�Events�export�from�group�hardware�has�	interface�	Interface�maybe�	procedure�	Procedure�
Procedures�provides�template�thread�threads�to�uses�with�\b��suffix)�bool�boolean�Buf�char�	character�double�float�in�inout�int�int16_6�int32_t�int64_t�int8_t�integer�mutex�out�real�refin�	semaphore�signed�string�struct�uint16_t�uint32_t�uint64_t�uint8_t�	uintptr_t�unsigned�voidz%[a-zA-Z_]\w*_(priority|domain|buffer))�dma_pool�from_access�	to_accessz#(import)(\s+)((?:<[^>]*>|"[^"]*");)z$(include)(\s+)((?:<[^>]*>|"[^"]*");)�0[xX][\da-fA-F]+z-?[\d]+z-?[\d]+\.[\d]+z"[^"]*"z[Tt]rue|[Ff]alsez[a-zA-Z_]\w*N)r-r.r/r0r1r2r3rrr�Preprocr
rrr	�Type�Reservedr�Hex�Floatrr
r6r8r*r*r*r+rjsT
���	��	
�����rc@s�eZdZdZdZdgZdgZddeee	j
e�fdefde	fd	e	fd
efdefedd
d�e
fedd
d�e
jfedd
d�e
jfdejfdefedd
d�efedd
d�efdefgiZdS)ra=
    Basic lexer for
    `CapDL <https://ssrg.nicta.com.au/publications/nictaabstracts/Kuz_KLW_10.abstract.pml>`_.

    The source of the primary tool that reads such specifications is available
    at https://github.com/seL4/capdl/tree/master/capDL-tool. Note that this
    lexer only supports a subset of the grammar. For example, identifiers can
    shadow type names, but these instances are currently incorrectly
    highlighted as types. Supporting this would need a stateful lexer that is
    considered unnecessarily complex for now.

    .. versionadded:: 2.2
    �CapDL�capdlz*.cdlrrAr;rBz
(//|--).*$z[<>\[(){},:;=\]]z\.\.)�arch�arm11�caps�child_of�ia32�irq�maps�objectsrerf)�aep�	asid_pool�cnode�ep�frame�	io_device�io_ports�io_pt�notification�pd�pt�tcb�ut�vcpu)�asid�addr�badge�cached�dom�domainID�elf�fault_ep�G�guard�
guard_size�init�ip�prio�sp�R�RG�RX�RW�RWG�RWX�W�WG�WX�level�masked�master_reply�paddr�ports�reply�uncachedr�z\d+(\.\d+)?(k|M)?)�bits)�cspace�vspace�
reply_slot�caller_slot�ipc_buffer_slotz[a-zA-Z_][-@\.\w]*N)r-r.r/r0r1r2r3rrrr�r
rr	r�r�rr�r
r8r*r*r*r+r�sP
�����������rc@s�eZdZdZdZdgZdgZdZdZdde	fd	e
jfd
d�e�e
jfd
d�e�e
jfde
fd
efdefdefdejfg	iZdS)rz�
    A simple Redcode lexer based on ICWS'94.
    Contributed by Adam Blinkinsop <blinks@acm.org>.

    .. versionadded:: 0.8
    �Redcode�redcodez*.cw)�DAT�MOV�ADD�SUB�MUL�DIV�MOD�JMP�JMZ�JMN�DJN�CMP�SLT�SPL�ORG�EQU�END)�A�B�AB�BA�F�X�Irr;z;.*$z\b(%s)\b�|z[A-Za-z_]\w+z[-+*/%]z[#$@<>]z[.,]z[-+]?\d+N)r-r.r/r0r1r2r3�opcodes�	modifiersrrr=�joinr
�Function�	Decoratorrr
r�Integerr8r*r*r*r+r�s&��rc@s4eZdZdZdZdgZdgZddefdefgiZ	dS)	rz|
    Aheui_ Lexer.

    Aheui_ is esoteric language based on Korean alphabets.

    .. _Aheui: http://aheui.github.io/

    �Aheui�aheuiz*.aheuiru�[나-낳냐-냫너-넣녀-녛노-놓뇨-눟뉴-닇다-닿댜-댷더-덯뎌-뎧도-돟됴-둫듀-딓따-땋땨-떃떠-떻뗘-뗳또-똫뚀-뚷뜌-띟라-랗랴-럏러-렇려-렿로-롷료-뤃류-릫마-맣먀-먛머-멓며-몋모-뫃묘-뭏뮤-믷바-밯뱌-뱧버-벟벼-볗보-봏뵤-붛뷰-빃빠-빻뺘-뺳뻐-뻫뼈-뼣뽀-뽛뾰-뿧쀼-삏사-샇샤-샿서-섷셔-셯소-솧쇼-숳슈-싛싸-쌓쌰-썋써-쎃쎠-쎻쏘-쏳쑈-쑿쓔-씧자-잫쟈-쟣저-젛져-졓조-좋죠-줗쥬-즿차-챃챠-챻처-첳쳐-쳫초-촣쵸-춯츄-칗카-캏캬-컇커-컿켜-켷코-콯쿄-쿻큐-킣타-탛탸-턓터-텋텨-톃토-톻툐-퉇튜-틯파-팧퍄-퍟퍼-펗펴-폏포-퐇표-풓퓨-픻하-핳햐-햫허-헣혀-혛호-홓효-훟휴-힇]�.N)
r-r.r/r0r1r2r3rrr8r*r*r*r+rs	���rN)r0�pygments.lexerrrrr�pygments.tokenrrrr	r
rrr
rr�__all__rrrrrrr*r*r*r+�<module>s
09D<$

https://t.me/RX1948 - 2025