$24 GRAYBYTE WORDPRESS FILE MANAGER $70

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.43.35 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python311/lib64/python3.11/asyncio/__pycache__/

HOME
Current File : /opt/alt/python311/lib64/python3.11/asyncio/__pycache__//transports.cpython-311.opt-1.pyc
�

���h�)����dZdZGd�d��ZGd�de��ZGd�de��ZGd�d	ee��ZGd
�de��ZGd�d
e��ZGd�de��ZdS)zAbstract Transport class.)�
BaseTransport�
ReadTransport�WriteTransport�	Transport�DatagramTransport�SubprocessTransportc�>�eZdZdZdZd
d�Zd
d�Zd�Zd�Zd�Z	d	�Z
dS)rzBase class for transports.��_extraNc��|�i}||_dS�Nr	)�self�extras  �9/opt/alt/python311/lib64/python3.11/asyncio/transports.py�__init__zBaseTransport.__init__s���=��E������c�8�|j�||��S)z#Get optional transport information.)r
�get)r
�name�defaults   r�get_extra_infozBaseTransport.get_extra_infos���{���t�W�-�-�-rc��t�)z2Return True if the transport is closing or closed.��NotImplementedError�r
s r�
is_closingzBaseTransport.is_closing���!�!rc��t�)aClose the transport.

        Buffered data will be flushed asynchronously.  No more data
        will be received.  After all buffered data is flushed, the
        protocol's connection_lost() method will (eventually) be
        called with None as its argument.
        rrs r�closezBaseTransport.close�
��"�!rc��t�)zSet a new protocol.r)r
�protocols  r�set_protocolzBaseTransport.set_protocol%rrc��t�)zReturn the current protocol.rrs r�get_protocolzBaseTransport.get_protocol)rrr)�__name__�
__module__�__qualname__�__doc__�	__slots__rrrrr"r$�rrrr	s�������$�$��I�����
.�.�.�.�"�"�"�"�"�"�"�"�"�"�"�"�"�"rrc�(�eZdZdZdZd�Zd�Zd�ZdS)rz#Interface for read-only transports.r*c��t�)z*Return True if the transport is receiving.rrs r�
is_readingzReadTransport.is_reading3rrc��t�)z�Pause the receiving end.

        No data will be passed to the protocol's data_received()
        method until resume_reading() is called.
        rrs r�
pause_readingzReadTransport.pause_reading7�
��"�!rc��t�)z�Resume the receiving end.

        Data received will once again be passed to the protocol's
        data_received() method.
        rrs r�resume_readingzReadTransport.resume_reading?r0rN)r%r&r'r(r)r-r/r2r*rrrr.sL������-�-��I�"�"�"�"�"�"�"�"�"�"�"rrc�H�eZdZdZdZdd�Zd�Zd�Zd�Zd�Z	d	�Z
d
�Zd�ZdS)
rz$Interface for write-only transports.r*Nc��t�)a�Set the high- and low-water limits for write flow control.

        These two values control when to call the protocol's
        pause_writing() and resume_writing() methods.  If specified,
        the low-water limit must be less than or equal to the
        high-water limit.  Neither value can be negative.

        The defaults are implementation-specific.  If only the
        high-water limit is given, the low-water limit defaults to an
        implementation-specific value less than or equal to the
        high-water limit.  Setting high to zero forces low to zero as
        well, and causes pause_writing() to be called whenever the
        buffer becomes non-empty.  Setting low to zero causes
        resume_writing() to be called only once the buffer is empty.
        Use of zero for either limit is generally sub-optimal as it
        reduces opportunities for doing I/O and computation
        concurrently.
        r�r
�high�lows   r�set_write_buffer_limitsz&WriteTransport.set_write_buffer_limitsMs
��&"�!rc��t�)z,Return the current size of the write buffer.rrs r�get_write_buffer_sizez$WriteTransport.get_write_buffer_sizebrrc��t�)z�Get the high and low watermarks for write flow control.
        Return a tuple (low, high) where low and high are
        positive number of bytes.rrs r�get_write_buffer_limitsz&WriteTransport.get_write_buffer_limitsfs
��"�!rc��t�)z�Write some data bytes to the transport.

        This does not block; it buffers the data and arranges for it
        to be sent out asynchronously.
        r)r
�datas  r�writezWriteTransport.writelr0rc�Z�d�|��}|�|��dS)z�Write a list (or any iterable) of data bytes to the transport.

        The default implementation concatenates the arguments and
        calls write() on the result.
        rN)�joinr?)r
