shell bypass 403
3
���e`W � @ s� d Z d1Zdjeee��ZddlZddlZejd dkZ e r>eZ
ejjd�r�ddlZej
� d d Zejd�rrd Zq�ejd
�r�dZq�dZnejZd2dd�Zd3dd�Zd4dd�Zd5dd�Zd6dd�Zd7dd�ZG dd� de�Zdd� Zdd � Zd!d"� Zd#d$� Zed k�r�yddlZeZW nn ek
�r� ydd%l m!Z! eZW nB ek
�r| yddl"Z#eZW n ek
�rv eZY nX Y nX Y nX e$d&k�r~d'Z%d(Z&d8Z'e(d)� ee%e&d*d+�Z)x$e'D ]Z*e(d,e*e+e)e*�f � �q�W e(d-� ee%e&�Z)x$e'D ]Z*e(d,e*e+e)e*�f � �q�W e(d.� ee%�Z)x$e'D ]Z*e(d,e*e+e)e*�f � �q$W e(d/� ee%d
d0�Z)x$e'D ]Z*e(d,e*e+e)e*�f � �q^W dS )9zyUtilities for determining application-specific dirs.
See <http://github.com/ActiveState/appdirs> for details and usage.
� � � �.N� �javaZWindows�win32ZMac�darwinZlinux2Fc C s� t dkr^|dkr| }|rdpd}tjjt|��}| r�|dk rNtjj||| �}q�tjj|| �}nNt dkr�tjjd�}| r�tjj|| �}n&tjdtjjd ��}| r�tjj|| �}| r�|r�tjj||�}|S )
aJ Return full path to the user-specific data dir for this application.
"appname" is the name of application.
If None, just the system directory is returned.
"appauthor" (only used on Windows) is the name of the
appauthor or distributing body for this application. Typically
it is the owning company name. This falls back to appname. You may
pass False to disable it.
"version" is an optional version path element to append to the
path. You might want to use this if you want multiple versions
of your app to be able to run independently. If used, this
would typically be "<major>.<minor>".
Only applied when appname is present.
"roaming" (boolean, default False) can be set True to use the Windows
roaming appdata directory. That means that for users on a Windows
network setup for roaming profiles, this user data will be
sync'd on login. See
<http://technet.microsoft.com/en-us/library/cc766489(WS.10).aspx>
for a discussion of issues.
Typical user data directories are:
macOS: ~/Library/Application Support/<AppName>
Unix: ~/.local/share/<AppName> # or in $XDG_DATA_HOME, if defined
Win XP (not roaming): C:\Documents and Settings\<username>\Application Data\<AppAuthor>\<AppName>
Win XP (roaming): C:\Documents and Settings\<username>\Local Settings\Application Data\<AppAuthor>\<AppName>
Win 7 (not roaming): C:\Users\<username>\AppData\Local\<AppAuthor>\<AppName>
Win 7 (roaming): C:\Users\<username>\AppData\Roaming\<AppAuthor>\<AppName>
For Unix, we follow the XDG spec and support $XDG_DATA_HOME.
That means, by default "~/.local/share/<AppName>".
r N�
CSIDL_APPDATA�CSIDL_LOCAL_APPDATAFr z~/Library/Application Support/Z
XDG_DATA_HOMEz~/.local/share)�system�os�path�normpath�_get_win_folder�join�
expanduser�getenv)�appname� appauthor�version�roaming�constr
� r �/usr/lib/python3.6/appdirs.py�
user_data_dir- s&