�list_of_datar>s   r�
writelineszWriteTransport.writelinests-���x�x��%�%���
�
�4�����rc��t�)z�Close the write end after flushing buffered data.

        (This is like typing ^D into a UNIX program reading from stdin.)

        Data may still be received.
        rrs r�	write_eofzWriteTransport.write_eof}�
��"�!rc��t�)zAReturn True if this transport supports write_eof(), False if not.rrs r�
can_write_eofzWriteTransport.can_write_eof�rrc��t��z�Close the transport immediately.

        Buffered data will be lost.  No more data will be received.
        The protocol's connection_lost() method will (eventually) be
        called with None as its argument.
        rrs r�abortzWriteTransport.abort�rFr�NN)
r%r&r'r(r)r8r:r<r?rCrErHrKr*rrrrHs�������.�.��I�"�"�"�"�*"�"�"�"�"�"�"�"�"����"�"�"�"�"�"�"�"�"�"�"rrc��eZdZdZdZdS)raSInterface representing a bidirectional transport.

    There may be several implementations, but typically, the user does
    not implement new transports; rather, the platform provides some
    useful transports that are implemented using the platform's best
    practices.

    The user never instantiates a transport directly; they call a
    utility function, passing it a protocol factory and other
    information necessary to create the transport and protocol.  (E.g.
    EventLoop.create_connection() or EventLoop.create_server().)

    The utility function will asynchronously create a transport and a
    protocol and hook them up by calling the protocol's
    connection_made() method, passing it the transport.

    The implementation here raises NotImplemented for every method
    except writelines(), which calls write() in a loop.
    r*N)r%r&r'r(r)r*rrrr�s��������(�I�I�Irrc�$�eZdZdZdZdd�Zd�ZdS)rz(Interface for datagram (UDP) transports.r*Nc��t�)aSend data to the transport.

        This does not block; it buffers the data and arranges for it
        to be sent out asynchronously.
        addr is target socket address.
        If addr is None use target address pointed on transport creation.
        r)r
r>�addrs   r�sendtozDatagramTransport.sendto�rrc��t�rJrrs rrKzDatagramTransport.abort�rFrr)r%r&r'r(r)rQrKr*rrrr�sB������2�2��I�"�"�"�"�"�"�"�"�"rrc�6�eZdZdZd�Zd�Zd�Zd�Zd�Zd�Z	dS)	rr*c��t�)zGet subprocess id.rrs r�get_pidzSubprocessTransport.get_pid�rrc��t�)z�Get subprocess returncode.

        See also
        http://docs.python.org/3/library/subprocess#subprocess.Popen.returncode
        rrs r�get_returncodez"SubprocessTransport.get_returncode�r0rc��t�)z&Get transport for pipe with number fd.r)r
�fds  r�get_pipe_transportz&SubprocessTransport.get_pipe_transport�rrc��t�)z�Send signal to subprocess.

        See also:
        docs.python.org/3/library/subprocess#subprocess.Popen.send_signal
        r)r
�signals  r�send_signalzSubprocessTransport.send_signal�r0rc��t�)aLStop the subprocess.

        Alias for close() method.

        On Posix OSs the method sends SIGTERM to the subprocess.
        On Windows the Win32 API function TerminateProcess()
         is called to stop the subprocess.

        See also:
        http://docs.python.org/3/library/subprocess#subprocess.Popen.terminate
        rrs r�	terminatezSubprocessTransport.terminate�s
��"�!rc��t�)z�Kill the subprocess.

        On Posix OSs the function sends SIGKILL to the subprocess.
        On Windows kill() is an alias for terminate().

        See also:
        http://docs.python.org/3/library/subprocess#subprocess.Popen.kill
        rrs r�killzSubprocessTransport.kill�s
��"�!rN)
r%r&r'r)rUrWrZr]r_rar*rrrr�ss�������I�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�	"�	"�	"�	"�	"rrc�P��eZdZdZdZd�fd�	Zd�Zd�Zd�Zdd�Z	dd	�Z
d
�Z�xZS)�_FlowControlMixinavAll the logic for (write) flow control in a mix-in base class.

    The subclass must implement get_write_buffer_size().  It must call
    _maybe_pause_protocol() whenever the write buffer size increases,
    and _maybe_resume_protocol() whenever it decreases.  It may also
    override set_write_buffer_limits() (e.g. to specify different
    defaults).

    The subclass constructor must call super().__init__(extra).  This
    will call set_write_buffer_limits().

    The user may call set_write_buffer_limits() and
    get_write_buffer_size(), and their protocol's pause_writing() and
    resume_writing() may be called.
    )�_loop�_protocol_paused�_high_water�
_low_waterNc���t���|��||_d|_|���dS)NF)�superrrdre�_set_write_buffer_limits)r
r�loop�	__class__s   �rrz_FlowControlMixin.__init__sB���
�����������
� %����%�%�'�'�'�'�'rc�6�|���}||jkrdS|jspd|_	|j���dS#t
tf$r�t$r/}|j�	d|||jd���Yd}~dSd}~wwxYwdS)NTzprotocol.pause_writing() failed��message�	exception�	transportr!)
r:rfre�	_protocol�
pause_writing�
SystemExit�KeyboardInterrupt�
BaseExceptionrd�call_exception_handler)r
�size�excs   r�_maybe_pause_protocolz'_FlowControlMixin._maybe_pause_protocols����)�)�+�+���4�#�#�#��F��$�	�$(�D�!�

���,�,�.�.�.�.�.��� 1�2�
�
�
�� �
�
�
��
�1�1�@�!$�!%� $��	3�3��������������
����
	�	s�A�B�'$B�Bc�2�|jr�|���|jkrrd|_	|j���dS#t
tf$r�t$r/}|j�	d|||jd���Yd}~dSd}~wwxYwdSdS)NFz protocol.resume_writing() failedrn)
rer:rgrr�resume_writingrtrurvrdrw)r
rys  r�_maybe_resume_protocolz(_FlowControlMixin._maybe_resume_protocol's����!�
	��*�*�,�,���?�?�$)�D�!�

���-�-�/�/�/�/�/��� 1�2�
�
�
�� �
�
�
��
�1�1�A�!$�!%� $��	3�3��������������
����
	�
	�?�?s�A�B�#$B
�
Bc��|j|jfSr)rgrfrs rr<z)_FlowControlMixin.get_write_buffer_limits7s�����!1�2�2rc��|�
|�d}nd|z}|�|dz}||cxkrdksntd|�d|�d����||_||_dS)Ni��zhigh (z) must be >= low (z) must be >= 0)�
ValueErrorrfrgr5s   rrjz*_FlowControlMixin._set_write_buffer_limits:s����<��{� ����3�w���;��!�)�C��s�����a������H��H�H�3�H�H�H�J�J�
J� �������rc�\�|�||���|���dS)N)r6r7)rjrzr5s   rr8z)_FlowControlMixin.set_write_buffer_limitsJs3���%�%�4�S�%�9�9�9��"�"�$�$�$�$�$rc��t�rrrs rr:z'_FlowControlMixin.get_write_buffer_sizeNs��!�!rrL)
r%r&r'r(r)rrzr}r<rjr8r:�
__classcell__)rls@rrcrc�s���������� K�I�(�(�(�(�(�(����$��� 3�3�3����� %�%�%�%�"�"�"�"�"�"�"rrcN)	r(�__all__rrrrrrrcr*rr�<module>r�sW������""�""�""�""�""�""�""�""�J"�"�"�"�"�M�"�"�"�4I"�I"�I"�I"�I"�]�I"�I"�I"�X�����
�~����0"�"�"�"�"�
�"�"�"�23"�3"�3"�3"�3"�-�3"�3"�3"�lT"�T"�T"�T"�T"�	�T"�T"�T"�T"�T"r


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
10 Feb 2026 9.36 AM
root / linksafe
0755
__init__.cpython-311.opt-1.pyc
1.326 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
__init__.cpython-311.opt-2.pyc
1.272 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
__init__.cpython-311.pyc
1.326 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
__main__.cpython-311.opt-1.pyc
5.888 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
__main__.cpython-311.opt-2.pyc
5.888 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
__main__.cpython-311.pyc
5.888 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_events.cpython-311.opt-1.pyc
89 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_events.cpython-311.opt-2.pyc
80.748 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_events.cpython-311.pyc
89.081 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_futures.cpython-311.opt-1.pyc
3.322 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_futures.cpython-311.opt-2.pyc
3.089 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_futures.cpython-311.pyc
3.322 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_subprocess.cpython-311.opt-1.pyc
16.154 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_subprocess.cpython-311.opt-2.pyc
16.063 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_subprocess.cpython-311.pyc
16.325 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_tasks.cpython-311.opt-1.pyc
4.092 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_tasks.cpython-311.opt-2.pyc
4.092 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
base_tasks.cpython-311.pyc
4.092 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
constants.cpython-311.opt-1.pyc
0.954 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
constants.cpython-311.opt-2.pyc
0.954 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
constants.cpython-311.pyc
0.954 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
coroutines.cpython-311.opt-1.pyc
3.859 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
coroutines.cpython-311.opt-2.pyc
3.773 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
coroutines.cpython-311.pyc
3.917 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
events.cpython-311.opt-1.pyc
36.919 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
events.cpython-311.opt-2.pyc
27.832 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
events.cpython-311.pyc
36.919 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
exceptions.cpython-311.opt-1.pyc
3.571 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
exceptions.cpython-311.opt-2.pyc
2.914 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
exceptions.cpython-311.pyc
3.571 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
format_helpers.cpython-311.opt-1.pyc
4.048 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
format_helpers.cpython-311.opt-2.pyc
3.823 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
format_helpers.cpython-311.pyc
4.048 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
futures.cpython-311.opt-1.pyc
17.688 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
futures.cpython-311.opt-2.pyc
14.378 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
futures.cpython-311.pyc
18.084 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
locks.cpython-311.opt-1.pyc
28.536 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
locks.cpython-311.opt-2.pyc
21.504 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
locks.cpython-311.pyc
28.536 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
log.cpython-311.opt-1.pyc
0.301 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
log.cpython-311.opt-2.pyc
0.264 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
log.cpython-311.pyc
0.301 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
mixins.cpython-311.opt-1.pyc
1.182 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
mixins.cpython-311.opt-2.pyc
1.148 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
mixins.cpython-311.pyc
1.182 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
proactor_events.cpython-311.opt-1.pyc
46.059 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
proactor_events.cpython-311.opt-2.pyc
45.672 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
proactor_events.cpython-311.pyc
46.636 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
protocols.cpython-311.opt-1.pyc
9.237 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
protocols.cpython-311.opt-2.pyc
4.345 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
protocols.cpython-311.pyc
9.237 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
queues.cpython-311.opt-1.pyc
12.539 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
queues.cpython-311.opt-2.pyc
9.982 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
queues.cpython-311.pyc
12.539 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
runners.cpython-311.opt-1.pyc
10.007 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
runners.cpython-311.opt-2.pyc
8.438 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
runners.cpython-311.pyc
10.007 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
selector_events.cpython-311.opt-1.pyc
62.623 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
selector_events.cpython-311.opt-2.pyc
60.669 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
selector_events.cpython-311.pyc
62.701 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
sslproto.cpython-311.opt-1.pyc
42.441 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
sslproto.cpython-311.opt-2.pyc
38.593 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
sslproto.cpython-311.pyc
42.506 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
staggered.cpython-311.opt-1.pyc
6.073 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
staggered.cpython-311.opt-2.pyc
3.998 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
staggered.cpython-311.pyc
6.494 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
streams.cpython-311.opt-1.pyc
33.789 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
streams.cpython-311.opt-2.pyc
28.121 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
streams.cpython-311.pyc
34.184 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
subprocess.cpython-311.opt-1.pyc
12.353 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
subprocess.cpython-311.opt-2.pyc
12.233 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
subprocess.cpython-311.pyc
12.379 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
taskgroups.cpython-311.opt-1.pyc
7.813 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
taskgroups.cpython-311.opt-2.pyc
7.146 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
taskgroups.cpython-311.pyc
7.915 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
tasks.cpython-311.opt-1.pyc
39.97 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
tasks.cpython-311.opt-2.pyc
32.238 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
tasks.cpython-311.pyc
40.058 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
threads.cpython-311.opt-1.pyc
1.276 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
threads.cpython-311.opt-2.pyc
0.829 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
threads.cpython-311.pyc
1.276 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
timeouts.cpython-311.opt-1.pyc
7.658 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
timeouts.cpython-311.opt-2.pyc
6.095 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
timeouts.cpython-311.pyc
7.816 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
transports.cpython-311.opt-1.pyc
14.808 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
transports.cpython-311.opt-2.pyc
9.58 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
transports.cpython-311.pyc
14.827 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
trsock.cpython-311.opt-1.pyc
5.271 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
trsock.cpython-311.opt-2.pyc
5.021 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
trsock.cpython-311.pyc
5.271 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
unix_events.cpython-311.opt-1.pyc
70.874 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
unix_events.cpython-311.opt-2.pyc
65.909 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
unix_events.cpython-311.pyc
71.619 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
windows_events.cpython-311.opt-1.pyc
45.901 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
windows_events.cpython-311.opt-2.pyc
44.829 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
windows_events.cpython-311.pyc
45.935 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
windows_utils.cpython-311.opt-1.pyc
7.406 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
windows_utils.cpython-311.opt-2.pyc
6.986 KB
7 Jan 2026 10.45 PM
root / linksafe
0644
windows_utils.cpython-311.pyc
7.588 KB
7 Jan 2026 10.45 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF